/*code based on Stu Nicholls "ultimate dropdown menu"
http://www.cssplay.co.uk*/
/*common styling*/
/*menu container*/
.menucontainer{
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: left bottom;
}
/*basic menu styling*/
.menu {
	float:left;
	font-family: arial,verdana,sans-serif;
	position:relative;
	font-size:11px;
	font-weight:bold;
	background-repeat: repeat-x;
	background-position: left bottom;
}
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	float:left;
	position:relative;
	width: 100%;
}
.menu ul li {
	float:left;
	position:relative;
	display:inline;
	background-repeat: no-repeat;
	background-position: right bottom;
	width: 100%;
}
/*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:#FFF;
	height:auto;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-left: 6px;
}
* 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:#FFF;
	background-color: transparent;
	background-repeat: repeat-x;
	background-position: left bottom;
}
/*show drop-down list*/
.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:19px;
	margin-top:1px;
	left:0;
	width:100%;
}
/*drop-down on state*/
.menu ul li:hover ul li a {
	display:block;
	background:#e3e3e3;
	color:#666;
	height:20px;
	line-height:20px;
	padding:2px 16px 2px 16px;
	width:100%;
	border-top:1px solid #fff;
	font-size: 12px;
	font-weight: normal;
}
/*sub drop-down over state*/
.menu ul li:hover ul li a:hover {
	color:#fff;
	background-position: 4px 8px;
	background-color: #CC0C01;
	background-image: url(images/sub-arrow.gif);
	background-repeat: no-repeat;
}