You are applying a bunch of styles to the menu via your style.css file. Try removing them and it should work a lot better. If it doesn’t help, then post back and I’ll take a closer look.
Here’s the codes which I think you should remove:
[code:3t756br7]#menu ul {
margin: 0;
padding:0;
list-style: none;
}
#menu li {
display: inline;
}
#menu a
{
padding:4px 8px;
text-decoration: none;
font-weight: bold;
font-variant:small-caps;
font-size: 1em;
border:0;
color:#6B83A8;
letter-spacing:+2px;
}
#menu a:hover,
#menu a:active,
#menu li.current_page_item a:link,
#menu li.current_page_item a:visited,
#menu li.current_page_item a:hover,
#menu li.current_page_item a:active
{
background:#103355;
color:#99CCCC;
border:0;
}[/code:3t756br7]