#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	float:left;
	width:75px;
}
#nav, #nav ul:hover { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	float:left;
	color:#000000
}
#nav a {
	display: block;
 	color:#FFFFFF;
	text-decoration:none;
	padding-left: 12px;
    padding-top: 2px;
    padding-right: 2px;
    padding-bottom: 2px;

}
#nav a:hover {
	display: block;
	color:#cccccc;
	text-decoration:none;
}
#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	background-color:#463a62;
	width:120px;
}
#nav ul li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	background-color:#463a62;
	width:120px;
	border:1px solid #ffffff;
}
#nav li:hover { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	background-color:#463a62;
	width:120px;
}
#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#463a62; 
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul:hover { /* 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 ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	border:1px solid #ffffff;
	background-color:#463a62; 
}
#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: auto;
}