Okay, first thing, you seriously need to clean up your CSS file. There is spacing for “presentation look” and then there is excessive. There is at least one empty space between every line, sometimes four. It’s hard to read, but more importantly, it makes the style.css file LARGER. The bigger it is, the longer it takes to load. I’d just do some search and replace of the double line breaks to single breaks. Just some housekeeping.
Now, to your issue! You have a HUGE right margin on your content:
margin: 30px 17em 0 4em;
17 em is huge. This adds a lot of “space” to the margin of your main content. I’d change it to 17px or something much smaller than em sizes. That is pushing your sidebar down, I bet. Give that a try.