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

background-color: #55a63d;

/* Change the filename.jpg ONLY */

background-image: url('images/paper_colour.jpg');

/* 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 center;

/* 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 ;

}


/* Change logo here */
#identity {
	background-color: transparent;
}
#identity h1 {
	width: 250px; /* Width of logo */
	background-image: url('images/'); /* Path to logo */
}

#identity h1 a {
	width: 250px; /* Logo Width */
	height:200px; /* Logo Height */
}
