Merhaba arkadaşlar. Temaya menü ekledim ve css ayarlarini yaptığımda şöyle bir menü çıkması gerkirken


böyle bir menü çıkıyor:
http://sessizyanki.com/

menünün css koduda böyle. Koddaki sıkıntı nedir ?

/* The container wrapping ul.dropdown */
#navwrap {
float:left;
width:100%;
background: rgb(247,247,247);
background: -moz-linear-gradient( bottom, rgb(247,247,247), rgb(247,247,240)); /* CSS 3 */
background: -webkit-linear-gradient( bottom, rgb(247,247,247), rgb(247,247,240));
font: 1.0em "Segoe UI", "Lucida Grande", Verdana, Arial, sans-serif;
border-top:2px solid #000;
border-bottom:2px solid #000;
margin-top : -10px;
}
/* Top level Unordered list */
ul.dropdown {
list-style:none;
float:left;
width:100%;

}
ul.dropdown  li{
float:left; /* makes horiz list */
position:relative; /* hey Submenu ULs, appear below! */
left:55px;

}
ul.dropdown a {
padding:12px; /*space the items, occupy entire height too.*/
color:#eee;
text-decoration:none;
text-shadow:0 1px 0 #000;
}
/* Style the link hover */
ul.dropdown li:hover a {
background:#444;
border-top:1px solid #777;
border-bottom: 1px solid #000;
border-right:1px solid #666;
}
/* Displays the link as blocks. */
ul.dropdown li ul a {
display:block;
}
/* sub menus!!  */
 
ul.dropdown ul {
list-style: none;
margin:0; /* Appear just below the hovering list */
padding:0;
width:200px; /* specify the width. */
position:absolute; /* needed */
z-index:500; /* specify the order */
}
ul.dropdown li ul {
top:27px; /* Positioning:Calc with top level horz list height */
-moz-box-shadow:0 2px 10px #000; /* CSS 3 */
}
ul.dropdown ul ul {
top:0;
left:100%; /* Position the sub menus to right. */
}
 
ul.dropdown ul li {
float:none; /* umm.. Appear below the previous one. mmkay? */
}
/* Drop Down! */
 
/* Hide all the dropdowns (submenus) */
ul.dropdown ul,
ul.dropdown li:hover ul ul,
ul.dropdown ul li:hover ul ul
{ display: none; }
 
/* Display the submenus only when li are hovered */
ul.dropdown li:hover ul,
ul.dropdown ul li:hover ul ,
ul.dropdown ul li ul li:hover ul
{ display: block;}
 
ul.dropdown li * a:hover {
/* Change color of links when hovered */
background: #600;
background: -moz-linear-gradient( top, #200, #400); /* CSS 3 */
border-bottom:1px solid #900;
border-top:1px solid #222;
}