@charset "UTF-8";
/* styles common to all browser windows (not the game itself) */

/*
by default, we hide everything on the web page except for 
the game itself. 

  * On a desktop we put up a full web page, with the game in landscape orientation
  * On an iPad-sized tablet we put a menu to the side
  * On a cellphone, we leave everything hidden

*/

/*use pt rather than px */
body {
	background:#fff7dc;
}

#main {
	width:800px;
	height:auto;
	margin: 0 auto;}

.hideThis { /*by default, don't display the surrounding web page*/
	display:none;
}



