I think I have just found whats causing it.
Try this, remove the float: left; from your #content id. So replace this:
HTML Code:
#content {
float: left;
width:auto;
min-height:500px;
height:auto;
height:auto; /* for IE5.x and IE6 */
margin-top:5px;
margin-left:210px;
background-image:url(content.gif);
border-bottom:1px #d2d2d2 solid;
}
with
HTML Code:
#content {
width:auto;
min-height:500px;
height:auto;
height:auto; /* for IE5.x and IE6 */
margin-top:5px;
margin-left:210px;
background-image:url(content.gif);
border-bottom:1px #d2d2d2 solid;
}
This can be found inside your .css file.