#menucontainer {
	width: 806px;
	height:30px;
	margin: 5px 45px 5px 45px;
	text-align: center;
	display: block;
	float: left;
	border:1px solid #443A2C;
	color: #5F7E9E;
	text-align:center;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
}


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

/* 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:14px;
	width:149px;
	padding:7px 0;
	color:#5F7E9E;
	/*background:#949e7c;*/
	text-decoration:none;
	margin-right:11px;
	text-align:center;
}
/* style the links hover */
.menu :hover{
	color:#444;
/*background:#d4d8bd;*/
	background:none;
}

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

