* {
margin: 0;
padding: 0;
}

#menu {
position: absolute;
top: 100px;
left: 10px;
width: 160px;
height: 480px;
padding: 20px 20px 0 20px;
font-family: 'Trebuchet MS', verdana, sans-serif;
font-size: 14px;
line-height: 3.0;
float: left;
}

.point {
color: #ffffff;
font-weight: bold;
font-size: 8px;
}

#menu ul {
width: 160px;
list-style-type: none;
}

/*--definiert die Blocküberschriften--*/
#menu h3 {
font-size: 14px;
text-align: left;
color: #000;
background: #0000ff;
}

/*--definiert die "Ausklapp-Links" im Normalzustand--*/
#menu a {
text-decoration: none;
display: block;
text-align: left;
color: #ffffff;
}

/*--definiert die "Ausklapp-Links" im Hoverzustand--*/
#menu a:hover {
color: #000000;
background: #B46363;
}

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

#menu li {
position: relative;
}

/*--versteckt die "Ausklapp-Links", solange nicht gehovert wird--*/
#menu ul ul {
position: absolute;
top: 0px; left: 160px; z-index: 2;
display: none;
}

/*--lässt die Ausklapp-Links beim Hovern erscheinen--*/
#menu ul li:hover ul {
display: block;
background-image: url(../img/hinbild.jpg);
border-top: 2px solid #990033;
border-right: 2px solid #990033;
border-bottom: 1px solid #990033;
border-left: 1px solid #990033;
}

/*--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%;
}

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

#menu a.direkt:link {
font-size: 1em;
font-weight: bold;
text-align: center;
color: #000;
background: #ff0000;
}

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

#menu a.direkt:hover {
color: #ffffff;
background: #00ff00;
}
