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

/* RESETS & BASIC PAGE SETUP */
* { margin: 0; padding: 0; }
html { overflow-y: scroll; }
body {
	background-color: #000;
	background-image: url(images/background.png);
	background-repeat: repeat;
	background-position: 5% 5%;
}

ul { list-style: none inside; }
a img { border: none; }
/* END RESET */

/* TOOLBOX */
.floatleft { float: left; }
.floatright { float: right; }
.clear { clear: both; }

/* END TOOLBOX */

/* STRUCTURE AND STUFF */
#about {
	top: 0; left: 0;
	padding: 20px;
	position: absolute;
	z-index: 999;
	background: white;
	-moz-opacity:0.5;
	opacity: 0.5;
	width: 250px;
}
#midground {
	background: url(images/midground.png) repeat 20% 20%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 888;
}
#foreground {
	background: url(images/foreground.png) repeat 90% 110%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 889;
}

p#ie-warning {
	display: none;
}
/* END STRUCTURE */
