/* Start of CMSMS style sheet 'Bio - style' */
/*****************
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: 11px;
   line-height: 18px;
   background-color: #fff;
   color: #767778;
   margin:1em;    /* gives some air for the pagewrapper */
}

/*
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;
   background-color: inherit; 
   color: #999; 
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #999;
}

/*****************
basic layout 
*****************/
/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 770px;
   background: transparent url(images/pagewrap.jpg) repeat-y left top;
   border-bottom: 1px solid #a9abad;
}

/*** 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: 224px;    /* adjust according your image size */
   position: relative;
   background: transparent url(uploads/images/hygiene.jpg) no-repeat left top;
}

div#header div#lines {
   width: 770px;
   height: 25px;
   position: absolute;
   z-index: 999;
   left: 0;
   top: 150px;
}

div#header div#tekst {
   width: 576px; 
   height: 17px; 
   padding: 15px 0 15px 0; 
   text-align: center; 
   letter-spacing: 1px; 
   color: #fff; 
   font-size: 14px; 
   font-weight: bold; 
   position: absolute; 
   bottom: 0; 
   right: 0;
   background: transparent url(images/pixel.png);
}

div#header div#wit-blok {
   position: absolute; 
   left: 0px; 
   top: 65px; 
   width: 194px; 
   height: 159px; 
   background: #fff;
}

div#wit-blok img {
   margin: 30px 0 0 10px;
}

div#main {
   margin-left: 193px; 
   margin-right: 30px; /* and some air on the right */
   border-left: 0px solid #a9abad;
   padding: 30px 0 0 30px;
   min-height: 300px;
}

div#main div#meer-info {
   float: right; 
   width: 200px;
   margin-left: 30px;
   border: 1px solid #a7a9ac;
   border-top: 0;
}

div#meer-info a {
   color: #767778;
   text-decoration: none;
}
div#meer-info a:hover {
   color: #31588D;
   text-decoration: underline;
}

div#meer-info p {
   margin-left: 8px;
   line-height: 11px;
}

div#meer-info h1 {
   background: #31588D;
   color: #fff;
   line-height: 32px;
   padding-left: 3px;
   font-size: 11px;
   margin-bottom: 9px;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 193px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
   min-height: 368px;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #385C72; /* 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 */
}


/********************
CONTENT STYLING
*********************/
h1 {
   color: #f7971c; 
   font-size: 1.1em;
   margin: 0;
}
h2 {
   color: #f7971c; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h3 {
   color: #f7971c; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h4 {
   color: #f7971c; 
   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 */
   padding: 0;
}

span.blue {
   color: #31588D;
   font-weight: bold;
}

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;
}

/* END TEXT */

/* 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#content ol li {
   margin: 0 0 0.25em 3em;
   list-style-image: url(images/bullet.png);
}

/* 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;
}


/* END LISTS */
/* End of 'Bio - style' */

