@charset "utf-8";
/* Menu Styles */

/* basic nav bar styles
---------------------------- */

.nav {
	width: 920px;
	background: #c5d916;
	clear:both;
	padding: 0 20px;
	margin: 0;
	height: 42px;
	position: relative;
	z-index: 400;
	border-top: 5px solid #4eb2c8;
}

.nav ul {
	width: 920px;
	list-style: none;
	margin:0;
	padding: 0;
	color: #3e3f39;
	font-size: 18px;
	line-height: 42px;
}

.nav li {
	float:left;
	display:block;
	text-align: center;
	position:relative;
	margin: 0 45px 0 0;				/* change right margin to fit in more items */
	height: 42px;
}

.nav li.last {
	margin-right: 0px;
}

.nav li a {
	color: #3e3f39;
	text-decoration: none;
	display: block;
	height: 42px;
	padding:0 5px;
}

.nav li a:hover {
	background: #4eb2c8;
}


/* drop down menu styles 
----------------------------*/

/* 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: 32px;
}

.level2 li {
	width:180px;
	margin:0;
	padding: 0;
	left:0;
	display: block;
	border-top: 1px solid white;
	text-align: left;
	background: #c5d916;
	font-size: 10px;
	line-height: 18px;
	font-weight: normal;
	text-transform: uppercase;
	text-indent: 2px;
	color: #3e3f39;
	height: 18px;
}

.level2 li a  {
	text-decoration: none;
	display: block;
	padding:0;
	margin:0;
	background: #c5d916;
	height: 18px;
}

/* zero the styles on the table used by IE6 */
.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:#3e3f39; background:#4eb2c8;}
.nav :hover > a, .nav ul ul :hover > a {color:#3e3f39;background:#4eb2c8;}


/* 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;
}
