		/**************************
		 General Settings
		**************************/
		* {
			padding: 0;
			margin: 0;
			border: 0;
		}
		
		a:link { color:#000 }
		a:hover { color: #C33 }
		a:active { color:#C33 }
		/*a:visited { color:#000 }*/
		
		.clear { clear: both; }
		
		/**************************
		 Body & Container
		**************************/
		html, body {
			font-family: Arial, Helvetica, sans-serif;
			font-size: 1em;
			margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
			padding: 0;
			text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
			color: #000000;
			width: 100%;
			height: 100%;
		}
		
		#siteContainer {
			width: 100%;
			min-height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
			text-align: center;
			background-image: url(graphics/verloop_onderkant_100px.png);
			background-position: bottom center;
			background-repeat: repeat-x;
		}
		
		* html #siteContainer {
			height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
		}
		
		#container {
			width: 960px;
			min-height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
			margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
			text-align: left; /* this overrides the text-align: center on the body element. */
		}
		
		* html #container {
			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: 0;
			margin: 0;
			text-align: left;
			clear: both;
		}
		
		#headerTop {
			margin: 0;
			padding: 0;
			height: 20px;
		}
		
		#logo {
			float: left;
			padding: 0;
			margin: 0;
			width: 270px;
			height: 75px;
			border: 0;
			background-color: #AAAAAA;
			text-align: left;
		}
		
		#languages {
			float: left;
			width: 690px;
			margin: 0;
			padding: 43px 0px 2px 0px;
			height: 30px;
			border: 0;
			line-height: 30px;
			vertical-align: middle;
			text-align: right;
			clear: right;
		}
		
		#langUK {
			padding-right: 10px;
			border-right: 2px solid #AAAAAA;
			font-family: Arial, Helvetica, sans-serif;
			font-size: 1em;
		}
		
		#langNL {
			padding-left: 10px;
			font-family: Arial, Helvetica, sans-serif;
			font-size: 1em;
		}
		
		span.active {
			color: #b13250;
		}
		
		span a {
			text-decoration: none;
		}
		
		span a.active  {
			color: #b13250;
		}
		
		span a.inactive  {
			color: #000000;
		}
		
		#headerBottom {
			margin: 0;
			padding: 0;
			height: 20px;
			clear: both;
		}
		
		#headImageContainer {
			padding: 0;
			margin: 0;
			height: 150px;
			clear: both;
			background-color: #CCCCCC;
		}
		
		/**************************
		 Menu bar
		**************************/
		#menuBarContainer {
			margin: 0;
			padding: 0;
			width: 960px;
			text-align: center;
		}
		
		#menuBar {
			width: 960px;
			height: 50px;
			margin: 0;
			padding: 0;
			text-align: center;
			background-image: url(graphics/verloop_menu.png);
			background-position: top left;
			background-repeat: repeat-y;
		}
		
		#menuBar table {
			width: 960px;
			height: 50px;
		}
		
		#menuBar table td {
			width: 16%;
			text-align: center;
			vertical-align: middle;
			font-family: Arial, Helvetica, sans-serif;
			font-size: 1em;
		}
		
		#menuBar table td a {
			text-decoration: none;
		}
		
		#menuBar table td.active {
			color: #b13250;
		}
		
		#menuBar table td a.active {
			color: #b13250;
		}
		
		#menuBar table td a.inactive {
			color: #000;
		}
		
		/**************************
		CONTENT
		**************************/
		#contentContainer {
			width: 960px;
			padding-bottom: 110px; /* account for footer height + bottom margin for content */
		}
		
		#content {
			clear: left;
			margin: 0;
			padding-left: 216px;
			padding-top: 30px;
			padding-right: 54px;
			text-align: justify;
		}
		
		#content a {
			color: #5C97C5;
			text-decoration: none;
		}
		
		#content a:link {
			color: #5C97C5;
			text-decoration: none;
		}
		
		#content a:hover {
			text-decoration: underline;
		}
		
		#content a:visited {
			color: #5C97C5;
			text-decoration: none;
			
		}
		
		/**************************
		FOOTER
		**************************/
		/*
		 * NOTE: add box model hack
		 */
		#footerContainer {
			width: 960px;
			height: 60px; /*** 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: -60px; /*** 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: center;
		}
		
		#footer {
			width: 835px;
			height: 50px; /*** 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;
			padding-top: 10px;
			padding-bottom: 0;
			padding-left: 65px;
			padding-right: 60px;
			font-family: Arial, Helvetica, sans-serif;
			font-size: 0.6em;
			line-height: 1.6em;
			text-align: center;
		}
		
		/**************************
		Content text formatting
		**************************/
		
		h2 {
			font-family: Arial, Helvetica, sans-serif;
			font-weight: bold;
			font-size: 1em;
			color: #AAA;
		}
		
		p {
			font-family: Arial, Helvetica, sans-serif;
			font-size: 0.9em;
			line-height: 1.7em;
			color: #333;
			padding-bottom: 20px;
		}
		
		/**************************
		PAGE SPECIFIC CSS
		**************************/
		
		/**************************
		HOME
		**************************/
		
		#respect {
			clear: left;
			margin: 0;
			width: 600px;
			padding-left: 260px;
			padding-right: 100px;
		}
		
		/**************************
		PROCES
		**************************/
		.fotoheader {
			clear: left;
			margin: 0;
			padding: 0;
			width: 690px;
			padding-left: 216px;
			padding-right: 54px;
			padding-bottom: 15px;
			color: #AAA; 
			font-family: Arial, Helvetica, sans-serif;
			font-size: 1em;
			font-weight: bold;
		}
		
		.imageBar {
			clear: left;
			margin: 0;
			padding: 0;
			width: 690px;
			padding-left: 216px;
			padding-right: 54px;
			padding-bottom: 20px;
		}
		
		.imageBar table tr td {
			font-family: Arial, Helvetica, sans-serif;
			font-size: 0.8em;
			font-style: italic;
		}
		