You have several things that are taking up space:
Code:
#logoWrapper { margin: 0; padding: 0; width: 100%; display: block; background: url('../images/header-bg.jpg') center no-repeat; height: 220px; }
#logo { padding: 30px 0 10px 40px; }
#logo a, #logo a:visited { font-family: Trebuchet MS; font-size: 40px; text-decoration: none; color: #ffffff; font-weight: normal; }
#taglineWrapper{ font-size: 20px; padding: 10px 0 10px 60px; margin-top: -30px; text-align: left; }
#logoWrapper is 220px high, but the background image is not large enough to fill it.
#logo and #taglineWrapper have lots of padding, but no content. If you don't want to show anything in them, set them to
display: none;