body {
/* Background color MUST use HEX ONLY */

background-color: #537731;

/* Change the filename.jpg ONLY */

background-image: url('images/_');

/* Background positions can only 1 of the listed PAIRs below:
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right
*/

background-position: top left;

/* repeat-x copies the background image Left to Right */
/* repeat-y copies the background image Top to Bottom */
/* repeat copies the background image in ALL directions */
/* no-repeat does NOT make copies of the background image */

background-repeat: repeat ;

}