arkadaşlar .nette bir dinamik menü yaptım ancak altmenuler üstüste geliyor yardımcı olursanız sevinirim


@charset "utf-8";
body { background-color:black;
}
#menu {
height: 30px;
width: 750px;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style-type: none;
}
#menu ul li {
display: block;
float: left;
height: 30px;
width: 150px;
;
}
#menu ul li a {
font-family: "Arial Black", Gadget, sans-serif;
color: #09F;
display: block;
font-size: 14px;
text-decoration: none;
font-weight: lighter;
line-height: 30px;
padding-left: 5px;
}
#menu ul li a:hover {
font-family: "Arial Black", Gadget, sans-serif;
color: #09F;
display: block;
font-size: 14px;
text-decoration: none;
font-weight: lighter;
line-height: 30px;
padding-left: 5px;
background-color: #CCC;
}
#menu ul li ul {
;
left: 0px;
top: 30px;
display: none;
}
#menu ul li:hover ul {
display: block;
}