You have used a huge negative margin to get your categories heading positioned; maybe this is not sitting well with IE7.
stylesheet.css (line 900)
h3.leftBoxHeading, h3.leftBoxHeading a {
color:#FFFFFF;
font-size:1em;
margin-left:-100px;
}
Change to
h3.leftBoxHeading, h3.leftBoxHeading a {
color:#FFFFFF;
font-size:1em;
padding-left:23px;
text-align:left;
}


but still not everything works right. I got rid of the white space mentioned previously- it was caused but a wrong decision while writing the css code again. Unfortunately, it doesn't fix the problem in IE7- the menu just goes very far to the left. But still, the progress made makes me a little less miserable 
