body {
	margin: 0;           /* ensures consistency in all browsers */
	font-family: Verdana, Helvetica, sans-serif;
	background: #FFF;    /* always spec a bg color, EVEN IF it is white */
	color: #000;         /* always spec a font color, EVEN IF it is black */
	}
#centerer {              /* this div is used to wrap ALL of the  content on the page */
	position: absolute;
	top: 50%;            /* this will work ONLY if you are CERTAIN the content will fit vertically -- with no scrolling */
	left: 50%;           /* this will work on any page */
	width: 750px;
	height: 450px;
	margin-top: -225px;  /* half of 450, so the height of your content MUST be 450 */
	margin-left: -375px; /* half of 750, so the width of your content MUST be 750 */
	}
img {
	margin: 0;
	padding: 0;
	}
p {
	margin: 0;
	padding: 20px;
	}
