/* CSS Document */

Early in style.css you have a rule for body that defines 'background-color', later you have this rule


body { background: url(images/Untitled-1.jpg) top left repeat-x; }

Because that rule covers background-color as well as the image it appears it overrides your early rule. If you change the rule to

body { background: url(images/Untitled-1.jpg) top left repeat-x #013a33; }

it should work as you want.

body {
	background-attachment: scroll;
	background-image: url(Untitled-1.jpg);
	background-repeat: repeat-x;
}

