/* vertical menu bar */
ul.mbv {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 8em;
}
ul.mbv li {
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #011F69; /* fixes gap problem in IE */
	position: relative;
	z-index: 1;
}
ul.mbv ul {
	margin: 0 0 0 2px;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 0; /* if using borders, -1 to align top borders */
	left: 8em;
	width: 8em;
	background:  #011F69;
	z-index: 2;
}
/* separator to mark end of menu group */
ul.mbv li.end {
	border-bottom: 1px solid #011F69;
}

ul.mbv li a:link,
ul.mbv li a:visited,
ul.mbv li a:hover,
ul.mbv li a:active {
	display: block;
	padding: .5em .0em;
	width: 13em;
	font-size:10px;
	font-family:Verdana,Arial;
	text-decoration: none;
	background: #011F69;
	color: #FFFFFF;
	border-bottom: 1px solid #EFCF8F;
}
ul.mbv li a:hover,
ul.mbv li a:active {
	background: #011F69;
	color: #EFCF8F;
}

ul.mbv li a.hidden:link,
ul.mbv li a.hidden:visited {
	background: #011F69 url(mb.gif) 100% -12px no-repeat;
}
ul.mbv li a.visible:link,
ul.mbv li a.visible:visited,
ul.mbv li a.visible:hover,
ul.mbv li a.visible:active {
	background: #011F69 url(mb.gif) 100% -62px no-repeat;
	color: #FF8000;
}


