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

html, body {
	height: 100%;         /* required */
	background-color:#000000;
}

#centeredcontent {
	width: 1000px;
	height: 500px;
	text-align: center;
	border: 1px solid #000;
	background-color: #000000;
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -500px; 
	/* Half the width of the DIV tag which is 50 pixels */
	margin-top: -250px; 
	/* Half the height of the DIV tag which is also 50 pixels */
}

