#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav {
	line-height: 1px;
}

#nav a {
	display: block;
	 /*width: 10em; */
}

#nav li { /* all list items */
	float: left;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #EEE;
	text-align: left;
	padding-bottom: 0px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li { /*individual items */
	padding: 8px;
	border-bottom: 1px dotted #555;
	clear: left;
	width: 150px;
	font: normal normal normal 14px/8px verdana;
	vertical-align: bottom;
	color: #FFF;
}

#nav li ul li:hover {
	background: #CCC;
	color: #000;
}

#nav li ul li a {
	color: #000;
	text-decoration: none;
}

#nav li ul li a:hover {
	color: #000;
	text-decoration: none;
}


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