#background img {
	/* Set rules to fill background */

    left: 0;
    position: absolute;
    top: 0;
    min-width: 100%;
	z-index: -2;
}
#background {
    left: 0;
    min-height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}


div#cont {
	/* This is the only important rule */
	/* We need our content to show up on top of the background */
	position: relative; 

	/* These have no effect on the functionality */
	width: 1024px;
	margin: 0 auto;
	padding: 10px 0 0 0;

}

body {
	/* These rules have no effect on the functionality */
	/* They are for styling only */
	margin: 0;
}
