@charset "utf-8";
/* CSS Document */

html, body {
	height: 100%;         /* required */
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px
}
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: -30em; /* half of content height */
	background: red;      /* temporary - used to see div */
	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: center;     /* horizontal centering hack for IE */
	height: 50em;         /* required - desired height */
	width: 45em;          /* required - desired width */
	background: white;     /* cosmetic */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}