/* 
    AUTHOR: Chris Coyier
            chriscoyier@gmail.com
            http://chriscoyier.net
*/

/* RESETS & BASIC PAGE SETUP */
* { margin: 0; padding: 0; }
html
body {
	background-image: url(../images/basic/background.png);
	background-repeat: repeat-x;
	background-position: 5% top;
}

/* STRUCTURE AND STUFF */

#midground {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 997;
	background-image: url(../images/basic/midground-trans.png);
	background-repeat: repeat-x;
	background-position: 130% top;
}
#foreground {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 998;
	background-image: url(../images/basic/foreground-trans.png);
	background-repeat: repeat-x;
	background-position: 90% top;
}
/* END STRUCTURE */
