* {
margin: 0;
padding: 0;
}

#menu {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	text-align: left;
	
}

#menu ul {
	float: left;
	width: auto;
	list-style-type: none;
}

/*--definiert die Blocküberschriften--*/
#menu h3 {
	font-size: 12px;
	color: #999;
	border: 0px solid #003366;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	padding-right: 38px;
}

/*--definiert die "Drop-Down-Links" im Normalzustand--*/
#menu a {
	text-decoration: none;
	border: 0px solid #ccc;
	color: #999;

}

/*--definiert die "Drop-Down-Links" im Hoverzustand--*/
#menu a:hover {
	color: #F00;
}

/*verhindert im Zusammenhang mit position absolute bei ul ul
*eine Höhenvergrößerung von #menu beim Hovern--
*/

#menu li {
	position: relative;
	width: 105;
}

/*--versteckt die "Drop-Down-Links", solange nicht gehovert wird--*/
#menu ul ul {
position: absolute;
z-index: 2;
display: none;
}

/*--lässt die Dropdown-Links beim Hovern erscheinen--*/
#menu ul li:hover ul {
display: block;
}

/*--nur für IE-Versionen kleiner gleich 6 erkennbar--*/
* html #menu ul li{
	float: left;
	width: 550px;
}

/*--nur für IE 7 erkennbar--*/
*+ html #menu ul li {
float: left;
width: 100%;
}

/*--bewirkt Hover-Effekt für IE kleiner 7 auch für ul- und li-Elemente--*/
*html body {
behavior: url(csshover3-source.htc);
font-size: 100%;
}

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

/*--definiert einen Einzellink im Normalzustand, wenn kein Drop-Down erforderlich--*/

#menu a.direkt:link {
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	color: #999;
	border: 0px solid #003366;
}

/*--definiert einen Einzellink im Hoverzustand, wenn kein Drop-Down erforderlich--*/

#menu a.direkt:hover {
	color: #F00;
	border: 0px solid #ccc;
}
