/* Start of CMSMS style sheet 'BvN: 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,Arial,Helvetica,sans-serif;
   font-size: 70.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
*/

#content a,
#content a:link 
#content a:active {
	text-decoration: underline;
   background-color: inherit;
	color: #805080;
}

#content a:visited {
	text-decoration: underline;
	background-color: #EDEBDF;
	color: #805080; 
}

#content a:hover {
	text-decoration: none;
	background-color: #D5CDD5;
	color: #805080;
}

/*****************
basic layout 
*****************/
body {
	background-color: #edebdf;
	color: #333;
	margin:0em; /* gives some air for the pagewrapper */
	background-image: url(images/cms/bg_body.gif);
	background-position: top center;
	background-repeat: repeat-y;
}

/* center wrapper, min max width */
div#pagewrapper {
	border: 0px solid black;
	margin: 0 auto;     /* this centers wrapper */
	width: 760px;
	background-color: #F0EFE6;
	color: #333;
}


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

div#header {
	height: 93px; /* adjust according your image size */
	background-image: url(uploads/images/strips/fotostrip01.jpg);
	background-position: center -0px;
	background-repeat: no-repeat;
	background-color: #805080;
	border-bottom: 5px solid #805080;
}

div#header h1 a {
	display: none;
	text-indent: ;  /* -999em this hides the text */
	text-decoration:none; /* old firefox would have shown underline for the link, this hides it */
	background-color: transparent;
	height: 93px; /* adjust according your image size */
}

#header #fotostrip {
	float: right;
}

div#picklanguage {
	float: right;
	margin: 1em 1em 0 0;
}
div#picklanguage a img,
div#picklanguage a:hover img {
	border:none;
}


div#search {
	text-align: left;
	padding: 0.25em;
	margin: 1em 0;
	background-color: #EDEBDF;
	border: 1px solid #fff;
}

div.breadcrumbs {
	padding: 1em;
	font-size: 90%; 
	margin: 0; 
	border-bottom: 3px solid #805080;
	background-color: #FFFFFF;
}

.breadcrumbs a{
	color: #805080;
}

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

 div#content {
   margin: 0 10px 10px 0;
}

div#main {
   margin: 1em 0 0 210px;
}

div#main50 {
   margin: 1em 0 0 400px;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 175px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0px;
}

div#sidebar50 {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 375px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0px;
}


/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 1em;
   width: 175px;
}
div#sidebar.purple{background-color:#ece5ec;}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #805281;
   background-color: #EDEBDF;
   border-top: 1px solid #FFF
}

div#footer p {
   font-size: 0.8em;
   padding: 0.5em;      /* some air for footer */
   text-align: left; /* 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: 0em;
	border-bottom: 1px solid #805281;
}

/* relational links under content */
div.left49 {
	float: left;
	width: 89%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 9%;
  text-align: right;
}

.halfwidthcolumn {
	display: block;
}
.floatleft {
	float: left;
	width: 46%;
	margin: 0 3% 0 0;
}

.floatright {
	margin: 0 0 0 50%;
!important
}


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

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #805080;
	font-size: 1.5em;
	text-align: left;
	padding-bottom: 1px;
   border-bottom: 1px solid #805080;
	line-height: 1.5em;
   margin: 0 0 0.5em 0;
}
div#content h3 {
	color: #805080;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #805080; 
   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;
}
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;
	color: #990000;
}
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 {
   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;
}

#sidebar ul {
   font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 2em;
}
#sidebar ul li {
	margin: 0 0 0.25em 0em;
	 }
	 
div#main .halfwidthcolumn ul, 
div#main .halfwidthcolumn ol {
	font-size: 1em;
	line-height: 1.4em;
	margin-top: 0pt;
	margin-right: 0pt;
	margin-bottom: 1.5em;
	margin-left: 0pt;
}
div#main .halfwidthcolumn ul, 
div#main .halfwidthcolumn ol, 
div#main .halfwidthcolumn ul li, 
div#main .halfwidthcolumn ol li {
	margin: 0 0 0 0.5em;
	padding: 0 0 0 0.5em;
}


/* END LISTS */


/* STYLES tbv TinyMCE */ 
.imgalignleft {
	float:	left;
	margin-right: 15px;
	border: 1px solid #a0d900;
}

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

.imgnonalign {
	float:	none;
	margin: 0;
	border: 1px solid #990000;
}


#main .metlijnen table,
#tinymce .metlijnen table {
	border: 1px solid #d8ebfe;
	border-collapse: collapse;
	width:100%;
}
#main .metlijnen td,
#tinymce .metlijnen td {
	padding: 5px 5px 5px 0;
	border-bottom: 1px solid #805080;
	text-align: left;
}
#main .metlijnen thead td,
#tinymce .metlijnen thead td {
	background-color: #E0E0D0;
	color: #4C4C4B;
	padding: 5px;
	text-align: left;
	border-bottom: 1px solid #805080;
	font-weight: bold;
}
#main .metlijnen caption,
#tinymce .metlijnen caption {
	background-color: #E0E0D0;
	color: #4C4C4B;
	padding: 5px;
	text-align: left;
	border-bottom: 1px solid #805080;
	font-weight: bold;
}
#main .metlijnen tbody tr,
#tinymce .metlijnen tbody tr {
	border-top: 1px solid #805080;
}

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

