td#topNAV ul#nav {
	list-style:none;
}



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

#nav a {
	display: block;
	
}

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

#nav li ul { /* second-level lists */
	padding: 5px 3px 5px 3px;
	position: absolute;
	background: #f5f5f5;
	width: 140px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	text-indent: 5px;
	line-height: 20px;	
}


#nav li ul li { /* second-level lists */
	width: 140px;
	float:left;
	display:block;
	white-space:nowrap; 

	
}


#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	display:list-item;
	padding: 3px 0 3px 0;
	width: 140px;
}


