/* ================================================================ 
This copyright notice must be untouched at all times.
 
The original version of this stylesheet and the associated (x)html is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any way to fit your requirements.
=================================================================== */
 
.menu {width:804px; height:30px; position:relative; font-family:arial, sans-serif;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	width:134px;
	position: relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#ffffff;
	height:30px;
	background:#3262aa;
	line-height:30px;
	font-weight:bold;
	text-align : center;
	border-right : 1px solid #000000;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {width:100%; width:100%;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:100%; width:100%;}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;}
  
/* style the top level hover */
.menu a:hover {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#000000;
	height:30px;
	background:#ffd76f;
	line-height:30px;
	font-weight:bold;
	text-align: center;
	border-right : 1px solid #000000;
}
 
 #topNav #last {
	border-right : 0px;
	background: #ffffff;
}
#topNav #active #current { color: #000000; background:#df5f0a;}