#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	cursor: pointer;
	height: auto;
}

#nav li { /* Container für die Obermenüitems */
	float: left;
	list-style-image: none;
	padding: 0px;
}
* html #nav li {
	position: relative;
}

#nav a { /* Schriftarten/Hover für die Obermenüitems */
	float: left;
	border-left: 1px solid #b20817;
	padding: 0px 10px 0px 10px;
	background-color: #e3001b;
	color: #FFFFFF;
	height: 22px;
	line-height: 22px;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}
* html #nav a {
	line-height: 21px;
}

#nav a:hover {
	color: #000000;
}

#nav li ul { /* Container für die Untermenüitems */
	display: none;
	clear: left;
	position: absolute;
	overflow-x: hidden;
	background-color: #e3001b;
	z-index: 10000;
	top: 0px;
	left: 0px;
	width: 160px;
	padding-top: 5px;
	margin-top: 22px;
	margin-left: 0px;
	padding-left: 0px;
	border: none;
	overflow: hidden;
}
html>body #nav li ul { /* IE7 Hack, um das Untermenü richtig anzuordnen */
	*margin-top: 0px;
}

#nav li ul a { /* Schriftarten/Hover für die Untermenüitems */
	width: 150px;
	line-height: 14px;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	text-decoration: none;
	text-transform: none;
	border: none;
	cursor: pointer;
}
* html #nav li ul a {
	line-height: 13px;
}

#nav li ul a:hover {
	color: #000000;
	font-weight: bold;
}

#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
}
