
/* horizontal menu bar */
ul.mbh {
	margin: 0;
	padding: 0 0 0 0;
	text-align: center;
	list-style: none;
	width: 100%;	
	font-size: 11px;
	position: relative;
	color: #FFFFFF;
	vertical-align:bottom;	
}
ul.mbh li {
	float: left;
	text-align: center;
	padding: 0 0 0 0;
	position: relative;
	margin: 0;
	z-index: 1;
	border-right: solid 0px #000000;
}
ul.mbh ul li {
	float: none;
	position: relative;
	border-bottom: 1px solid #9CC; /* fixes gap problem in IE */
	border-right: solid 0px #000000;
}
/* separator to mark end of menu group */
ul.mbh ul li.end {
	border-bottom: 1px dashed #399;
}
ul.mbh li ul {
	margin: 0;
	padding: 0;	
	list-style: none;
	position: absolute;
	top: 20;
	left: 0;
	background: maroon;
	z-index: 2;
}
ul.mbh ul ul {
	margin-left: .2em;
	position: absolute;
	top: 0; /* if using borders, -1px to align top borders */
	left: 9em;
}

ul.mbh li a:link,
ul.mbh li a:visited,
ul.mbh li a:hover,
ul.mbh li a:active {
	display: block;
	padding: .2em .5em;
	text-decoration: none;
	color: #FFFFFF;
}
ul.mbh li a:hover,
ul.mbh li a:active {
	background: gray;
	color: #FFFFFF;
}
ul.mbh ul li a:link,
ul.mbh ul li a:visited,
ul.mbh ul li a:hover,
ul.mbh ul li a:active {
	width: 9em;	
}

ul.mbh ul li a.hidden:link,
ul.mbh ul li a.hidden:visited {
	background: maroon url(mb.gif) 100% -12px no-repeat;
}
ul.mbh li a.visible:link,
ul.mbh li a.visible:visited,
ul.mbh li a.visible:hover,
ul.mbh li a.visible:active {
	background: maroon;
	color: #FFFFFF;
}
ul.mbh ul li a.visible:link,
ul.mbh ul li a.visible:visited,
ul.mbh ul li a.visible:hover,
ul.mbh ul li a.visible:active {
	background: gray url(mb.gif) 100% -62px no-repeat;
}

