/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

figure {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set table max width to 100% */
table {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body {
	background-color: #0d1424;
	/* url(images/body-bg.jpg) no-repeat center top; */
	font: .81em/150% Arial, Helvetica, sans-serif;
	color: #666;
}
a {
	color: #026acb;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
	text-align: left;
}
p {
	margin: 0 0 1.2em;
	padding: 0;
	color: #666;
}

/* list */
ul, ol {
	margin: 1em 0 1.4em 24px;
	padding: 0;
	line-height: 140%;
}
li {
	margin: 0 0 .5em 0;
	padding: 0;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 20px 0 .4em;
	color: #000;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}

/* reset webkit search input styles */
input[type=search] {
	-webkit-appearance: none;
	outline: none;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
#pagewrap {
	width: 1900px;
	margin: 0 auto;
}

/************************************************************************************
HEADER
*************************************************************************************/
#header {
	position: relative;
	height: 5px;  /*80*/
}

/* site logo */
#site-logo {
	position: absolute;
	top: -7px;
	left: 2px;
	width: 100%;
}
#site-logo a {
	font: bold 30px/100% Arial, Helvetica, sans-serif;
	color: #fff;
	text-decoration: none;
}

#site-logo img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* site description */
#site-description {
	font: italic 100%/130% "Times New Roman", Times, serif;
	color: #fff;
	position: absolute;
	top: 1px; /*55*/
}

/* searchform */
#searchform {
	position: absolute;
	right: -22px;
	bottom: -74px;
	z-index: 100;
	width: 233px;
}
#searchform #s {
/*	width: 2800px; */
	float: right;
	background: #fff;
	border: none;
	padding: 6px 10px;
	/* border radius */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}

/************************************************************************************
MAIN NAVIGATION
*************************************************************************************/
#main-nav {
	width: 100%;
	background: #ccc;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;
	/* gradient */
	background: #6a6a6a url(pictures/nav-bar-bg.png) repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#b9b9b9), to(#6a6a6a));
	background: -moz-linear-gradient(top,  #b9b9b9,  #6a6a6a);
	background: linear-gradient(-90deg, #b9b9b9, #6a6a6a);
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
}
#main-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}
#main-nav li:first-child {
	margin-left: 10px;
}
#main-nav a {
	line-height: 100%;
	font-weight: bold;
	color: #fff;
	display: block;
	padding: 14px 15px;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,.5);
}
#main-nav a:hover {
	color: #fff;
	background: #474747;
	/* gradient */
	background: -webkit-gradient(linear, left top, left bottom, from(#282828), to(#4f4f4f));
	background: -moz-linear-gradient(top,  #282828,  #4f4f4f);
	background: linear-gradient(-90deg, #282828, #4f4f4f);
}

/************************************************************************************
CONTENT
*************************************************************************************/
#content {
	background: #fff;
	margin: 30px 0 30px;
	padding: 20px 35px;
	width: 1600px;
	float: left;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* post */
.post {
	margin-bottom: 40px;
}
.post-title {
	margin: 0 0 5px;
	padding: 0;
	font: bold 26px/120% Arial, Helvetica, sans-serif;
}
.post-title a {
	text-decoration: none;
	color: #000;
}
.post-meta {
	margin: 0 0 10px;
	font-size: 90%;
}

/* post image */
.post-image {
 margin: 
	
}

/************************************************************************************
SIDEBAR
*************************************************************************************/
#sidebar {
	width: 280px;
	float: right;
	margin: 30px 0 30px;
}
.widget {
	background: #fff;
	margin: 0 0 30px;
	padding: 10px 20px;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.widgettitle {
	margin: 0 0 5px;
	padding: 0;
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	clear: both;
	border-top: solid 1px #eee;
}

/* flickr widget */
.widget .flickr_badge_image {
	margin-top: 10px;
}
.widget .flickr_badge_image img {
	width: 48px;
	height: 48px;
	margin-right: 12px;
	margin-bottom: 12px;
	float: left;
}

/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
	clear: both;
	color: #ccc;
	font-size: 85%;
}
#footer a {
	color: #fff;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }



/*******
video elastic
************/

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	border: none;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/**************************
Vitosol
****************************/
.grey {
	background-color: #ccc;
	color: #000;
	
}

.orange{
		background-color:#8bc34a;
	    color: #000;
		font-size:medium;
.w3-light-green,.w3-hover-light-green:hover{color:#000!important;background-color:#8bc34a!important}		
}

.wolkje{
		background-color:#32ccfe;
	    color: #000;
		font-size:medium;
}

td
 {
 padding:5px;
 }
 
table { 
    border-spacing:0;
}

#datatabel
{
width:80%;
border-collapse:collapse;
}
#datatabel td, #datatabel th 
{
font-size:1em;
border:1px solid #98bf21;
padding:3px 7px 2px 7px;
}
#datatabel th 
{
font-size:1.1em;
text-align:left;
padding-top:5px;
padding-bottom:4px;
background-color:#8bc34a;
color:#ffffff;
}
#datatabel tr.alt td 
{
color:#000000;
background-color:#8bc34a;
}

.plaatje {margin:  10px 15px 10px 0
}

.plaatje_links {margin:  0 15px 10px 0;
float:left;
 }
.plaatje_rechts {margin:  0 0 10px 10px;
float: right; }
.plaatje_center {
 margin-left:auto;
 margin-right:auto; }
#gad {
	float: left;
}

 figure, figcaption { display: block; }
  figure {float:left; }
  figcaption { font: 80% Calibri, sans-serif; 
               text-align:center;}

.clearleft { 
	clear:left;
}

.tip {
	width: 100%;
	border:none;
	padding:2px 2px 2px 2px;
	text-align:left;
}

#datatabel
{
width:80%;
border-collapse:collapse;
}
#navtabel {
width:100%;
}
#navtabel td, #navtabel th 
{
font-size:1em;
text-align:right;
}

.rekentabel td, th  { border: 1px solid gray; } 

.delphi_radio {
	font-size: 12px;
	text-outline:none;
}
.ro {background-color: #DCDCDC}
	
/****Sprites internationalisatie
#nl_icon{left:0px;width:24px;}
#nl_icon{background:url('images/vlaggen.png') 0 0;}

#eng_icon{left:28px;width:24px;}
#eng_icon{background:url('images/vlaggen.png') -27px 0;}

#de_icon{left:56px;width:24px;}
#de_icon{background:url('images/vlaggen.png') -54px 0;}

#vlaglist{position:relative;}
#vlaglist li{margin:0;padding:0;list-style:none;position:absolute;top:0;}
#vlaglist li, #vlaglist a{height:15px;display:block;}
 */
 
/*layout js voor quiz */
input {text-align:right;
        size: 10; }
#navlist{position:relative;}
#navlist li{
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: -1px;
}
#navlist li, #navlist a{height:44px;display:block;}

#home{left:0px;width:46px;}
#home{background:url('../pictures/img_navsprites.gif') 0 0;}

#prev{left:63px;width:43px;}
#prev{background:url('../pictures/img_navsprites.gif') -47px 0;}

#next{left:129px;width:43px;}
#next{background:url('../pictures/img_navsprites.gif') -91px 0;}

