/* */
/* MENU */
/* */
/* ================================================================ 
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_drop3.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */
.menu {
	position:relative;
	float:left;
	width:612px;
	margin:0px;
	padding:0px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	position:relative; 
	float:left;
	padding:7px 0px 0px 0px;
	margin:0px;
	list-style:none;
}

/* style the sub-level lists */
.menu ul ul {
	position:relative;
	float:left;
	width:251px;
	padding:0px;
	margin:2px 0px 0px 4px;
	_margin:0px;
	border-top:solid 1px #7D650F;
	border-left:solid 1px #000000;
	background:#F8C300;
}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	position:relative;
	margin:0px;
	padding:0px;
	list-style:none;
	height:23px;
	padding:0px 2px 0px 4px;
	float:left;
	/*border-left:solid 1px #E5E5E5;*/
	background:url(../img/menutopitembg.gif) top left no-repeat;
}

.menu ul li.noborder{
	background:none;
}

/* style the sub level list items */
.menu ul ul li {
	position:relative;
	float:left;
	width:251px;
	background:none;
	padding:0px;
	margin:0px;
	height:auto;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:3px 13px 5px 13px;
	font-family:Arial, Helvetica, sans-serif;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {
	position:relative;
	display:block;
	color:#000000;
	width:235px;
	margin:0px;
	padding:4px 8px;
	border-top:solid 1px #DCB320;
}
.menu ul table ul a, .menu ul table ul a:visited, .menu ul table ul a:hover {}
.menu ul table ul a:hover {} /**/
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; left:-1px; top:-1px; z-index:-1;}

.menu li:hover {position:relative;}
* html .menu a:hover {position:relative;}

/* style the sub level 1 background */
/*.menu ul :hover a.sub1 {display:block;background:#FF0000;}*/


/* style the level hovers */
/* first */
.menu a:hover {
	display:block;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:0px 13px 5px 12px;
	font-family:Arial, Helvetica, sans-serif;
	background-color:#F8C300;
	border-top:solid 3px #000000;
	border-left:solid 1px #000000;
}
.menu :hover > a {
	display:block;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:0px 13px 5px 12px;
	font-family:Arial, Helvetica, sans-serif;
	background-color:#F8C300;
	border-top:solid 3px #000000;
	border-left:solid 1px #000000;
}
.menu a.nosubmenu:hover {
	display:block;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:0px 13px 5px 13px;
	font-family:Arial, Helvetica, sans-serif;
	background:none;
	border-top:solid 3px #F8C300;
	border-left:none;
}
.menu :hover > a.nosubmenu  {
	display:block;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:0px 13px 5px 13px;
	font-family:Arial, Helvetica, sans-serif;
	background:none;
	border-top:solid 3px #F8C300;
	border-left:none;
}
/* second */
.menu ul ul a:hover{
	position:relative;
	display:block;
	color:#000000;
	width:235px;
	margin:0px;
	padding:4px 8px;
	border:none;
	border-top:solid 1px #DCB320;
	background:url(../img/submenutop_bg.gif) top left repeat-x;
}
.menu ul ul :hover > a {
	position:relative;
	display:block;
	color:#000000;
	width:235px;
	margin:0px;
	padding:4px 8px;
	border:none;
	border-top:solid 1px #DCB320;
	background:url(../img/submenutop_bg.gif) top left repeat-x;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;top:21px;left:0; }

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {visibility:visible;}

