/* CSS Document */

	/* Hauptmenü */
		
#nav {
	background-color: #cc0000;
	width: 670px;
	height: 20px;
	padding: 0px;
	margin: 0px 0px 0px 160px;
	list-style-type: none;
	position: static;	
}
#nav ul {
	
	padding: 0px 0px 0px 0px;
	list-style-type: none;
	
}
#nav li {
	font-size: 0.9em;
	float: left;
	position: relative;
	width: 110px;
	margin: 0px;
	line-height: 20px;
	padding: 0px;

}

#nav a:link {
	color: #ececec;
	text-decoration: none;
	text-align:center;
	margin: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ececec;
	display: block;
	padding: 0px 5px 0px 5px;
}
#nav a:visited {
	color: #ececec;
	text-decoration: none;
	text-align:center;
	margin: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ececec;
	display: block;
	padding: 0px 5px 0px 5px;
}
#nav a:hover {
	color: #ececec;
	text-decoration: none;
	text-align:center;
	margin: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ececec;
	display: block;
	padding: 0px 5px 0px 5px;
}

/* Submenü */

#nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #CCCCCC;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #cc0000;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #cc0000;
}

#nav li>ul {
	top: auto;
	left: auto;

}

/* Holly Hack. IE Requirement \*/

/** html ul li { float: left; height: 1%; }

/** html ul li a { height: 1%; }

/* End */

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
	z-index:10;
}
#nav li li a:link {
	color: #CC0000;
	border-right-style: none;
}
#nav li li a:visited {
	color: #cc0000;
}

#nav li li a:hover {
	background-color: #999999;
	display: block;
}
