/* Nav Section */

#nav,
#nav li,
#nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#nav,
#nav ul { /* all lists */
	width: 900px;
	clear: both;
}

#nav li { /* all list items */
	float: left;
	vertical-align: middle;
}


#nav li ul { /* second-level lists */
	position: absolute;
	width: 170px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-image: url(../images/dropDown.jpg);
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -24px 0 0 170px;
}

#nav li:hover ul ul,
#nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul,
#nav li li:hover ul,
#nav li.sfhover ul,
#nav li li.sfhover ul{ /* lists nested under hovered list items */
	left: auto;
}
