@charset "UTF-8";

/* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


ul.MenuBarVertical {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
	font-size: 12px;
	text-decoration: none;
	cursor: default;
	width: 100%;
}

ul.MenuBarActive {
	z-index: 1000;
}

ul.MenuBarVertical li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 216px;
}

ul.MenuBarVertical ul {
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 216px;
	left: -1000em;
	top: 0;
}

ul.MenuBarVertical ul.MenuBarSubmenuVisible {}
ul.MenuBarVertical ul li {}




/* Outermost menu container has borders on all sides */
ul.MenuBarVertical {}

/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul {}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a {
	height: 23px;
	border-top: 1px solid #ffffff;
	display: block;
	cursor: pointer;
	background-color: #999999;
	padding: 6px 0px 0px 10px;
	color: #ffffff;
	text-decoration: none;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus {
	background-color: #ffffff;
	color: #111111;
	text-decoration: none;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible {
	background-color: #ffffff;
	color: #111111;
	text-decoration: none;
}

/* Eigene Ergänzung für bereits besuchte Menu items */
ul.MenuBarVertical a:visited, ul.MenuBarVertical a:focus:visited {
	background-color: #999999;
	color: #ffffff;
	text-decoration: none;
}
ul.MenuBarVertical a:visited:hover, ul.MenuBarVertical a:focus:visited:hover {
	background-color: #ffffff;
	color: #111111;
	text-decoration: none;
}





/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}

