/* vertical menu bar */
ul.mbv
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 9em;
}

ul.mbv li
{
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #d3daec;	/* 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: 10em;
	width: 10em;
	background: #d3daec;
	z-index: 2;
}

/* separator to mark end of menu group */
ul.mbv li.end
{
/*	border-bottom: 1px dashed #A0A0A0; */
	border-bottom: 1px #A0A0A0;
}

ul.mbv li a:link,
ul.mbv li a:visited,
ul.mbv li a:hover,
ul.mbv li a:active
{
	display: block;
	padding: .2em .5em;
	width: 10em;
	text-decoration: none;
	background: #d3daec;
	color: #000080;		/* text color not selected */
}

ul.mbv li a:hover,
ul.mbv li a:active
{
	background: #A0A0A0;
	color: #000080;		/* text color selected */
	font-weight: bold;
}

ul.mbv li a.hidden:link,
ul.mbv li a.hidden:visited
{
	background: #d3daec url(../images/mb.bmp) 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: #A0A0A0 url(../images/mb.bmp) 100% -62px no-repeat;
	color: #000080;		/* text color popup selected */
	font-weight: normal;
}
