/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet '2008-MENU-HORIZONTAAL' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/

div#menu_horiz {
/*float: left;*/
margin: 0px 0px 0px 30px;
padding: 24px 0px 0px 0px;
background: #0f0f0f url(images/opmaak/bg-kolom-450.gif) no-repeat left top;
/*height: 100px;*/
width: 500px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;
   height:2.3em;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0;
    /*padding: .6em 1.3em .6em 1.3em; padding inside the list item box */
    padding: .6em 2.81em .6em 0em;
}

/* the links, that is each list item */
div#menu_horiz a {
/*   padding: .6em 1.2em .6em 1.2em; *//* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #2bd4f8;
/*  background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; */
   display: block; /* IE has problems with this, fixed above */
   font: bold 1.3em Arial, Helvetica, sans-serif;
}

/*
.mostleft {
padding: .6em 1.3em .6em 0em;
}
.mostright {
padding: .6em 0em .6em 1.3em;
}
*/

/* hover state for links */
div#menu_horiz li a:hover {
   background-color: #0f0f0f;
   color:#fff;

}
div#menu_horiz a.activeparent:hover {
   background-color: #0f0f0f;
   color: #2bd4f8;
}

/* ----------------------------------*/
/* hover state for links */
div#menu_horiz li:hover {
   color:#fff;
/*background: #0f0f0f url(images/opmaak/menu-downarrow.gif) no-repeat center top;*/
}
div#menu_horiz a.activeparent:hover {
/*  background: #0f0f0f url(images/opmaak/menu-downarrow.gif) no-repeat center top;*/
   color: #fff;
}


/* ----------------------------------*/


/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent /*a*/ {
 /*  background: #385C72 url(images/cms/arrow-down.gif) no-repeat 0.4em center; */
   color: #2bd4f8;
}

div#menu_horiz h3 {
/*   padding: .6em 1em .6em 1.4em; *//* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #fff;
  background-color: #0f0f0f;
   display: block; /* IE has problems with this, fixed above */
 font-size: 1.3em;                           /* instead of the normal font size for <h3> */
}

/* End of '2008-MENU-HORIZONTAAL' */

/* Start of CMSMS style sheet '2008-CSS-nieuw' */
div#search {
   float: right;
   width: 210px;     /* enough width for the search input box */
   text-align: right;
   padding: 0em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 


* {
margin:0px;
padding:0px;
}

a {
outline: none;
}

img {
border: 0px solid #ddd399;
text-decoration: none;
}


html, body {
height: 100%; /* héél belangrijk */
width: 100%;
padding: 0px;
margin: 0px;
}


html {
    margin: 0px;
    background-color: #0f0f0f; 
    color: #d0d0d0; 
    }

body {
margin: 0px auto;
height: 100%;
padding: 0px;
font-size: 75.01%;
font: normal 0.75em Arial, Helvetica, sans-serif;
}

	
/* TEXT */

p {
   font-size: 1em;
   margin: 0 0 1em 0;  /* some air around p elements */
   line-height:1.5em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

a {
background-color: #0f0f0f ;
color: #2BD4F8;
text-decoration: none;
}

a:hover {
background-color: #0f0f0f ;
color: #2BD4F8; 
text-decoration: underline;

}

/* END TEXT */


#pagewrapper {
	margin: 0px 0px -10px 0px;
	padding: 0px 0px 0px 0px;
        width: 100%;	
	position: relative;
	min-height: 100%;
	height: auto !important;
	height: 98%;

}



/* HEADER SECTIE*/

#header {
height: 175px;
width: 100%;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}

#header-logo {
float: left;
margin: 0px 0px 0px 0px;
	padding: 0px;
	background: #0f0f0f url(images/opmaak/logo-210.gif) no-repeat 30px 22px;
	height: 150px;
	width: 240px; /* dezelfde breedte als kolom-210 */
	color: #000;
	}

#header-menu {
margin: 0px 0px 0px 240px;
/*width: 450px;  dezelfde breedte als kolom-450 */
}

#sub-menu {
/*float:left;*/
width:450px; /* dezelfde breedte als kolom-450 */
margin: 50px 0px 30px 30px;
color: #fff;
}


/* EINDE HEADER SECTIE*/





/* MAIN SECTIE */

#inhoud {
 float: left;
position:relative;
	/*height: 100%;*/
	 width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px; /* padding bott was 140 */
	 background-color: transparent;
/*	color: #000;*/
         overflow: visible;
}




/* FOOTER SECTIE */

#footerwrap {
        clear:both;
	float:left;
	position: absolute;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 0px ;
	bottom: 0px;
	width: 100%;
	}



/* EINDE FOOTER SECTIE */


h1 {  /* voor titels in kolommen */
	padding: 0px 0px 5px 0px;
	font: bold 1.2em Arial, Helvetica, sans-serif;
	color: #2bd4f8;
}

h2 { /*  */
	font: bold 1.2em Arial, Helvetica, sans-serif;
	padding: 0px 0px 5px 0px;
        color: #fff;
}

h3 { /* menu links */
	font: bold 1em Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
}


h4 { /* titels bij prijslijst*/
	font: bold 1em Arial, Helvetica, sans-serif;
	color: #3e1203;
	margin: 10px 0px 5px 0px;
}

h5 { /* voor TITLE onder het menu */
	padding: 0px 0px 5px 0px;
	font: bold 1.4em Arial, Helvetica, sans-serif;
	color: #2bd4f8;
        text-align:right;
}


.clearer {
clear:both;
display:block;
font-size:1px;
height:1px;
line-height:1px;
margin-bottom:-1px;
}

/* --------------------------- */
/* OPMAAK VAN DE KOLOMMEN */
/* --------------------------- */

.kolommen {
margin: 0px 0px 50px 240px;/* margin-left was 0, margin bottom was 150px */
}

/* PADDING, MARGIN, FLOAT en DISPLAY VOOR ALLE KOLLOMMEN GELIJK */

.kolom-kantlijn, .kolom-210, .kolom-450 {
float: left;
padding: 35px 0px 0px 0px; 
margin:  0px 0px 30px 30px;
display: inline;
overflow:visible;
}

.kolom-kantlijn {
width: 170px;
background: #0F0F0F url(images/opmaak/bg-kolom-170.gif) no-repeat scroll center top;
}

.kolom-210 {
width: 210px;
background: #0F0F0F url(images/opmaak/bg-kolom-210.gif) no-repeat scroll center top;
}

.kolom-450 {
width: 450px;
background: #0F0F0F url(images/opmaak/bg-kolom-450.gif) no-repeat scroll center top;
}

.kolom-kantlijn ul, .kolom-210 ul, .kolom-450 ul {
padding: 0px 0px 0px 0px;
list-style:none;
}
 .kolom-kantlijn li, .kolom-210 li/*, .kolom-450 li*/ {
padding: 0px 0px 2px 20px;
background: #0F0F0F url(images/opmaak/arrow-right.gif) no-repeat left top;
}

.arrow { /* pijltjes voor elk list item */
padding: 0px 0px 2px 20px;
background: #0F0F0F url(images/opmaak/arrow-right.gif) no-repeat left top;
}

.web img {
border: 3px solid #d0d0d0;
}

.beschrijving {
height:340px;
}

#footerwrap .kolommen { 
margin:  0px 0px 0px 0px; /*margin bottom was 150px*/
}

#footerwrap .kolom-kantlijn, #footerwrap .kolom-210, #footerwrap .kolom-450 {
margin:  0px 0px 0px 30px;
}


/* ----------------------- */
/* SITEMAP INSTELLINGEN */
/* ----------------------- */
.sitemap ul {
margin: 0px 0px 0px 5px;
line-height: 1.5em;
}
.sitemap li {
list-style:none;
margin: 0px 0px 0px 5px;
}
/* ----------------------------- */
/* EINDE SITEMAP INSTELLINGEN */
/* ----------------------------- */


/* ----------------------------- */
/* BUTTON                               */
/* ----------------------------- */

.button {
width: 210px;
height: 25px;
margin: 5px 0px 0px 0px;
	font: bold 1.2em Arial, Helvetica, sans-serif;
color: #fff;
background: #0f0f0f url('images/opmaak/bg-acc-header.gif') repeat-x center 30%;
border: 1px solid #d0d0d0;
}

.button:hover, .button:active, .fbsubmit:hover, .fbsubmit:active {
background: #0f0f0f url('images/opmaak/bg-acc-header.gif') repeat-x center 50%;
color: #fff;
cursor: pointer;
border: 1px solid #fff;
}

.fbsubmit {
width: 210px;
height: 25px;
margin: 5px 0px 0px 220px;
	font: bold 1.2em Arial, Helvetica, sans-serif;
color: #fff;
background: #0f0f0f url('images/opmaak/bg-acc-header.gif') repeat-x center 30%;
border: 1px solid #d0d0d0;
}

/* ----------------------------- */
/* BUTTON                               */
/* ----------------------------- */

.button,  .fbsubmit {
width: 210px;
height: 25px;
margin: 5px 0px 0px 0px;
	font: bold 1.2em Arial, Helvetica, sans-serif;
color: #fff;
background: #0f0f0f url('images/opmaak/bg-acc-header.gif') repeat-x center 30%;
border: 1px solid #d0d0d0;
}

.button:hover, .button:active, .fbsubmit:hover, .fbsubmit:active {
background: #0f0f0f url('images/opmaak/bg-acc-header.gif') repeat-x center 50%;
color: #fff;
cursor: pointer;
border: 1px solid #fff;
}

.nogdit { /* afstand tussen de kantlijn-titels en kantlijn links */
margin:25px 0px 0px 0px;
}
/* End of '2008-CSS-nieuw' */

