body {
	margin: 0;
	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 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: 2px solid #063; 	/* NOTE that this border surrounds the SWF */
	}
#myContent { 					/* this div is used to wrap alternative content alone */
	border: 5px solid #f00;  	/* NOTE that this red border disappears if the SWF is displayed */
	}
img {
	margin: 0;
	padding: 0;
	}
p {
	margin: 0;
	padding: 20px;
	}
