@charset "UTF-8";
/* CSS Document */

/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
	width: 580px;
	height: 35px;
	float: left;
	z-index: 100px;
	font-size: 10px;
	color: #FFFFFF;
	text-transform: uppercase;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 0px;
	left: 0px;
	border-collapse: collapse;
}

/*-------------------- START LEVEL 1 -----------------------*/

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0px;
	margin: 1px;
	width: 100%;
	text-align: center;
	list-style-type: none;
}

* html .menu ul {
	margin: 0px;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	width: 116px;
	height: 34px;
	line-height: 35px;
}

/* a hack so that IE6 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width: 113px;
	line-height: 34px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color: #000000;
	background: #B27F44;
}

.menu:hover > a, .menu ul ul:hover > a {
	color: #000000;
	background: #B27F44;
}

/* float the list to make it horizontal and a relative position so that you can control the dropdown menu position */
.menu li {
	float: left;
	width: 114px;
	position: relative;
	border-right: #C29057 2px solid;
}

* html .menu li {
	width: 106px;
}

.menu li.last {
	border-right: none;
	}
/*-------------------- END LEVEL 1 -----------------------*/


/*-------------------- START LEVEL 2 -----------------------*/

/* 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: auto;
	top: 32px;
	left: 0px;
	width: 116px;
}

* html .menu ul ul {
	top: 34px;
}

.menu ul ul li {
	border-top: #FFFFFF solid 1px;
	}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #B27F44;
	color: #000000;
	height: auto;
	line-height: 1.25em;
	padding: 10px 10px;
	width: 96px;
}

.menu ul ul a:hover {
	background: #A46923;
	}

.menu ul ul:hover > a {
	background: #A46923;
}
	
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #B27F44;
}

* html .menu ul ul a.drop, * html .menu ul ul a.drop:visited {
	width: 92px;
}

/* style the second level hover */
.menu ul ul a.drop:hover {
	background: #A46923;
}

.menu ul ul:hover > a.drop {
	background: #A46923;
}
/*-------------------- END LEVEL 2 -----------------------*/


/*-------------------- START LEVEL 3 -----------------------*/

/* position the third level flyout menu */
.menu ul ul ul {
	visibility: hidden;
	position: absolute;
	left: 114px;
	top: -2px;
	width: 96px;
}

* html .menu ul ul ul {
	visibility: hidden;
	top: -1px;
}

.menu ul ul ul li {
	border-top: #FFFFFF solid 1px;
	}

.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #C29057;
	color: #000000;
	height: auto;
	line-height: 1.25em;
	padding: 10px 10px;
	width: 96px;
}

* html .menu ul ul ul a, * html .menu ul ul ul a:visited  {
        top: -1px;
}

/* style the third level hover */
.menu ul ul ul a:hover {
	background: #B27F44;
}

.menu ul ul ul:hover > a {
	background: #B27F44;
}
/*-------------------- END LEVEL 3 -----------------------*/


/*-------------------- START VISIBILITY -----------------------*/

/* 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;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul:hover ul ul, .menu ul li:hover ul ul, .menu ul a:hover ul ul {
	visibility: hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul li ul li:hover ul, .menu ul li ul li a.drop:hover ul {
	visibility: visible;
}