/* ================================================================ 
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_drop2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */
.menu {
	height:25px;
	margin:0;
	padding-bottom:10px;
	width:945px;
	position: relative;
	z-index:10;
}
/* 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:188px;
	position:relative;
}
/* style the links for the TOP LEVEL */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	font-weight: bold;
	text-decoration:none;
	color:#fff;
	width:176px;
	height:25px;
	border:1px solid #fff;
	border-width:1px 2px 0 0;
	background-color:#444F51;
	background-image: url(../images/nav/bg-nav.gif);
	background-repeat: repeat-x;
	padding-left:10px;
	line-height:24px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:188px;
	w\idth:145px;
}
/* style the TOP LEVEL hover */
.menu a:hover {
	color:#fff;
	background-color:#7E8483;
	text-decoration:none;
}
.menu :hover > a {
	color:#fff;
	background:#7E8483;
}
/* style the SECOND LEVEL links */
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:24px;
	left:0;
	width:188px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:23px;
	t\op:24px;
}
.menu ul ul a, .menu ul ul a:visited {
	font-weight: normal;
	background-color:#E3E4E4;
	color:#000;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:164px;
	border:1px solid #7E8483;
	border-width:0 1px 1px 1px;
	background-image: none;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu ul ul a {
	width:188px;
	w\idth:133px;
}
/* style the SECOND LEVEL hover */
.menu ul ul a:hover {
	color: #D81E05;
	background-color:#FFF;
}
.menu ul ul :hover > a {
	color: #D81E05;
	background-color:#FFF;
}
/* style the SECOND LEVEL DROP background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color:#E3E4E4;
}
/* style the SECOND LEVEL DROP hover */
.menu ul ul a.drop:hover {
	background-color:#FFF;
}
.menu ul ul :hover > a.drop {
	background-color:#FFF;
}
/* style the THIRD LEVEL background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background-color:#E3E4E4;
}
/* style the THIRD LEVEL hover */
.menu ul ul ul a:hover {
	background-color:#FFF;
}
.menu ul ul ul :hover > a {
	background-color:#FFF;
}
/* position the THIRD LEVEL flyout menu */
.menu ul ul ul {
	left:185px;
	top:4px;
	width:186px;
	border-top:1px solid #7E8483;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu ul ul ul a {
	width:155px;
	w\idth:135px;
}
/* position the THIRD LEVEL flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-155px;
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
}
/* make the SECOND LEVEL visible when you hover over first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible;
}
/* make the THIRD LEVEL visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	visibility:visible;
}
/* make the FOURTH LEVEL visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
	visibility:visible;
}
/* keep the THIRD LEVEL hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
	visibility:hidden;
}
/* keep the FOURTH LEVEL hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul {
	visibility:hidden;
}

