/* CSS Document */
/* Display website = 1000px breed */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}


/* containers voor centering van de site in verschillende displays */


#vertical {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	}


/* voor centrering moet de margin-left van de content  -(width/2) pixels groot zijn + dan nog eens left:50% */
/* margin-top met -(height/2) pixels groot zijn bvb. top: -512px; maar hier is de centrering vertikaal onnodig  */


#content {
	width : 1000px;
	position: absolute;
	margin-left: -500px;
	left: 50%;
	top : 10px;
	}


/* De data voor de header, navigatie en body */	

	
div.header{
		position:absolute;
		margin-left:0;
		margin-right:0;
		margin-top:5px;
		width:1000px;
		height:85px;
		background-color: #003D64;
		padding-left:5px;
		padding-top:5px;
		padding-right:5px;
		z-index:3;
		}

			
div.header_imgleft{
		position:absolute;
		height: 120px;
		margin-left: 20px;
		margin-top: 8px;
		z-index: 4;
		}


div.navigation{
		position:absolute;
		margin-top:100px;
		margin-left:0;
		width:230px;
		background-color: #003D64;
		padding-left:10px;
		padding-top:20px;
		padding-right:5px;
		z-index:2;
		}


div.content{
		position:absolute;
		margin-top:100px;
		margin-left:230px;
		width:750px;
		line-height:150%;
		padding-left:40px;
		padding-top:10px;
		padding-right:20px;
		font-size: 12px;
		font-family: Verdana, Arial, sans-serif;
		color: #000000;
		z-index:1;
		}

				

/*All Body - Body Fonts/Links*/

.bodyfont {
	font-size: 12px;
	font-family: Verdana, Arial, sans-serif;
	color: #000000;
	}

.nav { 
	font-size: 11px; 
	font-family: Verdana, Arial, sans-serif; 
	color: #FFFFFF; 
	font-weight: bold; }


.grootenwit {
	font-size: 150%;
	font-family: Verdana, Arial, sans-serif;
	color: #FFFFFF;
	}
	
	
.grootenzwart{
	font-size: 175%;
	font-family: Verdana, Arial, sans-serif;
	color: #000000;
	}
	
h1{
 font-family: Verdana,Arial,sans-serif;
 font-size: 150%;
 font-weight:bold;
 font-style:normal;
 color: #000000;
}

h2{
 font-family: Verdana,Arial,sans-serif;
 font-size: 125%;
 font-weight:normal;
 font-style:normal; 
 color: #000000;
}

h3{
 font-family: Verdana,Arial,sans-serif;
 font-size: 100%;
 font-weight:normal;
 font-style:normal; 
 color: #000000;
}

h4{
 font-family: Verdana,Arial,sans-serif;
 font-size: 100%;
 font-weight:normal;
 font-style: italic;

 color: #000000;
}




hr  {
border-top : 1px solid #666666;
border-right : 0;
border-left : 0;
border-bottom : 0;
height : 1px;
}

td, div {
font-size : 100%;
}

img {
border : none;
} 


/*FONT settings*/

.bodyfont A:link { COLOR: #000000; TEXT-DECORATION: none}
.bodyfont A:visited { COLOR: #555555; TEXT-DECORATION: none }
.bodyfont A:active { COLOR: #000000; TEXT-DECORATION: none }
.bodyfont A:hover { COLOR: #0000DD; TEXT-DECORATION: underline }


.nav A:link { COLOR: #FFFFFF; TEXT-DECORATION: none }
.nav A:visited { COLOR: #CCCCCC; TEXT-DECORATION: none }
.nav A:active { COLOR: #FFFFFF; TEXT-DECORATION: none }
.nav A:hover { COLOR: #BBBBDD; TEXT-DECORATION: underline }



.header A:link { COLOR: #FFFFFF; TEXT-DECORATION: none }
.header A:visited { COLOR: #FFFFFF; TEXT-DECORATION: none }
.header A:active { COLOR: #00FF00; TEXT-DECORATION: none }
.header A:hover { COLOR: #FF0000; TEXT-DECORATION: underline }
.header { font-size: 12px; font-family: Verdana, Arial, sans-serif; color: #FFFFFF; font-weight: bold; }


