#nav, #nav ul { /* all lists */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	list-style: none;
	padding-top: 0;
	padding-right: 0;
	padding: 0;
	width:210px;
}
#nav a {
	display: block;
	width: 210px;
}

#nav li { /* all list items */
	width:210px;
}
#nav li a{ /* all list items - TOP LEVEL */
	color:#530D01;
	text-align: right;
	width:180px;
	height:28px;
	margin-top: 4px;
	padding-left: 20px;
	text-decoration: none;
	background-image: url(../images/button_off.gif);
	background-repeat:no-repeat;
}
#nav li a:hover{/* all list items - TOP LEVEL MOUSEOVERS*/
	width: 180px;
	color: #FFFFFF;
	background-image: url(../images/button_on.gif);
	background-repeat:no-repeat;
}	
#nav li ul li a{ /* sub nav list items */
	color: #FFFFFF;
	font-size: 16px;
	height:24px;
	line-height:1.5em;
	border:1px solid #D0C09B;
	height:auto;
	text-decoration:none;
	text-align: left;
	width: 200px;
	background-color: #821313;
	padding: 0 0 0 10px;
	margin: 0 0 0 210px;
	display: block;
}
#nav li ul li a:hover { /* sub nav COLOUR */
	color: #D0C09B;
	text-decoration:none;
	text-align: left;
	width: 200px;
	background-color: #821313;
	margin: 0 0 0 210px;
}
#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	/*delete width value so 2nd nav as horizontal box*/
	width: 200px;
	margin-top:-40px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	padding:0 0 0 0;
}