Begin absolute centering
html, body {
	height: 100%;         /* 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: -350px; /* half of content height */
	      /* background: red;temporary - used to see div */
	width: 1px;           /* required to "hide" distance div */
	height: 50%;          /* required */
	float: left;          /* required */

}
#MainLayer {
	position: relative;   /* positions content on top of distance */
	text-align: left;     /* horizontal centering hack for IE */
	width:1000px;
	height:700px;
	margin: 0 auto;       /* required */
	clear: left;
	/*background-image: url(http://armandolucero.com/RedSpadeImages/Yellow_72noMenu.jpg);
	background-repeat:no-repeat;*/
}
End absolute centering
/* CSS Document */
