body { margin: auto; padding: 1px; width: 100%; height: 100%;
  	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  	font-size: 80%;
	color: #000;
	background: #DDD; }

#container { width: 736px; height: 100%; margin: auto; } 

#top-holder {background: #DDD; width:736px; height: 206px; float: left; margin: auto; }
 #topleft {background: #DDD; padding-left: 4px; padding-right:4px; width:174px; height: 206px; float: left; }
 #topbanner {background: #DDD; float: left; }

#menubox {width:736px; left: 0px; top: 206px; height: 30px; background: #DDD; margin: auto; }

#main-holder { width:736px; float:left; background: #eee; margin: auto; }
 #logobox {border: #000 0px solid; float: right; background: #eee}
 #main { width:528px; padding-right: 9px; padding-left: 9px;  float: left; background: #eee; }
 #rightbar {background: #DDD; left: 532px; width:180px; height:100%; float: left; padding-left: 5px; padding-top: 10px; padding-right: 5px; text-align: center; }

#footer {clear:both; right:10px; bottom:10px; width:736px; padding-bottom: 20px; text-align: center; background:#DDD; padding-top:10px;}


/* MENU STUFF */
/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:auto;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
margin:auto;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:10px;
width:90px;
padding:7px 0;
color:#ff3;
background:#0000CC;
text-decoration:none;
margin-right:1px;
text-align:center;
}
/* style the links hover */
.menu :hover{
color:#800;
background:#FFFF00;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:90px;
height: 0px;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}


