#navOuterDiv{
width:930px;
top:0px;
height:51px;

}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float:right;
	vertical-align: bottom;
	height:51px;
	
}

#nav a {
	display: block;
	height:51px;

}


#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
	vertical-align:baseline ;
	height: 1px;
	
}
#nav li a,#nav li ul li a {
		text-decoration : none;
		padding : 1.8em 0 0 1em ;
		font-size : 0.7em;
		 display: block;
		 color:#000000;
	height:51px;
	}
	
#nav li a:hover {
color : #2d5996;
background-color:#e0f278;
}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
