If you are going to start again then something like this will get you going:
Code:
#navCatTabsDropdown ul li{
position:relative;
display:block;
float:left;
margin-right:10px;
}
#navCatTabsDropdown ul li ul{
position:absolute;
left:-9999px;
width:150px
}
#navCatTabsDropdown ul li ul li{
float:none;
border:1px solid #aaa;
background:white;
}
#navCatTabsDropdown a.category-top:hover + ul{
left:0px !important;
}
Not perfect as it was done with the morning coffee but it is a start.
Personally I'd rewrite the whole mod because the structure of html is not ideal either. People's obsession with lists make this more difficult not easier.