#navOuterDiv{
width:910px;
top:4px;

height:25px;
position:relative;
float:left
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float: left;position:relative;
left:0px;
}

#nav a {
	display: block;
	
}

#nav li,#nav li ul li { /* all list items */
	float: left;
	width: 105px; /* width needed or else Opera goes nuts */
	padding:0 3px;
}
#nav li a,#nav li ul li a {
		color : #ffffff;
		font-family :  Verdana, Arial, Geneva, Helvetica, sans-serif;
		text-decoration : none;
		padding : 0px;
		text-align:center;
		font-size : 0.7em;
		 display: block;
		 line-height:25px
	}
	
#nav li a:hover {
color : #ffffff;
background-color:transparent;
}
#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;
}

/* 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; width:10em; }
#nav li:hover a:focus, #nav li.sfhover a.sffocus, #nav li.sffocusparent a.sffocus { margin-left: 0; }
