@charset "UTF-8";
/* CSS Document */

html, body {
	height: 100%;         /* required */
}

body {
	background:#000000;
	background-position: center;
	background-repeat:no-repeat;
	font-family: "Gill Sans", "Gill Sans MS", "Trebuchet MS", sans-serif;
	color:#FFFFFF;
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;
}

a {
	color:#FFFFFF;
	text-decoration:underline;
}

ul {
	margin-left:20px;
	list-style:none;
	line-height:1.5;
}

.centered {
	position: absolute;
	top: 0;
 	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 50%;
	margin: auto;
} 


div#distance { 
	margin-bottom: -12em; /* 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: 400px;         /* required - desired height */
	width: 800px;          /* required - desired width */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}