/* Start of CMSMS style sheet 'weevers 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 {
   background: url(uploads/images/layout/body_bg.jpg) repeat-x top left;
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   margin:20px;
}


/*
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;
   padding: 5px;

}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
   background-color: inherit; 
   color: #207075; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #207075;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #086066;
}

hr {
width: 75%; 
height: 2px;
color: #336699;
background-color: #336699;
border: solid #336699 0px;
}

/*****************
basic layout 
*****************/

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 960px; /* IE wont understand these, so we will use javascript magick */
   min-width: 960px;
   background-color: #ffffff;
   color: #252525;
}


/*** header ***/

div#header {
   background: url(uploads/images/layout/header_bg.jpg) no-repeat top right;
   height: 98px; /* adjust according your image size */
   padding-top: 14px;
 }

* html div#header {  /* IE6 hack */
margin-bottom:-34px;
margin-right:-15px;
}


div#header h1 {
   background: url(uploads/images/layout/logo-wn.jpg) no-repeat top left;
  /* widht:165px;*/
   height:83px;
   position:relative;
   top:-40px;
   left:20px;
   /*margin-top: 14px;
   margin-left: 20px;*/
   text-indent: -999em;  /* this hides the text */
   text-decoration:none;  /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#koptekst {
width:600px;
line-height:40px;
font-size:28px;
position:relative;
top:35px;
left:250px;
}

div#content {
   margin:20px 0px 0px 0px;
}

div#main {
   margin-left: 215px;
   margin-right:215px;
}

* html div#main {   /* IE 6 hack */
   margin-left: 215px;
   margin-right:190px;
}

div#main img {
   border: 0;
   padding-left: 0px;
   padding-right: 10px;
}

div#sidebar_left {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 20px;
   margin-right:20px;
}

div#naw {
background: #f7fbfb url(uploads/images/layout/naw_bg.jpg) repeat-x bottom left;
width: 160px;
border: 1px solid #007d75;
font-size:10px;
padding:5px 5px 5px 5px;
text-align: left;
padding-top: 5px;
}

div#nieuwsbrief {
background: #f7fbfb url(uploads/images/layout/nieuwsbrief_bg.jpg) repeat-x bottom left;
width: 170px;
border: 1px solid #007d75;
font-size:10px;
margin-top: 15px;
}

div#nieuwsbrief p {
width: 160px;
font-size:10px;
padding:0px 0px 0px 5px;
}

div#nieuwsbrief a {
/*background: #f7fbfb url(uploads/images/layout/nieuwsbrief_button_bg.jpg) repeat-x bottom left;*/
line-height:22px;
display:block;
margin-top:-2px;
color: #252525; 
}

div#nieuwsbrief a:hover {
font-size:10px;
color: #007D76; 
text-decoration: underline;
}

div#partner {
width:160px;
padding: 5px 5px 5px 5px;
margin-top: 20px;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar_left.hascontent {
   padding: 0 1%;
   width: 165px; 
}



div#sidebar_right {
   width: 170px;
   float: right;  
   display: inline;  /* FIX ie doublemargin bug */
   margin-right: 25px;
  padding-left:0px;
}

div#menu_alg {
width: 160px;  
color: #252525;
margin-left:5px;
}

div#menu_alg a {
background: url(uploads/images/layout/menu_alg_bg.jpg) repeat-x bottom left;
width: 160px;
line-height:21px; 
border: 1px solid #007d75;
display:block;
font-size:12px;
color: #252525; 
text-decoration: none;
padding:0px 5px 0px 5px;
text-align: center;
}

div#menu_alg a:hover {
background: url(uploads/images/layout/menu_alg_bg_hover.jpg) repeat-x top left;
color: #000000; 
/*text-decoration: underline;*/
}


div#menu_alg p {
margin-bottom:5px;
}

div#banners {
margin-top:20px;
padding:0px;
}

div#sidebar_right.hascontent {
   padding: 0 1%;
   width: 160px;
}

* html div#sidebar_right {  /* IE 6 hack */
   width: 160px;
   float: right;  
   display: inline;  /* FIX ie doublemargin bug */
   margin-right: -10px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   margin-top:30px;
   text-align:center;
   /*background-color: #FFFFFF;*/ /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   /*padding: 1.5em;*/      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p 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;
   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 */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}


/********************
PORTFOLIO STYLING
*********************/

.CompanyDirectoryItem {
height: 130px;
background: #f3f6f7 /*C3DDDC*/;
border: 1px solid #7fbeba;
padding-right: 0px;
padding-left:0px;
margin: 10px 0 10px 0;
}

.CompanyDirectorytext {
padding-top:5px;
padding-left: 230px;
text-align: left;
color: #252525;
font-size:10px;
}

.CompanyDirectoryItem img {
margin-top:15px;
margin-left: 10px;
}

.CompanyDirectorylink {
color:#207075;
}

.CompanyDirectorylink a {
text-decoration:underline;
}

.CompanyDirectorylink a:hover {
text-decoration:underline;
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#main h1 {
   font-size: 18px;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#main h2 {
   color: #252525; 
   font-size:16px; 
   text-align: left; 
   padding-bottom: 1px;
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}
div#main h3 {
   color: #252525; 
   font-size: 14px;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#main h4 {
   color: #252525; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#main 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 */
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 {
 
 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 */

/* ----------------------------- 
 CONTACTFORM STYLING
  --------------------------- */


.formwrapper {
/*border: 1px solid #000;*/
/*padding: 4px;*/
width: 300px;
}

.formwrapper a {
font-size: 13px;
color: #252525;
}

.formwrapper_tekst {
padding-top: 15px;
padding-bottom:15px;
padding-left: 10px;
}

.formbuilderform input {
border: 1px solid #000;
padding: 2px;
margin: 0 0 0 10px;
/*width: 150px;*/
}

.formwrapper_radio {
border: 0px solid #000;
padding: 2px;
margin: 0 0 0 10px;
}

.formbuilderform textarea {
border: 1px solid #000;
padding: 2px;
margin: 0 0 0 10px;
}

.formbuilderform select {
/*border: 1px solid #000;*/
padding: 2px;
margin: 0 0 0 10px;
}

.formwrapper .fbsubmit {
border: 1px solid #000;
padding: 2px;
margin: 10px 0 0 10px;
width: 150px;
font-size: 13px;
color: #252525;
background-color: #CAE4E3;
}


/* LISTS */
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;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}

/*----------------------------
      actueel nieuws 
---------------------------- */

div#actueel {
background: #f7fbfb url(uploads/images/layout/news_bg.jpg) repeat-x bottom left;
width: 160px;
border: 1px solid #7fb7e3;
margin-top:20px;
margin-left:5px;
font-size:10px;
padding:5px;
text-align: left;
color: #015291;
}

div#actueel h3 {
background: url(uploads/images/layout/menu_alg_bg.jpg) repeat-x bottom left;
width: 170px;
line-height:21px; 
border: 1px solid #7fb7e3;
display:block;
font-size:12px;
color: #252525; 
text-decoration: none;
margin-left:-6px;
margin-top:-6px;
padding:0px 0px 0px 0px;
text-align: center;
}

* html div#actueel h3 { /* IE 6 hack */
margin-right:-6px;
}

div#actueel h2 {
font-size:10px;
color: #015291;
margin-top:10px;
}

div#actueel a {
width:100px;
background:none;
border: 0px solid #ab80bb;
text-align: left;
color: #015291;
font-size:10px;
text-decoration: underline;
}

div#actueel a:hover {
color: #4094d6;
text-decoration: underline;
}

div#actueel img {
padding:0px 0 5px 0;
}

#myframe,
#pi_iframe { 
height: 900px;
overflow: auto;
}

/* END LISTS */
/* End of 'weevers layout' */

