
/*Boxes*/
body {
   font-size: 10px;
   color: #505050;
   background-color: #DDD;
   visibility: visible;
   overflow: hidden;
}
/* Layout */
#center {
 
}


#header{
   position: absolute;
   background-image: url("img/header.jpg");
   background-repeat: no-repeat;
   left: 0px;
   top: 0px;
   width: 750px;
   height: 90px;
   z-index: 3;
   text-align: left;
   overflow: hidden;
   border: 0px yellow solid;
}
#content {
   position: absolute;
   left: 0px;
   top:  90px;
   width: 700px;
   height: 400px;
   z-index: 11;
   text-align: left;
   overflow:auto;
   padding: 10px;
} 

#footer {
   position:absolute;
   width: 700px;
   height: 30px;
   bottom:0px;
   z-index: 17;
   line-height:20px;
   text-align: center;
   padding-left:10px;
   overflow: hidden;
   border-top: 1px #ddd solid;
}
