/* Generic Styles */
body {font-family: arial, verdana, helvetica, sans serif;font-size:0.8em;color: #000000;background-color:#ffffff;}
h1 {font-size:1.2em;}
h2 {font-size:1em;}
h1,h2 {margin:0.5em;font-weight:bold;}
p {margin:0.8em}

/* wrapper to align center of page */
#wrapper {
	/*we need to tell the borwser the size of the container / division*/
	width:800px;
	height:400px;
		
	/*alings the page to the center horizontal (x)*/
	margin-left:auto;
	margin-right:auto;
	
	/*aligns the page to the center vertical (y)*/
	position: absolute;
	top: 50%;
	left: 50%;
	
	/*resets the offset (should be half the width and height*/
	margin-top:-200px;
	margin-left:-400px;
	
	/*allows us to see wrapper*/
	background-color:red;
}


