/* Start of CMSMS style sheet 'Dorien' */
/*****************
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;
}

img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link
a:active {
   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;
   color: #000000;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #000000;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
    color: #000000;
}

/*****************
basic layout
*****************/
body {
   background-color: #ffffff;
   color: #333;
   margin: 1em; /* gives some air for the pagewrapper */
}

div#content {width: 460px; min-height: 600px; margin-left: 220px;}

div#taal { margin: auto;     /* this centers wrapper */}

div#pagewrapper {width: 700px;
                            margin: auto;
font-family: Century Gothic;
font-size: 12px;
color: #000000;
text-decoration: none;
  }

div#wrapper2 {   
   border: 2px solid #999999;
   margin: auto;     /* this centers wrapper */
   Width: 700px; /* IE wont understand these, so we will use javascript magick */
   background: #FFFFFF 
   color: black;
}


.collinks {    width: 206px;
                         float: left;
                         margin-left: 0px;
                         margin-top: 0px;
                       }

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
    height: 185px;   /* adjust according your image size */
    float: right;
    width: 494px;
  }

div#footer {
   width: 700px;
   color: #FFFFFF;
   height: 1px;

}

div#footer p {
   font-size: 10px;
   padding: 10px;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 0px;
}

div#footer p a {
   color: #000000; /* needed becouse footer link would be same color as background otherwise */
}

/*MENU*/

#menu {
font-family: Century Gothic;
font-size: 14px;
color: #000000;
text-decoration: none;
width: 487px;
hight: 30px;
float: right;
}
/*EINDE MENU*/

/*MENU*/



#blacktabs{
width: 100%;
overflow: hidden;
height: 30px;
/*padding-top:80px;*/
/*border-bottom: 1px solid black; *//*bottom horizontal line that runs beneath tabs*/
}

#blacktabs ul{
margin: 0;
padding: 0;
/*padding-left: 5px; *//*offset of tabs relative to browser left edge*/
        font-family: Century Gothic;
 	font-size: 14px;
	font-color: #000000;
	}

#blacktabs li{
display: inline;
margin: 0;
}

#blacktabs li a{
float: left;
display: block;
text-decoration: bold;
font-family: Century Gothic;
font-size: 14px;
margin: 0;
padding: 3px 3px; /*padding inside each tab*/
border-right: 0px solid white; /*right divider between tabs*/
color: #333333;
/*background:#FFFFFF background of tabs (default state)*/
}

#blacktabs li a:visited{
font-family: Century Gothic;
font-size: 14px;
color: #000000;
text-decoration: none;
}

#blacktabs li a:hover, #blacktabs li.selected a{
font-family: Century Gothic;
font-size: 14px;
font-color: #999999;
text-decoration: bold;
}


/*EINDE MENU*/

/********************
CONTENT STYLING
*********************/


/* HEADINGS */
div#content h1 {
   font-size: 16px;  /* font size for h1 */
   line-height: 22px;
   margin: 0;
}
div#content h2 {
   color: #294B5F;
   font-size: 15px;
   text-align: left;
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #e7ab0b;
   border-left: 1.1em solid #e7ab0b;
   line-height: 21px;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F;
   font-size: 14px;
   line-height: 19px;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F;
   font-size: 13px;
   line-height: 18px;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 11px;
   line-height: 17px;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 10px;
   line-height: 16px;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {font-family: verdana; font-size: 12px; color: #000000;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
   }

a:link {font-family: verdana; font-size: 12px; color: #000000; text-decoration: none;} 
a:visited {font-family: verdana; font-size: 12px; color: #000000; text-decoration: None;} 
a:hover {font-family: verdana; font-size: 12px; color: #999999; text-decoration: None;} 
a:active {font-family: verdana; font-size: 12px; color: #000000; text-decoration: None;}

blockquote {
   border-left: 10px;
   margin-left: 30px;
}
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 {
    /* 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 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;
}
/* END LISTS */
/* End of 'Dorien' */

