/* CSS Document */

body {
	font-family: Tahoma, Arial;
	font-size: 80%;	
	background-color:#FFFFFF;
	margin: 0px; /*Hierdoor begin je helemaal bovenaan tegen de rand van het browservenster*/
	/* padding: 0px; hierdoor zou je bovenaan helemaal in de rechterhoek beginnen, maar de afbeelding moet gecentreerd worden, dus dit is niet nodig.*/
	padding-bottom: 15px; /*zodat de footer onderaan niet tegen het browservenster plakt.*/
}

#header {
	margin: 0 auto; /*dit centreert de header op de pagina*/
	background-image: url(/images/processie_header.jpg);  
	width: 800px;
	height: 140px;
}

#hoofdnavigatie {
	margin: 0 auto; /*dit centreert de navigatie op de pagina*/
	background-image: url(/images/navigatiebalk.jpg); 
	width: 800px;
	height: 40px;
}

.tekstnavigatie { 
	text-align: center;
	/*margin-top: 10px;*/
	font-size: 12px;
}

#inhoud {
	margin: 0 auto; /*dit centreert het inhoudsgedeelte op de pagina zodat we van de paginaranden wegblijven*/
	background-image: url(/images/tekst_background.jpg);
	background-repeat: repeat;
	width: 800px;
	height: 575px; 
	/*padding: 90px 0 10px 0;*/
	
}

.linkerkolom {
	float: left; /*kolom staat links*/
	width: 240px;
	height: 320px;
	/*background-image: url(/images/agendavlak.jpg);
	background-repeat: no-repeat;
	background-position: center;*/	
}

/*.middenkolom {
    float: left;
	background-image: url(/images/logodevrienden.jpg);
	background-repeat: no-repeat;
	background-position: center;
	width: 61px;
	height: 120px;
}*/

.rechterkolom {
	float: right;
	width: 560px;
	/*height: 320px;*/
}

.tekstrechterkolom {
	padding-left: 5px;
	padding-right: 10px;
}





#footer {
	clear: both; /*zodat de footer ONDER de tekst te staan komt*/
	margin: 0 auto; /*dit centreert de footer op de pagina*/
	background-image: url(/images/footer_background.jpg); 
	width: 800px;
	height: 30px;
	
}

#footertekst {
	color: #000000;
	margin: 0 130px 0 130px;	
}



/*Navigatiestijlen*/

a {
	text-decoration: none;
	color: #000000;
}

a:hover {
	text-decoration: underline;
	color: #999999;	
}



