#nav{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	width:480px;
	margin-left:480px;
	padding-bottom:4px;
}
#nav a {
	display: block;
	/*width: 10em;*/
}
#nav ul { /* all lists - controls FIRST DROPDOWN BOX*/
	/*line-height: 1;*/
	display: block;
}
#nav li { /* all list items */
	float: left;	
	list-style: none;
/*border:1px solid white;*/
/*background-color:blue;*/
}
#nav li a{ /* all list items */
	color:#000000;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	/*background-image:url(../images/topNav.jpg);*/
	/*background-repeat:no-repeat;*/
	height:22px;
	padding-top:6px;
	margin-left:20px;
	
}
#nav li a:hover{ /* FIRST LEVEL NAVIGATION */
	color: #ffffff;
	text-align: center;
	text-decoration: underling;
	font-weight: 700;
	clear:left;
	display:block;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em;
	margin-top:0px;
	padding:0;
	margin:0;
	background-image:none;
	/*border:1px solid #888888;*/
	
}
#nav li ul li { /* all lists */
	/*border:1px solid red;*/
	text-align: left;
	clear:left;
	width:165px;
	height:25px;
	padding:0px;
	margin:0px;
	/*background-color: #ed1c24;*/
	text-align: left;
	color: #FFFFFF;
}
#nav li ul li a{ /* sub nav list items */
	text-align: left;
	color:#FFFFFF;
	padding: 5px 0 0 10px;
	margin:0px;
	height:20px;
	background-color: #999999;
	background-image:none;
	width:165px;
}
#nav li ul li a:hover { /* sub nav COLOUR */
	text-align: left;
	color: #FFFFFF;
	padding: 5px 0 0 10px;
	margin:0px;
	height:20px;
	background-color: #D1101A;
	text-decoration:none;
	width:165px;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	clear:left;
}