/* CSS Document */
* {
    margin: 0;
    padding: 0;
}
html,body {
    height: 100%; /* HEEL BELANGRIJK! */
	background-image: url("../gfx/main_bg.gif");
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #454545;
	background-color: #ededed;
}

.clear {
    clear: both; /* deze class gaan we gebruiken om de twee floats #left en #right te clearen. */
}

.container {
	position:absolute;
	left: 50%; 
	top: 0;
	width: 850px;
	height: 590px;
	margin-top: 0px; /* half of the height */
	margin-left: -428px; /* half of the width */
}

.splashImage {
	vertical-align: top;
	top: 0;
}

