@charset "utf-8";
/* Menu Styles */


.nav {
	width: 960px;
	clear:both;
	padding: 0;
	margin: 0;
	height: 38px;
	position: relative;
	z-index: 200;
	background: #e1e0dd url(../images/nav-button-bg.jpg) repeat-x left top;
}

.nav ul {
	width: 960px;
	list-style: none;
	margin:0;
	padding: 0;
	color: #f5f4ef;
	font-size: 12px;
	line-height: 38px;
	font-weight: bold;
	text-transform: uppercase;
}

.nav li {
	float:left;
	display:block;
	text-align: center;
	position:relative;
	margin: 0;
	height: 38px;
	background: #82b0ad;
}

.nav li a {
	color: #f5f4ef;
	display: block;
	text-decoration: none;
	height: 38px;
	padding: 0 22px;
	background: #82b0ad;
}

.nav li a:hover {
	background: #e1e0dd url(../images/nav-button-bg.jpg) repeat-x left top;
	color: #787878;
}

.nav li.last a {	padding-right: 20px; }

.nav li.first a { padding-left: 20px; }

.nav li.grey a {
	padding: 0 35px;
	color: #787878;
	background: #e1e0dd url(../images/nav-button-bg.jpg) repeat-x left top;
}

.nav li.grey a:hover {
	color: #f5f4ef;
	background: #357d9f url(../images/search-bar-bg.jpg) repeat-x left bottom;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
ul.level2 {
visibility:hidden;
position:absolute;
top:38px;
left:0;
margin:0;
padding:0;
width:134px;
border-top:1px solid #fff;
z-index: 400px;
}

*html ul.level2 {
	top: 25px;
}

.level2 li {
width:134px;
margin:0;
padding: 0;
left:0;
display: block;
border-top: 1px solid white;
background: #82b0ad;
font-size:12px;
font-weight: normal;
text-align:center;
text-transform: uppercase;
text-indent: 2px;
color:#787886;
height:20px;
line-height: 20px;
overflow:hidden;
position:relative;

}


.level2 li a  {
text-decoration: none;
display: block;
padding:0;
margin:0;

color:#ffffff;
background:#82b0ad;
}

/* 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{background:#dfdeda;}
.nav :hover > a, .nav ul ul :hover > a {color:#787878;}


/* 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;
}

