/* ================================================================ 
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 {
	font-size: 10px;
	height: 32px;
	position: relative;
	width: 875px;
	z-index: 100;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	w\idth: 875px;
	width: 875px;
}

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

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	position: relative;
	width: auto;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	background: url(../img/layout/dotted_navi.gif) no-repeat bottom right;
	color: #f0ddd0;
	display: block;
	font-size: 11px;
	padding: 15px 15px 15px 12px;
	text-decoration: none;
	width: auto;	
	font-weight: bold;
	text-transform: uppercase;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	w\idth: auto;
	width: auto;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #fff;
}

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

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

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #e2dfa8;
}
.menu ul ul ul a:hover {
	background: #b2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	border-top: 1px solid #700510;
	height: 0;
	left: 0;
	position: absolute;
	top: 43px;
	visibility: hidden;
	width: 109px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	t\op: 43px;
	top: 42px;
}

/* position the third level flyout menu */
.menu ul ul ul {
	left: 109px;
	top: -1px;
	width: 109px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left: -109px;
}

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

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #fff;
	color: #000;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 128px;
	text-align: left;
	font-weight: normal !important;
	text-transform: none !important;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	w\idth: 150px;
	width: 150px;
}

/* style the top level hover */
.menu ul ul a:hover {
	color: #000;
	font-weight: bold;
}
.menu a:hover, .menu :hover > a {
	color: #ecb18f;
	font-weight: bold;
}
.menu ul ul :hover > a {
	color: #000;
	background: #ecb18f;
	font-weight: bold;
}

/* 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{
visibility:hidden;
}

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