#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	height: 33px;
}

#nav a {
	display: block;
	width: auto;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: auto;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li {
	width: 10em;
	clear: both;
	height: 33px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#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;
}



#nav ul
{
border: 0px solid #c3ceae;
}
/* Menu items are a light gray block with padding and no text decoration */
#nav a
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight: bold;
	color: #ffffff;
	
	display: block;
	cursor: pointer;
	background-color: #EF8200;
	padding: 0.7em 0.75em;
	text-decoration: none;
}
#nav a.first {
	padding-left: 0;
}
/* Menu items that have mouse over or focus have a blue background and white text */
#nav a:hover, #nav a:focus
{
	background-color: #EE9A35;
	color: #FFF;
}
