body {
	font-family: arial;
	font-size: 9pt;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 26px;
	text-align: right; 
	float: right; /* new */



}

/* start new */
#nav 
{
	position: relative;
}
/* end new */

#nav a {
	border-width: 1px;
	border-style: solid;
	border-color: #B1AE77;

	display: block;
	width: 120px; 
	color: #B44C15;
	font-weight: bold;

}

#nav li li a:hover {
	background: #FFFBDD;
}

li:hover ul, li.over ul{ display: block; }


#nav li { /* all list items */
	float: left; 
	background : white;






/*	width: 3em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: white;
/*	width: 120px; */
	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 120px;*/
}

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

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