/* 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 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 0em;
   background: url(images/menu-bg.gif) repeat-y;
   padding-top:2px;
}


/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

.menu_start_img 
{
   width:276px;
   height:41px;
   background: url(images/menu_start.gif) no-repeat;
}

.menu_end_img 
{
   width:276px;
   height:35px;
   background: url(images/menu_end.gif) no-repeat;
}

/* menu li block  - not active*/
#menu_vert li {
   list-style: none;
   margin-top: 1px;
   display: block;
   /*background: url(images/cms/menu-inactive.gif) no-repeat;*/
  
}

#menu_vert ul ul li {
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding-left:2.5em;
   padding-right:0.5em;
   line-height:24px;
   height:24px;
   color: #142335; /* this will be link color for all levels */
   background: url(images/arrow-right.gif) no-repeat 1.0em center; 
   border-bottom: 1px solid #fff;
}

div#menu_vert a:hover {
   background: url(images/arrow-right.gif) no-repeat 1.1em center; 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding-left:3.5em;
   padding-right:0.5em;
   line-height:24px;
   height:24px;
   background: url(images/arrow-right.gif) no-repeat 2.0em center; 
   margin-left:15px;
   width:188px;
}

div#menu_vert ul ul a:hover {
   background: url(images/arrow-right.gif) no-repeat 2.1em center; 
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   font-size: 90%;
   padding-left:4.8em;
   padding-right:0.5em;
   background: url(images/arrow-right.gif) no-repeat 3.3em center;
}

div#menu_vert ul ul ul a:hover {
   background: url(images/arrow-right.gif) no-repeat 3.4em center;
}

/* hover state for all links */
div#menu_vert a:hover {
   /* background: url(images/cms/menu-active.gif) no-repeat; */
   text-decoration:underline;
  /* background: url(images/arrow-right.gif) no-repeat 1.1em center; */
  
}

div#menu_vert a.activeparent:hover {
   color: #142335;
}

/* separator for all links */
div#menu_vert a {
  border-bottom: 1px solid #fff;
  margin-left:15px;
  width:200px;
}


/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   /* background: url(images/cms/menu-active.gif) no-repeat;*/
   color: #142335;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #142335;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   display: block; 
   padding-left:2.5em;
   padding-right:0.5em;
   line-height:24px;
   height:24px;
   color: #142335;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
   background: url(images/arrow-right.gif) no-repeat 1.0em center; 
   border-bottom: 1px solid #fff;
   margin-left:15px;
   width:200px;
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding-left:3.5em;
   padding-right:0.5em;
   line-height:24px;
   height:24px;
   background: url(images/arrow-right.gif) no-repeat 2.0em center; 
   background-color: transparent;
   border-bottom: 1px solid #fff;
   color: #000;   
   margin-left:15px;
   width:200px;  
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   font-size: 90%;   
   padding-left:4.6em;
   padding-right:0.5em;
   line-height:24px;
   height:24px;
   background: url(images/arrow-right.gif) no-repeat 3.1em center; 
   background-color: transparent;
   border-bottom: 1px solid #fff;
   color: #000;
   margin-left:15px;
   width:200px;   
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 100%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'Navigation: Simple - Vertical' */

/* Start of CMSMS style sheet 'komkom main' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

* {
  padding:0px;
  margin:0px;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75%;
   height: 100%; /* héél belangrijk */
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #385C72;
}



/*****************
basic layout 
*****************/
body {
   color: #333;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 1016px;   /* IE wont understand these, so we will use javascript magick */
   background-color: #fff;;
   color: black;
   position: relative;
   min-height: 100%;
   min-height:600px;
   height:auto !important; /* voor moderne browsers */
   height:100%; /* voor IE */
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 138px;    /* adjust according your image size */
   background: #fff;
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(images/cms/logo.jpg) no-repeat 0 0px; 
   display: block;
   height: 80px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

.box {
   background: #3c4b5e; 
   float: left; 
   width: 105px; 
   margin-right: 15px; 
   height: 120px; 
   text-align: center; 
   border: #ccc 1px solid; 
   padding: 5px;
}

a.menu-item ,
a.menu-item:link,
a.menu-item:visited,
a.menu-item:active 
{
display:block;   
   width:113px;
   height:23px;
   line-height:23px;
   background: url(images/cms/menu-std.gif); 
   color:#fff;
   text-align:center;
   float:left;
   margin-left:1px;
   text-decoration:none;
}

a.menu-item:hover {
   background: url(images/cms/menu-hover.gif);
   text-decoration:none;
   color:#f3f8ff;
   
}

A.whitelnk:link 
{
    FONT-WEIGHT: normal;
    COLOR: white;
    TEXT-DECORATION: none
}
A.whitelnk:visited 
{
    FONT-WEIGHT: normal;
    COLOR: white;
    TEXT-DECORATION: none
}
A.whitelnk:active
{
    FONT-WEIGHT: normal;
    COLOR: white;
    TEXT-DECORATION: none
}
A.whitelnk:hover 
{
    FONT-WEIGHT: normal;
    COLOR: white;
    TEXT-DECORATION: underline;
}

A.greylnk:link 
{
    FONT-WEIGHT: normal;
    COLOR: #303030;
    TEXT-DECORATION: none
}
A.greylnk:visited 
{
    FONT-WEIGHT: normal;
    COLOR: #303030;
    TEXT-DECORATION: none
}
A.greylnk:active
{
    FONT-WEIGHT: normal;
    COLOR: #303030;
    TEXT-DECORATION: none
}
A.greylnk:hover 
{
    FONT-WEIGHT: normal;
    COLOR: #303030;
    TEXT-DECORATION: underline;
}

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; 
 } 

 div#content {
   margin: 25px auto 2em 0;   /* some air above and under menu and content */
}


div#main {
   margin-left: 20px; /* room for sidebar on the left side, make sure space is bigger than sidebar width */
   font-size:13px;
   line-height:15px;
   float:left;
   min-height: 100%;
   height:auto !important; /* voor moderne browsers */
   height:100%; /* voor IE * */
   margin-top:10px;
   width:550px;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 278px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
   min-height: 100%;
   height:auto !important; /* voor moderne browsers */
   height:100%; /* voor IE * */
}

div#rightcol{
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 150px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
   min-height: 100%;
   height:auto !important; /* voor moderne browsers */
   height:100%; /* voor IE * */
   margin-top:10px;
}

.footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #002655; /* same bg color as in header */
   position: absolute; 
   bottom: -33px;
   width:100%;
   padding-top:4px;
   padding-bottom:4px;
   text-align:center;
   font-size:11px;
}

.footer a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
   width:500px;
}


/********************
CONTENT STYLING
*********************/
div#content {
	min-height: 100%;
	height:auto !important; /* voor moderne browsers */
	height:100%; /* voor IE * */
}

div.hr2 {
   height: 1px;
   margin:5px 0px 5px 0px;
   border-bottom: 1px dotted black;
   width:90%;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

/* HEADINGS */
div#content h1 {
   /*font-size: 20px;  font size for h1 */
   line-height: 1em;
   margin: 0;
   color:#294B5F;
}

.subartikelbox H1 {
	FONT-SIZE: 14px; MARGIN: 0px 0px 5px
}
.overige_artikels_box H1 {
	FONT-SIZE: 14px; MARGIN: 0px 0px 5px
}

H2 {
    PADDING-RIGHT: 10px; 
    PADDING-LEFT: 10px; 
    FONT-SIZE: 14px; 
    PADDING-BOTTOM: 2px;      
    MARGIN: 0px 0px 15px; 
    COLOR: #fff; 
    PADDING-TOP: 2px; 
    BACKGROUND-COLOR: #0d2d49;    
}

.subartikelbox H2 {
	PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-WEIGHT: normal; FONT-SIZE: 10px; PADDING-BOTTOM: 1px; MARGIN: 0px 0px 5px; PADDING-TOP: 1px
}
.overige_artikels_box H2 {
	PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-WEIGHT: normal; FONT-SIZE: 10px; PADDING-BOTTOM: 1px; MARGIN: 0px 0px 5px 90px; PADDING-TOP: 1px
}
.overige_artikels_box H2.no_img {
	MARGIN: 0px 0px 5px
}

div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */



/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
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%;
}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* LISTS */
/* lists in content need some margins to look nice */
/*
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}


div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}
*/
.lightblue {
   color: #6d88ac;
}

.actueel-top {
 width:159px;
 height:26px;
 background-image: url(images/actueel-top.gif);
 text-align:center;
 padding-top:9px;
}

.actueel-content {
  width:133px;
  padding:15px;
  background-image: url(images/actueel-fill.gif);
}

.actueel-bottom {
   width:159px;
   height:36px;
   background-image: url(images/actueel-bot.gif);
}

.toplinks-top {
 width:254px;
 height:31px;
 background-image: url(images/toplinks-top.gif);
 padding-left:27px;
 padding-top:15px;
 font-size:18px;
 color:#fff;
}

.toplinks-content {
  width:254px;
  padding-left:27px;
  background-image: url(images/toplinks-fill.gif);
}

.toplinks-bottom {
   width:276px;
   height:51px;
   background-image: url(images/toplinks-bot.gif);
}




P.hoofdartikel {
	MARGIN: 0px
}
P.subartikel {
	MARGIN: 0px
}
P.quote_right {
	PADDING-RIGHT: 30px; PADDING-LEFT: 30px; FONT-SIZE: 26px; FLOAT: right; PADDING-BOTTOM: 10px; WIDTH: 250px; COLOR: #0d2d49; PADDING-TOP: 10px
}
P.quote_left {
	PADDING-RIGHT: 30px; PADDING-LEFT: 30px; FONT-SIZE: 26px; FLOAT: left; PADDING-BOTTOM: 10px; WIDTH: 250px; COLOR: #0d2d49; PADDING-TOP: 10px
}
H1 {
	FONT-SIZE: 20px; MARGIN: 0px 0px 10px; color:#294B5F;
}
.subartikelbox H1 {
	FONT-SIZE: 14px; MARGIN: 0px 0px 5px
}
.overige_artikels_box H1 {
	FONT-SIZE: 14px; MARGIN: 0px 0px 5px
}
H2 {
	PADDING-RIGHT: 10px; PADDING-LEFT: 10px; FONT-SIZE: 14px; PADDING-BOTTOM: 2px; MARGIN: 0px 0px 15px; COLOR: #fff; PADDING-TOP: 2px; BACKGROUND-COLOR: #0d2d49
}
.subartikelbox H2 {
	PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-WEIGHT: normal; FONT-SIZE: 10px; PADDING-BOTTOM: 1px; MARGIN: 0px 0px 5px; PADDING-TOP: 1px
}
.overige_artikels_box H2 {
	PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-WEIGHT: normal; FONT-SIZE: 10px; PADDING-BOTTOM: 1px; MARGIN: 0px 0px 5px 90px; PADDING-TOP: 1px
}
.overige_artikels_box H2.no_img {
	MARGIN: 0px 0px 5px
}

.paragraphs LI {
	MARGIN-BOTTOM: 20px
}
.paragraphs LI LI {
	MARGIN-BOTTOM: 4px
}

DIV.containerpadding {
	PADDING-RIGHT: 2px; PADDING-LEFT: 2px; PADDING-BOTTOM: 50px; PADDING-TOP: 0px
}
DIV#header {
	BACKGROUND: url(_img/header.png) no-repeat; WIDTH: 800px; HEIGHT: 155px
}
DIV#header A {
	DISPLAY: block; WIDTH: 800px; HEIGHT: 155px; TEXT-DECORATION: none
}
DIV#header SPAN {
	VISIBILITY: hidden
}
DIV#navigation {
	FLOAT: left; WIDTH: 148px
}
DIV#middle_col {
	MIN-HEIGHT: 700px; FLOAT: left; WIDTH: 652px
}
DIV#content_large {
	FLOAT: left; WIDTH: 652px
}
DIV#content_small {
	FLOAT: left; WIDTH: 467px
}
DIV#right_col {
	FLOAT: left; WIDTH: 185px
}
DIV.clear {
	CLEAR: both
}
DIV.hoofdartikel {
	MARGIN-BOTTOM: 20px; PADDING-BOTTOM: 20px; WIDTH: 422px; BORDER-BOTTOM: #8e9493 1px dotted
}
DIV.subartikelbox {
	MARGIN-BOTTOM: 20px; PADDING-BOTTOM: 20px; WIDTH: 422px; BORDER-BOTTOM: #8e9493 1px dotted
}
DIV.overige_artikels_box {
	MARGIN-BOTTOM: 20px; PADDING-BOTTOM: 20px; WIDTH: 422px
}
DIV.subartikel_1 {
	BORDER-RIGHT: #8e9493 1px dotted; PADDING-RIGHT: 10px; PADDING-LEFT: 0px; FLOAT: left; PADDING-BOTTOM: 0px; MARGIN: 0px 11px 0px 0px; WIDTH: 200px; PADDING-TOP: 0px
}
DIV.subartikel_2 {
	FLOAT: left; MARGIN: 0px; WIDTH: 200px
}
DIV.overig_artikel {
	MARGIN-BOTTOM: 20px; PADDING-BOTTOM: 20px; WIDTH: 422px; BORDER-BOTTOM: #8e9493 1px dotted
}



DIV.insertbox_right {
	BORDER-RIGHT: #8e9493 1px dotted; BORDER-TOP: #8e9493 1px dotted; BACKGROUND: #e2eef9; FLOAT: right; MARGIN: 0px 0px 10px 20px; BORDER-LEFT: #8e9493 1px dotted; WIDTH: 250px; BORDER-BOTTOM: #8e9493 1px dotted
}
DIV.insertbox_left {
	BORDER-RIGHT: #8e9493 1px dotted; BORDER-TOP: #8e9493 1px dotted; BACKGROUND: #e2eef9; FLOAT: left; MARGIN: 0px 20px 10px 0px; BORDER-LEFT: #8e9493 1px dotted; WIDTH: 250px; BORDER-BOTTOM: #8e9493 1px dotted
}
DIV.insertbox_right P {
	PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; PADDING-TOP: 10px
}
DIV.insertbox_left P {
	PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; PADDING-TOP: 10px
}
DIV.insertbox_right H3 {
	FONT-SIZE: 16px; MARGIN: 10px 10px 0px; BORDER-BOTTOM: #0d2d49 1px solid
}
DIV.insertbox_left H3 {
	FONT-SIZE: 16px; MARGIN: 10px 10px 0px; BORDER-BOTTOM: #0d2d49 1px solid
}
DIV.onderschrift_box {
	FONT-WEIGHT: bold; FONT-SIZE: 10px; FLOAT: left; MARGIN: 0px 20px 10px 0px; WIDTH: 350px
}
DIV.extra {
	FONT-SIZE: 11px; WIDTH: 155px; BACKGROUND-COLOR: #b9d0e5
}
.extrapadding {
	PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; PADDING-TOP: 10px
}
.extra H3 {
	FONT-SIZE: 13px; MARGIN-BOTTOM: 5px; BORDER-BOTTOM: #0d2d49 1px dotted
}
DIV.newsticker {
	FONT-WEIGHT: normal; FONT-SIZE: 11px; MARGIN-BOTTOM: 10px; WIDTH: 155px; BACKGROUND-COLOR: #b9d0e5
}
DIV.newsticker A {
	FONT-WEIGHT: normal; FONT-SIZE: 11px; TEXT-DECORATION: none
}
DIV.newsticker H3 {
	FONT-SIZE: 13px; MARGIN-BOTTOM: 5px; BORDER-BOTTOM: #0d2d49 1px dotted
}
DIV.newsticker UL {
	PADDING-RIGHT: 0px; PADDING-LEFT: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px
}
IMG.artikel {
	BORDER-RIGHT: #0d2d49 1px solid; BORDER-TOP: #0d2d49 1px solid; FLOAT: left; MARGIN: 0px 20px 10px 0px; BORDER-LEFT: #0d2d49 1px solid; BORDER-BOTTOM: #0d2d49 1px solid
}
IMG.right {
	FLOAT: right; MARGIN: 0px 0px 10px 20px
}
DIV.onderschrift_box IMG.artikel {
	BORDER-RIGHT: #0d2d49 1px solid; BORDER-TOP: #0d2d49 1px solid; FLOAT: none; MARGIN: 0px; BORDER-LEFT: #0d2d49 1px solid; BORDER-BOTTOM: #0d2d49 1px solid
}
IMG.hoofdartikel {
	BORDER-RIGHT: #0d2d49 1px solid; BORDER-TOP: #0d2d49 1px solid; BORDER-LEFT: #0d2d49 1px solid; WIDTH: 420px; BORDER-BOTTOM: #0d2d49 1px solid
}
IMG.subartikel {
	BORDER-RIGHT: #0d2d49 1px solid; BORDER-TOP: #0d2d49 1px solid; FLOAT: left; MARGIN: 0px 10px 10px 0px; BORDER-LEFT: #0d2d49 1px solid; WIDTH: 80px; BORDER-BOTTOM: #0d2d49 1px solid
}
IMG.noborder {
	BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none
}
IMG.border {
	BORDER-RIGHT: #0d2d49 1px solid; BORDER-TOP: #0d2d49 1px solid; BORDER-LEFT: #0d2d49 1px solid; BORDER-BOTTOM: #0d2d49 1px solid
}
DIV#content_small .padding {
	PADDING-RIGHT: 15px; PADDING-LEFT: 30px; PADDING-BOTTOM: 30px; PADDING-TOP: 20px
}
DIV#content_large .padding {
	PADDING-RIGHT: 30px; PADDING-LEFT: 30px; PADDING-BOTTOM: 30px; PADDING-TOP: 20px
}
DIV#right_col .padding {
	PADDING-RIGHT: 15px; PADDING-LEFT: 15px; PADDING-BOTTOM: 30px; PADDING-TOP: 30px
}
DIV.box {
	BORDER-RIGHT: #c5d1da 6px solid; BORDER-TOP: #c5d1da 6px solid; MARGIN-BOTTOM: 30px; BORDER-LEFT: #c5d1da 6px solid; WIDTH: 580px; BORDER-BOTTOM: #c5d1da 6px solid; BACKGROUND-COLOR: #d1dbe2
}
DIV.box H2 {
	PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-WEIGHT: bold; FONT-SIZE: 14px; BACKGROUND: #c5d1da; PADDING-BOTTOM: 5px; PADDING-TOP: 0px
}
DIV.box H3 {
	FONT-WEIGHT: bold; FONT-SIZE: 12px; MARGIN: 10px 20px
}
DIV.box OL {
	MARGIN: 0px 20px 10px 60px
}
DIV.right {
	FLOAT: right; WIDTH: 200px
}
DIV#error {
	BORDER-RIGHT: #ff0000 2px dotted; PADDING-RIGHT: 10px; BORDER-TOP: #ff0000 2px dotted; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; BORDER-LEFT: #ff0000 2px dotted; COLOR: #ff0000; PADDING-TOP: 10px; BORDER-BOTTOM: #ff0000 2px dotted
}
DIV#error UL LI {
	MARGIN-TOP: 5px; LIST-STYLE-TYPE: none
}
TABLE#rittenschema {
	FONT-SIZE: 10px; MARGIN: 0px 0px 10px 70px; WIDTH: 450px; BACKGROUND-COLOR: #b9d0e5
}
TABLE#rittenschema TH {
	FONT-SIZE: 11px; LETTER-SPACING: 1px; TEXT-ALIGN: center
}
TABLE#rittenschema TD {
	PADDING-RIGHT: 5px; PADDING-LEFT: 0px; PADDING-BOTTOM: 1px; PADDING-TOP: 1px; BACKGROUND-COLOR: #e2eef9; TEXT-ALIGN: right
}
TABLE.formulier {
	FONT-SIZE: 10px; MARGIN: 0px 0px 10px 70px; WIDTH: 450px; BACKGROUND-COLOR: #b9d0e5
}
TABLE.formulier TD {
	PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; BACKGROUND-COLOR: #e2eef9
}
TABLE.formulier TD.text {
	PADDING-RIGHT: 5px
}
TABLE.formulier .inputveld {
	WIDTH: 320px
}
TABLE.formulier .inputbox {
	WIDTH: 320px
}

table.results td {
  padding:10px;
}

UL#nav {
	PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bold; FONT-SIZE: 11px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; LIST-STYLE-TYPE: none; TEXT-ALIGN: center
}
UL#nav LI {
	PADDING-RIGHT: 0px; PADDING-LEFT: 0px; LIST-STYLE-IMAGE: none; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid
}
UL#nav LI A {
	PADDING-RIGHT: 0px; DISPLAY: block; PADDING-LEFT: 0px; PADDING-BOTTOM: 5px; COLOR: #0d2d49; PADDING-TOP: 5px; BORDER-BOTTOM: #c4daef 1px solid; TEXT-DECORATION: none
}
UL#nav LI A:hover {
	BACKGROUND: #990000; COLOR: #fff; BORDER-BOTTOM: #660000 1px solid
}

div#main ul{
  padding:5px;
  margin:5px;
}

div#main ol{
  padding:15px;
  margin:15px;
}

div#main li{
  padding:5px;
  margin:5px;
}

textarea { width: 400px; }



/* End of 'komkom main' */

