/* CSS Document */

#nav_div {
 background-image:url(../images/nav_bg.jpg);
 background-repeat:no-repeat;
 background-position:top left;
 width:100%;
 height:45px;
 font-family:Arial, Helvetica, sans-serif;
 font-size:12px;
}


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	/*line-height: 1;*/
}

#nav li { /* all list items */
	float: left;
	/*width: 10em; /* width needed or else Opera goes nuts */
	line-height:27px;
	height:27px;
	padding-left:5px;
	padding-right:5px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width:200px;	
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li{
 background-color:#95cd7e;
 border-bottom:1px solid #fff;
 width: 200px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}





#nav a:link, #nav a:visited{
 color:#fff;
 text-decoration:none;
 display:block;
}

#nav li ul li a:link, #nav li ul li a:visited{
	color:#000;
	text-decoration:none;
	 display:block;
}
#nav li ul li a:hover{
	color:#FFF;
	text-decoration:none;
	 display:block;
}


