body {
	margin: 0;
	font-family: verdana, sans-serif;
	background: #fff;
	color: #000;
	}
#centerer {              /* this div is wrapping the Flash 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: 450px;
	height: 300px;
	margin-top: -150px;  		/* half of 300, so the height of your content MUST be 300 */
	margin-left: -225px; 		/* half of 450, so the width of your content MUST be 450 */
	border: 5px solid #0f0; 	/* this green border surrounds the SWF */
	}
p {
	margin: 10px;
	}

