/* 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: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
   line-height: 1.4em;
}

/*
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;
   color: #f00; 
}

a:visited {
   text-decoration: underline;
   color: #f00;    
}

a:hover {
   text-decoration: none;
   color: #f00;
}

.tekstvak {
background: #999;
}

div.tekstvlak-links {
   float: left;
   padding: 10px 20px 10px 10px;
   margin: 10px 20px 10px 0px;
   border-right: #f90 1px dotted;
}

div.tekstvlak-rechts {
   float: right;
   padding: 10px 10px 10px 20px;
   margin: 10px 0px 10px 20px;
   border-left: #f90 1px dotted;
}


.cmdt {
color: #f00;
font-style: italic;
/*font-weight: bold;*/
}

/*****************
basic layout 
*****************/
body {
   background: #999 url(images/background.png) top left repeat-x fixed;
   color: #333;
   margin: 15px; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border-right: 2px dotted #f00;
   border-bottom: 2px dotted #f00;
   border-left: 2px dotted #f00;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 950px; /* IE wont understand these, so we will use javascript magick */
   min-width: 950px;
   color: #333;
   background-color: #fff;
}


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

div#top {               /* header, menu, breadcrumbs */
   background: #fff url(images/header.png) no-repeat;
   height: 350px; 
}

div#header {
   height: 250px;  
}

div#header h1 a {
   background: inherit;
   display: block;
   height: 240px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#header-menu {
float: right;
}

div#header-menu p {
   color: #333;
   font-size: 0.8em;
}

div#header-menu a,
div#header-menu a:link 
div#header-menu a:active {
   text-decoration: none;
   color: #f00;
}



div#search {
   float: right;
   width: 27em;
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 2em 0 0 0; 
   font-size: 90%;
   margin: 0 2%;
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 }

div#content {
   padding-top: 10px;
   margin: 0;
   text-align: justify;
   background-color: #fff;
}

div#main {
   margin-left: 2%;
   margin-right: 2%;
   background-color: #fff;
}


div#sidebar {
   float: left;
   width: 26%;
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesn't include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;
}

div#footer {
   clear:both;
   color: #666;
   background-color: #fff;
}

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: #666;
   text-decoration: none;
}

/* 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 #f00;
}

/* 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;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div.breadcrumbs h2 {
   text-align: left;
   color: #f00; 
   font-family: "Times New Roman", Times, serif;
   font-size: 28px; 
   font-style: italic;
/* some air around the text */
   padding-left: 0px;
   padding-bottom: 0px;
/* set borders around header */
   /*border-bottom: 1px solid #f90; */
   /*border-left: 1px solid #f90;*/
   line-height: 21px;
/* and some air under the border */
   margin: -33px 0 1em 0;
}



div#content h3,
div#pagewrapper h3 {
   background-color: #f00;
   color: #fff; 
   font-size: 1.3em;
   line-height: 1.3em;
   padding-left: 20px;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #f00; 
   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 */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
td {
   font-size: 1em;
   line-height:1.4em;
   padding: 5px;
}
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 {
  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 'Layout' */

