Once again, i was misunderstanding the issue, Neilo.
The width of the main menu items is being set to 145px
ul#cssmw1 > li > a {
background-color: #FFF2DA;
background-image: none;
border-bottom: solid 1px #fff;
border-right: solid 1px #fff;
color: #2d2b2e;
display: block;
font: normal normal bold 10px Trebuchet MS, Helvetica, sans-serif;
height: 10px;
margin: 8 8 8 8;
padding: 10px 10px 10px 10px;
text-decoration: none;
text-transform: none;
width: 145px;
}
the level one menu items are only being pushed to the left 132px
ul#cssmw1 ul.level-1 {
left: 132px;
margin-right: 25px;
}
The left attribute needs to be changed to 145px.