/* Cascading Style Sheet */
@import url('reset.css');
body {
  background-color: #ffffcc;
}
#head {
  background-image: URL(star2.jpg);
  background-repeat: repeat-x;
  background-position: top left;
  height: 200px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #cccc00;
  border-collapse: collapse;
}
#head a{  text-decoration: none; }
#main {
 font-family: Tahoma;
 font-size: 12pt;
 max-height: 1200px;
 margin: auto;
 width: 66%;
 max-width: 1600px;
/*
 border-top-width: 2 px;
 border-top-style: solid;
 border-top-color: #cccc00;
*/
}
#menu {
  background-color: #FEE39E;
  position:relative;
 }
#menu ul {margin-top: 0%; }
#menu li { background-color: #FEE39E; float:left; width:33%; height:30px; display:block; border:none; text-align: center; }
 /*при указании float обязательно указывать width. */
#menu li:hover {  height:25px; background-color: #cccc00;}
#menuitem { text-decoration: none;  }
#content {    padding-top: 30px; clear:both;padding-bottom: 5%;  }
/*clear:both нужен для сброса float'a li*/
/*   Переделал меню на  списки, было:
#menu {  width:100%; height: 25px;overflow: hidden; background-color: #FEE39E;   }
#menuitem { width:33%; margin-left: 10%; }
#menuitem:hover { background-color: #cccc00; }
*/
#foot {
 background-color: #FEE39E;
 width:100%;
 bottom: 0%;
 position: fixed;
}
#stat {
  font-size: 8pt;
  background-color: #FEE39E;
  display: none;
  width: 100%;
  text-align:right;
  padding-bottom: 0%;
  position: static;
}

