/* Start of CMSMS style sheet 'Layout' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 68.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
   line-height: 1.6em;
}
div p{
   line-height: 1.6em;
}
td {
color:#333333;
font-size:11px;
}
/*
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 */
a,
a:link 
a:active {
       color: #85a01f;
font-weight:bold;
       text-decoration: none;
	/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
       background-color: inherit;
}

a:visited {
	text-decoration: none;
	background-color: inherit;
}


/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
}

/*****************
basic layout 
*****************/
body {
   background: #ffffff url(uploads/images/body-bg.png) repeat-x ; 
   background-position:  20px top;
   color:#ffffff;
   margin-top:10px; /*gives some air for the pagewrapper */
}
/* center wrapper, min max width */
div#pagewrapper {
/*   border: 1px solid #999999;*/
/*   margin: 0 auto;      this centers wrapper */
   width: 970px;
/*   max-width: 90em;IE wont understand these, so we will use javascript magick
   min-width: 80em; */
   color: #999;
 }


/*** header ***
we will hide text and replace it with an image
we need to assign a height for it
*/

div#header {
   height: 239px; 
}

div#header h1 a {
/* you can set your own image here */
   background-image: url(uploads/images/websitebmzm.png) ;  /* kleur aanpassen JLB */
   display: block; 
   height: 230px;             /* 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 */
}

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;
   display:none;
}

div#datum{
   text-align: center;
   margin-top:20px;
   margin-bottom:20px;
}


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;
   display: none;   /* toevoegen JLB */
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
   display: none;   /* toevoegen JLB */
 } 

div#content {
  margin: 0 auto 30px 0;  
  border-right: 1px solid #981a1e;  
}

div#BMZM-actueel{
    margin-left: 20px;     
    border-bottom: 1px solid #981a1e;  
    border-left: 1px solid #981a1e;
    padding-bottom:5px;
    padding-top:10px;
}
div#BMZM-actueel td{
   vertical-align: top;
   background: #981a1e url(uploads/images/bg-actueel.png) repeat-x ; 
   padding:10px;
}

div#mainzondersidebar {
     background-image: url(uploads/images/M-tr.gif) no-repeat left bottom; 
     padding-top: 30px;
     padding-right: 10px;
     margin-left: 20px;     
     min-height: 650px;
     height: auto !important;
     height: 650px;
}
div#mainzondersidebar hr {
                position: static;
                color: #981a1e;
                height: 1px;
}

div#main {
  background: url(uploads/images/M-tr.gif) no-repeat left bottom; 
  padding-top: 30px;
padding-right: 20px;
  margin-right: 260px;    /* make sure this space is bigger than sidebar width  JLB */
  margin-left: 20px;     
     min-height: 650px;
     height: auto !important;
     height: 650px;
}
div#main hr {
                position: static;
                color: #981a1e;
                height: 1px;
}

div#sidebar {
   float: right;        /*  left in right veranderd JLB*/
   width: 250px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;    /* FIX ie doublemargin bug */

}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
    width: 240px;  /*make width smaller if there's padding, or it will get too wide for the floated divs in IE*/
    padding-right: 10px
}

 /* toegevoegd JLB */
div#sidebar img {
   padding-top: 10px;
   overflow: hidden;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #ddd;
   background: #777 url(uploads/images/footer.png) repeat-x ; 
   border: 1px solid #777;
}

div#footer p {
   font-size: 1em;
   padding-top: 2x;      /* some air for footer */
   padding-bottom: 2px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #ccc; /* needed because footer link would be same color as background otherwise */
   text-decoration: none;  /* toevoegen en HTML-blok aanpassen JLB */
}

div#footer a:hover {
    color:#fff;
}
#footerplus{
	width: 100%;
	text-align: center;
	float: left;
	margin-top: 60px;
	padding-bottom: 60px;
}
#footerplus a{
	color: #999;
	text-decoration: none;
}


/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
  display: none;   /* toevoegen JLB */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
  display: none;   /* toevoegen JLB */
}




/********************
CONTENT STYLING
*********************/
div#content {
	color: #333333;   /* JLB */
}

/* HEADINGS */
div#content h1 {
   font-size: 1.7em;  /* font size for h1 */
   line-height: 1em;
   margin: 0; 
  padding-bottom: 10px;
}
div#content h2 {
	color: #981a1e;   /* JLB */
	font-size: 1.5em;
	text-align: left;
	/* some air around the text */
   padding-left: 0.5em;
	padding-bottom: 1px;
	/* set borders around header */
        /*border-bottom: 1px solid #981a1e;*/
	border-left: 1.1em solid #981a1e;
	line-height: 1.5em;
	/* and some air under the border */
   margin: 0 0 1.0em 0;
}
div#content h3 {
	color: #981a1e;       /* JLB */   
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#content h4 {
	color: #981a1e;   /* JLB */
	font-size: 1.2em;
	line-height: 2em;
	margin: 0 0 0.25em 0;
}
div#content h5 {
  color: #981a1e;   /* JLB */
   font-size: 1em;
   padding-left: 10px;
   padding-top: 3px;
   padding-bottom: 5px;
 }
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* BLOKJES*/
.blokjesheader {
   font-size: 11px;
   font-weight:bold;
   color: #981a1e;
   background: #ffcc66 url(uploads/images/bh1.png) repeat-x ; 
   border: 1px solid #981a1e;
   padding-bottom: 2px;
   padding-left: 10px;
}
.blokjesheader a{
  background: #ffcc66 url(uploads/images/bh1.png) repeat-x ; 
   display:block;
   color: #981a1e;
   text-decoration: none;
font-weight:bold;
}
.inblokjes{
   font-size: 11px;
   line-height:12px;
   color: #981a1e;
   padding: 10px;
   border: 1px solid #981a1e;
   vertical-align: top;
}
.inblokjes a{
   color: #981a1e;
font-weight:bold;
   text-decoration: none;
}
.blokjes2header {
   font-size: 11px;
font-weight:bold;
   color: #ddff88;
  background: #98981e url(uploads/images/bh2.png) repeat-x ; 
   border: 1px solid #98981e;
   padding-left: 10px;
   padding-bottom: 2px;
}
.blokjes2header a{
  background: #98981e url(uploads/images/bh2.png) repeat-x ; 
   display:block;
   color: #ddff88;
   text-decoration: none;
font-weight:bold;
}
.inblokjes2{
   font-size: 11px;
   line-height:12px;
   color: #981a1e;
   padding: 10px;
   border: 1px solid #98981e;
   vertical-align: top;
}
.inblokjes2 a{
   color: #981a1e;
font-weight:bold;
   text-decoration: none;
}
.blokjes3header {
   font-size: 11px;
   font-weight:bold;
   color: #99ffff;
  background: #5380af url(uploads/images/bh3.png) repeat-x ; 
   border: 1px solid #5380af;
    padding-bottom: 2px;
    padding-left: 10px;
}
.blokjes3header a{
   background: #5380af url(uploads/images/bh3.png) repeat-x ; 
  display:block;
  color: #99ffff;
   text-decoration: none;
font-weight:bold;
}
.inblokjes3{
   font-size: 11px;
   line-height:12px;
   color: #981a1e;
   padding: 10px;
   border: 1px solid #5380af;
   vertical-align: top;
}
.inblokjes3 a{
   color: #981a1e;
  font-weight:normal;
   text-decoration: none;
font-weight:bold;
}

.leden {
   background-color: #CCCCCC;
   border-top-width: 3px;
   border-bottom-width: 3px;
   border-top-style: solid;
   border-bottom-style: solid;
   border-top-color: #981a1e;
   border-bottom-color: #981a1e;
}
.leden td{
   padding: 10px;
   background-color: #EEEEEE;

}
.leden a{
font-weight:normal;
}
.feeds {
   font-size: 14px;
   font-weight:bold;
   color: #981a1e;
   line-height:30px;
}
.bestuur{
}
.bestuur td {
color:#333333;
font-size:11px;
padding-top: 50px;
}

/* FEEDS*/
#feedsindex {

   width:100%;
   font-size: 10px;
   color: #333;
}
#feedsindex  a{
   color: #981a1e;
}

.feedsindexHP td {
padding:0px;
width: 33%;
 }

.feedsindexHP  a{
   color: #981a1e;
}



/* 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;
}
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 */
}

/* END TEXT */

/* LISTS */

div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0em 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}
div#mainzondersidebar ol,
div#mainzondersidebar dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
padding-right: 50px;           /* tbv disclaimer */
}
div#mainzondersidebar ul {  /* tbv disclaimer */
   font-size: 1.0em;
   line-height:1.4em;
   list-style-type: square;
}
div#mainzondersidebar ul li,
div#mainzondersidebar 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;
}

/*  KALENDER  
.calendar td a{
  color: #ff0000;
 }

div#agenda h1{
  display: none;
 }
div#agenda a{
  color: #ff0000;
 }
div#agenda h2{
	color: #333333;   
	font-size: 14px;
	text-align: left;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
                margin-top: 20px;
                margin-bottom: 0px;
}
.calendar-date-from{
color:#990000;
font-weight:bold;
}
.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}
.calendar-today { 
   background-color: #aaa;
}
*/



/* FEUser */
.submit{
margin-top: 30px;
margin-left: 430px;
margin-bottom: 30px;
}


/* Form*/
.ruimteboven {
padding-top: 20px;
}
.ruimteonder {
padding-bottom: 40px;
}
/*  NIEUWS op INDEX */
.blokjes4header {
   font-size: 11px;
   font-weight:bold;
   color: #99ffff;
  background: #5380af url(uploads/images/bh3.png) repeat-x ; 
   border: 1px solid #5380af;
    padding-bottom: 2px;
    padding-left: 65px;
}
.blokjes4header a{
   background: #5380af url(uploads/images/bh3.png) repeat-x ; 
  display:block;
  color: #99ffff;
   text-decoration: none;
}
.inblokjes4 .NewsSummaryTitle{ /* wijkt nu af van standaard in News stylesheet*/
   color: #981a1e;
}
.inblokjes4 {
   background-color:  #FFF5BF;
   font-size: 11px;
   font-weight:normal;
   line-height:12px;
   color: #253a50;
    padding: 10px;
   border: 1px solid #5380af;
   vertical-align: top;
}
.inblokjes4 a{
   color: #253a50;
  font-weight:normal;
   text-decoration: none;
}
/* NEWS */
.zelf a{
font-size: 12px;
   color:#5380af;
}
#boekje table td{
display:block;
   background:  transparent;
padding:0px;
margin:0px;
}

#boekje table td img {
padding:0px;
margin:0px;
}

/* END LISTS */


/* End of 'Layout' */

