/* Stuk voor vertikaal centreren */ 
body, html {height: 100%;}
#outer {height: 100%;} /* or without overflow */
#outer[id] {display: table; position: static; margin-left: auto; margin-right: auto;}

#middle {position: absolute; top: 50%; left: 50%} /* for explorer only*/
#middle[id] {display: table-cell; vertical-align: middle; position: static;}

#inner {position: relative; top: -50%; left: -50%} /* for explorer only */
#inner[id] {position: static;}

/* Basic Styling */
body {
	font-family: Verdana, sans-serif;
	color: #3366CC;
	font-size: 13px;
	text-align: center;
}