 * {
margin: 0;
padding: 0;
}

#menu {
width: 100%;
height: 60px;
padding: 0 20px;
background: #ffffff;
font-family: 'Didact Gothic', sans-serif;
font-size: 12px;
line-height: 1.5;
float: left;
border-bottom: solid 1px #800000;
}

#menu ul {
float: left;
width: 210px;
list-style-type: none;
}

/*--definiert die Blocküberschriften--*/
#menu p {
margin: 0 0 0 0;
padding: 0 0 10px 0;
font-size: 1.5em;
text-align: center;
color: #000;
}

/*--definiert die "Drop-Down-Links" im Normalzustand--*/
#menu a {
text-decoration: none;
display: block;
font-size:15px;
text-align: center;
background: #ffffff;
color: #ff0000;
}



/*--definiert die "Drop-Down-Links" im Hoverzustand--*/
#menu a:hover {
color: #000000;
background: #cccccc;
}

/*verhindert im Zusammenhang mit position absolute bei ul ul
*eine Höhenvergrößerung von #menu beim Hovern--
*/

#menu li {
position: relative;
}

/*--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: 100%;
}

/*--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 {
font-size: 15px;
font-family: Verdana, Tahoma, Arial, sans-serif;
font-weight: normal;
text-align: center;
color: #000000;
background: #ffffff;
}

/*--definiert einen Einzellink im Hoverzustand, wenn kein Drop-Down erforderlich--*/

#menu a.direkt:hover {
color: #ff6600;
font-size: 15px;
border-bottom: 2px solid #ff6600;
}