#navOuterDiv{
width:630px;
padding-top:10px;
padding-left:0px;
float:left;
background-color: #fff;
position:relative;
/*border-top:1px solid #6e6d6d;*/
height:20px
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav a {display: block;}
#nav li { /* all list items */
	float: left;}
#nav li ul li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
}
#nav li a:link,#nav li a:visited {
		color : #000000;
		font-family :   Arial, Geneva, Helvetica, sans-serif;
		text-decoration : none;
		/*text-transform : uppercase;*/
		margin :0px auto;
		text-align: left;
		padding-top:2px;
		padding-bottom:2px;
		padding-left:10px;
		padding-right:10px;
		font-size : 0.75em;
text-transform:uppercase;
border-top:2px solid #04478A;
border-left:1px solid #eaeaea;
border-right:1px solid #eaeaea;
border-bottom:1px solid #eaeaea;
}
#nav li a:hover,#nav li a:active  {
color : #000000;
text-decoration :none;
background:#eaeaea;
border-top:2px solid #00cc00;
border-left:1px solid #eaeaea;
border-right:1px solid #eaeaea;
border-bottom:1px solid #eaeaea;
}
#nav li ul li a:hover {
color : #000000;
text-decoration :underline;

}
#nav li ul { /* second-level lists */
	position: absolute;
	background: #a2c058;
	width: 250px;
	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;
	background-color:#139ea7;
}

#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;
}

/* extra positioning rules for no javascript / keyboard accessibility */
#nav a:focus + ul { margin-left: -1px; }
#nav ul a:focus + ul { margin-left: 9999px; }
#nav ul a:focus, #nav ul ul a:focus { margin-left:4999px; }
#nav li:hover a:focus, #nav li.sfhover a.sffocus, #nav li.sffocusparent a.sffocus { margin-left: 0; }
