Well I am almost ready to launch just doing some tweeks and was separating my CSS from my HTML so I can just link the CSS and when I made the CSS file and linked it everything works except the background. It does not show up on my page. I can add the body back in the <head></head> and it works, but if it is in my CSS it does not work. I see no errors in my CSS cause I took a look and all is like it should be just not showing.

Any Ideas on why this is happening?

Here is the CSS for my body this is the only one not working in my CSS document when linked,
<style type="text/css">
body{
background-color:#313131;
background-image:url(/siteimg/my_bg.png);
background-position:center center;
background-repeat:repeat-y;
background-attachment:scroll;
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}
Any help would be appreciated!