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

body {
	/* Page styling, unrelated to centering */
	background: url("titlebar_sliver.png") 0% 0% repeat-x;
	min-width: 1200px;
	/*background-color: #071b33;*/
	background-color: #092042;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-size: small;
	text-align:center;
}



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

* {
	margin: 0;
	padding: 0;
}

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

#leftimages{
	height:120px;
	width:50%;
	position:absolute;
	left:0px;
	top:0px;
	background: url("titlebar_sliver_trails.png") 0% 0% repeat-x;
}

#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;
}
