/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Outdated Browser
   ========================================================================== */

.chromeframe {
    margin: 0;
    background: #C00;
    color: #FFF;
    padding: .5em 0;
	text-align: center;
}
.chromeframe a {
	color: #FFF;
	text-decoration: underline;
}

#outdated{display:none;position:fixed;top:0;left:0;width:100%;text-align:center;text-transform:uppercase;z-index:1500;background-color:#C00;color:#fff;padding:15px;}* html #outdated{position:absolute}#outdated h6{font-size:25px;line-height:25px;margin:0 30px 15px 30px}#outdated p{font-size:12px;line-height:12px;margin:0}#outdated #btnUpdateBrowser{display:block;position:relative;padding:10px 20px;margin:15px auto 0;width:230px;color:#fff;text-decoration:none;border:2px solid #fff;cursor:pointer}#outdated #btnUpdateBrowser:hover{color:#C00;background-color:#fff}#outdated .last{position:absolute;top:10px;right:25px;width:20px;height:20px}#outdated #btnCloseUpdateBrowser{display:block;position:relative;width:100%;height:100%;text-decoration:none;color:#fff;font-size:36px;line-height:36px}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

html,
body {
	min-width: 320px;
}
body.navMainOpen,
body.overlayOpen,
html.swipebox-html body {
	overflow: hidden;
}
.baseSpacer {
    padding-left: 20px;
    padding-right: 20px;
}
.pushOut {
    margin-left: -20px;
    margin-right: -20px;
}



#wrapper {
	position: relative;
	min-height: 100vh;
	display: -ms-flexbox;
    display: flex;
	-ms-flex-direction: column;
    flex-direction: column;
}

#main {
	-ms-flex-positive: 1;
	flex-grow: 1;
    margin-top: 80px;
}

#content {
	/*overflow: hidden;*/
    padding-top: 2em;
}

@media (min-width:1280px) {
    .baseSpacer {
        padding-left: 5%;
        padding-right: 5%;
    }
	.pushOut {
		margin-left: -5.5555%;
		margin-right: -5.5555%;
	}
}
@media (min-width:1440px) {
    .baseSpacer {
        padding-left: 10%;
        padding-right: 10%;
    }
	.pushOut {
		margin-left: -12.5%;
		margin-right: -12.5%;
	}
}
@media (min-width:1680px) {
	.baseSpacer {
		padding-left: 15%;
		padding-right: 15%;
	}
	.pushOut {
		margin-left: -21.429%;
		margin-right: -21.429%;
	}
}

#header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 99;
    height: 80px;
	padding-right: 10px;
    transition: all .2s;
}
#header.isAtTop {
    height: 80px;
    box-shadow: 0 0 10px rgba(0,0,0,0);
}

@media (max-width:959px) {
    #header {
        box-shadow: 0 0 10px rgba(0,0,0,0.21);
    }
}

@media (min-width:960px) {
    #header {
        margin-top: -120px;
    }
    #header,
    #header.isOverBreakpoint,
    #header.isAtTop {
        height: 120px;
    }
    #header.fixedShow,
    #header.isOverBreakpoint,
    #header.isAtTop {
        margin-top: 0;
    }
	#header.fixedShow {
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}
	#header.isAtTop {
		box-shadow: none;
	}

    #main {
        margin-top: 120px;
    }
	#header.hasMainNav + #main {
		margin-top: 180px;
	}
}
@media (min-width:1280px) {
    #header {
        padding-right: 30px;
    }
}

#logoWrap {
    position: absolute;
    display: table;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
#logoWrap #logo {
    display: table-cell;
    vertical-align: middle;
}
#logoWrap img {
    height: 60px;
	display: block;
}

#navMenuTrigger {
	float: left;
    position: relative;
    color: inherit;
    padding: 20px 0 20px 50px;
    height: 60px;
    margin-top: 10px;
    cursor: pointer;
    z-index: 101;
    transition: top .2s, color .2s;
}

#navMenuTrigger:before,
#navMenuTrigger:after,
#navMenuTrigger .line {
    position: absolute;
    content: '';
    display: block;
    height: 2px;
    left: 20px;
    background: #333;
    transition: all .2s;
}
#navMenuTrigger:before {
    width: 25px;
    top: 20px;
}
#navMenuTrigger:after {
    width: 20px;
    bottom: 20px;
}
#navMenuTrigger .line {
    width: 30px;
    top: 50%;
    margin-top: -1px;
}
#navMenuTrigger:hover:before,
#navMenuTrigger:hover:after,
#navMenuTrigger:hover .line {
	background: #c20d20;
}
#navMenuTrigger:hover {
	color: #c20d20;
}
#navMenuSwitch:checked ~ #wrapper #navMenuTrigger .line {
    opacity: 0;
    width: 0;
}
#navMenuSwitch:checked ~ #wrapper #navMenuTrigger:before {
    transform: rotate(45deg);
    transform-origin: 0 0;
    width: 26px;
}
#navMenuSwitch:checked ~ #wrapper #navMenuTrigger:after {
    transform: rotate(-45deg);
    transform-origin: 0 100%;
    width: 26px;
}

#navMenuTrigger .menu {
    display: none;
}

#navMenuTrigger .menu,
#navMenuTrigger .close {
    font-size: 12px;
	line-height: 20px;
    padding-left: 10px;
}
#navMenuTrigger .close {
    display: none;
}
#navMenuSwitch:checked ~ #wrapper #navMenuTrigger .menu {
    display: none;
}
#navMenuSwitch:checked ~ #wrapper #navMenuTrigger .close {
    display: block;
}

#navMenuBackground {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: visibility 0.2s, opacity 0.2s;
    z-index: 100;
}
#navMenuSwitch:checked ~ #wrapper #navMenuBackground {
    visibility: visible;
    opacity: 1;
}
#headerWrap {
    position: fixed;
    top: 0;
    height: 100%;
    width: calc(100% - 40px);
    margin-left: -100%;
    padding: 80px 20px 20px 20px;
    transition:margin-left 0.3s;
    background: #fff;
    z-index: 100;
}
#navMenuSwitch:checked ~ #wrapper #headerWrap {
    margin-left: 0;
}

#headerWrap .wrap {
    position: relative;
    height: 100%;
    overflow: auto;
}
@media screen and (min-width:640px) {
	#navMenuTrigger .menu,
	#navMenuTrigger .close {
		font-size: 15px;
	}
    #headerWrap {
        width: 480px;
        margin-left: -480px;
    }
}
#headerWrap nav + nav {
    margin-top: 40px;
}
#headerWrap nav a {
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.333em;
	padding-top: .333em;
	padding-bottom: .333em;
	transition: color .2s;
}
#headerWrap nav a:hover {
	color: #c20d20;
}
#headerWrap ul ul {
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#headerWrap #navMain a.lvl1 {
    font-size: 1.5em;
	line-height: 1.3333;
}
#headerWrap #navMain li.lvl1 + li {
    margin-top: 20px;
}
#headerWrap #navSonst a.lvl2 {
    font-size: .75em;
}

@media (min-width:480px) {
	#navMenuTrigger .menu {
        display: block;
    }
}
@media (min-width:960px) {
    .fixedShow #navMenuTrigger,
    .isOverBreakpoint #navMenuTrigger,
    .isAtTop #navMenuTrigger {
		margin-top: 30px;
    }

    .isOverBreakpoint #headerWrap,
    .fixedShow #headerWrap,
    .isAtTop #headerWrap {
        padding-top: 120px;
    }

}

@media (min-width: 1280px) {
	 #navMenuTrigger {
        left: 20px;
    }
	#headerWrap nav > ul {
        padding-left: 20px;
    }
}

#headerWrap .iconMenuTriggerDwn {
    position: relative;
    display: inline-block;
    right: 0;
    width: 36px;
    height: 1em;
	padding-left: 10px;
}
#navMain a.lvl1 .iconMenuTriggerDwn,
#navSonst a.lvl1 .iconMenuTriggerDwn {
	vertical-align: -.1667em;
}
#headerWrap .iconMenuTriggerDwn:before,
#headerWrap .iconMenuTriggerDwn:after {
    content: '';
    display: block;
    position: absolute;
    background: #d4af37;
    width: 16px;
    height: 2px;
    transform-origin: 50% 50%;
    top: 50%;
    left: 50%;
    margin-top: -1px;
	margin-left: -8px;
    transition: transform 0.3s;
}
#headerWrap .iconMenuTriggerDwn:after {
    transform:rotate(90deg);
}
#headerWrap .iconMenuTriggerDwn.active:before {
    transform:rotate(-180deg);
}
#headerWrap .iconMenuTriggerDwn.active:after {
    transform:rotate(0deg);
}

#navHeaderBottom .uLvl2 {
    display: none;
}
#navHeaderBottom {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
	color: #fff;
}


@media (min-width:960px) {
    #navHeaderBottom {
        display: block;
        margin-top: 120px;
	}
	#navHeaderBottom:after {
		z-index: -1;
		height: 20px;
		width: 100%;
		position: absolute;
		content: '';
		display: block;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
		left: 0;
		bottom: 0;
		transition: box-shadow .3s;
	}
	#header.isAtTop #navHeaderBottom:after {
		box-shadow: none;
	}
	#navHeaderBottom .uLvl1 {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    #navHeaderBottom .uLvl1 > li {
        display: table-cell;
    }
    #navHeaderBottom li a {
        display: block;
        position: relative;
        padding: 10px 0;
		font-size: 25px;
		line-height: 40px;
		font-weight: 700;
		height: 60px;
        text-align: center;
		color: #fff;
        text-decoration: none;
        transition: color .2s;
    }
    #navHeaderBottom li:hover > a,
    #navHeaderBottom li a.active {
        color: #333;
    }
	#navHeaderBottom li a.hasSubs:after {
		position: absolute;
		left: 50%;
		bottom: 0;
		margin-left: -.5em;
		content: '';
		border-style: solid;
		border-color: transparent transparent #fff transparent;
		border-width: 0 .5em .5em;
		display: block;
		opacity: 0;
		transition: opacity .2s;
		z-index: 1;
	}
	#navHeaderBottom li:hover > a.hasSubs:after {
		opacity: 1;
	}

	#navHeaderBottom li a .label {
        position: relative;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipses;
        display: inline-block;
		padding-right: 1em;
		padding-right: calc(10px + 1em);
		max-width: 100%;
    }
	#navHeaderBottom li a .label .icon {
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -.5em;
		line-height: 1;
		width: 1em;
	}
	#navHeaderBottom .uLvl2 {
		position: absolute;
		left: 0;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		background: #fff;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
		max-height: 0;
		overflow: hidden;
		transition: max-height .2s cubic-bezier(0,.8,0,.8);
	}
	#navHeaderBottom .uLvl2 > li {
		flex: 1 1 auto;
	}

	#navHeaderBottom .uLvl2 > li a {
		padding: 10px;
		font-size: 1em;
		font-weight: 700;
		color: #333;
	}
	#navHeaderBottom li:hover > .uLvl2 {
		max-height: 1000px;
		transition: max-height .2s cubic-bezier(.8,0,.8,0);
	}
	#navHeaderBottom .uLvl2 > li a:hover {
		color: #c20d20;
	}
}


/* Sprache & Suche */
#languageSelect,
#quickSrcBoxWrap {
	float:right;
	padding: 20px 0;
	margin: 0;
	position: relative;
	font-size: 12px;
}

#languageSelect .ident,
#siteSearchTrigger,
#languageSelect .item {
	line-height: 20px;
	display: block;
	padding: 10px;
	font-weight: 700;
}
#languageSelect .ident {
	cursor: pointer;
}
#languageSelect .ident:hover,
#siteSearchTrigger:hover {
	color: #c20d20;
}
#languageSelect .ident .active {
	position:relative;
	padding: 0;
	display: block;
	float: right;
}
#languageSelect .ident .active .long,
#languageSelect .ident .active .icon {
	display: none;
}
#languageSelect .ident .active .short,
#languageSelect .ident .active .long {
	padding-left: 5px;
}
#siteSearchTrigger .icon,
#languageSelect .ident > .icon {
	font-size: 20px;
	line-height: 20px;
	float: left;
}
#languageSelect .langs {
	visibility: hidden;
	position: absolute;
	right: 0;
	padding: 0;
	top: 20px;
	box-shadow: none;
	transition: padding 0s .3s, box-shadow .3s, opacity .3s, visibility 0s .3s;
	background: #fff;
	min-width: 100%;
	opacity: 0;
	pointer-events: none;
}
#languageSelect .langs li {
	background: #fff;
	width: 100%;
	overflow: hidden;
}
#languageSelect .langs .item {
	display: block;
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	left: 20px;
	opacity: 0;
	line-height: 20px;
	transition: all .3s;
}
#languageSelect .langs .item:hover {
	background: #ebebeb;
	transition-delay: 0s !important;
}

#languageSelect .langs .item img {
	display: inline-block;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 1px solid #ebebeb;
	border-radius: 10px;
	vertical-align: -5px;
}

#languageSelect .langs li:nth-child(1) .item {
	transition-delay: .15s;
}
#languageSelect .langs li:nth-child(2) .item {
	transition-delay: .25s;
}
#languageSelect .langs li:nth-child(3) .item {
	transition-delay: .35s;
}
#languageSelect .langs li:nth-child(4) .item {
	transition-delay: .45s;
}
#languageSelect .langs li:nth-child(5) .item {
	transition-delay: .55s;
}

#languageSelectSwitch:checked ~ #wrapper #languageSelect {
	z-index: 2;
}
#languageSelectSwitch:checked ~ #wrapper #languageSelect .langs {
	display: block;
	opacity: 1;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	visibility: visible;
	pointer-events: auto;
	padding: 0;
	transition: padding .3s, box-shadow .3s, opacity .3s, visibility 0s;
}
#languageSelectSwitch:checked ~ #wrapper #languageSelect .ident .active .icon {
	transform: rotate(180deg);
}
#languageSelectSwitch:checked ~ #wrapper #languageSelect .langs .item {
	left: 0px;
	opacity: 1;
}

#quickSrcBoxWrap {
	position: static;
}

#quickSrcBox {
	height: 0;
	position: absolute;
	overflow: hidden;
	left: 10px;
	right: 10px;
	top: 60px;
	transition: height .3s, width .3s, padding .3s, box-shadow .3s;
	background: #fff;
	padding: 0 80px 0 10px;
}
#siteSearchTrigger {
	text-align: center;
	transition: all .3s;
	position: relative;
	min-width: 40px;
}

#siteSearchTrigger .label {
	display: none;
	padding: 0 0 0 5px;
	float: right;
}
#siteSearchTrigger .icon {
	float: none;
}
#siteSearchTrigger .on {
	display: block;
}
#siteSearchTrigger .off {
	font-size: 15px;
}
#quickSrcBox label,
#siteSearchTrigger .off {
	display: none;
}

#srcBoxQ {
    width: 100%;
	padding: 10px 0 9px;
	margin: 0;
    line-height: 19px;
    height: 40px;
    border-bottom: 1px solid #ebebeb;
	display: block;
	border-radius: 0;
}
#srcBoxQ:focus {
	border-bottom: 1px solid #d4af37;
}

#srcBoxSubmit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 20px;
    padding: 0;
    width: 60px;
	z-index: 1;
}
#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger {
    z-index: 11;
	background: #ebebeb;
}
#siteSearchSwitch:checked ~ #wrapper #quickSrcBoxWrap {
	z-index: 2;
}
#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger .off {
	display: block;
}
#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger .on {
	display: none;
}
#siteSearchSwitch:checked ~ #wrapper #quickSrcBox {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    z-index: 10;
    height: 60px;
	padding-top: 10px;
	padding-bottom: 10px;
}

#readspeakerWrap {
	float: left;
	margin-left: 10px;
	padding: 20px 0;
}
#readspeakerWrap .rsbtn span {
	font-family: 'DINPro', sans-serif;
}
#readspeakerWrap .icon:before {
	display: block;
}
#readspeakerWrap .vcPrivacyNoPermissionTrigger {
	color: #333333;
	padding: 10px;
	display: block;
}
#readspeakerWrap .vcPrivacyNoPermissionTrigger .label {
	display: none;
	float: right;
	font-size: 12px;
	line-height: 20px;
}
#readspeakerWrap .vcPrivacyNoPermissionTrigger .icon {
	font-size: 20px;
	line-height: 1;
	float: left;
}
#readspeakerWrap .vcPrivacyNoPermissionTrigger .icon:before {
	display: block;
}
#readspeakerWrap .triggerTarget {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 60px;
	z-index: 1;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

#readspeaker {
	font-weight: bold;
	text-decoration: none;
	margin: 0;
}

#readspeaker {
	font-family: inherit !important;
}
#readspeaker.rsbtn .rsbtn_play {
	background: none;
	border: none;
	padding: 10px;
	float: right;
	height: auto;
	white-space: nowrap;
}
#readspeaker.rsbtn.rsexpanded .rsbtn_exp_inner {
	min-width: 253px;
	position: absolute;
	left: 0;
	top: 40px;
}
#readspeaker.rsbtn .rsbtn_toolpanel.vertical {
	position: absolute;
	right: 0;
	top: 40px;
}
#readspeaker.rsbtn .rsbtn_toolpanel.vertical .rsbtn_tools {
	right: 0;
}
#readspeaker.rsbtn .rsbtn_left.rsimg {
	margin-left: 0;
}
#readspeaker.rsbtn .rsbtn_play .rsbtn_right.rsimg {
	display: none;
}
#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text span {
	padding: 0;
	color: #333;
}
#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text:hover span {
	color: #c20d20;
}
#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text .label {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 20px;
	font-weight: 700;
	display: none;
	float: right;
}
#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text .icon {
	display: block;
	font-size: 20px;
	line-height: 1em;
	float: left;
}
#readspeaker.rsbtn .rsbtn_tooltoggle {
	top: 0;
	border: none;
	background: none;
	height: 100%;
	width: auto;
	display: none !important;
	color: #333;
}
#readspeaker.rsbtn .rsbtn_tooltoggle .rsicn {
	border-left: 1px solid #ebebeb;
	padding-left: 4px;
	width: auto;
	font-size: 20px;
	color: inherit;
}
#readspeaker.rsbtn .rsbtn_tooltoggle:hover .rsicn {
	color: #000;
}
#readspeaker.rsbtn .rsbtn_tooltoggle:focus span.rsicn {
	color: inherit;

}
#readspeaker.rsbtn .rs-player-loadindicator {
	left: 0 !important;
}
#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text:after,
#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text:before {
	display: none;
}
#navMenuSwitch:checked ~ #wrapper #readspeakerWrap {
	opacity: 0;
	pointer-events: none;
}

@media (min-width: 480px) {
	#siteSearchTrigger .icon {
		float: left;
	}
	#siteSearchTrigger .label {
		display: block;
	}
}
@media (min-width: 640px) {
	#languageSelect,
	#quickSrcBoxWrap,
	#readspeakerWrap .vcPrivacyNoPermissionTrigger .label {
		font-size: 15px;
	}
	#quickSrcBoxWrap {
		position: relative;
	}
	#quickSrcBox {
		left: auto;
		right: 0;
		width: 320px;
	}

	#readspeakerWrap {
		position: relative;
	}
	#readspeakerWrap .triggerTarget {
		position: absolute;
		top: 80px;
		left: 50%;
		width: 320px;
		right: auto;
		transform: translateX(-50%);
	}
}
@media (min-width: 720px) {
	#languageSelect,
	#quickSrcBoxWrap {
		margin: 0 0 0 20px;
	}

	#readspeakerWrap {
		margin-left: 30px;
	}
}
@media (min-width: 960px) {
	#languageSelect,
	#quickSrcBoxWrap,
	#readspeakerWrap {
		padding: 40px 0;
	}
	#languageSelect .ident .active .long {
		display: block;
	}

	#languageSelect .langs {
		top: 40px;
	}
	#quickSrcBox {
		top: 80px;
	}

	#languageSelect .ident .active .short {
		display: none;
	}

	#readspeaker.rsbtn .rsbtn_left.rsimg {
		margin-right: 30px;
	}
	#readspeaker.rsbtn .rsbtn_tooltoggle {
		left: auto;
		right: 10px;
		display: block !important;
	}
	#readspeaker.rsbtn .rsbtn_play .rsbtn_left .rsbtn_text .label,
	#readspeakerWrap .vcPrivacyNoPermissionTrigger .label {
		display: block !important;
		padding-left: 5px;
	}
}
@media (min-width: 1280px) {
	#languageSelect,
	#quickSrcBoxWrap {
		margin: 0 0 0 60px;
	}
	#readspeakerWrap {
		margin-left: 90px;
	}
}


/* FOOTER */
footer {
    background: #fff;
    font-size: 0.857em;
	position: relative;
	z-index: 1;
}
footer a {
	transition: color .2s;
}
footer a:hover {
	color: #c20d20;
}

#footerMain a {
    text-decoration: none;
}
#footerMain {
    margin-top: -20px;
    margin-left: -20px;
}
#footerTop .mothership,
#footerSponsors .sponsor,
#footerTop .footerLeft,
#footerTop .footerRight {
    padding: 20px;
}
#footerTop .footerWrap {
    margin: 20px -20px;
}
#footerTop .footerWrap + .footerWrap {
	position: relative;
	padding-top: 40px;
}
#footerTop .footerWrap + .footerWrap:after {
	background: #ebebeb;
	display: block;
	position: absolute;
	left: 20px;
	right: 20px;
	top: 0;
	height: 1px;
	content: '';
}
#footerTop .mothership {
	width: 66.67%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 0;
}
#footerSponsors {
	margin: -20px;
	padding: 0;
	list-style: none;
	display: -ms-flexbox;
    display: flex;
	-ms-flex-direction: row;
    flex-direction: row;
	-ms-flex-pack: center;
    justify-content: center;
}
#footerSponsors .headline {
	padding-bottom: 20px;
}
#footerSponsors .sponsor {
	width: 50%;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin: 0;
}
#footerSponsors a {
	display: block;
}

@media screen and (min-width:640px) {
	#footerTop .mothership,
	#footerTop .footerLeft {
		float: left;
		width: 50%;
		padding: 20px;
	}
	#footerTop .footerRight {
		clear: left;
	}
}

@media screen and (min-width:960px) {
    footer {
        font-size: 0.75em;
    }
	#footerTop .mothership,
    #footerTop .footerLeft,
    #footerTop .footerRight {
        float: left;
        width: 50%;
		clear: none;
    }
	#footerTop .mothership,
    #footerTop .footerLeft {
        width: 25%;
    }
	#footerSponsors .sponsor {
		width: 50%;
	}
}

#footerBottom {
    color: #fff;
}

#navStd {
    text-align: center;
    padding: 10px 0;
}
#navStd li {
    display: inline-block;
}
#navStd li .a,
#navStd li a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 20px;
    padding: 0 10px;
}
#navStd li .a:hover,
#navStd li a:hover,
#navStd li .a.active,
#navStd li a.active {
	color: #333;
}
#navStd li .a.active,
#navStd li a.active {
    font-weight: 700;
}

#footer-copyright {
    line-height: 20px;
    padding: 10px 0;
    text-align: center;
}


@media screen and (min-width:1280px) {
    #navStd {
        text-align: left;
        float: left;
        margin-left: -20px;
    }

    #navStd li {
        float: left;
    }
    #navStd li .a,
    #navStd li a {
        padding: 0 20px;
    }

    #footer-copyright {
        float: right;
        text-align: left;
    }
}

#content {
    padding-bottom: 2em;
}

/* ARTICLE / LIST / GRID */
.article,
.list {
	margin-top: 80px;
	margin-bottom: 80px;
}
.article + .article {
    margin-top: 2em;
}
.article > :first-child {
    margin-top: 0;
}
.dateText + .headline,
.subTitle + .headline {
    margin-top: 0;
}
#main > .article:first-child {
	margin-top: 40px;
}
.article .teaserWrap {
	margin-left: -20px;
	margin-right: -20px;
	padding-bottom: 100%;
	min-height: 200px;
	position: relative;
	z-index: -1;
	-webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1) 50%, rgba(0,0,0,.2) 75%, rgba(0,0,0,0) 100%);
	mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,.2) 75%, rgba(0,0,0,0) 100%);
}
.article .teaserWrap + *:not(.articleContentWrap) {
	margin-top: -100px;
}
.article .teaserWrap .teaser {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}
.article .teaserWrap .teaser li {
	height: 100%;
	width: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.article .teaserWrap .teaser li .teaserSourceUrl {
	position: absolute;
	color: #fff;
	left: 20px;
	top: 10px;
	text-shadow: 0 0 5px rgba(0,0,20,.2);
	line-height: 1;
}
.article .teaserWrap .teaserItemTitle {
	margin-left: 20px;
	margin-right: 20px;
}
#main > .article:first-child .teaserWrap:first-child {
	margin-top: -40px;
}
@media (min-width: 1280px) {
	.article .teaserWrap .teaser li .teaserSourceUrl {
		left: 40px;
		top: 20px;
	}
}

/* POPOUT */
.popout .rightCol .headline {
	text-align: center;
}
.popout .leftCol {
	margin-top: 20px;
}
.popout .rightCol .img .zoom {
	display: none;
}
.popout .rightCol .imgNone .imagesInnerWrap {
	margin: 0;
}
.popout .rightCol .imgNone .imagesInnerWrap .imgWrap {
	padding: 0;
	width: 100%;
}
.popout.ltr .rightCol .imagesWrap {
	margin-left: -20px;
	margin-right: 20px;
}
.popout.rtl .rightCol .imagesWrap {
	margin-right: -20px;
	margin-left: 20px;
}

@media (min-width: 720px) {
	#main > .article:first-child {
		margin-top: 80px;
	}
	#main > .article:first-child .teaserWrap:first-child {
		margin-top: -80px;
	}
	.article .teaserWrap {
		padding-bottom: 0;
		height: calc(100vh - 120px);
	}

	.article .teaserWrap + *:not(.articleContentWrap) {
		margin-top: calc(-25vh + 30px);
	}

	#header.hasMainNav + #main .article .teaserWrap {
		height: calc(100vh - 180px);
	}
	#header.hasMainNav + #main .article .teaserWrap + *:not(.articleContentWrap),
	#header.hasMainNav + #main .article .teaserWrap + .articleContentWrap > :first-child  {
		margin-top: calc(-25vh + 45px);
	}
}

@media (min-width: 960px) {
    .list article,
	.list .divider,
	.article:not(.tax_fullWidth),
	.pushedIn {
        margin-left: calc(100% / 12);
        margin-right: calc(100% / 12);
    }
    .article:not(.tax_fullWidth) .popout {
        margin-left: -10%;
        margin-right: -10%;
    }
	.popout > * {
        position: relative;
        float: left;
        width: 50%;
    }
	.popout .leftCol {
		margin-top: 0;
	}
    .popoutInner .vid,
    .popoutInner .teaser {
        width: 100%;
    }
    .popoutInner .teaser .swiper-slide {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-bottom: 62.5%;
    }
    .popoutInner .teaser .swiper-slide img {
        display: none;
    }
	.popout.rtl .rightCol .headline {
        text-align: left;
    }
    .popout.rtl .rightCol {
        float: right;
		padding-left: 20px;
    }
    .popout.rtl .leftCol {
		padding-right: 20px;
		text-align: right;
	}
	.popout.rtl .rightCol .imagesWrap {
		margin-left: 0;
	}

	.popout.ltr .rightCol {
		padding-right: 20px;
    }
	.popout.ltr .leftCol {
		padding-left: 20px;
		text-align: left;
	}
    .popout.ltr .rightCol .headline {
        text-align: right;
    }
	.popout.ltr .rightCol .imagesWrap {
		margin-right: 0;
	}
	.article:not(.tax_fullWidth) .teaserWrap {
		margin-left: calc(-10% - 20px);
		margin-right: calc(-10% - 20px);
	}

	.article.tax_fullWidth .main {
		width: calc((100% + 40px) / 3 * 2 - 20px);
		float: left;
	}
	.article.tax_fullWidth .aside {
		width: calc((100% + 40px) / 3 * 1 - 20px);
		padding-left: 40px;
		float: left;
	}
}
@media (min-width: 1280px) {
	.list article,
	.list .divider,
	.article:not(.tax_fullWidth),
	.pushedIn {
		margin-left: calc(100% / 6);
		margin-right: calc(100% / 6);
	}
	.article + .article,
	.article + .list {
		margin-top: 3em;
	}

	.article:not(.tax_fullWidth) .popout {
		margin-left: -25%;
		margin-right: -25%;
	}
	.popout.rtl .rightCol .imagesWrap {
		margin-right: calc((100% + 20px) / -9);
	}
	.popout.ltr .rightCol .imagesWrap {
		margin-left: calc((100% + 20px) / -9);
	}
	.article:not(.tax_fullWidth) .teaserWrap {
		margin-left: -33.333%;
		margin-right: -33.333%;
	}
	.article.tax_fullWidth .teaserWrap {
		margin-left: -5.5556%;
		margin-right: -5.5556%;
	}
}
@media (min-width: 1440px) {
	.popout.rtl .leftCol {
		padding-right: 8.333%;
	}
	.popout.rtl .rightCol .imagesWrap {
		margin-right: calc((100% + 20px) / -4);
	}
	.popout.ltr .leftCol {
		padding-left: 8.333%;
	}
	.popout.ltr .rightCol .imagesWrap {
		margin-left: calc((100% + 20px) / -4);
	}
	.article:not(.tax_fullWidth) .teaserWrap {
		margin-left: -43.75%;
		margin-right: -43.75%;
	}
	.article.tax_fullWidth .teaserWrap {
		margin-left: -12.5%;
		margin-right: -12.5%;
	}
}
@media (min-width: 1680px) {
	.popout.rtl .rightCol .imagesWrap {
		margin-right: calc((100% + 20px) / -2.333);
	}
	.popout.ltr .rightCol .imagesWrap {
		margin-left: calc((100% + 20px) / -2.333);
	}
	.article:not(.tax_fullWidth) .teaserWrap {
		margin-left: -57.1429%;
		margin-right: -57.1429%;
	}
	.article.tax_fullWidth .teaserWrap {
		margin-left: -21.429%;
		margin-right: -21.429%;
	}
}


/* Start-Grid */
#scrollBottom {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 3;
}
#scrollBottom .icon {
    font-size: 20px;
}

#startGrid {
	position: relative;
	margin-bottom: 80px;
	overflow: hidden;
	min-height: calc(100vh - 80px);
	display: -webkit-flex;
	display: flex;
}
#startGrid .imageContainerWrap {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
#startGrid .imageContainer {
	transform: translateX(-50%);
	height: 100%;
	position: absolute;
	left: 50%;
}
#startGrid .imageContainerWrap .layer {
	height: 100%;
	width: auto;
	display: block;
	-webkit-mask: url('../img/einheitsdenkmal_01klein_mask_sm.png');
	-webkit-mask-position: 50% 50%;
	-webkit-mask-size: cover;
	mask: url('../img/einheitsdenkmal_01klein_mask_sm.png');
	mask-position: 50% 50%;
	mask-size: cover;
	position: relative;
}
#startGrid .imageContainerWrap.center .layer {
	transform: translateX(-50%) !important;
	left: 50% !important;
}

#startGrid .gridSwitchLoader {
	display: block;
	width: 3em !important;
	height: 3em !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	color: #fff;
	pointer-events: none;
}
#startGrid .gridSwitchLoader .ldBar-label {
	display: none;
}
#startGrid .gridSwitchLoader path.mainline {
	stroke-width: 10;
	stroke: #cfaa32;
}
#startGrid .gridSwitchLoader path.baseline {
	stroke: transparent;
}

#startGridWrap {
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}
#startGridWrap .article {
	position: relative;
	overflow: hidden;
	transition: all .3s;
	padding: 10px 20px;
	margin: 0;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	text-decoration: none;
}
#startGridWrap .article:before {
	content: '';
	display: block;
	position: absolute;
}
#startGridWrap .article:last-child:before {
	display: none;
}
#startGridWrap .article.active {
	color: #fff;
	box-shadow: 0 0 28px rgba(0,0,0,0.25), 0 0 10px rgba(0,0,0,0.22);
	z-index: 2;
}
#startGridWrap .article .textWrap {
	z-index: 1;
	position: relative;
}
#startGridWrap .article .articleImg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0;
	z-index: 0;
	transition: all .3s .3s;
}
#startGridWrap .article .articleImg:after {
	content:'';
	position: absolute;
	display: block;
	top: 0;
	left:0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,.5);
}
@media (min-height: 480px) {
	#startGrid .imageContainerWrap .layer {
		-webkit-mask-image: url('../img/einheitsdenkmal_01klein_mask_md.png');
		mask-image: url('../img/einheitsdenkmal_01klein_mask_md.png');
	}
}
@media (min-height: 680px) {
	#startGrid .imageContainerWrap .layer {
		-webkit-mask-image: url('../img/einheitsdenkmal_01klein_mask.png');
		mask-image: url('../img/einheitsdenkmal_01klein_mask.png');
	}
}
@media (max-width: 959px) {
	#gridSwitchPager {
		display: none;
	}
	#startGridWrap .article {
		width: 100% !important;
	}
	#startGridWrap .article {
		left: 0 !important;
	}
	#startGridWrap .article .iconMenuTriggerDwn {
		position: relative;
		display: inline-block;
		right: 0;
		width: 16px;
		height: 1em;
		margin-left: 10px;
	}
	#startGridWrap .article .iconMenuTriggerDwn {
		vertical-align: -.1667em;
	}
	#startGridWrap .article .iconMenuTriggerDwn:before,
	#startGridWrap .article .iconMenuTriggerDwn:after {
		content: '';
		display: block;
		position: absolute;
		background: #d4af37;
		width: 16px;
		height: 2px;
		transform-origin: 50% 50%;
		top: 50%;
		left: 50%;
		margin-top: -1px;
		margin-left: -8px;
		transition: transform 0.3s;
	}
	#startGridWrap .article .iconMenuTriggerDwn:after {
		transform:rotate(90deg);
	}

	#startGridWrap .article .subtext,
	#startGridWrap .article .more {
		max-height: 0;
		opacity: 0;
		margin: 0;
		padding: 0;
		position: relative;
		overflow: hidden;
		transition: max-height .3s cubic-bezier(0,.75,0,.75), margin-top .3s, opacity .3s;
	}

	#startGridWrap .article:before {
		top: auto;
		width: auto;
		left: 0;
		right: 0;
		bottom: 0;
		height: 50%;
		background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
	}

	#startGridWrap .article:last-child {
		padding-bottom: 50px;
	}

	#startGridWrap .article.active .iconMenuTriggerDwn:before {
		transform:rotate(-180deg);
	}
	#startGridWrap .article.active .iconMenuTriggerDwn:after {
		transform:rotate(0deg);
	}
	#startGridWrap .article.active .articleImg {
		opacity: 1;
	}
	#startGridWrap .article.active .subtext,
	#startGridWrap .article.active .more {
		max-height: 1000px;
		opacity: 1;
		margin-top: 20px;
		transition: max-height .3s cubic-bezier(.75,0,.75,0), margin-top .3s, opacity .3s;
	}
}
@media (min-width: 960px) {
	#scrollBottom {
		bottom: 20px;
	}
	#startGrid {
		min-height: calc(100vh - 120px);
		min-height: max(500px, calc(100vh - 120px));
	}
	#startGridWrap {
		-ms-flex-direction: row;
		flex-direction: row;
		width: 100%;
		overflow: hidden;
	}
	#startGridWrap .article {
		-ms-flex-pack: end;
		justify-content: end;
		-ms-flex: 0 1 100%;
		flex: 0 1 100%;
		padding: 0;
		transition: width .3s .3s, margin .3s .3s, left .3s .3s, color .3s 0s, box-shadow .3s 0s, opacity .3s .3s;
	}
	#startGridWrap .article .articleImg {
		transition: all .3s 0s;
	}
	#startGridWrap .article .textWrap {
		padding: 20px 20px 80px;
		width: 100%;
		transition: width 0s .3s, padding .3s;
	}
	#startGridWrap .article:hover .textWrap {
		padding-bottom: 100px;
	}
	#startGridWrap .article:before {
		top: 0;
		right: -125%;
		bottom: 0;
		width: 200%;
		background: -webkit-radial-gradient(center, ellipse closest-corner, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 70%);
		background: radial-gradient(ellipse closest-corner at center, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 70%);
	}
	#startGridWrap .article .iconMenuTriggerDwn {
		display: none;
	}
	#startGridWrap .article .subtext {
		max-height: 0;
		opacity: 0;
		margin: 0;
		padding: 0;
		position: relative;
		overflow: hidden;
		transition: max-height .3s 0s cubic-bezier(0,.75,0,.75), margin-top .3s 0s, opacity .3s 0s;
	}
	#startGridWrap .article .more {
		margin-top: 20px;
	}

	#startGridWrap.noFlex {
		position: relative;
		display: block;
	}
	#startGridWrap.noFlex .article {
		position: absolute;
		top: 0;
		height: 100%;
	}

	#startGridWrap .article.active .articleImg {
		transition: all .3s .3s;
	}

	#startGridWrap:not(.noFlex).hasActive .article:not(.active) {
		width: 0;
		padding-left: 0;
		padding-right: 0;
		flex-basis: 0%;
		opacity: 0;
	}
	#startGridWrap.noFlex.hasActive .article:not(.active) {
		opacity: 0;
		transition: opacity .3s 0s;
	}
	#startGridWrap.hasActive .article.active {
		width: 66.67% !important;
		margin-left: 33.33%;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		opacity: 1;
		left: 0 !important;
		transition: width .3s 0s, margin .3s 0s, left .3s 0s, color .3s .3s, box-shadow .3s .3s;
	}
	#startGridWrap.hasActive .article.active .textWrap {
		width: 75%;
		padding-bottom: 80px;
	}
	#startGridWrap .article.active .articleImg {
		opacity: 1;
	}
	#startGridWrap .article.active .subtext {
		max-height: 1000px;
		opacity: 1;
		margin-top: 20px;
		transition: max-height .3s .3s cubic-bezier(.75,0,.75,0), margin-top .3s .3s, opacity .3s .3s;
	}

	#gridSwitchPager {
		position: absolute;
		left: -33.33%;
		top: 0;
		height: 100%;
		list-style: none;
		margin: 0;
		padding: 0;
		width: 33.33%;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		z-index: 1;
		opacity: 0;
		transition: all .3s;
	}
	#gridSwitchPager .gridSwitchPagerItem {
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		margin: 0;
		padding: 10px 20px;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-pack: center;
		justify-content: center;
		overflow: hidden;
		position: relative;
		cursor: pointer;
		transition: all .3s;
	}
	#gridSwitchPager .gridSwitchPagerItem .subTitle {
		font-size: 10px;
		line-height: 1.5;
	}
	#gridSwitchPager .gridSwitchPagerItem .headline {
		font-size: 30px;
	}
	#gridSwitchPager .gridSwitchPagerItem:before {
		content: '';
		display: block;
		left: -50%;
		bottom: -125%;
		height: 200%;
		width: 200%;
		position: absolute;
		background: -webkit-radial-gradient(center, ellipse closest-corner, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 70%);
		background: radial-gradient(ellipse closest-corner at center, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 70%);
		z-index: -1;
	}
	#startGridWrap.hasActive ~ #gridSwitchPager {
		left: 0;
		opacity: 1;
		transition: all .3s .3s;
	}
	#gridSwitchPager .gridSwitchPagerItem:hover {
		padding-left: 30px;
		padding-right: 10px;
	}
}
@media (min-width: 1280px) {
	#startGridWrap .article .textWrap {
		padding: 40px 40px 120px;
	}
	#startGridWrap .article:hover .textWrap {
		padding-bottom: 140px;
	}
	#startGridWrap.hasActive .article.active .textWrap {
		padding-bottom: 120px;
	}
	#startGridWrap .article .more {
		margin-top: 40px;
	}
	#gridSwitchPager .gridSwitchPagerItem {
		padding: 20px 40px;
	}
	#gridSwitchPager .gridSwitchPagerItem:hover {
		padding-left: 60px;
		padding-right: 20px;
	}

}

#newsWrap {
    position: relative;
	margin: 80px 0;
}
#newsWrap .newsWrapHeadline {
	margin: 0;
}
#newsWrap > .btnWrap {
	-webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (min-width: 720px) {
	#newsWrapMoreBtn {
		position: absolute;
		top: 0;
		right: 0;
		margin-right: 0;
	}
	#newsWrapMoreBtn .btn {
		margin-right: 0;
	}
	.article + #newsWrap {
		margin-top: 120px;
	}
}

/* ==========================================================================
   external Scripts/Functions
   ========================================================================== */

/*! Swipebox v1.4.4 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html{overflow:hidden!important}#swipebox-overlay img{border:none!important}#swipebox-overlay{width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999!important;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:#fff;background:rgba(0,0,0,.5)}#swipebox-container{position:relative;width:100%;height:100%}#swipebox-slider{-webkit-transition:-webkit-transform .4s ease;transition:transform .4s ease;height:100%;left:0;top:0;width:100%;white-space:nowrap;position:absolute;display:none;cursor:pointer;padding-top:50px;padding-bottom:50px;}#swipebox-slider .slide{height:100%;width:100%;line-height:1px;text-align:center;display:inline-block;position:relative;overflow:hidden;}#swipebox-slider .slideInnerWrap{height:100%;width:100%;line-height:1px;text-align:center;}#swipebox-slider .slideInnerWrap:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#swipebox-slider .slide .swipebox-inline-container,#swipebox-slider .slide .swipebox-video-container,#swipebox-slider .slide img{display:inline-block;max-height:100%;max-width:100%;margin:0;padding:0;width:auto;height:auto;vertical-align:middle}#swipebox-slider .slide .swipebox-video-container{background:0 0;max-width:1140px;max-height:100%;width:100%;padding:5%;-webkit-box-sizing:border-box;box-sizing:border-box}#swipebox-slider .slide .swipebox-video-container .swipebox-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe{width:100%!important;height:100%!important;position:absolute;top:0;left:0}#swipebox-slider .slide-loading{background:url(../img/preloader_301_dark.gif) center center no-repeat}#swipebox-bottom-bar,#swipebox-top-bar{-webkit-transition:.5s;transition:.5s;position:absolute;left:0;z-index:999;height:50px;width:100%;}#swipebox-bottom-bar{top:-50px;color:#fff!important;}#swipebox-bottom-bar.visible-bars{-webkit-transform:translate3d(0,50px,0);transform:translate3d(0,50px,0)}#swipebox-top-bar{bottom:-50px;display:table;}#swipebox-top-bar.visible-bars{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0)}#swipebox-title{width:100%;height:100%;font-size:1em;line-height:1.2;text-align:center;vertical-align:middle;display:table-cell;color:#fff;}#swipebox-close,#swipebox-next,#swipebox-prev,#swipebox-zoomin,#swipebox-zoomout{background-image:url(../img/Swipebox/icons.png);background-repeat:no-repeat;border:none!important;text-decoration:none!important;cursor:pointer;width:50px;height:50px;top:0}#swipebox-arrows{height:100%;position:absolute;left:0;bottom:0;top:50vh;margin-top:-25px;}#swipebox-prev{background-position:-32px 13px;float:left}#swipebox-next{background-position:-78px 13px;float:right;position:absolute;right:-100vw;margin-right:50px;}#swipebox-close,#swipebox-zoomin,#swipebox-zoomout{top:0;position:absolute;z-index:9999}#swipebox-close{background-position:15px 12px;right:0}#swipebox-zoomin{background-position:-122px 12px;right:60px}#swipebox-zoomout{background-position:-168px 12px;right:60px}.swipebox-no-close-button #swipebox-close{display:none}#swipebox-next.disabled,#swipebox-prev.disabled,#swipebox-zoomin.disabled,#swipebox-zoomout.disabled{opacity:.3}.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider{-webkit-animation:rightSpring .3s;animation:rightSpring .3s}.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider{-webkit-animation:leftSpring .3s;animation:leftSpring .3s}.swipebox-touch #swipebox-container:after,.swipebox-touch #swipebox-container:before{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .3s ease;transition:all .3s ease;content:' ';position:absolute;z-index:999;top:0;height:100%;width:20px;opacity:0}.swipebox-touch #swipebox-container:before{left:0;box-shadow:inset 10px 0 10px -8px #656565}.swipebox-touch #swipebox-container:after{right:0;box-shadow:inset -10px 0 10px -8px #656565}.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before,.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after{opacity:1}@-webkit-keyframes rightSpring{0%,100%{left:0}50%{left:-30px}}@keyframes rightSpring{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes leftSpring{0%,100%{left:0}50%{left:30px}}@keyframes leftSpring{0%,100%{left:0}50%{left:30px}}@media screen and (min-width:800px){#swipebox-close{right:10px}#swipebox-zoomin,#swipebox-zoomout{right:70px}#swipebox-arrows{/*left:10px*/}}#swipebox-slider .slide .video-js-container .swipebox-video{width:auto;height:auto;padding-bottom:0}#swipebox-slider .swipebox-video .video-js{width:100%;height:auto;display:block}#swipebox-slider .swipebox-video .video-js .vjs-big-play-button{left:50%;top:50%;margin:-1em 0 0 -1em;height:2em;width:2em;line-height:2em;border:none;background:#003E7C;border-radius:1em;color:#fff}#swipebox-slider .swipebox-video .video-js .vjs-big-play-button:hover{background:#E8EAED;color:#003F7D}#swipebox-slider .swipebox-video .vjs-has-started .vjs-control-bar{background-color:#69AF22;background-color:rgba(105,175,34,.9)}#swipebox-slider .swipebox-video .video-js .vjs-slider{background:#fff;background:rgba(255,255,255,.5)}#swipebox-slider .swipebox-video .video-js .vjs-load-progress{background:#bfcfde}#swipebox-slider .swipebox-video .video-js .vjs-play-progress{background:#003E7C}


/*
	Overlay
	*/
.vcModal,
.vcModalOverlay {
	transition: height 0s .3s, opacity .3s;
	pointer-events: none;
	position: fixed;
	height: 0;
	width: 100%;
	opacity: 0;
	left: 0;
	top: 0;
	z-index: 1000;
}

.vcInlineOverlay .vcModal {
	position: absolute;
	z-index: 10;
}
.vcInlineOverlay ~ * {
	transition: filter .3s;
}
.vcModal {
	overflow: auto;
}
.vcModalOverlay {
	background: #fff;
	background: rgba(255,255,255,.75) no-repeat 50% 50%;
	position: fixed;
	display: block;
}
.vcModal .vcModalOverlay {
	z-index: 1;
	cursor: pointer;
}
.vcModalTarget.loading .vcModal .vcModalOverlay {
	background-image: url(../img/preloader_301_dark.gif);
}

.vcModal .modalMsg {
	display: table;
	padding: 30px 10px 20px 0px;
	height: 100%;
	width: 100%;
}
.vcModal .modalMsg .wrap {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}
.vcModal .modalMsg .wrap .overlay {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}
.vcModalTarget.loading .vcModal .modalMsg .wrap .wrapMore {
	display: none;
}
.vcModal .modalMsg .wrap .wrapMore {
	max-width: 40em;
	width: 100%;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
	position: relative;
	background: #fff;
	margin: 0 auto;
	z-index: 1;
}
.vcModal.vcBig .modalMsg .wrap .wrapMore {
	max-width: calc(100vw - 50px);
}
.vcInlineOverlay .vcModal .modalMsg .wrap .wrapMore {
	box-shadow: none;
	background: rgba(255,255,255,.5);
}
.vcModalTarget:not(.vcModalBannerBottom) .vcModal .modalMsg .wrap .wrapMore {
	padding: 20px;
}
.vcModal:not(.vcBig) .modalMsg .article {
	margin: 0;
}

.vcModalSwitch:checked + .vcModalTarget .vcModalOverlay,
.vcModalSwitch:checked + .vcModalTarget .vcModal,
.vcModalTarget.loading .vcModal,
.vcModalTarget.loading .vcModalOverlay {
	height: 100%;
	opacity: 1;
	transition: height 0s, opacity .3s;
	pointer-events: auto;
}
.vcModalSwitch:checked + .vcModalTarget.vcInlineOverlay ~ *,
.vcModalTarget.vcInlineOverlay.loading ~ * {
	filter: blur(4px);
}
.vcModal .vcModalClose {
	position: absolute;
	display: block;
	right: -20px;
	top: -20px;
	cursor: pointer;
	padding: 10px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	height: 40px;
	width: 40px;
	border-radius: 20px;
	-webkit-transition: all .3s;
	transition: all .3s;
	z-index: 1;
}
.vcModal .vcModalClose:hover {
	background: #c20d20;
	background: -webkit-linear-gradient(left, #c20d20 0%, #910a18 100%);
	background: linear-gradient(to right, #c20d20 0%, #910a18 100%);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.vcModalBannerBottom .vcModalOverlay {
	height: 0 !important;
	opacity: 0 !important;
}
.vcModalBannerBottom .vcModal {
	top: auto;
	bottom: 0;
}
.vcModalSwitch:checked + .vcModalTarget.vcModalBannerBottom  .vcModal,
.vcModalTarget.vcModalBannerBottom.loading .vcModal {
	height: auto;
	max-height: 100%;
}
.vcModalBannerBottom .vcModal .modalMsg {
	position: relative;
	padding: 40px 0 0;
}
.vcModalBannerBottom .vcModal .modalMsg .wrap .wrapMore {
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	max-width: none;
	width: 100%;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.vcModalBannerBottom .vcModal .article {
	padding-top: 20px;
	padding-bottom: 20px;
	margin: 0 auto;
}
.vcModalBannerBottom .vcModal .article > :first-child {
	padding-right: 60px;
}
.vcModalBannerBottom  .vcModal .vcModalClose {
	right: 20px;
	top: 20px;
}
@media (min-width: 720px) {
	#privacySetupQuick {
		font-size: .75em;
		line-height: 1.333em;
		padding-bottom: 5px;
	}
	#privacySetupQuick h3,
	#privacySetupQuick .h3 {
		font-size: 30px;
	}
	#privacySetupQuick > * {
		margin-bottom: 15px;
		margin-top: 0;
	}
}
@media (min-width: 1280px) {
	.vcModal.vcBig .modalMsg {
		padding-left: 40px;
		padding-right: 40px;
	}
	.vcModal.vcBig .modalMsg .wrap .wrapMore {
		max-width: calc(100vw - 80px);
	}

	.vcModalBannerBottom .vcModal .article > :first-child {
		padding-right: 0;
	}
}
@media (min-width: 1440px) {
	.vcModal.vcBig .modalMsg {
		padding-left: calc(10% - 20px);
		padding-right: calc(10% - 20px);
	}
}
@media (min-width: 1680px) {
	.vcModal.vcBig .modalMsg {
		padding-left: calc(15% - 20px);
		padding-right: calc(15% - 20px);
	}
}


/*
	CSS Icons
	*/
.vcCssIcon {
	position: relative;
	display: inline-block;
}
.vcCssIconCheck {
	height: 1em;
	width: .667em;
	border-right: .1875em solid #000;
	border-bottom: .1875em solid #000;
	transform: rotate(45deg);
	margin: 0 .2em;
	transition: border-color .3s;
}
.btnRaised.btnGradient .vcCssIconCheck {
	border-right-color: #fff;
	border-bottom-color: #fff;
}
.btnRaised.btnGradient:hover .vcCssIconCheck {
	border-right-color: #333;
	border-bottom-color: #333;
}
.vcCssIconArrowDown {
    width: 1em;
	height: 1em;
    margin: 0 .2em;
}
.vcCssIconArrowDown:after {
	content: '';
	display: block;
	font-size: .667em;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -.375em;
	margin-left: -.5em;
	transform: rotate(-45deg);
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
}
.vcCssIconClose {
	height: 100%;
	width: 100%;
	display: block;
}
.vcCssIconClose:before,
.vcCssIconClose:after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
	background: #fff;
	display: block;
	width: 100%;
	height: .1875em;
	margin-top: -.09375em;
	margin-left: -50%;
	transition: background .3s;
}
.vcCssIconClose:before {
	transform: rotate(45deg);
}
.vcCssIconClose:after {
	transform: rotate(-45deg);
}


/*
	Privacy & Cookies
	*/
.vcPrivacyOptsLine input {
	display: none;
}
.vcPrivacyOptsLine label {
	display: block;
	font-weight: bold;
	min-height: 2em;
	padding-right: 4em;
	position: relative;
	cursor: pointer;
	float: none;
}
.vcPrivacyOptsLine label .hint {
	font-weight: normal;
	margin: 0;
	line-height: normal;
}
.vcPrivacyOptsLine label .state {
	position: absolute;
	top: 0;
	right: 0;
	width: 3em;
	height: 1.5em;
	box-shadow: 0 1px 3px rgba(0,0,0,.5) inset;
	background: #C00;
	border-radius: .75em;
	display: block;
	transition: all .3s;
}
.vcPrivacyOptsLine label .state:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 1.25em;
	height: 1.25em;
	background: #fff;
	border: 1px solid #ccc;
	margin-top: -.625em;
	margin-left: -1.375em;
	border-radius: .625em;
	transition: all .3s;
}
.vcPrivacyOptsLine input:checked + label .state {
	background: #00b300;
}
.vcPrivacyOptsLine input:checked + label .state:after {
	margin-left: .125em;
}

.vcPrivacyOptsLine input:disabled + label {
	pointer-events: none;
}
.vcPrivacyOptsLine input:disabled + label .state {
	background: #ddd;
}

.vcPrivacyOptsLineWrap + .vcPrivacyOptsLineWrap {
	margin-top: 1.5em;
}
.vcPrivacyMoreInfoTrigger {
	padding: .5em 0 0;
	display: block;
}
.vcPrivacyMoreInfoTrigger .vcCssIconArrowDown {
	margin: 0 0 0 .5em;
	transition: transform .3s;
	float: none !important;
	display: inline-block !important;
}

.vcPrivacySlideDownSwitch ~ .vcPrivacySlideDownTarget {
	max-height: 0;
	transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s, overflow 0s;
	overflow: hidden;
}
.vcPrivacySlideDownSwitch:checked ~ .vcPrivacySlideDownTrigger .on {
	display: inline;
}
.vcPrivacySlideDownTrigger .on,
.vcPrivacySlideDownSwitch:checked ~ .vcPrivacySlideDownTrigger .off {
	display: none;
}
.vcPrivacySlideDownSwitch:checked ~ .vcPrivacySlideDownTrigger .vcCssIcon {
	transform: rotate(180deg);
}
.vcPrivacySlideDownSwitch:checked ~ .vcPrivacySlideDownTrigger .vcCssIconArrowDown:after {
	margin-top: -1em;
}
.vcPrivacySlideDownSwitch:checked ~ .vcPrivacySlideDownTarget {
	max-height: 10000px;
	padding-top: .625em;
	transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
	animation: 0s linear 0.3s 1 normal both running delayOverflow;
}

.vcPrivacyDefList {
	padding: 0;
	margin: 0;
	font-size: .8em;
}
.vcPrivacyDefList dt {
	padding: .3125em 0 0;
	font-weight: bold;
	text-align: left;
	margin: 0;
}
.vcPrivacyDefList dd {
	font-weight: normal;
	text-align: left;
	padding: 0 0 .3125em;
	margin: 0;
}
.vcPrivacyDefList dt:first-child {
	padding-top: 0;
}
.vcPrivacyDefList dd:last-child {
	padding-bottom: 0;
}

#vcPrivacySetupSubmit {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 1em;
}
.vcPrivacyOverlayTrigger {
	cursor: pointer;
}

.vcPrivacyNoPermission {
	background: #fff;
	border: 1px solid #ddd;
	text-align: center;
	padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
}

@media (min-width: 720px) {
	.vcPrivacyDefList dt {
		clear: left;
		float: left;
		padding: .25em 0;
		width: 25%;
	}
	.vcPrivacyDefList dd {
		padding: .25em 0 .25em 20px;
		margin: 0;
		width: 75%;
		float: left;
	}
	.vcPrivacyDefList dt:first-child,
	.vcPrivacyDefList dt:first-child + dd {
		padding-top: 0;
	}
	.vcPrivacyDefList dt:nth-last-child(2),
	.vcPrivacyDefList dt:nth-last-child(2) + dd {
		padding-bottom: 0;
	}

	#vcPrivacySetupSubmit {
		margin-left: auto;
		margin-right: auto;
		width: 50%;
	}
}


/* SHOW EFFECTS */
.js .vcShowElements {
	visibility: hidden;
}
.js .vcShowElements.showEffect {
	visibility: inherit;
}
.showEffect.scale.showEffectScope,
.showEffect.scale .showEffectScope {
	visibility: visible !important;
	opacity: 0;
	-ms-transform: scale(0);
	transform: scale(0);
}
.showEffect.slideInFromLeft .showEffectScope {
	opacity: 0;
	-ms-transform: translate(-150px, 50px);
	transform: translate(-150px, 50px);
}
.showEffect.slideInFromRight .showEffectScope {
	opacity: 0;
	-ms-transform: translate(150px, 50px);
	transform: translate(150px, 50px);
}
.showEffect.slideInFromBottom .showEffectScope {
	opacity: 0;
	-ms-transform: translateY(150px);
	transform: translateY(150px);
}

.showEffect.slideInFromBottom.show .showEffectScope,
.showEffect.slideInFromLeft.show .showEffectScope,
.showEffect.slideInFromRight.show .showEffectScope,
.showEffect.scale.show.showEffectScope,
.showEffect.scale.show .showEffectScope {
	opacity: 1;
	-webkit-transition: opacity .5s, transform .5s;
	transition: opacity .5s, transform .5s;
}
.showEffect.scale.show.showEffectScope,
.showEffect.scale.show .showEffectScope {
	-ms-transform: scale(1);
	transform: scale(1);
}
.showEffect.slideInFromRight.show .showEffectScope,
.showEffect.slideInFromLeft.show .showEffectScope,
.showEffect.slideInFromBottom.show .showEffectScope {
	-ms-transform: translate(0);
	transform: translate(0);
}

.mejs__container:not(.mejs__container-fullscreen) {
	background: #d4af37 !important;
	color: #fff;
}

/**
 * Infinite Ajax Scroll, a jQuery plugin
 * Version 1.1.0
 * https://github.com/webcreate/infinite-ajax-scroll
 */
.ias_trigger {
	text-align: center;
	margin: 15px 0;
}

/* ==========================================================================
   Content classes
   ========================================================================== */

/* Content: BILDER & GALERIE */
.filePreview,
.img,
.thumb {
	position: relative;
	overflow: hidden;
	display:block;
}
.thumb img,
.img img,
.img-link img,
.imgWrap img {
	width:100%;
	height:auto;
	display: block;
}
.imagesWrap {
	margin-top: 20px;
	margin-bottom: 20px;
}
.imgWrap {
	position: relative;
	margin: 0;
}
.gallery {
	margin: -5px -10px;
}
.img-count {
	margin: 5px 10px;
	text-align: right;
}
.imgContainer {
	float: left;
	padding: 10px;
	margin: 0 !important;
	position: relative;
}
.img {
	display:block;
	position: relative;
	z-index: 1;
}
.img.effect {
	border: 5px solid #FFF;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.caption {
	display: block;
	text-align: center;
	margin-top: 5px;
}
.img .zoom {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 16px;
    line-height: 40px;
    min-width: 40px;
    text-align: center;
}
.imgLeft .imagesInnerWrap {
	float: left;
	margin-bottom: 20px;
}
.imgRight .imagesInnerWrap {
	margin-bottom: 20px;
	float: right;
}
.imgRight .caption {
	text-align: right;
}
.imgLeft .caption {
	text-align: left;
}
.imgWrap + .imgWrap,
.imgWrap + .imgWrap {
	margin-top: 20px;
}
.imgNone {
	margin: 20px auto;
}
.imgNone .imagesInnerWrap {
	margin: -20px;
}

.imgWidth-100,
.imgWidth-75,
.imgWidth-67,
.imgWidth-50,
.imgWidth-42,
.imgWidth-33 {
	width: 100%;
}
.imgWidth-25 {
	width: 50%;
}
.imgWidth-20,
.imgWidth-17,
.imgWidth-15 {
	width: 25%;
}
.imgWidth-13,
.imgWidth-10,
.imgWidth-5 {
	width: 15%;
}

.imgNone .imgWrap {
	float: none;
	padding: 20px;
	margin: 0 auto;
}

.imgRight .imgWidth-25,
.imgRight .imgWidth-20,
.imgRight .imgWidth-17,
.imgRight .imgWidth-15,
.imgRight .imgWidth-13,
.imgRight .imgWidth-10,
.imgRight .imgWidth-5 {
	margin-left: 20px;
	padding-left: 20px;
	float: right;
}
.imgLeft .imgWidth-25,
.imgLeft .imgWidth-20,
.imgLeft .imgWidth-17,
.imgLeft .imgWidth-15,
.imgLeft .imgWidth-13,
.imgLeft .imgWidth-10,
.imgLeft .imgWidth-5 {
	margin-right: 20px;
	padding-right: 20px;
	float: left;
}

@media (min-width: 480px) {
	.imgWidth-33,
	.imgWidth-25 {
		width: 50%;
	}
	.imgWidth-20,
	.imgWidth-17,
	.imgWidth-15 {
		width: 33.3%;
	}
	.imgWidth-13 {
		width: 20%;
	}
	.imgWidth-10,
	.imgWidth-5 {
		width: 15%;
	}

	.imgRight .imgWidth-33 {
		margin-left: 20px;
		padding-left: 20px;
		float: right;
	}
	.imgLeft .imgWidth-33 {
		margin-right: 20px;
		padding-right: 20px;
		float: left;
	}
}

@media (min-width: 720px) {
	.imagesWrap {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.imgWidth-67 {
		width: 50%;
	}
	.imgWidth-50,
	.imgWidth-42 {
		width: 50%;
	}
	.imgWidth-33,
	.imgWidth-25 {
		width: 33.3%;
	}
	.imgWidth-20,
	.imgWidth-17,
	.imgWidth-15 {
		width: 20%;
	}
	.imgWidth-13,
	.imgWidth-10,
	.imgWidth-5 {
		width: 15%;
	}

	.imgRight .imgWidth-50,
	.imgRight .imgWidth-42,
	.imgRight .imgWidth-67 {
		margin-left: 20px;
		padding-left: 20px;
		float: right;
	}
	.imgLeft .imgWidth-50,
	.imgLeft .imgWidth-42,
	.imgLeft .imgWidth-67 {
		margin-right: 20px;
		padding-right: 20px;
		float: left;
	}
}

@media (min-width: 960px) {
	.imgWidth-100 {
		width:100%;
	}
	.imgWidth-75 {
		width:75%;
	}
	.imgWidth-67 {
		width:66.7%;
	}
	.imgWidth-50 {
		width:50%;
	}
	.imgWidth-42 {
		width: 41.7%;
	}
	.imgWidth-33 {
		width:33.3%;
	}
	.imgWidth-25 {
		width:25%;
	}
	.imgWidth-20 {
		width:20%;
	}
	.imgWidth-17 {
		width:16.6666%;
	}
	.imgWidth-15 {
		width:15%;
	}
	.imgWidth-13 {
		width:12.5%;
	}
	.imgWidth-10 {
		width:10%;
	}
	.imgWidth-5 {
		width:5%;
	}
	.imgRight .imgWidth-75 {
		margin-left: 20px;
		padding-left: 20px;
		float: right;
	}
	.imgLeft .imgWidth-75 {
		margin-right: 20px;
		padding-right: 20px;
		float: left;
	}
}

/* Content: GOOGLE MAPS */
.map_canvas {
	min-height: 200px;
	min-height: 50vh;
	background: #EEE;
	margin: 1em 0;
}
.map_canvas .gm-style {
	font-family: inherit;
}
.map_canvas .gm-style-iw .btn {
	width: 100%;
	margin-top: 15px;
}
.map_legend .head {
	font-size: 1.25em;
	font-weight: bold;
	line-height: 30px;
	color: #fff;
	background: #999;
	position: relative;
	padding: 5px 10px 5px 40px;
	-webkit-transition: all .3s;
	transition: all .3s;
	cursor: pointer;
}
.map_legend .head .sprt {
	position: absolute;
	left: 4px;
	top: 50%;
	margin-top: -16px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.map_legend:hover .head {
	background: #666;
}
.map_legend.aktiv .head {
	background: #d4af37;
}
.map_legend.aktiv .head .sprt {
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* OVERLAY */
body.GMO-active { overflow:hidden; }
#GMO-wrap {
	visibility:hidden;
	z-index:1000;
	position:absolute;
	height:100%;
	width:100%;
	top:0;
	left:0;
	text-align:center;
	/*background:rgba(0,0,0,0.7);*/
	overflow:hidden;
	transition:visibility 0.5s;
}
.GMO-active #GMO-wrap {
	visibility:visible;
}
#GMO-container {
	position:relative;
	box-sizing:border-box;
	width:40%;
	min-width:670px;
	height:80%;
	margin-top:20%;
	margin-top:20vh;
	padding-right:40px;
	padding-top:40px;
	display:inline-block;
	opacity:0;
	transition:margin-top .5s , opacity .5s;
}
.GMO-active #GMO-container {
	margin-top:10%;
	margin-top:10vh;
	opacity:1;
}
#GMO-content {
	box-sizing:border-box;
	text-align:left;
	padding:20px;
	height:100%;
	background-color:#fff;
	box-shadow:0 7px 15px rgba(0,0,0,0.6);
	overflow:auto;
}
#GMO-close {
	position:absolute;
	right:0;
	top:0;
	height:40px;
	width:40px;
	cursor:pointer;
	box-shadow:0 2px 10px rgba(0,0,0,0.6);
    transition: transform 1s ease-in-out 0s;
}
.csstransforms #GMO-close .closePop {
    background: #F5420C none;
}
.csstransforms #GMO-close:before, .csstransforms #GMO-close:after {
    background-color: #fff;
    content: "";
    height: 80%;
    left: 45%;
    position: absolute;
    top: 10%;
    width: 2px;
}
.csstransforms #GMO-close:before {
    transform: rotate(45deg);
}
.csstransforms #GMO-close:after {
    transform: rotate(-45deg);
}
#GMO-content button.close {
	background-color:#b2b2b2;
}
ul.placeList {
	color:#c5c7c8;
	list-style:none;
	list-style-type:none;
	padding:0;
}
ul.placeList li {
	position:relative;
	padding-left:20px;
	border-top:1px solid #c5c7c8;
}
ul.placeList li:first-child {
	border-top:0;
}
ul.placeList li:before {
	content:'';
	position:absolute;
	left:0;
	top:5px;
	height:16px;
	width:16px;
	background:url(../img/jQueryUI/ui-icons_222222_256x240.png) -96px -160px no-repeat;
}
ul.placeList li.aktiv:before {
	background-position:-64px -144px;
}
ul.placeList li a {
	display:block;
	padding:5px 0;
	text-decoration:none;
}

.addrWrap {
	margin: .769em 0;
}
.addrWrap address {
	font-style: italic;
}
.addrWrap > h3 {
	margin: 0;
}
.addrWrap .addr,
.addrWrap .addrData {
	margin: .769em 0;
}


@media (min-width: 480px) {
	.addrWrap {
		margin: 1em -1em;
	}
	.addrWrap > * {
		padding: 0 1em;
	}
	.addrWrap .addr,
	.addrWrap .addrData {
		width: 50%;
		float: left;
		margin: 0;
	}
}

/* Content: VIDEOS */
.vidWrap {
	margin: 0 auto;
}
.vid {
	position:relative;
	display:block;
	overflow:hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.vid,
.vid:after,
.vid *,
.vid *:after {
	-webkit-transition: all .2s;
	transition: all .2s;
}
.vid:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: rgba(0,0,0,.25);
}
.vid .playIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -.5em;
	margin-left: -.5em;
	width: 1em;
	height: 1em;
	line-height: 1;
	display: block;
	background: none;
	z-index: 1;
	font-size: 4em;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.vid .playIcon:before {
	background: -webkit-linear-gradient(45deg, #d4af37, #9f8329);
	background: -linear-gradient(45deg, #d4af37, #9f8329);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}
.vid .video-time {
	position:absolute;
	background: #fff;
	display:block;
	padding: 3px 8px;
	bottom:0;
	right:0;
	z-index: 1;
}
.vid:hover {
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.vid:hover:after {
	background: rgba(0,0,0,.0);
}
.vid:hover .playIcon {
	font-size: 6em;
}
.vid:hover .playIcon:before {
	background: #fff;
	-webkit-background-clip: text;
	background-clip: text;
}
.vid:hover .video-time {
	background: #d4af37;
	color: #fff;
}
.videoFrame {
	float:right;
    position: relative;
    width: 50%;
}
.videoIFrame {
    position: relative;
}
.videoFrame iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

/* DOWNLOADS */
.downloads {
	margin: 20px 0;
}
.downloads .headline {
	margin: 0 0 20px;
}
.downloads ul {
	margin: -20px -20px 0;
	list-style:none;
	padding:0 !important;
}
.downloads li {
	padding: 20px 20px 0;
	margin:0 !important;
}
.downloads li:before {
	display: none !important;
}
.download a {
	display:block;
	position:relative;
	min-height:24px;
	text-align: left;
	text-decoration: none;
	color: inherit;
	font-weight: 500;
}
.download a.hasImg {
	padding-left: 45px;
}
.download img {
	position: absolute;
	left: 0;
	top: .25em;
	display: block;
}
.download small {
	display: block;
	font-weight: normal;
	font-size: 80%;
}
.downloads li.video a {
	display:none;
}
.downloads li video {
	width:100%;
	height:auto;
}

@media (min-width: 480px) {
	.downloads .grids_2 .gridItem {
		width: 50%;
		float: left;
	}
	.downloads .grids_2 .gridItem:nth-child(2n+1) {
		clear: left;
	}
	.downloads .grids_4 .gridItem {
		width:25%;
		float:left;
	}
	.downloads .grids_4 .gridItem:nth-child(4n+1) {
		clear: left;
	}
}

/* Content: SUB NAV IN ARTICLEs */
.navSub ul {
	padding: 0 0 0 2em;
}

/* Content: FORMS */
.form .duty {
	font-weight: bold;
	color: #d4af37;
}
.form .hint .duty {
	padding: 2px;
}

.fehler_text {
	color: #C00;
}

.optsContainer {
	margin: 1em 0;
	text-align: left;
	overflow: hidden;
}
.optsContainer:after {
	clear: both;
	content: '';
	display: table;
}

.optsContainer + .optsContainer,
.optsContainer + .btnContainer,
fieldset + .btnContainer,
.optsContainer + fieldset,
.form fieldset + fieldset {
	margin-top: 2em;
}

.optsContainer > .error:first-child + label,
.optsContainer > label:first-child {
	display: block;
	margin: 0;
	text-align: left;
	font-size: 80%;
	text-transform: uppercase;
	font-weight: normal;
	line-height: 1;
}
.optsContainer > .error:first-child + label .duty,
.optsContainer > label:first-child .duty {
	padding-left: 5px;
	float: right;
	font-weight: bold;
	font-size: 1.25em;
	line-height: 80%;
}
.optsContainer > .error:first-child + label .shortInfo,
.optsContainer > label:first-child .shortInfo {
	font-weight: normal;
	letter-spacing: 0;
	text-transform: none;
}
.optsContainer > .error:first-child + label .shortInfo:before,
.optsContainer > label:first-child .shortInfo:before {
	content:' (';
}
.optsContainer > .error:first-child + label .shortInfo:after,
.optsContainer > label:first-child .shortInfo:after {
	content:')';
}

.optsContainer input,
.optsContainer textarea,
.optsContainer select,
.optsContainer .selectWrap {
	width: 100%;
	padding: .5em 0 calc(.5em - 1px);
	background: none;
	border-bottom: 1px solid #fff;
	font-size: 1em;
	line-height: 1.5;
	-webkit-transition: border-bottom-color .2s, border-bottom-width .2s, padding .2s;
	transition: border-bottom-color .2s, border-bottom-width .2s, padding .2s;
}
.optsError .error {
	font-size: .8em;
	line-height: 1.33333;
	color: #C00;
	padding: .5em 0;
}
.optsError > .error:first-child + label,
.optsError > label:first-child {
	color: #C00;
}

.optsError input,
.optsError textarea,
.optsError select,
.optsError .selectWrap {
	border-bottom-color: #C00;
}
.optsContainer input:hover,
.optsContainer textarea:hover,
.optsContainer select:hover,
.optsContainer .selectWrap:hover {
	border-bottom-color: #d4af37;
}

.optsContainer input:focus,
.optsContainer textarea:focus,
.optsContainer select:focus,
.optsContainer .selectWrap.focus {
	border-bottom-width: 2px;
	border-bottom-color: #fff;
	padding-bottom: calc(.5em - 2px);
}

.optsContainer input[type="radio"],
.optsContainer input[type="checkbox"] {
	border: none;
	width: auto !important;
	float: none !important;
}
.optsContainer input[type="radio"] + label,
.optsContainer input[type="checkbox"] + label {
	display: inline;
	padding: 0 0 0 .25em;
	margin: 0;
	text-align: left;
	width: auto;
	cursor: pointer;
}
.optsContainer .optsInline {
	display: inline-block;
	float: none;
	padding: .5em 0 calc(.5em - 1px);
	margin: 0 2em 1em 0;
	border-bottom: 1px solid #fff;
	cursor: pointer;
	-webkit-transition: border-color .2s, color .2s;
	transition: border-color .2s, color .2s;
}
.optsContainer .optsInline:hover {
	border-bottom-color: #d4af37;
}
.optsContainer .optsInline.optsChecked {
	border-bottom-width: 2px;
	border-bottom-color: #fff;
	padding-bottom: calc(.5em - 2px);
	color: inherit;
}
.optsContainer .optsLine {
	display: block;
}
.optsContainer .selectWrap {
	position: relative;
	padding: 0;
	padding-bottom: 0 !important;
}
.optsContainer .selectOver {
	position: absolute;
	left: 0;
	top: .5em;
	width: 100%;
	white-space: normal;
	overflow: hidden;
	padding-right: 20px;
}
.selectOver {
	pointer-events: none;
}
.optsContainer .selectOver:after {
	position: absolute;
	right: 5px;
	top: 50%;
	margin-top: -3px;
	content: '';
	display: block;
	height: 0;
	width: 0;
	border-style: solid;
	border-width: .429em .357em 0 .357em;
	border-color: #999 transparent transparent;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.optsContainer .selectWrap:hover .selectOver:after {
	border-top-color: #666;
}
.optsContainer .selectWrap.focus .selectOver:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	border-top-color: #d4af37;
}
.optsContainer .selectWrap select {
	width: 100%;
	opacity: 0;
	position: relative;
}

.optsContainer > .ipShort {
	float: left;
	width: 25%;
}
.optsContainer > .ipLong {
	float: left;
	width: 70%;
}
.optsContainer > .ipLong + .ipShort,
.optsContainer > .ipShort + .ipLong {
	margin-left: 4%;
}

.optsContainer .date {
	position: relative;
}
.optsContainer .date .sprt {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	right: 0;
}
.optsContainer .date input {
	float: none;
	width: 100%;
}

.optsContainer select + .optsLine,
.optsContainer .selectWrap + .optsLine {
	margin-top: 15px;
}

.optsContainer .optsInputLine > label:first-child {
	font-style: italic;
}

.optsRange .optsBlock .date {
	width: 100%;
}
.optsRange .from label,
.optsRange .to label {
	width: 100%;
	text-align: left;
	display: block;
	text-transform: none;
	font-size: 75%;
}
.optsRange .to {
	margin-top: 1em;
}

.optsContainer .optsBlock {
	list-style: none;
	margin: 0 -2em -1em 0;
	padding: 0;
}

/* Form Type: BUTTONS */
.btnContainer {
	text-align: center;
}
.btnContainer button {
	min-width: 30%;
}
.btnContainer .btnLess,
.btnContainer .backLink {
    float: left;
    margin: 0;
}
.btnContainer button[type="reset"] {
	position: relative;
	padding-left: 42px;
}
.btnContainer button[type="reset"] .sprt {
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -16px;
}
.box .btnContainer button {
	width: 100%;
	box-shadow: none;
	font-size: 1.333em;
	padding-top: 0;
	padding-bottom: 0;
}
@media (min-width: 480px) {
	.optsRange .from,
	.optsRange .to {
		width: 50%;
		float: left;
		padding-left: .5em;
		padding-right: .5em;
	}
	.optsRange .from {
		padding-left: 0;
	}
	.optsRange .to {
		margin-top: 0;
		padding-right: 0;
	}
	.optsRange .from label,
	.optsRange .to label {
		margin-top: 8px;
	}
}
@media (min-width: 720px) {
	.optsContainer > .error:first-child + label,
	.optsContainer > label:first-child {
		float: left;
		text-align: left;
		width: 30%;
		padding-right: 2em;
		margin-top: 1em;
	}
	.optsContainer > .error:first-child + label .shortInfo,
	.optsContainer > label:first-child .shortInfo {
		display: block;
		padding-top: .5em;
	}
	.optsError .error {
		margin-left: 30%;
	}
	.optsContainer:not(.optsCompact) input,
	.optsContainer:not(.optsCompact) textarea,
	.optsContainer:not(.optsCompact) select,
	.optsContainer:not(.optsCompact) .selectWrap,
	.optsContainer:not(.optsCompact) .optsBlock,
	.optsContainer:not(.optsCompact) .date {
		width: 70%;
		float: right
	}

	.optsContainer .optsBlock {
		margin-right: 0;
	}

	.optsContainer > .ipShort {
		width: 16%;
	}
	.optsContainer > .ipLong {
		width: 44%;
	}
}


/* Content: LISTS */
.article + .list {
    margin-top: -40px;
}
.list .listItem + .listItem {
	margin-top: 40px;
}
.list .articleWrap > :first-child {
	margin-top: 0;
}
.list .articleImgNone + .articleWrap > :first-child {
	margin-top: .5em;
}
.list .articleWrap .headline {
	margin: 0;
}

.list .articleImgNone,
.list .articleImgLeft,
.list .articleImgRight {
	float: none;
	margin: 0 auto;
}
.list .articleImgLeft.imgWidth-25,
.list .articleImgRight.imgWidth-25 {
	width: 33.3%;
}

.list .articleImgLeft.imgWidth-5,
.list .articleImgLeft.imgWidth-10,
.list .articleImgLeft.imgWidth-13,
.list .articleImgLeft.imgWidth-15,
.list .articleImgLeft.imgWidth-17,
.list .articleImgLeft.imgWidth-20,
.list .articleImgLeft.imgWidth-25 {
	float:left;
}
.list .articleImgLeft.imgWidth-5 + .articleWrap,
.list .articleImgLeft.imgWidth-10 + .articleWrap,
.list .articleImgLeft.imgWidth-13 + .articleWrap {
	padding-left: 1em;
	margin-left: 15%;
}
.list .articleImgLeft.imgWidth-15 + .articleWrap,
.list .articleImgLeft.imgWidth-17 + .articleWrap,
.list .articleImgLeft.imgWidth-20 + .articleWrap {
	padding-left: 1em;
	margin-left: 25%;
}
.list .articleImgLeft.imgWidth-25 + .articleWrap {
	padding-left: 1em;
	margin-left: 33.3%;
}

.list .articleImgRight.imgWidth-5,
.list .articleImgRight.imgWidth-10,
.list .articleImgRight.imgWidth-13,
.list .articleImgRight.imgWidth-17,
.list .articleImgRight.imgWidth-20,
.list .articleImgRight.imgWidth-25 {
	float: right;
}
.list .articleImgRight.imgWidth-5 + .articleWrap,
.list .articleImgRight.imgWidth-10 + .articleWrap,
.list .articleImgRight.imgWidth-13 + .articleWrap{
	padding-right: 1em;
	margin-right: 15%;
}
.list .articleImgRight.imgWidth-15 + .articleWrap,
.list .articleImgRight.imgWidth-17 + .articleWrap,
.list .articleImgRight.imgWidth-20 + .articleWrap {
	padding-right: 1em;
	margin-right: 25%;
}
.list .articleImgRight.imgWidth-25 + .articleWrap {
	padding-right: 1em;
	margin-right: 33.3%;
}
.list .more {
	display: block;
	float: left;
}

@media (min-width: 480px) {
	.list .articleImgLeft.imgWidth-33 {
		float:left;
	}
	.list .articleImgLeft.imgWidth-5 + .articleWrap,
	.list .articleImgLeft.imgWidth-10 + .articleWrap {
		margin-left: 15%;
	}
	.list .articleImgLeft.imgWidth-13 + .articleWrap {
		margin-left: 20%;
	}
	.list .articleImgLeft.imgWidth-15 + .articleWrap,
	.list .articleImgLeft.imgWidth-17 + .articleWrap,
	.list .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 33.3%;
	}
	.list .articleImgLeft.imgWidth-33 + .articleWrap {
		padding-left: 1em;
		margin-left: 50%;
	}

	.list .articleImgRight.imgWidth-33 {
		float: right;
	}
	.list .articleImgRight.imgWidth-5 + .articleWrap,
	.list .articleImgRight.imgWidth-10 + .articleWrap {
		margin-right: 15%;
	}
	.list .articleImgRight.imgWidth-13 + .articleWrap {
		margin-right: 20%;
	}
	.list .articleImgRight.imgWidth-15 + .articleWrap,
	.list .articleImgRight.imgWidth-17 + .articleWrap,
	.list .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 33.3%;
	}
	.list .articleImgRight.imgWidth-33 + .articleWrap {
		padding-right: 1em;
		margin-right: 50%;
	}
}

@media (min-width: 720px) {
	.list .articleImgLeft.imgWidth-42,
	.list .articleImgLeft.imgWidth-50,
	.list .articleImgLeft.imgWidth-67 {
		float:left;
	}
	.list .articleImgLeft.imgWidth-5 + .articleWrap,
	.list .articleImgLeft.imgWidth-10 + .articleWrap,
	.list .articleImgLeft.imgWidth-13 + .articleWrap {
		margin-left: 15%;
	}
	.list .articleImgLeft.imgWidth-15 + .articleWrap,
	.list .articleImgLeft.imgWidth-17 + .articleWrap,
	.list .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 20%;
	}
	.list .articleImgLeft.imgWidth-25 + .articleWrap,
	.list .articleImgLeft.imgWidth-33 + .articleWrap {
		margin-left: 33.3%;
	}
	.list .articleImgLeft.imgWidth-42 + .articleWrap,
	.list .articleImgLeft.imgWidth-50 + .articleWrap,
	.list .articleImgLeft.imgWidth-67 + .articleWrap {
		padding-left: 1em;
		margin-left: 50%;
	}

	.list .articleImgRight.imgWidth-42,
	.list .articleImgRight.imgWidth-50,
	.list .articleImgRight.imgWidth-67 {
		float: right;
	}
	.list .articleImgRight.imgWidth-5 + .articleWrap,
	.list .articleImgRight.imgWidth-10 + .articleWrap,
	.list .articleImgRight.imgWidth-13 + .articleWrap {
		margin-right: 15%;
	}
	.list .articleImgRight.imgWidth-15 + .articleWrap,
	.list .articleImgRight.imgWidth-17 + .articleWrap,
	.list .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 20%;
	}
	.list .articleImgRight.imgWidth-25 + .articleWrap,
	.list .articleImgRight.imgWidth-33 + .articleWrap {
		margin-right: 33.3%;
	}
	.list .articleImgRight.imgWidth-42 + .articleWrap,
	.list .articleImgRight.imgWidth-50 + .articleWrap,
	.list .articleImgRight.imgWidth-67 + .articleWrap {
		padding-right: 1em;
		margin-right: 50%;
	}
}

@media (min-width: 960px) {
	.list .articleImgLeft.imgWidth-25,
	.list .articleImgRight.imgWidth-25 {
		width: 25%;
	}

	.list .articleImgLeft.imgWidth-75 {
		float:left;
	}
	.list .articleImgLeft.imgWidth-5 + .articleWrap {
		margin-left: 5%;
	}
	.list .articleImgLeft.imgWidth-10 + .articleWrap {
		margin-left: 10%;
	}
	.list .articleImgLeft.imgWidth-13 + .articleWrap {
		margin-left: 12.5%;
	}
	.list .articleImgLeft.imgWidth-15 + .articleWrap {
		margin-left: 15%;
	}
	.list .articleImgLeft.imgWidth-17 + .articleWrap {
		margin-left: 16.7%;
	}
	.list .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 20%;
	}
	.list .articleImgLeft.imgWidth-25 + .articleWrap {
		margin-left: 25%;
	}
	.list .articleImgLeft.imgWidth-33 + .articleWrap {
		margin-left: 33.3%;
	}
	.list .articleImgLeft.imgWidth-42 + .articleWrap {
		margin-left: 41.7%;
	}
	.list .articleImgLeft.imgWidth-50 + .articleWrap {
		margin-left: 50%;
	}
	.list .articleImgLeft.imgWidth-67 + .articleWrap {
		margin-left: 66.7%;
	}
	.list .articleImgLeft.imgWidth-75 + .articleWrap {
		padding-left: 1em;
		margin-left: 75%;
	}

	.list .articleImgRight.imgWidth-75 {
		float: right;
	}
	.list .articleImgRight.imgWidth-5 + .articleWrap {
		margin-right: 5%;
	}
	.list .articleImgRight.imgWidth-10 + .articleWrap {
		margin-right: 10%;
	}
	.list .articleImgRight.imgWidth-13 + .articleWrap {
		margin-right: 12.5%;
	}
	.list .articleImgRight.imgWidth-15 + .articleWrap {
		margin-right: 15%;
	}
	.list .articleImgRight.imgWidth-17 + .articleWrap {
		margin-right: 17%;
	}
	.list .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 20%;
	}
	.list .articleImgRight.imgWidth-25 + .articleWrap {
		margin-right: 25%;
	}
	.list .articleImgRight.imgWidth-33 + .articleWrap {
		margin-right: 33.3%;
	}
	.list .articleImgRight.imgWidth-42 + .articleWrap {
		margin-right: 41.7%;
	}
	.list .articleImgRight.imgWidth-50 + .articleWrap {
		margin-right: 50%;
	}
	.list .articleImgRight.imgWidth-67 + .articleWrap {
		margin-right: 66.7%;
	}
	.list .articleImgRight.imgWidth-75 + .articleWrap {
		padding-right: 1em;
		margin-right: 75%;
	}
}

/* Content: GRIDS */
.gridWrap {
	margin: 40px -20px 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.gridWrap .gridSizer {
	width: 8.33%;
}
.gridWrap .articleGrid {
	padding: 0 20px 40px;
	float: left;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
}
.gridWrap .articleGrid:not(.masonryGridItem):after {
	position: absolute;
	right: 20px;
	left: 20px;
	bottom: 19px;
	height: 1px;
	background: #fff;
	content: '';
	display: block;
}
.gridWrap .articleGrid:last-child:after {
	display: none !important;
}
.gridWrap .leftContainer,
.gridWrap .rightContainer {
	width: 100%;
}
.gridWrap .rightContainer {
	float: right;
}
.gridWrap .leftContainer:after,
.gridWrap .rightContainer:after {
	display: none;
}


.articleGrid {
	position: relative;
	z-index: 1;
	width: 100%;
}

.articleGrid .info > :first-child {
	margin-top: 0;
}
.articleGrid .info > :last-child {
	margin-bottom: 0;
}
.articleGrid > * {
	margin: 0;
}
.articleGrid .headline a {
	text-decoration: none;
	display: block;
}
.articleGrid .imgWrap {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	position: relative;
}
.articleGrid .imgWrap .caption {
	position: absolute;
	background: #fff;
	display: block;
	padding: .5em 1em;
	margin: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	max-width: 100%;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.articleGrid:hover .imgWrap .caption {
	white-space: normal;
	text-overflow: none;
}
.articleGrid .articleImgNone {
	margin: 0 auto;
}
.articleGrid .imgWidth-100 {
	width: 100%;
}
.articleGrid .imgWidth-75 {
	width: 75%;
}
.articleGrid .imgWidth-67 {
	width: 66.7%;
}
.articleGrid .imgWidth-50 {
	width: 50%;
}
.articleGrid .imgWidth-42 {
	width: 41.7%;
}
.articleGrid .imgWidth-33 {
	width: 33.3%;
}
.articleGrid .imgWidth-25 {
	width: 25%;
}
.articleGrid .imgWidth-20 {
	width: 20%;
}
.articleGrid .imgWidth-17 {
	width: 16.7%;
}
.articleGrid .imgWidth-15 {
	width: 15%;
}
.articleGrid .imgWidth-13 {
	width: 12.5%;
}
.articleGrid .imgWidth-10 {
	width: 10%;
}
.articleGrid .imgWidth-5 {
	width: 5%;
}
.articleGrid .imgWidth-75.articleImgLeft,
.articleGrid .imgWidth-67.articleImgLeft,
.articleGrid .imgWidth-50.articleImgLeft,
.articleGrid .imgWidth-42.articleImgLeft,
.articleGrid .imgWidth-33.articleImgLeft,
.articleGrid .imgWidth-25.articleImgLeft,
.articleGrid .imgWidth-20.articleImgLeft,
.articleGrid .imgWidth-17.articleImgLeft,
.articleGrid .imgWidth-15.articleImgLeft,
.articleGrid .imgWidth-13.articleImgLeft,
.articleGrid .imgWidth-10.articleImgLeft,
.articleGrid .imgWidth-5.articleImgLeft {
	float: left;
	padding-right: 1em;
	margin-bottom: 1em;
}
.articleGrid .imgWidth-75.articleImgRight,
.articleGrid .imgWidth-67.articleImgRight,
.articleGrid .imgWidth-50.articleImgRight,
.articleGrid .imgWidth-42.articleImgRight,
.articleGrid .imgWidth-33.articleImgRight,
.articleGrid .imgWidth-25.articleImgRight,
.articleGrid .imgWidth-20.articleImgRight,
.articleGrid .imgWidth-17.articleImgRight,
.articleGrid .imgWidth-15.articleImgRight,
.articleGrid .imgWidth-13.articleImgRight,
.articleGrid .imgWidth-10.articleImgRight,
.articleGrid .imgWidth-5.articleImgRight {
	float:right;
	padding-left: 1em;
	margin-bottom: 1em;
}
.articleGrid .more {
	margin-top: 10px;
}


	/* MASON Grids */
.masonryWrap {
	display: block;
	margin: 35px -5px;
}
.article + .masonryWrap,
.article + .clear + .masonryWrap{
	margin-top: -60px;
}
.masonryWrap .gridSizer {
	width: 8.333%;
}
.masonryWrap .articleGrid {
	height: auto;
	padding: 0;
}

.masonryWrap .wrap {
	display: block;
	height: 0;
}

.masonryWrap .gridWidth_3x3,
.masonryWrap .gridWidth_3x6 {
	width: 50%;
}
.masonryWrap .gridWidth_6x3,
.masonryWrap .gridWidth_6x6,
.masonryWrap .gridWidth_100w_50h {
	width: 100%;
}
.masonryWrap .gridWidth_6x6 .wrap,
.masonryWrap .gridWidth_3x3 .wrap {
	padding-bottom: 100%;
}
.masonryWrap .gridWidth_6x3 .wrap,
.masonryWrap .gridWidth_100w_50h .wrap {
	padding-bottom: 50%;
}
.masonryWrap .gridWidth_3x6 .wrap {
	padding-bottom: 200%;
}

.masonryGridItem .wrap .info {
	position: absolute;
	left: 5px;
	right: 5px;
	bottom: 5px;
	padding: 30px 10px 10px;
	max-height: calc(100% - 10px);
	color: #fff;
	font-size: .857em;
	line-height: 1.25;
	z-index: 3;
	overflow: hidden;
	transition: transform .3s;
}
.masonryGridItem.hasPreviewImage .wrap .info {
	text-shadow: 0 0 5px rgba(0,0,20,.2);
}
.masonryGridItem.hasPreviewImage .wrap .info:after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 60px);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 60px);
	pointer-events: none;
}
.masonryGridItem .wrap .info .headline,
.masonryGridItem .wrap .info .headline a {
	color: #fff;

}
.masonryGridItem .wrap .info .headline,
.masonryGridItem .wrap .info p {
	margin: 0;
}

.masonryGridItem .wrap .info > :first-child {
	margin-top: 0;
}
.masonryGridItem .wrap .info > :last-child {
	margin-bottom: 0;
}
.masonryGridItem .wrap .more {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 4;
	height: 30px;
	padding-left: 0;
	box-shadow: none !important;
}
.masonryGridItem .wrap .more .label {
	display: none;
}

.masonryGridItem .articleTeaser {
	position: absolute;
	left: 5px;
	top: 5px;
	right: 5px;
	bottom: 5px;
	margin: 0;
	color: #fff;
	transition: transform .3s, box-shadow .3s;
}
.masonryGridItem .articleTeaser:not(.gradient) {
	background: #fff;
}
.masonryGridItem .articleTeaser .imgWrap {
	padding-bottom: 0 !important;
	height: 100%;
}
.masonryGridItem .fileWrapper .player,
.masonryGridItem .fileWrapper .mediaState .off,
.masonryGridItem .videoWrapper .mejs__controls {
	display: none;
}
.masonryGridItem .articleTeaser .imgTrigger,
.masonryGridItem .fileWrapper {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.masonryGridItem .fileWrapper .mediaState {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: none;
	color: inherit;
	text-align: center;
	font-size: 4em;
	text-shadow: 0 10px 20px rgba(0,0,0,.13);
}
.masonryGridItem .fileWrapper.paused .mediaState .off {
	display: block;
}
.masonryGridItem .fileWrapper.paused .mediaState .on {
	display: none;
}
.masonryGridItem .fileWrapper.paused:hover .mediaState .off {
	display: none;
}
.masonryGridItem .fileWrapper.paused:hover .mediaState .on {
	display: block;
}
.masonryGridItem .fileWrapper.playing .mediaState .on {
	display: block;
}
.masonryGridItem .fileWrapper.playing .mediaState .off {
	display: none;
}
.masonryGridItem .fileWrapper.playing:hover .mediaState .off {
	display: block;
}
.masonryGridItem .fileWrapper.playing:hover .mediaState .on {
	display: none;
}
.masonryGridItem .videoWrapper.playing .mediaState {
	display: none;
}
.masonryGridItem .videoWrapper.playing:hover .mediaState {
	display: block;
}
.masonryGridItem .videoWrapper .mejs__container:not(.mejs__container-fullscreen) {
	background: #000 !important;
}
.masonryGridItem .videoWrapper.playing .player {
	display: block;
}
.masonryGridItem .flag {
	left: 20px;
	top: 20px;
	position: absolute;
	background: #fff;
	color: #000;
	font-size: .667em;
	line-height: 1;
	display: inline-block;
	padding: 5px;
	z-index: 3;
	transition: transform .3s;
}

.masonryGridItem:hover .wrap .info {
	transform: scale(1.02) translateY(-1%);
}
.masonryGridItem:hover .articleTeaser {
	transform: scale(1.02) translateY(-1%);
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.masonryGridItem:hover .articleTeaser.vidWrap {
	z-index: 3;
}

.masonryGridItem.noZoomEffect:hover .articleTeaser {
	transform: none;
	box-shadow: none;
}

@media (max-width: 639px) {
	.masonryWrap .gridWidth_3x3-xs,
	.masonryWrap .gridWidth_3x6-xs {
		width: 50%;
	}
	.masonryWrap .gridWidth_6x3-xs,
	.masonryWrap .gridWidth_6x6-xs {
		width: 100%;
	}

	.masonryWrap .gridWidth_6x6-xs .wrap,
	.masonryWrap .gridWidth_3x3-xs .wrap {
		padding-bottom: 100%;
	}
	.masonryWrap .gridWidth_6x3-xs .wrap {
		padding-bottom: 50%;
	}
	.masonryWrap .gridWidth_3x6-xs .wrap {
		padding-bottom: 200%;
	}
}

@media (min-width: 480px) {
	.gridWrap .gridWidth_25 {
		width: 50%;
	}
	.gridWrap .gridWidth_25:after {
		right: -1px;
		top: 0;
		left: auto;
		bottom: 40px;
		width: 2px;
		height: auto;
	}
	.gridWrap .gridWidth_25:nth-child(2n):after {
		display: none;
	}
}

@media (min-width: 560px) {
	.gridWrap .gridWidth_50,
	.gridWrap .leftContainer,
	.gridWrap .rightContainer {
		width: 50%;
	}
	.gridWrap .gridWidth_50:after {
		right: -1px;
		top: 0;
		left: auto;
		bottom: 40px;
		width: 2px;
		height: auto;
	}
	.gridWrap .gridWidth_50:nth-child(2n):after {
		display: none;
	}
}

@media (min-width: 720px) {
	.gridWrap .gridWidth_33 {
		width: 50%;
	}
	.gridWrap .gridWidth_33:not(.masonryGridItem):after {
		right: -1px;
		top: 0;
		left: auto;
		bottom: 40px;
		width: 1px;
		height: auto;
	}
	.gridWrap .gridWidth_33:nth-child(2n):after {
		display: none;
	}

	/* MASON Grids */
	.masonryWrap .gridWidth_3x3,
	.masonryWrap .gridWidth_3x6 {
		width: 33.333%;
	}
	.masonryWrap .gridWidth_6x3,
	.masonryWrap .gridWidth_6x6 {
		width: 66.666%;
	}
	.masonryGridItem .wrap .info {
		font-size: .75em;
		line-height: 1.333;
	}
	.masonryGridItem .wrap .more {
		height: 40px;
		padding-right: 40px;
	}
	.masonryGridItem .wrap .more .icon {
		right: 10px;
	}
}

@media (min-width: 720px) and (max-width: 959px) {
	/* MASON Grids */
	.masonryWrap .gridWidth_3x3-sm,
	.masonryWrap .gridWidth_3x6-sm {
		width: 33.333%;
	}
	.masonryWrap .gridWidth_6x3-sm,
	.masonryWrap .gridWidth_6x6-sm {
		width: 66.666%;
	}

	.masonryWrap .gridWidth_6x6-sm .wrap,
	.masonryWrap .gridWidth_3x3-sm .wrap {
		padding-bottom: 100%;
	}
	.masonryWrap .gridWidth_6x3-sm .wrap {
		padding-bottom: 50%;
	}
	.masonryWrap .gridWidth_3x6-sm .wrap {
		padding-bottom: 200%;
	}
}
@media (min-width: 960px) {
	.gridWrap .gridWidth_33 {
		width: 33.33%;
	}
	.gridWrap .gridWidth_33:nth-child(2n):after,
	.gridWrap .gridWidth_25:nth-child(2n):after {
		display: block;
	}
	.gridWrap .gridWidth_33:nth-child(3n):after {
		display: none;
	}
	.gridWrap .gridWidth_25 {
		width: 25%;
	}
	.gridWrap .gridWidth_25:nth-child(4n):after {
		display: none;
	}


	/* MASON Grids */
	.masonryWrap {
		margin: 30px -10px 70px;
	}
	.masonryGridItem .wrap .info,
	.masonryGridItem .articleTeaser {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
	.masonryGridItem .articleTeaser {
		top: 10px;
	}
	.masonryGridItem .wrap .info {
		padding: 40px 20px 20px;
		max-height: calc(100% - 20px);
	}
	.masonryGridItem .flag {
		left: 40px;
		top: 40px;
	}

	.masonryWrap .gridWidth_3x3,
	.masonryWrap .gridWidth_3x6 {
		width: 25%;
	}
	.masonryWrap .gridWidth_6x3,
	.masonryWrap .gridWidth_6x6 {
		width: 50%;
	}

	.masonryWrap .gridWidth_3x3-md,
	.masonryWrap .gridWidth_3x6-md {
		width: 25%;
	}
	.masonryWrap .gridWidth_6x3-md,
	.masonryWrap .gridWidth_6x6-md {
		width: 50%;
	}
	.masonryWrap .gridWidth_6x6-md .wrap,
	.masonryWrap .gridWidth_3x3-md .wrap {
		padding-bottom: 100%;
	}
	.masonryWrap .gridWidth_6x3-md .wrap {
		padding-bottom: 50%;
	}
	.masonryWrap .gridWidth_3x6-md .wrap {
		padding-bottom: 200%;
	}
}

/* Site: PAGE JUMPS */
.jumper {
	margin: 1em -1em;
	position: relative;
	height: 40px;
}
.jumper .resultStats,
.pagerJumper .divider {
	display: none;
}
.jumper .pagerJumper {
	display:block;
	margin:0 auto;
	position:absolute;
	right:0;
}
.pagerJumper a {
	padding: 10px 0;
	margin:0 1em;
	display:block;
	float:left;
	width:40px;
	height:40px;
	background: #999;
	color: inherit;
	font-weight: normal;
	line-height: 20px;
	text-align:center;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.pagerJumper a:hover {
	background: #666;
	color: #fff;
}
.pagerJumper a:hover .iconForward {
	background-position: -570px -50px;
}
.pagerJumper a:hover .iconBackward {
	background-position: -530px -50px;
}
.pagerJumper a.aktiv {
	font-weight: bold;
	color: #fff;
	background:#d4af37;
}
.pagerJumper a .sprt {
	display:inline-block;
}
.pages {
	text-align: center;
	padding-top: 1em;
	margin: 1em 0;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    justify-content: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.pages:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0, #fff 25%, #fff 75%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0, #fff 25%, #fff 75%, rgba(255,255,255,0) 100%);
}
.pages:after {
	content: '';
	display: block;
	position: absolute;
	top: -25%;
	left: 0;
	right: 0;
	height: 50%;
	background: -webkit-radial-gradient(center, ellipse closest-corner, rgba(255,255,255,.6) 0%,rgba(255,255,255,0) 70%);
	background: radial-gradient(ellipse closest-corner at center, rgba(255,255,255,.6) 0%,rgba(255,255,255,0) 70%);
}
.pages > * {
	display: inline-block;
	margin: 0 10px;
	overflow: hidden;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.pages > :first-child {
	margin-left: 0;
}
.pages > :last-child {
	margin-right: 0;
}
.pages a {
	position: relative;
	text-decoration: none;
}
.pages a .label {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: block;
}
.pages .overview {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.pages a.disabled {
	color: #CCC;
	text-decoration: none;
	cursor: default;
}
@media (min-width: 1280px) {
	.pages > * {
		margin: 0 20px;
	}
}

/* ==========================================================================
   Module styles.
   ========================================================================== */

/*
	Module: SEARCH
	*/
.searchResultItem .headline + .depthpath {
	margin-top: -20px;
}
.searchResultItem .depthpath a {
	text-decoration: none;
}
.searchResultItem .depthpath .divider:after {
	content: '/';
	display: inline-block;
	margin: 0 5px;
	color: #fff;
}


/*
	Module: TIMELINE
	*/
.modul_timeline .article {
	position: relative;
	z-index: 1;
}
#timeline {
	position: relative;
	margin: 80px 0;
}
#timeline:before {
	content: '';
	position: absolute;
	display: block;
	width: 2px;
	background: #fff;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0px, #fff 40px, #fff calc(100% - 40px), rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0px, #fff 40px, #fff calc(100% - 40px), rgba(255,255,255,0) 100%);
	left: 4px;
	top: -40px;
	bottom: -40px;
}
#timeline .timelineEntry {
	padding: 0 0 0 20px;
	margin: 0 0 80px 0;
}
#timeline .timelineEntry:last-child {
	margin-bottom: 0;
}

#timeline .timelineEntry .articleTeaser + .articleInfo {
	margin-top: 20px;
}
#timeline .timelineEntry .articleTeaser {
	width: 66.67%;
	width: calc((100% + 60px) * 2 / 3 - 30px);
}
#timeline .timelineEntry .imgWrap {
	display: block;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
#timeline .timelineEntry .headline {
	position: relative;
	margin-bottom: 20px;
}
#timeline .timelineEntry .headline:before {
	content: '';
	height: 10px;
	width: 10px;
	display: block;
	background: #d4af37;
	border-radius: 5px;
	position: absolute;
	left: -20px;
	top: 15px;
}
#timeline .timelineEntry .articleInfo {
	margin: 0;
}
#yearsShortcut {
	position: sticky;
	z-index: 1;
	left: 0;
	bottom: 0;
	margin: 0 -20px;
	background: #ebebeb;
	overflow: hidden;
	background: -webkit-linear-gradient(top, rgba(235,235,235,.6) 0%,rgba(235,235,235,1) 100%);
	background: linear-gradient(to bottom, rgba(235,235,235,.6) 0%,rgba(235,235,235,1) 100%);
}
#yearsShortcut:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0, #fff 25%, #fff 75%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0, #fff 25%, #fff 75%, rgba(255,255,255,0) 100%);
}
#yearsShortcut:after {
	content: '';
	display: block;
	position: absolute;
	top: -25%;
	left: 0;
	right: 0;
	height: 50%;
	background: -webkit-radial-gradient(center, ellipse closest-corner, rgba(255,255,255,.6) 0%,rgba(255,255,255,0) 70%);
	background: radial-gradient(ellipse closest-corner at center, rgba(255,255,255,.6) 0%,rgba(255,255,255,0) 70%);
}
#yearsShortcut .outerWrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	-webkit-mask-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
	mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}
#yearsShortcut .outerWrap.swiper-container-initialized:after {
	position: absolute;
	content: '';
	display: block;
	width: 2px;
	height: 10px;
	left: 50%;
	bottom: 0;
	background: #fff;
	margin-left: -1px;
}
#yearsShortcut .wrap {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -ms-flexbox;
	display: flex;
}
#yearsShortcut li {
	float: left;
	margin: 0;
	padding: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	white-space: nowrap;
	width: auto;
}
#yearsShortcut a {
	text-decoration: none;
	line-height: 20px;
	display: block;
	padding: 10px;
	min-width: 80px;
	text-align: center;
	transition: all .2s;
}
#yearsShortcut a:hover {
	color: #c20d20;
}
#yearsShortcut .swiper-slide-active a {
	font-size: 1.333em;
	font-weight: 700;
	color: #c20d20;
}

#yearCurrent {
	position: fixed;
	left: 50%;
	top: 50%;
	top: calc(50% + 40px);
	transform: translate(-50%, -50%);
	color: #d6d6d6;
	font-weight: 300;
	font-size: 6em;
	z-index: -1;
	line-height: 1;
	height: 1em;
	overflow: hidden;
}
#yearCurrent .num {
	display: block;
}
@media (min-width: 480px) {
	#timeline .timelineEntry .articleTeaser {
		width: 50%;
		width: calc((100% + 60px) / 2 - 60px);
	}
}
@media (min-width: 720px) {
	.article + #timeline {
		margin-top: 120px;
	}
	#timeline:before {
		background: linear-gradient(to bottom, rgba(255,255,255,0) 0px, #fff 80px, #fff calc(100% - 80px), rgba(255,255,255,0) 100%);
		top: -80px;
		bottom: -80px;
	}
	#timeline .timelineEntry {
		padding-right: 80px;
	}
	#timeline .timelineEntry .headline:before {
		top: 24px;
		height: 12px;
		width: 12px;
		border-radius: 6px;
		left: -21px;
	}

	#timeline .timelineEntry .articleTeaser {
		width: 50%;
		width: calc((100% + 140px) / 2 - 60px);
	}

	#yearsShortcut:not(.encyclopediaPager) {
		position: fixed;
		right: 0;
		left: auto;
		top: 80px;
		bottom: 0;
		margin: 0;
		background: none;
		font-size: .75em;
	}
	#yearsShortcut:not(.encyclopediaPager):before,
	#yearsShortcut:not(.encyclopediaPager):after {
		display: none;
	}
	#yearsShortcut:not(.encyclopediaPager) .outerWrap {
		height: 100%;
		width: auto;
		-webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
		mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
	}
	#yearsShortcut:not(.encyclopediaPager) .outerWrap.swiper-container-initialized:after {
		width: 10px;
		height: 2px;
		left: auto;
		bottom: auto;
		top: 50%;
		right: 0;
		margin-left: -1px;
		margin-left: 0;
		margin-top: -1px;
	}
	#yearsShortcut:not(.encyclopediaPager) .wrap {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#yearsShortcut:not(.encyclopediaPager) a {
		padding: 10px 20px 10px 10px;
		line-height: 30px;
	}
	.modul_timeline #main > .article.tax_fullWidth {
		padding-right: 80px;
	}
	.modul_timeline .timelineEntryDetail  .teaserWrap {
		-webkit-mask: linear-gradient(to top,  transparent 0%, rgba(255,255,255,.2) 25%, #fff 50%), linear-gradient(to left, transparent 0%, #fff 200px);
		-webkit-mask-size:100% 100%;
		-webkit-mask-position:center;
		-webkit-mask-repeat:no-repeat;
		-webkit-mask-composite: source-in;
		mask: linear-gradient(to top,  transparent 0%, rgba(255,255,255,.2) 25%, #fff 50%), linear-gradient(to left, transparent 0%, #fff 200px);
		mask-size: 100% 100%;
		mask-position: center;
		mask-repeat:no-repeat;
		mask-composite: intersect;
	}
}
@media (min-width: 720px) and (max-width: 959px) {
	.modul_timeline .timelineEntryDetail {
		padding-right: 80px;
	}
	.modul_timeline .timelineEntryDetail .teaserWrap {
		margin-right: -100px;
	}
}
@media (min-width: 960px) {
	#timeline {
		margin-right: 80px;
	}
	#timeline:before {
		background: linear-gradient(to bottom, rgba(255,255,255,0) 0px, #fff 80px, #fff calc(100% - 80px), rgba(255,255,255,0) 100%);
		left: 50%;
		margin-left: -1px;
	}
	#timeline .timelineEntry {
		padding: 0;
	}
	#timeline .timelineEntry .articleTeaser,
	#timeline .timelineEntry .articleInfo {
		width: 50%;
		width: calc(50% - 20px);
		float: left;
	}
	#timeline .timelineEntry .articleInfo  {
		float: right;
	}
	#timeline .timelineEntry .articleTeaser + .articleInfo {
		margin-top: 0;
	}
	#timeline .timelineEntry .headline:before {
		left: -26px;
	}
	#timeline .timelineEntry:nth-child(2n) .articleTeaser {
		float: right;
	}
	#timeline .timelineEntry:nth-child(2n) .articleInfo {
		float: left;
		text-align: right;
	}
	#timeline .timelineEntry:nth-child(2n) .headline:before {
		left: auto;
		right: -26px;
	}
	#yearsShortcut {
		top: 120px;
	}
	#header.hasMainNav + #main #yearsShortcut {
		top: 180px;
	}
	#yearCurrent {
		top: calc(50% + 60px);
	}
	#header.hasMainNav + #main #yearCurrent {
		top: calc(50% + 90px);
	}
}
@media (min-width: 1280px) {
	#timeline {
		margin-right: 40px;
	}
	.modul_timeline #main > .article.tax_fullWidth {
		padding-right: 40px;
	}
	#yearsShortcut .outerWrap.swiper-container-initialized:after {
		width: 20px;
	}
	#yearsShortcut a {
		padding-right: 30px;
		min-width: 100px;
	}
}
@media (min-width: 1440px) {
	#timeline {
		margin-right: 0;
	}
	.modul_timeline #main > .article.tax_fullWidth {
		padding-right: 0;
	}
}

/*
	Module: SLIDER
	*/
.article + .sliderWrap {
	margin-top: -60px;
}
.sliderWrap + .pages {
	margin-top: 0;
}
.modul_slider .slider {
	overflow: hidden;
	position: relative;
}
.modul_slider .swiper-progress-bar {
	left: 0;
	right: 0;
	width: auto;
	bottom: 0;
	top: auto;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	background: rgba(255,255,255,.5);
	z-index: 1;
	overflow: hidden;
}
.modul_slider .swiper-progress-bar .swiper-progress {
	width: 0%;
	height: 100%;
}
.modul_slider .swiper-wrapper {
	list-style: none;
	margin: 0;
	padding: 0;
	height: calc(100vh - 120px);
	min-height: 200px;
}
.modul_slider .swiper-slide {
	overflow: hidden;
}
.modul_slider .imageContainerWrap {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.modul_slider .imageContainer {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 50%;
	top:50%;
	transform: translate(-50%, -50%);
}
.modul_slider .imageContainerWrap .layer {
	position: relative;
	height: 100%;
	width: auto;
	display: block;
}
.modul_slider .imageContainerWrap.center .layer {
	transform: translateX(-50%) !important;
	left: 50% !important;
}
.modul_slider .imageContainerWrap .imageMarker {
	position: absolute;
	height: 1em;
	width: 1em;
	font-size: 2em;
	margin-left: -.5em;
	margin-top: -.5em;
	display: block;
	cursor: pointer;
}
.modul_slider .imageContainerWrap .imageMarker:before {
	content: '';
	position:  absolute;
	left: 0;
	top: 0;
	width: 1em;
	height: 1em;
	font-size: 1em;
	display: block;
	border-radius: .5em;
	background: #d4af37;
	background: -webkit-linear-gradient(left, #d4af37 0%, #9f8329 100%);
	background: linear-gradient(to right, #d4af37 0%, #9f8329 100%);
	z-index: 1;
	transition: background .3s, box-shadow .3s, color .3s;
}
.modul_slider .imageContainerWrap .imageMarker .cirlce {
	content: '';
	position:  absolute;
	width: 1em;
	height: 1em;
	font-size: 2em;
	left: 50%;
	top: 50%;
	display: block;
	border-radius: .5em;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	z-index: 0;
	animation-duration: 1s;
	animation-name: markerSizing;
	animation-iteration-count: infinite;
	animation-timing-function:ease-in;

}
.modul_slider .imageContainerWrap .imageMarker:hover:before,
.modul_slider .imageContainerWrap .imageMarker.hover:before {
	background: #c20d20;
	background: -webkit-linear-gradient(left, #c20d20 0%, #910a18 100%);
	background: linear-gradient(to right, #c20d20 0%, #910a18 100%);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

}
.modul_slider .imageContainerWrap .imageMarker:hover .cirlce,
.modul_slider .imageContainerWrap .imageMarker.hover .cirlce,
.modul_slider .swiper-container.overlayOpen .imageMarker .cirlce {
	border-color: transparent;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}


.modul_slider .slider .swiper-control {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}
.modul_slider .slider .swiper-control:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	height: 4em;
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,.5) 33%, rgba(0,0,0,0) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,.5) 33%, rgba(0,0,0,0) 100%);
	width: 100%;
	pointer-events: none;
}
.modul_slider .slider .swiper-button-next,
.modul_slider .slider .swiper-button-prev {
	top: auto;
	bottom: 10px;
	height: 2em;
	width: 2em;
	background: #fff;
	border-radius: 50%;
	color: inherit;
	transition: all .3s;
}
.modul_slider .slider .swiper-button-next {
	right: 20px;
}
.modul_slider .slider .swiper-button-prev {
	left: 20px;
}
.modul_slider .slider .swiper-button-prev:after,
.modul_slider .slider .swiper-button-next:after {
	display: none
}
.modul_slider .slider .swiper-button-next:hover,
.modul_slider .slider .swiper-button-prev:hover {
	color: #c20d20;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	transform: translateY(-5%);
}
.modul_slider .slider .swiper-pagination {
	line-height: 2em;
}
.modul_slider .slider .swiper-pagination-bullet {
	height: .5em;
	width: .5em;
}
.modul_slider .slider .swiper-pagination-bullets .swiper-pagination-bullet {
	margin-left: .25em;
	margin-right: .25em;
	background: #fff;
	opacity: 1;
}
.modul_slider .slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
	margin-left: .25em;
	margin-right: .25em;
	background: #d4af37;
	background: -webkit-linear-gradient(left, #d4af37 0%, #9f8329 100%);
	background: linear-gradient(to right, #d4af37 0%, #9f8329 100%);
	opacity: 1;
}
@keyframes markerSizing {
	0% {
		font-size: 1em;
		opacity: 1;
	}
	100% {
		opacity: 0;
		font-size: 2em;
	}
}

@media (min-width: 720px) {
	.modul_slider .swiper-wrapper {
		min-height: 300px;
	}
}

@media (min-width: 960px) {
	.modul_slider .swiper-wrapper {
		height: calc(100vh - 160px);
		min-height: 400px;
	}
}

@media (min-width: 1280px) {
	.modul_slider .slider .swiper-button-next {
		right: 40px;
	}
	.modul_slider .slider .swiper-button-prev {
		left: 40px;
	}
}

/*
	Module: ENCYCLOPEDIA
	*/
.article + #filter_encyclopedia {
	margin-top: -40px;
}
#filter_encyclopedia_search {
	margin-top: 10px;
}
#filter_encyclopedia_az {
	position: relative;
}
#filter_encyclopedia_az .wrap,
#filter_encyclopedia_search .form {
	background: #fff;
	overflow: hidden;
}
#filter_encyclopedia_az .wrap {
	z-index: 2;
}

#filter_encyclopedia_az ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#filter_encyclopedia_az .item {
	flex: 1 1 auto;
	position: relative;
}

#filter_encyclopedia_az .random {
	padding-right: 10px;
}
#filter_encyclopedia_az a {
	display: block;
	text-decoration: none;
}
#filter_encyclopedia_az .item > a {
	padding: 10px 5px;
	text-align: center;
	min-width: 1em;
	text-transform: uppercase;
	font-weight: 500;
	transition: all .2s;
}
#filter_encyclopedia_az .item:hover > a,
#filter_encyclopedia_az .item.hover > a,
#filter_encyclopedia_az .item > a.active {
	font-size: 1.42857em;
	color: #c20d20;
	line-height: 1;
}
#filter_encyclopedia_az .item:first-child a {
	padding-left: 10px;
}
#filter_encyclopedia_az .item:last-child a {
	padding-right: 10px;
}
#filter_encyclopedia_az .sub {
	position: absolute;
	display: none;
	left: 50%;
	width: 15em;
	top: 100%;
	padding: 5px 0;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	z-index: 3;
	transform: translateX(-50%);
}
#filter_encyclopedia_az .sub .marker {
	content: '';
	position: absolute;
	top: -7px;
	left: 50%;
	margin-left: -7px;
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	background: #fff;
	box-shadow: -4px -4px 5px rgba(0, 0, 0, 0.05);
	z-index: -1;
}
#filter_encyclopedia_az .item:hover .sub,
#filter_encyclopedia_az .item.hover .sub {
	display: block;
}
#filter_encyclopedia_az .sub li a {
	padding: 10px 20px;
	font-weight: bold;
	transition: color .2s;
}
#filter_encyclopedia_az .sub li a:hover,
#filter_encyclopedia_az .sub li a.active {
	color: #c20d20;
}
#filter_encyclopedia_search .form {
	position: relative;
}
#filter_encyclopedia_srcQuestion {
	padding: 10px;
	width: 100%;
	line-height: inherit;
}
#filter_encyclopedia_search label {
	display: none;
}
#filter_encyclopedia_srcSubmit {
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px;
	background: none;
	line-height: inherit;
}
#filter_encyclopedia_srcSubmit:hover {
	color: #c20d20;
}

#encyclopediaPager .header {
	display: flex;
	width: 100%;
}

#encyclopediaPager .header > * {
	color: inherit;
	background: none;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.25;
	transition: color .2s;
}
#encyclopediaPager .header > *:hover {
	color: #c20d20;
}
#encyclopediaPager .header .overview {
	flex: 1 1 auto;
}
#encyclopediaPager .header > * .label {
	display: block;
}
@media (max-width: 959px) {
	.encyclopediaEntryDetail .aside {
		position: sticky;
		bottom: 0;
	}
	#encyclopediaPager .header {
		display: none;
	}
}
@media (min-width: 720px) {
	#filter_encyclopedia_az .random {
		padding-right: 20px;
	}
	#filter_encyclopedia_az .item:hover > a,
	#filter_encyclopedia_az .item.hover > a,
	#filter_encyclopedia_az .item > a.active {
		font-size: 1.5em;
	}
}
@media (min-width: 960px) {
	#filter_encyclopedia {
		margin-left: -10px;
		margin-right: -10px;
	}
	#filter_encyclopedia_az,
	#filter_encyclopedia_search {
		padding-right: 10px;
		padding-left: 10px;
		margin-top: 0;
	}
	#filter_encyclopedia_az {
		width: 75%;
		float: left;
	 }
	#filter_encyclopedia_search {
		width: 25%;
		float: left;
	}

	#encyclopediaPager #yearsShortcut {
		background: none;
		margin: 10px 0 0;
		top: auto !important;
	}

	#encyclopediaPager #yearsShortcut:after,
	#encyclopediaPager #yearsShortcut:before {
		display: none;
	}
	#encyclopediaPager #yearsShortcut a {
		text-align: left;
		white-space: normal;
		padding-left: 0;
		padding-right: 0;
	}

	#encyclopediaPager #yearsShortcut .outerWrap {
		-webkit-mask-image: none;
		mask-image: none;
	}

	#encyclopediaPager .contents {
		position: relative;
		height: calc(100% - 50px);
		max-height: calc(100vh - 50px);
		min-height: 50vh;
		margin-left: -20px;
		margin-right: -20px;
		margin-top: 10px;
		overflow: hidden;
	}
	#encyclopediaPager .swiper {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		padding: 0;
	}
	#encyclopediaPager .swiper-slide {
		margin: 0;
		padding: 0;
		list-style: none;
		height: auto;
	}

	.encyclopediaEntryDetail .articleContentWrap {
		position: relative;
		display: flex;
	}
	#encyclopediaPager {
		height: 100%;
	}
}


/* Modul: QUIZ */
.modul_quiz #main {
	display: flex;
	min-height: 67vh;
}
.modul_quiz #content {
	width: 100%;
}

.quiz-strikethrough {
	transition: background-size .5s ease-out;
	/* Draw the line as the background-image. */
	background-image: linear-gradient(#808080, #808080);
	/* Ensure that the background-image is not repeated. */
	background-repeat: no-repeat;
	/* Image position on X and Y axis behind the text. */
	background-position: 0 calc(50% + .133em);
	/* Strip size, 0 initial width and 50% initial height. */
	background-size: 0 .133em;
}

#quizTrigger {
	position: fixed;
	right: 20px;
	bottom: 20px;
	height: 2em;
	width: 2em;
	padding: .5em;
	border-radius: 1em;
	line-height: 1;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	text-align: center;
	font-size: 1.428em;
	transition: all .3s !important;
	z-index: 9;
	transform-origin: center bottom;
}
#quizTrigger.animate {
	animation-duration: 1s;
	animation-delay: .5s;
	animation-fill-mode: both;
	animation-name: bounceY;
}
#quizTrigger .label {
	display: none;
}
#quizTrigger:hover {
	color: #333;

	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	transform: translate3d(0, -10%, 0) !important;
}
#quizTriggerTooltip {
	max-width: 30em;
	width: calc(100% - 40px - 3.57em);
	position: fixed;
	z-index: 10;
	right: calc(20px + 2.142em);
	bottom: calc(20px + 1.428em);
	filter: drop-shadow(0 3px 6px rgba(0,0,0,0.16)) drop-shadow(0 3px 6px rgba(0,0,0,0.23));
}
#quizTriggerTooltip .wrap {
	background: #fff;
	padding: 10px;
	border-right: 1em solid #0000;
	-webkit-mask:
		radial-gradient(1em at 100% 0,#0000 98%,#000 102%)
		100% 100%/calc(100% - 10px) 1em no-repeat,
		conic-gradient(at 10px 10px,#000 75%,#0000 0)
		calc(10px / -2) calc(10px / -2) padding-box,
		radial-gradient(50% 50%,#000 98%,#0000 101%)
		0 0/10px 10px space padding-box;
	mask:
		radial-gradient(1em at 100% 0,#0000 98%,#000 102%)
		100% 100%/calc(100% - 10px) 1em no-repeat,
		conic-gradient(at 10px 10px,#000 75%,#0000 0)
		calc(10px / -2) calc(10px / -2) padding-box,
		radial-gradient(50% 50%,#000 98%,#0000 101%)
		0 0/10px 10px space padding-box;
}

#quizTriggerTooltip .closeBtn {
	float: right;
	background: none;
	margin: 0 0 10px 10px;
}
#quizTriggerTooltip .article {
	margin: 0 0 20px;
}
#quizTriggerTooltip .article a {
	text-decoration: none;
	color: inherit;
}

@keyframes bounceY {
	from,
	20%,
	53%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0);
	}

	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0) scaleY(1.1);
	}

	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0) scaleY(1.05);
	}

	80% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0) scaleY(0.95);
	}

	90% {
		transform: translate3d(0, -4px, 0) scaleY(1.02);
	}
}


#quizWrap {
	width: 100%;
	position: relative;
}

#quizIntro,
#quizQuestion,
#quizResult,
#quizResultDetail {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#quizIntro {
	padding: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.vcModal #quizIntro {
	min-height: 50vh;
}
#quizHide,
#quizHidePermanent {
	display: none;
}
.vcModal #quizHide,
.vcModal #quizHidePermanent,
#quizTriggerTooltip #quizHide,
#quizTriggerTooltip #quizHidePermanent{
	display: block;
}

#quizGroupSelect {
	margin: 20px -20px -20px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#quizGroupSelect li {
	margin: 0;
	padding: 20px;
	flex: 0 1 auto;
	width: 50%;
	overflow: hidden;
}
#quizGroupSelect a {
	display: block;
	text-decoration: none;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: transform .3s;
}
#quizResult .imgWrap,
#quizGroupSelect .imgWrap {
	background: #f2f2f2;
	border: 2px solid #ebebeb;
	border-radius: 50%;
	padding-bottom: 100%;
	background-size: cover;
	transition: all .3s;
	margin-bottom: 20px;
}
#quizResult .imgWrap {
	border: none;
	background-color: transparent;
}
#quizGroupSelect .headline {
	margin: 0;
}
#quizGroupSelect .headline small {
	color: #000;
}
#quizProgressBar {
	height: 2px;
	background: #d4af37;
	position: fixed;
	width: 100%;
	z-index: 1;
	left: 0;
	top: 80px;
	transition: top .2s;
}
.vcModal #quizProgressBar {
	position: absolute;
	left: -20px;
	top: -20px;
	right: -20px;
	width: auto;
	z-index: 0;
}
#quizProgressBar .progress {
	background: #9f8329;
	height: 100%;
	transition: width .3s;
}
#quizStateWrap {
	font-size: 12px;
	line-height: 1.25;
	padding: 18px 0 30px;
	font-weight: bold;
}
.vcModal #quizStateWrap {
	padding-top: 0;
}
#quizState {
	float: left;
	position: relative;
}
#quizState .dots {
	position: absolute;
	bottom: -1em;
	display: flex;
}
#quizState .dot {
	background: #fff;
	height: .667em;
	width: .667em;
	border-radius: 50%;
	transition: background-color .3s;
}
#quizState .dot + .dot {
	margin-left: 5px;
}

#quizPoints {
	float: right;
}
#quizPoints .label {
	float: right;
	padding-left: 10px;
}
#quizPoints .tooltip {
	vertical-align: baseline;
}
#quizState .dot.done,
#quizPoints .tooltip {
	color: #fff;
	background: #d4af37;
	background: -webkit-linear-gradient(left, #d4af37 0%, #9f8329 100%);
	background: linear-gradient(to right, #d4af37 0%, #9f8329 100%);
}
#quizPointsChart {
	height: 3em;
	width: 3em;
	float: left;
	margin-top: -.875em;
	margin-bottom: -.875em;
}

#quizQuestionMain {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
#quizQuestionMain .noMargin {
	margin-bottom: 0;
	margin-top: 0;
}
#quizQuestionMain .article {
	margin-top: 0px;
	margin-bottom: 20px;
}
#quizIntro .article {
	margin-top: 20px;
	margin-bottom: 20px;
}
.vcModal #quizIntro .vcContentSection:first-child .article {
	margin-top: 0;
}
#quizQuestionMain .vcContentSection {
	margin-top: 20px;
}
#quizIntro .vcContentSection + .vcContentSection
#quizQuestionMain .vcContentSection + .vcContentSection {
	margin-top: 40px;
}
.quizButtonBar {
	padding: 40px 0 10px;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.vcModal .quizButtonBar {
	padding-bottom: 0;
}
.quizButtonBar .btn + .btn {
	margin-top: 20px;
}
#quizQuestionBottomBar {
	flex-direction: column-reverse;
}
#quizQuestionBottomBar .btn {
	margin: 20px 0 0;
}
#quizQuestionBottomBar .btn:last-child {
	margin-top: 0;
}
#quizQuestionAnswers {
	margin: -10px -20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#quizQuestionAnswers li {
	margin: 0;
	flex: 1 1 auto;
	width: 100%;
}
#quizQuestionAnswers li:before {
	content: '';
	width: 1px;
	margin-left: -1px;
	float: left;
	height: 0;
	padding-top: 50%;
	display: block !important;
}
#quizQuestionAnswers li:after { /* to clear float */
	content: '';
	display: table;
	clear: both;
}
#quizQuestionAnswers .answer {
	display: block;
	text-decoration: none;
	text-align: center;
	transition: all .3s;
	padding: 38px 18px;
	background: #ffffff;
	border: 2px solid #ffffff;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
#quizQuestionAnswers input {
	display: none;
}
#quizQuestionAnswers input + .answer {
	cursor: pointer;
}

#quizQuestionAnswers li {
	padding: 10px 20px;
}
#quizQuestionAnswers .headline {
	margin: 0;
	transition: color .3s;
	position: relative;
	z-index: 1;
}
#quizInactivityDialog > .icon,
#quizQuestionAnswers .answer .icon {
	color: #ebebeb;
	font-size: 8em;
	line-height: 1;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 0;
	opacity: 0;
	transition: all .3s;
}

#quizQuestionAnswers input:checked + .answer .icon,
#quizQuestionAnswers .answer.right .icon,
#quizQuestionAnswers .answer.wrong .icon {
	opacity: 1;
}
#quizQuestionAnswers input:checked + .answer .headline {
	color: #000;
}
#quizQuestionAnswers input:checked + .answer .icon {
	color: #f2f2f2;
}
#quizQuestionAnswers .answer .answerStateText {
	position: absolute;
	text-align: center;
	bottom: 8px;
	line-height: 20px;
	font-weight: bold;
	width: 100%;
	color: #000;
	left: 0;
}
#quizQuestionAnswers .answer.right,
#quizQuestionAnswers .answer.wouldBeRight {
	background: #fff;
	border-color: #d4af37;
	border-image: linear-gradient(to right, #d4af37, #9f8329) 1;
}
#quizQuestionAnswers .answer.right .headline,
#quizQuestionAnswers .answer.wouldBeRight .headline {
	color: #000;
}
#quizQuestionAnswers .answer.wrong,
#quizQuestionAnswers .answer.wrongAlso {
	background: #ebebeb;
	border-color: #c20d20;
}

#quizQuestionAnswers .answer.wrong .headline .quiz-strikethrough,
#quizQuestionAnswers .answer.wrongAlso .headline .quiz-strikethrough {
	background-size: 100% .133em;
	color: #808080;
}
#questionButtonUnderAnswersWrap {
	text-align: center;
}
#questionButtonUnderAnswersWrap .btnNextQuestion {
	margin: 20px auto 0;
	width: 100%;
	text-align: center;
}

#quizGroupSelect:hover li .imgWrap {
	filter: grayscale(100%);
}

#quizGroupSelect li.hover .imgWrap,
#quizQuestionAnswers input:checked + .answer {
	background-color: #ffffff;
	border-color: #ffffff;
	filter: none;
}
#quizGroupSelect li.hover .imgWrap {
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
#quizGroupSelect li.hover a {
	transform: translateY(-10px);
}

#quizResult {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
#quizResult .quizEvaluationChartWrap {
	width: 50%;
	margin: 0 auto 20px;
}
#quizResult .article {
	margin-top: 0;
}
#quizResult .imgOuterWrap {
	width: 75%;
	margin: 0 auto;
}
#quizResult .btnWrap {
	justify-content: center;
}
#quizResultDetail {
	padding-top: 20px;
	padding-bottom: 20px;
}

#quizResultDetail .answerBlock .points {
	float: right;
}
#quizResultDetail .answerBlock .headline {
	margin-top: 0;
}
#quizResultDetail .answerBlock + .answerBlock {
	padding-top: 1em;
	border-top: 2px solid #f2f5f6;
	margin-top: 1em;
}

#quizInactivityDialog {
	position: relative;
}
#quizInactivityDialog > .icon {
	opacity: 1;
	color: #f2f2f2;
}
#quizInactivityDialogWrap {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.vcModal #quizQuestionAnswers .answer {
	background: #f2f2f2;
	border-color: #f2f2f2;
}

@media (hover) {
	#quizQuestionAnswers input[type=radio] + .answer:hover .headline,
	#quizWrap:not(.isTouch) #quizQuestionAnswers input[type=checkbox] + .answer:hover .headline {
		color: #000;
	}
	#quizQuestionAnswers:not(.hasSelected) input[type=radio] + .answer:hover .icon,
	#quizWrap:not(.isTouch) #quizQuestionAnswers input[type=checkbox] + .answer:hover .icon {
		color: #f2f2f2;
	}

	#quizGroupSelect li:hover .imgWrap,
	#quizQuestionAnswers input[type=radio] + .answer:hover,
	#quizWrap:not(.isTouch) #quizQuestionAnswers input[type=checkbox] + .answer:hover,
	#quizQuestionAnswers input:checked + .answer {
		background-color: #ffffff;
		border-color: #ffffff;
		filter: none;
	}
	#quizGroupSelect li:hover .imgWrap,
	#quizQuestionAnswers:not(.hasSelected) input[type=radio] + .answer:hover,
	#quizWrap:not(.isTouch) #quizQuestionAnswers input[type=checkbox] + .answer:hover {
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}
	#quizGroupSelect li:hover a,
	#quizQuestionAnswers:not(.hasSelected) input[type=radio] + .answer:hover,
	#quizWrap:not(.isTouch) #quizQuestionAnswers input[type=checkbox] + .answer:hover {
		transform: translateY(-10px);
	}
}
@media (min-width: 640px) {
	#quizTrigger {
		font-size: 1.5em;
	}
	#quizGroupSelect li,
	#quizResult .imgOuterWrap {
		width: 33.33%;
	}
	#quizStateWrap {
		padding-top: 28px;
		padding-bottom: 40px;
		font-size: 15px;
		line-height: 1.333;
	}
	.quizButtonBar {
		padding-bottom: 20px;
		display: flex;
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}
	#quizQuestionBottomBar {
		flex-direction: row;
	}
	.quizButtonBar .btn + .btn {
		margin-top: 0;
	}
	#quizStartBottomBar {
		justify-content: center;
	}
	.vcModal #quizStartBottomBar {
		justify-content: space-between;
	}
	#quizStartBottomBar #quizStart {
		order: 2;
	}
	#quizStartBottomBar #quizHide {
		order: 1;
	}
	#quizStartBottomBar #quizHidePermanent {
		order: 3;
	}
	#quizQuestionAnswers {
		margin: -20px;
	}
	#quizQuestionAnswers li {
		width: 50%;
		padding: 20px;
	}

	#quizGroupSelect li.hover a {
		transform: translateY(-20px);
	}
	#questionButtonUnderAnswersWrap .btnNextQuestion {
		width: auto;
		min-width: calc(((100% + 40px) / 2) - 40px);
	}
	#quizTriggerTooltip .wrap {
		padding: 15px 20px;
	}
}
@media (hover) and (min-width: 640px) {
	#quizGroupSelect li:hover a,
	#quizQuestionAnswers:not(.hasSelected) input[type=radio] + .answer:hover,
	#quizWrap:not(.isTouch) #quizQuestionAnswers input[type=checkbox] + .answer:hover {
		transform: translateY(-20px);
	}
}
@media (min-width: 960px) {
	#quizProgressBar {
		top: 0;
	}
	#header.fixedShow ~ #main #quizProgressBar,
	#header.isAtTop ~ #main #quizProgressBar,
	#header.isOverBreakpoint ~ #main #quizProgressBar {
		top: 120px;
	}

	#header.hasMainNav + #main #quizProgressBar {
		top: 60px;
	}
	#header.hasMainNav.fixedShow ~ #main #quizProgressBar,
	#header.hasMainNav.isAtTop ~ #main #quizProgressBar,
	#header.hasMainNav.isOverBreakpoint ~ #main #quizProgressBar {
		top: 180px;
	}

	#quizGroupSelect li,
	#quizResult .imgOuterWrap {
		width: 25%;
	}
	#quizQuestionAnswers li {
		width: 33.33%;
	}
	#quizQuestionAnswers li:before {
		padding-top: 100%;
	}
	#quizInactivityDialog > .icon,
	#quizQuestionAnswers .answer .icon {
		font-size: 10em;
	}
	#quizQuestionAnswers .answer .answerStateText {
		bottom: 18px;
	}
	#questionButtonUnderAnswersWrap .btnNextQuestion {
		min-width: calc(((100% + 40px) / 3) - 40px);
	}

	#quizPointsChart {
		height: 4em;
		width: 4em;
		margin-top: -1.333em;
		margin-bottom: -1.333em;
	}
}
@media (min-width:1280px) {
	#quizTrigger {
		right: 40px;
	}
	#quizTriggerTooltip {
		right: calc(40px + 2.142em);
	}
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
