/***************** initials *****************/
* {
  margin: 0;
  padding: 0;
}

body, table {
  text-align: left;
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  font-size: 11px;
  line-height: 1.3em;
}

div { font-size: 1em; }
img { border: 0; }

a, a:link a:active {
  text-decoration: underline;
  background-color: inherit;
  color: black;
}
a:visited {
  background-color: inherit;
  color: black;
}
a:hover {
  background-color: inherit;
  color: #626262;
}

.imgNoordWest { margin: 0px 8px 8px 0px}
.imgNoord { margin: 0px 8px 8px 8px}
.imgNoordOost { margin: 0px 0px 8px 8px }
.imgOost { margin: 8px 0px 8px 8px }
.imgZuidOost { margin: 8px 0px 0px 8px }
.imgZuid { margin: 8px 8px 0px 8px}
.imgZuidWest { margin: 8px 8px 0px 0px}
.imgWest { margin: 8px 8px 3px 0px}

/***************** basic layout *****************/
body {
  margin: 0;
  padding: 0;
  color: black;
  background: #fff url(uploads/images/site_images/body_background.png) repeat-y center top; /*was: #b1aa87*/
}
body.home { 
  background: #fff url(uploads/images/site_images/body_background_home.png) repeat-y center top; /*was: #889ba9*/ 
}

div#pagewrapper {
  max-width: 860px;
  min-width: 860px;
  min-height: 620px;
  /* now that width is set this centers wrapper */
  margin: 0 auto;
  color: black;
}

div#header {
  height: 100px;
  margin: 0;
  padding: 0;
  position: relative;
}

div#content {
  margin: 0px;
  padding: 0px;
  position: relative;
}
/* this gets all the outside calls that were used on the div#main before  */
div.back1 {
  /* this will give room for sidebar to be on the left side, make sure this number is bigger than sidebar width */
  margin-left: 128px;
  min-height: 590px;
}
div#main {
  padding: 1px 30px 0px 0px;
}
/* this is an IE6 hack, you may see these through out the CSS */
* html div.back1 {
  /* unlike other browser IE6 needs float:right and a width */
  float: right;
  width: 650px;
  /* and we take this out or it will stop at the bottom  */
  margin-left: 0%;
}
div#sidebar {
  /* set sidebar left. Change to right, float: right; instead, but you will need to change the margins. */
  float: left;
  /* sidebar width, if you change this change div.back and/or div.back1 margins */
  width: 200px;
  /* FIX IE double margin bug */
  display: inline;
  /* the 20px is on the bottom, insures space above footer if longer than content */
  margin: 0px 5px 5px 0px;
  padding: 0px;
}
div#sidebara { padding: 0; }
div#sidebarb { padding: 0; }
/* 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: 1.2em;
  line-height: 1em;
  margin: 0 0 0.2em 0;
}
div#content h2 {
  color: #626262;
  font-size: 1.5em;
  text-align: left;
  padding-bottom: 1px;
  /* set borders around header */
  border-bottom: 1px solid #626262;
  /* a larger than h1 line height */
  line-height: 1.5em;
  /* and some air under the border */
  margin: 0 0 0.5em 0;
}
div#content h3 {
  color: #626262;
  font-size: 1.3em;
  line-height: 1.3em;
  margin: 0 0 0.5em 0;
}
div#content h4 {
  color: #626262;
  font-size: 1.2em;
  line-height: 1.3em;
  margin: 0 0 0.25em 0;
}
div#content h5 {
  color: #626262;
  font-size: 1.1em;
  line-height: 1.3em;
  margin: 0 0 0.25em 0;
}
h6 {
  color: #626262;
  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;
  line-height: 1.4em;
  padding: 0;
}
blockquote {
  border-left: 10px solid #ddd;
  margin-left: 10px;
}
strong, b { font-weight: bold; }
em, i { 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;
}
/*************************user specific****************************/
div#footer {
  color: #000;
  text-align: left;
  font-size: 11px;
  font-weight: normal;
  width: 702px;
  margin: 0px auto;
  padding: 30px 0px 10px 100px;
  border-top: 2px solid #c8c3ab;
}
div#footer * {
  color: #000;
}
div#header-titel {
  position:absolute;
  left: 128px;
  top:78px;
  color:#000;
  font-size: 11px;
}
/*
div#floating-buttons {
  position:absolute;
  z-index:999;
  left: 452px;
  top: 255px;
}
div#floating-buttons.route-contact { display: none; }
div#floating-buttons a { margin: 0px 6px; }
*/
/* END LISTS */
/* Stylesheet: Layout: Left sidebar + 1 column Modified On 2024-06-05 17:09:20 */
#menuwrapper {
  padding-top: 20px;
  margin-left: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  letter-spacing:1px;
}

#primary-nav, #primary-nav ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  margin-left: 0px;
}

#primary-nav ul {
  /* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
  position: absolute;
  /* just a little bump down for second level ul */
  top: 0px;
  /* keeps the left side of this ul on the right side of the one it came out of */
  left: 100%;
  /* keeps it hidden till hover event */
  display: none;
}

#primary-nav ul ul {
  /* no bump down for third level ul */
  top: 0px;
}

#primary-nav li {
  /* keeps within it's container */
  position: relative;
  margin-top: 11px;
  background: #266d8b;
}

#primary-nav li:first-child {
  margin-top: 0px;
}


#primary-nav>li:nth-last-child(-n+3) {
  position: absolute;
  width: 160px;
  top: 240px;
  text-align: center;
}
#primary-nav>li:nth-last-child(3)  { left: 240px; }
#primary-nav>li:nth-last-child(2)  { left: 440px; }
#primary-nav>li:nth-last-child(1)  { left: 640px; }
body.route-contact #primary-nav>li:nth-last-child(-n+3) {
  visibility: hidden;
}

#primary-nav li li {
  width: auto;
  white-space: nowrap;
  margin-top: 0px;
  padding: 0px;
  background: #266d8b;
}

/* Styling the basic apperance of the menu "a" elements */
ul#primary-nav li a {
  font-weight: bold;
  color: white;
  padding: 4px 6px;
  display: block;
  text-decoration: none;
  background: none;
}
ul#primary-nav a span {
  /* makes it hold a shape */
  display: block;
  /* pushes text to right */
  padding-left: 0em;
}
ul#primary-nav li a:hover {
  background: #b1aa87;
  color: white;
}
ul#primary-nav li li a:hover {
  /* you can set your own image here, second level "a" */
  background:  #b1aa87;
  color: white;
}
ul#primary-nav li a.menuactive {
  /* black and bold to set it off from non active */
  color: white;
  font-weight: bold;
  background: #b1aa87;
}
ul#primary-nav li li a.menuactive {
  /* contrast color to image behind it, set below */
  color: white;
  /* not bold as text color and image behind it set it off from non active */
  font-weight: bold;
  text-decoration: none;
}
ul#primary-nav li ul a {
  /* insures alignment */
  text-align: left;
  margin: 0px;
  /* relative to it's container */
  position: relative;
  /* more padding to left than default */
  padding: 4px 6px;
  font-weight: bold;
  /* darker than first level "a" */
  color: white;
  /* removes any borders that may have been set in first level */
  border: none;
  /* removes image set in first level "a" */
  background: none;
}
ul#primary-nav li ul {
  /* very lite grey color, by now you should know what the rest mean */
  background: none;
  margin: 0px;
  padding: 0px;
  position: absolute;
  width: auto;
  height: auto;
  display: none;
  position: absolute;
  z-index: 999;
  /*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
  opacity: 0.95;
  /* CSS 3 */
}
/* Fixes IE7 bug */
#primary-nav li, #primary-nav li.menuparent {
  min-height: 1em;
}
/* Styling the basic apperance of the second level active page elements (shows what page in the menu is being displayed) */
#primary-nav li li.menuactive, #primary-nav li.menuactive.menuparenth li.menuactive {
  /* set your image here, dark grey image with white text set above*/
  background: #50617a; /*url(uploads/ngrey/darknav.png) repeat-x left center;*/
}
#primary-nav li.menuparent span {
  /* padding on left for image */
  padding-left: 0em;
  /* down arrow to note it has children, left side of text */
  /* background: url(uploads/ngrey/active.png) no-repeat left center; */
}
#primary-nav li.menuparent:hover li.menuparent span {
  /* remove left padding as image is on right side of text */
  padding-left: 0;
  /* right arrow to note it has children, right side of text */
  /* background: url(uploads/ngrey/parent.png) no-repeat right center; */
}
#primary-nav li.menuparenth li.menuparent span,
#primary-nav li.menuparenth li.menuparenth span {
  /* same as above but this is for IE6, gif image as it can't handle transparent png */
  padding-left: 0;
  /* background: url(uploads/ngrey/parent.gif) no-repeat right center; */
}
#primary-nav li.menuparenth span,
#primary-nav li.menuparent:hover span,
#primary-nav li.menuparent.menuactive span,
#primary-nav li.menuparent.menuactiveh span, {
  /* right arrow to note hover */
  /* background: url(uploads/ngrey/parent.png) no-repeat left center; */
}
#primary-nav li li span,
#primary-nav li.menuparent li span,
#primary-nav li.menuparent:hover li span,
#primary-nav li.menuparenth li span,
#primary-nav li.menuparenth li.menuparenth li span,
#primary-nav li.menuparent li.menuparent li span,
#primary-nav li.menuparent li.menuparent:hover li span  {
  /* removes any images set above unless it's a parent or active parent */
  background:  none;
  /* removes padding that is used for arrows */
  padding-left: 0px;
}
/* IE6 flicker fix */
#primary-nav li.menuh,
#primary-nav li.mnuparenth,
#primary-nav li.mnuactiveh {
  background: url(uploads/ngrey/libk.gif) no-repeat right top;
  color: #899092
}
#primary-nav li:hover li a {
  /* removes any images set above unless it's a parent or active parent */
  background:  none;
  color: #fff;
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
  display: none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
  display: block;
}
/* IE Hack, will cause the css to not validate */
#primary-nav li,
#primary-nav li.menuparenth {
  _float: left;
  _height: 1%;
}
#primary-nav li a {
  _height: 1%;
}
/* BIG NOTE: I didn't do anything to these 2, never tested */
#primary-nav li.sectionheader {
  border-left: 1px solid #006699;
  border-top: 1px solid #006699;
  font-size: 130%;
  font-weight: bold;
  padding: 1.5em 0 0.8em 0.5em;
  background-color: #fff;
  margin: 0;
  width: 100%;
}
/* separator */
#primary-nav li hr.separator {
  display: block;
  height: 0.5em;
  color: #abb0b6;
  background-color: #abb0b6;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #006699;
  border-right: 1px solid #006699;
}
/* Stylesheet: Navigation: CSSMenu - Vertical Modified On 2017-05-03 17:00:53 */
/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(images/cms/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(images/cms/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(images/cms/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2009-05-13 10:42:54 */
div#news {
/* margin for the entire div surrounding the news items */
	margin: 2em 0 1em 1em;
/* border set here */
	border: 1px solid #909799;
/* sets it off from surroundings */
	background: #f5f5f5;
}
div#news h2 {
	line-height: 2em;
/* you can set your own image here */
	background: url(uploads/ngrey/darknav.png) repeat-x left center;
	color: #f5f5f5;
	border: none
}
.NewsSummary {
/* padding for the news article summary */
	padding: 0.5em 0.5em 1em;
/* margin to the bottom of the news article summary */
	margin: 0 0.5em 1em 0.5em;
	border-bottom: 1px solid #ccc;
}
.NewsSummaryPostdate {
/* smaller than default text size */
	font-size: 90%;
/* bold to set it off from text */
	font-weight: bold;
}
.NewsSummaryLink {
/* bold to set it off from text */
	font-weight: bold;
/* little more room at top */
	padding-top: 0.2em;
}
.NewsSummaryCategory {
/* italic to set it off from text */
	font-style: italic;
	margin: 5px 0;
}
.NewsSummaryAuthor {
/* italic to set it off from text */
	font-style: italic;
	padding-bottom: 0.5em;
}
.NewsSummarySummary, .NewsSummaryContent {
/* larger than default text */
	line-height: 140%;
}
.NewsSummaryMorelink {
	padding-top: 0.5em;
}
#NewsPostDetailDate {
/* smaller text */
	font-size: 90%;
	margin-bottom: 5px;
/* bold to set it off from text */
	font-weight: bold;
}
#NewsPostDetailSummary {
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailCategory {
/* italic to set it off from text */
	font-style: italic;
	border-top: 1px solid #ccc;
	margin-top: 0.5em;
	padding: 0.2em 0;
}
#NewsPostDetailContent {
	margin-bottom: 15px;
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailAuthor {
	padding-bottom: 1.5em;
/* italic to set it off from text */
	font-style: italic;
}
/* more divs, left unstyled, just so you know the IDs of them */ 
#NewsPostDetailTitle {
}
#NewsPostDetailHorizRule {
}
#NewsPostDetailPrintLink {
}
#NewsPostDetailReturnLink {
}
/* Stylesheet: Module: News Modified On 2009-05-09 23:29:39 */
#footer ul {
/* some margin is set in the footer padding */
   margin: 0px;
/* calling a specific side, left in this case */
   margin-left: 5px;
   padding: 0px;
/* remove any default bullets, image used in li call */
   list-style: none;
}
#footer ul li {
/* remove any default bullets, image used for consistency */
   list-style: none;
/* float left to set first level li items across the top */
   float:left;
/* a little margin at top */
   margin: 5px 0px 0px;
/* padding all the way around */
   padding: 5px;
/* you can set your own image here, used for consistency */
   background: url(uploads/ngrey/dot.gif) no-repeat left 10px;
}
#footer ul li a {
/* this will make the "a" link a solid shape */
   display:block;
   margin: 2px 0px 4px;
   padding: 0px 5px 5px 5px;
}
/* set h3 to look like "a" */
#footer li h3 {
   font-weight:normal;
   font-size:100%;
   margin: 2px 0px 2px 0px;
   padding: 0px 5px 5px 5px;
}
/* set h3 to look like "a", less margin at this level */
#footer li li h3 {
   font-weight:normal;
   font-size:100%;
   margin: 0px;
   padding: 0px 5px 5px 5px;
}
#footer ul li li {
/* remove any default bullets, image used for consistency */
   list-style: none;
/* remove float so they line up under top li */
   float:none;
/* less margin/padding */
   margin: 0px;
   padding: 0px 0px 0px 5px;
/* you can set your own image here, used for consistency */
   background: url(uploads/ngrey/dot.gif) no-repeat left 3px;
}
/* fix for IE6 */
* html #footer ul li a {
   margin: 2px 0px 0px;
   padding: 0px 5px 5px 5px;
}
* html #footer ul li li a {
   margin: 0px 0px 0px;
   padding: 0px 5px 0px 5px;
}
/* End fix for IE6 */
#footer ul ul {
/* remove float so they line up under top li */
   float:none;
/* a little margin to offset it */
   margin: 0px 0px 0px 8px;
   padding: 0;
}
#footer ul ul ul {
/* remove float so they line up under li above it */
   float:none;
/* a little margin to offset it */
   margin: 0px 0px 0px 8px;
   padding: 0;
}
/* Stylesheet: Navigation: FatFootMenu Modified On 2009-05-09 23:47:45 */
