/* Start of CMSMS style sheet 'PK Standaard' */
/*****************
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:12px;
   color: #004488;
   /*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: #00a3e7; 
}

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

a:hover {
   text-decoration: underline;
   color: #00a3e7;
}

/*****************
basic layout 
*****************/
body {
   background-color: #ffffff;
   color: #333;
   margin: 0 0 1em;
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 979px; /* IE wont understand these, so we will use javascript magick */
   min-width: 979px;
   width: 979px;
   background-color: #ffffff;
   color: black;
}


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

div#header {
   height: 96px; /* adjust according your image size */
   width: 979px;
   display: block;
   background: #ffffff;           
}

div#header .logo a {
   background: url(uploads/images/site/pk_logo.png) no-repeat; 
   height: 96px;             /* adjust according your image size */
   width: 310px;
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
   float:left;
   display:block;
   margin-left:0;
}

div#header_image {
	margin:0px;
	padding:0px;
	height:196px;
	width:979px;
	display:block;
	border-bottom: 5px solid #aaaaaa;
}

div#header_homepage {
	margin:0px;
	padding:0px;
	height:382px;
	width:979px;
	display:block;
	border-bottom: 5px solid #aaaaaa;
}

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

div#main {
   margin-left: 336px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 0;
}


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

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 0;
   color: #004488;
  /* width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#sidebar_header {
   display:block; 
   width:307px; 
   height:20px; 
   background-color:#c7cee3; 
   border-bottom:4px solid #ffffff; 
   border-top:4px solid #ffffff;
}

div#sidebar_content {
   display:block; 
   width:247px; 
   padding:25px 30px 25px 30px; 
   background-color:#f2f2f7;
}

div#address_content {
   display:block; 
   width:247px; 
   padding:23px 30px 25px 30px; 
   background-color:#ebf6fd; 
}

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

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

div#column2 {
   width: 307px;
   color: #004488;
   margin-left: 336px;
}

div#newscolumn {
   float: right;
   width: 307px;
   display: inline;
   margin-right: 0;
   color: #004488;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #aaaaaa;
}

div#footer p {
   font-size: 11px;
   padding-top: 10px;      /* some air for footer */
   text-align: right; /* centered text */
   margin: 0px;
}

div#footer p a {
   color: #aaaaaa;   
   text-decoration: none;
}

div#footer p a:hover {
   color: #00a3e7; 
   text-decoration: underline;  
}

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

/* Forms */

label {
  width:60px;
  height:30px;
  display:block;
  float:left;
}

input[type="text"] {
  width:230px;
  border:0px;
  background-color:#eaeaea;
  height:20px;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size:12px;
}

textarea {
  width:230px;
  height:75px;
  border:0px;
  background-color:#eaeaea;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size:12px;
}

input[type="text"]:focus, textarea:focus {
  background-color:#ebf6fd;
}

.required {
  display:block;
  width:307px;
  padding-bottom:10px;
}

.submit {
  padding-left:60px;
}

/********************
CONTENT STYLING
*********************/
div#content {
   margin-top:23px;
}

/* HEADINGS */
div#content h1 {
   margin:0px 0 18px 0;
   font-size: 23px;  
}
div#content h2 {
   margin:20px 0 18px 0;
   font-size: 16px;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   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 {
   background: transparent url(/dmm/images/pk_quote_start.png) left top no-repeat;
}
blockquote div {
   padding: 0 32px;
   background: transparent url(/dmm/images/pk_quote_end.png) right bottom no-repeat;
   font-family: Georgia, "Times New Roman", Times, serif;
   font-style: italic;
   font-size: 13px;
}
.PK_quotesource {
   background: transparent url(/dmm/images/pk_quote_line.png) left top no-repeat;
   padding: 0 0 0 54px;
}
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;
}

/* 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;*/
   margin: 0 0 0 3em;
}

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

/* These are standard sIFR styles... do not modify */

.sIFR-flash {
	visibility: visible !important;
	margin: 0;
}

.sIFR-replaced {
	visibility: visible !important;
}

span.sIFR-alternate {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
}

/* Hide Adblock Object tab: the text should show up just fine, not poorly with a tab laid over it. */
.sIFR-flash + div[adblocktab=true] {
  display: none !important;
}

/* These "decoy" styles are used to hide the browser text before it is replaced... the negative-letter spacing in this case is used to make the browser text metrics match up with the sIFR text metrics since the sIFR text in this example is so much narrower... your own settings may vary... any weird sizing issues you may run into are usually fixed by tweaking these decoy styles */

.sIFR-hasFlash h1 {
	visibility: hidden;
}

.sIFR-hasFlash h2 {
	visibility: hidden;
	letter-spacing: -9px;
	font-size: 55px;
}

.sIFR-hasFlash h3 {
	visibility: hidden;
	letter-spacing: -6px;
	font-size: 25px;
}

.sIFR-hasFlash h4 {
	visibility: hidden;
	letter-spacing: -5px;
	font-size: 21px;
}

.sIFR-hasFlash h5#pullquote {
	letter-spacing: -4px;
	visibility: hidden;
	font-size: 24px;
}

/* End of 'PK Standaard' */

