/*
THEME NAME: Doorbraak theme 3
THEME URI: http://www.motionmill.com
DESCRIPTION: Rich with powerful and dynamic semantic class selectors, Sandbox is a canvas for CSS artists. Based on the sandbox theme and added html5 and boilertemplate specs. Ready for custom post types and custom meta boxes 
VERSION: 3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
AUTHOR: <a href="http://motionmill.com/">Rafa&euml;l Balrak</a>
AUTHOR URI:
TAGS: one-column, two-columns, right-sidebar, fluid-layout, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, translation-ready
*/


/* Two-column with sidebar on left from the /examples/ folder  */
@import url('examples/2c-r.css');
/*this does not work if you place it after the reset ... */

/********************
*		RESET		*
********************/
/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, figure, footer, header, 
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; vertical-align:baseline; background:transparent; outline:none; }

ins { /*background-color:#ff9;*/ color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% sans-serif; }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color:#000; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color:#f63509; }
a:hover { color:#f57255; }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; font-size: 110%;}


small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 


/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999em; overflow:hidden; background-repeat: no-repeat; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.stickyclass {display: inherit;}
.bypostauthor {display:inherit;}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}
/* hide some stuff */
div.skip-link {
position:absolute;
right:1em;
top:1em;
display:none;
}
nav#nav-above {
margin-bottom:1em;
display:none;
}

nav#nav-below {
margin-top:1em;
display:none;
}
div.date {
display:none;
}
.mobile-only {
	display:none;
}


/********************
*	 STRUCTURE		*
********************/
body {font-family:'Merriweather', 'Georgia', 'Times New Roman', serif;font-size:1em;line-height:1.5;}
header#header {}
h1#blog-title {margin:0;}
h1#blog-title {
    background: url("images/logo-doorbraak-web.png") no-repeat scroll 0 0 / cover transparent;
    font-size: 24px;
    height: 102px;
    text-indent: -9999px;
    width: 305px;
}
h1#blog-title a {
    display: block;
    height: 102px;
    width: 305px;
}

div#content {
	margin:0 26.833% 0 0;
}
div#container{
	margin:0 -26.833% 0 0;
}

/********************
 * *       width: 23.75%              *
 * ********************/


aside.sidebar {
	width:305px;
}
#top-advertisement-area {
	margin:2em 0;
	text-align: center;
}
#top-advertisement-area ins {
	background-color:transparent;
}
#top-advertisement-area .doorb-adlabel {
	display:none;
}
.header-search {
	clear:both;
	float:right;
}
.header-search input[type="search"] {
	border:2px solid #ebebeb;
	padding:.5em;
	line-height: 1;
}
.header-search input[type="search"]::placeholder {
	text-transform: uppercase;
	color:#686564;
	font-size:.75em;
}
.header-search .search-submit {
	color:#686564;
}

aside#footer-widgets {
	background-color:#ebebeb;
	padding:4em 0;
	margin-top:2em;
}
@media screen and (max-width:768px) {
	aside#footer-widgets {
		display:none;
	}
}
span#generator-link {
	float:right;
}
span#copyright {
	float:left;
}

/********************
*	 CLASSES		*
********************/
.clear {
	clear:both;
}
.alignright,img.alignright{
float:right;
margin:0 0 0 1em;
}

.alignleft,img.alignleft{
float:left;
margin:0 1em 0 0;
}

.aligncenter,img.aligncenter{
display:block;
margin:0 auto 1em auto;
text-align:center;
}
.entry-title,.entry-meta {
clear:both;
}
footer.edit-link{clear:both;}
.btn {
	border-radius:0;
	border:none;
}
.btn-primary {
	background-color:#f63509;
	color:#fff!important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	background-color:#000;
}
.red {
	color:#f63509;
}
.well {
	background-color: #f8f8f8;
	padding: 2em;
	border:none;
	border-radius:none;
	box-shadow: none;
}
/*civicrm forms*/

/*added 22/02/2019 by Motionmill*/
.crm-container .crm-title h1 {
	font-size:1.2rem;
	margin-bottom: 1rem;
}
.crm-container .crm-section {
    margin-bottom: 1rem;
    padding: .25rem;
}
/*end edit*/

#crm-container.crm-public .label,
.crm-container fieldset label,
.crm-container .crm-section .label {
	color:#000!important;
	border:none;
	
	/*added 22/02/2019 by Motionmill*/
	float: left;
	width: 30%;
	min-height: 1px;
	font-weight: 700;
	font-size: 100%;
	text-align: left;
	padding: 0;
	line-height:1.5;
	/*end edit*/
}

/*added 22/02/2019 by Motionmill*/
.crm-container .crm-section .edit-value.content {
    float: left;
    width: 70%;
}
/*end edit*/
div.crm-container label {
	word-wrap: break-word;
	white-space: -moz-normal;
	white-space: normal;
}

.crm-container .crm-section #noOfparticipants .label {
	float:none;
	width:auto;
}

@media screen and (max-width:768px) {
	.crm-container .crm-section .edit-value.content,
	.crm-container .crm-section .label {
		float:none!important;
		width:100%!important;
		padding:0;
	}
	.crm-container .crm-section .content {
		margin-left:0!important;
	}
	.crm-container div.form-item {
		padding-bottom:30px!important;
	}

}
.crm-container input.crm-form-radio {
	margin-right:.5em;
	vertical-align:middle;
}
#crm-container.crm-public .price-set-row input[type="radio"] {
	margin-right:.5em;
}
/********************
*	 CONTENT STYLES	*
********************/
#footer {
	font-family:'open sans', helvetica, arial, sans-serif;
	padding:1em 0;
	font-size:.75em;
	color:#666;
}
#footer a {
	text-decoration: underline;
	color:#666;
}
#footer a:hover {
	color:#f63509;
}
#breadcrumbs {
	font-family:'open sans', helvetica, arial, sans-serif;
	font-size:.75em;	
	color:#999999;
	margin-bottom: 2em;
}
#breadcrumbs a {
	color:#999999;
	text-decoration:underline;
}
#breadcrumb a:hover {
	color:#f63509;
}
div.entry-content p, div.textwidget p, div.entry-content table {
	margin-bottom:1.5em;
}
div.entry-content ul li {
	margin-left:1em;
	font-size: 115%;
}
div.entry-content ol {margin-left:2em;}

div.entry-content h2 {
	font-size:1.25em;
	margin-bottom:.5em;
	margin-top:1em;
}
div.entry-content h3 {
	font-size:1.2em;
	margin-bottom: .5em;
	margin-top:1em;
}
div.entry-content *:first-child {
	margin-top:0;
}
.entry-content img,
.widget img,
img {
	max-width:100%;
	height:auto;
}
.inline-post-thumbnail {
	float:left;
	margin:0 1em .25em 0;
	max-width: 300px;
}
.post-thumbnail {
	margin-bottom:.5em;
}
.post-thumbnail .aligncenter img {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.inline-post-thumbnail img,
.post-thumbnail img {
	-webkit-filter: grayscale(50%);
	filter:grayscale(50%);
	display:block;
	margin-bottom:.5em;
}

.site-info-block a {
	color:#ebebeb;
	text-decoration: underline;
}
.site-info-block a:hover {
	color:#fff;
}
.article-taxonomy {
	font-family:"open sans", helvetica, arial, sans-serif;
	font-size:.7em;
	margin-bottom:1.2em;
	font-weight:600;
}

.article-taxonomy::after {
	content: '';
	display: block;
	height: 4px;
	width: 100px;
	margin: 0;
	margin-top: 7px;
	background: #f63509;
	position:relative;
	z-index: 10;
}
.article-taxonomy a {
	color:#f63509;
	text-transform: uppercase;
}

article.hasthumbnail .article-taxonomy {
	position:relative;
	margin-bottom:-4px;
}
div.entry-content h3.block-title,
h3.block-title,
h3.book-info-title,
.doorb-adlabel,
h3.advertisement-title,
h3#reply-title,
h3.author-title,
.comments-title {
	font-family:"open sans", helvetica, arial, sans-serif;
	font-size:1.3em;
	margin-bottom:0;
	font-weight:600;
	text-transform:uppercase; 
	position:relative;
}
h3.block-title::after,
h3.book-info-title::after,
.doorb-adlabel::after,
h3.advertisement-title::after,
h3#reply-title::after,
.comments-title::after,
h3.author-title::after {
	content: '';
	display: block;
	height: 4px;
	width: 100px;
	margin-top: 7px;
	background: #f63509;
	margin-bottom:-4px;
}
.author-info{
	padding:2em 0;
}
.author-info .author-info-content {
	background-color:#f8f8f8;
	padding:2em;
	font-family:'open sans', helvetica, arial, sans-serif;
	font-size:1em;
}
.author-info-content .author-short-bio {
	margin-bottom:1.5em;
}
.author-info-content h4 {
	margin-bottom:1em;
}
img.avatar,
.author-info .avatar {
	border-radius:50%;
}
.more-artikeltype-articles {
	font-family:'open sans', helvetica, arial, sans-serif;
	font-size:.9em;
	clear:both;
}
.author-info .doorbraak-support::before {
	background:none;
	display:none;
}
h2.page-title {
	font-size:1.5em;
	background-color:#f5f5f5;
	padding:1em;
	text-transform:uppercase;
	font-family:'open sans', helvetica, arial, sans-serif;
	margin-bottom:1em;
}
h2.entry-title {
	font-size:2.2em;
	margin-top:.5em;
	margin-bottom:.5em;
	hyphens: auto;
}
h3.entry-title {
	font-size:1.5em;
	margin-top:.5em;
	margin-bottom:.5em;
	word-wrap: break-word;
	line-height: 1.5;
}
div.archive-item.featured-article h3.entry-title
/*h3.entry-title.sticky-title*/ {
	font-size:1.75em;
}
h3.entry-title a {
	color:#231f20;
}
h3.entry-title a:hover {
	color:#f63509;
	text-decoration:none;
}
div.article-subtitle {
	color: #666;
	font-size: 1.1em;
	font-weight: 700;
	margin-bottom: 1em;
	margin-top: -.5em;
}
article.standpunt .inner div.article-subtitle {
	color:#fff;
}
article .entry-meta .author {
	font-size:.7em;
	display:block;
	text-align: right;
	position:absolute;
	right:0;
	bottom:1em;
	font-style: italic;
	font-weight:300;
}
article .entry-meta .author a {
	font-weight:300;
	color:#999999;
	font-style: italic;
}
.archive-item article.hentry {
	border-bottom:4px solid #ebebeb;
	padding-bottom:1em;
	margin-bottom:2em;
	position:relative;
}

@media screen and (max-width:767px) {
	.archive-item article .inner {
		overflow:hidden;
	}
	
	.archive-item article .inner .article-info {
		float: left;
		display: block;
		margin-right: 3.84696%;
		width: 30.76869%;
	}
	.archive-item article .inner .article-content {
		float: left;
		display: block;
		margin-right: 0;
		width: 65.38435%;
	}
	.archive-item h3.standpuntquote,
	div.archive-item.featured-article h3.entry-title,
	.archive-item.featured-article h3.entry-title,
	.archive-item h3.entry-title {
		margin-top:0;
		font-size:1.25em;
	}
	.archive-item div.article-subtitle {
		font-size:1.1em;
	}
}
@media screen and (max-width:415px) {
	.archive-item article .inner .article-content .entry-content {
		display:none;
	}
	.archive-item h3.standpuntquote,
	div.archive-item.featured-article h3.entry-title,
	.archive-item.featured-article h3.entry-title,
	.archive-item h3.entry-title {
		margin-top:0;
		font-size:1em;
	}
	.archive-item div.article-subtitle {
		font-size:1em;
	}

	
	
}
.single-entry-meta {
    font-family: 'open sans',helvetica,arial,sans-serif;
    font-size: 1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom:2em;
}
.single-article-type-icon {
	float:left;
	height:19px;
	width:auto;
	margin-right:.5em;
}
article.standpunt .single-entry-meta {
	padding:1em;
	background-color:#f63509;
	color:#fff;
}

/* article.vrije-tribune .single-entry-meta,
article.paralipomena .single-entry-meta {
	padding:1em;
	background-color:#ccc;
}
article.essay .single-entry-meta {
	padding:1em;
	background-color:#ebebeb;
}*/
article.standpunt .single-entry-meta .article-type-title {
	color:#fff;
}
article.standpunt .single-entry-meta a {
	color:#fff;
}
.single-author {
	margin-left:1em;
	font-family:'merriweather', georgia, 'times new roman', serif;
	text-transform:none;
	font-style:italic;
	font-weight:300;
}
.single-author a {
	font-weight:300;
	font-style: italic;
	text-decoration:underline;
}
.single-author a:hover {
	color:#000;
}
.doorb-tussentekst-advertenties {
	text-align: center;
	margin-bottom:1.5em;
}
.doorb-adlabel {
	text-align: left;
}
#bottom-article-adspace {
    padding: 2em 0 0 0;
}
#bottom-article-adspace .advertisement-content {
	background-color:#f5f5f5;
	padding:2em;
}

.doorb-adlabel,
h3.advertisement-title {
	color:#999;
	font-weight:400;
	font-size:.85em;
}
.doorb-adlabel::after,
h3.advertisement-title::after {
	background:#999;
}
.footerbar .doorb-adlabel {
	display:none;
}
#book-details {
	margin-bottom: 2em;
}
.book-info-content {
	background-color:#f5f5f5;
	padding:2em;
}
.archive-item article.standpunt,
.archive-item article.essay,
.archive-item article.sprekershoek,
.archive-item article.paralipomena,
.archive-item article.vrije-tribune {
	border-bottom:none;
	padding-bottom:0;
}
.archive-item article.standpunt footer.entry-meta,
.archive-item article.essay footer.entry-meta,
.archive-item article.sprekershoek footer.entry-meta,
.archive-item article.paralipomena footer.entry-meta,
.archive-item article.vrije-tribune footer.entry-meta {
	display:none;
}

.archive-item article.paralipomena .inner,
.archive-item article.vrije-tribune .inner {
	background-color:#ccc;
	padding:2em;
	height:97%;
	height:calc(100% - 1.5em);
}
.archive-item article.standpunt .inner {
	padding:2em;
	background-color:#f63509;
	color:#fff;
	height:97%;
	height:calc(100% - 1.5em);
}
.archive-item article.sprekershoek .inner,
.archive-item article.essay .inner {
	background-color:#ebebeb;
	padding:2em;
	height:97%;
	height:calc(100% - 1.5em);
}

.article-type-heading {
	padding:1em;
	background-color:#ccc;
	text-align:center;
	margin-bottom:1.5em;
}
.article-type-heading .single-entry-meta {
	margin-bottom:0;
	padding:0;
}
article.standpunt .article-type-heading .single-entry-meta {
	padding:0;
}
.article-type-heading.standpunt {
	background-color:#f63509;
	color:#fff;
}
.article-type-heading.standpunt .standpuntquote {
	padding:.5em;
}
.article-type-heading.standpunt a,
.article-type-heading.standpunt .article-type-title {
	color:#fff;
}
.article-type-heading.standpunt .article-type-title span {
	border-color:#fff;
}
.article-type-heading.sprekershoek,
.article-type-heading.essay {
	background-color:#ebebeb;
}

@media screen and (max-width:767px) {
	.archive-item article.paralipomena .inner,
	.archive-item article.vrije-tribune .inner,
	.archive-item article.essay .inner,
	.archive-item article.sprekershoek .inner,
	.archive-item article.standpunt .inner {
		padding:1em;
	}
}
.archive-item article.standpunt .post-thumbnail,
.archive-item article.essay .post-thumbnail,
.archive-item article.sprekershoek .post-thumbnail,
.archive-item article.paralipomena .post-thumbnail,
.archive-item article.vrije-tribune .post-thumbnail {
	display:block;
}
.taxonomy-icon {
	text-align: center;
}

.taxonomy-icon img {
	height:25px;
	width:auto;
}
.article-type-title {
	text-transform: uppercase;
	font-family: 'open sans', helvetica, arial, sans-serif;
	font-weight:700;
	text-align: center;
	color:#000;
	font-size:.75em;
}
.article-type-title.hasicon span {
	border-top:2px solid #000;
}
.archive-item article.standpunt .article-type-title {
	color:#fff;
}
.archive-item article.standpunt h3.entry-title a {
	color:#fff;
}
.archive-item article.standpunt h3.entry-title a:hover {
	color:#ebebeb;
}
.archive-item article.standpunt .article-type-title.hasicon span {
	border-top:2px solid #fff;
}


.special-author-display {
	text-align:center;
	margin:1em 0;
	font-style:italic;
	font-weight:300;
}
.special-author-display a {
	font-style: italic;
	font-weight:300;
}
@media screen and (max-width:415px) {
	.special-author-display {
		margin:.25em 0 0 0;
		font-size:.6em;
	}
	
	.archive-item .article-type-title {
		font-size:.6em;
	}
	.archive-item .taxonomy-icon img {
	    height: 25px;
		margin-bottom: .25em;
	}
	.archive-item .article-type-title.hasicon span {
		border-width:3px!important;
		word-wrap: break-word;
		display: block;
	}
}
.archive-item .published {
	font-family: 'open sans',helvetica,arial,sans-serif;
	font-size: .8em;
	text-transform: uppercase;
	color: #666666;
	display:block;
	margin-bottom:1em;
}
.archive-item article.standpunt .published {
	color:#fff;
}
.archive-item article.standpunt .special-author-display a {
	color:#fff;
	text-decoration:underline;
}
.archive-item article.standpunt .special-author-display a:hover {
	color:#000;
}
blockquote.pullquote, aside.pullquote, div.pullquote {
	color:#999!important;
}
blockquote.pullquote p::before, aside.pullquote p::before, div.pullquote p::before,
.standpuntquote::before {
    color:#f63509;
    content: "\2018";
}
blockquote.pullquote p::before, aside.pullquote p::before, div.pullquote p::before {
	color:#f63509;
	font-size:1.2em;
	margin-right:.25em;
	line-height: 1;
}
blockquote.pullquote p, aside.pullquote p, div.pullquote p,
.standpuntquote {
    font-size: 1.5em;
    font-style: italic;
    padding: 1em;
    font-weight:400;
    line-height: 1.5;
}
blockquote.pullquote p, aside.pullquote p, div.pullquote p {
	color:#999!important;
	border:none!important;
	font-size:1.5em;
}
h3.standpuntquote a {
	color:#f63509;
	text-decoration:none;
}
article.standpunt h3.standpuntquote a {
	color:#fff;
	text-decoration: none;
}

blockquote.pullquote p::after, aside.pullquote p::after, div.pullquote p::after,
.standpuntquote::after {
    color:#f63509;
    content: "\2019";
}
blockquote.pullquote p::after, aside.pullquote p::after, div.pullquote p::after {
	color:#f63509;
	font-size:1.2em;
	margin-left:.25em;
	line-height: 1;
}
.single-post-meta {
	border-top:4px solid #ebebeb;
	border-bottom:4px solid #ebebeb;
	padding:1em 0;
	margin: 0;
	font-family: 'open sans', helvetica, arial;
	font-size: .9em;
}
.single-post-meta a {
	font-weight:600;
	color:#000;
	text-decoration: underline;
}
.single-post-meta a:hover {
	color:#f63509;
}
.doorbraak-tags::before,
.doorbraak-author::before,
.doorbraak-categories::before,
.doorbraak-support::before,
.doorbraak-people::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background-size: cover;
    float: left;
    margin-right: 1em;
    margin-top: 7px; 
 }
 .doorbraak-tags::before {
    background-image: url("images/tag_red.png");
 }
.doorbraak-author::before {
    background-image: url("images/lees-meer-van-red.png");
 }
.doorbraak-categories::before {
	background-image: url("images/categorie_red.png");
	width:36px;
}
.doorbraak-support::before {
	background-image: url("images/steun-doorbraak-red.png");
}
.doorbraak-people::before {
	background-image: url("images/avatar-red.png");
}
.doorbraak-tags,
.doorbraak-support {
	margin-bottom:1.5em;
}

.featured_caption {
    color: #999;
    font-size: .95em;
    font-style: italic;
    font-weight: 300;
    text-align: right;
    margin-bottom: 1em; 
 }
.credit_caption {
    font-size: .7em;
}
.inline-post-thumbnail .featured_caption {
	text-align:center;
	margin-bottom:0;
	font-size:.75em;
	margin-top:.5em;
}
.inline-post-thumbnail .credit_caption {
	text-align:center;
}
#author-heading {
    padding-bottom: 2em;
    border-bottom: 4px solid #f5f5f5;
    margin-bottom: 2em;
}
.civievent-widget-event {
	font-family:'open-sans', helvetica, arial, sans-serif;
	font-size:.9em;
	margin-bottom:1.5em;
}
.civievent-widget-event .civievent-widget-event-start-date {
	color:#f63509;
	text-transform:uppercase;
}
.civievent-widget-stripe .civievent-widget-event-odd,
.civievent-widget-stripe .civievent-widget-event-even {
	background:transparent!important;
}
.civievent-widget-event .civievent-widget-event-start-time,
.civievent-widget-event .civievent-widget-event-end-time {
	color:#686564;
	text-transform:uppercase;
}
.civievent-widget-stripe .civievent-widget-event-datetime, .civievent-widget-stripe .civievent-widget-event-title,
.civievent-widget-stripe .civievent-widget-event {
	display:block!important;
	padding:0!important;
}
.civievent-widget-event .civievent-widget-event-datetime {
	display:block;
	font-size:.9em;
}
.civievent-widget-event .civievent-widget-infolink a {
	color:#000;
	text-decoration:underline;
}
.civievent-widget-event .civievent-widget-infolink a:hover {
	color:#f63509;
}
.civievent-widget-stripe .civievent-widget-event-odd .civievent-widget-reglink a {
	background-color:#888;
	color:#fff;
}
.search-results #container article.hentry {
    padding: 1.5em 0;
}
.search-results #container article.hentry h3.entry-title {
	font-size:1.2em;
}
.search-results #container .entry-date {
    color: #999;
    float: left;
    margin-right: 1em;
}
.search-results #container article.hentry span.author {
	display:block;
	position: static;
	font-size:inherit;
	display:inline;
	text-align: left;
}
search-results #container .entry-meta {
	font-size:.9em;
}

/*PRINT & PDF*/
.pdfprnt-bottom-left {
    border-bottom: 4px solid #f5f5f5;
    border-top: 4px solid #f5f5f5;
}
.pdfprnt-button.pdfprnt-button-pdf img,
.pdfprnt-button.pdfprnt-button-print img {
	display:none!important;
}
.pdfprnt-button.pdfprnt-button-pdf::before {
    content: "\f1c1";
    font-family: fontawesome;
    display: inline-block;
    width: 30px;
    height: 30px;
}
.pdfprnt-button.pdfprnt-button-print::before {
	content: "\f02f";
    font-family: fontawesome;
    display: inline-block;
    width: 30px;
    height: 30px;
}
/**IN DE KIJKER**/
#in-de-kijker {
	font-family:'open sans', helvetica, arial, sans-serif;
	background-color:#f5f5f5;
	background-image:url("images/indekijker-bg.png");
	background-repeat: no-repeat;
	background-position:right 1em;
	padding:1.5em;
}

#in-de-kijker h3.indekijker-title {
	text-transform: uppercase;
	font-size:1.5em;
	margin-top:.5em;
	margin-bottom:1em;
}
ul#spotlight-articles {
	list-style-type: none;
	margin-left:0;
}
ul#spotlight-articles li {
	list-style-type: none;
	margin-bottom: 0em;
}

ul#spotlight-articles h4.spotlight-article-title{
	font-size:.9em;
	font-weight:600;
	margin-bottom:1.5em;
	line-height: 1.2;
} 
ul#spotlight-articles h4.spotlight-article-title a {
	color:#000;
}
ul#spotlight-articles h4.spotlight-article-title a:hover {
	color:#f63509;
	text-decoration:none;
}
ul#spotlight-articles h4.spotlight-article-title span.author {
	font-family:'merriweather', georgia, 'times new roman', serif;
	font-size:.9em;
	white-space: nowrap;
	font-style:italic;
	font-weight:300;
	color:#999;
}
ul#spotlight-articles h4.spotlight-article-title span.author a {
	text-decoration: underline;
	color:#999999;
	font-style: italic;
	font-weight:300;
}
ul#spotlight-articles .spotlight-article-content {
	float: left;
	display: block;
	margin-right: 0;
	width: 65.38435%; 
}
ul#spotlight-articles .spotlight-article-thumbnail {
	float: left;
	display: block;
	margin-right: 3.84696%;
	width: 30.76869%;
}
h3.widgettitle,
.footerbar h3.widgettitle {
	font-family:"open sans", helvetica, arial, sans-serif;
	text-transform: uppercase;
	font-weight:600;
	color:#999;
	font-size:.8em;
	margin-bottom:2em;
}
h3.widgettitle::after,
.footerbar h3.widgettitle::after {
	content: '';
	display: block;
	height: 4px;
	width: 100px;
	margin: 0;
	margin-top: .75em;
	background: #999;
}

aside.sidebar h3.widgettitle {
	font-size:.85em;
	margin-bottom:-4px;
	position:relative;
	z-index: 1;
}
aside.sidebar li.widget > div {
	background-color:#f5f5f5;
	padding:2em;
}
aside.sidebar li.doorb-widget h3.widgettitle,
aside.sidebar li.cartoon-widget h3.widgettitle {
	margin-bottom:0;
}
aside.sidebar li.doorb-widget > div,
aside.sidebar li.cartoon-widget > div {
	padding:0;
}
aside.sidebar li.doorb-widget div.doorb-adlabel {
	display:none;
}
aside.sidebar li.widget_analytic-bridge-popular-posts ul {
	background-color:#f5f5f5;
	padding:2em;
	margin:0;
}
aside.sidebar li.widget_analytic-bridge-popular-posts ul li {
	margin-bottom:.75em;
	padding-bottom:.75em;
	border-bottom:1px solid rgba(0,0,0,.05);
	list-style-type: none;
}
aside.sidebar li.widget_analytic-bridge-popular-posts ul li h5 {
	font-family:'open sans', helvetica, arial, sans-serif;
}
@media screen and (max-width:768px) {
	aside.sidebar {
		display:none;
	}
}
#site-info {
	padding:2em 0;
	background-color:#1c1c1b;
	color:#ebebeb;
	font-size:.7em;
	font-family:"open sans", helvetica, arial, sans-serif;
}
#site-info .social-icon {
	background-color: #a09e9d;
	display: inline-block;
	margin: .5em;
	line-height: 1;
	text-align: center;
	width: 30px;
	padding: 0.45em 0;
}
#site-info .social-icon a {
	color:#000;
	display:block;
}
#site-info .backtotop {
	display:inline-block;
}
#site-info .backtotop a {
	border: 2px solid #f63509;
	padding: .25em;
	display: block;
}

/*boek*/
dl.view {
	margin-bottom: 1.5em;
}
dl.view dt {
	line-height: 20px;
	width: 160px;
	float: left;
	margin: 0 0 0 0;
}
dl.view dd {
	text-align: left;
	/*width: 30em;*/
	margin-left: 160px;
	line-height: 20px;
}
/********************
*	 MENU			*
********************/
#top-menu {
	float:right;
	font-family: "open sans", helvetica, arial, sans-serif;
	margin-bottom:1em;
}
#top-menu ul {
	margin-left:0;
	list-style-type: none;
}
#top-menu ul li {
	float:left;
	margin-left:1em;
}
#top-menu ul li a {
	font-size:.75em;
	display:block;
	padding:.2em .5em;
	text-transform: uppercase;
	color:#6f6f6f;
	text-decoration: underline;
}
#top-menu ul li a:hover {
	color:#f63509;
	text-decoration: underline;
}
#top-menu li.rss {
	background-color:#000;
}
#top-menu li.facebook,
#top-menu li.twitter {
	background-color:#686564;
}
#top-menu li.rss a,
#top-menu li.facebook a,
#top-menu li.twitter a {
	color:#fff;
	width:28px;
	padding:.45em 0;
	text-align: center;
}
#top-menu ul li.btn.btn-primary a {
	color:#fff!important;
	text-decoration:none;
}
#top-menu ul li.btn.btn-primary a:hover {
	color:#fff!important;
}

#top-menu li.rss a:hover,
#top-menu li.facebook a:hover,
#top-menu li.twitter a:hover {
	color:#fff;
} 
#top-menu ul ul {
	background:#fff;
	padding:0 1em;
	border:1px solid #ebebeb;
}
#top-menu ul ul li {
	float:none;
	margin-left:0;
}
#top-menu ul ul li a {
    text-transform: none;
    color: #000;
    text-decoration: none;
    font-weight: 600; 
    padding:.5em;
}
#top-menu ul li ul {
left:-999em;
position:absolute;
z-index:10;
}
#top-menu ul li:hover ul {
left:auto;
}
/*****/
nav#main-navigation {
	border-top: 4px solid #ebebeb;
	border-bottom: 4px solid #ebebeb;
	background-color:#fff;
	margin:1em 0;
}
nav#main-navigation.navbar-fixed-top {
	margin-top:0;
}
.admin-bar nav#main-navigation.navbar-fixed-top {
	margin-top:28px;
}

div#menu {
width:100%;
overflow: hidden;
z-index:10;
}

div#menu ul,div#menu ul ul {
line-height:1;
list-style:none;
margin:0;
padding:0;
}

div#menu ul a {
display:block;
margin-right:1em;
padding:0.75em 0.5em;
text-decoration:none;
color:#000;
font-family:"open sans", helvetica, sans-serif;
text-transform: uppercase;
font-weight:700;
}
div#menu ul > li > a:hover {
	color:#f63509;
}
div#menu ul li.menu-item-has-children > a::after  {
	content:"\f078";
	font-family:'fontawesome';
	color:#f63509;
	margin-left:.5em;
}

div#menu ul ul li {
	border-bottom:1px solid #ebebeb;
}
div#menu ul ul li:last-child {
	border:none;
}
div#menu ul li.doorbraak-boeken {
	float:right;
}

div#menu ul li.doorbraak-boeken a {
	background-color:#f63509;
	color:#fff;
}
div#menu ul li.doorbraak-boeken a:hover {
	background-color:#000;
}
div#menu ul ul a {
	text-transform: none;
	padding:1em .5em;
}
div#menu ul ul a:hover {
	color:#f63509;
}
div#menu ul ul ul a {
font-style:italic;
}

div#menu ul li ul {
left:-999em;
position:absolute;
z-index:100;
}

div#menu ul ul li {
	float:none;
}
div#menu ul ul {
	background:#fff;
	padding:0 1em;
	border:1px solid #ebebeb;
}
div#menu ul li:hover ul {
left:auto;
}
/**/

/* WATERMARKS ARTIKELTYPE */


#watermark-sprekershoek{
   background:url(https://doorbraak.be/wp-content/uploads/2017/07/sprekershoek-e1502276748753.png) no-repeat; 
   position: relative;
   top: 0;
   left: 0;
}
#beeld{
   width: 100px;
   height: 100px;
   position: relative;
   top: 0;
   left: 0;
}


/* OVERLAY OP FOTO IN OVERZICHT - VERDWIJNT I*/

@media all and (min-width:769px) {
  .foto-overlay {
    position: absolute;
    top: 22px;
    right: 0px;
    background-color: #f63509;
    color: black;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    opacity: 0.9;
  }
  .premium-overlay {
    position: absolute;
    top: 40px;
    left: 0px;
    background-color: #f63509;
    color: black;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    opacity: 0.9;
  }
}

@media all and (max-width:768px) {
  .foto-overlay {
    display:none;
    position: absolute;
    top: 180px;
    left: 0px;
    background-color: #f63509;
    color: black;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    opacity: 0.9;
  }
  .premium-overlay {
    display:none;
    position: absolute;
    top: 40px;
    left: 0px;
    background-color: #f63509;
    color: black;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    opacity: 0.9;
  }
}



/* COMMENTS */ 
#comments {
	padding-top:2em;
	font-family:'open sans', helvetica, arial, sans-serif;
	font-size:.9em;
}
.comment-meta.commentmetadata {
	margin-bottom:3em;
}
ol.comment-list {
	background-color: #f8f8f8;
	list-style-type: none;
	margin-bottom:2em;
	margin-left: 0;
	padding: 2em;
}
ol.comment-list li {
	padding-bottom:2em;
}
#comments ol.children {
	list-style-type: none;
	background-color: rgba(0,0,0,.1);
	padding: 2em;
	margin: 1em 0 1em 1em;
	}
.comment-author .avatar {
	border-radius:50%;
	float:left;
	margin:0 1em 1em 0;
}

#respond {
	padding:2em 0;
}
#comments .reply {
	padding:1em 0;
}
a.comment-reply-link {
    text-transform: uppercase;
    color: #000;
    text-decoration: underline;
    font-weight: 700;
}

form#commentform {
	border:4px solid #f8f8f8;
	padding:2em;
}
form#commentform .form-label {
margin:1em 0 0;
}
form#commentform label {
	display:block;
}
form#commentform span.required {
background:#fff;
color:#c30;
}

form#commentform p {
padding:0;
}
#comments input#author, #comments input#email, #comments input#url, #comments textarea#comment {
padding:0.2em;
background-color:#f0f0f0;
border:none;
width:98%;
width:calc(100% - 0.4em);
}
form#commentform .comment-form-author,
form#commentform .comment-form-email,
form#commentform .comment-form-url {
	float:left;
	width:30%;
	margin-right:1em;
	margin-bottom:1em;
}
form#commentform .comment-form-url {
	margin-right:0;
}

form#commentform input[type="submit"] {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: none;
border-radius: 0;

color:#fff;
background-color:#000;
text-transform:uppercase;
font-family: 'open sans', helvetica, arial, sans-serif;

margin-bottom:1em;	
}
form#commentform input[type="submit"]:hover {
	background-color:#999;
}
.comment-subscription-form input[type="checkbox"] {
	vertical-align: middle;
	margin:0;
}
.comment-subscription-form .subscribe-label{
	font-weight:400;
	font-size:.85em;
}

) 
div.comments ol li {
margin:0 0 3.5em;
}
#comments textarea#comment {
height:13em;
margin:0 0 0.5em;
overflow:auto;
}


input:not([type=submit]):not([type=file]):not([type=button]),
textarea,
select {
	border: 2px solid #ebebeb;
	padding: .5em;
	line-height: 1;
}
input[type="submit"], input[type="button"], button {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: none;
border-radius: 0;

color:#fff;
background-color:#f63509;
text-transform:uppercase;
font-family: 'open sans', helvetica, arial, sans-serif;

margin-bottom:1em;	
}

input[type="submit"]:hover, input[type="button"]:hover, button:hover {
	background-color:#000;
}
/*theme my login*/
.tml label {
	display:inline!important;
	font-weight:normal;
}
.tml .form-table th, 
.tml .form-table td {
	padding:.5em;
}
/*gallery*/
div.gallery {
clear:both;
height:180px;
margin:1em 0;
width:100%;
}

p.wp-caption-text{
font-style:italic;
}

div.gallery dl{
margin:1em auto;
overflow:hidden;
text-align:center;
}

div.gallery dl.gallery-columns-1 {
width:100%;
}

div.gallery dl.gallery-columns-2 {
width:49%;
}

div.gallery dl.gallery-columns-3 {
width:33%;
}

div.gallery dl.gallery-columns-4 {
width:24%;
}

div.gallery dl.gallery-columns-5 {
width:19%;
}


/*pagination navigation*/
div#nav-images {
margin:1em 0;
}

nav.navigation {
height:1.25em;
}

nav.navigation div.nav-next {
float:right;
text-align:right;
}

aside.sidebar h3 {
font-size:1.2em;
}

aside.sidebar input#s {
width:7em;
}

aside.sidebar li {
list-style:none;
margin:0 0 2em;
}

aside.sidebar li form {
margin:0.2em 0 0;
padding:0;
}

aside.sidebar ul ul {
margin:0 0 0 1em;
}

aside.sidebar ul ul li {
list-style:disc;
margin:0 0 0 1px;
}

aside.sidebar ul ul ul {
margin:0 0 0 0.5em;
}

aside.sidebar ul ul ul li {
list-style:circle;
}

div#menu ul li,div.gallery dl,nav.navigation div.nav-previous {
float:left;
}

nav.navigation div {
width:50%;
}

div.gallery *,aside.sidebar ul {
margin:0;
padding:0;
}
/************************
*		PAGINATION		*
*************************/
.pagination {
clear:both;
padding:20px 0;
position:relative;
font-size:11px;
line-height:13px;
}

.pagination span, .pagination a {
display:block;
float:left;
margin: 2px 2px 2px 0;
padding:6px 9px 5px 9px;
text-decoration:none;
width:auto;
color:#fff;
background: #ccc;
}

.pagination a:hover{
color:#fff;
background: #f63509;
}

.pagination .current{
padding:6px 9px 5px 9px;
background: #f63509;
color:#fff;
}


/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Prevent iOS, WinMobile from adjusting font size */
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } 
}
@media only screen and (max-width: 768px) {
	
	/* Make sure main menu re-appears when scaled up */
	.no-mobile {
		display: none;
		visibility: hidden;
	}
	.mobile-only {
		display: block;
		visibility: visible;
	}
	
	h1#blog-title {
		margin: .5em auto;
		float:none;
	}
	header#header {
		margin-left: 0;
	}
	#header hgroup {
		float:left;
	}
	.header-search {
		margin: 27px auto;
		text-align: center;
		float:none;
		display:none;
	}
	section#top-advertisement-area {
		margin:.5em auto;
	}
	div#access {
		float:right;
	}
	div#content {
		margin:0;
	}
	div#container {
		margin:0;
	}
	aside.sidebar {
		width:100%;
		clear:both;
		margin-top: 2em;
	}

	span#copyright {
		font-size:80%;
	}


	.footerbar li.widget {
    float: none;
    list-style-type: none;
    margin-right: 0;
    margin-bottom: 1em;
    width: 100%;
	}
	aside.footerbar{ 
		padding: 2em 1em;
	}
	.footer-logo {
		margin-bottom:1.5em;
	}
	div.column {
		float:none;
		width:100%;
	}
	.blockContent {
		padding:0 5%;
	}
	div#topbar nav#top-menu {
		float:none;
	}
	div#topbar nav#top-menu ul.menu {
		margin-left: 0;
	}


	.footercolumn {
	    float: none;
	    margin-right: 0;
	    width: auto;
	}

	div.articleswrap article {
	    float: none;
	    margin-bottom: 3%;
	    margin-right: 0;
	    width: 100%;
	}

	.articleWrap div.entry-content {
    float: none;
    margin-left: 0;
    width: 100%;
}
	p#breadcrumbs {
		display:none;
	}
	span#copyright, span#generator-link {
	display:block;
	float:none;
	text-align: center;
	}
	.callout {
		margin-bottom: 1em;
	}
	div.entry-content textarea {
		max-width: 95%;
	}
	div.entry-content select {
		max-width:100%;
	}
	
	h2.page-title, h2.entry-title, div.entry-content h1 {
		font-size: 180%;
		line-height: 1.2;
    	padding-bottom: 0.5em;
	}

	
	div.childpages h3.entry-title {
	   	font-size: 1.5em;
	    line-height: 1.2;
	}
	div.entry-content img.size-medium,div.entry-content img.size-large, div.entry-content img.size-full  {
		width:100%;
		height:auto;
	}
	#gallery-1 img {
    border: 2px solid #CFCFCF;
    height: auto;
    width: 98%;
	}
	#gallery-1 .gallery-caption {
    font-size: 60%;
    line-height: 1.2;
    margin-left: 0;
}
	#header {
		margin-bottom: 1em;
	}
	nav#main-navigation-container {
    	float: none;
		width: 100%;
		padding:.5em 0;
	}
	div#access {
		float:none;
		text-align: left;
	}
	.mobile-only {
		display: block;
		visibility: visible;
	}
	div#mobile-menu {
		display:block;
		visibility: visible;
	}
	div#mobile-menu ul.menu {
		border-top: 1px solid #fff;
	    display: none;
	    margin-left: 0;
	    padding: 0.4em;
	    background:#fff;
	    list-style-type: none;
	}	
	div#mobile-menu ul.menu a {
		text-decoration: none;
		color:#000;
		font-size: 110%;
		font-family: "open sans",helvetica,sans-serif;
	}
	div#mobile-menu ul.menu a:hover {
		color:#f63509;
	}
	div#mobile-menu ul.menu li.menu-item-has-children > a::after {
		content: "\f078";
	    font-family: 'fontawesome';
	    color: #f63509;
	    margin-left: .5em;
		
	}
	div#mobile-menu ul li ul {
	left:-999em;
	position:absolute;
	}
	
	div#mobile-menu ul ul li {
		float:none;
	}
	div#mobile-menu ul ul {
	}
	div#mobile-menu ul li:hover ul {
	left:0;
	position:relative;
	}

	#pull { 
		background: #fff;
		background: url("images/icon-mobile.png") no-repeat scroll 0 12px / 30px 28px #fff;
		color: #000;
		cursor: pointer;
		display: inline-block;
		height: 52px;
		line-height: 52px;
		margin: 0;
		padding-left: 2.5em;
		text-decoration: none;
		visibility: visible;
		font-weight: 700;
		text-transform: uppercase;
		font-family: "open sans",helvetica,sans-serif;
		/*border-top: 4px solid #ebebeb;
		border-bottom: 4px solid #ebebeb;	*/
	    }
	#main-navigation .search-form {
		float:right;
		padding:.5em 0;
		text-align:right;
	}
	#main-navigation .search-form input#s {
		max-width:120px;
	}
	#main-navigation .search-form button.search-submit {
    	color: #686564;
    	padding:0;
	} 
	#menu { 
		display: none; 
		visibility:hidden;
	}
	input[type=submit] {
    	-webkit-appearance: none;
 	   border-radius: 0;
}

}
@media only screen and (min-width: 769px) {
	div#mobile-menu ul.menu {
		display: block !important;
	}
}
@media only screen and (max-width: 1450px) {
		#spotlight {
			height:326px;
		}
	}
.pt-checkout-form button {
background-color: #f63509;
}

.pt-checkout-form {
width: 100%;
}

/*
 * lees later stylen
 *
 */

#read-later-articles {
    list-style: none;
}

#read-later-articles li {
    border-bottom: solid 1px darkgrey;
    margin: 5px 0;
}

#read-later-articles li img {
    width: 100px;
}

#read-later-articles li .article-block {
    display: inline-block;
}

#read-later-articles li .article-block:first-child {
    width: 18%;
}

#read-later-articles li .article-block {
    width: 80%;
}

#read-later-articles li .article-block .article-meta {
    color: grey;
    font-style: italic;
    padding-right: 10px;
    font-size: 10px;
}

.read-later-icon{
    padding-right: 5px;
}

.before-read-later-button {
    float: left;
    margin-bottom: 0!important;
    margin-top: 7px;
    margin-right: 5px;
}

.delete-article-button {
    display: none;
}

.delete-article-button i, #read-later-items .fa-star {
    color: gold;
}

/*Custom profile page*/

.custom-profile input[type="text"], .custom-profile input[type="number"], .custom-profile input[type="password"], .custom-profile input[type="email"], .custom-profile select {
    border-radius: 6px !important;
    margin: 5px 0 15px 0;
    padding: .7em !important;
    border: 1px solid #ebebeb!important;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    color: #444;
    font-size: 14px;
    line-height: normal;
    box-sizing: border-box;
    width: 100%;
}

.custom-profile input[type="email"] {
    background-color: white;
}

.subtext {
    font-size: 10px;
}

.custom-profile input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
}

.custom-profile h2 {
    margin: 1em 0 !important;
    text-align: center;
}

#crm-main-content-wrapper .action-link {
    display: none;
}

#same_address_box {
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 2px 5px #f63509;
}

.custom-profile {
    position: relative;
}

.profile-overlay {
    display: none;
    opacity: 0.5;
    position: absolute;
    top: 40%;
    left: 40%;
}

.loader {
    margin: 20px auto;
    border: 16px solid #f63509;
    border-top: 16px solid #ffffff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*CiviCRM CSS*/

#crm-container #printer-friendly {
    display: none;
}

#crm-main-content-wrapper .action-link {
    display: none;
}


/* *********************************
 * Video overlay
 * *********************************/

