/*
  960 Grid System ~ Core CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
		background-color:#FFF;	
		color:#4c4c4c;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 16px !important;
		font-size: 12px !important;
		font-style: normal !important;
		font-variant: normal !important;
		font-weight: normal !important;
		font-size-adjust: none !important;
		font-stretch: normal !important;
		background-image: url(../images/menubg.jpg);
		background-repeat: repeat-x;	
		margin:0;
}

/* `Container
----------------------------------------------------------------------------------------------------*/

.container_12 {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: inline;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11 {
  position: relative;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
  margin-left: 0;
}

.omega {
  margin-right: 0;
}

/* `Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .grid_1 {
  width: 60px;
}

.container_12 .grid_2 {
  width: 140px;
}

.container_12 .grid_3 {
  width: 220px;
}

.container_12 .grid_4 {
  width: 300px;
}

.container_12 .grid_5 {
  width: 380px;
}

.container_12 .grid_6 {
  width: 460px;
}

.container_12 .grid_7 {
  width: 540px;
}

.container_12 .grid_8 {
  width: 620px;
}

.container_12 .grid_9 {
  width: 700px;
}

.container_12 .grid_10 {
  width: 780px;
}

.container_12 .grid_11 {
  width: 860px;
}

.container_12 .grid_12 {
  width: 940px;
}

/* `Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .prefix_1 {
  padding-left: 80px;
}

.container_12 .prefix_2 {
  padding-left: 160px;
}

.container_12 .prefix_3 {
  padding-left: 240px;
}

.container_12 .prefix_4 {
  padding-left: 320px;
}

.container_12 .prefix_5 {
  padding-left: 400px;
}

.container_12 .prefix_6 {
  padding-left: 480px;
}

.container_12 .prefix_7 {
  padding-left: 560px;
}

.container_12 .prefix_8 {
  padding-left: 640px;
}

.container_12 .prefix_9 {
  padding-left: 720px;
}

.container_12 .prefix_10 {
  padding-left: 800px;
}

.container_12 .prefix_11 {
  padding-left: 880px;
}

/* `Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .suffix_1 {
  padding-right: 80px;
}

.container_12 .suffix_2 {
  padding-right: 160px;
}

.container_12 .suffix_3 {
  padding-right: 240px;
}

.container_12 .suffix_4 {
  padding-right: 320px;
}

.container_12 .suffix_5 {
  padding-right: 400px;
}

.container_12 .suffix_6 {
  padding-right: 480px;
}

.container_12 .suffix_7 {
  padding-right: 560px;
}

.container_12 .suffix_8 {
  padding-right: 640px;
}

.container_12 .suffix_9 {
  padding-right: 720px;
}

.container_12 .suffix_10 {
  padding-right: 800px;
}

.container_12 .suffix_11 {
  padding-right: 880px;
}

/* `Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .push_1 {
  left: 80px;
}

.container_12 .push_2 {
  left: 160px;
}

.container_12 .push_3 {
  left: 240px;
}

.container_12 .push_4 {
  left: 320px;
}

.container_12 .push_5 {
  left: 400px;
}

.container_12 .push_6 {
  left: 480px;
}

.container_12 .push_7 {
  left: 560px;
}

.container_12 .push_8 {
  left: 640px;
}

.container_12 .push_9 {
  left: 720px;
}

.container_12 .push_10 {
  left: 800px;
}

.container_12 .push_11 {
  left: 880px;
}

/* `Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .pull_1 {
  left: -80px;
}

.container_12 .pull_2 {
  left: -160px;
}

.container_12 .pull_3 {
  left: -240px;
}

.container_12 .pull_4 {
  left: -320px;
}

.container_12 .pull_5 {
  left: -400px;
}

.container_12 .pull_6 {
  left: -480px;
}

.container_12 .pull_7 {
  left: -560px;
}

.container_12 .pull_8 {
  left: -640px;
}

.container_12 .pull_9 {
  left: -720px;
}

.container_12 .pull_10 {
  left: -800px;
}

.container_12 .pull_11 {
  left: -880px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  margin:0;
  padding:0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after,
.container_12:before,
.container_12:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.clearfix:after,
.container_12:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix,
.container_12 {
  zoom: 1;
}





/* OPMAAK VAN DE WEBSITE */
	#container {
		width: 100%;
	}
	h1 {
		font-size: 38px;
		color:#FFF;
		text-shadow: 2px 2px 2px #000;
		font-family: 'PT Sans Narrow', sans-serif;
		font-weight: normal;
	}
	#content h1 {
		color:#052F60;
		text-shadow: none;
		font-family: 'PT Sans Narrow', sans-serif;
		font-weight: normal;
	}
	h2 {
		font-size: 25px;
		color:#052f60;
		font-family: 'PT Sans Narrow', sans-serif;
		font-weight: normal;
	}
	h3 {
		font-size: 20px;
		color:#052f60;
		font-family: 'PT Sans Narrow', sans-serif;
		font-weight: normal;
	}
	a, a:link, a:visited {
		color:#052f60;
		text-decoration: none;
	}
	a:hover {
		text-decoration: underline;
	}
	.talen {
		float:right;
		padding-top:8px;
	}
	#menu {
		height: 140px;
		float:right;
	}
	#menu ul {
		list-style: none;
		margin-top: 45px;
		margin-left: 10px;
		padding-left:0;
	}
	#menu ul li {
		width: 85px;
		margin-left: 7px;
		margin-right: 7px;
		float: left;
	}
	#menu ul li a {
		font-size: 20px;
		text-decoration: none;
		color:#FFF;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#menu ul li a:hover {
		color:#f0a52f;
	}
	#menu ul li a.subtext, #menu ul li a.subtext:visited {
		color:#FFF;
		display:block;
		font-family: Arial;
		font-size: 11px;
		padding-top:5px;
	}
	#begin {
		border-top: 1px solid #BFBFBF;
	}
	#logo {
		background-image: url(../images/logo.png);
		background-repeat: no-repeat;
		width: 294px;
		float:left;
		position: absolute;
		margin-left:0px;
		z-index: 100;
	}
	a.homeicon, a.homeicon:visited {
		background-image: url(../images/home_icon.png);
		background-repeat: no-repeat;
		width: 23px;
		height: 20px;
		display:block;
		margin: 25px 0px 0px 10px;
	}
	a.homeicon:hover {
		background-image: url(../images/home_icon_over.png);
		background-repeat: no-repeat;
	}
	#animatie {
		width:100%;
		background-color: #FFF;
		height: 322px;
	}
	#content {
		background-image: url(../images/bgcontent.jpg);
		background-repeat: repeat;
		line-height: 24px;
		border-top: 1px solid #BFBFBF;
		border-bottom: 1px solid #BFBFBF;
		width: 100%;
		padding-bottom: 50px;
	}
	#content h3 {
		margin-bottom: 0px;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	.thumbnail {
		background-color:#FFF;
		-moz-box-shadow: 0 0 5px #888;
		-webkit-box-shadow: 0 0 5px#888;
		box-shadow: 0 0 5px #888;
		float:left;
		margin: 20px 15px 0px 0px;
		padding: 5px;
		line-height:0px;
	}
	.thumbnail a.vergroten {
		margin: 60px 0px 0px 10px;
		display:none;
		visibility:hidden;
	}
	#prijs h3 {
		margin-bottom:20px;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	a.informatieaanvragen, a.informatieaanvragen:visited {
		background-image: url(../images/informatieaanvragenbutton.png);
		background-repeat: no-repeat;
		width: 380px;
		height: 53px;
		display:block;
		color:#FFF;
		font-size: 22px;
		text-align: center;
		font-weight:normal;
		font-family: 'PT Sans Narrow', sans-serif;
		padding: 15px 0px 0px 0px;
		text-shadow: 2px 2px 2px #000;
	}
	a.informatieaanvragen:hover {
		background-image: url(../images/informatieaanvragenbutton_over.png);
		background-repeat: no-repeat;
		width: 380px;
		text-decoration: none;
		font-family: 'PT Sans Narrow', sans-serif;
		height: 53px;
		display:block;
		color:#FFF;
		text-align: center;
		text-shadow: 2px 2px 2px #000;
		font-size: 22px;
		padding: 15px 0px 0px 0px;
	}
	span.prijs {
		color:#c07705;
		display:block;
		font-family: 'PT Sans Narrow', sans-serif;
		font-size: 40px;
		font-weight:normal;
		margin: 10px 0px 20px 0px;
	}
	.thumbnailgroot {
		background-color:#FFF;
		-moz-box-shadow: 0 0 5px #888;
		-webkit-box-shadow: 0 0 5px#888;
		box-shadow: 0 0 5px #888;
		width: 350px;
		float:left;
		margin: 20px 10px 0px 0px;
		padding: 5px;
		line-height:0px;
	}
	/*a.vergroten, a.vergroten:visited {
		background-image: url(../images/vergrotenicon.png);
		background-repeat: no-repeat;
		display:block;
		width: 39px;
		height: 29px;
		position: absolute;
		margin: 310px 0px 0px 10px;
	}*/
	#nieuws {
		background-image: url(../images/nieuwsbg.jpg);
		background-repeat: no-repeat;
		height: 530px;
		width: 315px;
		margin-top:20px;
		padding:20px;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#nieuws h2 {
		font-size: 28px;
		color:#FFF;
		font-family: 'PT Sans Narrow', sans-serif;
		text-shadow: none;
		margin-top:0;
		font-weight: normal;
	}
	#nieuws .datum {
		font-size: 11px;
		color:#f1c989;
		display:block;
		font-family: Arial;
	}
	a.titel, a.titel:visited {
		color:#f0a52f;
		font-weight: bold;
		text-decoration: none;
		font-family: Arial;
	}
	a.titel:hover {
		color:#ffc600;
	}
	#nieuws p {
		color:#FFF;
		line-height: 24px;
		padding:0;
		margin:0px 0px 5px 0px;
		font-family: Arial;
	}
	a.leesmeerklein, a.leesmeerklein:visited {
		background-image: url(../images/leesmeerbutton.png);
		background-repeat: no-repeat;
		width: 84px;
		height: 25px;
		color:#FFF;
		text-decoration: none;
		padding-left: 10px;
		display:block;
		font-size: 16px;
		text-shadow: 2px 2px 2px #000;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	a.leesmeerklein:hover {
		background-image: url(../images/leesmeerbutton_over.png);
		font-family: 'PT Sans Narrow', sans-serif;
	}
	.nieuwsbericht {
		border-bottom: 1px solid #f0a52f;
		padding-bottom: 10px;
	}
	.nieuwsbericht_end {
		border-bottom: none;
		padding-bottom: 10px;
	}
	a.leesmeernieuws, a.leesmeernieuws:visited {
		background-image: url(../images/pijlwit.png);
		background-repeat: no-repeat;
		background-position: left;
		padding-left: 15px;
		color:#FFF;
		font-size: 16px;
		font-family: 'PT Sans Narrow', sans-serif;
		text-decoration: none;
	}
	a.leesmeernieuws:hover {
		text-decoration: underline;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#subfooter {
		background-image: url(../images/subfooterbg.jpg);
		background-repeat: repeat;
		height: 280px;
	}
	#foto {
		display:inline-block;
	}
	.kameel {
		float: left;
		margin-top:-40px;
	}
	#reis1 {
		float:left;
	}
	#reis1 img, #reis2 img {
		display:block;
	}
	#heading h2 {
		font-size: 30px;
		color:#FFF;
		font-family: 'PT Sans Narrow', sans-serif;
		text-shadow: 2px 2px 2px #000;
	}
	#reis1 a.titel, #reis1 a.titel:visited, #reis2 a.titel, #reis2 a.titel:visited {
		color:#FFF;
		font-size: 16px;
		font-family: 'PT Sans Narrow', sans-serif;
		font-weight: normal;
	}
	#reis1 p, #reis2 p {
		color:#FFF;
	}
	#reis2 {
	}
	#content a.meerinformatie, a.meerinformatie:visited {
		background-image: url(../images/meerinformatiebutton.png);
		background-repeat: no-repeat;
		width: 170px;
		height: 35px;
		display:block;
		color:#FFF;
		text-shadow: 2px 2px 2px #000;
		font-size: 18px;
		padding: 5px 0px 0px 10px;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#content a.meerinformatie:hover {
		background-image: url(../images/meerinformatiebutton_over.png);
		text-decoration: none;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	a.meerinformatie, a.meerinformatie:visited {
		background-image: url(../images/meerinformatiebutton.png);
		background-repeat: no-repeat;
		width: 170px;
		height: 27px;
		display:block;
		color:#FFF;
		text-shadow: 2px 2px 2px #000;
		font-size: 18px;
		padding: 8px 0px 0px 10px;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	a.meerinformatie:hover {	
		background-image: url(../images/meerinformatiebutton_over.png);
		text-decoration: none;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#footer {
		background-color:#632f0a;
		border-top: 12px solid #411d07;
		color:#FFF;
	}
	#links ul {
		margin-left:0;
		padding-left:0;
		list-style: none;
		line-height: 25px;
	}
	#links ul li a {
		color:#f0a52f;
	}
	#socialmedia {
		margin-top: 20px;
	}
	#contactopnemen {
		line-height: 25px;
	}
	#contactopnemen a, #contactopnemen a:visited {
		color:#f0a52f;
	}
	#contactopnemen strong {
		color:#f0a52f;
	}
	#reis {
		margin-bottom: 30px;
	}
	#reis h3 {
		color:#000;
		font-size: 18px;
		margin-bottom: 0px;
		font-weight: normal;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	span.prijstekst {
		font-size: 18px;
		color:#000;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	span.prijstekst strong {
		color:#bb5e0b;
	}
	#reis a.meerinformatie, #reis a.meerinformatie:visited {
		padding-top: 5px;
		margin-top: 10px;
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#vervolgheader .titel {
		font-size: 30px;
		color:#FFF;
		text-shadow: 2px 2px 2px #000;
		background-image: url(../images/vervolgheadertitelbg.png);
		background-repeat: repeat-x;
		font-family: 'PT Sans Narrow', sans-serif;
		height: 45px;
		position: absolute;
		margin-top:60px;
		padding: 20px 20px 0px 20px;
	}
	.verplicht {
		color:red;
	}
	.contactfield, select {
		width: 350px;
		font-size: 12px;
		height: 22px;
		border: 1px solid #666;
	}
	.message {
		width: 815px;
		height: 100px;
		border: 1px solid #666;
	}
	a.verzendenbutton, a.verzendenbutton:visited {
		background-image: url(../images/verzendenbutton.png);
		background-repeat: no-repeat;
		width: 165px;
		height: 53px;
		display:block;
		padding: 10px 0px 0px 30px;
		font-family: 'PT Sans Narrow', sans-serif;
		color:#FFF;
		text-shadow: 2px 2px 2px #000;
		font-size: 18px;
	}
	a.verzendenbutton:hover {
		text-decoration: none;
		background-image: url(../images/verzendenbutton_over.png);
		font-family: 'PT Sans Narrow', sans-serif;
	}
	#nieuwsoverzicht .thumbnail {
		float: left;
	}
	#nieuwsoverzicht #bericht {
		margin-top: 20px;
	}
	#nieuwsoverzicht #bericht a.titel {
		font-size: 14px;
		color:#052F60;
		background:none;
		text-shadow:none;
		position: inherit;
		padding-left: 0px;
		font-family: Arial;
	}
	#nieuwsoverzicht #bericht p {
		line-height: 18px;	
	}
	#nieuwsoverzicht .nieuwsbericht {
		border-bottom: 1px solid #666;
		height:140px;
	}
	span.paginas {
		margin-top:20px;
		float: left;
	}
	span.paginas a {
		color:#F0A52F;
		font-weight: bold;
	}
	span.paginas a.active {
		color:#000;
		font-weight: normal;
	}
	a.volgende {
		color:#F0A52F;
		font-weight: bold;
		float:right;
		margin-top:20px;
	}
	#nieuwsbericht h2 {
		margin-bottom:10px;
	}
	#nieuwsbericht .datum {
		font-size: 11px;
		margin-left: 0px;
		margin-top: 10px;
		font-style: italic;
		text-decoration: none;
		margin-bottom: 10px;
	}
	.contactformulier textarea {
		resize:none;
		width: 820px;
	}
	

/*TABS*/
#tabs {
	width: 100%;
}
#tabs ul {
	padding-left:0px;
	margin-left:10px;
}
#tabs ul li {
	float: left;
	list-style-type: none;
	margin-right: 10px;
	padding: 5px 10px 5px 10px;
	border-top: 1px solid #bfbfbf;
	border-right: 1px solid #bfbfbf;
	border-left: 1px solid #bfbfbf;
	text-align:center;
}

#tabs ul li.active {
	background-image: url("../images/bgcontent.jpg");
	border-bottom: 1px solid #efefef;
}

.tabpage {
	display: none;
}

/*SEARCH*/
.search {
	float: right;
	width: 120px;
	margin-top: 8px;
	margin-right: 10px;
}

.inpSearch {
	width: 100px;
	height: 17px;
	border: 0;
	float: left;
}

a.lnkSearch, a.lnkSearch:active, a.lnkSearch:visited {
	background-image: url("../images/hourglass.png");
	background-repeat: no-repeat;
	background-color: #ffffff;
	background-position: 0 2px;
	width: 17px;
	height: 19px;
	display: block;
	float: left;
}

a.lnkSearch:hover {
	text-decoration: none;
}

.spq-pager {
	text-align: center;
	display: inline-block;
	width: 100%;
}

.spq-pager-pages {
	text-align: center;
	font-size: 0.75em;
	letter-spacing: 1px;
	font-weight: 600;
	text-transform: uppercase;
	float: left;
	text-align: center;
	width: 80%;
}

.spq-pager-link-disabled {
	visibility: hidden;
}

.spq-pager-previous-link {
	font-size: 0.75em;
	letter-spacing: 1px;
	font-weight: 600;
	text-transform: uppercase;
	float: left;
	width: 10%;
	color: @color-background;
	border-bottom: 1px solid @color-background;
	display: block;
}

.spq-pager-next-link {
	font-size: 0.75em;
	letter-spacing: 1px;
	font-weight: 600;
	text-transform: uppercase;
	float: left;
	width: 10%;
	color: @color-background;
	border-bottom: 1px solid @color-background;
	display: block;
}
#footer-logo {
	margin-top: -15px;
	text-align: right;
}