Try fixing the background and adding a margin to the body
I also do not see where you have a class defined for .body-bg
See highlighted
Code:
body {
margin: 0;
font-family: arial, helvetica, sans-serif;
font-size: 0.72em;
color: #333333;
line-height: 17px;
}
.body-bg {
background: #f3f3f3 url("../images/body_up.gif") no-repeat center top;
}
With this adjust to suit
Code:
body {
margin: 10em 0em 10em 0em;
background: url("../images/body_up.gif") no-repeat center top;
background-position: fixed;
font-family: arial, helvetica, sans-serif;
font-size: 0.72em;
color: #333333;
line-height: 17px;
}