/* vertical menu bar */

/*Edit the menu bar size*/
ul.mbv {
	margin: 0;
	padding: 3;
	list-style: none;
	width: 11em;
}
ul.mbv li {
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #820000; /* 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: 11em;
	width: 11em;
		/*dfd*/
	background: #820000;
	z-index: 2;
}


ul.mbv li a:link,
ul.mbv li a:visited,
ul.mbv li a:hover,
ul.mbv li a:active {
	display: block;
	padding: 0 em 0 em;
	width: 11em;
	text-decoration: none;
	background: #820000;
	color: #FFF;
}
ul.mbv li a:hover,
ul.mbv li a:active {
	background: #c30000;
	color: #FFF;
}

ul.mbv li a.hidden:link,
ul.mbv li a.hidden:visited {
	background: #820000 url() 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: #c30000 url() 100% -62px no-repeat;
	color: #FFF;
}








