/*!
 *
 * Copyright	BlueBear Internet Solutions
 * Date		2013
 *
 */

/*! 
 * HTML Reset 
 */

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

html {
	font: normal 13px/19px arial, sans-serif;
	overflow-y: scroll;
}

html,body {
	margin: 0;
	padding: 0;
}

p, ul, ol, dl, pre, table, fieldset, .block {
	margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
	text-rendering: optimizelegibility;
	line-height: normal;
	margin-bottom: 0.6em;	
}

h1 a, h2 a, h3, h4 a, h5 a, h6 a {
	color: inherit;
}

ul, ol, dl {
	padding-left: 2em;
}

a {
	text-decoration: underline;
}

sub, sup {
	position: relative;
	font-size: 70%;
}

	sub {
		top: 1px;
	}
	
	sup {
		top: -1px;
	}

object {
	outline: none;
}

img {
	border: 0;
	vertical-align: top;
}

figure figcaption {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-family: inherit;
	font-size: inherit;
	width: 100%;
}

	table th,
	table td,
	table caption {
		text-align: left;
	}
	
/*! 
 * Additional classes
 */

.hidden {
	display: none;
}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

img.align-right {
	float: right;
	margin: 0 0 1em 1em;
}

img.align-left {
	float: left;
	margin: 0 1em 1em 0;
}

.add-bottom-margin {
	margin-bottom: 1em;
}
.add-top-margin {
	margin-top: 1em;
}

/*! 
 * ClearFix
 */
 
.clear, .container, .row {
	clear: both;
}

.clearfix, .container, .row {
	zoom: 1;
}

.clearfix:before, .clearfix:after, .container:before, .container:after, .row:before, .row:after {
	content: "";
	display: table;
}

.clearfix:after, .container:after, .row:after {
	clear: both;
}

/*! 
 * Grid
 */

.row {
	position: relative;
	display: block;
}

.span-1, .span-2, .span-50 {
	position: relative;
	min-height: 10px;
	float: left;
}

	.span-1 {
		width:33.3333333333%;
		*width:33.279%;
	}
	
	.span-50,
	.is-subpage .span-2 .span-1 {
		width:50%;
		*width:50%;
	}
	
	.span-2 {
		width:66.6666666665%;
		*width: 66.56%;
	}

html .show-on-mobile {
	display: none;
}

@media all and (min-width: 0px) and (max-width: 720px) {

	.span-1, .span-2, .span-50,
	.is-subpage .span-2 .span-1 {	
		float: none;
		width: auto;
		*width: 100%;
	}
	
	html .hide-on-mobile {
		display: none;
	}
	
	html .show-on-mobile {
		display: block;
	}
	
	html .defloat-on-mobile {
		float: none;
	}
	
	html img.align-left,
    html img.align-right {        
		margin-left: 0;
		margin-right: 0;
    }
}



/*!
 * System messages
 */
 
#system_messages {
	margin: 0 auto;
	position: relative;
	width: 960px;
	zoom: 1;
	list-style: none;
	overflow: hidden;
	padding: 0;
	clear: both;
}
	
	#system_messages .message {
		border: 2px solid #ddd;
		margin-bottom: .5em;
		padding: 10px;
	}
	
	#system_messages .success {
		background-color: #E6EFC2;
		border-color: #C6D880;
		color: #264409;
	}
	
	#system_messages .notice, 
	#system_messages .warning {
		background-color: #FFF6BF;
		border-color: #FFD324;
		color: #514721;
	}
	
	#system_messages .error {
		background-color: #FBE3E4;
		border-color: #FBC2C4;
		color: #8A1F11;
	}
	
	#system_messages .error.fatal {
		background-color: #ff9797;
		border-color: #da0000;
		color: #840000;
	}

	.suppress-success #system_messages .success, 
	.suppress-warning #system_messages .warning,
	.suppress-error #system_messages .error {
		display: none;
	}
	
/*!
 * Form validation
 */

.validation-failed {
	background-color: #fdd !important;
	border-top-color: #f64b4b !important;
	border-left-color: #f1a5a5 !important;
	border-right-color: #f1a5a5 !important;
	border-bottom-color: #eeb8b8 !important;
}

.validation-passed {
	background-color: #dfd !important;
	border-top-color: #008000 !important;
	border-left-color: #94d594 !important;
	border-right-color: #94d594 !important;
	border-bottom-color: #b1e6b1 !important;
}

.validation-advice {
	clear: left;
	color: #fdd;
	padding-left: 150px;
}

.validation-failed + label {
	color: #f64b4b;
}

/*! 
 * Forms
 */

form label {
	font-weight: normal;
}

form label.label {
	display: block;
	width: 180px;
	margin-right: 20px;
	float: left;
}

form label.overTxtLabel {
	padding: 2px 0 0 5px;
	font-style: italic;
	display: inline;
	font-size: 12px;
	float: none;
	width: auto;
	color: #ccc;
}

form .group {
	display: inline-block;
}

form .indent {
	padding-left: 200px;
}

form .row {
	margin-bottom: 0.5em;
}

	form .row:hover label.label {
		color: #000;
	}

input, textarea, select {
	font-family: inherit;
	line-height: normal;
	vertical-align: top;
	font-size: 100%;
	outline: none;
	padding: 2px;
	background: #f6f6f6;
}

	input[type=checkbox], input[type=radio] {
		vertical-align: baseline;
	}
	
	textarea.txt, input.txt, select.txt {
		border: 1px solid #e7e7e7;
		border-top: 1px solid #999;
	}
	
		input.txt {
			height: 26px;
			width: 200px;
			padding-left: 5px;
		}
		
		select.txt {
			line-height: 26px;
			padding: 4px;
			height: 32px;
			width: 209px;
		}
		
		textarea.txt {
			height: 80px;
			width: 300px;
		}
		
		textarea.txt:hover + label.overTxtLabel, 
		input.txt:hover + label.overTxtLabel, 
		select.txt:hover + label.overTxtLabel {
			color: #666;
		}

/*!
 * Navigation
 */

nav, 
nav a
nav ul, 
nav li {
	position: relative;
}

nav {
	line-height: 1.2;
}	

	nav.disabled {
		display: none;
	}
	nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	
		nav ul li a {
			display: block;
			zoom: 1;
		}
		
		nav ul ul {
			margin-left: 1em;
		}
		
		nav li.active > a,
		nav li:hover > a {
			text-decoration: underline;
		}
		
	nav.inline .menu-item,
	nav.inline .separator {
		float: left;
	}
	nav.inline-block ul {
		white-space: nowrap;
	}
	nav.inline-block .menu-item,
	nav.inline-block .separator {
		display: block;
		vertical-align: top;
		float: left;
	}
	
	nav.depth1 ul ul,
	nav.depth2 ul ul ul,
	nav.depth3 ul ul ul ul,
	nav.depth4 ul ul ul ul ul,
	nav.depth5 ul ul ul ul ul ul,
	nav.depth6 ul ul ul ul ul ul ul {
		visibility: hidden;
		display: none;
	}
	
	nav.onactive ul ul {
		display: none;
	}
	
	nav.onactive li.active > ul {
		display: block;
	}
	
	nav.dropdown ul ul {
		white-space: nowrap;
		position: absolute;
		margin-left: 0;
		display: none;
		z-index: 2;		
		left: 100%;
		top: 0;
	}
		nav.dropdown .submenu {
			min-width: 100%;
			top: 100%;
			left: 0;
		}
		
		nav.dropdown li:hover > ul,
		nav.dropdown li:focus > ul {
			display: block;
		}
	
/*!
 * Buttons
 */
 
input.btn, a.btn, button.btn {
	border: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 32px;
	line-height: normal;
	margin: 0;
	outline: none;
	overflow: visible;
	padding: 1px 15px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
	a.btn {
		display: inline-block;
		height: 30px;
		line-height: 30px;
		padding: 0 15px 0 15px;
	}
	
	/*!
	 * Default button 
	 */
	input.btn, a.btn, button.btn {
		color: #666;
		border: 1px solid #ddd;
		border-bottom: 1px solid #b3b3b3;
		background: #f9f9f9 url('/skin/btn-background.png') repeat-x left bottom;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 5px;
	}
		input.btn:hover, a.btn:hover, button.btn:hover,
		input.btn:focus, a.btn:focus, button.btn:focus {
			color: #000;
			border-color: #d5d5d5;
			background-color: #fff;			
			border-bottom-color: #777;
		}	
	
	/*!
	 * Primary button 
	 */
	input.btn-primary, a.btn-primary, button.btn-primary {
		color: #fff;
		background-color: #e45752;
		border: 1px solid #d14741;
		border-bottom: 1px solid #c44741;
		text-shadow: 0px -1px 0px #a73d3a;
		box-shadow: inset 0 1px rgba(255,255,255,0.3);
	}
		input.btn-primary:hover, a.btn-primary:hover, button.btn-primary:hover,
		input.btn-primary:focus, a.btn-primary:focus, button.btn-primary:focus {
			color: #fff;
			border-color: #d14741;
			background-color: #d84d47;			
			border-bottom-color: #b7342d;
		}

	/*!
	 * Green button 
	 */
	 
	input.btn-green, a.btn-green, button.btn-green {
		color: #fff;
		background-color: #1bbab7;
		border: 1px solid #1abab7;
		border-bottom: 1px solid #056765;
		text-shadow: 0px -1px 0px #056765;
		box-shadow: inset 0 1px rgba(255,255,255,0.3);
	}
		input.btn-green:hover, a.btn-green:hover, button.btn-green:hover,
		input.btn-green:focus, a.btn-green:focus, button.btn-green:focus {
			color: #fff;
			border-color: #10aeab;
			background-color: #10aeab;			
			border-bottom-color: #056765;
		}

.checkbox, 
.radiobox {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: top;
	overflow: hidden;
	border-radius: 1px;
}
	.checkbox input,
	.radiobox input {
		position: absolute;
		top: 0;
		left: 0;
		width: 20px;
		height: 20px;
		opacity: 0;
		z-index: 2;
		margin: 0;
	}
	.checkbox .checkmark,
	.radiobox .checkmark {
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		border: 1px solid #777;
		overflow: hidden;
		z-index: 1;
		box-shadow: inset 0 0 1px 1px #fff;
		transition: 300ms all;
	}
	.checkbox input:hover + .checkmark,
	.checkbox input:focus + .checkmark,
	.radiobox input:hover + .checkmark,
	.radiobox input:focus + .checkmark {
		background-color: #eee;
		border: 1px solid #333;
	}
	.checkbox input:checked + .checkmark,
	.radiobox input:checked + .checkmark {
		background-color: #009999;
		border: 1px solid #007575;
	}

	.radiobox, .radiobox .checkmark {
		border-radius: 50%;
	}

/*! 
 * Base typography and text colors
 */

html {
	/*font: normal 14px/23px arial, sans-serif;*/
}

html, body {
	color: #777;
}

form label.overTxtLabel {
	padding: 5px 0 0 5px;
	color: #2d2b0d;
	font-weight: normal;
}

h1 {
	font-size: 170%;
	font-weight: normal;
	font-family: Museo500Regular, tahoma, arial;
	color: #579b98;
}
	h1 a {
		color: #579b98; 
	}
	
h2 {
	font-size: 136%;
}
	form h2 {
		border-bottom: 1px dotted #ccc;
		padding-bottom: 0.3em;
	}

h3 {
	font-size: 118%;
}

h4 {
	font-size: 104%;
}

h5 {
	font-size: 100%;
}

h6 {
	font-size: 90%;
}

a {
	color: #00AAA4;
}

	a:hover {
	}
	
	a.active {
	}
	
	a.active:hover {
	}
	
/*! 
 * Layout
 */

#system_messages {
	margin: 0 auto;
	position: relative;	
	list-style: none;
	overflow: hidden;
	background: #fff;
	width: auto;
	clear: both;
	z-index: 2;
	padding: 0;
	border: 0;	
	zoom: 1;
}
	#system_messages .message {
		box-shadow: inset 0px 2px 10px #777;
		margin: 0 0 30px 0;
		text-align: center;
		background: #aaa;
		font-size: 16px;
		padding: 15px;
		border: 0;
		color: #fff;
	}


html, body {
	background: #009999;
}

#container {
}

.container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	zoom: 1;
	max-width: 1140px;
}
	
header {
	position: relative;
	background: #fff;
	z-index: 2;
}
	header .container {
		padding-bottom: 10px;
	}
	
	header .header-part1 {
		background: #02181c url('/skin/header-background.jpg') no-repeat center top;
		min-height: 88px;
		text-align: center;
		font-size: 18px;
		color: #fff;
	}
		.attention-donation {
			padding: 15px 0 0 0;
		}
			.attention-donation .label {
				color: #64c6c5;
			}
	
	header .header-part2 {
	}
		
	header #logo {
		/*background: url('/skin/logo.png?v2') no-repeat left top;
		text-indent: -2000px;*/
		position: relative;
		overflow: hidden;
		height: 174px;
		display: block;
		margin-top: -64px;
		margin-right: 90px;
		max-width: 316px;
	}
		header #logo img {
			max-width: 100%;
		}

footer {
	position: relative;
}
	footer .container {
		padding: 30px 0;
	}
		footer, footer a {
			color: #fff;
			text-decoration: none;
		}
			footer .active a {
				text-decoration: underline;
			}
		footer nav {
			line-height: 19px;
			margin-left: 15px;
		}
		footer #copyright {
			margin-right: 15px;
			text-align: right;
			position: absolute;
			right: 0;
			top: 30px;
		}
#content {
	position: relative;
	background: #fff;
	border-bottom: 1px solid #99c1c1;
	box-shadow: 0 0 20px #006767;
	z-index: 1;
}
	#content .container {
		padding: 8px 0 30px 0;
	}

#languagemenu {
	display: block;
	position: absolute;
	top: 20px;
	right: 0;
	padding: 0 15px;
}

/*! 
 * Mainmenu
 */
#mainmenu {
	position: absolute;
	padding: 0 15px;
	font-size: 15px;
	/* margin-left: 175px; */
	top: 59px;
	right: 0;
}
	#mainmenu .menu-item-link {
		font-family: Museo500Regular, tahoma, arial;
		line-height: 52px;
		padding: 0 10px;
		color: #000;
		text-decoration: none;
	}
	#mainmenu .submenu .separator {
		display: none;
	}
	#mainmenu .mainmenu-left,
	#mainmenu .mainmenu-right {
		float: left;
	}
		/* Mainmenu left side */
		#mainmenu .mainmenu-right {
			margin-left: 10px;
		}
		#mainmenu .mainmenu-left li.active > a,
		#mainmenu .mainmenu-left li:hover > a {
			text-decoration: none;	
			color: #bccd01;
		}
		
		/*!
		 * Mainmenu right side 
		 */
		#mainmenu .mainmenu-right .separator {
			height: 52px;
			border-left: 1px solid #077d7b;
			border-right: 1px solid #26c3c0;
		}
		#mainmenu .mainmenu-right a {
			color: #c4f1f0;
			text-decoration: none;
		}
		#mainmenu .mainmenu-right li.active > a,
		#mainmenu .mainmenu-right li:hover > a {
			text-decoration: none;	
			color: #fff;
			background-position: right -70px;
		}
	
		#mainmenu .mainmenu-right .menu-item-link {
			background: #15b4b1 url('/skin/indicator.png') no-repeat right 15px;
			padding: 0 40px 0 15px;
			line-height: 52px;
		}
			#mainmenu .mainmenu-right .menu-item.first .menu-item-link {
				border-radius: 5px 0 0 5px;
			}
			#mainmenu .mainmenu-right .menu-item.last .menu-item-link {
				border-radius: 0 5px 5px 0;
			}
			#mainmenu .mainmenu-right .contains-submenu:hover .menu-item-link {
				border-radius: 0;
			}
			#mainmenu .mainmenu-right .first.contains-submenu:hover .menu-item-link {
				border-radius: 5px 0 0 0;
			}
			#mainmenu .mainmenu-right .last.contains-submenu:hover .menu-item-link {
				border-radius: 0 5px 0 0;
			}
			
		#mainmenu .mainmenu-right .submenu {
			background: #15b4b1;
			border-radius: 0 0 5px 5px;
			min-width: 160px;
		}
			#mainmenu .mainmenu-right .last .submenu {
				left: auto;
				right: 0;
			}
			#mainmenu .mainmenu-right .submenu .submenu-item-link {
				padding: 10px;
			}
			#mainmenu .mainmenu-right .submenu-item.last .menu-item-link {
				border-radius: 0 0 5px 5px;
			}
			#mainmenu .mainmenu-right .submenu .separator {
				height: 0;
				border: 0;
				display: block;				
				overflow: hidden;
				border-top: 1px solid #077d7b;
				border-bottom: 1px solid #26c3c0;
				float: none;
			}

/*! 
 * Footermenu
 */
 
#footermenu .separator {
	margin: 0 5px;
}

/*! 
 * Submenu (sidebar)
 */
 
#submenu li {
	border-bottom: 1px solid #eee;
}
	#submenu li.last {
		border-bottom: 0;
	}
		#submenu li a {
			padding: 5px 0 5px 0;
			color: #837B77;
			text-decoration: none;
		}
		#submenu li.active > a {
			color: #579b98;
			text-decoration: none;
			font-weight: bold;
		}
	#submenu li .menu-depth2 {
		display: none;
	}
	#submenu li.active .menu-depth2 {
		display: block;
	}

/*! 
 * Newsletter
 */
.newsletter {
	position: relative;
	background: #eee;
	padding: 2%;
}
	.newsletter-title {
		text-align: center;
	}
	.newsletter-inside {
		position: relative;
		max-width: 600px;
		background: #fff;
		padding: 20px;
		margin: 0 auto;
		box-shadow: 1px 1px 3px #aaa;
	}
	.newsletter img {
		max-width: 100%;
	}

/*! 
 * Paging
 */
 
.paging {
	margin: 0 15px;
}
	.paging li {
		position: relative;
		margin: 0 3px 3px 0;
	}
		.paging a {
			border: 1px solid #ccc;
			border-radius: 2px;
			min-width: 20px;
			text-align: center;
			line-height: 25px;
			color: #666;
			padding: 0 5px;
		}
			.paging li.active > a,
			.paging li:hover > a {
				background-color: #1bbab7;
				color: #fff;
				text-decoration: none;
				border-color: #1abab7;
				text-shadow: 0px -1px 0px #056765;
				border-bottom-color: #056765;
				box-shadow: inset 0 1px rgba(255,255,255,0.3);
			}
			
/*! 
 * Banners
 */

ul.banners {
	list-style: none;
	padding: 0;
	margin: 0;
}
		
/*! 
 * Newsarticle
 */

.newsarticle .module-header-coverphoto {
	max-height: 380px;
}

.newsarticle .entry-meta {
	display: none;
}
.newsarticle .article_section_media {
	text-align: center;	
}
	.newsarticle .article_section_media.align-left {
		float: left;
		margin: 0 1em 1em 0;
	}
	.newsarticle .article_section_media.align-right {
		float: right;
		margin: 0 0 1em 1em;
	}
.newsarticle .media {
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	margin: 0 0 -15px 0;
}
	.newsarticle .media li {
		height: 75px;
		overflow: hidden;
		position: relative;
		float: left;
		margin: 0 15px 15px 0;
	}
		.newsarticle .media li img {
			max-width: 99px;
		}

/*! 
 * Modules
 */
 
.module {
	position: relative;
	display: block;
	margin: 0 15px 30px 15px;
	border: 1px solid #E0DFDF;
	background: #fff;
	padding: 20px;
	zoom: 1;
	
	-webkit-box-shadow: 0 0 10px #f1f1f1;
	-moz-box-shadow: 0 0 10px #f1f1f1;
	-o-box-shadow: 0 0 10px #f1f1f1;
	box-shadow: 0 0 10px #f1f1f1;
	
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}
	.module-unstyled {
		border: 0;
		padding: 0;	
		
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-o-box-shadow: none1;
		box-shadow: none;
		
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		-o-border-radius: 0;
		border-radius: 0;	
	}
	.module-theme-green {
		background-color: #009c99;
		border-color: #009c99;
		color: #fff;
	}
	.module-theme-yellowgreen {
		background-color: #c0d332;
		border-color: #c0d332;;
		color: #fff;
	}
	.module-theme-blue {
		background-color: #016f85;
		border-color: #016f85;
		color: #fff;
	}
	.module-theme-black {
		background-color: #000;
		border-color: #000;
		color: #fff;
	}
	.module-theme-green h1,
	.module-theme-blue h1,
	.module-theme-yellowgreen h1 {
	    color: #fff;
    }
	.module-header {
		position: relative;
		padding: 20px 20px 0 20px;
		margin: -21px -21px 10px -21px;
		min-height: 140px;
		
		-webkit-border-radius: 8px 8px 0 0;
		-moz-border-radius: 8px 8px 0 0;
		-o-border-radius: 8px 8px 0 0;
		border-radius: 8px 8px 0 0;
	}
		.module-header-coverphoto {
			position: relative;
			overflow: hidden;
			max-height: 180px;
			min-height: 105px;
			text-align: center;
			background: #eee;
			margin: -20px -20px 10px -20px;
			
			-webkit-border-radius: 8px 8px 0 0;
			-moz-border-radius: 8px 8px 0 0;
			-o-border-radius: 8px 8px 0 0;
			border-radius: 8px 8px 0 0;
		}
			.module-header-coverphoto img {
				width: 100%;
				max-width: 100%;
			}
		.module-header-icon {
			position: relative;
			margin-top: -44px;
			text-align: center;
			color: #777;
			text-transform: uppercase;
			font-size: 11px
		}
			.module-header-icon img {
				margin-bottom: 5px;
			}
	.module-content {
		position: relative;
	}
		.module-content img {
			max-width: 100%;
			margin-bottom: 1em;
		}
		
	.module-banner {
		overflow: hidden;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-o-border-radius: 8px;
		border-radius: 8px;
	}
		.module-banner img {
			width: 100%;
		}

	.module-galleryindex {
		position: relative;
	}
		.module-galleryindex .gallery {
			position: relative;
			overflow: hidden;
			list-style: none;
			padding: 0;
			margin: 0;
		}
			.module-galleryindex .gallery li {
				position: relative;
				float: left;
				height: 97px;
				overflow: hidden;
				margin: 0 1% 1% 0;
			}
			    .module-galleryindex .gallery li img {
					width: auto;
					vertical-align: top;
					height: 97px;
                }
                
	.module-search .search_results ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
		.module-search .search_results ul li {
			margin: 0 0 1em 0;
			border-bottom: 1px solid #eee;
			padding: 0 0 1em 0;
		}
			.module-search .search_results ul li .description {
				margin-bottom: 0.2em;
			}


.block-logos {
}
	.block-logos ul {
		position: relative;
		overflow: hidden;
	}
		.block-logos ul li {
			position: relative;
			overflow: hidden;
			float: left;
			width: 33%;
		}
			.block-logos .images a {
				display: block;
				padding: 10px;
			}
				.block-logos ul li img {
					max-width: 100%;
				}
				
.acties .actie {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
	.acties .actie.last {
	    border: 0;
	    padding-bottom: 0;
	    margin-bottom: 0;
	}
		.acties .actie img {
			padding: 4px;
			box-shadow: 1px 1px 4px #aaa;
			max-height: 300px;
			margin: 0 10px 10px 0;
			max-width: 300px;
		}

#wishcounter {
    text-align: right;
    position: relative;
    background: #E2B815;
    color: #fff;
    padding: 10px;
    font-size: 15px;
    display: block;
    text-decoration: none;
}
	#wishcounter.hidden {
		display: none;
	}

#wishcounter a {
    color: #fff;
}

#wishcounter .number_of_wishes,
#wishcounter .number_of_stories {
    font-weight: bold;
    font-size: 19px;
    padding: 0 5px
}

.gallery .feature-unconsented {
	display: inline-block;
	height: 97px;
	width: 129px;
	padding: 0;
}
	.gallery .feature-unconsented p {
		text-align: center;
		font-size: 80%;
		line-height: normal;
		margin-top: -2em;
	}
.tag-unconsented-facebook-video,
.tag-unconsented-youtube-video,
.tag-unconsented-vimeo-video {
	padding: 58% 0 0 0;
	background: #000;
	color: #fff;
	position: relative;
}
	.tag-unconsented-facebook-video p,
	.tag-unconsented-youtube-video p,
	.tag-unconsented-vimeo-video p {
		position: absolute;
		top: 50%;
		left: 10px;
		right: 10px;
		text-align: center;
		margin-top: -1em;
	}
	.tag-unconsented-facebook-video a,
	.tag-unconsented-youtube-video a,
	.tag-unconsented-vimeo-video a {
		color: #009c99
	}

@media screen and (min-width: 1006px) {
    #wishcounter {
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 0 0 0 20px;
        padding: 3px 10px 10px 15px;
        line-height: 15px;
        max-height: 75px;
        overflow: hidden;
    }
    #wishcounter .number_of_wishes {
        font-size: 30px;
        line-height: 30px;
        display: block;
        padding: 0;  
    }
    #wishcounter .number_of_stories {
    	padding: 0;
    	font-size: inherit;
    }
    #wishcounter .breakable {
        display: block;
    }
}

/*!
 * Responsiveness!
 */

@media screen and (max-width: 1006px) {
    #mainmenu .mainmenu-right {
        position: absolute;
        top: -127px;
        right: 15px;
    }
}
@media screen and (max-width: 760px) {
    #mainmenu {
        position: relative;
        margin: 0;
        top: auto;
        right: auto;
    }
    #mainmenu .mainmenu-right {
        top: -180px;
    }
    #mainmenu .mainmenu-left a {
    	line-height: 40px;
    }
	header .header-part1 {
		min-height: 129px;
		text-align: right;
		padding-right: 15px;
	}
}
@media screen and (max-width: 480px) {

	#wishcounter {
		display: none;
	}
	header .header-part1 {
		/* min-height: 103px; */
		/* line-height: 34px; */
		font-size: 15px;
	}
	#languagemenu {
		top: -70px;
		left: 0;
		right: auto;
	}
	#mainmenu .mainmenu-left {
		display: none;
	}
	#mainmenu .mainmenu-left .menu {
		padding: 5px;
		background: #eee;
	}
	#mainmenu .arrow {
		display: block;
		width: 0;
		height: 0;
		border: 15px solid #eee;
		border-top-color: transparent;
		border-left-color: transparent;
		border-right-color: transparent;
		position: absolute;
		top: -30px;
		right: 6px;
	}
	#mainmenu .burgermenu {
		display: block;
		width: 40px;
		height: 36px;
		background: #579b98;
		position: absolute;
		right: 15px;
		top: -95px;
		border-radius: 5px;
		padding-top: 4px;
	}
		#mainmenu .burgermenu span {
			display: block;
			background: #fff;
			height: 5px;
			margin: 4px 5px;
			border-radius: 2px;
		}
	#mainmenu.active .mainmenu-left {
		display: block;
	}
	#mainmenu .burgermenu:hover {
		background: #336C6A;
	}
	#mainmenu.active .burgermenu {
		background: #bccd01;
	}
	#mainmenu .burgermenu:hover span,
	#mainmenu.active .burgermenu span {
		background: #fff;
	}
	
    #mainmenu .mainmenu-left,
    #mainmenu .mainmenu-left li {
        float: none;
    }
    #mainmenu .mainmenu-left li a {
        background-color: #f2f2f2;
        margin-bottom: 2px;
        line-height: normal;
        padding: 10px;
	}
    #mainmenu .mainmenu-left li.active > a,
	#mainmenu .mainmenu-left li:hover > a {
		background-color: #bccd01;
		color: #fff;
	}
	form .indent {
		padding-left: 0;
	}
	.block-logos ul li {
    	width: 50%;
    }
}


@media screen and (max-width: 390px) {
	header #logo {
		margin-top: -55px;
	}
	#mainmenu .burgermenu {
		top: -100px;
	}
	#mainmenu .mainmenu-right {
        top: -189px;
    }
}
