<style type="text/css">
#info {height:125px;}

.menu {		/* this page only */
font-size:12px;	/* Schriftgröße */
height:125px; /* unteres fenster höhe */
margin:0px 0px 0px 0px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:250px; /* menüpunktbreite */
height:125px; 
position:relative;
border:0px;
}

.menu li {
height: 15px; /* menüpunkthöhe */
}
* html .menu li {margin-left:-16px; margin-left:0;}
/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em; width:0; height:0;}

/* style the links */
.menu a, .menu a:visited {
font-family:Arial, Helvetica, sans-serif;
display:block; 
text-decoration:none;
height:15px;	/* menüpunkthöhe */
line-height:15px; /* menüpunkthöhe */
width:250px; /* menüpunktbreite */
color:#999999;
text-indent:5px;
}
/* style the link hover */
.menu a:hover {color: #000000; background: #FFFFFF;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0px;
left:90px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
visibility:visible;
height:125px;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
height:125px;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
height:125px;
}

<!--[if IE 7]>
<style type="text/css">
.menu li {float:left;}
</style>
<![endif]-->

