
/* Scalable background */
img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;
	
	/* Set up proportionate scaling */
	width: 100%;
	height: auto;
	
	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1024px){
	img.bg {
		left: 50%;
		margin-left: -512px; }
}

div#content {
	/* This is the only important rule */
	/* We need our content to show up on top of the background */
	position: relative; 
	margin-top: 20px;
	
	
	/* These have no effect on the functionality */
	width: 800px;
	margin: 0 auto;
	font-family: helvetica, arial, sans-serif;
	font-size: 10pt;
	line-height: 16pt;
	background: #ffffff;
}

body {
	/* These rules have no effect on the functionality */
	/* They are for styling only */
	margin: 0;
	padding: 0;
	background: #f26647;
}

img { border: 0; }

div#content h1 { width: 700px; height: 200px; background: url(h1.png) top left no-repeat; text-indent: -9999px; margin-left: 30px; }
div#content p { margin: 10px 30px;}
div#content div.contact p { margin: 10px 0px;}

div#content div.contact { margin:30px; float:left; width: 400px;}
div#content div.preorder { float: right; width: 200px; margin-right: 50px; }
div#content div.icons { margin-left: 0px; }
.clearfix { clear: both; }

a { color: #f26546; }