/* Start of CMSMS style sheet 'PX - stijl' */
/*****************
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: 69.01%;
   line-height: 1.4em;
   background-color: #26328c;
   color: #333;
}

/*
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;
   font-weight: bold;
   color: #26328c; 
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
}

/*****************
basic layout 
*****************/
/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   width: 980px; /* IE wont understand these, so we will use javascript magick */
   background: #fff url(images/bg.jpg) repeat-y left top;
}


div#content {
}

div#main {
   margin-left: 242px; 
   margin-right: 8px; /* and some air on the right */
   margin-top: 7px;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 236px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

div#klanten-over {
   float: right; 
   width: 201px; 
   background: transparent url(images/rechts.png) no-repeat left top; 
   height: 331px; 
   margin-left: 45px; 
   padding: 10px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background: transparent;
   width: 980px;
   margin: 0 auto;
   height: 178px;
   background: transparent url(images/pagewrap_02.jpg) no-repeat left bottom;
   padding-top: 80px;
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: right; /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

div#product_links {
   background-color: white;
   text-align: center;
   font-size: 80%;
   padding: 10px;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* 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, h1 {
   font-size: 16px;
   line-height: 1.5em;
   margin: 0 0 10px 0;
   font-family: Gill Sans MT;
   color: #f36a21;
   text-transform: uppercase;
   font-weight: normal;
}
div#content h2, h2 {
   color: #f36a21; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h3, h3 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h4, h4 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h5 {
   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;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* END TEXT */

/* LISTS */

div#klanten-over span {
background: url(images/icoon.png) no-repeat left top;
padding: 0 0 0 40px;
display: block;
clear: both;
margin: 0 0 20px 0;
}

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 */

input[type=submit] {
  background: #26328c;
  border: 1px solid #fff;
  text-transform: lowercase;
  color: #fff;
  padding: 3px;
  font-size: 10px;
}
/* End of 'PX - stijl' */

