#nav, #nav ul { /* all lists */
	list-style: none;
	padding: 0px;
	margin: 0px;
}
#nav {
	position: relative;
	top: 23px;
	line-height: 17px;
	height: 20px !important;
	vertical-align: middle;
	width:366px;
	right: 0px;
	margin-left:auto;
	text-align:center;
}

/*#nav a {
	display: block;
	width: 10em;
}*/

/*First level text setup*/
#nav ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}



/*First level text colour*/
#nav li, li a{
	color: #CAAC7C !important;
	text-decoration:none;
}

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

/*Second level nav box*/
#nav li ul {
	width: 120px;
	position: absolute;
	top: 16px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-bottom-color: #999999;
	border-bottom-style: solid;
	border-bottom-width: 3px;
	background-color:#000000;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	z-index:50;
}

/*Second level list*/
#nav li ul li {
	text-align: left !important;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	width:100%;
	line-height: 1.5em;
}

#nav li ul li a {
	text-decoration: none;
	display:block;
	padding-left:3px;
}


/*Second level text colour*/
#nav li.toplevel:hover ul li a {
	color: #CAAC7C !important;
}
#nav li.toplevel:hover ul li a:hover{
	color:#FFFFFF !important;
}

/*Second level text roll-over*/
#nav li ul li a:hover{
	background-color:#A1731E;
}


#nav li ul ul { /* third-and-above-level lists */
	position:absolute;
	top:auto;
	margin: -1.8em 0 0 10em;
	width: 140px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

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

/*IE 6 position fix */
#nav li.sfhover ul { 
	margin-left:-74px;
}
#nav li.sfhover ul ul {
	margin: -1.8em 0 0 10em;
}
