#nav, #nav ul { /* all lists */
	padding:0px;
	margin: 0px;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	display: block;
	color:#FFF;
	height:25px;
line-height:25px;


	

}
#nav a {
	padding-left:15px;
	padding-right:15px;
	display: block;
	text-decoration:none;
	color:#FFF;
	text-align:center;
}
#nav a:hover {
	color:#FFF;

	
}
#nav li { /* all list items */
	float: left;
	width: auto;/* width needed or else Opera goes nuts */

}
#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#000000;
	height:26px;
	line-height:26px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-image:none;
}
#nav li ul li {
	width:10em;
    float: none;
	background:#000000 none;
	color:#FFF;
		
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
	

}

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

