@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_drop5.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 */
.menuTop {
	position: absolute; 
	top: 40px;
	width: 600px;
	margin: 0 auto;
	background: transparent;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	font-weight: bold;
	color: #77664d;
	z-index: 100;
	/*border: #99FF33 solid thin;*/
	}

/* remove all the bullets and margins from the default list styling and set padding */
.menuTop ul {
	padding: 0 9px 0 22px;
	margin: 0;
	list-style-type:none;
}

/* style the sub-level lists */
.menuTop ul ul {
	width: 110px;
	background: #faf9ec;
	padding: 0;
	/*border-top: #0a220a solid 3px;*/
}

/* float the top list items to make the menu horizontal and with a relative positon so that you can control the dropdown menu positon */
.menuTop ul li {
	float:left;
	height: 150%;
	padding: 3px 3px 0 3px;
	line-height: 140%;
}

/* style the sub level list items */
.menuTop ul ul li {
	display:block;
	width: 110px;
	height:auto;
	line-height:140%;
	background: #faf9ec; 
	}

/* style the links for the top level */
.menuTop a, .menuTop a:visited {
	display: block;
	float: left;
	height: 100%;
	font-size: 100%;
	text-decoration: none;
	color: #77664d;
	font-weight: bold;
	}

/* style the sub level links */
.menuTop ul ul a, .menuTop ul ul a:visited {
	display:block;
	background: faf9ec;
	color: #092209;
	font-weight: normal;
	width: 110px;
	height:100%;
	line-height: normal; 
	padding: 0 0 3px 3px;
	}
.menuTop ul ul a:visited {
	color:#b26227;
	}	
* html .menuTop ul ul a, * html .menuTop ul ul a:visited  {
	width: 110px; 
	w\idth: 110px;
	}


/* style the table so that it takes no part in the layout - required for IE to work */
.menuTop table {position:absolute; left:-1px; top:0; width:0; height:0; font-size:0.9em;  z-index:-1;}


/* style the third level background */
.menuTop ul ul ul a, .menuTop ul ul ul a:visited {background:#b4be9c;}
/* style the fourth level background */
.menuTop ul ul ul ul a, .menuTop ul ul ul ul a:visited {background:#c4ceac;}
/* style the sub level 1 background */
.menuTop ul :hover a.sub1 {background:#b4be9c;}
/* style the sub level 2 background */
.menuTop ul ul :hover a.sub2 {background:#c4ceac;}

/* style the level hovers */
/* first */
* html .menuTop a:hover {
	color:#b26227;
	font-weight: bold;
	text-decoration: none;
	background: #faf9ec; 
	position:relative;
	z-index:100;
	}
.menuTop li:hover {
	position:relative;
	background: #faf9ec;
	text-decoration: none;
	font-weight: bold;
	}
.menuTop :hover > a {
	color:#b26227;
	background: #faf9ec;
	text-decoration: none;
	font-weight: bold;
	}
/* second */
* html .menuTop ul ul a:hover{
	width: 110px;
	color:#b26227;
	font-weight: bold;
	background: #faf9ec; 
	position:relative; 
	z-index:100;
	}
.menuTop ul ul li:hover {
	position:relative;
}
.menuTop ul ul :hover > a {
	width: 110px;
	color:#b26227;
	background: #faf9ec;
	font-weight: normal;
}
/* third */
* html .menuTop ul ul ul a:hover {background:#c4ceac; position:relative; z-index:120;}
.menuTop ul ul ul :hover > a {background:#c4ceac;}
/* fourth */
.menuTop ul ul ul ul a:hover {background:#d4debc; position:relative; z-index:130;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuTop ul ul {
	visibility:hidden;
	position:absolute;
	background: #faf9ec;
	height:0;
	top: 1.4em;
	left:0;
	}
	
/* special hack for IE 6 and below - by Bob Million.  	
/* hide the sub levels and give them a positon absolute so that they take up no room */
* html .menuTop ul ul {
	visibility:hidden;
	position:absolute;
	background: #faf9ec;
	height:0;
	top: 1.6em;
	left:0;
	}

/* make the second level visible when hover on first level list OR link */
.menuTop ul :hover ul{
	visibility:visible; 
	height:auto;
	background: #faf9ec;
}
	
