Cheers Les,
You may also want to play with the width of the Level-1 menu, and add a 'white-space:normal;' property to the rule in CSSMenuWriter/cssmw/menu.css (line 105) in order to fit the longer text links. The 'white-space:normal' property will allow the text to wrap:
ul#cssmw ul.level-1 > li > a, ul#cssmw ul.level-1 > li > a:link {
    background-color: #FFFF00;
    background-image: none;
    border-bottom: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    color: #173232;
    display: block;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: bold;
    margin: 0;
    outline-style: none;
    padding: 5px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    width: 120px;
}
Looking good.


