#nav { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	/* line-height: 1; */
position: absolute;

}

 #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
      
	/* line-height: 1; */
 
}
#nav a {
	display: block;
	width: 10em; 
         color: #fff;
        border: 0;

 }

#nav li { /* all list items */
	float: left;
	width: 9.5em; /* width needed or else Opera goes nuts */
       margin-right: 10px;
      border: 0px solid #8fbd75;
background: #8fbd75;

}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #fff;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
margin-top: 0px;
border: 0px solid #8fbd75;
       border: 1px solid #fff;
       
}

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


#nav li a {
color: #fff;
border-bottom: 0;

}


#nav li ul li{
 margin-top: -4px;
 height: 25px;
 margin-left: 0px;
background: #8fbd75;

}
