
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0 auto ;
	list-style: none;
	line-height: 14px;
		white-space: nowrap;
}
#nav a {
	display: block;
	width: 180px;
	text-decoration: none;
	color: #777777;
	background: #ffffff; /* IE6 Bug */
	padding: 2px;
	border: 1px solid #cccccc;
	margin: 0 0 0 2px;
	height: 16px;

}
#nav li {
	/* all list items */
	float: left;
	display: block;
	margin: 0 0 0 0;
	height: 18px;
	position: relative;
	width: 120px;
}
#nav li ul { /* second-level lists */
	margin: -1px 0 10px 2px;
		line-height: 14px;
	text-align: left;
	position: absolute;
	background: green;
	width: 0em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 1000;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -21px 0 0 12em;
	z-index: 2000;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: 34px;
}
#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
	}
#content {
	clear: left;
	color: #ccc;
}
select option {position: relative;
	z-index: -10000;}
