Pon los LI con floats,
luego para que te haga bien el clear, después de la lista añadele las declaraciones de :after.
Prueba así, a ver si te va bien:
Código:
ul.menuPrincipal li{
float:left;
width:100px;
etc...
}
ul.submenu{
display:block;
clear:both;
width:800px;
}
ul.submenu li{
float:left;
}
ul.menuPrincipal:after,
ul.submenu:after{
content: "";
display: block;
height: 0px;
clear: both;
}