/* ================================================= */
/*   NEW NAV BAR                                     */

div#navbox {
        border-bottom: 1px solid #C03;
        display: block;
        height: 12px;
}

#nav {
        margin-left: 2.5em !important;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
        list-style-image: none !important;
}

#nav a {
	display: block;
	width: 10em;
        font-weight: bold; 
        color: #C03;
        text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
}

#nav li li { /* second-level lists */
        width: 8em;
        padding: 4px 4px;
        background: white;
        border: 1px solid #C03;
        border-width: 0px 1px 1px 1px;
}

#nav li li:hover {
        background-color: #FFE9E9;
}

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

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}