* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   color: #333;
   font-size: 75.01%;
   line-height: 1em;
}

/*
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;
}

.photo {
   border: 1px solid #f90;
   margin: 20px 0 20px 20px;
}

.photo-homepage {
   border: 1px solid #f90;
   margin: 15px 20px 15px 0px;
}

.tablebgcolor {
   background: #ccf;
}

.tablebgwhite {
   background: #fff;
}

.tekstblok {
   border: 1px dotted #f90;
   padding: 5px;
}

.eow {
font-weight: bold;
font-style: italic;
}

/*
default link styles
*/

a,
a:link 
a:active {
   text-decoration: underline;
   background-color: inherit; 
   color: #00c; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #00c;  
}

a:hover {
   text-decoration: none;
   background-color: #00c;
   color: #fff;
}


/*****************
basic layout 
*****************/
body {
   background: url(../images/cms/background.jpg) no-repeat center bottom fixed; 
   color: #333;
   margin:1em;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;
   max-width: 950px;
   min-width: 950px;
   color: black;
}


/*** header ***/

div#header {
   height: 100px;       
}

div#header h1 a {

/*background: url(../images/cms/kerst-header.gif) no-repeat; */
   background: url(../images/cms/header.gif) no-repeat;

/* ^^ Wijzigen van de header afbeelding kan hier ^^ */

   display: block; 
   height: 100px;
   text-indent: -999em;
   text-decoration:none;
}

div#search {
   float: right;
   width: 23em;
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 5px 0 5px 20px; /* 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-left: 0px;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   color: #00c;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#title {
    padding: 10px 20px 0 20px;
    width: 930px;
}

 div#content {
   margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}

div#main-sidebar {
   margin-right: 260px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-left: 20px; /* and some air on the right */
   text-align: justify;
}

div#main {
   margin-right: 20px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-left: 20px; /* and some air on the right */
   text-align: justify;
}

div#sidebar {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 250px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

div#sidebar-border {
   border: #f90 1px dotted;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 10px;
   width: 250px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}


div#sub-footer {
   clear:both;       /* keep footer below content and menu */
   padding-top: 5px;
   color: #000;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000;
   text-align: center; /* centered text */
}

div#footer p {
   font-size: 0.8em;
   padding: 1px;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 20px 0 0 0;
   border-top: dotted 1px #f90;
}

div#footer p a {
   color: #00c; /* needed because footer link would be same color as background otherwise */
   text-decoration: none;
}

div#footer p a:hover {
   color: #fff; /* needed because footer link would be same color as background otherwise */
   background-color: #00c;
}


/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   clear: both;
   height: 1px;
   margin: 1em 0;
   border-bottom: 1px dotted #f90;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
  line-height: 1.1em;
}

div.right49 {
  clear: both;
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2,
div#title h2 {
   color: #00c; 
   font-size: 1.5em; 
   text-align: left; 
   border-bottom: 1px dotted #f90;
   line-height: 1.5em;
   padding-bottom: 3px;
   margin-bottom: 10px;
}
div#content h3 {
   color: #00c; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #00c; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
tr {
   height: 13px;
}

p, td {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}

td {
padding: 1px 3px;
}


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;
}


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 */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl,
div#main-sidebar ul,
div#main-sidebar ol,
div#main-sidebar dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li,
div#main-sidebar ul li,
div#main-sidebar ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */