

/* vertical menu bar */
ul.mbv {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 11em;
}
ul.mbv li {
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #014b58; /* fixes gap problem in IE */
	position: relative;
	z-index: 1;
}


ul.mbv ul {
	margin: 0 0 0 0px;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 0; /* if using borders, -1 to align top borders */
	left: 11em;
	width: 10em;
	background: #014b58;
	z-index: 2;
}



/* separator to mark end of menu group */
ul.mbv li.end {
}

ul.mbv li a:link,
ul.mbv li a:visited,
ul.mbv li a:hover,
ul.mbv li a:active {
	display: block;
	padding: .0em .0em;
	width: 10em;
	text-decoration: none;
	background: #014b58;
	color: #FFF;
}
ul.mbv li a:hover,
ul.mbv li a:active {
	background: #014b58;
	color: #fcdfbe;
}

ul.mbv li a.hidden:link,
ul.mbv li a.hidden:visited {
	background: #014b58;
}
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: #014b58;
	color: #fcdfbe;
}
