
#nav, #nav ul { /* all lists */
	/*width: 740px;*/
	text-align: left;
	padding: 12px 0 20px 0;
	margin: 0;
	list-style: none;
	line-height: 1.25;
}

#nav a {

	display: block;
	width: 100px;
}

#nav a:hover {

	display: block;
	width: 100px;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	padding: 0px;
	z-index: 99; 
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: white;
	font-size: 11px;
	width: auto;
	padding: 4px 6px 6px 6px; 
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 99; 
}

#nav li ul ul { /* third-and-above-level lists */
	position: absolute;
	width: auto;
	font-size: 9px;
	line-height: 14px;
	text-align: left;
	margin: -15px 0 50px 70px;
	padding: 8px 6px 8px 6px;
	background: white;
	z-index: 99; 
}

#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;
}

#content {
	clear: left;
	color: #ccc;
}

