/* Start of CMSMS style sheet '_SKH: Layout: Top menu + 2 columns' */
/*****************
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;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*default link styles*/
a,
a:link 
a:active {
   text-decoration: underline;
   background-color: inherit; 
   color: #442E79; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #442E79;
}

a:hover {
   text-decoration: underline;
   background-color: #E5F3D8;
   color: #442E79;
}

/*****************
basic layout 
*****************/
body {
   background-color: #2f2052;
   color: #2f2052;
   margin:10px; /* gives some air for the pagewrapper */
}

div#pagewrapper {
   border: 10px solid white;
   margin: 0 auto;
   width: 960px;
   color: #2f2052;
	background-image: url(uploads/images/bg-content.gif);
	background-repeat: repeat-y;
	background-position: center;}

div#extrabg {
	background-image: url(uploads/images/contentfooter.gif);
	background-repeat: no-repeat;
	background-position: 0px bottom;
}


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

div#header {
   height: 76px; /* adjust according your image size */
   background: white;           
	background-image: url(uploads/images/contentheader3.gif);
	background-position: 0 0;
	background-repeat: no-repeat;
}

div#header h1 a {
	display: none;
	height: 76px;             /* adjust according your image size */
	text-indent: -999em;  /* this hides the text */
	text-decoration:none;
	visibility: hidden;
}

div#search {
   float: left;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0;
   margin: 0;
}

div.breadcrumbs {
	padding: 10px; 
	font-size: 90%;             
	margin: 0 500px 0 0; 
	border: 0px solid white;
}

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

 div#content {
   margin: 0em auto 0em 0; /* some air above and under menu and content */
}

div#main {
	margin-left: 10px; 
	margin-right: 400px;
}

div#mainlargespace {
	margin-left: 0px;
	margin-right: 0px;
}

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

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
	padding: 0;
	width: 370px;
}

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

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
	height: 1px;
	margin: 1em 0;
	background-image: url(uploads/images/bg-line-hor.gif);
	background-repeat: repeat-x;
}

/* relational links under content */
div.left79 {
	float: left;
	width: 79%; 
	margin-bottom: 100px;
	font-size: 90%;
	}

div.right19 {
	float: right;
	width: 19%;
	text-align: right;
	font-size: 100%;
	}



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

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; 
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #2F2052; 
   font-size: 1.5em; 
   text-align: left; 
   padding-left: 0em;
   padding-bottom: 1px;
   border-bottom: 1px solid white; 
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #2F2052; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #2F2052; 
   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;     line-height:1.4em;
   padding: 0;
}
blockquote {
	font-size: 1em;
	margin: 1em 2em;
	line-height:1.4em;
	padding: 0.8em 1em 0.2em 1.2em;
	background: url(uploads/images/bg-quote-left.gif) no-repeat 0 0;
 	font-style: italic;
 	font-weight: bold;
  }
blockquote p {
	background: url(uploads/images/bg-quote-right.gif) no-repeat right bottom;
   }

pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
   font-weight: bold;
}
em, i {
   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-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 1em;
}

pre {
   border: 1px solid #000; 
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%; 
}

/* 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 ol li, 
div#main ol li ol li {
   margin: 0 0 0.25em 3em;
}

div#main ul li {
   margin: 0 0 0.25em 3em;
   list-style-image:url(uploads/images/bullet_filled.gif);
}

div#main ul li ul li {
	margin: 0 0 0.25em 3em;
	list-style-image:url(uploads/images/bullet_open.gif);
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

.imgalignleft {
	float:	left;
	margin-right: 15px;
	border: 0;
	border: 0px solid #a0d900;
}

.imgalignright {
	float:	right;
	margin-left: 15px;
	border: 0;
	border: 0px solid #a0d900;
}

div.blockalignleft {
	float:	left;
	width: 49%;
}

div.blockalignright {
	float:	right;
	width: 49%;
}

div#content h3.kopgroenekleur,
div#content h4.kopgroenekleur,
div#content h5.kopgroenekleur, 
div#content h6.kopgroenekleur,
.kopgroenekleur {
	color: #a0d900;
}

div#main table {
	display:block;
}

/* End of '_SKH: Layout: Top menu + 2 columns' */

