* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
	color: #16548b;
	font-family: "Times New Roman", Times, serif;
	font-size:14px;
	line-height:22px;
	background-color: #C1C1C1;
	text-align: center; /*** Centers the design in old IE versions ***/
	height: 100%;
	padding:0;
	margin:0;
}

p {padding: 7px 0 7px 0;}
.clear { clear: both; }
#mainContainer {
	width: 900px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 100%; /*** This is our faux columns ***/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
	background-color: #FFFFFF;
	background-image: url(images/background.gif);
	background-repeat: repeat-y;
}
* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	padding: 0px;
	background-color: #4878B3;
}
#hdr {
width:900px;
height:66px;
background-image:url(images/top_header.gif);
background-repeat:no-repeat;
}
#hdr .kop {
font-family: "Times New Roman", Times, serif;
	font-size:26px;
	color:#e2e2c7;
	padding-left:48px;
	padding-top:26px;
	letter-spacing:1px;
	line-height:26px;

}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 16px; /*** Make som space for our top menu ***/
padding-left: 165px;  
margin-bottom: 30px;
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 655px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
width: 100%;
}

.float-wrap {
float: left;
width: 900px;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 168px;
background-color: #FFFFFF;
	background-color: #FFFFFF;
	background-image: url(images/background.gif);
	background-repeat: repeat-y;
	background-position:right;
	color: #16548b;
	font-family: "Times New Roman", Times, serif;
	font-size:14px;
	line-height:22px;

}
* html #content {
position: relative; /*** IE needs this  ***/

}
.contentWrap {
padding-right: 0px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0px 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
MAIN COLUMN
**************************/
/*** div.main is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.main is carried over into the proper position. 
***/
#main {
float: left;
width: 670px;
padding-left: 48px;
	background-color: #FFFFFF;
	background-image: url(images/background.gif);
	background-repeat: repeat-y;
	color: #16548b;
	font-family: "Times New Roman", Times, serif;
	font-size:14px;
	line-height:20px;
}
* html #main {
position: relative; /*** IE needs this  ***/
}
#main ul {
list-style: none;
padding-bottom: 4px;
}
#main li {
padding-bottom: 2px;
}


/*************************
RIGHT COLUMN
**************************/

* html #right {
position: relative; /*** IE needs this  ***/
}
#right ul {
list-style: none;
}
#right li {
display: inline;
padding-right: 15px;
}
/**************************
FOOTER
**************************/
#footer {
	width: 900px;
	height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin: 0 auto;
	margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: left;
	background-color: #FFFFFF;
	background-image:url(images/bottom.gif);
	background-repeat:no-repeat;
	font-family:"Times New Roman", Times, serif;
	font-size:13px;
	color:#FFFFFF;
}
/**************************
NAVIGATIEMENU
**************************/
#menu {
text-align:left;
margin-top:-24px;}
#menu form{
margin-left:12px;}
#menu form input{
font-size:13px;
color:#003300;
font-style:italic;}
#menu ul {
width:156px;
padding-top:0px;
margin-top:6px;
margin-left:0px;
padding-left:0px;
list-style-type: none;
color:#16548b;
font-family:"Times New Roman", Times, serif;
font-size: 12px;
}

#menu ul li {
	line-height:22px;
	text-align:left;
margin-left:0px;
padding-left:0px;
	margin-bottom:0px;
	padding-bottom:0px;
	padding-top:0px;
	font-weight:bold;
	margin-top:12px;
}


#menu ul li ul li, #menu ul li ul {
margin-left:0px;
padding-left:0px;
margin-top:0px;
font-weight:normal;	
}

#menu li a, #menu li a:link, #menu li a:visited {
display:block;
margin-left:0px;
padding-left:12px;
color:#16548b;
text-decoration: none;
width:156px;
font-family:"Times New Roman", Times, serif;
font-size: 14px;
	background-color: #e2e2c7;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #e2e2c7;
	border-bottom-color: #e2e2c7;
}
#menu li a:hover, #menu li a.sel,#menu li a.sel:link,#menu li a.sel:visited {
	color:#16548b;
	background-color: #f4f3d8;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #c9c9af;
	border-bottom-color: #c9c9af;
}
#menu li a.hfdmenu, #menu li a.hfdmenu:link, #menu li a.hfdmenu:visited {
margin-left:0px;
padding-left:12px;
}
#menu li a:hover.hfdmenu {
cursor:text;
font-family:"Times New Roman", Times, serif;
color:#16548b;
font-size: 14px;
	background-color: #e2e2c7;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #e2e2c7;
	border-bottom-color: #e2e2c7;
}

#menu ul li ul li a,#menu ul li ul li a:link,#menu ul li ul li a:visited{
	color: #16548b;
}
#menu ul li ul li a:hover{
color: #16548b;
}

#main a, #main a:link, #main a:visited {
	color:#292627;
}
#main a:hover {
	color:#333333;
	text-decoration:none;
}
#footer a, #footer a:link, #footer a:visited {
	color:#FFFFFF;
}
#footer a:hover {
	color:#FFFFFF;
	text-decoration:none;
}

h1, .kop1 {
font-family:"Times New Roman", Times, serif;
font-size: 16px;
font-weight:bold;
color: #16548b;
padding-bottom:4px;
padding-top:10px;
}
h2, .kop2 {
font-family:"Times New Roman", Times, serif;
font-size: 15px;
font-weight:bold;
color: #16548b;
padding-bottom:4px;
padding-top:9px;
}
h3, .kop3 {
font-family:"Times New Roman", Times, serif;
font-size: 14px;
font-weight:bold;
color: #16548b;
padding-bottom:4px;
padding-top:8px;
}
h4, .kop4 {
font-family:"Times New Roman", Times, serif;
font-size: 13px;
font-weight:bold;
color: #16548b;
padding-bottom:4px;
padding-top:7px;
}
.klein {
font-family:"Times New Roman", Times, serif;
font-size: 11px;
line-height:16px;
}
.mini {
font-family:"Times New Roman", Times, serif;
font-size: 10px;
line-height:16px;
}

.rood{
	color: #990000;
}

.rand {
	border: 1px solid #E89244;
}
.fotocell {
	background-color:#FFFFFF;
	font-size:11px;
	border: 1px solid #c9c9af;
	padding:2px;
}
.fotocell:hover {
	background-color:#F4F3D8;
}
#main form input{
	font-size:14px;
	color:#003300;
	font-style:italic;
	border: 1px solid #4A2500;

	height:16px;
}
#main form select{
	font-size:14px;
	color:#003300;
	font-style:italic;
	border: 1px solid #4A2500;
	width:120px;
	height:20px;
}
.highlight {
	background-color:#E2E2C7;
}
#main a, #main a:link, #main a:visited{
	color: #16548b;
	font-family: "Times New Roman", Times, serif;
}
#main a:hover {
	text-decoration:none;
	background-color:#4878B3;
	color:#FFFFFF;
}
