@charset "UTF-8";

/* -- Page styling, unrelated to centering ----- */
body {	
	background-color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	color: #98FBC0;
	font-size: small;
	text-align:center;
	background-image: url(images/bg_blur.jpg);
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-position:center; 
}

/* -- Links ----- */
a:link {
	text-decoration: underline;
	color: #98FBC0;
}
a:visited {
	text-decoration: underline;
	color: #98FBC0;
}
a:hover {
	text-decoration: underline;
	color: #ffffff;
}
a:active {
	text-decoration: none;
}



/* -- If no flash ----- */
#noflash {
	margin: 0 auto; 
	height: 667px;
	width: auto;
}

#message {
	background-image: url(images/noflash_bkg.png);
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-position:center; 
	margin: 100px auto; 
	width: 681px;
	height: 297px;
	padding: 65px;
	font-size: medium;
	font-weight:bold;
	line-height: 40px;
}



/* -- Code for vertical centering ----- */
* {
	margin: 0;
	padding: 0;
}

/* 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: 991px;
	height: 400px;
	margin-left:auto;
	margin-right:auto;
}
