From what I see your problem is that background image. It is not set to repeat and it is not designed to repeat.
Change
background:url('../images/bg_main.png') no-repeat scroll 50% 0px transparent;
to
background:url('../images/bg_main.png') repeat-y scroll 50% 0px transparent;
and I think you will see what I’m talking about.