Julian mit css problem: Drop down menü nicht angezeigt

Beitrag lesen

Hallo,
bei meiner neuen Internetseite wird das Drop down Menü nicht richtig (gar nicht) angezeigt.
Hier mein css code:

.pos {  
width:100%;  
position:absolute; /* Menue Position, Standard = Links/Oben. Für Rechts einfach ein right:[x]px; hinzufügen! [x] steht dabei für die Pixel, z.B right:8px; Weitere Positionsanpassungen: top:[x]px; (Abstand oben) left:[x]px; (Abstand links) bottom:[x]px; (Abstand unten) Auch Prozent(%) Angaben sind möglich! */  
}  
.menu a{  
color: #ffffff; /* Link Farbe */  
text-decoration: none;  
width:100%;  
}  
.menu a:hover{  
color: green; /* Link Farbe bei Mouseover */  
}  
.menu{  
color: #ffffff; /* Text Farbe */  
width:100%;  
padding: 4px 15px;  
float:left;  
font-family: Verdana, Sans-Sherif; /* Schriftart */  
font-weight: bold;  
font-size: 11px; /* Schriftgröße */  
border:0px dotted #ffffff; /* Hauptmenue Border/Farbe */  
margin:0px 3px 0px 3px; /* Abstand zwischen den Menues */  
cursor: pointer;  
}  
.menu_sub{  
display:none;  
margin-top:4px;  
}  
.menu:hover .menu_sub{  
display:block;  
z-index:2;  
}  
.menu_sub div{  
text-align: left; /* Ausrichtung der Links im Menue (right, left oder center) */  
border-top:1px dotted #ffffff; /* Sub-Menue Border/Farbe */  
padding:3px 0px 3px 0px;  
}  
  
table{  
border: 1px dotted #ffffff;  
width: 100%;  
}  
td{  
border: 1px dotted #ffffff;  
width: 20%;  
text-align: center;  
}