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

#nav a {
	height: 20px;
	padding: 15px 5px 5px 10px;
	display: block;
	text-decoration: none;
	color: #000;
	width:125px;
	font-size: 14px;

}

#nav a.active {
	color: #FFF;
	background: #F00;
	background: url(/images/nav_a_active.jpg) no-repeat;
}

#nav li { /* all list items */
	float: left;
	width:140px;
	background: url(/images/nav_a_normal.jpg) no-repeat;

}

#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.toplevel ul li a {
	background: #FFF;
	border-bottom:1px solid #e0e0e0;
	border-left:1px solid #e0e0e0;
	border-right:1px solid #e0e0e0;
	width:150px;
	font-size: 12px;
	padding: 5px;
	height: 20px;
	min-height: 20px;
	height: auto !important;
}



#nav li.toplevel .last {

}

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