/*code based on Stu Nicholls "ultimate dropdown menu"
http://www.cssplay.co.uk*/
/*common styling*/
/*menu container*/
.menucontainer{
	background-color: #fff;
	background-image: url(images/bgOFF.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}
/*basic menu styling*/
.menu {
	float:left;
	width:980px;
	position:relative;
	font-weight:bold;
	border-top:4px solid #B30000;
	background-image: url(images/bgOFF.gif);
	background-repeat: repeat-x;
	background-position: center bottom;
}
.menu ul {padding:0;margin:0;list-style-type:none;float:left;position:relative;}
.menu ul li {float:left;position:relative;display:inline;background:url(images/bgDIVIDER.gif) no-repeat bottom right;}
/*style of main items normal state*/
.menu ul li a, .menu ul li a:visited {
	float:left;
	display:block;
	text-decoration:none;
	color:#000;
	width:auto;
	color:#666;
	line-height:40px;
	height:40px;
	padding-top: 0px;
	padding-right: 9px;
	padding-bottom: 0px;
	padding-left: 9px;
}
* html .menu ul li a, .menu ul li a:visited {width:auto;w\idth:auto;}
/*hide sub nav items*/
.menu ul li ul {display:none;}
/*clear the main nav bg*/
.menu ul li ul li{background:none;}
/*style for table of sub nav items*/
table {margin:-1px;border-collapse:collapse;font-size:11px;}
/*specific to non IE browsers*/
/*main nav over state*/
.menu ul li:hover a {color:#B30000;background: transparent url(images/bgON.gif) bottom left repeat-x;}
/*show drop-down list*/
.menu ul li:hover ul {display:block;position:absolute;top:36px;margin-top:1px;left:0;width:100%;border-top:1px solid #fff;}
/*drop-down on state*/
.menu ul li:hover ul li a {
	display:block;
	background:#e3e3e3;
	color:#333;
	height:auto;
	line-height:16px;
	width:120px;
	border-top:1px solid #fff;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
}
/*sub drop-down over state*/
.menu ul li:hover ul li a:hover {
	color:#fff;
	background-color: #B30000;
	background-repeat: no-repeat;
}
