/*****************
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
*/
/* 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: #255790; /*#18507C*/
   outline:none;
}

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


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #ebf1f5;
   color: #0c3a6d;  /*#385C72*/
}



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

/* center wrapper, min max width */
div#pagewrapper {
   border: 0;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 80em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   background: #fff url(../images/hpe/shadow_l.png) repeat-y left;
   color: #333;
}

div#pagewrapper_r {
   background: transparent url(../images/hpe/shadow_r.png) repeat-y right;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   background: #f2f2f2 url(../images/hpe/header_t.png) repeat-x top;
}

div#header_l {
   background: transparent url(../images/hpe/header_t_l.png) no-repeat top left;           
}

div#header_r {
   background: transparent url(../images/hpe/header_t_r.png) no-repeat top right;           
   height: 128px;    /* adjust according your image size */
}

div#header h1 {
   padding-top:25px;
   padding-left:30px;
}

div#header h1 a {
/* you can set your own image here */
   display: block;
   width:400px;
   height:90px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

* html div#header h1 a {
   filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true sizingMethod=scale src='images/hpe/logo.png');
}

#header[id] h1 a{
   background: transparent url(../images/hpe/logo.png) no-repeat; 
}

div#header h1 a:hover {
   background-color: transparent;
   text-decoration:none;
   cursor:pointer;
}

div#header p {
   position:relative;
   display:inline;
   top:-15px;
   left:200px;
}

/* position for the search box */
div#search {
   float: right;
   width: 400px;    /* enough width for the search input box */
   text-align: right;
   padding: 0;
   margin: -10px 21px 0 0;
}

#search a, #search a:hover {
background:transparent;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0;
   font-size: 90%;
   margin: 0 21px;
display:block;
height:30px;
   border-bottom: 1px solid #ccc;
   background-color:#f7f7f7;
}

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

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


div#main {
   width:43%;
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 27%; /* and some air on the right */
}

div#mainwide {
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 4%; /* and some air on the right */
}


div#right {
   float:right;
   width:21%;
   display: inline;  /* FIX IE double margin bug */
   border-left: 1px solid #ccc;
   margin-right:32px;
   padding:0 0 1em 1em;
}

div.rightlist {
   margin: 0 0 1em 0;
   padding-bottom:1em;
   border-bottom: 1px solid #ccc;
}
div.rightlist ul {
   margin-left:1.4em;
}
div.rightlist ul li {
   margin-bottom:.5em;
}
div.rightlist ul li a, div.rightlist ul li a:visited {
   text-decoration:none;
}
div.rightlist dt {
   font-size:9px;
   color:#aaa;
}
div.rightlist dd {
   margin:-1.1em 0 .6em 3.5em;
   line-height:1.2em;
}
div.rightlist dd a, div.rightlist dd a:visited {
   text-decoration:none;
   display:block;
   word-wrap:break-word;
   white-space:pre-wrap;
}

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


div.box_tl {
   background: transparent url(../images/hpe/box_tl.png) no-repeat top left;
   height:27px;
   color: #fff;
   padding-top:6px;
   padding-left:12px;
   font-weight:bold;
}
div.box_tr {
   background: transparent url(../images/hpe/box_tr.png) no-repeat top right;
}
div.box_bl {
   background: transparent url(../images/hpe/box_bl.png) no-repeat bottom left;
   padding-bottom:1em;
}
div.box_br {
   background: transparent url(../images/hpe/box_br.png) no-repeat bottom right;
   margin-bottom:1.5em;
}


div#login, div#zoeken {
   margin:0 1.2em;
   font-size:10px;
}

div#login input, div#zoeken input {
   margin-bottom:.5em;
   font-family:verdana;
   font-size:12px;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #24568f;
   background: #f2f2f2 url(../images/hpe/footer_b.png) repeat-x bottom;
}

div#footer_l {
   background: transparent url(../images/hpe/footer_bl.png) no-repeat bottom left;           
}

div#footer_r {
   background: transparent url(../images/hpe/footer_br.png) no-repeat bottom right;           
   height: 75px;    /* adjust according your image size */
}

div#footer p {
   font-size: 0.8em;
   text-align: center;  /* centered text */
   padding-top: 3em;       /* some air for footer */
   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;
   padding: 0;
   border-bottom: 1px solid #ccc;
   margin: 1em 0;
}

/* relational links under content */
div.left49 {
  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;
}

table#newsheader {
   /*float:left;
   margin-left: 0;
   margin-right: 0;*/
   width:98%;
   border-bottom: 1px solid #ccc;
   padding-bottom:1.5em;
   margin-bottom:1.5em;
}


td.newsleft {
   width:50%;
   padding-right:4%;
   padding-bottom:1.5em;
}

td.newsright {
   width:50%;
   border-left:1px dashed #ccc;
   padding-left:4%;
   padding-bottom:1.5em;
}

table#newsheader div.newsdate {
   font-weight:bold;
   margin: 1.5em 0 .2em 0;
}

table#newsheader h4 a {
   text-decoration:none;
   display:block;
}

table#newsheader div.newslink {
   margin-top: -1em;
}


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

}

/* HEADINGS */

div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

div#content h2 {
	color: #24568f; 
	font-size: 1.6em; 
	line-height: 1.2em; 
	padding: 0;
	margin: 0 0 0.5em 0;
/*   white-space:pre-wrap; */
   overflow:hidden;
}

div#content h3 {
   color: #24568f; 
   font-size: 1.4em;
   line-height: 1.2em; 
   margin: 0 0 0.5em 0;
}

div#content h4 {
   color: #24568f; 
   font-size: 1.2em;
   line-height: 1.1em; 
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #24568f; 
   font-size: 1.1em;
   line-height: .8em; 
   margin: 0 0 0.25em 0;
}
h6 {
   color: #24568f; 
   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;
}
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 {
   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%;


}

.subtekst {
   font-size:9px;
}

/* Separating the divs on the template explanation page, with some bottom-border */
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 dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

/* END LISTS */


/* IMAGES */

img.foto_rand_rechts {
   border: 1px solid #24568f;
   float: right;
   margin: 3px 0 3px 12px;
}

img.foto_rand_links {
   border: 1px solid #24568f;
   float: left;
   margin: 3px 12px 3px 0;
}

img.plaatje_rechts {
   border:0;
   float: right;
   margin-left: 12px;
}

img.plaatje_links {
   border:0;
   float: left;
   margin-right: 12px;
}


/* END IMAGES */


/*  FORMS  */


.form1 div{
   padding-bottom:5px;
   line-height: 1.2em;
}

.form1 label {
display:inline-block;
   width: 140px;
}

.form2 {
   line-height: 1.2em;
}

.form2 .pages {
   text-align:right;
}

.form2 div {
   margin-top:3px;
}

.form2 .labelbreed {
   margin-top:16px;
}

.form2 .labelbreed label {
   display:block;
   width: 100%;
}

.form2 .labelbreed div {
   margin-top:3px;
}

.form2 .labelbreed div input {
}

.form2 .labelbreed div label {
   display:inline;
}

.form2>div>label {
   display:inline-block;
   width: 140px;
}

.form2 .inline input{
   display:inline-block;
   float:left;
   margin-top:-20px;
   margin-left:140px;
}

div.submit{
   margin:12px;
}

div.error_message, div.fb_invalid{
  color:#D00;
  font-weight:bold;
}

div#knop {
   width:400px;
   height:100px;
}

div#knop a {
   display:block;
   width:400px;
   height:100px;
   background: #fff url(../uploads/images/Projecten/enquete.jpg) no-repeat top left;
   text-indent:-1000px;
}
div#knop a:hover {
   background-position: bottom left;
}

