There are a couple of things that are causing this.
The sideboxes all have a margin-top, and there is a <br class="clearBoth" /> in the header that makes a space.
Find in your stylesheet
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #9a9a9a;
border-bottom: 5px solid #336633;
margin-top: 1.5em;
}
Remove the margin-top, and add a new rule:
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #9a9a9a;
border-bottom: 5px solid #336633;
}
#logoWrapper+.clearBoth {display: none;}