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

body {
	/* Page styling, unrelated to centering */
	background-color: #DDD;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-size: small;
	text-align:center;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-image:url(../images/forex-achtergrond.jpg)
}



/* -- 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: 974px;
	height: 560px;
	margin-left:auto;
	margin-right:auto;
}