
/* vertical menu bar */
ul.mbv {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 9.5em;
}
ul.mbv li {
	padding: 0px;
	margin: 0px !important;
	border-bottom: 1px solid #525152; /* fixes gap problem in IE */
	position: relative;
	z-index: 1;
}
ul.mbv li ul li {
	background: transparent;
	padding: 1px !important;
	margin: 0;
	border: 1px solid #ddd; /* fixes gap problem in IE */
	position: relative;
	z-index: 1;
  border: none !important;
}
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: 9.8em;
	width: 11em;
	background: transparent;
	z-index: 2;
}
/* separator to mark end of menu group */
ul.mbv li.end {
	border-bottom: 1px dashed #ddd;
}

ul.mbv li a:link,
ul.mbv li a:visited,
ul.mbv li a:hover,
/* polozka, ktera nema podpolozky */
ul.mbv li a:active {
	display: block;
	margin: 0px !important;
	padding-top: .2em;
	padding-right: .5em;
	text-decoration: none;
	background: #616161 !important;
	color: gray;
	border: 1px solid Gray !important;
}
ul.mbv li a:hover,
ul.mbv li a:active {
	background: #616161 url(obrazky/pozadi_menu.png) repeat-x !important;
	color: #FFF;
}

/* polozka, ktera ma podpolozky */
ul.mbv li a.hidden:link,
ul.mbv li a.hidden:visited {
	background: Gray;
	margin: 0px !important;
}
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: #616161 url(obrazky/pozadi_menu.png) repeat-x !important;
	color: White !important;
}

