#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	width: 170px;
}

#nav li { /* all list items */
	position: relative;
	float: left;
	line-height: 1.2em;
	margin-bottom: 5px;
}

#nav li ul { /* second-level lists */
	position: relative;
	/*left: -999px; nicht für IE6 geeignet */
	height: 0px;
	margin: 0px;
	padding: 5px 0px 0px 8px;
	width: 150px;
	display: none; /* für IE6 */
}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
}

#nav li a {
	display : block;
	color : #333333;
	font-weight : bold;
	font-size: 10px;
	text-decoration : none;
	background-color : white;
	border-bottom: 1px solid #C182A3;
	padding : 0px;
	width: 170px;
}

#nav li a:hover {
	color : #8F1D59;
	background-color : white;
}

#nav li ul a {
	display : block;
	color : #333333;
	font-weight : normal;
	font-size: 10px;
	text-decoration : none;
	background-color : white;
	border-bottom: 1px solid #666666;
	width: 162px;
}

#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; nicht für IE6 geeignet */
	display: block; /* für IE6 */
	height: auto;
}

