/* vertical menu bar */
ul.mbv {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 141px;
}
ul.mbv li {
	padding: 0;
	margin: 0;
	border-bottom:1px; /* fixes gap problem in IE */
	border-bottom-color:#003366;
	border-bottom-style:solid;
	border-top:1px; /* fixes gap problem in IE */
	border-top-color:#ffcc00;
	border-top-style:solid;
	position: relative;
	z-index: 1;
}
ul.mbv ul {
	margin: 0 0 0 2px;
	padding: 0;
	list-style: none;
	position: absolute;
	top:1px; /* if using borders, -1 to align top borders */
	left: 150px;
	width: 191px;
	background: #ffcc00;
	z-index: 2;
}
/* separator to mark end of menu group */
ul.mbv li.end {
	border-bottom: 1px solid #ffcc00;
}

ul.mbv li a:link,
ul.mbv li a:visited,
ul.mbv li a:hover,
ul.mbv li a:active {
	display: block;
	font-size:100%;
	padding: 4px 5px;
	width: 100%;
	text-decoration: none;
	/*font-weight:normal;*/
	/*background: #9CC;*/
	background-color:#ffcc00;
	color: #003366;
}
ul.mbv li a:hover,
ul.mbv li a:active {
	/*background: #399;*/
	background-color:#003366;
	color: #ffffff;
}

ul.mbv li a.hidden:link,
ul.mbv li a.hidden:visited {
	/*background: url(mb.gif) 100% -17px no-repeat; */
	background-color:#003366;
	color:#ffffff;
}
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: #399 url(mb.gif) 100% -67px no-repeat;*/
	background-color:#ffcc00;
	color: #003366;
}

