
#nav, #nav ul { /* all lists */

}

#nav a {
	display: block;
}

#nav li { /* all list items */
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em !important;  /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em !important;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em !important;
}

#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: 0px  !important;
	display: inline;
}

#nav  li li:hover ul
{
	left: 40px  !important;
	top: 11px;
}
