/* CSS Document */
html {
	height: 90%;
}
body {
	height: 100%;
	background-image: url(images/background.jpg); /** Link to the image you created **/
	background-repeat: repeat-y; /** Repeats the image vertically **/
	background-position: center; /** Centers the Background image **/
	background-color: #e5e5e5; /** Website BG colour (matches canvas colour in step 1) **/
}
#nonfooter {
	position: relative;
	min-height: 100%;
	width: 800px;
	margin: 0 auto;
	text-align: left;
}
* html #nonfooter {
	height: 100%;
}
#content {
   padding-bottom: 20px;
}
#footer {
	position: relative;
	margin-top: -50px;
	width: 800px;
	margin: 0 auto;
	text-align: center;
}