/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.player {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}

.player iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.truncate {
  max-width: 470px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* ALD colors */
/* Social colors */
/*********************
MEDIA QUERIES
*********************/
/*********************
SHOW & HIDE
*********************/
/*********************
GRID MIXINS
*********************/
/*
USAGE: @include onecol;
*/
/*********************
OPACITY
*********************/
/*********************
TYPOGRAPHY
*********************/
@font-face {
  font-family: 'ClarendonTextProRegular';
  src: url("../fonts/clarendon_text_pro-webfont.eot");
  src: url("../fonts/clarendon_text_pro-webfont.woff") format("woff"), url("../clarendon_text_pro-webfont.ttf") format("truetype"), url("../clarendon_text_pro-webfont.svg#webfontCaXcXckp") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ecoicons';
  src: url("../fonts/ecoicons.eot");
  src: url("../fonts/ecoicons.eot?#iefix") format("embedded-opentype"), url("../fonts/ecoicons.woff") format("woff"), url("../fonts/ecoicons.ttf") format("truetype"), url("../fonts/ecoicons.svg#ecoicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'function_prolight';
  src: url("../fonts/functionpro-light-webfont.eot");
  src: url("../fonts/functionpro-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/functionpro-light-webfont.woff") format("woff"), url("../fonts/functionpro-light-webfont.ttf") format("truetype"), url("../fonts/functionpro-light-webfont.svg#function_prolight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'function_probook';
  src: url("../fonts/functionpro-book-webfont.eot");
  src: url("../fonts/functionpro-book-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/functionpro-book-webfont.woff") format("woff"), url("../fonts/functionpro-book-webfont.ttf") format("truetype"), url("../fonts/functionpro-book-webfont.svg#function_probook") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

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

.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
  border-radius: 4px;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
BUTTONS
*********************/
.button, .lt-ie9 .searchfilter .activefilters li:last-of-type a, .button:visited, .lt-ie9 .searchfilter .activefilters li:last-of-type a:visited {
  font-family: Helvetica, Arial, sans-serif;
  border: 0;
  padding: 4px 20px 5px 20px;
  color: white;
  display: inline-block;
  font-size: 18px;
  font-family: "function_prolight";
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  line-height: 21px;
  background-color: #0073b6;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button:hover, .lt-ie9 .searchfilter .activefilters li:last-of-type a:hover, .button:focus, .lt-ie9 .searchfilter .activefilters li:last-of-type a:focus, .button:visited:hover, .lt-ie9 .searchfilter .activefilters li:last-of-type a:visited:hover, .button:visited:focus, .lt-ie9 .searchfilter .activefilters li:last-of-type a:visited:focus {
  color: white;
  background-color: #42a3d0;
  text-decoration: none;
}

.button:active, .lt-ie9 .searchfilter .activefilters li:last-of-type a:active, .button:visited:active, .lt-ie9 .searchfilter .activefilters li:last-of-type a:visited:active {
  color: white;
  background-color: #42a3d0;
  text-decoration: none;
}

.button-sec, .button-sec:visited {
  padding: 5px 20px 5px 35px;
  color: black;
  border-top: 1px solid #ffe899;
  border-bottom: 1px solid #ffd949;
  box-shadow: 0 0 0 1px #e5f1f8;
  background: url(../images/button-arrow.png) no-repeat 10px center #e5f1f8;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button-sec:hover, .button-sec:focus, .button-sec:visited:hover, .button-sec:visited:focus {
  color: white;
  box-shadow: 0 0 0 1px black;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #333333;
  background-color: black;
}

.button-sec:active, .button-sec:visited:active {
  color: white;
  box-shadow: 0 0 0 1px #606060;
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #939393;
  background-color: #606060;
}

.button-back {
  background: url(../images/back.png) no-repeat left center;
}

.button-subscribe {
  padding: 4px 80px 5px 80px;
  background: transparent;
  border: 1px solid white;
}

.onecol {
  width: 5.801104972%;
}

.twocol {
  width: 14.364640883%;
}

.threecol {
  width: 22.928176794%;
}

.fourcol {
  width: 31.491712705%;
}

.fivecol {
  width: 40.055248616%;
}

.sixcol {
  width: 48.618784527%;
}

.sevencol {
  width: 57.182320438000005%;
}

.eightcol {
  width: 65.74585634900001%;
}

.ninecol {
  width: 74.30939226%;
}

.tencol {
  width: 82.87292817100001%;
}

.elevencol {
  width: 91.436464082%;
}

.twelvecol {
  width: 99.999999993%;
}

.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol {
  position: relative;
  float: left;
  margin-left: 2.762430939%;
}

.first {
  margin-left: 0;
}

.last {
  float: right;
}

/******************************************************************
Site Name: 
Author: 

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to 
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection. 

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */
}

.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}

.menu ul li {
  /*
      plan your menus and drop-downs wisely.
      */
}

.menu ul li a {
  /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */
}

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */
}

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-size: 15px;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  max-width: 1140px;
}

/*********************
HEADER STYLES
*********************/
.header #inner-header {
  height: 90px;
}

#inner-header {
  height: auto;
}

#mobile-triggers {
  display: none;
}

.mobile-menu {
  display: none;
}

.header-search {
  position: relative;
  display: block;
  text-align: right;
  margin-left: 20px;
  width: 16%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-search {
    margin-left: 0;
  }
}

.header-search input[type="text"] {
  margin: 20px 0 10px 0;
  padding: 7px 30px 5px 25px;
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 13px;
  font-family: "function_prolight";
  background: url(../images/vergrootglas.png) no-repeat 4% center;
  outline: 0;
}

.header-search input[type="submit"] {
  position: absolute;
  top: 14px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  text-indent: -9999px;
  background: transparent;
}

/*********************
NAVIGATION STYLES
*********************/
.main-nav {
  margin-top: 9px;
  display: block;
  float: left;
  clear: both;
  width: 100%;
  border-top: 1px solid #e3e4e9;
  border-bottom: 1px solid #e3e4e9;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}

.main-nav ul {
  display: block;
  margin: 0;
  float: left;
  width: 100%;
  /*
        plan your menus and drop-downs wisely.
        */
}

.main-nav ul li.current-menu-item {
  background: #0073b6;
}

.main-nav ul li.current-menu-item a {
  color: white;
}

.main-nav ul li {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 16.66666666666%;
  border-left: 1px solid #e3e4e9;
  float: left;
}

.main-nav ul li:hover, .main-nav ul li:active {
  background: #0073b6;
  color: white;
}

.main-nav ul li:hover > a, .main-nav ul li:active > a {
  color: white;
}

.main-nav ul li a {
  display: block;
  padding: 5px 10px;
  color: #0073b6;
  /*
                you can use hover styles here even though this size
                has the possibility of being a mobile device.
                */
}

.main-nav ul li a:hover, .main-nav ul li a:active {
  color: white;
}

.main-nav ul li#menu-item-15 > a {
  cursor: default;
}

.main-nav ul li:last-child {
  border-right: 1px solid #e3e4e9;
}

.main-nav ul li.menu-item-has-children {
  /* showing sub-menus */
}

.main-nav ul li.menu-item-has-children:hover ul.sub-menu {
  top: auto;
  display: block;
}

.main-nav ul ul.sub-menu,
.main-nav ul ul.children {
  margin-top: 0;
  border: 0px solid #ccc;
  border-top: 0;
  position: absolute;
  display: none;
  z-index: 8999;
  max-width: 202px;
  /* highlight sub-menu current page */
}

.main-nav ul ul.sub-menu li,
.main-nav ul ul.children li {
  float: left;
  background: white;
  width: 100%;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  /*
                if you need to go deeper, go nuts
                just remember deeper menus suck
                for usability. k, bai.
                */
}

.main-nav ul ul.sub-menu li:hover,
.main-nav ul ul.children li:hover {
  border-left: 1px solid #0073b6;
  border-right: 1px solid #0073b6;
}

.main-nav ul ul.sub-menu li a,
.main-nav ul ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.main-nav ul ul.sub-menu li a:hover, .main-nav ul ul.sub-menu li a:focus,
.main-nav ul ul.children li a:hover,
.main-nav ul ul.children li a:focus {
  color: white;
  background-color: #0073b6;
}

.main-nav ul ul.sub-menu li:hover .menu-item-has-children ul.sub-menu,
.main-nav ul ul.children li:hover .menu-item-has-children ul.sub-menu {
  top: auto;
  display: block;
  width: 12.2%;
}

.main-nav ul ul.sub-menu li.current-menu-item,
.main-nav ul ul.sub-menu li.current_page_item,
.main-nav ul ul.sub-menu li.current-page-ancestor,
.main-nav ul ul.children li.current-menu-item,
.main-nav ul ul.children li.current_page_item,
.main-nav ul ul.children li.current-page-ancestor {
  background: #0073b6;
}

/* end .nav */
#mobile-menu {
  display: none;
}

#search form {
  display: block;
}

#search form input[type=text],
#search form input[type=email],
#search form input[type=url] {
  width: 90%;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widgettitle {
  margin-bottom: 0.75em;
}

.widget {
  margin: 0 0 20px 0;
}

.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}

.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}

/*********************
FOOTER STYLES
*********************/
#footer .widget .textwidget p {
  font-size: 13px;
  line-height: 1.6em;
}

/***********************
APPLICATION FORM STYLES
***********************/
#wprf-application-form .wprf-field {
  clear: right;
  width: 48%;
}

#wprf-application-form .wprf-submit {
  clear: both;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

#wprf-application-form .wprf-field:nth-of-type(1) {
  width: 48%;
  float: left;
}

#wprf-application-form .wprf-field:nth-of-type(2) {
  width: 48%;
  float: right;
  clear: right;
}

#wprf-application-form .wprf-field:nth-of-type(2) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(3) {
  width: 48%;
  float: right;
  clear: right;
}

#wprf-application-form .wprf-field:nth-of-type(3) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(4) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(4) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(5) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(5) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(6) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(6) input {
  width: 32.6%;
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #wprf-application-form .wprf-field:nth-of-type(6) input {
    width: 32.3%;
  }
}

#wprf-application-form .wprf-field:nth-of-type(7) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(7) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(8) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(8) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(9) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(9) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(10) {
  width: 48%;
  float: left;
  clear: left;
}

#wprf-application-form .wprf-field:nth-of-type(10) input {
  width: 100%;
}

#wprf-application-form .wprf-field:nth-of-type(11) {
  width: 48%;
  float: left;
  clear: left;
  margin-bottom: 50px;
}

#wprf-application-form .wprf-field:nth-of-type(11) input {
  width: 100%;
}

/***********************
HOME STYLES
***********************/
#block-five {
  min-height: 650px;
  background-color: #e5f1f8;
  position: relative;
}

#block-five h1 {
  margin-top: 0;
  padding-top: 40px;
}

#block-five ul {
  position: relative;
}

#block-five li {
  width: 20%;
}

#block-five li:nth-of-type(1) {
  float: left;
  margin-right: 5%;
  width: 20%;
}

#block-five li:nth-of-type(2) {
  float: left;
  margin-left: 1.666666%;
  margin-right: 3.333333%;
  width: 20%;
}

#block-five li:nth-of-type(4) {
  float: right;
  margin-left: 3.333333%;
  margin-right: 1.666666%;
  display: block;
}

#block-five li:nth-of-type(3) {
  float: right;
  margin-left: 5%;
  display: block;
}

#block-five header {
  background-color: #e5f1f8;
}

#block-five .entry-content {
  display: none;
  border: 3px solid #42a3d0;
  position: absolute;
  left: 0px;
  margin-top: 20px;
  width: 100%;
  background-color: white;
}

#block-five .entry-content:hover, #block-five .entry-content:active {
  border: 3px solid #42a3d0;
}

#block-five .entry-content .colleague-excerpt {
  padding: 10px;
}

#block-five .colleague-tags {
  border-top: 3px solid #d8d9db;
  background: url(../images/icon.png) no-repeat 5px 5px;
  background-size: 46px;
  min-height: 55px;
  padding: 10px 10px 10px 60px;
}

#block-five .entry-thumbnail img {
  width: 100%;
  height: auto;
}

#block-five .entry-thumbnail:hover, #block-five .entry-thumbnail:active {
  border: 3px solid #42a3d0;
}

#block-five .downarrow {
  height: 10px;
  margin-top: -1px;
  background: url(../images/downarrow.png) no-repeat center;
  display: none;
}

#block-five .entry-thumbnail:hover + .entry-content + .downarrow {
  display: block;
}

#block-five .entry-thumbnail:hover + .entry-content {
  display: block;
}

#block-five .entry-thumbnail:hover + .downarrow {
  display: block;
}

#block-five .wrap {
  z-index: 10;
  background: #e5f1f8;
  position: relative;
}

#block-five .greyline {
  height: 80px;
}

#block-search-mobile {
  display: none;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
.showtablet {
  display: none;
}

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
.lte-ie10 .og-close, .lt-ie9 .og-close {
  background: url("../images/ogclose.png") no-repeat transparent;
  color: transparent;
}

.lte-ie10 .og-close:before, .lte-ie10 .og-close:after, .lt-ie9 .og-close:before, .lt-ie9 .og-close:after {
  display: none !important;
}

.lte-ie10 #block-search form input[type="submit"], .lt-ie9 #block-search form input[type="submit"] {
  background-size: 57px !important;
}

.lte-ie10 .header, .lt-ie9 .header {
  z-index: 99999;
}

.lte-ie10 .player iframe, .lt-ie9 .player iframe {
  z-index: 2;
}

.lte-ie10 .showmore2, .lt-ie9 .showmore2 {
  background-size: 30px;
  padding-right: 22px;
}

.lte-ie10 .og-fullimg img, .lt-ie9 .og-fullimg img {
  height: auto;
  max-width: 60%;
  max-height: none;
}

.lt-ie9 {
  /*Searchfilter archive vacancy*/
  /*Archive*/
}

.lt-ie9 #banner_ie8 {
  background-size: contain;
}

.lt-ie9 a {
  text-decoration: none !important;
}

.lt-ie9 .og-expander {
  display: none !important;
  opacity: 0;
  visibility: hidden !important;
}

.lt-ie9 .og-grid li a span.text-content {
  display: none;
}

.lt-ie9 body.home #block-one .video-banner {
  display: none;
}

.lt-ie9 .greyline, .lt-ie9 .greyline1, .lt-ie9 .greyline2, .lt-ie9 .greyline3, .lt-ie9 .greyline4, .lt-ie9 .greyline5, .lt-ie9 .greyline6, .lt-ie9 .greyline7, .lt-ie9 .greyline8 {
  display: none;
}

.lt-ie9 #logo {
  background: url("../images/logo.png") no-repeat scroll center center transparent;
  display: block;
  width: 233px;
  height: 65px;
  float: left;
}

.lt-ie9 nav.menu-main-navigation-container {
  margin: 0;
}

.lt-ie9 nav.menu-main-navigation-container .main-nav ul li a {
  text-decoration: none;
}

.lt-ie9 .showmore2 h5 a {
  color: #0073b6;
  text-transform: uppercase;
}

.lt-ie9 .language-flags {
  float: right;
  position: relative;
}

.lt-ie9 .language-flags .flag1 {
  background: url("../images/uk.png") no-repeat center center transparent;
  float: right;
  height: 15px;
  margin-right: 5px;
  margin-top: 40px;
  width: 22px;
}

.lt-ie9 .language-flags .flag2 {
  background: url("../images/nederlands.png") no-repeat center center transparent;
  float: right;
  height: 15px;
  margin-right: 20px;
  margin-top: 40px;
  width: 22px;
}

.lt-ie9 #block-search {
  margin-top: 10px;
}

.lt-ie9 footer#footer #inner-footer h1 {
  text-align: center;
}

.lt-ie9 footer#footer #bottom-nav {
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  text-align: center;
  width: 80%;
}

.lt-ie9 footer#footer #bottom-nav span {
  color: #606060;
  float: left;
  margin-right: 3%;
  padding-top: 13px;
}

.lt-ie9 footer#footer #bottom-nav .menu li {
  float: left;
  margin-right: 3%;
}

.lt-ie9 footer#footer #bottom-nav .menu li a {
  color: #606060;
  text-decoration: none;
  font-size: 12px;
}

.lt-ie9 header.header {
  top: 0;
  overflow: hidden;
}

.lt-ie9 .banner, .lt-ie9 .banner1, .lt-ie9 .banner2, .lt-ie9 .banner3, .lt-ie9 .banner4, .lt-ie9 .banner5, .lt-ie9 .banner6, .lt-ie9 .banner7, .lt-ie9 .banner8 {
  margin-top: 0;
}

.lt-ie9 .searchfilter {
  margin-top: 20px;
  min-height: 230px;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  color: black;
  background-color: #e5f1f8;
  width: 100%;
}

.lt-ie9 .searchfilter a#openfilter {
  display: none;
}

.lt-ie9 .searchfilter fieldset {
  border: none;
  margin-right: 0;
  padding-right: 0;
}

.lt-ie9 .searchfilter form {
  padding-top: 45px;
  min-height: 170px;
}

.lt-ie9 .searchfilter input[type="text"] {
  width: 100%;
  height: 40px;
  border: white 1px solid;
  float: right;
  padding-left: 10px;
}

.lt-ie9 .searchfilter input[type="submit"] {
  float: left;
  min-width: 50px;
  font-family: Helvetica, Arial, sans-serif;
  border: 0;
  padding: 4px 10px 5px 10px;
  color: white;
  display: inline-block;
  font-size: 18px;
  font-family: "function_prolight";
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  line-height: 21px;
  background-color: #0073b6;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 50px;
  padding-left: 0;
  padding-top: 5px;
  border-radius: 0 5px 5px 0;
  border: white 1px solid;
  height: 40px;
}

.lt-ie9 .searchfilter input[type="submit"]:hover, .lt-ie9 .searchfilter input[type="submit"]:focus {
  color: white;
  background-color: #42a3d0;
  text-decoration: none;
}

.lt-ie9 .searchfilter input[type="submit"]:active {
  color: white;
  background-color: #42a3d0;
  text-decoration: none;
}

.lt-ie9 .searchfilter span {
  float: left;
  height: 39px;
  width: 31.3%;
  margin-bottom: 20px;
}

.lt-ie9 .searchfilter span .placeholder {
  width: 100%;
}

.lt-ie9 .searchfilter .searchfilter-mobile span:nth-of-type(1), .lt-ie9 .searchfilter .searchfilter-mobile span:nth-of-type(3), .lt-ie9 .searchfilter .searchfilter-mobile span:nth-of-type(4) {
  margin-right: 3%;
}

.lt-ie9 .searchfilter span.filter-searchphrase {
  float: left;
  width: 31.3%;
  margin-right: 3%;
}

.lt-ie9 .searchfilter span.filter-searchphrase :-ms-input-placeholder {
  color: #606060 !important;
  width: 100%;
}

.lt-ie9 .searchfilter input[type="button"] {
  min-width: 170px;
  width: 31.3%;
  height: 40px;
  float: right;
  background: #0073b6 url(../images/vergrootglas.png) no-repeat 60% center;
  padding-right: 60px;
  padding-top: 6px;
  text-align: center;
  text-transform: uppercase;
}

.lt-ie9 .searchfilter input[type="button"]:hover {
  background-color: #42a3d0;
}

.lt-ie9 .searchfilter .ms-parent {
  width: 100% !important;
}

.lt-ie9 .searchfilter .ms-choice {
  height: 39px;
  border-radius: 0;
  background: url(../images/arrow-down-small.png) no-repeat right center;
  background-position: 92% 15px;
  cursor: pointer;
  width: 100% !important;
}

.lt-ie9 .searchfilter .ms-choice > span {
  position: relative;
  text-align: left;
  padding: 7px 10px 10px 10px;
  width: 100%;
}

.lt-ie9 .searchfilter .ms-drop {
  width: 100% !important;
  border-radius: 0;
  border: none;
  margin-top: 2px;
}

.lt-ie9 .searchfilter .ms-drop ul {
  background: #e5f1f8;
  padding: 1px 0;
}

.lt-ie9 .searchfilter .ms-drop ul li {
  background: white;
  width: 100%;
  margin-bottom: 2px;
  height: 40px;
  padding: 10px;
}

.lt-ie9 .searchfilter .activefilters {
  float: left;
}

.lt-ie9 .searchfilter .activefilters .filtertext {
  color: #606060;
  padding-right: 20px;
}

.lt-ie9 .searchfilter .activefilters span {
  width: initial;
  height: initial;
}

.lt-ie9 .searchfilter .activefilters .filter-remove {
  padding: 0 20px 0 0;
  margin-right: 10px;
  color: #606060;
  text-decoration: none;
}

.lt-ie9 .searchfilter .activefilters .filter-remove:hover {
  text-decoration: line-through;
  background: url(../images/cross-filter.png) no-repeat center right;
}

.lt-ie9 .searchfilter .activefilters .filter-remove:first-of-type {
  padding-left: 0;
}

.lt-ie9 .searchfilter .activefilters li:last-of-type a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
}

.lt-ie9 body.archive .greylinewrap {
  background: none repeat scroll 0 0 white;
  margin-left: -15px;
  padding-left: 15px;
  position: relative;
  z-index: 10;
}

.lt-ie9 body.archive button.filter-searchresult {
  display: none;
}

.lt-ie9 body.archive #main {
  padding-top: 30px;
}

.lt-ie9 body.archive article.vacancy {
  float: left;
  width: 31.3%;
  margin-right: 3%;
  margin-bottom: 40px;
  padding: 0px 10px 10px 10px;
  border: 1px solid #e3e4e9;
}

@media only screen and (max-width: 767px) {
  .lt-ie9 body.archive article.vacancy {
    margin-bottom: 20px;
  }
}

.lt-ie9 body.archive article.vacancy section.article-content {
  margin-bottom: 15px;
  position: relative;
  min-height: 140px;
}

@media only screen and (max-width: 767px) {
  .lt-ie9 body.archive article.vacancy section.article-content {
    min-height: inherit;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .lt-ie9 body.archive article.vacancy {
    width: 100%;
    border: 1px solid #42a3d0;
  }
}

.lt-ie9 body.archive article.vacancy:nth-of-type(3n+3) {
  margin-right: 0;
}

.lt-ie9 body.archive article.vacancy:hover, .lt-ie9 body.archive article.vacancy:active {
  border: 3px solid #42a3d0;
}

.lt-ie9 body.archive article.vacancy a.button, .lt-ie9 body.archive article.vacancy .searchfilter .activefilters li:last-of-type a, .lt-ie9 .searchfilter .activefilters li:last-of-type body.archive article.vacancy a {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .lt-ie9 body.archive article.vacancy a.button, .lt-ie9 body.archive article.vacancy .searchfilter .activefilters li:last-of-type a, .lt-ie9 .searchfilter .activefilters li:last-of-type body.archive article.vacancy a {
    display: none;
  }
}

.lt-ie9 body.archive article.vacancy h2 {
  margin-bottom: 0;
  text-transform: none;
}

.lt-ie9 body.archive article.vacancy h2 a:hover {
  text-decoration: none;
}

.lt-ie9 body.archive article.vacancy h5 {
  margin: 0;
  color: black;
  text-transform: none;
}

.lt-ie9 body.archive article.vacancy .article-meta {
  margin-top: 10px;
  float: left;
  position: relative;
  margin-bottom: 10px;
}

.lt-ie9 body.archive article.vacancy .article-meta img {
  position: absolute;
  left: 0;
  top: 0;
}

.lt-ie9 body.archive article.vacancy .article-meta ul {
  margin-top: 0;
  margin-left: 25px;
}

.lt-ie9 body.archive article.vacancy .article-meta ul li {
  float: left;
  border-right: 1px solid #cccccc;
  padding-right: 5px;
  padding-left: 5px;
}

.lt-ie9 body.archive article.vacancy .article-meta ul li:last-of-type(3) {
  border-right: none;
}

/*# sourceMappingURL=style.css.map */