#menu { 
 width: 135px; 
 padding-left: 5px ; 
 background: var (--tabelle1); 
 float: right; 
	margin-left:1005px;

}




#menu ul { 
 margin:0;
 padding:0;
 background: var (--tabelle2); 
 float: right; 
 list-style-type: none; 
}




#menu li { 
 float:right;
 position: relative; 
} 




#menu li li {
 white-space: nowrap;
 float:left;
}
#menu a { 
 padding:5px 15px;
 position: relative; 
 text-decoration: none; 
 display: block; 
 text-align: center; 
 color: white; 
} 




#menu a:hover { 
 color: white; 
 background: #a33; 
}




#menu ul ul { 
 position: absolute; 
 display: none; 
}




#menu ul li:hover ul { 
 display: block; 
}




#menu ul li:hover ul ul { 
 display: none; 
}




#menu ul ul li:hover ul { 
 display: block; 
 position: absolute; 
 top:0; 
 left:100%; 
}

