/*
Navi - CSS Blackbeltcenter Würzburg
Autor: Reinhard Schmidt
Erstellt: 22.05.2005
Geändert: ---
*/
ul
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 167px; /* Width of Menu Items */
	border-bottom: 1px solid white; /* Border of Menu */
}

ul li
{
	position: relative;
}

li ul
{
	position: absolute;
	left: 166px; /* Set 1px less than menu width */
	top: 0;
	display: none;
}

/* Styles for Menu Items */
ul li a
{
	display: block;
	text-decoration: none;
	color: #fff;
	background: #B0C9DD; /* IE6 Bug */
	padding: 5px;
	border: 1px solid white;
	border-bottom: 0;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

/* Hover Styles */

ul li a:hover 
{ 
	color: #FFD1A0; 
	background: #97B9D4; 
} 
		
li ul li a 
{ 
	padding: 5px 5px; 
} /* Sub Menu Styles */
		
li:hover ul, li.over ul 
{ 
	display: block; 
} /* The magic */

