@charset "UTF-8";
/* CSS Document */

/* @group Opmaak */

body  {
	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;
	margin: 20px 0 0;
	font: 12px/1.5 Verdana, Arial, Helvetica, Geneva, sans-serif;
	background: #ebeced url(img/background.jpg) repeat fixed;
}

p {
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 5px;
	line-height: 1.7;
}

#content table {
	margin-left: 15px;
	margin-right: 10px;
}

.spreuk {
	text-align: center;
	font: italic 15px/21px Georgia, "Times New Roman", Times, serif;
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 20px;
	border-top: 1px dashed #68931d;
	border-bottom: 1px dashed #68931d;
	background: #ebeced url(img/background.jpg) repeat fixed;
	padding: 8px 30px 10px;
}

h1, h2 {
	color: #68931d;
	font: normal normal 18px "Trebuchet MS", Arial, Helvetica, Geneva, sans-serif;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 0;
}

ul {
	list-style-type: none;
	line-height: 1.8;
}

#content a:link, #content a:visited, #content a:active {
	text-decoration: none;
	color: black;
	border-bottom: 1px solid #68931d;
}

#footer a:link, #footer a:visited, #footer a:active {
	color: black;
	text-decoration: none;
}

/* @end Opmaak */

/* @group Layout */

#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fbf5ed url(img/sidebar.gif) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #679424;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	padding: 0px;
	height: 80px;
	color: white;
	background-image: url(img/header_main.jpg);
}
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background: none repeat-y;
}

#content { 
	margin: 0 0 0 180px;
	padding: 10px 20px 20px;
}

#footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#a5bf78; 
} 

#footer p {
	margin: 0;
	text-align: center;
	padding: 4px;
	font-size: 11px;
}

/* @end */

/* @group Menu */
/* Website Baker genereert ZELF de volgende menu-classes! */

.menu {
	vertical-align: top;
	width: 180px;
	padding: 0px;
	border-top: 1px solid white;
}

.menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #a5bf78;
}

.menu li {
	border-bottom: 1px solid white;
}

.menu ul ul {  
/*Moet een achtergrondkleur hebben anders krijgt het een donkere kleur in IE Windows.*/ 
	padding-left: 0px;
	background-color: #a5bf78;
	text-indent: 10px;
}

.menu a:link, .menu a:visited, .menu a:active {
	padding: 3px 10px;
	display: block;
	text-decoration: none;
	color: black;
}

.menu a:hover {
	text-decoration: none;
	background-color: #68931d;
}

.menu_current {
	background-color: #68931d;
}

/* @end */

/* @group Images */

a img {  /*Beelden die als link gebruikt worden hebben geen rand.*/ 
	border: none;
}

img.midden {
	display: block;
	margin: 10px;
}

img.links {
	margin: 5px 20px 10px 10px;
	float: left;
}

img.rechts {
	margin: 5px 10px 10px 20px;
	float: right;
}

/* @end */

/* @group DreamWeaver Classes */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* @end */