body {
	font-family: Arial, Helvetica, sans-serif;   							/* eerst het lettertype */
	font-size: 75%;																	/* en de lettergrootte */
	margin: 0;																			/* geen marge aan buitenkant */
	padding: 10px 0 0 0;																/* stukje van bovenkant af */
	background-image: url(../images/square-bg.gif);							/* achtergrond er op */ 
}
a:link		{ color: Red; 		background-color: #0FEFEFE; 		text-decoration: none; }
a:visited 	{ color: Red; 		background-color: #0FEFEFE; 		text-decoration: none; }
a:hover 		{ color: #FEFEFE; background-color: Red; 			 text-decoration: none; }
a:active 	{ color: Red; 		background-color: Red; 			 text-decoration: none; }

a:link img		{ border: 0; }
a:visited img	{ border: 0; }
a:hover img		{ border: 0; }
a:active img	{ border: 0; }


h1 {	color: red;
		font-size: 200%; }
h2 {
	color: red;
	display: inline;
	font-size: 140%;
}
h3 {
	color: red;
	display: inline;
	font-size: 100%;
}
#main {
	width: 764px; 							/* breedte zonder border */
	border: 0px none; 					/* geen rand er om */
	border-bottom: 5px solid Red;
	margin: 0 auto; 						/* zet de zaak in het midden */
	padding: 0 0 0 0;						/* binnenkant helemaal benutten */
				/* kleurtje om te herkennen */
}

#header {									/* erft alles van main */
	height: 70px;
	border-top: 5px solid Red;

	background-color: Red;
}

#content {
	height: 440px;								/* vaste hoogte zodat het op elk scherm past */
	padding: 15px 15px 15px 200px;		/* links ruimte voor het menu */
	background-color: White;
	overflow: auto;							/* scrollen als nodig */
}

#logo {
	position: absolute;
	float: left;
	top: 130px;
	width: 170px;
	height: 60px;
	z-index: 10;
	padding-left: 15px;
}

#pagtitel {
	position: absolute;
	float: left;
	top: 190px;
	width: 170px;
	height: 40px;
	z-index: 10;
	padding-left: 20px;
	font-size: 250%;
	font-weight: bold;
	color: Red;
}

#column-left {
	position: absolute;
	float: left;
	top: 240px;
	width: 170px;
	height: 250px;
	z-index: 10;
	padding-left: 15px;
}

#roos {
	position: absolute;
	float: left;
	top: 500px;
	width: 170px;
	height: 110px;
	z-index: 10;
	padding-left: 50px;
}


