/* Main Style Sheet */

/* wrapper to align center of page */
#wrapper {
	/*we need to tell the browser the size of the warpper div*/
	width:720px;
	height:400px;
	/*aligns the page to the center horizontal (x)*/
	margin-left:auto;
	margin-right:auto;
	/*aligns the age 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:-360px;
	/*allows us to see wrapper*/
/*	background-color:red; */
}


