@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 */
.menuForm {
	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 */
.menuForm ul {
	padding: 0 9px 0 15px;
	margin: 0;
	list-style-type:none;
}

/* style the sub-level lists */
.menuForm ul ul {
	width: 110px;
	background: #cc9;
	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 */
.menuForm ul li {
	float:left;
	height: 150%;
	padding: 3px 3px 0 3px;
	line-height: 140%;
}

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

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

/* style the sub level links */
.menuForm ul ul a, .menuForm ul ul a:visited {
	display:block;
	background: cc9;
	color: #092209;
	font-weight: normal;
	width: 110px;
	height:100%;
	line-height: normal; 
	padding: 0 0 3px 3px;
	}
.menuForm ul ul a:visited {
	color:#b26227;
	}	
* html .menuForm ul ul a, * html .menuForm 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 */
.menuForm table {position:absolute; left:-1px; top:0; width:0; height:0; font-size:0.9em;  z-index:-1;}


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

/* style the level hovers */
/* first */
* html .menuForm a:hover {
	color:#b26227;
	font-weight: bold;
	text-decoration: none;
	background: #cc9; 
	position:relative;
	z-index:100;
	}
.menuForm li:hover {
	position:relative;
	background: #cc9;
	text-decoration: none;
	font-weight: bold;
	}
.menuForm :hover > a {
	color:#b26227;
	background: #cc9;
	text-decoration: none;
	font-weight: bold;
	}
/* second */
* html .menuForm ul ul a:hover{
	width: 110px;
	color:#b26227;
	font-weight: bold;
	background: #cc9; 
	position:relative; 
	z-index:100;
	}
.menuForm ul ul li:hover {
	position:relative;
}
.menuForm ul ul :hover > a {
	width: 110px;
	color:#b26227;
	background: #cc9;
	font-weight: normal;
}
/* third */
* html .menuForm ul ul ul a:hover {background:#c4ceac; position:relative; z-index:120;}
.menuForm ul ul ul :hover > a {background:#c4ceac;}
/* fourth */
.menuForm 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 */
.menuForm ul ul {
	visibility:hidden;
	position:absolute;
	background: #cc9;
	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 .menuForm ul ul {
	visibility:hidden;
	position:absolute;
	background: #cc9;
	height:0;
	top: 1.6em;
	left:0;
	}

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