/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	font-size: 12px;
	display: block;
	width: 105px;
}

#nav li { /* all list items */
	float: left;
	width: 104px; /* width needed or else Opera goes nuts */
	
	padding-bottom: 0;
	margin-right: 2px;
}

#nav li#last {margin-right: 0px; margin-left: 0;width:102px}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #CDE2F3;
	width: 115px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li:hover {
	background-color: #6aaed2; width:107px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/**************/
#nav ul li a, #nav ul ul li a, #nav ul ul ul li a {
	color: black; text-decoration: none; font-size: 11px; 
}
#nav ul#level2items {margin-top: 82px; border-left: 2px solid white; border-right: 2px solid white; border-top: 2px solid white;z-index: 20000;}
#nav ul#level3items {border-left: 2px solid white; border-right: 2px solid white; border-top: 2px solid white;}
#nav ul#level3items {margin-left: 100px;}
#nav ul#level3items li#last, #nav ul#level2items li#last {margin-right: 0px; margin-left: 0px; }

#nav ul#level2items li {
	border-bottom: 2px solid white; 
	padding-left: 10px; 
	width: 105px;
	/*background-image: url(../bilder/flocke-klein-schwarz.gif);
	background-repeat: no-repeat;
	background-position: 1px 50%;*/
}


/*h�he der dropdown-men�punkte*/
#nav li ul li {line-height: 1.5; width: 104px}
