@charset "utf-8";
/* CSS Document */




/*--definiert die einzelnen Navigationsbl&ouml;cke--*/
#menu ul {
float: left;
list-style-type: none;
margin: 0 0 0 -20px;
padding: 0;
}

/*--definiert die "Drop-Down-Links" im Normalzustand--*/
#menu a {
    background: none repeat scroll 0 0 #DEDEDE;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 1px 1px 1px #666666;
    color: #333333;
    display: block;
    font-size: 1.2em;
    font-weight: normal;
    height: 20px;
    margin: 1px;
    padding: 2px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    width: 25px;
}

.letter {
    background-color: #FFFFFF;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 1px 1px 3px #000000;
    margin: -140px 0 0;
    padding: 2px 2px 4px 4px;
    width: 240px;
}


/*--definiert die "Drop-Down-Links" im Hoverzustand--*/
off#menu a:hover {
color: #ff9224;
background: #003366;
}



/*--versteckt die "Drop-Down-Links", solange nicht gehovert wird--*/
#menu ul ul {
position: absolute;
z-index: 2;
display: none;
}

#menu li {
position: relative; /*verhindert im Zusammenhang mit pos. absolute bei ul ul eine H&ouml;henvergr&ouml;&szlig;erung von #menu beim Hovern--*/
}

/*--l&auml;sst die Dropdown-Links beim Hovern erscheinen--*/
#menu ul li:hover ul {
display: block;
}


/*--definiert einen Einzellink im Normalzustand, wenn kein Drop-Down erforderlich--*/
off#menu a.direkt:link {
font-size: 1em;
font-weight: bold;
text-align: center;
color: #000;
border: 1px solid #003366;
background: #ff8000;
}


/*--definiert einen Einzellink im Hoverzustand, wenn kein Drop-Down erforderlich--*/
off#menu a.direkt:hover {
color: #ff9224;
background: #003366;
border: 1px solid #ccc;
}

/*--nur f&uuml;r IE-Versionen &lt;=6 erkennbar--*/
* html #menu ul li {
float: left;
width: 100%;
}

/*--nur f&uuml;r IE 7 erkennbar--*/
*+ html #menu ul li {
float: left;
width: 100%;
}



/*--bewirkt Hover-Effekt f&uuml;r IE &lt;7 auch f&uuml;r ul- und li-Elemente--*/
*html body {
behavior: url(csshover3-source.htc);
font-size: 100%;
}

*html #menu ul li a {
height: 1%;
}

