/* Start of CMSMS style sheet 'WF template index' */
/* 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: Arial, Helvetica, sans-serif;
	font-size: .8em;
	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 {
        color: #0066bb;
	text-decoration: none;
	border-bottom:1px solid #99bbee;
}
a:visited {
/* keeps the underline */
	text-decoration: underline;
	background-color: inherit;
/* a different color is used for visited links */
	color: #0066bb;
}
a:hover {
color: #0066bb;
	text-decoration: none;
	border-bottom:1px solid #0066bb;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
/* default text color for entire site*/
	color: #666;
/* you can set your own image and background color here */
	background: #fff;
}

div#pagewrapper {
background: url(uploads/images/bg.jpg) no-repeat;
height: 600px;

/* min max width, IE wont understand these, so we will use java script magic in the <head> */
	width: 850px;
	margin: 0 auto;
}

.lang {
float: right;
margin: 5px 0px 0px 5px;
}

.lang a {
     border: none;}


.index {
font-size: 0.95em;
float: right;
margin: 5px 0px 0px 5px;
}

.index a {
     font-family: Trebuchet MS, Arial, sans serif;
     color: #fff;
     text-decoration: none;
     border: none;
padding-left: 10px;
}


.index a:hover {
     text-decoration: underline;
}

div#header {
	height: 120px;
	margin: 0px;
	padding: 0;
	background: transparent url(uploads/images/opaque.png) repeat;
position: relative;
}

.topbar {
position: absolute;
top: 75px;
left: 0px;
display: block;
height: 20px;
width: 840px;
background: transparent url(uploads/images/up.png) repeat;
padding: 0px 10px 0px 0px;
}

div#header h1 a {
        border: none;
        margin: 0px;
	background:  url(images/cms/logo.gif) no-repeat 17px 20px;
/* this will make the "a" link a solid shape */
display: block;
/* adjust according your image size */
	height: 120px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}


div#content {
/* some air above and under menu and content */
	margin: 0;
	padding: 0px;

}


div#main {
	padding: 20px 0px 10px 340px;

}

div#sidebar {

width: 180px;
	float: left;
     
 /*FIX IE double margin bug */
	display: inline;
	margin: 0px;
	padding: 32px 0px 0px 70px;
	
}

.illustratie {
	position: relative;
	float: right;
	}

div#footer {
        border-top: 1px solid #0066bb;
        clear: both;
	padding: 10px 0px 0px 0px;
        margin: 10px 0px 10px 0px;
	color: #0066bb;
font-size: 0.7em;
}

div#footer .footer-left {
float: left;
width: 500px;
}
div#footer .footer-right {
float: left;
width: 350px;
text-align: right;
padding: 0px;
margin: 0px;
}

div#footer .footer-right a {
border: none;
}

div#footer .footer-right img {
padding-left: 5px;
}


div#footer p {
	
	text-align: left;
	margin: 0;
}
div#footer p a {
/* footer link would be same color as default we want it same as footer text */
	color: #595959;
}
/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
	height: 1px;
	padding: 1em;
	border-bottom: 1px dotted black;
	margin: 1em;
}
/* relational links under content */
div.left49 {
/* combined percentages of left+right equaling 100%  might lead to rounding error on some browser */
	width: 70%;
}
div.right49 {
	float: right;
	width: 29%;
/* set right to keep text on right */
	text-align: right;
}
/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	font-size: 2em;
	line-height: 1em;
	margin: 0;
}
h2 {
        font-family: "Comic Sans MS", Arial;
	font-size: 1.4em;
	color : #cc1122;
	font-weight : normal;
	padding: 0px;
        line-height: 1.2em;
}
div#content h3 {
        font-family: "Trebuchet MS";
	font-size: 1.3em;
	color : #257dc0;
	font-weight : normal;
	margin-top: 10px;
line-height: 1.4em;

}
div#content h4 {
	color: #294B5F;
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#content h5 {
	color: #294B5F;
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
h6 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* TEXT */
p {
/* default p font size, this is set different in some other divs */
	font-size: 0.8em;
/* some air around p elements */
	margin: 0 0 10px 0;
	line-height: 1.6em;
	padding: 0;
color: #0066bb;
}
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;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* 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#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */
/* End of 'WF template index' */

