html {
  height: 100%; width: 100%;
}

body {
  height: 100%; width: 100%;
  background-color:#EEB27B; 
  padding: 0px;
  margin: 0px;
  text-align: center;
}

#frame {          
  font-family: Helvetica, Arial, sans-serif;  
  margin: auto;
  border: 1px solid black;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  width: 800px;
}

#header {
  color: 	#FFFF00;
  background-color: #DF0C00;
  padding: 5px;
  height: 100px;
  border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px; 
}

#footer {
  float: center;
  clear: both;
  color: 	black;
  font-weight: bold;
  font-size: 20pt;
  vertical-align: middle;
  background-color: white;
  padding: 5px;
  height: 100%;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  -webkit-border-bottom-left-radius: 10px; 
}

#navigation {
  height: 50px;
  padding: 0px;
  margin: 0px;
}

#navigation ul {
     width: 800px;
	   float: left;
	   clear:both;
	   margin: 0 0 10px 0; 
	   padding: 0;
	   list-style-type: none;
	  /* border: solid #fc6500;*/
	   /*border-width: 2px 0;*/
}

#navigation li {
   height: 50px;
   width:  25%;
   float: left;
   background: #ED9121;
   font-weight: bold;
   text-align:center;
}
 
#navigation li a {
  height: 30px;
   vertical-align: middle;
   display: block;
   padding: 10px 5px;
   border-right: 1px solid #ece300; 
   text-decoration: none;
   color: black;
}

#navigation li.posledny a {
   border-right: none; 
}

#navigation li a:hover {
   background: #F28500;
   color: #0000C0;
} 

#content {
  padding: 10px;
  text-align: left;
/*  border: 1px solid black;*/
  background-color: #800000;
  color: white;
  min-height: 400px;
}

#content a {
  color: white;
  font-weight: bold;
}

div.lb {
  height: 100%; width: 100%;
  display: none;
  position: absolute; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  /*background()*/
} 

div.lb:target {
  display: block;
  display: expression(document.location.toString().split('#').slice(1) == this.id)?'block':'none');
}