.mainmenu {
	width:800px;
	height:25px;
	position:relative;
	left: 10px;
	top: -60px;
	z-index:100;
	font-family:arial, sans-serif;
}
/* hack to correct IE5.5 faulty box model */
* html .mainmenu {
	width:800px;
	w\idth:800px;
}
/* remove all the bullets, borders and padding from the default list styling */
.mainmenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

.mainmenu ul ul {
	width:110px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.mainmenu li {
	float:left;
	width:110px;
	position:relative;
}
/* style the links for the top level */
.mainmenu a, .mainmenu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#fff;
	width:100px;
	height:25px;
	border-left:1px solid gray;
	border-top:1px solid gray;
	border-right:1px solid #000;
	border-bottom:1px solid #000;
	border-width:1px 1px 1px 1px;
	background:#203a31;
	line-height:25px;
	font-weight:bold;
        text-align: center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .mainmenu a, * html .mainmenu a:visited {
	width:100px;
	w\idth:100px;
}
/* style the second level background */
.mainmenu ul ul a.drop, .mainmenu ul ul a.drop:visited {
	background:#194938 url(grey-arrow.gif) no-repeat 130px center;
}
/* style the second level hover */
.mainmenu ul ul a.drop:hover {
	background:#c9ba65 url(blue-arrow.gif) no-repeat 130px center;
}
.mainmenu ul ul :hover > a.drop {
	background:#c9ba65 url(blue-arrow.gif) no-repeat 130px center;
}
/* style the third level background */
.mainmenu ul ul ul a, .mainmenu ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
.mainmenu ul ul ul a:hover {
	background:#b2ab9b;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.mainmenu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	width:120px;
}
/* another hack for IE5.5 */
* html .mainmenu ul ul {
	top:25px;
	t\op:26px;
}
/* position the third level flyout menu */
.mainmenu ul ul ul {
	left:110px;
	top:-1px;
	width:110px;
}
/* position the third level flyout menu for a left flyout */
.mainmenu ul ul ul.left {
	left:-128px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.mainmenu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	;
}
/* style the second level links */
.mainmenu ul ul a, .mainmenu ul ul a:visited {
	background:#194938;
	color:#000;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:110px;
	border-left:1px solid gray;
	border-top:1px solid gray;
	border-right:1px solid #000;
	border-bottom:1px solid #000;
	border-width:1px 1px 1px 1px;

}
/* yet another hack for IE5.5 */
* html .mainmenu ul ul a, * html .mainmenu ul ul a:visited {
	width:110px;
	w\idth:110px;
}
/* style the top level hover */
.mainmenu a:hover, .mainmenu ul ul a:hover {
	color:#000;
	background:#b4b6d6;
}
.mainmenu :hover > a, .mainmenu ul ul :hover > a {
	color:#000;
	background:#b4b6d6;
}
/* make the second level visible when hover on first level list OR link */
.mainmenu ul li:hover ul, .mainmenu ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.mainmenu ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.mainmenu ul :hover ul :hover ul {
	visibility:visible;
}

.mainmenu li.activenavitab a {
       color: #203A31;
       background-color: #b4b6d6;
}