/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, form, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
img{border:none;}
/* Commonly used to style page titles. */
h1 {
  color: #FF8C00;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #666666;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #666666;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #666666;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #5798B5;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #666666;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #666666;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 970px;
}
#outerWrapper #header { height: 135px;}
#outerWrapper #header #topnav {
  background-color: #fff;
  sbackground-image: url("../images/bckr-nav1.jpg");
  background-repeat: repeat-x;
  height: 25px;
}
#outerWrapper #header #topnav #langselect{	width:720px; float:left}
#outerWrapper #header #topnav form select{font-size:10px;margin:3px;}
#outerWrapper #header #topnav #rss{width:30px;float:left;}
#outerWrapper #header #topnav #mininav{float:right;}
#outerWrapper #header #topnav #mininav ul#navlist,#outerWrapper #navigation ul#nav{
	margin: 0;
	padding: 0;
	list-style-type: none;
	white-space: nowrap;
}
#outerWrapper #navigation ul#nav li{
	float: left;
	font-family: Arial, sans-serif;
	font-size: 11px;
	text-transform:uppercase;
	margin: 0;
	padding: 5px 0 4px 0;
}
#outerWrapper #navigation #nav a, #outerWrapper #navigation #nav a:link {
	margin: 0;
	padding: 3px 14px 3px 14px;
	color: #FFFFFF;
	border-right: 1px dotted #fff;
	text-decoration: none;
	font-weight: bold;
}
#outerWrapper #header #topnav #mininav ul#navlist li{
	float: left;
	font-family: arial, sans-serif;
	font-size: 9px;
	margin: 0;
	padding: 5px 0 4px 0;
}
#outerWrapper #header #topnav #mininav #navlist a, #outerWrapper #header #topnav #mininav #navlist a:link {
	margin: 0;
	padding: 3px 9px 3px 9px;
	scolor: #fff;
	border-right: 1px dotted #fff;
	text-decoration: none;
	font-weight: normal;
}
#outerWrapper #header #topnav #mininav #navlist a.last, #outerWrapper #navigation #nav a.last{border:none;}
#outerWrapper #navigation #nav a.active,#outerWrapper #navigation #nav a:hover{scolor:#fff;}
#outerWrapper #header #topnav #mininav #navlist a:hover{scolor: #fff;text-decoration:underline;}
#outerWrapper #header #logo{float:left;width:294px;}
#outerWrapper #header #logo h1{
	float:left;
	overflow: hidden;
	line-height:96px;
	height:96px;
	width:294px;
	background: url(../images/logo.gif) no-repeat;
	text-indent:-9000px;
	}
#outerWrapper #header #header #logo h1	a { display: block; height: 96px }
#outerWrapper #header #loginbox{float:right;width:164px;margin-top:5px;}
#outerWrapper #header #loginbox form{margin:5px 0 0 0;padding:0;font-size:10px;}
#outerWrapper #header #loginbox form .inputs{
	color: #333333;
  font-family: Arial, Helvetica, sans-serif;
	font-size:10px;padding:1px;
	width:140px;
	}
#outerWrapper #header #loginbox form .check{margin-top:5px;}
#outerWrapper #header #loginbox form .loginbut{margin-left:7px;}
#outerWrapper #navigation {
  background-color: #FF8C00;
  background-image: url("../images/bckr-nav00.jpg");
  background-repeat: repeat-x;
  height: 25px;
}
#outerWrapper #contentWrapper {
  background-image: url("../images/contentWrapper_bg.gif");
  background-repeat: repeat-y;
  overflow: hidden;
  width:970px;
}
#outerWrapper #contentWrapper #sidebarLeft {
/*  background-color: #4e342f;*/
  background-color: #666666;
  float: left;
  padding: 25px 15px 5px 15px;
  width: 214px;
}
#outerWrapper #contentWrapper #sidebarLeft form {
  padding:8px;
	color:#fff;
	font-weight:bold;
	font-size:10px;
}
#outerWrapper #contentWrapper #sidebarLeft form#vacid {
  clear:both;
	display: inline;
	padding:0;
	margin:16px 0 0 0;
	color:#fff;
	font-weight:bold;
	font-size:10px;
	line-height:20px;
}
#outerWrapper #contentWrapper #sidebarLeft .vacline{display:block;padding-top:5px;}
#outerWrapper #contentWrapper #sidebarLeft form .idvac {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
	font-size:10px;
	padding:2px;
	width:130px;
	margin-top:5px;
}
#outerWrapper #contentWrapper #sidebarLeft form .inputs {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
	font-size:10px;
	padding:2px;
	margin:3px 0;
	width:180px;
}
#outerWrapper #contentWrapper #sidebarLeft form .city {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
	font-size:10px;
	padding:2px;
	margin:3px 0;
	width:130px;
}
#outerWrapper #contentWrapper #sidebarLeft form .zoekbut {
  margin:0 0 0 10px ;
}
#outerWrapper #contentWrapper #sidebarRight {

  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 224px;
  height:317px;
}




#outerWrapper #contentWrapper .right-helper{text-align:center;border-left: solid 4px #f69919;border-right: solid 4px #f69919}
#outerWrapper #contentWrapper #sidebar {
	
  border-left: solid 4px #f69919; /* Sets the left border properties for an element using shorthand notation */
  border-right: solid 4px #f69919; /* Sets the right border properties for an element using shorthand notation */
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 224px;
}
#outerWrapper #contentWrapper #sidebarRight h1,outerWrapper #contentWrapper #sidebar h1 {
	font-size:22px;
	line-height:24px;
	text-transform:uppercase
}
#outerWrapper #contentWrapper #sidebarRight h2, outerWrapper #contentWrapper #sidebar h2 {
	font-size:16px;
	line-height:22px;
	color:#FF8C00;
	text-transform:uppercase
}
#outerWrapper #contentWrapper #sidebarRight a,#outerWrapper #contentWrapper #sidebarRight a:link, outerWrapper #contentWrapper #sidebar a,#outerWrapper #contentWrapper #sidebar a:link{
	color:#5798B5;
	text-decoration:underline;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #sp-image{
	margin: 0 0px 0 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align:left;
  padding:0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width:474px;
  float:left;
  }

#outerWrapper #contentWrapper #content {
  margin: 0 244px 0 244px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding:0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer { padding:0px;margin:0px;}
#outerWrapper #footer .fblok ul {padding:0;margin:0; text-align:left;}
#outerWrapper #footer .fblok ul li {
	display:inline;
	background:url("../images/bullet.gif") no-repeat;
	margin-right:10px;
	background-position:center left;
  padding-left:20px;
	font-size:12px;
	font-weight:bold;
	color:#fff;
}
#outerWrapper #footer .fblok ul li a{color:#fff;}
#outerWrapper #footer .vactype ul{	padding-top:12px;}
#outerWrapper #footer .werkg ul,#outerWrapper #footer .werkz ul{	padding-top:20px;}
#outerWrapper #footer .fblok{	height:54px;overflow:hidden;}
#outerWrapper #footer .vactype{ background:#FFB300;}
#outerWrapper #footer .werkg	{ background:#FF8C00;}
*#outerWrapper #footer .werkz	{ background:#666666;}


*#outerWrapper #footer .vactype h1	{padding:20px 0 0 14px;width:244px;float:left;color:#666666; text-transform:uppercase;}
#outerWrapper #footer .werkg h1,#outerWrapper #footer .werkz h1	{ padding:14px 0 0 14px;width:244px;float:left;color:#fff;font-size:20px;line-height:22px; text-transform:uppercase;}
 #banners img{margin:30px 0 10px 0;}
 #banners .imgleft{margin:30px 30px 10px 0;}
#outerWrapper #footer #mainfooter { text-align:center;font-size:10px;}
#outerWrapper #footer #mainfooter ul {padding:10px 0 0 0;margin:0;text-align:center}
#outerWrapper #footer #mainfooter ul li {
	display:inline;
	background:url("../images/divi.gif") no-repeat;
	background-position:center right;
  padding:0 10px 0 8px;
	font-size:10px;
	font-weight:normal;
	color:#5798B5;
}
#outerWrapper #footer #mainfooter ul li.last {	background:none;}
#outerWrapper #footer #mainfooter ul li a{color:#5798B5;font-weight:normal;}
#outerWrapper #footer #mainfooter img {margin-top:10px;}
.qs_index_right{width:180px;}
#qs_index_country_right select{width:180px;}