@charset "utf-8";
/* Menu Styles */


.nav {
	width: 850px;
	background: #afa9c7;
	clear:both;
	padding: 0 25px;
	margin: 0;
	height: 42px;
	position: relative;
	z-index: 400;
}

.nav ul {
	width: 850px;
	list-style: none;
	margin:0;
	padding: 0;
	color: #fff;
	font: 14px/42px "Times New Roman", Times, serif;
	text-transform: uppercase;
	text-align: center;
}

.nav li {
	float:left;
	display:block;
	text-align: center;
	position:relative;
	margin: 0 60px 0 0;
	padding:0 10px;
}

.nav li.active { 	background: #5f5489; }

.nav li.last {
	margin-right: 0px;
}

.nav li a {
	color: #fff;
	text-decoration: none;
}

.nav li a:hover {
	color: #5f5489;
}

.nav li.active a:hover {
	color: #afa9c7;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
ul.level2 {
visibility:hidden;
position:absolute;
top:42px;
left:0;
margin:0;
padding:0;
width:180px;
border-top:1px solid #fff;
z-index: 400px;
}

*html ul.level2 {
	top: 27px;
}

.level2 li {
width:160px;
margin:0;
padding: 0;
left:0;
display: block;
border-top: 1px solid white;
text-align: left;
background: #9d9989;
font: 10px/18px Verdana, Geneva, sans-serif;
font-weight: normal;
text-transform: uppercase;
text-indent: 2px;
color: white;
}

.level2 li a  {
text-decoration: none;
display: block;
padding:0;
margin:0;
background: #5f5489;
}

/* zero the styles on the table */
.nav table {
position:absolute; 
top:0; 
left:0; 
border-collapse:collapse;
}


/* style the top level hover */
.nav a:hover, .nav ul ul a:hover{color:#5f5489; background:#afa9c7;}
.nav :hover > a, .nav ul ul :hover > a {color:#5f5489;background:#afa9c7;}


/* make the second level visible when hover on first level list OR link */
.nav ul li:hover ul, .nav ul a:hover ul{visibility:visible; }

.nav ul ul li.topnav {
border-top:none;
}


