/* -- Page styling, unrelated to centering ----- */

body {
	/* Page styling, unrelated to centering */
	background-color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-size: small;
	text-align:center;
}

/* -- Code for vertical centering ----- */

* {
	margin: 0;
	padding: 0;
}

a {text-decoration: underline; color: white;}

/* macs won't see this! \*/
html, body { 
     height:100%;
     width:100%;
}
/* END mac */

#outer {
	height:100%;
	width:100%;
	display:table;
	vertical-align:middle;
}

#container {
	display:table-cell;
	vertical-align:middle;
}

#inner {
	text-align: center;
	width: 50%;
	margin-left:auto;
	margin-right:auto;
}