/* ------------------------------------------------------------------------------------------------- basisinstellingen en body */
/*
Kleuren:

*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html { 
  width: 100%;
  height: 100%;
  font-size: 100%;
}

body {
	display: block;
	font-family: 'Arial', sans-serif;
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto; 
  background: white;
	color: #666;/* basis tekstkleur */
	/*line-height: 1.6em;*/
	font-size: 12px;
	line-height: 135%;
	padding: 0;
	position: relative;
}
h1, h2, h3, h4, h5, h6 { color: #ff2a92; font-weight: 500;}

h1 							{font-size: 1.5em; margin: 1% 0 1% 0;}
h2 							{font-size: 1.4em; margin: 1% 0 1% 0; text-transform: uppercase}
h3, h4, h5, h6 	{font-size: 1.0em; margin: 1% 0 1% 0;}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

ul {
  list-style-position: inside;  
}

p {	
  margin: 1% 0 1% 0;
}

a {
	color: #212844;
	text-decoration: underline;
	cursor: pointer;
}

a:hover {
	color: #212844;
	text-decoration: underline;
	transition: all 0.5s ease;
}

img {
	max-width: 100%;
}

table { 
	display:table;
  width: 100%;
  overflow-x: auto;
}

tr {
}

th {
	padding-right: 1%;
	text-align: left;
}

td {
	padding-right: 1%;
	padding-top: 10px;
	text-align: left;
	vertical-align: top;
}


form {
}

label {
	display: block;
	float: left;
	width: 20%;
	min-width: 200px;
	margin-bottom: 10px;
	padding-top: 5px;
}

input, select {
	padding: 5px 10px;
	margin-bottom: 10px;
	width: 30%;
	min-width: 200px;
	font-size: 1em;
	border-radius: 0;
	box-shadow: none;
	border: 1px solid gray;
	/*-webkit-appearance: none;*/
}

input.checkbox {
	min-width: auto;
}

input[type="checkbox" i]{
	min-width: auto;
}
input[type="radio" i]{
	min-width: auto;
}
input[type="number" i]{
	text-align: center;
}
input.datum, input.geboortedatum {
	min-width: 1px;
	width: 100px;
	text-align: center;
}


select {
	width: auto;
	min-width: 1px;
	/* -webkit-appearance: none;*/
}

.narrowLabel {width: auto; min-width: 10px; margin-right: 3px;}
.narrow {width: 50px; min-width: 10px;}


textarea {
	padding: 5px 10px;
	margin-bottom: 10px;
	width: 70%;
	min-width: 200px;
	min-height: 100px;
	font-family: inherit;
	font-size: 1em;
	box-shadow: none;
	border: 1px solid gray;
	/* -webkit-appearance: none;*/
}

input:focus {
}

textarea:focus {
}

input.checkbox { 
  width:auto;
  min-width: 1px;
}

input[type="radio"] {
  width:auto;
  min-width: 1px;
}

.submit {
	display: inline-block;
  cursor: pointer;
  background-color: #119aa8;/* blauw/groen */
  color: white;
  text-decoration: none;
  border-radius: 0;
  padding: 10px 40px;
  border: none;
  width: auto;
  min-width: auto;
  text-transform: uppercase;
  font-weight: bold;
  /* -webkit-appearance: none; /* specifiek voor iPhone/iPad */
}

.submit:focus {
}

.submit:hover {
	background-color: #0d7480; /*#f0f0f0;*/
  text-decoration: none;
  /*outline: 2px solid #119aa8;*/
  color: #119aa8;
  color: white;
  font-weight: bold;
  transition: all 0.5s ease;
}

.submit:active {
  box-shadow: none; 
}


.threeColumns {
	-webkit-column-count: 3; /* Chrome, Safari, Opera */
	-moz-column-count: 3; /* Firefox */
	column-count: 3;
}


select {
}

textarea {
}

.formFieldExplanation {
  display: block;
  font-size: smaller;
  font-style:italic;  
  color: #272727;
}

.errorExplanation {
  display: block;
  font-size: smaller;
  color: red;
}

.fout {
	border: 2px solid red !important;
}

.input-fout {
  border: 1px solid red !important;
  padding-right: 20px;  
  background: url('images/inputfout.png') top right no-repeat;
}

.input-waarschuwing {
  border: 2px solid orange !important;
}

.rood {
	color: red;
}
.groen {
	color: green;
}
.oranje {
	color: orange;
}
.blauw {
  color: blue;
}
.lichtblauw {
  color: lightblue !important;	
}
.grijs {
  color: gray; 
}
.vet {
	font-weight: bold;
}
.cursief {
	font-style: italic;	
}

/* alignment left, right of centered */
.centered {
  text-align: center;  
  position: relative;
}

.left {
  text-align: left; 
}

.right {
  text-align: right; 
}

.nowrap, .noWrap {
	display: inline-block;
	white-space: nowrap;
}

.noDesktop {
  display: none !important; 
}
.tabletOnly, .mobileOnly {
	display: none;
}

.icon {
  height: 15px; 
  margin-left: 5px;
  margin-right: 5px;
}

.iconLarge {
  height: 25px;  
}

.clickable {
	cursor: pointer;
}



/* ------------------------------------------------------------------------------------------------------- wachten */
#wachten {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  width: 100%;
  height: 100%;
  background: transparent url('images/wachten_achtergrond.png');
}
#wachten img {
  position: absolute;
  top: 48%;
  left: 45%;
}


/* ------------------------------------------------------------------------------------------------- bericht */
#bericht {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  text-align: center;
  height: auto;
}
#bericht div {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: white;
  height: auto;
  min-height: 50px;
  padding: 5px 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}  

#bericht .negatief {
  color: red;
  font-weight: bold;
  background: white;
  border: 2px solid red;
  border-top: none;
  box-shadow: 5px 5px 10px gray;
}

#bericht .positief {
  color: green;
  font-weight: bold;
  background: white;
  border: 2px solid green;
  border-top: none;
}

#bericht .waarschuwend {
  color: orange;
  font-weight: bold;
  background: white;
  border: 2px solid orange;
  border-top: none;
}

span#bericht_sluiten {
  display: block;
  clear: both;
  width: 100%;
  text-align: right;
  text-decoration: underline;
  cursor: pointer;
}

/* ------------------------------------------------------------------------------------------------- popup */
div#popup {
	display: none;
	position: fixed;
	top: 10%;
	left: 25%;
  z-index: 999;
  width: 50%;
  height: auto;
  text-align: center;
  height: auto;
  border: 2px solid blue;
  background: white;
  color: blue;
  padding: 1%;
}


/* ---------------------------------------------------------------------------- slideshow ------------------ */
#slides_wrapper {
	margin-top: 0%;
	width: auto;	
}

#slides {
  display:inline-block;
  position: relative;
  width: 100%; 
}

.slidesjs-navigation {
  display: none; 
}

.slidesjs-pagination {
  display: none; 
}




/*-------------------------------------------------------------------------------------------------- header */
header {
  padding-top: 37px;
  padding-bottom: 20px;
}

#header_wrapper {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	margin-bottom: 1%;
	/*background: red;*/
}

#ingelogd_balk {
	display: block;
	clear: both;
	border: 2px solid orange;
	padding: 5px 5px 5px 5px;
	margin-bottom: 1%;
	text-align: right;
}
#ingelogd_balk a {
	display:inline-block;
  padding: 3px 5px;
  border: 1px solid gray;
	background-color: orange;
	color: black;
	text-decoration: none;
}
#ingelogd_balk a:hover {
	text-decoration: underline;
	transition: all 0.5s ease;
}


#header_logo {
	float: left;
	width: auto;
	max-width: 300px;
	min-width: 200px;
	padding-top: 0%;
	padding-right: 5px;
	margin-left: 0;
	text-align: left;
}

#header_logo img {
  width: 100%;
}

#header_right {
	/*outline: 1px solid red;*/
  float: right;
}
#header_languages {
	display: none;
}
#header_languages img {
  height: 70px;
  margin-left: 5px;
}

/* ========================================================== header_menu ====================================== */
#header_menu {
  text-align: left;
  display: block;
  position: relative;
  float: right;
  clear: both;
  width: auto;
  height: auto;
  /*outline: 1px solid red;*/
  margin-top: 0;
  background-color: lightgray;
  border-radius: 5px;
}

#desktop_menu_wrapper {
}

#desktop_menu_wrapper ul li {
  display: inline-block;
  list-style-type: none;
  width: auto;
  height: 30px;
  cursor: pointer;
  text-transform: uppercase;
  background-color: darkblue;
  padding: 0;
  margin: 0;
}
#desktop_menu_wrapper ul li a, #desktop_menu_wrapper ul li span{
  display: inline-block;
  color: white;
  text-decoration: none;
  padding:10px 5px;
  letter-spacing: 0em;
  width: auto;
  font-size: 115%;
}
#desktop_menu_wrapper ul li a:hover, #desktop_menu_wrapper ul li span:hover {
	background-color: green;
}

#desktop_menu_wrapper ul.subitem li a, #desktop_menu_wrapper ul.subitem li span{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding: 10px 5px;
  letter-spacing: 0em;
}

#desktop_menu_wrapper ul li span {
  cursor: normal;	
}

#desktop_menu_wrapper ul li:hover {
  border-bottom: 1px solid #119aa8; /* blauw/groen */
  color: #119aa8;
  font-weight: bold;
  transition: all 0.5s ease;
}

#desktop_menu_wrapper ul.subitem {
  display: none;
  margin-left: 20px;
}
#desktop_menu_wrapper ul.subitem_level_2 {
  display: none;
  margin-left: 50px;
}

#desktop_menu_wrapper ul li:hover ul.subitem {
  display: block;
  position: absolute;
  top: 40px;
  z-index: 200;
  width: auto;
  border: none;
  transition: all 0.5s ease;
}
#desktop_menu_wrapper ul li:hover ul.subitem li:hover ul.subitem_level_2 {
  display: block;
  position: absolute;
  
  z-index: 300;
  width: auto;
  border: none;
}

#desktop_menu_wrapper ul.subitem li {
  display: block;
  list-style-type: none !important;
  width: auto;
  margin-left: 0;
  color: white;
  padding: 0;
  height: 40px;
  background: #1c252e; 
  border: 2px solid transparent;
  border-bottom: 2px solid lightgray;
}
#desktop_menu_wrapper ul.subitem_level_2 li {
  display: block;
  list-style-type: none !important;
  width: auto;
  margin-left: 0;
  color: white;
  background: #1c252e; 
  border: 2px solid white;
  min-width: 200px;
  border-bottom: 2px solid lightgray;
}
#desktop_menu_wrapper ul.subitem li:hover {
  background-color: white;
  color: #212844;
  border: 2px solid #1c252e; /* blauw */
}
#desktop_menu_wrapper ul.subitem_level_2 li:hover {
  background-color: white;
  color: red;
  border: 2px solid #1c252e; /* blauw */
}

#desktop_menu_wrapper ul.subitem li a {
	display: block;
	width: 100%;
  color: inherit;
  text-decoration: none;
}

#desktop_menu_wrapper ul.subitem_level_2 li a {
	display: block;
	width: 100%;
  color: inherit;
  text-decoration: none;
}


/* -------------------------------------------------------------------------- submenu ------------------------- */
#mobile_submenu_wrapper {
  padding: 1%;
}
#mobile_submenu_wrapper ul {
	display: none;
	/* outline: 1px solid red;*/
}
#mobile_submenu_wrapper ul li a{
	display: block;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 1%;
}
#mobile_submenu_wrapper ul li a:hover {
  text-decoration: underline;
}
#mobile_submenu_wrapper ul.subitem li a {
	text-transform: none;
	margin-left: 10px;
}


#desktop_submenu_wrapper{
	position: relative;
	margin-top: 10px;
}
#desktop_submenu_wrapper span#welcome {
  display: block;
  float: right;
  text-align: right;
  padding-top: 18px;
}

#desktop_submenu_wrapper ul li {
  display: inline-block;
  list-style-type: none;
  width: auto;
  height: 53px;
  /*border-left: 1px solid lightgray;*/
  border-bottom: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}
#desktop_submenu_wrapper ul li a, #desktop_submenu_wrapper ul li span{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding: 20px 5px;
  letter-spacing: 0em;
  width:100%;
}

#desktop_submenu_wrapper ul.subitem li a, #desktop_submenu_wrapper ul.subitem li span{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding: 10px 5px;
  letter-spacing: 0em;
}

#desktop_submenu_wrapper ul li span {
  cursor: normal;	
}

#desktop_submenu_wrapper ul li:hover {
  /*border-bottom: 1px solid #119aa8; /* blauw/groen */
  color: #119aa8;
  font-weight: bold;
  transition: all 0.5s ease;
}

#desktop_submenu_wrapper ul.subitem {
  display: none;
  margin-left: 00px;
}
#desktop_submenu_wrapper ul.subitem_level_2 {
  display: none;
  margin-left: 50px;
}

#desktop_submenu_wrapper ul li:hover ul.subitem {
  display: block;
  position: absolute;
  top: 50px;
  z-index: 200;
  width: auto;
  border: none;
  transition: all 0.5s ease;
}
#desktop_submenu_wrapper ul li:hover ul.subitem li:hover ul.subitem_level_2 {
  display: block;
  position: absolute;
  
  z-index: 300;
  width: auto;
  border: none;
}

#desktop_submenu_wrapper ul.subitem li {
  display: block;
  list-style-type: none !important;
  width: auto;
  margin-left: 0;
  color: white;
  padding: 0;
  height: 40px;
  background: #119aa8; /*lichtblauw*/
  border: 0px solid transparent;
  border-bottom: 0px solid lightgray;
}
#desktop_submenu_wrapper ul.subitem_level_2 li {
  display: block;
  list-style-type: none !important;
  width: auto;
  margin-left: 0;
  color: white;
  background: #1c252e; 
  border: 2px solid white;
  min-width: 200px;
  border-bottom: 2px solid lightgray;
}
#desktop_submenu_wrapper ul.subitem li:hover {
  /*background-color: lightgray;*/
  color: #212844;
  border: 0px solid #1c252e; /* blauw */
}
#desktop_submenu_wrapper ul.subitem_level_2 li:hover {
  background-color: red;
  color: red;
  border:0px solid #1c252e; /* blauw */
}

#desktop_submenu_wrapper ul.subitem li a {
	display: block;
	width: 100%;
  color: inherit;
  text-decoration: none;
}

#desktop_submenu_wrapper ul.subitem_level_2 li a {
	display: block;
	width: 100%;
  color: inherit;
  text-decoration: none;
}

nav#subNav {
	height: 53px;
}

/*----------------------------------------------------------------------------------------------------- inhoud */
#inhoud {
	margin-top: 0;
	padding: 1%;
	padding-top: 1%;
	min-height: 550px;
  background: white;
}


/* *********************************************************** paginatiestring ******************************* */
.pagination {
	text-align:center; 
	margin: 10px;
}

.pagination a{
	display: inline-block;
	padding: 3px 5px;
	outline: 1px dotted lightgray;
}

.pagination a:hover {
	outline: 1px solid green;
}

a.toFirstPage, a.toLastPage  {
	font-size: 110%; margin: 0 5px;
}

.currentPage {
	font-size: 120%; display: inline-block; margin: 0 5px; color: green; font-weight: bold;
}
a.otherPage {
	font-size: 110%; margin: 0 5px;
}




/* ********************************************************************************  homepage ********************** */
.hp_content_width {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}


/* ************************************************************** werkbon *********************************** */

.werkbon_default_price_lines {
	width: 80px;
	min-width: 1px;
	border: 1px dashed lightgray;
	text-align: right;
}

/* ************************************************************** productfinder op werkbon *********************************** */
#productFinder {
	display: none; 
	border: 2px solid blue; 
	position: fixed; 
	top: 0%; 
	left: 0%; 
	width: 100%; 
	padding: 1%; 
	background: lightgray; 
	min-height: 400px;
	
}

#artNrResults div, #artNameResults div  {
	cursor: pointer;
  border: 1px solid #119aa8;;
  padding: 5px 10px;
  margin-top: 3px;
  background: white;
  overflow: auto;
}

#artNrResults div:hover,  #artNrResults div:active, #artNameResults div:hover,  #artNameResults div:active  {
	background: lightyellow;
}

#artNrResults div span, #artNameResults div span {
	font-weight: bold;
}

/*-------------------------------------------------------------------------------------------------- voeter */
footer {
  display: block;
  border-top: 1px dotted lightgray;
  padding: 0;
  /*
  margin-top: 20px;
  padding: 1%;
  padding-top: 3%;
  background: #363636;
  color: white;
  */ 
}
footer a {
	color: #c6dd29; /*vies groen*/
	text-decoration: underline;
	font-size: 14px;
}
footer a:hover {
  text-decoration: underline;
  color: white;
}


.footerLocation {
	/*outline: 1px solid green;*/
	display: block;
	width: 40%;
	float: left;
	height: auto;
	margin: 1% 2%;
	text-align: center;
}
.footerLocation:nth-child(odd) {
  margin-left: 8%;
}
.footerLocationName {
	display: block;
	clear: both;
	color: #ff2a92; /*donker-roze*/
	font-size: 18px;
}
.footerLocationAddress {
	display: block;
	clear: both;
	color: white;
	font-size: 14px;
	margin-top: 5px;
}

div#socialMedia {
	text-align: center;
	margin: 0 auto;
	border-bottom: 1px solid white;
}
div#socialMedia img {
	height: 25px;
	margin: 15px 1% 15px 1%;
	vertical-align: middle;
}

#footer_wrapper {
	display: table;	
	margin: 0 auto;
}
#footer_wrapper td {
	width: 25%;
}






/*-------------------------------------------------------------------------------------------------- credits */
#credits {
	background: white;
	color: #ff008b;
	width: 100%;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 10px;
}

#credits-wrapper {
}

#credits a{ 
	color: inherit;
	text-decoration: none;
	font-weight: 600;
}

#credits a {
  color: inherit;
  text-decoration: none;
}
#credits img{
  height: 14px;
}  

.mobileOnly, .tabletOnly {
  display: none !important;
}
.noDesktop {
  display: none; 
}


/* ********************************* uploadformulier document *********************************** */
.bestandFormulier {
	display: none; 
	z-index: 1001; 
	position: fixed; 
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%;
	min-height: 150px; 
	outline: 1px solid blue; 
	background-color:rgba(0, 0, 0, 0.5);
}
.bestandFormulier form {
	display: block;
	width: 70%;
	height: auto;
	overflow: auto;
	background: white;
	border: 1px solid black;
	position: relative;
	top: 10%;
	left: 15%;
	padding: 10px;
}
.bestandFormulierCancel {
	display: inline-block;
	color: red;
	margin-left: 10px;
	margin-top: 5px;
	cursor: pointer;
}


/* ********************************************* RESPONSIVE CSS ******************************************* */

@media all and (max-width: 1024px) {

  .noDesktop {
    display: block!important; 
  }

  .noTablet {
    display: none !important; 
  }
  
  .tabletOnly {
    display: block; 
  }
  
  #credits {
     text-align: center; 
  }
  
  textarea {
  	clear: both;
  	width: 70%;
  }
  
  html {
    background: white;	
  }
  
  body {
  	margin: 0;
  	padding: 0;
  	width: 100%;
  }
  
  #inhoud {
  	margin-top: 0;
  	min-height: 200px;
  }
  

  #header_wrapper {
  	width: 90%;
  	max-width: 960px;
    min-height: 65px;	
    position: relative;
  }
  
  #header_logo {
  	float: left;
  	width: 200px;
  	padding-right: 0;
  	margin: 10px 10px 10px 10px;
  }
  
  #header_right {
  }
  #header_menu {
    float: left;
    text-align: center;
    display: block;
  }
  
  #header_menu ul li.mainitem {
     padding: 5px; 
  }
  
  /* hoofdmenu */
  div#header_menu {
  	background-color: inherit;
  	padding-right: 0;
  	border-top-right-radius: 0;
  	border-top-left-radius: 0;
  	position: relative;
  	z-index: 10000;
  	top: 10px;
  	left: 10px;
  }
  
  #mobile_menu_wrapper {
  	display: block;
  	float: right;
  	top: 10px;
  	right: 10px;
  }
  
  #mobile_menu_switch {
  	display: block;
  	width: 40px;
  	height: 40px;
  	margin-top: 10px;
  	background: transparent;
  	cursor: pointer;
  	position: relative;
  	right: 10px;
  	z-index: 10000;
  }
  
  #mobile_menu_switch img{
   	max-width: 100%; 
  }
  
  #mobile_menu {
  	display: block;
  	width: auto;
  	/*outline:1px solid red;*/
  	position: relative;
  	font-size: 16px;
  	padding: 5px;
  	background: white;
  }
  
  #mobile_menu ul li {
    display: block;
    background: #ff008b; /* roze */
    color: white;
    padding:10px;
    margin-bottom: 5px;
    text-align: left;
    /*border: 1px solid white;*/ 
    border-bottom: none;
  	white-space: nowrap;
  	text-align: center;
  }
  #mobile_menu ul li:last-child {
  	border-bottom: 1px solid white;
  }
  
  #mobile_menu ul li a {
  	display: block;
  	width: auto;
  	padding: 3px 10px 3px 0;
  	color: inherit;
  	text-decoration: none;
  	text-transform: uppercase;
  }
  
	#mobile_menu ul li a:hover  {
		color: black;
		text-decoration: underline;
	}
	
	#mobile_menu ul.subitem li {
		border: none;
	}
  #mobile_menu ul.subitem li a {
	  text-transform: none;
  }
  
  .hp_content_width {
  	width: 90%;
  }
  
  div#fixedBannerImage span {
  	width: 80%;
  }
}

@media screen and (max-width: 600px) {
 
  .noMobile {
     display: none !important; 
  }
  
  .noDesktop {
     display: inline-block !important; 
  }
  
  .mobileOnly {
    display: inline-block !important; 
  }
  
  body {
		font-size: 16px;
  }
  
	p {	
		margin-bottom: 3%;
	}
	
	h1, h2 {
		margin-bottom: 4%;
		line-height: 110%;
	}
	
	textarea {
		margin: 0 auto;
    width: 92.5%;
	}
	
	select {
		margin: 0 auto;
		width: 100%;
	}
	
	input {
		margin: 0 auto;
		width: 91%;
		margin-top: 8px;
	}
	
	label {
		clear:both;
		/*float: none;*/
		width: auto;
		margin-top: 3%;
		margin-bottom: 0;
	}
	
	.submit {
		width: auto;
		display: block;
		margin: 5px 0 25px 0;
		text-align: center;
	}
  
  
  .hp_content_width {
  	width: 95%;
  }
  
  footer {
  	margin-top: 0;
  	font-size: 80%;
  }
  
  .footerLocation{
    clear:both;
    width: 100%;
    margin-top: 10px;
  }
  .footerLocation:nth-child(odd) {
  	margin-left: 1%;
  }
  
	table#footer_wrapper tr td {
		display: block;
		clear: both;
		width: auto;
		text-align: center;
	}
  
	#header_logo {
		min-width: 200px;
	}
	
  #desktop_submenu_wrapper ul li {  
  	width: 100%;
  	clear:both;
  	border-bottom: none;
  }
  #desktop_submenu_wrapper ul li:hover {
  	border-bottom: none;
  }
  
  #desktop_submenu_wrapper ul.subitem  {
  	display: block;
  	margin-top:-20px;
  }
  #desktop_submenu_wrapper ul.subitem li a {
  	color: white;
  	font-size: 95%;
  	text-transform: none;
  	margin-left: 10px;
  }

	#desktop_submenu_wrapper ul li:hover ul.subitem {
		display: block;
		position: relative;
		top: 0;
		z-index: 200;
		width: auto;
		border: none;
		transition: all 0.2s ease;
	}
	nav#subNav {
	  height: auto;
  }
  
	#currentSituation {
	}
	#currentSituation span {
		width: 23%;
		border-width: 1px;
		padding-top: 5px;
		font-size: 8px;
		height: 75px;
		font-size: 10px;
		line-height: 1.3; 
	}
	#currentSituation span.toDo {
		font-size: 10px;
		line-height: 1.3; 
	}

  div#fixedBannerImage span {
  	font-size: 30px;
  }
}
/* ********************************************* EINDE RESPONSIVE CSS ******************************************* */




div {
	/*outline: 1px dashed orange;*/
}
