El CSS parece cargar bien.
El problema es en las rutas que estás usando en el CSS incrustado dentro del HTML generado:
Código HTML:
Ver original
/* Custom CSS */
#header_bg{
background: url(images/header_bg.jpg) no-repeat;
}
#main{
background: url(images/content_bg.jpg) no-repeat;
background-color: #91dee6;
min-height:630px;
}
/*menu inferior*/
#main .moduletable_bottom1 a, #main .moduletable_bottom2 a, #main .moduletable_bottom3 a{
color: #0c618e;
font-size: 18px;
}
#main .moduletable_bottom1 a:hover, #main .moduletable_bottom2 a:hover, #main .moduletable_bottom3 a:hover{
color: #063b63;
}
footer{
background: url(images/footer_bg.jpg) no-repeat;
height: 128px;
}
footer .moduletable_footer1, footer .moduletable_footer1 a{
color: #0c618e;
}
Cambiá las rutas por rutas absolutas. O sea "images/header_bg.jpg" tiene que ser "/images/header_bg.jpg"