/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background-color:#0E3965;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	
}

img{
border:0;
}
h1 {
margin-top:20px;
height:25px;
text-align:center;
font-family:Georgia, Arial;
font-size:25px;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:875px;
	background:#FFFFFF;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}

div#header {
	position:relative;
	z-index:3;
	padding:0em;
	background:#ffffff url("images/top_bg.jpg") no-repeat;
	height:114px;
	border-bottom:1px solid black;
}

div#menu {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	position:absolute;
	width:875px;
	z-index: 3;
	padding-top:4px;
	padding-bottom:4px;
	background:url("images/menu_bg.jpg") repeat-y;
	border-bottom:1px solid black;
	text-align:center;
	
}

#menu a{
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	text-decoration:none;
	color:#000000;
}

#menu a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	text-decoration:none;
	color:#25486e;
}



div#content {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	min-height:441px;
	background:url("images/main1_bg.jpg") top left no-repeat;
	padding:3em 162px 5em 162px; /* bottom padding for footer */
	position:relative;
	z-index: 2;
	text-align:justify;
	
}
	
	div#footer {
	background:#ffffff url("images/main2_bg.jpg") bottom right no-repeat;
	position:absolute;
	z-index: 1;
	height:200px;
	width:100%;
	bottom:0; /* stick to bottom */
}

	div#gesloten {
	color:#FFFFFF;
	width:100%;
	text-align:center;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	}
	
	#geslotenimage {
	border:1px solid #ffffff;
	}

	#error_txt {
	color:#FF0000;
	font-weight:bold;	
	}



