body {
	background-image: url(/media/bg.jpg); background-position: center top;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.home #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.home #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

/* EXTRAS */
/* ROUNDED CORNERS - LIGHT GREY W/ BORDER */
div.cornered { background:#e3dfdb; width:410px; margin:0 auto; position:relative; }
div.cornered-wide { background:#e3dfdb; width:865px; margin:0 auto; position:relative; }
div.cornered-content { padding:20px 20px 20px 20px; margin:0;}

div.cornered-wide .ul { position:absolute; left:0px; top:0px; background: url(/media/corner_tl.jpg) no-repeat; width:16px; height:16px; }
div.cornered-wide .ur { position:absolute; right:0px; top:0px; background: url(/media/corner_tr.jpg) no-repeat; width:16px; height:16px; }
div.cornered-wide .ll { position:absolute; left:0px; bottom:0px; background: url(/media/corner_bl.jpg) no-repeat; width:16px; height:16px; }
div.cornered-wide .lr { position:absolute; right:0px; bottom:0px; background: url(/media/corner_br.jpg) no-repeat; width:16px; height:16px; }                

div.cornered .ul { position:absolute; left:0px; top:0px; background: url(/media/corner_tl.jpg) no-repeat; width:16px; height:16px; }
div.cornered .ur { position:absolute; right:0px; top:0px; background: url(/media/corner_tr.jpg) no-repeat; width:16px; height:16px; }
div.cornered .ll { position:absolute; left:0px; bottom:0px; background: url(/media/corner_bl.jpg) no-repeat; width:16px; height:16px; }
div.cornered .lr { position:absolute; right:0px; bottom:0px; background: url(/media/corner_br.jpg) no-repeat; width:16px; height:16px; }                

.formfield { font-size: 12px; width: 330px; margin-bottom: 10px; }	
.formtextarea { font-size: 12px; width: 330px; height: 100px; margin-bottom: 10px; }	
.formselect { font-size: 12px; margin-bottom: 10px; }						