﻿/* 

POSITIONERING VAN DE BLOKKEN


Content is 940px breed, net als header;
maar we nemen binnenruimte voor de opmaak van 10px,
dat is totaal een breedte van 20px minder,
dus hebben we ruimte van 920 pixels beschikbaar.

Content willen we 720 pixels breed, en een sidebar van 200px; maakt samen 920pixels.

*/

.redborder {
	border: 2px solid red;	
}


#linksvlak {
	margin: 		0 auto; 	/* centreert content in container*/
	border: 		1px solid #FFFFFF;
	text-align: 	left;
	padding: 		10px;
	float: 			left; 		/* zodat sidebar er naast kan staan*/
	width:			214px; 		/* breedte van 200 - 20 - 2 = 178   (breedte van sidebar - padding links en rechts - border links en rechts) */				
	display: none;
}

#inhoud {
	margin: 		0 auto; 	/* centreert content in container*/
	padding: 		10px;
	border: 		1px solid #FFFFFF;
	text-align: 	left;
	margin-bottom:  50px;
	float: 			left; 		/* zodat sidebar er naast kan staan*/
	width:			960px; 		/* breedte van 720 - 20 - 2 - 10 = 688 */
}


#rechtsvlak {

	text-align: 	left;
	float: 			left; 		/* zodat sidebar er naast kan staan*/
	width:			200px; 		/* breedte van 200 - 20 - 2 = 178   (breedte van sidebar - padding links en rechts - border links en rechts) */		
	height:			340px;
	background: 	#ffffff url("../images/avdw.jpg") no-repeat top;	
	padding-top:	60px;
	padding-left:	20px;
	display: none;
}

#occasionvideos {
	text-align: 	left;
	float: 			left; 		/* zodat sidebar er naast kan staan*/
	width:			213px; 		/* breedte van 200 - 20 - 2 = 178   (breedte van sidebar - padding links en rechts - border links en rechts) */		
	height:			109px;
	display:none;
}






/* DAADWERKELIJKE OPMAAK VAN DE INHOUD */


#inhoud h1 {		/* titel in de inhoud */
	font-size: 		20px;
	font-weight: 	bold;
	margin-bottom: 	20px;
	padding-bottom: 5px;
	border-bottom: 1px solid #CCCCCC;
}

#inhoud p {		/* titel in de inhoud */
	font-size: 		12px;
	font-weight: 	normal;
	margin-bottom: 	20px;
	color: #000;
}

/*#inhoud p:first-line {		/* eerste regel van P 
	font-weight: bold;
	color: #CCCCCC;

}*/



#rechtsvlak h1 {		/* titel in de sidebar */
	font-size: 		14px;
	font-weight: 	bold;
	margin-bottom: 	20px;
}

#rechtsvlak p {		/* titel in de inhoud */
	font-size: 		11px;
	font-weight: 	normal;
	margin-bottom: 	20px;
	color: #000;
}

#rechtsvlak p:first-line {		/* eerste regel van P */
	color: #FF0000;
	font-size: 12px;
	text-decoration: underline;

}

#linksvlak h1 {		/* titel in de sidebar */
	font-size: 		14px;
	font-weight: 	bold;
	margin-bottom: 	20px;
}

#linksvlak p {		/* titel in de inhoud */
	font-size: 		11px;
	font-weight: 	normal;
	margin-bottom: 	20px;
	color: #000;
}

#linksvlak p:first-line {		/* eerste regel van P */
	color: #FF0000;
	font-size: 12px;
	text-decoration: underline;

}
