body {
	margin: 0 0 1em 0;
	padding: 0;
	color: black;
	background-color: #eee;
	line-height: 130%;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
}

#wrapper-header {
	background-color: #FFFFFF;
}

#header {
	width: 90%;
	height: 125px;
	line-height: 125px;
	margin: 0 auto;
	border-left: 1px solid #707070;
	border-right: 1px solid #707070;
	text-align: left;
	background-color: #F58235;
	background-repeat: no-repeat;
	background-position: right;
	background-image: url(images2/nieuwsbrief3.gif);
	cursor: hand;
}

#header h1 {
	margin: 0;
	padding: 0;
	color: #eee;
	font-size: 220%;
	padding-left: 10px;
	letter-spacing: -1px;
}

#wrapper-menu {
	float: left;
	width: 100%;
	background-color: #BF3823;
	background-image: url(images/menu-background2.png);
	background-repeat: repeat-x;
	background-position: left top;
}

#menu-container {
	width: 90%;
	margin: 0 auto;
	font-size: 95%;
	border-right: solid 1px #95BC0E;
	border-left: solid 1px #95BC0E;
}


#content {
	width: 88%; /* 73% because it has 1% padding on each side, which brings it to 90% wide */
	margin: 0 auto;
	padding: 3.5em 1% 20px 1%;
	border-left: 1px solid #bbb;
	border-right: 1px solid #bbb;
	font-size: 90%;
	text-align: left;
	background-color: white;
	background-image: url(images/bg_content.gif);
}

* html #content { padding-top: 1.8em; } /* Set padding top in IE to 20px */

#footer {
	margin: 0 auto;
	padding: 2px 1%;
	width: 88%;
	text-align: right;
	color: white;
	letter-spacing: 0.15em;
	border: 1px solid #a0c80e;
	font-size: 80%;
	background-color: #88ac0b;
	background-image: url(images/menu-background2.png);
	background-repeat: repeat-x;
	background-position: left top;
}

h2 {
	color: #666;
	padding-bottom: 3px;
	font-size: 150%;
	letter-spacing: -1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF6633;
}

a:link, a:visited {
	color: #FF6600;
	text-decoration: none;
}

a.white:link, a.white:visited {
	color: #FFFFFF;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

a.white:hover {
	color: #000;
	text-decoration: underline;
}

p,table { margin-left: 1em; }

a.submenu {
	color: #fff;
	text-decoration: none;
}
a.submenu:hover {
	color: #fff;
	text-decoration: none;
}
h3 {
	color: #990000;
	padding-bottom: 3px;
	font-size: 120%;
	letter-spacing: -1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.links_images {
	border: 1px solid #CCC;
	margin-right: 15px;
}

#pics {
	float:right;
	margin-left:15px;
}

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image:url(images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	color: #eee;
	background: transparent;
}

.menu ul {
	width: 14em;
}

.menu a {
	text-decoration: none;
	color: #eee;
	padding: .4em 1em;
	display: block;
	position: relative;
	border-right: solid 1px #95BC0E;

}
.menu ul a {
	background:#C03B26;
	text-align:left;
	border-right: none;
}

.menu li:hover>a, .menu a:hover {
	background:#F58235;
	color:#fff;
	}
.menu li li {	/* create borders around each item */
	border: 1px solid #ffcc99;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}


/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

#zelftest #zelftestconclusion {
	width:auto;
	padding:0;
	border:0;
}

#zelftest th {
	text-align:left;
	
}

#zelftest td {
	border-bottom:solid 1px;
	vertical-align:top;
}

#zelftestconclusion td {
	vertical-align:top;
}

#zelftest td.radio {
	width:50px;
}

table#home {
	width:100%;
	padding:0;
	border:0;
}

table#home td {
	text-align:center;
	vertical-align:top;
}

table#home td.slogan {
	font-size:150%;
}