/* CSS Document */

html, body {
	height: 100%;
	background:#ED1A8C;
	padding:0px;
	margin:0px;           /* required */
}

body {
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;            /* required to "hide" distance div */
}

div#distance { 
	margin-bottom: -100px; /* half of content height */
	width: 1px;           /* required to "hide" distance div */
	height: 50%;          /* required */
	float: left;          /* required */

}

div#content {
	position: relative;   /* positions content on top of distance */
	text-align: left;     /* horizontal centering hack for IE */
	height: 200pxm;         /* required - desired height */
	width: 350px;          /* required - desired width */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}