#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 10em;
}

#nav li { /* all list items */
	float: left;
	width: 123px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #666666;
	background-color : #000000;
	width: 120px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index:3;
}


#nav li a {
		/*width: 11em; */
		/*w\idth : 10em; */
		width:123px;
        height:18px;
		display : block;
		color : white;
		font-weight : normal;
		text-decoration : none;
		font-family: Arial;
		border : 0px solid blue;
		font-size: 16px;
	    padding : 15px 0 5px 0; 
		white-space: nowrap;
		text-align:center;
	}

	
#nav li ul li a {
	    padding : 7px 0 2px 0; 
	}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	
}

#nav li:hover, #nav li.sfhover {
	color : #B9FF00;
}
	
#nav li a:hover, #nav li a.sfhover {
	color : #d30000;
}


#nav li.blackdivide {
width:1px;
height:42px;
background-color:#000000;
}

#nav li.greydivide {
width:1px;
height:42px;
background-color:#afafaf;
}