@charset "UTF-8";
/* CSS Document */
/* Button Dimensions
	112 W
	22  H
	10  H
*/
.menu {
	margin-top: 9px;
	float: right;
	width: 466px; 
	height: 22px; 
	font-size: 11px; 
	position: relative; 
	z-index: 100;
}

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

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

/* 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: 122px;
	position:relative;
}


/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	text-transform: uppercase; 
	color: #ffffff; 
	height: 22px; 
	width: 112px;
	border: 2px solid #ffffff; 
	border-width: 2px 2px 2px 2px;
	background: #7da626; 
	line-height: 22px;
}

.subMenu a, .subMenu a:visited {
	text-align: left;
	font-size: 10px;
	letter-spacing: normal;
}

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

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

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

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

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


/* hide the sub levels */
.menu ul ul {
	visibility: hidden;	/* hidden */
	position: absolute;
	height: 0;
	top: 27px;
	left: 0; 
	margin-left:2px;
	margin-top: 0px;
}

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

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

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

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

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#ffffff;
	color:#665f98; 
	height:auto; 
	padding-top: 0px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	line-height: 1em;
	width:90px;
	border: 1px solid #999999;
	border-top: none;
	border-bottom: none;
}


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

/* style the top level hover */
.menu :hover > a, .menu ul ul :hover > a {
	color:#ffffff;
	background:#687a25;
}

/* style the submenu hover */
.subMenu :hover > a, .menu ul ul :hover > a {
	color:#7da626;
	background:#ffffff;
	top: -10px;
}

.subMenu li:first-child a , .subMenu li:first-child a:visited {
	border-top: #999999 1px solid;
	width: 90px;
	padding-top: 10px;
}

/* a hack for IE6/7 requires js/offspring.js to function properly */
.subMenu li.first-child a , .subMenu li.first-child a:visited {
	border-top: #999999 1px solid;
	width: 90px;
	padding-top: 10px;
}


.subMenu li:last-child {
	border-bottom: #999999 1px solid;
	width: 112px;

}

.subMenu li:first-line {
	text-transform: lowercase;
}

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

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

