/*
 * 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.
 */

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0;
    background: #C00;
    color: #FFF;
    padding: .5em;
	text-align: center;
	display: block;
}
.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
   ========================================================================== */

/*
	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;
}
.vcModal {
    overflow: auto;
}
.vcModalOverlay {
    background: #fff;
    background: rgba(255,255,255,.75);
    position: fixed;
    display: block;
}

.vcModal .modalMsg {
    display: table;
    padding: 30px 30px 20px;
    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;
}
.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;
    padding: 20px;
    margin: 0 auto;
    z-index: 1;
}

.vcModalSwitch:checked + .vcModalTarget .vcModalOverlay,
.vcModalSwitch:checked + .vcModalTarget .vcModal {
    height: 100%;
    opacity: 1;
    transition: height 0s, opacity .3s;
    pointer-events: auto;
}
.vcModal .vcModalClose {
    position: absolute;
    display: block;
    right: -20px;
    top: -20px;
    cursor: pointer;
    padding: 10px;
    line-height: 20px;
    text-align: center;
    background: #999;
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}
.vcModal .vcModalClose:hover {
    background: #389ec3;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}


/*
	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;
}
.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%;
}
.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: #f2f2f2;
    border: 1px solid #ddd;
    text-align: center;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .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%;
    }
}
.goToPrivacySetupDetailed {
    display: inline-block;
    padding: 10px;
}

/*
	BASE 
	*/
html,
body {
	min-width: 320px;
	background: #fff;
}
body {
	overflow-x: hidden;
}
body.overlayOpen,
html.swipebox-html body {
	overflow: hidden;
}
.baseSpacer,
#content_error {
	padding-left: 20px;
	padding-right: 20px;
}
.baseSpacerMargin {
	margin-left: 20px;
	margin-right: 20px;
}
.pushOut {
	margin-left: -20px;
	margin-right: -20px;
}
#wrapper {
	position: relative;
}

#main {
	margin-top: 80px;
	display: block;
	overflow: hidden;
}
#main.fontSizeL,
#main.fontSizeL + #footer {
	font-size: 1.25em;
}
#main.fontSizeXL,
#main.fontSizeXL + #footer {
	font-size: 1.5em;
}
#content {
	margin-left: -20px;
	margin-right: -20px;
}

#breadcrumb {
	background: #f2f5f6;
	font-size: .667em;
	line-height: 1.5;
	padding-top: 5px;
	padding-bottom: 5px;
}
#breadcrumb * {
	color: #808080;
}
#breadcrumb .divider {
	padding: 0 5px;
}
#breadcrumb a:last-child {
	font-weight: 700;
	letter-spacing: .075em;
	text-transform: uppercase;
	color: #000;
}
#content .leftContentCol,
#content .rightContentCol {
	padding-left: 20px;
	padding-right: 20px;
}
#content .leftContentCol {
	margin-top: 40px;
}
#content .section {
    margin-top: 40px;
    margin-bottom: 40px;
	position: relative;
}
#content .section .rightContentCol > :not(.clear) {
	margin-top: 40px;
}
#content .section .rightContentCol > :first-child,
#content .section .rightContentCol > .clear:first-child + *,
#content .section.full .rightContentCol {
	margin-top: 0;
}

#content .leftContentCol .box {
	padding: 20px;
	background: #e40033;
	color: #fff;
	margin-bottom: 40px;
}
.leftContentCol .box a {
	color:#fff;
}
#content .leftContentCol .box:last-child {
	margin-bottom: 0;
}

#content .leftContentCol .box .boxHead {
	position: relative;
	margin: 0;
	padding: 0 0 10px;
	display: block;
	font-size: 1.111em;
	line-height: 1;
}
#content .leftContentCol .box .boxHead.hasIcon {
	padding-left: 30px;
}
#content .leftContentCol .box .boxHead .icon {
	position: absolute;
	left: 0;
	top: 0;
}
#content .leftContentCol .box .boxHead .iconRight:last-child {
	position: absolute;
	left: auto;
	right: 0;
	top: 0;
}


@media (max-width: 959px) {
	#content .section.withSidebar .rightContentCol.hasFilterForm {
		margin-top: 80px;
		margin-top: calc(60px + 1.111em);
	}
	#content .section.withSidebar .box_filterForm {
		position: absolute;
		left: 20px;
		right: 20px;
		top: 0;
		z-index: 5;
	}
	#content .section.withSidebar .box_filterForm > .slideDownTrigger {
		margin: -20px;
		padding: 20px;
	}
	#content .section.withSidebar .box_filterForm .boxHead {
		padding-bottom: 0;
	}
	#content .section.withSidebar .box_filterForm > .slideDownSwitch:checked ~ .slideDownTarget {
		padding-top: 20px;
	}
}

@media (min-width: 720px) {
	#main {
		margin-top: 160px;
	}
}
@media (min-width: 960px) {
	#main {
		margin-top: 145px;
	}
	#content .leftContentCol {
		width: 25%;
		float: left;
		margin-top: 0;
	}
	#content .rightContentCol {
		width: 75%;
		margin-left: auto;
		margin-right: auto;
	}
	#content .section.withSidebar .rightContentCol {
		float: right;
	}
	#content .section.full .rightContentCol {
		width: 100%;
		float: none;
	}
	
	#content .section.full .rightContentCol .article {
		margin-left: 8.333%;
		margin-left: calc(((100% + 40px) / 12) + 20px);
		margin-right: 8.333%;
		margin-right: calc(((100% + 40px) / 12) + 20px);
	}
	
	#content .leftContentCol .box {
		margin-left: -20px;
	}
	
	#content .section.withSidebar .box_filterForm > .slideDownTarget {
		max-height: none !important;
	}
}
@media (min-width: 1280px) {
	.baseSpacer,
	.baseSpacerLeft {
		padding-left: 5%;
		padding-left: calc(5% + 20px);
	}
	.baseSpacer,
	.baseSpacerRight {
		padding-right: 5%;
		padding-right: calc(5% + 20px);
	}
	.baseSpacerMargin,
	.baseSpacerLeftMargin {
		margin-left: 5%;
		margin-left: calc(5% + 20px);
	}
	.baseSpacerMargin,
	.baseSpacerRightMargin {
		margin-right: 5%;
		margin-right: calc(5% + 20px);
	}
	.pushOut {
		margin-left: -5.556%;
		margin-left: calc((100% + 40px) * -.05556 - 20px);
		margin-right: -5.556%;
		margin-right: calc((100% + 40px) * -.05556 - 20px);
	}
	#content .leftContentCol .box {
		margin-left: -22.222%;
		margin-left: calc((100% + 40px) * 4 * -.05556 - 20px);
		
		padding-left: 22.222%;
		padding-left: calc((100% + 40px) * 4 * .05556 + 20px);
	}
}
@media (min-width: 1600px) {
	.baseSpacer,
	.baseSpacerLeft {
		padding-left: 10%;
		padding-left: calc(10% + 20px);
	}
	.baseSpacer,
	.baseSpacerRight {
		padding-right: 10%;
		padding-right: calc(10% + 20px);
	}
	.baseSpacerMargin,
	.baseSpacerLeftMargin {
		margin-left: 10%;
		margin-left: calc(10% + 20px);
	}
	.baseSpacerMargin,
	.baseSpacerRightMargin {
		margin-right: 10%;
		margin-right: calc(10% + 20px);
	}
	.pushOut {
		margin-left: -12.5%;
		margin-left: calc((100% + 40px) * -.125 - 20px);
		margin-right: -12.5%;
		margin-right: calc((100% + 40px) * -.125 - 20px);
	}
	
	#content .leftContentCol .box {
		margin-left: -50%;
		margin-left: calc((100% + 40px) * 4 * -.125 - 20px);
		
		padding-left: 50%;
		padding-left: calc((100% + 40px) * 4 * .125 + 20px);
	}
}
@media (min-width: 1840px) {
	.baseSpacer,
	.baseSpacerLeft {
		padding-left: 15%;
		padding-left: calc(15% + 20px);
	}
	.baseSpacer,
	.baseSpacerRight {
		padding-right: 15%;
		padding-right: calc(15% + 20px);
	}
	.baseSpacerMargin,
	.baseSpacerLeftMargin {
		margin-left: 15%;
		margin-left: calc(15% + 20px);
	}
	.baseSpacerMargin,
	.baseSpacerRightMargin {
		margin-right: 15%;
		margin-right: calc(15% + 20px);
	}
	.pushOut {
		margin-left: -21.428%;
		margin-left: calc((100% + 40px) * -.21428 - 20px);
		margin-right: -21.428%;
		margin-right: calc((100% + 40px) * -.21428 - 20px);
	}
	
	#content .leftContentCol .box {
		margin-left: -85.712%;
		margin-left: calc((100% + 40px) * 4 * -.21428 - 20px);
		
		padding-left: 85.712%;
		padding-left: calc((100% + 40px) * 4 * .21428 + 20px);
	}
}

/*
	HEADER
	*/
	
#header {
	position: fixed;
	left: 0;
	top: -80px;
	width: 100%;
	z-index: 50;
	background: #fff;
	transition: all .2s;
}
#header.fixedShow,
#header.isAtTop,
#header.isOverBreakpoint {
	top: 0;
}
#header.fixedShow {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
#header.isAtTop,
#header.isOverBreakpoint {
	box-shadow: none;
}

#logo {
	display: block;
	float: left;
	width: 46px;
	margin: 10px 0;
	transition: all .3s;
}
#logo img {
	display: block;
	height: auto;
	width: 100%;
}

#fontSizeSwitcher,
#share,
.social,
.navStd a,
.navStd .a {
	color: #c0a78f;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 20px;
}
.social {
	float: left;
	padding: 10px 10px 10px 20px
}
#share .shariff {
	float: right;
	margin-left: 10px;
}
.social ul,
#share ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.social li,
#share li {
	margin: 0;
	padding: 0;
	float: left;
}
.social li + li,
#share li + li {
	margin-left: 10px;
}
.social a,
#share a {
	color: inherit;
	font-size: 20px;
	display: block;
	transition: all .3s;
	text-decoration: none !important;
}
#share {
	color: #fff;
	font-size: .667em;
	line-height: 1.6;
}
#share a {
	font-size: 1.6em;
	line-height: 1;
}
.social ul {
	float: right;
	margin-left: 10px;
}
/*
#share a .share_text {
	display: none;
}
*/
.social a:hover {
	color: #605347;
}
.social .icon:before,
#share .icon:before,
#fontSizeSwitcher .icon:before {
	margin: 0;
}
#fontSizeSwitcher {
	float: right;
	padding: 10px 20px 10px 10px;
}
#fontSizeSwitcher .label {
	float: left;
}
#fontSizeSwitcher a {
	display: block;
	background: #c0a78f;
	color: #fff;
	transition: all .3s;
	float: left;
	border-radius: 10px;
	width: 20px;
	line-height: 20px;
	text-align: center;
	margin-left: 10px;
}
#fontSizeSwitcher a:hover {
	background: #605347;
}
#fontSizeSwitcher a.disabled {
	background: #e0d3c7;
	pointer-events: none;
}

#navStd {
	padding: 10px 20px 9px 0;
	clear: both;
	border-bottom: 1px solid #f2f5f6;
}
.navStd li {
	float: left;
	margin-left: 20px;
}
.navStd a,
.navStd .a {
	display: block;
}
.navStd a .icon,
.navStd .a .icon {
	font-size: .75em;
	vertical-align: 1px;
	color: #e0d3c7;
}
#navStd a:hover,
#navStd .a:hover {
	color: #605347;
}


/* Sprache & Sprache */
#languageSelect,
#quickSrcBoxWrap {
	float:right;
	padding: 10px 0;
	margin: 0;
}
#languageSelect {
	position: absolute;
	right: 120px;
	top: 10px;
	color: #003f57;
}

#languageSelect .ident,
#siteSearchTrigger,
#languageSelect .item {
	line-height: 20px;
	display: block;
	padding: 10px;
	font-weight: 700;
}
#languageSelect .ident .active {
	position:relative;
	padding: 0;
	display: block;
	float: right;
	font-size: 12px;
}
#languageSelect .ident .active .long,
#languageSelect .ident .active .icon {
	display: none;
}
#languageSelect .ident .active .short,
#languageSelect .ident .active .long {
	text-transform: uppercase;
	padding-left: 5px;
}
#siteSearchTrigger .icon,
#languageSelect .ident > .icon {
	font-size: 20px;
	line-height: 20px;
	float: left;
}
#languageSelect .langs {
	visibility: hidden;
	position: absolute;
	left: 0;
	padding: 0;
	top: 10px;
	box-shadow: none;
	-webkit-transition: padding 0s .3s, box-shadow .3s, opacity .3s, visibility 0s .3s;
	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;
	color: #003f57;
	line-height: 20px;
	font-size: 12px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
#languageSelect .langs .item:hover {
	background: #f2f2f2;
	-webkit-transition-delay: .0s !important;
	transition-delay: 0s !important;
}

#languageSelect .langs .item img {
	display: inline-block;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	vertical-align: -5px;
}

#languageSelect .langs li:nth-child(1) .item {
	-webkit-transition-delay: .15s;
	transition-delay: .15s;
}
#languageSelect .langs li:nth-child(2) .item {
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
}
#languageSelect .langs li:nth-child(3) .item {
	-webkit-transition-delay: .35s;
	transition-delay: .35s;
}
#languageSelect .langs li:nth-child(4) .item {
	-webkit-transition-delay: .45s;
	transition-delay: .45s;
}
#languageSelect .langs li:nth-child(5) .item {
	-webkit-transition-delay: .55s;
	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;
	-webkit-transition: padding .3s, box-shadow .3s, opacity .3s, visibility 0s;
	transition: padding .3s, box-shadow .3s, opacity .3s, visibility 0s;
}
#languageSelectSwitch:checked ~ #wrapper #languageSelect .ident .active .icon {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
#languageSelectSwitch:checked ~ #wrapper #languageSelect .langs .item {
	left: 0px;
	opacity: 1;
}

#siteSearchTrigger:after {
    position: absolute;
    z-index: 1;
    content: '';
    height: 10px;
    background: #fff;
    top: 100%;
    left: -20px;
    right: -20px;
    display: none;
}

#quickSrcBox {
	height: 0;
	position: absolute;
	overflow: hidden;
	left: 10px;
	right: 10px;
	top: 60px;
	-webkit-transition: height .3s, width .3s, padding .3s, box-shadow .3s;
	transition: height .3s, width .3s, padding .3s, box-shadow .3s;
	background: #fff;
	padding: 0 60px 0 10px;
}
#siteSearchTrigger {
	position: absolute;
	right: 80px;
	top: 20px;
	width: 40px;
	text-align: center;
	color: #003f57;
	-webkit-transition: all .3s;
	transition: all .3s;
}

#siteSearchTrigger .label {
	display: none;
	padding: 0 0 0 5px;
}
#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 #eaeff1;
	display: block;
	border-radius: 0;
	color: #003f57;
}
#srcBoxQ:focus {
	border-bottom: 1px solid #809fab;
}

#srcBoxSubmit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 20px;
    padding: 0;
    width: 60px;
	background: none;
	z-index: 1;
	color: #003f57;
}
#srcBoxSubmit:after {
	width: 150%;
}
#srcBoxSubmit:hover:after {
	background: #0063ac;
}
#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger {
    z-index: 11;
}
#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger:after {
    display: block;
}
#siteSearchSwitch:checked ~ #wrapper #quickSrcBoxWrap {
	z-index: 2;
}
#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger {
	color: #809fab;
}
#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;
}

/* MAIN NAVIGATION */
#navMain {
	border-top: 1px solid #f2f5f6;
	padding: 0;
	clear: both;
}
#navMain .navBtnWrap {
	position: relative;
}
#navMain .navBtnWrap a {
	-webkit-transition: color .3s;
	transition: color .3s;
	overflow: hidden;
	display: block;
	padding: 15px 20px;
}
#navMain .navBtnWrap a .iconSpecial {
	display: none;
}
#navMain .checkboxTrigger + .navBtnWrap {
	padding-right: 50px;
}
#navMain .iconMenuTriggerDwn {
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 20px;
	text-align: center;
	top: 50%;
	right: 20px;
	margin-top: -15px;
	padding: 5px 0;
	border-radius: 15px;
	overflow: hidden;
	color: #fff;
	border: 2px solid #c0a78f;
	background: #c0a78f;
	transition: all .3s;
}
#navMain .iconMenuTriggerDwn:hover,
#navMain .checkboxTrigger:checked + .navBtnWrap > .iconMenuTriggerDwn:hover {
	background: #605347;
	border-color: #605347;
	color: #fff;
}

#navMain .checkboxTrigger:checked + .navBtnWrap > .iconMenuTriggerDwn {
	-webkit-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	transform:rotate(180deg);
	color: #003f57;
	background: #fff;
	border-color: #809fab;
}
#navMain .lvl2 > .navBtnWrap > .iconMenuTriggerDwn {
	color: #fff;
	background: #809fab;
	border-color: #809fab;
	margin-top: -10px;
	height: 20px;
	width: 20px;
	padding: 0;
	font-size: .667em;
}
#navMain .lvl2 > .checkboxTrigger:checked + .navBtnWrap > .iconMenuTriggerDwn {
	border-color: #809fab;
	background: #003f57;
	color: #fff;
}
#navMain .lvl1 > .navBtnWrap a {
	height: 60px;
	color: #003f57;
}
#navMain .lvl1 > .navBtnWrap a .name {
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	text-transform: uppercase;
	display: block;
}
#navMain .lvl1 > .navBtnWrap a .subTitle {
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
	display: block;
	color: #406f81;
}
#navMain .lvl1 + .lvl1 > .navBtnWrap:before {
	background: #eef2f4;
	content: '';
	display: block;
	position: absolute;
}
#navMain .lvl1 > .navBtnWrap:after,
#navMain .lvl2 > .navBtnWrap:after {
	content: '';
	display: block;
	border-style: solid;
	border-width: 0 5px;
	border-color: transparent;
	position: absolute;
	left: 35px;
	bottom: 0;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity .3s, border .3s;
	transition: opacity .3s, border .3s;
}
#navMain .lvl1 > .subNavWrap {
	background: #003f57;
	z-index: 1;
	position: relative;

}
#navMain .lvl1 .navBtnWrap:after {
	border-bottom-color: #003f57;
}
#navMain .lvl2 > .navBtnWrap a {
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #fff;
}

#navMain .lvl3 > .navBtnWrap a {
	padding-left: 40px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 900;
	color: #fff;
}
#navMain .lvl3 > .navBtnWrap a .icon {
	opacity: .75;
	font-size: .833em;
	line-height: 20px;
	position: absolute;
	left: 25px;
	top: 5px;
}

@media (min-width: 360px) {
	#languageSelect .ident .active {
		padding: 0 20px 0 0;
	}
	#languageSelect .ident .active .long {
		display: block;
	}
	#languageSelect .ident .active .short {
		display: none;
	}
	#languageSelect .ident .active .icon {
		display: block;
		position: absolute;
		right: 0;
		top: 50%;
		bottom: 0;
		height: 1em;
		line-height: 1;
		margin-top: -.5em;
		-webkit-transition: transform .3s;
		transition: transform .3s;
	}
}

@media (max-width: 719px) {
	body.navMainOpen {
		overflow: hidden;
	}
	
	#headerWrap {
		position: absolute;
		height: 0;
		overflow: hidden;
		left: 0;
		top: 0;
		width: 100%;
		-webkit-transition: height .3s cubic-bezier(0,1,0,1), padding .3s, box-shadow .3s, overflow 0s;
		transition: height .3s cubic-bezier(0,1,0,1), padding .3s, box-shadow .3s, overflow 0s;
		z-index: -1;
	}
	#navMenuSwitch:checked ~ #wrapper #header:after {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 80px;
		content: '';
		display: block;
		background: -webkit-linear-gradient(top, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%);
		background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%);
		z-index: -1;
	}
	#headerWrap > .wrap {
		background: #fff;
		padding-top: 80px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}
	
	#navMenuSwitch:checked ~ #wrapper #headerWrap {
		height: 100vh;
		-webkit-transition: height .3s cubic-bezier(1,0,1,0), padding .3s, box-shadow .3s, background .3s;
		transition: height .3s cubic-bezier(1,0,1,0), padding .3s, box-shadow .3s, background .3s;
		background-color: rgba(255,255,255,.5);
		
		-webkit-animation: 0s linear 0.3s 1 normal both running delayOverflowAuto;
		animation: 0s linear 0.3s 1 normal both running delayOverflowAuto;
	}
	
	
	#navMenuTrigger {
		width: 60px;
		height: 60px;
		display: block;
		margin: 10px -10px auto auto;
		float: right;
	}
	#navMenuTrigger .on,
	#navMenuTrigger .off {
		color: #fff;
		text-align: center;
	}
	
	#navMenuTrigger .on {
		height: 100%;
		display: block;
		font-size: 12px;
		font-weight: 700;
		background: #003f57;
		text-transform: uppercase;
		line-height: 60px;
		transition: all .3s;
	}
	#navMenuTrigger .off {
		background: #e40033;
		display: none;
		margin: 10px;
		line-height: 40px;
		
	}
	#navMenuTrigger:hover .on {
		background: #389ec3;
	}
	#navMenuSwitch:checked ~ #wrapper #navMenuTrigger .on {
		display: none;
	}
	#navMenuSwitch:checked ~ #wrapper #navMenuTrigger .off {
		display: block;
	}
	
	#navMain .subNavWrap > .label {
		display: none;
	}
	
	#navMain li > .checkboxTrigger ~ ul,
	#navMain li > .checkboxTrigger ~ .subNavWrap {
		max-height: 0;
		padding: 0;
		-webkit-transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s;
		transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s;
		overflow: hidden;
	}
	#navMain li > .checkboxTrigger:checked ~ ul,
	#navMain li > .checkboxTrigger:checked ~ .subNavWrap {
		max-height: 5000px;
		padding: 15px 0;
		-webkit-transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
		transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
	}
	#navMain .lvl2 > .checkboxTrigger:checked ~ ul,
	#navMain .lvl2 > .checkboxTrigger:checked ~ .subNavWrap {
		max-height: 2000px;
		padding-top: 5px;
		padding-bottom: 25px;
	}
	
	#navMain .lvl1 > .checkboxTrigger:checked + .navBtnWrap:after,
	#navMain .lvl2 > .checkboxTrigger:checked + .navBtnWrap:after {
		opacity: 1;
		border-bottom-width: 5px;
	}
	
	#navMain .lvl1 + .lvl1 > .navBtnWrap:before {
		width: 40px;
		height: 2px;
		left: 20px;
		top: -1px;
	}
	
	#navMain .checkboxTrigger:checked + .navBtnWrap > a,
	#navMain a.active,
	#navMain a.active .name,
	#navMain a.active .subTitle {
		color: #e40033 !important;
	}
}

@media (min-width: 720px) {
	#header {
		padding-bottom: 60px;
		top: -100px;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	}
	
	#navMenuTrigger {
		display: none;
	}
	#headerWrap,
	#headerWrap > .wrap {
		position: static;
		overflow: visible;
		padding: 0;
		height: auto;
		box-shadow: none;
	}
	#headerWrap > .wrap .clear {
		display: none;
	}
	
	#logo {
		margin-top: 15px;
		width: 58px;
		margin-bottom: 10px;
	}
	#socialHeader {
		clear: right;
		float: right;
		padding-left: 10px;
		padding-right: 0;
	}
	#header.hasSrc #socialHeader {
		padding-right: 60px;
	}
	.social,
	#fontSizeSwitcher {
		padding-top: 15px;
	}
	#fontSizeSwitcher {
		padding-right: 30px;
	}
	#quickSrcBoxWrap {
		padding: 5px 0 5px 20px;
		position: absolute;
		top: 50px;
		right: 10px;
	}
	#languageSelect {
		padding: 5px 20px 5px 0;
	}
	#languageSelect,
	#siteSearchTrigger {
		right: auto;
		top: auto;
		float: right;
		position: relative;
	}
	#quickSrcBox {
		top: 40px;
		left: auto;
		right: 0;
		width: 360px;
	}
	
	#navStd {
		clear: right;
		float: right;
		padding: 15px 0 14px;
		border-top: none;
	}
	#navStd li:first-child {
		margin-left: 0;
	}
	
	#navMain {
		margin-right: 0;
		border-top: 1px solid #f2f5f6;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	#navMain .iconMenuTriggerDwn {
		display: none;
	}
	#navMain .checkboxTrigger + .navBtnWrap {
		padding-right: 0;
	}
	#navMain #navMainUl {
		display: table;
		width: 100%;
		padding-left: 9px;
		padding-right: 11px;
		table-layout: fixed;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-content: stretch;
		align-items: flex-start;
	}
	#navMain .lvl1 + .lvl1 > .navBtnWrap:before {
		width: 2px;
		height: 30px;
		left: 0;
		top: 10px;
	}
	#navMain .lvl1 {
		display: table-cell;
		flex: 1 1 auto;
		overflow: hidden;
	}
	#navMain .lvl1 > .subNavWrap {
		position: absolute;
		top: 50px;
		left: 0;
	}
	#navMain .lvl1 > .navBtnWrap a {
		padding: 10px 9px 32px 11px;
		height: auto;
		position: relative;
	}
	#navMain .lvl1 > .navBtnWrap a .name {
		white-space: nowrap;
	}
	#navMain .lvl1 > .navBtnWrap a .subTitle {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		position: absolute;
		left: 11px;
		right: 9px;
		bottom: 20px;
	}
	#navMain .lvl1 > .navBtnWrap a .name {
		font-size: 12px;
		font-size: 1.5vw;
	}
	#navMain .lvl1 > .navBtnWrap a .subTitle {
		font-size: 10px;
		font-size: 1.25vw;
	}
	
	#navMain .lvl1 > .navBtnWrap:after {
		bottom: 10px;
		left: 50%;
		margin-left: -5px;
	}
	
	#navMain .lvl1:hover > .navBtnWrap:after,
	#navMain .lvl1.hover > .navBtnWrap:after {
		opacity: 1;
		border-bottom-width: 5px;
	}
	
	#navMain .lvl1 > .subNavWrap {
		max-height: 0;
		padding: 0;
		-webkit-transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s;
		transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s;
		overflow: hidden;
		width: 100%;
	}
	#navMain .lvl1:hover > .subNavWrap,
	#navMain .lvl1.hover > .subNavWrap {
		max-height: 5000px;
		padding: 35px 0;
		-webkit-transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
		transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
	}
	
	#navMain .checkboxTrigger:checked + .navBtnWrap > a,
	#navMain a:hover,
	#navMain .lvl1:hover > .navBtnWrap a .name,
	#navMain .lvl1.hover > .navBtnWrap a .name,
	#navMain .lvl1:hover > .navBtnWrap a .subTitle,
	#navMain .lvl1.hover > .navBtnWrap a .subTitle,
	#navMain a.active,
	#navMain a.active .name,
	#navMain a.active .subTitle {
		color: #e40033 !important;
	}
	
	#navMain .lvl1 > .subNavWrap > .label {
		color: #e40033;
		font-weight: 900;
		font-size: 40px;
		line-height: 1;
		text-transform: uppercase;
		width: 50%;
		padding: 0 20px;
		display: block;
		float: left;
		text-align: right;
	}
	#navMain .lvl1 > .subNavWrap > ul {
		float: right;
		width: 50%;
	}
	#navMain .lvl1 > .subNavWrap:after {
		content: '';
		top: 40px;
		bottom: 40px;
		width: 2px;
		display: block;
		position: absolute;
		left: 50%;
		margin-left: -1px;
		background: #09465d;
	}
	#navMain .lvl2 > ul {
		display: none;
	}
}

@media (min-width: 960px) {
	#header {
		padding-top: 0;
		padding-bottom: 0;
		top: -75px;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	}
	
	#logo {
		margin: 75px 20px 20px 0;
		width: 38px;
		position: relative;
		top: 10px;
	}
	#header.fixedShow #logo,
	#header.isAtTop #logo,
	#header.isOverBreakpoint #logo {
		width: 58px;
		margin-top: 50px;
		top: 0;
	}
	#socialHeader {
		position: absolute;
		left: 0;
		top: 0;
		padding-left: 20px;
		padding-right: 0;	
	}
	#quickSrcBoxWrap {
		float: none;
		position: absolute;
		right: 10px;
		top: 80px;
	}
	#quickSrcBox {
		top: 0;
		width: 0;
		height: 55px;
		padding: 10px 0;
		background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 20px);
		background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 20px);
	}
	#srcBoxQ {
		padding-top: 5px;
		padding-bottom: 9px;
		height: 35px;
	}
	
	#siteSearchSwitch:checked ~ #wrapper #quickSrcBox {
		box-shadow: none;
		height: 55px;
		padding-left: 40px;
		padding-right: 10px;	
		width: 320px;
	}
	#siteSearchSwitch:checked ~ #wrapper #siteSearchTrigger {
		display: none;
	}
	#srcBoxSubmit {
		width: 40px;
		height: 40px;
		bottom: auto;
		top: 5px;
	}
	
	#languageSelect .ident .active {
		padding-right: 0;
	}
	#languageSelect .ident .active .long,
	#languageSelect .ident .active .icon {
		display: none;
	}
	#languageSelect .ident .active .short {
		display: block;
	}
	#languageSelect .langs {
		left: auto;
		right: 0;
	}
	
	#navStd {
		margin-right: 0;
		float: right;
		clear: none;
		border-bottom: none;
	}
	#navStd li {
		margin-left: 10px;
	}
	#navMain {
		border-top: none;
		width: auto;
		left: 100px;
		right: 0;
	}
	#navMain #navMainUl {
		padding-left: 0;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	#header.hasSrc #navMain {
		right: 40px;
	}
	
	#navMain .lvl1 {
		position: relative;
		overflow: visible;
	}
	#navMain .lvl1 > .navBtnWrap a .name {
		font-size: 12px;
	}
	#navMain .lvl1 > .navBtnWrap a .subTitle {
		font-size: 10px;
	}
	
	#navMain .lvl1 > .subNavWrap {
		width: 67vw;
		left: 50%;
		margin-left: -33.5vw;
	}
	#navMain .lvl1.left > .subNavWrap {
		margin-left: 0;
		left: 0;
	}
	#navMain .lvl1.right > .subNavWrap {
		left: 100%;
		margin-left: -67vw;
	}
}
@media (min-width: 1080px) {
	#fontSizeSwitcher {
		padding-right: 40px;
	}
	#languageSelect .ident .active {
		padding: 0 20px 0 0;
	}
	#languageSelect .ident .active .long,
	#languageSelect .ident .active .icon {
		display: block;
	}
	#languageSelect .ident .active .short {
		display: none;
	}
	
	#navMain .lvl1 > .navBtnWrap a .name {
		font-size: 13px;
	}
	#navMain .lvl1 > .navBtnWrap a .subTitle {
		font-size: 11px;
	}
}
@media (min-width: 1200px) {	
	#navStd li {
		margin-left: 20px;
	}
	
	#navMain #navMainUl {
		padding-right: 1px;
		margin-right: -10px;
	}
	#navMain .lvl1 > .navBtnWrap a {
		padding-left: 21px;
		padding-right: 19px;
	}
	#navMain .lvl1 > .navBtnWrap a .name {
		font-size: 15px;
	}
	#navMain .lvl1 > .navBtnWrap a .subTitle {
		font-size: 12px;
		left: 21px;
		right: 19px;
	}
	
	#navMain .lvl1 > .subNavWrap {
		width: 50vw;
		margin-left: -25vw;
	}
	#navMain .lvl1.right > .subNavWrap {
		margin-left: -50vw;
	}
}

@media (min-width: 1280px) {
	#socialHeader {
		padding-left: 0;
		left: 5%;
		left: calc(5% + 20px);
	}
	#quickSrcBoxWrap,
	#header #navMain {
		right: 5%;
		right: calc(5% + 10px);
	}
	#header.hasSrc #navMain {
		right: 5%;
		right: calc(5% + 50px);
	}
	#navMain {
		left: 5%;
		left:  calc(5% + 100px);
	}
}
@media (min-width: 1600px) {
	#socialHeader {
		left: 10%;
		left: calc(10% + 20px);
	}
	#quickSrcBoxWrap,
	#header #navMain {
		right: 10%;
		right: calc(10% + 10px);
	}
	#header.hasSrc #navMain {
		right: 10%;
		right: calc(10% + 50px);
	}
	#navMain {
		left: 10%;
		left: calc(10% + 100px);
	}
}
@media (min-width: 1840px) {
	#socialHeader {
		left: 15%;
		left: calc(15% + 20px);
	}
	#quickSrcBoxWrap,
	#header #navMain {
		right: 15%;
		right: calc(15% + 10px);
	}
	#header.hasSrc #navMain {
		right: 15%;
		right: calc(15% + 50px);
	}
	#navMain {
		left: 15%;
		left: calc(15% + 100px);
	}
}


/*
	COOKIE NOTICE
	*/
	
#cookieNote {
	padding: 10px 0;
	box-shadow: 0 -10px 20px rgba(0,0,0,0.19), 0 -3px 6px rgba(0,0,0,0.23);
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 100;
	background: #003f57;
	color: #fff;
}
#cookieNote a {
	color: #fff;
	text-decoration: underline;
}
#cookieNote .closeNoteBtn {
	float: right;
	text-decoration: none;
	margin: 0 0 0 20px;
	padding: .25em .5em .25em 1.833em;
	background: #e40033;
}
#cookieNote .closeNoteBtn .icon {
	left: .5em;
}
#cookieNote .closeNoteBtn:hover {
	background: #fff;
	color: #e40033;
}


/*
	FOOTER 
	*/

#footer {
	color: #fff;
	position: relative;
	background: #e40033 url('../img/cottbusServiceFooter.jpg') no-repeat 100% 100%;
}
#footer * {
	color: #fff;
}
#footer a {
	text-decoration: underline;
}


#footer .topWrap,
#footer .bottomWrap {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-left: -20px;
	margin-right: -20px;
}
#footer .bottomWrap {
	padding-top: 0;
	padding-bottom: 0;
}
#footer hr {
	backgroud: #dc0031;
	margin: 0;
	height: 1px;
	border-top: 1px solid #dc0031
}
#footer .topWrap {
	font-size: .833em;
}
#footer .topWrap > * {
	padding-left: 20px;
	padding-right: 20px;
}
#footer .topWrap > * + * {
	margin-top: 1.333em;
}
#logoFooter {
	display: block;
	width: 50%;
}
#logoFooter img {
	display: block;
	width: 100%;
	height: auto;
}
#navFtr {
	padding: 20px 20px 0;
}
#navFtr li:first-child {
    margin-left: 0;
}
#navFtr a,
#navFtr .a {
	text-decoration: none;
}
#navFtr a .icon,
#navFtr .a .icon {
	color: #f28099;
}
#socialFooter {
	padding: 20px;
	float: left;
}
#footerTop {
	text-transform: uppercase;
	font-weight: 700;
	font-size: .667em;
	line-height: 1.6;
	text-decoration: none !important;
	padding: 20px 55px 20px 20px;
	position: relative;
	z-index: 1;
	display: block;
	float: right;
}
#footerTop .icon {
	color: #000;
	position: absolute;
	width: 30px;
	top: 50%;
	margin-top: -.917em;
	right: 20px;
	text-align: center;
}
#footerTop:after {
	height: 30px;
	width: 30px;
	position: absolute;
	background: #fff;
	content: '';
	right: 20px;
	border-radius: 15px;
	top: 50%;
	margin-top: -15px;
	z-index: -1;	
}
#footer .navStd .nav {
	margin-right: -20px;
}
#footer .navStd li {
	margin-right: 20px;
	margin-left: 0;
}

@media (min-width: 480px) {
	#footer .contact1,
	#footer .contact2 {
		width: 50%;
		float: left;
	}
}
@media (min-width: 640px) {
	#logoFooter {
		width: 25%;
		float: left;
	}
	#footer .contact1,
	#footer .contact2 {
		width: 37.5%;
		margin: 0;
	}
}

@media (min-width: 960px) {
	#logoFooter {
		width: 16.667%;
	}
	#footer .contact1 {
		width: 25%;
		margin-left: 8.333%;
	}
	#footer .contact2 {
		width: 33.333%;
	}
	
	#navFtr {
		float: right;
		padding-bottom: 20px;
	}
	#footerTop {
		position: absolute;
		top: 0;
		right: 0;
	}
}
@media (min-width: 1280px) {
	#footerTop {
		right: 5%;
	}
}
@media (min-width: 1600px) {
	#footerTop {
		right: 10%;
	}
}
@media (min-width: 1840px) {
	#footerTop {
		right: 15%;
	}
}

/* ==========================================================================
   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(255,255,255,.9)}#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/Swipebox/loader.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{bottom:-50px;background:#e40033 url('../img/pattern_sorbs_red.png') repeat 50% 50%;}#swipebox-bottom-bar.visible-bars{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0)}#swipebox-top-bar{background: #003f57;top:-50px;color:#fff!important;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;font-weight: 700; text-transform: uppercase;}#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;right:0;bottom:0}#swipebox-prev{background-position:-32px 13px;float:left}#swipebox-next{background-position:-78px 13px;float:right}#swipebox-close,#swipebox-zoomin,#swipebox-zoomout{top:0;position:absolute;z-index:9999}#swipebox-close{background-position:15px 12px;left:0}#swipebox-zoomin{background-position:-122px 12px;left:60px}#swipebox-zoomout{background-position:-168px 12px;left: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{left:10px}#swipebox-zoomin,#swipebox-zoomout{left:70px}#swipebox-arrows{right: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}

/* jQuery Carousel version 0.1.7 by Michael Lehmann */
.swiper-container {
	position: relative;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
}
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -1em;
    line-height: 1;
    font-size: 1em;
    border-radius: 1em;
    background: #003f57;
	color: #fff;
    padding: .5em;
    text-align: center;
    width: 2em;
    z-index: 2;
    transition: all .3s;
	cursor: pointer;
}
.swiper-button-prev {
	left: 20px;
}
.swiper-button-next {
	right: 20px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #389ec3;
}

.vc_drag.drag-x {
	cursor: w-resize;
}
.vc_drag.drag-y {
	cursor: n-resize;
}
.vc_drag.drag-x.drag-y {
	cursor: move;
}

/* jQuery UI Resets */
.accordionWrapper.ui-accordion {
	margin: 10px 0;
}
.accordionWrapper.ui-accordion .ui-accordion-header {
	background: #ea722a;
	background: -webkit-linear-gradient(250deg, #d26626 0%, #ea722a 60%);
	background: linear-gradient(250deg, #d26626 0%, #ea722a 60%);
	color: #fff;
	margin: 0;
	padding: 10px 10px 10px 60px;
	border: none;
}
.accordionWrapper.ui-accordion .ui-accordion-content + .ui-accordion-header {
	margin-top: 10px;
}
.accordionWrapper.ui-accordion .ui-accordion-header.ui-state-active {
	background: none;
	border-top: 2px solid #fff;
	padding-top: 8px;
}
.accordionWrapper.ui-accordion .ui-accordion-header.ui-state-active {
	color:#ea722a;
}
.accordionWrapper.ui-accordion .ui-accordion-header.ui-state-active a {
	color:#ea722a;
}
.accordionWrapper.ui-accordion .ui-accordion-header .ui-icon {
	background:none;
	position:absolute;
	margin:0;
	top:0;
	left:0;
	height: 100%;
	width: 55px;
	padding: 10px 15px 10px 0;
	text-indent:0;
	text-align: center;
	color: #ea722a;
	z-index: 1;
}
.accordionWrapper.ui-accordion .ui-accordion-header .ui-icon:after {
	background: #fff;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
}
.accordionWrapper.ui-accordion .ui-accordion-header .ui-icon:before {
	display: inline-block;
	height: 1em;
	width: 1em;
	font-family:"fontello";
	content: '\e817';
	font-size: .8em;
	font-size: 1rem;
	text-align: center;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	margin: 0;
}
.accordionWrapper.ui-accordion .ui-accordion-header.ui-state-active .ui-icon:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-top: .2em;
	margin-left: .5em;
	
}
.accordionWrapper.ui-accordion .ui-accordion-header .dateText {
	font-size: .5em;
	padding-left: 5px;
	font-weight: bold;
}
.accordionWrapper.ui-accordion .ui-accordion-header a {
	color: inherit;
}
.accordionWrapper.ui-accordion .ui-accordion-content {
	margin: 0 -20px;
	padding: 10px 20px 0;
	overflow: hidden;
	background: none;
	border: none;
	font-size: 15px;
	line-height: 25px;
}
.accordion .imgWrap {
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	display: block;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	color: initial;
}
.ui-widget button {
	color:#fff;
	text-transform: uppercase;
	letter-spacing: .075em;
	font-size: .833em;
}
body .ui-datepicker {
	z-index: 1001 !important;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
body .ui-widget input,
body .ui-widget select,
body .ui-widget textarea,
body .ui-datepicker .ui-datepicker-title select {
	color: #000;
	font-weight: normal;
}
body .ui-tooltip {
	background: #fff;
	padding: 15px 20px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
body .ui-autocomplete {
    overflow: auto;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 1001;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	border: none;
}
body .ui-autocomplete.ui-menu .ui-state-focus,
body .ui-autocomplete.ui-menu .ui-state-active {
	margin: 0;
	border: none;
}

/* ==========================================================================
   CONTENT PARTS
   ========================================================================== */


/* Part: TEASER / IMG GALLERY */
.teaser {
	list-style: none;
	margin: 0;
	position: relative;
	padding: 0;
	width: 100%;
}
.teaser li {
	position: relative;
	min-height: 200px;
	height: calc(100vh - 330px);
	background: #f3f3f3;
	overflow: hidden;
}
.teaser.small li {
	height: 0;
	padding-bottom: 62.5%;
}
.teaser li .teaserImgWrap {
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
	display: block;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
}
.teaser li .teaserItemTitle {
    display: block;
    height: 100%;
    left: 0;
	right: 0;
    position: absolute;
    top: 0;
	z-index: 2;
}
.teaser li .teaserItemTitleInner {
	display: table;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.teaser li .teaserItemTitleInner .wrap {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	color: #fff;
}

.teaser li .teaserItemTitleInner .wrap > :first-child {
	margin-top: 0;
}
.teaser li .teaserItemTitleInner .wrap > :last-child {
	margin-bottom: 0;
}

.no-mobile .teaser li.textOverImage .teaserImgWrap {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 1s;
	transition: all 1s;
}
.no-mobile .teaser li.textOverImage:hover .teaserImgWrap {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}
.teaser li.textOverImage .teaserItemTitleInner .wrap {
	vertical-align: top;
}
.teaser li.textOverImage .teaserItemTitleInner .wrap * {
	margin: 0;
	background: #003f57;
	background: rgba(0,63,87,.8);
	position: relative;
	padding: 0 20px 0 0;
	display: block;
	float: left;
	clear: left;
	color: #fff;
}
.teaser li.textOverImage .teaserItemTitleInner .wrap *:after {
	position: absolute;
	height: 100%;
	content: '';
	width: 50vw;
	background: #003f57;
	background: rgba(0,63,87,.8);
	right: 100%;
	top: 0;
}

@media (max-width: 719px) {
	.teaser li .trigger {
		position: absolute;
		left: 20px;
		right: 20px;
		bottom: 10px;
		cursor: pointer;
		margin: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.teaser li .trigger .icon {
		-webkit-transition: transform .3s, color .3s;
		transition: transform .3s, color .3s;
	}
	.teaser li .trigger2 {
		position: absolute;
		right: 0;
		top: 0;
		padding: 10px;
		cursor: pointer;
		z-index: 2;
	}
	.teaser li.textLeftImageRight .teaserItemTitleInner,
	.teaser li.textRightImageLeft .teaserItemTitleInner {
		padding: 0 20px;
		position: absolute;
		top: 10px;
		left: 20px;
		right: 20px;
		height: 0;
		overflow: hidden;
		display: block;
		width: auto;
		z-index: 1;
		-webkit-transition: height .3s, padding .3s, box-shadow .3s;
		transition: height .3s, padding .3s, box-shadow .3s;
	}
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap,
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		height: 100%;
		overflow: auto;
		display: block;
	}
	.teaser li.textLeftImageRight .switch:checked ~ .teaserItemTitle .trigger .icon,
	.teaser li.textRightImageLeft .switch:checked ~ .teaserItemTitle .trigger .icon {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	
	.teaser li.textLeftImageRight .switch:checked ~ .teaserItemTitle .teaserItemTitleInner,
	.teaser li.textRightImageLeft .switch:checked ~ .teaserItemTitle .teaserItemTitleInner {
		height: 80%;
		height: calc(100% - 20px);
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}
}
@media (min-width: 720px) {
	.teaser li {
		height: 0;
		min-height: 0;
		padding: 0 0 62.5%;
	}
	.teaser.small li {
		padding-bottom: 42.85%;
	}
	.teaser li .teaserItemTitleInner {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.teaser li.textLeftImageRight .teaserItemTitleInner,
	.teaser li.textRightImageLeft .teaserItemTitleInner {
		padding: 0;
	}
	
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap,
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		padding: 20px;
		font-size: .8em;
	}
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap {
		padding-left: 80px;
	}
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		padding-right: 80px;
	}
	.teaser li.textLeftImageRight .teaserImgWrap,
	.teaser li.textRightImageLeft .teaserImgWrap {
		width: 50%;		
	}
	.teaser li.textLeftImageRight .teaserImgWrap {
		left: 50%;		
	}
	.teaser li.textLeftImageRight .teaserItemTitle {
		margin-right: 50%;
	}
	.teaser li.textRightImageLeft .teaserItemTitle {
		margin-left: 50%;
	}
}

@media (min-width: 960px) {
	.teaser li {
		padding-bottom: 42.85%;
	}
	.teaser.small li {
		padding-bottom: 33.33%;
	}
	
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap,
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		padding: 40px;
	}
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap {
		padding-left: 80px;
	}
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		padding-right: 80px;
	}
}
@media (min-width: 1080px) {
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap,
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		font-size: .9167em;
	}
}
@media (min-width: 1280px) {
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap,
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		font-size: 1em;
	}
	.teaser li.textLeftImageRight .teaserItemTitleInner .wrap {
		padding-right: 16.667%;
		padding-right: calc((200% + 40px) / 12 + 20px);
		padding-left: 0;
	}
	.teaser li.textRightImageLeft .teaserItemTitleInner .wrap {
		padding-left: 16.667%;
		padding-left: calc((200% + 40px) / 12 + 20px);
		padding-right: 0;
	}
}

/* Bildergalerie */
.filePreview,
.img,
.thumb {
	position: relative;
	overflow: hidden;
	display:block;
}
.imgTrigger {
	z-index: 1;
}
.thumb img,
.img img, 
.imgWrap img {
	width:100%;
	height:auto;
	display: block;
}
.imgWrap {
	position: relative;
	width: 100%;
}
.gallery {
	margin: 0 -10px;
}
.imgContainer {
	float: left;
	margin:0;
	padding: 10px;
	position: relative;
}
.gallery .imgContainer {
	float:left;
}
.img {
	display:block;
	position: relative;
}

.img .zoom {
	position: absolute;
    bottom: 0;
    right: 0;
    color: #fc571c;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
	padding: 5px 10px 5px 20px;
    text-align: center;
    display: block;
    z-index: 2;
}
.img .zoom:after {
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	background: #fff;
}
.caption {
	font-size: .8em;
	line-height: 1.25;
	display: block;
	color: #404040;
	text-align: left;
	margin-top: 5px;
}
.imagesWrap.imgLeft,
.imagesWrap.imgRight {
	margin-top:1em;
}
.imgLeft .imagesInnerWrap {
	float: left;
	margin-bottom: 1em;
}
.imgRight .imagesInnerWrap {
	margin-bottom: 1em;
	float: right;
}

.imagesWrap.effect .imgWrap .img .zoom {
	bottom: 0;
}
.imgLeft .imgWrap + .imgWrap,
.imgRight .imgWrap + .imgWrap {
	margin-top: 20px;
}
.imgNone {
	margin: 1em auto;
}
.imgNone .imagesInnerWrap {
	margin: -1em;
}
.imgNone .imgWrap {
	float: left;
	padding: 1em;
	margin: 0;
}

.imgNone .caption,
.vid + .caption {
	padding: 5px 0 0;
}

.imgWidth-150,
.imgWidth-125 {
	width: auto;
}
.imgWidth-100,
.imgWidth-75,
.imgWidth-67,
.imgWidth-50,
.imgWidth-33,
.imgWidth-25,
.imgWidth-20 {
	width: 100%;
	float: none;
}

.imgWidth-15,
.imgWidth-15 .articleImg,
.imgWidth-13,
.imgWidth-13 .articleImg {
	width: 33.3%;
}
.imgWidth-10,
.imgWidth-10 .articleImg,
.imgWidth-5,
.imgWidth-5 .articleImg {
	width: 25%;
}

.article .pushOut-150,
.spacer .pushOut-150,
.article .pushOut-125,
.spacer .pushOut-125,
.imagesWrap.imgWidth-150,
.imagesWrap.imgWidth-125 {
	margin-left: -10px;
	margin-right: -10px;
}
.article .pushOut-150.pushIn,
.spacer .pushOut-150.pushIn,
.article .pushOut-125.pushIn,
.spacer .pushOut-125.pushIn,
.imagesWrap.imgWidth-150 .imgWrap .caption,
.imagesWrap.imgWidth-125 .imgWrap .caption {
	padding-left: 10px;
	padding-right: 10px;
}

.imgRight .imgWidth-17,
.imgRight .imgWidth-15,
.imgRight .imgWidth-13,
.imgRight .imgWidth-10,
.imgRight .imgWidth-5 {
	padding-left: 1em;
	float: right;
}
.imgLeft .imgWidth-17,
.imgLeft .imgWidth-15,
.imgLeft .imgWidth-13,
.imgLeft .imgWidth-10,
.imgLeft .imgWidth-5 {
	padding-right: 1em;
	float: left;
}


.imgWidth-50 .articleImg .img {
	width: 66.7%;
}
.imgWidth-33 .articleImg .img,
.imgWidth-25 .articleImg .img {
	width: 50%;
}
.imgWidth-20 .articleImg .img {
	width: 50%;
}

.imgWidth-50 .articleImg + .articleWrap,
.imgWidth-33 .articleImg + .articleWrap,
.imgWidth-25 .articleImg + .articleWrap,
.imgWidth-20 .articleImg + .articleWrap {
	text-align: center;
}

.imgWidth-15 .articleImgLeft,
.imgWidth-13 .articleImgLeft,
.imgWidth-10 .articleImgLeft,
.imgWidth-5 .articleImgLeft {
	float: left;
}


.imgWidth-15 .articleImgRight,
.imgWidth-13 .articleImgRight,
.imgWidth-10 .articleImgRight,
.imgWidth-5 .articleImgRight {
	float: right;
	order: 2;
}

.imgWidth-15 .articleImgLeft + .articleWrap,
.imgWidth-13 .articleImgLeft + .articleWrap,
.imgWidth-10 .articleImgLeft + .articleWrap,
.imgWidth-5 .articleImgLeft + .articleWrap {
	margin-left: 25%;
	padding-left: 20px;
}
.imgWidth-15 .articleImgRight + .articleWrap,
.imgWidth-13 .articleImgRight + .articleWrap,
.imgWidth-10 .articleImgRight + .articleWrap,
.imgWidth-5 .articleImgRight + .articleWrap {
	margin-right: 25%;
	padding-right: 20px;
	text-align: right;
	order: 1;
}
.articleImgNone .img,
.articleImgRight .img,
.articleImgLeft .img {
	display: block;
	margin: 0 auto;
}

.videoWrap.imagesWrap.imgNone {
	margin-left:-5px;
	margin-right:-5px;
}
.videoWrap.imagesWrap.imgNone .vidWrap{
	margin:0;
	float:left;
	padding:5px;
}
@media (min-width: 480px) {
	.imgWidth-33 .articleImg .img,
	.imgWidth-25 .articleImg .img,
	.imgWidth-20 .articleImg .img {
		width: 100%;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap,
	.imgWidth-25 .articleImgLeft + .articleWrap,
	.imgWidth-20 .articleImgLeft + .articleWrap {
		text-align: left;
	}
	.imgWidth-33 .articleImgRight + .articleWrap,
	.imgWidth-25 .articleImgRight + .articleWrap,
	.imgWidth-20 .articleImgRight + .articleWrap {
		text-align: right;
	}
	
	.imgWidth-33,
	.imgWidth-33 .articleImg {
		width: 50%;
	}
	.imgWidth-25,
	.imgWidth-25 .articleImg,
	.imgWidth-20,
	.imgWidth-20 .articleImg,
	.imgWidth-15,
	.imgWidth-15 .articleImg {
		width: 33.3%;
	}
	.imgWidth-13,
	.imgWidth-13 .articleImg {
		width: 25%;
	}
	.imgWidth-10,
	.imgWidth-10 .articleImg,
	.imgWidth-5,
	.imgWidth-5 .articleImg {
		width: 20%;
	}
	
	.imgRight .imgWidth-33,
	.imgRight .imgWidth-25,
	.imgRight .imgWidth-20,
	.imgRight .imgWidth-15,
	.imgRight .imgWidth-13,
	.imgRight .imgWidth-10,
	.imgRight .imgWidth-5 {
		padding-left: 20px;
		float: right;
	}
	.imgLeft .imgWidth-33,
	.imgLeft .imgWidth-25,
	.imgLeft .imgWidth-20,
	.imgLeft .imgWidth-15,
	.imgLeft .imgWidth-13,
	.imgLeft .imgWidth-10,
	.imgLeft .imgWidth-5 {
		padding-right: 20px;
		float: left;
	}
	
	.imgWidth-33 .articleImgLeft,
	.imgWidth-25 .articleImgLeft,
	.imgWidth-20 .articleImgLeft {
		float:left;
	}
	.imgWidth-33 .articleImgRight,
	.imgWidth-25 .articleImgRight,
	.imgWidth-20 .articleImgRight {
		float:right;
		order: 2;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap,
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 50%;
	}
	.imgWidth-33 .articleImgRight + .articleWrap,
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 50%;
		text-align: right;
		order: 1;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap,
	.imgWidth-15 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-13 .articleImgLeft + .articleWrap {
		margin-left: 25%;
	}
	.imgWidth-10 .articleImgLeft + .articleWrap,
	.imgWidth-5 .articleImgLeft + .articleWrap {
		margin-left: 20%;
	}
	
	.imgWidth-20 .articleImgRight + .articleWrap,
	.imgWidth-15 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-13 .articleImgRight + .articleWrap {
		margin-right: 25%;
	}
	.imgWidth-10 .articleImgRight + .articleWrap,
	.imgWidth-5 .articleImgRight + .articleWrap {
		margin-right: 20%;
	}
}

@media (min-width: 640px) {	
	.imgWidth-50 .articleImgLeft .img,
	.imgWidth-50 .articleImgRight .img {
		width: 100%;
	}
	.imgWidth-50 .articleImgLeft + .articleWrap {
		text-align: left;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		text-align: right;
	}
	
	.imgWidth-50,
	.imgWidth-50 .articleImg {
		width: 50%;
	}
	.imgWidth-25,
	.imgWidth-25 .articleImg {
		width: 33.3%;
	}
	.imgWidth-20,
	.imgWidth-20 .articleImg {
		width: 25%;
	}
	
	.imgRight .imgWidth-5,
	.imgRight .imgWidth-10,
	.imgRight .imgWidth-13,
	.imgRight .imgWidth-15,
	.imgRight .imgWidth-20,
	.imgRight .imgWidth-25,
	.imgRight .imgWidth-33,
	.imgRight .imgWidth-50 {
		padding-left: 20px;
		float: right;
	}
	.imgLeft .imgWidth-5,
	.imgLeft .imgWidth-10,
	.imgLeft .imgWidth-13,
	.imgLeft .imgWidth-15,
	.imgLeft .imgWidth-20,
	.imgLeft .imgWidth-25,
	.imgLeft .imgWidth-33,
	.imgLeft .imgWidth-50 {
		padding-right: 20px;
		float: left;
	}
	
	.imgWidth-50 .articleImgLeft {
		float:left;
	}
	.imgWidth-50 .articleImgRight {
		float:right;
		order: 2;
	}
	.imgWidth-50 .articleImgLeft + .articleWrap {
		padding-left: 20px;
		margin-left: 50%;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		padding-right: 20px;
		margin-right: 50%;
		text-align: right;
		order: 1;
	}
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
}

@media (min-width: 720px) {
	.imgWidth-33,
	.imgWidth-33 .articleImg,
	.imgWidth-25,
	.imgWidth-25 .articleImg {
		width: 33.3%;
	}
	.imgWidth-20,
	.imgWidth-20 .articleImg,
	.imgWidth-15,
	.imgWidth-15 .articleImg,
	.imgWidth-13,
	.imgWidth-13 .articleImg,
	.imgWidth-10,
	.imgWidth-10 .articleImg,
	.imgWidth-5,
	.imgWidth-5 .articleImg {
		width: 20%;
	}
	.imgNone .imgWrap.imgWidth-33:nth-child(3n+1) {
		clear:left;
	}
	
	.article .pushOut-150,
	.spacer .pushOut-150,
	.article .pushOut-125,
	.spacer .pushOut-125,
	.imagesWrap.imgWidth-150,
	.imagesWrap.imgWidth-125 {
		margin-left: -10%;
		margin-right: -10%;
	}
	.spacer .pushOut-150.pushIn,
	.article .pushOut-150.pushIn,
	.spacer .pushOut-125.pushIn,
	.article .pushOut-125.pushIn {
		padding-left: 10%;
		padding-right: 10%;
	}
	.imagesWrap.imgWidth-150,
	.imagesWrap.imgWidth-125 {
		padding-left: 10px;
		padding-right: 10px;
	}
	.imagesWrap.imgWidth-150 .imgWrap .caption,
	.imagesWrap.imgWidth-125 .imgWrap .caption {
		padding-left: 0;
		padding-right: 0;
	}
	
	.imgWidth-50 .articleImgLeft,
	.imgWidth-33 .articleImgLeft,
	.imgWidth-25 .articleImgLeft,
	.imgWidth-20 .articleImgLeft,
	.imgWidth-15 .articleImgLeft,
	.imgWidth-13 .articleImgLeft,
	.imgWidth-10 .articleImgLeft,
	.imgWidth-5 .articleImgLeft {
		float: left;
	}
	
	.imgWidth-50 .articleImgRight,
	.imgWidth-33 .articleImgRight,
	.imgWidth-25 .articleImgRight,
	.imgWidth-20 .articleImgRight,
	.imgWidth-15 .articleImgRight,
	.imgWidth-13 .articleImgRight,
	.imgWidth-10 .articleImgRight,
	.imgWidth-5 .articleImgRight {
		float: right;
		order: 2;
	}
	
	.imgWidth-50 .articleImgLeft + .articleWrap {
		margin-left: 50%;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap,
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap,
	.imgWidth-15 .articleImgLeft + .articleWrap,
	.imgWidth-13 .articleImgLeft + .articleWrap,
	.imgWidth-10 .articleImgLeft + .articleWrap,
	.imgWidth-5 .articleImgLeft + .articleWrap {
		margin-left: 20%;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		margin-right: 50%;
		text-align: right;
		order: 1;
	}
	.imgWidth-33 .articleImgRight + .articleWrap,
	.imgWidth-25 .articleImgRight + .articleWrap {
		padding-right: 10px;
		margin-right: 33.3%;
	}
	.imgWidth-20 .articleImgRight + .articleWrap,
	.imgWidth-15 .articleImgRight + .articleWrap,
	.imgWidth-13 .articleImgRight + .articleWrap,
	.imgWidth-10 .articleImgRight + .articleWrap,
	.imgWidth-5 .articleImgRight + .articleWrap {
		padding-right: 10px;
		margin-right: 20%;
	}
}

@media (min-width: 960px) {
	.imgWidth-100 {
		width:100%;
	}
	.imgWidth-75,
	.imgWidth-75 .articleImg {
		width:75%;
	}
	.imgWidth-67,
	.imgWidth-67 .articleImg {
		width:66.7%;
	}
	.imgWidth-50,
	.imgWidth-50 .articleImg {
		width:50%;
	}
	.imgWidth-33,
	.imgWidth-33 .articleImg {
		width:33.3%;
	}
	.imgWidth-25,
	.imgWidth-25 .articleImg {
		width:25%;
	}
	.imgWidth-20,
	.imgWidth-20 .articleImg {
		width:20%;
	}
	.imgWidth-15,
	.imgWidth-15 .articleImg {
		width:15%;
	}
	.imgWidth-13,
	.imgWidth-13 .articleImg {
		width:12.5%;
	}
	.imgWidth-10,
	.imgWidth-10 .articleImg {
		width:10%;
	}
	.imgWidth-5,
	.imgWidth-5 .articleImg {
		width:5%;
	}
	
	.imgRight .imgWidth-75,
	.imgRight .imgWidth-67 {
		float: right;
	}
	.imgLeft .imgWidth-75,
	.imgLeft .imgWidth-67 {
		float: left;
	}
	
	.imgWidth-75 .articleImgLeft {
		float: left;
	}
	.imgWidth-75 .articleImgRight {
		float:right;
		order: 2;
	}
	.imgWidth-75 .articleImgLeft + .articleWrap {
		margin-left: 75%;
	}
	.imgWidth-75 .articleImgRight + .articleWrap {
		margin-right: 75%;
		text-align: right;
		order: 1;
	}
	.imgWidth-50 .articleImgLeft + .articleWrap {
		margin-left: 50%;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		margin-right: 50%;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-33 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 25%;
	}
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 25%;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap {
		margin-left: 20%;
	}
	.imgWidth-20 .articleImgRight + .articleWrap {
		margin-right: 20%;
	}
	.imgWidth-15 .articleImgLeft + .articleWrap {
		margin-left: 15%;
	}
	.imgWidth-15 .articleImgRight + .articleWrap {
		margin-right: 15%;
	}
	.imgWidth-13 .articleImgLeft + .articleWrap {
		margin-left: 12.5%;
	}
	.imgWidth-13 .articleImgRight + .articleWrap {
		margin-right: 12.5%;
	}
	.imgWidth-10 .articleImgLeft + .articleWrap {
		margin-left: 10%;
	}
	.imgWidth-10 .articleImgRight + .articleWrap {
		margin-right: 10%;
	}
	.imgWidth-5 .articleImgLeft + .articleWrap {
		margin-left: 5%;
	}
	.imgWidth-5 .articleImgRight + .articleWrap {
		margin-right: 5%;
	}
}

/* Content: GOOGLE MAPS */
.mapWrap {
	position:relative;
	margin: 1em 0;
	background: #fff;
	overflow: auto;
}
.map_canvas {
	min-height: 200px;
	min-height: 66.667vh;
	background: #e9e9e9;
}
.mapWrap.isInFullscreenMode .map_canvas {
	height: 100%;
}
.map_canvas .gm-style,
.infoBox {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
.infoBox {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background: #fff;
	padding: 10px;
	position: relative;
	font-size: .833em;
	line-height: 1.333;
}
.infoBox .closeBtn {
	float: right;
	background: #000;
	background: rgba(0,0,0,.4);
	padding: 5px;
	border: none;
	border-radius: 0;
	position: relative;
	z-index: 1;
}
.infoBox .closeBtn:hover {
	background: #000;
	background: rgba(0,0,0,.7);
}
.infoBox:after,
.infoBox .nose {
	position: absolute;
	content: '';
	display: block;
	height: 0;
	width: 0;
	left: 50%;
	margin-left: -8px;
	bottom: -8px;
	border-style: solid;
	border-width: 8px 8px 0;
	border-color: #fff transparent transparent;
}
.infoBox.hasNose:after {
	display: none;
}
.infoBox .btn,
.map_canvas .gm-style-iw .btn {
	display: block;
	margin-top: 10px;	
}
.infoBox .btnSet,
.map_canvas .gm-style-iw .btnSet {
	margin-top: 10px;
}
.infoBox .btnSet .btn,
.map_canvas .gm-style-iw .btnSet .btn {
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
	font-size: .8em;
}
.infoBox .placeTeaser,
.map_canvas .placeTeaser {
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 50%;
	background: #f5f6f6 no-repeat 50% 50%;
	background-size: cover;
}
.infoBox .placeTitle {
	text-transform: uppercase;
	font-weight: 700;
}
.infoBox .subTitle {
	display: block;
	text-transform: none;
	font-weight: 300;
	font-style: italic;
}
.infoBox p {
	margin: .667em 0;
}

.infoBox .placeTeaser .placeTitle,
.map_canvas .placeTeaser .placeTitle {
	position: absolute;
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 5px 10px;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 75%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 75%);
	text-shadow: 0 0 20px rgba(0,0,0,0.19), 0 0 6px rgba(0,0,0,0.23);
	display: block;
	width: 100%;
}
.infoBox .placeTeaser {
	width: auto;
	margin: -10px -10px 0;
}
.infoBox .placeTeaser:not(:last-child) {
	margin-bottom: 10px;
}
.infoBox .placeTeaser:last-child {
	margin-bottom: -10px;
}

.box .placeInfoPart {
	font-size:.833em;
}
.box .placeInfoPart + .placeInfoPart {
	margin-top:10px;
}
.box .placeInfoPart .headline {
	display:block;
}
.map_canvas .loadOverlay,
.map_canvas .loadOverlay .loadingBG,
.map_canvas .loadOverlay .loadingIcon {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	z-index:1;
	width:100%;
	height:100%;
}
.map_canvas .loadOverlay .loadingIcon {
	background:url('../img/preloader_301_dark.gif') no-repeat center center;
}
.map_canvas .loadOverlay .loadingBG {
	background:#FFFFFF;
	opacity:0.5;
}
.map_legend {
	margin-top: 10px;
}

.map_legend .legendHead {
	padding: 20px;
	margin: 0;
	color: #fff;
	background: #003f57;
	font-size: 1.111em;
	line-height: 1;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.map_legend .legendWrap {
	background: #e40033;
	color: #fff;
}
.map_legend .slideDownSwitch:checked ~ .slideDownTrigger .legendHead {
	background: #e40033;
}
.map_legend .legendItemsWrap {
	padding-left: 20px;
	padding-right: 20px;
}

.map_legend .legendItemsWrap ul {
	margin: 0 -10px 10px -10px;
	padding: 0;
	list-style: none;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	font-size: .8em;
	line-height: 1.333;
	font-weight: bold;
	text-transform: uppercase;
}
.map_legend .legendItemsWrap li {
	padding: 0;
	width: 100%;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.map_legend .legendItemsWrap li:before {
	display: none !important;
}
.map_legend .legendItemsWrap li a {
	display: block;
	color: #fff;
	position: relative;
	height: 100%;
	padding: 10px 10px 10px 50px;
	padding-left: calc(20px + 2.667em);
	min-height: 60px;
	min-height: calc(20px + 2.667em);
	-webkit-transition: background .3s;
	transition: background .3s;
}
.map_legend .legendItemsWrap li:hover a,
.map_legend .legendItemsWrap li.aktiv a {
	background: #cd002e;
}
.map_legend .legendItemsWrap li .icon {
	height: 2.667em !important;
	width: 2.667em !important;
	position: absolute;
	left: 10px;
	top: 10px;
}

.map_canvas .control {
	position: absolute;
	left: 0;
	top: 0;
}
.map_canvas .control .map_fs,
.map_canvas .control .map_gps {
	background: #fff;
	color: #000;
	padding: 6px;
	line-height: 18px;
	font-size: 18px;
	margin: 10px 0 0 10px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.map_canvas .control .map_fs:hover,
.map_canvas .control .map_fs.active,
.map_canvas .control .map_gps:hover,
.map_canvas .control .map_gps.active {
	background: #003f57;
	color: #fff;
}
	
.map_canvas .control .map_fs .off,
.map_canvas .control .map_fs.active .on {
	display: none;
}
.map_canvas .control .map_fs.active .off {
	display: block;
}

.mapWrap .map_search {
	position:absolute;
	bottom:5px;
	left:5px;
	padding:5px;
	background:#fff;
}

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 {
	display: none;
}
.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_333333_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 > h3 {
	margin: 0;
}
.addrWrap .addr,
.addrWrap .addrData {
	font-size: .8333em;
	font-style: normal;
	margin: .769em 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	   -moz-hyphens: auto;
			hyphens: auto;
}
.addrWrap b {
	font-weight: 700;
}

@media (min-width: 640px) {
	.addrWrap {
		margin: 0 -1em;
	}
	.addrWrap > * {
		padding: 0 1em;
		padding: 0 1rem;
	}
	.addrWrap .addr,
	.addrWrap .addrData,
	.map_legend .legendItemsWrap li {
		width: 50%;
		float: left;
		margin: 0;
	}
	.map_legend .legendItemsWrap li {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.map_legend .legendItemsWrap ul {
		margin-left: -20px;
		margin-right: -20px;
	}
	.map_legend .legendItemsWrap li:nth-child(2n+1) {
		clear: left;
	}
}
@media (min-width: 960px) {
	.map_legend .legendItemsWrap li {
		width: 33.333%;
	}
	.map_legend .legendItemsWrap li:nth-child(2n+1) {
		clear: none;
	}
	.map_legend .legendItemsWrap li:nth-child(3n+1) {
		clear: left;
	}
	aside .addrWrap .addr,
	aside .addrWrap .addrData {
		width: 100%;
		float:none;
	}
	aside .addrWrap address + address {
		padding-top:20px;
	}
}
@media (min-width: 1280px) {
	#content .section.full .rightContentCol .map_legend .legendItemsWrap li {
		width: 25%;
	}
	#content .section.full .rightContentCol .map_legend .legendItemsWrap li:nth-child(3n+1) {
		clear: none;
	}
	#content .section.full .rightContentCol .map_legend .legendItemsWrap li:nth-child(4n+1) {
		clear: left;
	}
}
.placeOpenings .placeOpen {
	margin: 1em 0;
}
.placeOpenings .placeOpen .success,
.placeOpenings .placeOpen .error {
	display: block;
}

.placeBlockedInfo {
	margin: 0 -20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.placeBlockedInfo .item {
	padding: 0 20px;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}
.placeBlockedInfo .item .wrap {
	padding: 10px 0;
}
.placeBlockedInfo .item + .item .wrap {
	border-top: 1px solid #f2f5f6;
}
	
.placeBlockedInfo .item .key {
	font-weight: normal;
}
.placeBlockedInfo .item .value {
	font-weight: 700;
	text-transform: uppercase;
	float: right;
	padding-left: 10px;
	font-size: .667em;
	line-height: 2;
}
.placeBlockedInfo .item .info {
	margin: 0;
	padding: 0;
}
.placeBlockedInfo .item .info li {
	padding: 0;
}
.placeBlockedInfo .item .info li:before {
	display: none;
}
.iconList {
	padding-left:0 !important;
}
.iconList li {
	position:relative;
	padding-left: 2.667em !important;
	padding-left: calc(2em + 10px) !important;
	min-height: 2.333em;
}
.iconList li + li {
	margin-top: .667em !important;
}
.iconList li:before {
	display:none !important;
}
.iconList img {
	position:absolute;
	left:0;
	top: .333em;
	width: 2em;
	height: auto;
}
.iconList li span {
	display: block;
}
@media only screen and (min-width: 560px) {
	.placeBlockedInfo .item {
		width: 50%;
		float: left;
		margin: 0;
	}
	.placeBlockedInfo .item:nth-child(2n+1) {
		clear: left;
	}
	.placeBlockedInfo .item + .item .wrap {
		border-top: none;
	}
	.placeBlockedInfo .item:nth-child(1n+3) .wrap {
		border-top: 1px solid #f2f5f6;
	}
}

@media only screen and (min-width: 720px) {
	.openings .item {
		width: 33.333%;
	}
	.openings .item:nth-child(2n+1) {
		clear: none;
	}
	.openings .item:nth-child(3n+1) {
		clear: left;
	}
	.openings .item:nth-child(1n+3) .wrap {
		border-top: none;
	}
	.openings .item:nth-child(1n+4) .wrap {
		border-top: 1px solid #f2f5f6;
	}
}
/* Content: VIDEOS */
.vidWrap {
	margin: 0 auto;
	margin-bottom: 20px;
}
.vid {
	position:relative;
	display:block;
	overflow:hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.vid,
.vid *,
.vid *:after {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.vid .playIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2em 0 0 -2em;
	width: 4em;
	height: 4em;
	background: #fff;
	border-radius: 50%;
	display: block;
	z-index: 1;
	pointer-events: none;
}
.vid .playIcon:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -1em 0 0 -.75em;
	width: 1.75em;
	height: 2em;
	border-style: solid;
	border-width: 1em 0 1em 1.75em;
	border-color: transparent transparent transparent #000;
	display: block;
	background: none;
	z-index: 1;
}
.vid .video-time {
	position: absolute;
    bottom: 0;
    right: 0;
    font-size: .8em;
	line-height: 1.25;
    font-weight: 700;
	padding: 5px 10px;
    text-align: center;
    display: block;
    z-index: 2;
	background: #c0a78f;
	color: #003f57;
}
.vid:hover .playIcon {
	-webkit-transform: scale(1.05) translateY(-2%);
	transform: scale(1.05) translateY(-2%);
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.vid:hover .playIcon:after {
	border-color: #ea722a;
}
.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;
	overflow:hidden;
}
.downloads .headline,
.downloads .headline strong {
	margin-top:0;
}
.downloads ul {
	margin:-20px -20px 0;
	list-style:none;
	padding:0;
}
.downloads li {
	padding:0 !important;
	margin:0 !important;
}
.downloads li:before {
	display: none !important;
}
.download a {
	display:block;
	margin:20px 20px 0;
	position:relative;
	min-height: 2em;
	line-height: 20px;
	text-align: left;
	text-decoration: none;
	font-weight: 500;
	color: #000;
}
.download a.hasImg {
	padding-left: 50px;
}
.download img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
}
.download small {
	display: block;
	font-weight: normal;
	font-size: 80%;
	color: #5b6770;
}

@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 li {
	padding-top: 10px;
}
.navSub a.lvl2 + ul {
	padding: 0 0 10px;
}
.navSub a {
	color: #fff;
	font-weight: 700;
	font-size: .833em;
	line-height: 1.333;
	display: block;
	position: relative;
	transition: all .3s;
}

.navSub a:hover,
.navSub a.active {
	color: #003f57;
}
.navSub a.lvl3 {
	padding-left: 30px;
	font-size: .667em;
	font-weight: 900;
}
.navSub a.lvl3 .icon {
	opacity: .75;
	font-size: .833em;
	line-height: 1.6;
	position: absolute;
	left: 20px;
	top: 0;
}

/* Content: FORMS */
.form .hint .duty {
	padding: 2px;
	color: #e40033;
}

.optsFieldset legend {
	margin: 0;
}
.optsFieldset {
	margin-top: 40px;
	margin-bottom: 40px;
}

.optsContainer {
	margin: 10px 0;
	text-align: left;
	position: relative;
	padding: 0;
}
.optsInputWrap {
	position: relative;
}
.optsContainer:after {
	clear: both;
	content: '';
	display: table;
}

.optsContainer + .optsContainer,
.optsContainer + .btnContainer,
.btnContainer + .btnContainer,
.optsContainerGroupWrap + .optsContainer,
.optsContainerGroupWrap + .btnContainer,
.optsFieldset + .btnContainer,
.optsFieldset + .optsFieldset,
.optsFieldset + .optsContainerGroupWrap {
	margin-top: 20px;
}
.optsFieldset > .optsContainer:last-child {
	margin-bottom: 0;
}

.optsContainer > label {
	display: block;
	margin-bottom: 5px;
}
.optsInputWrap > label {
	display: block;
	margin: 0;
	padding: 0 5px;
	text-align: left;
	font-weight: 700;	
	text-transform: uppercase;
	font-size: .8em;
	line-height: 20px;
	position: absolute;
	left: 5px;
	top: 10px;
	-webkit-transition: all .2s .1s;
	transition: all .2s .1s;
	pointer-events: none;
	max-width: 95%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #fff;
}
.optsInputWrap > input:focus ~ label,
.optsInputWrap > .input:focus ~ label,
.optsInputWrap > textarea:focus ~ label,
.optsInputWrap > select:focus ~ label,
.optsInputWrap > .selectWrap.focus ~ label,
.optsInputWrap.hasValue > label,
.optsInputWrap.hasFocus > label {
	top: -7px;
	font-size: .555em;
	line-height: 15px;
	color: #808080;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.optsInputWrap > label:first-child {
	position: static;
	padding: 0;
	margin-bottom: 5px;
	text-overflow: none;
	max-width: none;
}
.optsContainer.optsDuty > label:after,
.optsContainer.optsDuty .optsInputWrap > label:after {
	font-weight: normal;
	color: #e40033;
	padding-left: 3px;
	display: inline-block;
	content: '*';
	font-weight: 700;
}
.optsContainer.optsDuty.optsDate.optsRange .optsInputWrap > label:after {
	display: none;
}

.optsContainer > label .shortInfo,
.optsInputWrap > label .shortInfo {
	font-weight: normal;
	letter-spacing: 0;
	text-transform: none;
	font-size: 80%;
	color: #003f57;
	padding-left: 3px;
}
.optsContainer > label .shortInfo:before,
.optsInputWrap > label .shortInfo:before {
	content:' (';
}
.optsContainer > label .shortInfo:after,
.optsInputWrap > label .shortInfo:after {
	content:')';
}

.optsInputWrap input,
.optsInputWrap .input,
.optsInputWrap textarea,
.optsInputWrap select,
.optsInputWrap .selectOver,
.optsInputWrap .optsCounterWrap .over {
	width: 100%;
	padding: 9px;
	background: #fff;
	border: 1px solid #f2f2f2;
	font-size: 1em;
	line-height: 1.111em;
	-webkit-transition: border-color .2s, background .2s;
	transition: border-color .2s, background .2s;
	position: relative;
	display: block;
}
.optsCheckbox .optsInputWrap,
.optsRadio .optsInputWrap {
	border: 1px solid #f2f2f2;
}
.optsError .error {
	font-size: .667em;
	line-height: 1.33333;
	padding: 5px 0 5px 10px;
}
.optsError > label {
	color: #e40033;
}
.optsError .optsInputWrap input,
.optsError .optsInputWrap .input,
.optsError .optsInputWrap textarea,
.optsError .optsInputWrap select,
.optsError .optsInputWrap .selectOver,
.optsError .optsInputWrap .optsCounterWrap .over {
	border-bottom-color: #e40033;
}

.optsInputWrap input:hover,
.optsInputWrap .input:hover,
.optsInputWrap textarea:hover,
.optsInputWrap select:hover,
.optsInputWrap .selectWrap:hover .selectOver,
.optsInputWrap .optsCounterWrap:hover .over,
.optsCheckbox .optsInputWrap:hover,
.optsRadio .optsInputWrap:hover {
	border-color: #ccc;
}
.optsInputWrap input:focus,
.optsInputWrap .input:focus,
.optsInputWrap textarea:focus,
.optsInputWrap select:focus,
.optsInputWrap .selectWrap.focus .selectOver,
.optsInputWrap .optsCounterWrap.focus .over {
	border-color: #ccc;
}

.optsInputWrap .optsInline {
	float: left;
}
.optsContainer .optsInline input {
	display: none;
}
.optsContainer .optsLine {
	display: block;
	float: none;
}

.optsInputWrap .optsInline label {
	display: block;
	padding: 9px 9px 9px 39px;
	background: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .833em;
	line-height: 1.333;
	margin: 0;
	cursor: pointer;
	-webkit-transition: background .2s;
	transition: background .2s;
	position: relative;
}
.optsInputWrap .optsInline label:before,
.optsInputWrap .optsInline label:after {
	position: absolute;
	content: '';
	display: block;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.optsInputWrap .optsInline label:before {
    width: 16px;
    height: 16px;
    border: 1px solid #8d8d8d;
    left: 11px;
    top: 11px;
}
.optsInputWrap .optsInline input[type="checkbox"] + label:after {
    width: 10px;
    height: 6px;
    left: 14px;
    top: 15px;
    transform: rotate(-45deg);
    border-color: #fff;
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
	border-left: 2px solid transparent;
	border-bottom: 2px solid transparent;
}
.optsInputWrap .optsInline input[type="radio"] + label:after {
    width: 8px;
    height: 8px;
    left: 15px;
    top: 15px;
	background: transparent;
	border-radius: 4px;
}
.optsInputWrap .optsInline input[type="radio"] + label:before {
    border-radius: 8px;
}
.optsInputWrap .optsInline input:checked + label:before {
    background: #000;
	border-color: #000;
}
.optsInputWrap .optsInline input:checked + label:after {
    border-color: #fff;
}
.optsInputWrap .optsInline input[type="radio"]:checked + label:after {
    background: #fff;
}

.optsContainer .optsInline label:hover {
	background: #f2f2f2;
}
.optsContainer .optsInline input:checked + label {
	background: #f2f2f2;
	color: inherit;
}
.optsInputWrap.btnSet .optsInline {
	padding: 0;
	margin: 0;
}
.optsInputWrap.btnSet .optsInline label {
	font-size: 1em;
}
.optsInputWrap.btnSet .optsInline label:before,
.optsInputWrap.btnSet .optsInline label:after {
	display: none;
}

.optsContainer .selectWrap,
.optsInputWrap .optsCounterWrap {
	position: relative;
	padding: 0;
	padding-bottom: 0 !important;
	overflow: hidden;
}
.optsContainer .selectOver,
.optsInputWrap .optsCounterWrap .over {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: clip;
	height: 40px;
	height: calc(1.111em + 20px);
}
.optsContainer .selectOver:after {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
	content: '';
	display: block;
	height: 0;
	width: 0;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	border-color: #808080 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: #003f57;
}
.optsContainer .selectWrap.focus .selectOver:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	border-top-color: #003f57;
}
.optsContainer .selectWrap select,
.optsContainer .optsCounterWrap input,
.optsContainer .optsCounterWrap select {
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}
.optsInputWrap .optsCounterWrap .optsCounterUp .icon,
.optsInputWrap .optsCounterWrap .optsCounterDown .icon {
	position: static;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-size: 1.111em;
	background: #003f57;
	border-radius: .5em;
	color: #fff;
	display: block;
	margin: 0;
}
.optsInputWrap .optsCounterWrap .optsCounterUp,
.optsInputWrap .optsCounterWrap .optsCounterDown {
	position: absolute;
	padding: 10px 5px;
	top: 50%;
	margin-top: -.555em;
	margin-top: calc(-.555em - 10px);
	text-align: center;
}
.optsInputWrap .optsCounterWrap .optsCounterUp.disabled,
.optsInputWrap .optsCounterWrap .optsCounterDown.disabled {
	pointer-events: none;
	opacity: .5;
}
.optsInputWrap .optsCounterWrap .optsCounterUp {
	right: 40px;
	right: calc(14px + 1.111em);
}
.optsInputWrap .optsCounterWrap .optsCounterDown {
	right: 5px;
}
.optsInputWrap .optsCounterWrap .over {
	padding-right: 60px;
}

.optsContainer .optsNfo {
	padding-top: 5px;
	margin-left: 10px;
	font-size: .833em;
	clear: both;
}

.optsContainer > .ipShort,
.optsContainer > .ipLong,
.optsContainer > .ipHalf {
	float: left;
}
.optsContainer > .ipShort {
	width: 25%;
}
.optsContainer > .ipHalf {
	width: 47.5%;
	width: calc(50% - 10px);
}
.optsContainer > .ipLong {
	width: 70%;
	width: calc(75% - 20px);
}
.optsContainer > .ipLong + .ipShort,
.optsContainer > .ipShort + .ipLong,
.optsContainer > .ipHalf + .ipHalf  {
	margin-left: 5%;
	margin-left: calc(20px);
}
.optsContainerWrap .ipHalf + .ipHalf {
	margin-top: 2em;
}

.optsInputWrap .icon {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	right: 10px;
	color: #808080;
	z-index: 1;
	pointer-events: none;
}
.optsContainer select:focus + .icon,
.optsContainer .selectWrap.focus + .icon,
.optsContainer textarea:focus + .icon,
.optsContainer input:focus + .icon,
.optsContainer .input:focus + .icon {
	color: #003f57;
}
.optsContainer .date input,
.optsContainer .date .input {
	float: none;
	width: 100%;
}


/* Form Type: BUTTONS */
.btnContainer {
	text-align: center;
}
.btnContainer .btnLess,
.btnContainer .backLink {
    float: left;
    margin: 0;
}
.btnContainer button[type="reset"] {
	position: relative;
}
.btnContainer button[type="reset"] .icon {
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -16px;
}
.box .btnContainer .btn,
.box .btnContainer button {
	width: 100%;
	box-shadow: none;
	margin: 0;
}

/* Form in a Box */
.box .optsInputWrap > label,
.box .optsInputWrap > input:focus ~ label,
.box .optsInputWrap > .input:focus ~ label,
.box .optsInputWrap > textarea:focus ~ label,
.box .optsInputWrap > select:focus ~ label,
.box .optsInputWrap > .selectWrap.focus ~ label,
.box .optsInputWrap > .optsCounterWrap.focus ~ label,
.box .optsInputWrap .optsInline label,
.box .optsInputWrap.hasValue > label,
.box .optsInputWrap.hasFocus > label {
	color: #fff;
	background: #e40033;
}

.box .optsInputWrap input:hover,
.box .optsInputWrap .input:hover,
.box .optsInputWrap textarea:hover,
.box .optsInputWrap select:hover,
.box .optsInputWrap .selectWrap:hover .selectOver,
.box .optsInputWrap .optsCounterWrap:hover .over,
.box .optsCheckbox .optsInputWrap:hover,
.box .optsRadio .optsInputWrap:hover {
	border-color: #fff;
}

.box .optsContainer .selectOver:after {
	border-top-color: #fff;
}

.box .optsInputWrap .icon {
    color: #fff;
}
.box .optsInputWrap input, 
.box .optsInputWrap .input,
.box .optsInputWrap textarea,
.box .optsInputWrap select,
.box .optsInputWrap .selectOver,
.box .optsInputWrap .optsCounterWrap .over {
	border-color: #fff;
	background: none;
	color: #fff;
}
.box .optsInputWrap input:focus,
.box .optsInputWrap .input:focus,
.box .optsInputWrap textarea:focus,
.box .optsInputWrap select:focus,
.box .optsInputWrap .selectWrap.focus .selectOver,
.box .optsInputWrap .optsCounterWrap.focus .over {
    border-color: #fff;
}
.box .optsContainer select:focus + .icon,
.box .optsContainer .selectWrap.focus + .icon,
.box .optsContainer textarea:focus + .icon,
.box .optsContainer input:focus + .icon,
.box .optsContainer .input:focus + .icon {
	color: #fff;
}
.box .optsInputWrap .optsInline label,
.box .optsInputWrap.btnSet .optsInline.btn {
	background:none;
	overflow:hidden;
	word-wrap: break-word;
}
.box .optsContainer .optsInline label:hover,
.box .optsContainer .optsInline input:checked + label {
	background-color:#ce002e;
}
.box .optsInputWrap .optsInline label:before {
	border-color:#fff;
	background:#ce002e;
}
.box .optsInputWrap .optsInline input:checked + label:before {
	background:#fff;
	border-color:#fff;
}
.box .optsInputWrap .optsInline input:checked + label:after {
	border-color:#e40033;
}
.box .articleOffer {
	margin-top:10px;
	overflow:hidden;
}
.box .articleOffer .wrap {
	padding-bottom:100%;
	display:block;
}
.box .articleOffer .info {
	position: absolute;
	bottom: 0;
	left:0;
	right:0;
}
.box .articleOffer .info:after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	left: 0;
	top: -20px;
	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);
}
.box .articleOffer .articleTeaser {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index: -2;
}
.box .articleOffer .imgWrap {
	height:100%;
}
.box .articleGrid .headline {
	color:#fff;
}

/* SUCHE */
.box_search .optsContainer label {
	display:none;
}
.box_search .optsContainer input {
	width:100%;
}

/* ACCORDION */
.accordionWrapper.ui-accordion .ui-accordion-content > :first-child {
	margin-top: 0;
}
.accordionWrapper.ui-accordion .ui-accordion-content > .imgLeft:first-child,
.accordionWrapper.ui-accordion .ui-accordion-content > .imgRight:first-child {
	margin-top:10px;
}
.accordionWrapper.ui-accordion .ui-accordion-content > .imgLeft:first-child + .headline,
.accordionWrapper.ui-accordion .ui-accordion-content > .imgLeft:first-child + h2,
.accordionWrapper.ui-accordion .ui-accordion-content > .imgRight:first-child + h2,
.accordionWrapper.ui-accordion .ui-accordion-content > .imgLeft:first-child + h3,
.accordionWrapper.ui-accordion .ui-accordion-content > .imgRight:first-child + h3 {
	margin-top:10px;
}
.accordionWrapper.ui-accordion .ui-accordion-content .btnMore {
	display: block;
	text-align: left;
}
ul.eventData {
	list-style:none;
	margin: 1em 0;
	padding: 0;
	font-size: .667em;
	line-height: 1.25;
	font-weight: 700;
}
@media (min-width: 360px) {
	ul.event_service {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}

@media (min-width: 640px) {
	ul.event_service {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
	}
}
ul.eventData li {
	position: relative;
	display: inline;
	padding: 0 0 0 20px;
}
ul.eventData li:before {
	content: '';
	background: #003f57;
	display: block;
	margin-top: -1px;
	height: 3px;
	width: 3px;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 9px;
}
ul.eventData li:first-child {
	padding-left: 0;
}
ul.eventData li:first-child:before {
	display: none;
	
}


/* Content: LISTS */
.list {
	margin: 10px 0;
}
.list:last-child {
	margin-bottom: 0;
}
.list .listItem {
	position:relative;
}
.list .listItem + .listItem {
	margin-top: 10px;
}
.list .listDivider {
	margin: 19px 0;
}
.list .articleWrap > :first-child {
	margin-top: 0;
}
.list .articleImgNone + .articleWrap > :first-child {
	margin-top: .5em;
}
.list .articleWrap {
	margin-bottom: 0;
}
.list .articleWrap .headline {
	margin: 0 0 10px;
}
.list .articleWrap .headline a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.list .articleWrap .headline + p {
	margin-top: 0;
}
.list .articleWrap .dateText {
	font-size: 80%;
	line-height: 1.25;
	margin-bottom: 10px;
	display: block;
	color: #333;
}
.list .articleWrap .headline .btn {
	display: block;
}
.list .articleWrap .btn {
	margin-bottom: 0;
}

.list .articleImgNone,
.list .articleImgLeft,
.list .articleImgRight {
	float: none;
	margin: 0 auto;
}

.list .articleImgLeft.imgWidth-5,
.list .articleImgRight.imgWidth-5,
.list .articleImgLeft.imgWidth-10,
.list .articleImgRight.imgWidth-10,
.list .articleImgLeft.imgWidth-13,
.list .articleImgRight.imgWidth-13 {
	width: 15%;
}

.list .articleImgLeft.imgWidth-15,
.list .articleImgRight.imgWidth-15,
.list .articleImgLeft.imgWidth-17,
.list .articleImgRight.imgWidth-17,
.list .articleImgLeft.imgWidth-20,
.list .articleImgRight.imgWidth-20,
.list .articleImgLeft.imgWidth-25,
.list .articleImgRight.imgWidth-25 {
	width: 33.3%;
}

.list .articleImgLeft.imgWidth-33,
.list .articleImgRight.imgWidth-33,
.list .articleImgLeft.imgWidth-50,
.list .articleImgRight.imgWidth-50,
.list .articleImgLeft.imgWidth-67,
.list .articleImgRight.imgWidth-67,
.list .articleImgLeft.imgWidth-75,
.list .articleImgRight.imgWidth-75 {
	width: 100%;
}

.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 .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 .articleImgLeft.imgWidth-5 + .articleWrap,
.list .articleImgLeft.imgWidth-10 + .articleWrap,
.list .articleImgLeft.imgWidth-13 + .articleWrap {
	padding-left: 10px;
	margin-left: 15%;
}
.list .articleImgLeft.imgWidth-15 + .articleWrap,
.list .articleImgLeft.imgWidth-17 + .articleWrap,
.list .articleImgLeft.imgWidth-20 + .articleWrap,
.list .articleImgLeft.imgWidth-25 + .articleWrap {
	padding-left: 10px;
	margin-left: 33.3%;
}


.list .articleImgRight.imgWidth-5 + .articleWrap,
.list .articleImgRight.imgWidth-10 + .articleWrap,
.list .articleImgRight.imgWidth-13 + .articleWrap {
	padding-right: 10px;
	margin-right: 15%;
}
.list .articleImgRight.imgWidth-15 + .articleWrap,
.list .articleImgRight.imgWidth-17 + .articleWrap,
.list .articleImgRight.imgWidth-20 + .articleWrap,
.list .articleImgRight.imgWidth-25 + .articleWrap,
.list .articleImgRight.imgWidth-33 + .articleWrap {
	padding-right: 10px;
	margin-right: 33.3%;
}

@media (min-width: 480px) {
	.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 .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%;
	}
}

@media (min-width: 640px) {
	.list .listItem + .listItem {
		margin-top: 20px;
	}

	.list .articleImgLeft.imgWidth-33,
	.list .articleImgRight.imgWidth-33 {
		width: 33.3%;
	}
	
	.list .articleImgLeft.imgWidth-50,
	.list .articleImgRight.imgWidth-50 {
		width: 50%;
	}
	
	.list .articleImgLeft.imgWidth-33,
	.list .articleImgLeft.imgWidth-50 {
		float:left;
	}
	.list .articleImgLeft.imgWidth-17 + .articleWrap,
	.list .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 25%;
	}
	.list .articleImgLeft.imgWidth-25 + .articleWrap,
	.list .articleImgLeft.imgWidth-33 + .articleWrap {
		margin-left: 33.3%;
	}
	.list .articleImgLeft.imgWidth-5 + .articleWrap,
	.list .articleImgLeft.imgWidth-10 + .articleWrap,
	.list .articleImgLeft.imgWidth-13 + .articleWrap,
	.list .articleImgLeft.imgWidth-15 + .articleWrap,
	.list .articleImgLeft.imgWidth-20 + .articleWrap,
	.list .articleImgLeft.imgWidth-25 + .articleWrap,
	.list .articleImgLeft.imgWidth-33 + .articleWrap,
	.list .articleImgLeft.imgWidth-50 + .articleWrap {
		padding-left: 20px;
	}
	.list .articleImgLeft.imgWidth-50 + .articleWrap {
		margin-left: 50%;
	}
	
	.list .articleImgRight.imgWidth-33,
	.list .articleImgRight.imgWidth-50 {
		float: right;
	}
	.list .articleImgRight.imgWidth-17 + .articleWrap,
	.list .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 25%;
	}
	.list .articleImgRight.imgWidth-25 + .articleWrap,
	.list .articleImgRight.imgWidth-33 + .articleWrap {
		margin-right: 33.3%;
	}
	.list .articleImgRight.imgWidth-5 + .articleWrap,
	.list .articleImgRight.imgWidth-10 + .articleWrap,
	.list .articleImgRight.imgWidth-13 + .articleWrap,
	.list .articleImgRight.imgWidth-15 + .articleWrap,
	.list .articleImgRight.imgWidth-20 + .articleWrap,
	.list .articleImgRight.imgWidth-25 + .articleWrap,
	.list .articleImgRight.imgWidth-33 + .articleWrap,
	.list .articleImgRight.imgWidth-50 + .articleWrap {
		padding-right: 20px;
	}
	.list .articleImgRight.imgWidth-50 + .articleWrap {
		margin-right: 50%;
	}
}

@media (min-width: 720px) {
	.list .articleImgLeft.imgWidth-33,
	.list .articleImgRight.imgWidth-33 {
		width: 33.3%;
	}
	
	.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-67 + .articleWrap {
		padding-left: 20px;
		margin-left: 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-67 + .articleWrap {
		padding-right: 20px;
		margin-right: 50%;
	}
}

@media (min-width: 960px) {
	.list {
		margin: 20px 0;
	}
	
	.list .articleImgLeft.imgWidth-5,
	.list .articleImgRight.imgWidth-5 {
		width: 5%;
	}
	.list .articleImgLeft.imgWidth-10,
	.list .articleImgRight.imgWidth-10 {
		width: 10%;
	}
	.list .articleImgLeft.imgWidth-13,
	.list .articleImgRight.imgWidth-13 {
		width: 12.5%;
	}
	.list .articleImgLeft.imgWidth-17,
	.list .articleImgRight.imgWidth-17 {
		width: 16.7%;
	}
	.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-50 + .articleWrap {
		margin-left: 50%;
	}
	.list .articleImgLeft.imgWidth-67 + .articleWrap {
		margin-left: 66.7%;
	}
	.list .articleImgLeft.imgWidth-75 + .articleWrap {
		padding-left: 20px;
		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-50 + .articleWrap {
		margin-right: 50%;
	}
	.list .articleImgRight.imgWidth-67 + .articleWrap {
		margin-right: 66.7%;
	}
	.list .articleImgRight.imgWidth-75 + .articleWrap {
		padding-right: 20px;
		margin-right: 75%;
	}
}

/* Content: GRIDS */
.gridWrap {
	margin: 10px -10px -20px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
}
.article .gridWrap,
.spacer .gridWrap,
.spacerBase .gridWrap {
	margin-left: -10px;
	margin-right: -10px;
	clear: both;
}
.is_book + .clear + .gridWrap {
	margin-bottom: -20px;
}

#content .section .rightContentCol .article + .clear + .gridWrap {
	margin-top: 20px;
}

.gridWrap .gridSizer {
	width: 8.333%;
}
.gridWrap .articleGrid {
	padding: 0 0 100%;
	float: left;
	width: 100%;
	position: relative;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}


.gridWrap .leftContainer,
.gridWrap .rightContainer,
.gridWrap .gridWidth_100,
.gridWrap .gridWidth_50,
.gridWrap .gridWidth_33,
.gridWrap .gridWidth_25 {
	width: 100%;
	padding: 0 10px 20px;
	float: left;
}
.gridWrap .rightContainer {
	float: right;
}


/* Content Part: GRIDS - General Content */

.gridWrap:first-child,
.clear:first-child + .gridWrap {
	margin-top: 0;
}
.gridWrap.gridCenter {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.gridWrap .articleGrid {
	padding: 0 10px 20px 10px;
	float: left;
	position: relative;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.gridWrap.gridCenter .articleGrid {
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.gridWrap .leftContainer,
.gridWrap .rightContainer {
	width: 100%;
}
.gridWrap .rightContainer {
	float: right;
}
.articleGrid {
	position: relative;
	z-index: 1;
	width: 100%;
}

.articleGrid .gridWrapInner {
	height: 100%;
	display:block;
	overflow: hidden;
	position: relative;
	background: #f2f5f6;
	color: inherit;
}

.articleGrid .corner:after {
	background: #5f5d60;
}

.articleGrid .info .text > :first-child {
	margin-top: 0; 
}
.articleGrid .info .text > :last-child {
	margin-bottom: 0;
}

.articleGrid .info {
	padding: 10px;
}
.articleGrid .info > *:first-child {
	margin-top: 0;
}
.articleGrid .info > *:last-child {
	margin-bottom: 0;
}

.articleGrid .headline {
	margin: 0;
	font-weight: 700;
	color: #003f57;
}
.articleGrid .headline .hint {
	font-weight: 300;
}
.articleGrid .headline a {
	text-decoration: none;
	display: block;
}
.articleGrid .btnContainer {
	margin: 0;
}
.articleGrid .imgWrap .headline,
.articleGrid .headline.headlineLikeOverImage {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #db001b;
	color: #fff;
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
	margin: 0;
	padding: 5px 15px;
	z-index: 1;
}
.articleGrid .headline.headlineLikeOverImage {
	position: static;
	margin: -15px -15px 10px;
}
.articleGrid .headline.headlineLikeOverImage a {
	color: inherit;
}
.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 .btnMore {
	position:absolute;
	bottom:10px;
	right:10px;
	margin: 0;
	line-height: 2;
}
.articleGrid .btnMore:after {
    background: -webkit-linear-gradient(left, rgba(242,245,246,0) 0%,rgba(242,245,246,1) 30px);
    background: linear-gradient(to right, rgba(242,245,246,0) 0%, rgba(242,245,246,1) 30px);
}

/* MASON Grids */
.masonryWrap {
	display: block;
	margin: -10px !important;
}
.article + .clear + .masonryWrap {
	margin-top: 10px !important;
}
.masonryWrap .gridSizer {
	width: 8.333%;
}
.masonryWrap .articleGrid {
	height: auto;
	padding: 0;
}

.masonryWrap .wrap {
	overflow: hidden;
	display: block;
	height: 0;
}

.masonryWrap .gridWidth_3x3,
.masonryWrap .gridWidth_3x6 {
	width: 50%;
}
.masonryWrap .gridWidth_6x3,
.masonryWrap .gridWidth_6x6 {
	width: 100%;
}
.masonryWrap .gridWidth_6x6 .wrap,
.masonryWrap .gridWidth_3x3 .wrap {
	padding-bottom: 100%;
}
.masonryWrap .gridWidth_6x3 .wrap {
	padding-bottom: 50%;
}
.masonryWrap .gridWidth_3x6 .wrap {
	padding-bottom: 200%;
}


.masonryGridItem .wrap .info {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	padding: 10px;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,20,.2);
	font-size: .833em;
	line-height: 1.333;
	z-index: 2;
	transition: transform .3s;
}
.masonryGridItem .wrap .info:after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	left: 0;
	top: -20px;
	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);
}
.masonryGridItem .wrap .info .headline {
	font-size: 1.333em;
	line-height: 1;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}
.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 .articleTeaser {
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	margin: 0;
	background: #003f57;
	transition: transform .3s, box-shadow .3s;
}
.masonryGridItem .articleTeaser .imgWrap {
	padding-bottom: 0 !important;
	height: 100%;
}
.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: 2;
	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.noZoomEffect:hover .articleTeaser {
	transform: none;
	box-shadow: none;
}
.articleGrid .info {
	position:relative;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.articleGrid .host_distance {
	padding:2px 10px;
	display:block;
	position:absolute;
	line-height:15px;
	font-size:12px;
	font-weight:700;
	top:-19px;
	right:0;
	background:#f5f6f6;
}
.articleGrid .host_colors {
	padding:0px;
	position:absolute;
	left:0;
	right:0;
	top:-10px;
	display:block;
}
.articleGrid .host_colors > .host_color {
	display:block;
	height:10px;
	width:100%;
}
.articleGrid .host_colors > .host_color + .host_color {
	margin-left:5px;
}

@media only screen and (min-width: 480px) {
	.gridWrap .gridWidth_20,
	.gridWrap .gridWidth_25 {
		width: 50%;
	}
}

@media only screen and (min-width: 560px) {
	.gridWrap .gridWidth_50,
	.gridWrap .leftContainer,
	.gridWrap .rightContainer {
		width: 50%;
	}
}

@media only screen and (min-width: 640px) {
	.gridWrap .gridWidth_33 {
		width: 50%;
	}

	/* MASON Grids */
	.masonryWrap .gridWidth_3x3 {
		width: 33.333%;
	}
	.masonryWrap .gridWidth_3x6 {
		width: 33.333%;
	}
	.masonryWrap .gridWidth_6x3 {
		width: 66.66%;
	}
	.masonryWrap .gridWidth_6x6 {
		width: 66.66%;
	}
}
@media only screen and (min-width: 720px) {
	.gridWrap .gridWidth_20 {
		width: 33.33%;
	}
	.gridWrap .gridWidth_20:nth-child(3n+1) {
		clear: left;
	}
	.articleGrid .info {
		padding: 20px;
		font-size: .833em;
		line-height: 1.333;
	}
	.articleGrid .headline {
		font-size: 1.333em;
		line-height: 1;
	}
	.articleGrid .btnMore {
		bottom: 20px;
		right: 20px;
		line-height: 1.667;
	}
}


@media only screen and (min-width: 960px) {
	.gridWrap .gridWidth_33 {
		width: 33.33%;
	}
	.gridWrap .gridWidth_33:nth-child(3n+1) {
		clear: left;
	}
	.gridWrap .gridWidth_25 {
		width: 25%;
	}
	.gridWrap .gridWidth_25:nth-child(4n+1) {
		clear: left;
	}
	
	/* MASON Grids */
	.masonryWrap .gridWidth_3x3 {
		width: 25%;
	}
	.masonryWrap .gridWidth_3x6 {
		width: 25%;
	}
	.masonryWrap .gridWidth_6x3 {
		width: 50%;
	}
	.masonryWrap .gridWidth_6x6 {
		width: 50%;
	}
}

@media only screen and (min-width: 1080px) {
	.gridWrap .gridWidth_20 {
		width: 20%;
	}
	.gridWrap .gridWidth_20:nth-child(3n+1) {
		clear: none;
	}
	.gridWrap .gridWidth_20:nth-child(5n+1) {
		clear: left;
	}
	
	/* MASON Grids */
	.masonryWrap {
    	margin: -20px !important;
	}
	.article + .clear + .masonryWrap {
		margin-top: 0 !important;
	}
	.masonryGridItem .wrap .info,
	.masonryGridItem .articleTeaser {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}
	.masonryGridItem .articleTeaser {
		top: 20px;
	}
	.masonryGridItem .wrap .info {
		padding: 20px;
	}
	.masonryGridItem .flag {
		left: 40px;
		top: 40px;
	}
}

/* Site: PAGE JUMPS */
.jumper {
	margin: 20px -5px;
	position: relative;
}
.pagerJumper .divider {
	display: none;
}
.jumper .resultStats {
	text-align: center;
	color: #808080;
	font-size: .667em;
	padding: 0 0 5px;
}
.jumper .pagerJumper {
	display: block;
	margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagerJumper a,
.pagerJumper .spacer {
	padding: 3px;
	margin:0 5px;
	display:block;
	float:left;
	width:30px;
	height:30px;
	border-radius: 15px;
	border: 2px solid #e6e6e6;
	background: transparent;
	font-weight: bold;
	font-size: .833em;
	color: #000;
	line-height: 20px;
	text-align:center; 
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.pagerJumper .spacer {
	background: none;
	border: none;
}
.pagerJumper a:hover,
.pagerJumper a.aktiv {
	background: #e40033;
	border-color: #e40033;
	color: #fff;
}

.pages {
	text-align:center;
	padding: 10px 0;	
	line-height: 20px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
	-webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pages > * {
	display: inline-block;
	overflow: hidden;
	margin: 0 10px;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.pages > :first-child {
	margin-left: 0;
}
.pages > :last-child {
	margin-right: 0;
}
.pages .overview {
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.pages a .label {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	display: block;
}
.pages a.disabled {
	font-weight: normal;
	color: inherit;
	text-decoration: none;
}

@media (min-width: 640px) {
	.jumper .resultStats {
		line-height: 30px;
		float: left;
		padding: 0;
	}
	.jumper .pagerJumper  {
		float: right;
	}
	.pagerJumper a,
	.pagerJumper .spacer {
		font-size: .667em;
	}
}

/* ==========================================================================
   MODULE STYLES
   ========================================================================== */

/* Modul: START */
#eventsSlider {
	margin: 20px 0;
	padding: 0 20px;	
}
#eventsSlider .dateSliderDatesWrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-right: 50px;
	padding-right: calc(2em + 20px);
}
.no-js #eventsSlider .dateSliderDatesWrap {
	overflow: auto;
}

#eventsSlider .dateSliderDates {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	list-style: none;
	margin: 0 auto 0 -5px;
	padding: 0;
}
#eventsSlider .dateSliderDatesWrap:after {
	content: '';
	display: block;
	width: 50px;
	width: calc(2em + 20px);
	height: 100%;
	right: 0;
	top: 0;
	position: absolute;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 50%,rgba(255,255,255,0.9) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 50%,rgba(255,255,255,0.9) 100%);
	z-index: 0;
}
#eventsSlider .dateSliderButtonNext {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -1em;
	line-height: 1;
	font-size: 1em;
	border-radius: 1em;
	background: #003f57;
	color: #fff;
	padding: .5em;
	text-align: center;
	width: 2em;
	z-index: 1;
	transition: all .3s;
}
#eventsSlider .dateSliderButtonNext:hover {
	background: #389ec3;
}
.no-js #eventsSlider dateSliderButtonNext {
	display: none;
}
#eventsSlider .dateSliderButtonNext[disabled] {
	opacity: .5;
}
#eventsSlider .dateSliderDates li {
	text-align: center;
	webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
	white-space: nowrap;
	width: auto;
}
#eventsSlider .dateSliderMonth {
	line-height: 2;
	font-size: 1em;
	padding: 10px 5px;
	color: #003f57;
	list-style: none;
    margin: 0;
}
#eventsSlider .dateSliderMonth strong {	
	font-weight: 900;
}
#eventsSlider .dateSliderMonth.sticky {
	position: absolute;
	left: -5px;
	top: 0;
	z-index: 1;
	width: auto;
}
#eventsSlider .dateSliderMonth.sticky:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) calc(100% - 10px),rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) calc(100% - 10px),rgba(255,255,255,0) 100%);
	z-index: -1;
}
#eventsSlider .dateSliderDate {
	color: #bfcfd5;
}
#eventsSlider .dateSliderDate a {
	display: block;
	text-decoration: none;
	color: inherit;
}
#eventsSlider .dateSliderDate .dayOfMonth {
	display: block;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 1em;
	line-height: 1;
	padding: 10px 5px 0;
	min-width: 2em;
}
#eventsSlider .dateSliderDate .dayOfWeek {
	display: block;
	padding: 0 5px 10px;
	font-weight: bold;
	font-size: .667em;
	line-height: 1.5;
}
#eventsSlider .dateSliderDate.endOfWeek,
#eventsSlider .dateSliderDate.holiday {
	color: #cde7f0;
}
#eventsSlider .dateSliderDate.hasEvents {
	color: #003f57;
	transition: background .3s;
}
#eventsSlider .dateSliderDate.hasEvents.endOfWeek,
#eventsSlider .dateSliderDate.hasEvents.holiday {
	color: #389ec3;
}
#eventsSlider .dateSliderDate.hasEvents:hover {
	background: #f9f6f4;
}
#eventsSlider .dateSliderDate.hasEvents.active {
	background: #c0a78f;
	color: #003f57;
}
#eventsSlider .dateSliderDate.hasEvents.active .dayOfMonth {
	color: #fff;
}

#eventsSlider .dateSliderEventsWrap {
	text-align: center;
}
#eventsSlider .dateSliderEvents {
	background: #c0a78f;
	color: #fff;
	padding: 20px 0;
	margin-left: -20px;
	margin-right: -20px;
}
#eventsSlider .dateSliderEvents .loading {
	background: url('../img/preloader_301_dark.gif') no-repeat 50% 50%;
	min-height: 48px;
	height: 100%;
	width: 100%;	
}
#eventsSlider .dateSliderEvents .event {
	position: relative;
	padding: 0 20px;
	min-height: 80px;
	text-align: left;
}
#eventsSlider .dateSliderEvents .event:not(:first-child) {
	display: none;
}
.eventListItem .eventPreviewImg,
#eventsSlider .dateSliderEvents .eventPreviewImg {
	width: 80px;
	margin: 0;
	border-radius: 40px;
	overflow: hidden;
	position: absolute;
	left: 20px;
	top: 0;
	display: none;
}
.eventListItem .eventPreviewImg {
	right: 0;
	left: auto;
}
#eventsSlider .dateSliderEvents .event .headline {
	margin: 0;
}
#eventsSlider .dateSliderEvents .event .headline a {
	color: inherit;
}
#eventsSlider .dateSliderEvents .event .eventData {
	margin: 0;
}
#eventsSlider .dateSliderEvents .event .eventData + .eventDesc {
	margin-top: 10px;
}
#eventsSlider .dateSliderEvents .event .eventDesc {
	font-size: .833em;
	line-height: 1.333;
	overflow: hidden;
	max-height: 2.667em;
}
#eventsSlider .dateSliderEvents .event .eventDesc > :first-child {
	margin-top: 0;
}
#eventsSlider .dateSliderEvents .event .eventDesc > :last-child {
	margin-bottom: 0;
}
#eventsSlider .dateSliderEvents .event .btnMore {
	right: 20px;
}
#eventsSlider .dateSliderEvents .event .btnMore:after {
    background: -webkit-linear-gradient(left, rgba(192,167,143,0) 0%,rgba(192,167,143,1) 30px);
    background: linear-gradient(to right, rgba(192,167,143,0) 0%, rgba(192,167,143,1) 30px);
}

#eventsSlider .dateSliderBtnMore {
	position: relative;
	padding-left: 2em;
	margin-bottom: 0;
}
#eventsSlider .dateSliderBtnMore .counter {
	height: 1.667em;
	width: 1.667em;
	line-height: 1.667;
	text-align: center;
	border-radius: .833em;
	background: #003f57;
	color: #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -.833em;
	-webkit-transition: all .3s;
	transition: all .3s;
}
#eventsSlider .dateSliderBtnMore:hover .counter {
	background: #389ec3;
}
@media (max-width: 719px) {
	#navStart li > ul {
		max-height: 0;
		-webkit-transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s, overflow 0s;
		transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s, overflow 0s;
		overflow: hidden;
	}
	
	#navStart li > .switch:checked ~ ul {
		max-height: 10000px;
		-webkit-transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
		transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
		padding: 10px 0 !important;
	}
	
	#navStart {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	#navStart > ul {
		width: 100%;
	}
	
	#navStart li > a,
	#navStart li > label {
		display: block;
		position: relative;
		padding: .333em 40px .333em 10px;
		padding-right: calc(1.333em + 20px);
	}
	#navStart li > a .icon,
	#navStart li > label .icon {
		position: absolute;
		right: 10px;
		top: .333em;
		width: 1.333em;
	}
	
	#navStart li.lvl1 > .switch:checked ~ ul {
		padding-top: 10px;
	}
	
	#navStart li + li {
		margin-top: 10px;
	}
	#navStart li.lvl1 > a,
	#navStart li.lvl1 > label {
		font-size: 1em;
		line-height: 1.333em;
		font-weight: 700;
		background: #003f57;
		color: #fff;
	}
	#navStart li.lvl1 > label .icon.on {
		display: none;
	}
	#navStart li.lvl1 > .switch:checked ~ label .icon.on {
		display: block;
	}
	#navStart li.lvl1 > .switch:checked ~ label .icon.off {
		display: none;
	}
	#navStart li.lvl2 > a {
		padding-top: .4167em;
		padding-bottom: .4167em;
		font-size: .8em;
	}
	
}
@media (min-width: 720px) {
	#eventsSlider {
		margin: 40px 0;
	}
	#eventsSlider .dateSliderDatesWrap {
		padding-right: 60px;
		padding-right: calc(2em + 30px);
	}
	#eventsSlider .dateSliderDatesWrap:after {
		width: 60px;
		width: calc(2em + 30px);
	}
	#eventsSlider .dateSliderEvents {
		margin-left: 0;
		margin-right: 0;
	}
	#eventsSlider .dateSliderEventsWrap {
		text-align: right;
	}
	
	#eventsSlider .dateSliderEvents {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#eventsSlider .dateSliderEvents .event {
		width: 50%;
		float: left;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	#eventsSlider .dateSliderEvents .event:not(:first-child) {
		display: block;
	}
	#eventsSlider .dateSliderEvents .event:nth-child(2n):after {
		content: '';
		display: block;
		top: 0;
		left: -1px;
		bottom: 0;
		width: 2px;
		position: absolute;
		background: #ac9680;
	}

	#eventsSlider .dateSliderEvents .event .eventDesc {
		max-height: none;
	}
}

@media (min-width: 1080px) {
	#eventsSlider .dateSliderEvents .eventPreviewImg {
		display: block;
	}
	#eventsSlider .dateSliderEvents .event.hasImg .eventInfo {
		padding-left: 100px;
	}
}

#quickBknBoxWrap {
	background: #e40033 url('../img/pattern_sorbs_red.png') repeat 50% 0%;
	color: #fff;
	padding: 20px;
}
.quickBknBoxTrigger {
	color: #fff;
}
#quickBookingBoxSwitch:checked ~ #wrapper #quickBknBox,
#quickBookingBoxSectionSwitch:checked ~ #wrapper #quickBknBoxSection {
	display: block;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
}
.quickBknBox .quickBknBoxClose {
	float: right;
	padding: 10px;
	margin: -20px;
	background: #013f58;
	color: #fff;
}

.quickBknBox .optsContainer.qb_departure_opts .fromArrivalToDeparture {
	color: #fff;
	height: 20px;
	width: 20px;
	line-height: 20px;
	margin-top: -10px;
	text-align: center;
	right: auto;
	left: -10px;
	display: none;
}
.quickBknBox .optsInputWrap.hasIcon input,
.quickBknBox .optsInputWrap.hasIcon select,
.quickBknBox .optsInputWrap.hasIcon .selectOver,
.quickBknBox .optsInputWrap.hasIcon .optsCounterWrap .over {
	padding-left: 39px;
}
.quickBknBox .optsInputWrap .icon {
	left: 10px;
	right: auto;
	width: 20px;
	text-align: center;
}
#content .leftContentCol .quickBknBox {
	max-height: none;
	padding: 0;
}

@media (max-width: 719px) {
	.quickBknBoxTrigger {
		padding: 20px 50px;
		display: block;
		position: relative;
		margin: -20px 0;
		text-align: left;
		z-index: 1;
	}
	.quickBknBoxTrigger .iconPrimary,
	.quickBknBoxTrigger .iconSecondry {
		position: absolute;
		top: 20px;
	}
	.quickBknBoxTrigger .iconPrimary {
		left: 20px;
	}
	.quickBknBoxTrigger .iconSecondry {
		right: 20px;
		-webkit-transition: transform .3s;
		transition: transform .3s;
	}
	.quickBknBox {
		max-height: 0;
		-webkit-transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s, overflow 0s;
		transition: max-height .3s cubic-bezier(0,1,0,1), padding .3s, overflow 0s;
		overflow: hidden;
	}
	.quickBknBoxWrap .switch:checked ~ .quickBknBox {
		max-height: 10000px;
		padding-top: 20px;
		
		-webkit-transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
		transition: max-height .3s cubic-bezier(1,0,1,0), padding .3s;
		
		-webkit-animation: 0s linear 0.3s 1 normal both running delayOverflow;
		animation: 0s linear 0.3s 1 normal both running delayOverflow;
	}
	.quickBknBoxWrap .switch:checked ~ .quickBknBoxTrigger .iconSecondry {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}
@media (min-width: 720px) {
	.quickBknBoxTrigger .iconSecondry {
		display: none;
	}
	.quickBknBoxTrigger {
		margin: 0;
		padding: 0 20px;
		text-align: center;
	}
	.quickBknBox .wrap {
		margin-left: -20px;
		margin-right: -20px;
	}
	.quickBknBox .optsContainer {
		width: 50%;
		padding: 20px 20px 0;
		margin: 0;
		float: left;
	}
	.quickBknBox .optsContainer:nth-child(2n + 1) {
		clear: left;
	}
	.quickBknBox .optsContainer:nth-child(2n) {
	}
	.quickBknBox .btnContainer {
		clear: both;
		padding: 20px 20px 0;
		margin: 0;
	}
	
	.quickBknBox .optsContainer.qb_departure_opts .fromArrivalToDeparture {
		display: block;
		position: absolute;
		top: 50%;
		margin-top: 0;
	}
}
@media (min-width: 960px) {
	.quickBknBox .wrap {
		padding-right: 16.667%;
		padding-right: calc((100% + 40px) / 6);
		position: relative;
	}
	.quickBknBox .optsContainer {
		width: 25%;
	}
	.quickBknBox .optsContainer:nth-child(2n + 1) {
		clear: none;
		padding-left: 20px;
	}
	.quickBknBox .optsContainer:nth-child(4n + 1) {
		clear: left;
	}
	.quickBknBox .btnContainer {
		float: left;
		clear: none;
		width: 16.667%;
		position: absolute;
		right: 0;
		top: 0;
	}
	#content .leftContentCol .quickBknBox .wrap {
		padding-right: 0;
	}
	#content .leftContentCol .quickBknBox .optsContainer,
	#content .leftContentCol .quickBknBox .btnContainer {
		width: 100%;
		float: none;
	}
	#content .leftContentCol .quickBknBox .btnContainer {
		position: static;
	}
	#content .leftContentCol .quickBknBox .optsContainer.qb_departure_opts .fromArrivalToDeparture {
		display: none;
	}
}


/* Modul: EVENTS */
#datePicker .calWrap {
	position: relative;
}
#datePicker .calLoader {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	background: rgba(255,255,255,.8) url('../img/preloader_301_dark.gif') no-repeat 50% 50%;
}
.box #datePicker .calLoader {
	background-color: #e40033;
	background-color: rgba(228,0,51,.8);
}
#datePicker table {
	width: 100%;
	table-layout: fixed;
	line-height: 30px;
}
#datePicker table td {
	text-align: center;
}
#datePicker .calHead a {
	background: #cd002e;
	display: block;
	border-radius: 15px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	margin: 0 auto;
}
#datePicker .calHead a:hover {
	background: #389ec3;
}

#datePicker .calHead a .icon {
	display: block;
	font-size: 1rem;
}
#datePicker .calWeekdays {
	font-weight: bold;
	font-size: .667em;
}
#datePicker .calWeek span,
#datePicker .calWeek a {
	display: block;
	text-decoration: none;
	border-radius: 15px;
	height: 30px;
	width: 30px;
	line-height: 26px;
	margin: 0 auto;
	color: inherit;
	margin-bottom: 5px;
	font-size: .833em;
	text-align: center;
	border: 2px solid transparent;
}
#datePicker .calWeek a {
	border-color: #003f57;
	background: #003f57;
}
#datePicker .calWeek .event_1 a {
	background: #cd002e;
	border-color: #cd002e
}

#datePicker .calWeek .today {
	font-weight: 700;
}
#datePicker .calWeek .choosenDate span {
	border-color: #cd002e;
	background: none;
}
#datePicker .calWeek .choosenDate a,
#datePicker .calWeek a:hover,
#datePicker .calWeek a:hover,
#datePicker .calWeek a:hover {
	border-color: #389ec3;
	background: #389ec3;
	color: #fff;
}

.calForm {
	padding-top: 10px;
}
.eventsFilterMoreTrigger {
	position: relative;
	margin-top: 20px;
	font-weight: 700;
	font-size: .833em;
}

@media (min-width: 640px) and (max-width: 959px) {
	.eventsFilterMoreTrigger {
		display: none;
	}
	#datePicker {
		float: left;
		width: 50%;
		padding: 0 20px 0 0;
	}
	.calForm {
		padding: 0 0 0 20px;
		float: right;
		width: 50%;
		max-height: none !important;
	}
	.calForm .optsContainer:first-child {
		margin-top: 0;
	}
	.calForm + .formReset {
		float: left;
	}
}
@media (min-width: 960px) {
	#datePicker {
		margin-top: 10px;
	}
}

.eventListItem .eventInfo .headline {
	color: #003f57;
	margin: 0;
}
.eventListItem .eventInfo .moreBtn > :last-child {
	margin-bottom: 0;
}
.eventListItem .headline a {
	display: block;
	color: inherit;
}
.eventListItem .eventData,
.eventDetail .eventData {
	color: #c0a78f;
	margin-top: 0;
}
.eventListItem .eventData a,
.eventDetail .eventData a {
	color: inherit;
	text-decoration: none;
}
.eventDetail h1 + .eventData {
	margin-top: -10px;
}

@media (min-width: 720px) {
	.eventListItem .eventPreviewImg {
		display: block;
		width: 100px;
		height: 100px;
		border-radius: 50px;
	}
	.eventListItem.hasImg .eventInfo {
		padding-right: 120px;
		min-height: 100px;
	}
}

/* Modul: SHOP */
#cartTable .price {
	text-align:right;
}
#cartTable .priceAll {
	margin-top:5px;
	padding-top:5px;
	border-top:1px solid #fef2f5;
}
aside #cartTable {
	font-size:0.8em;
}
aside #cartTable .flex {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
aside #cartTable .flex + .flex {
	margin-top:5px;
	padding-top:5px;
	border-top:1px solid #f7b3c2;
}
aside #cartTable .flex > .count,
aside #cartTable .flex > .price {
	-webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
	width:50%;
}
aside #cartTable .flex > .info {
	-webkit-flex: 2 2 auto;
    -ms-flex: 2 2 auto;
    flex: 2 2 auto;
	width:100%;
}
aside #cartTable .flex > .count {
	order: 2;
}
aside #cartTable .flex > .info {
	order: 1;
}
aside #cartTable .flex > .price {
	order: 3;
}
aside #cartTable .count input {
	color:#fff;
}
aside #cartTable + .btnContainer {
	margin-top:20px;
}
@media (min-width: 480px) and (max-width: 959px) {
	aside #cartTable .flex {
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	aside #cartTable .flex > .count {
		order: 1;
		width:auto;
	}
	aside #cartTable .flex > .info {
		order: 2;
		padding:0 5px;
	}
	aside #cartTable .flex > .price {
		order: 3;
		width:auto;
	}
}
.offerForm {
	clear: both;
}
.offerForm .priceWrap {
	float:left;
	min-width:40%;
}
.offerForm .priceWrap .mwst {
	font-size:0.8em;
	padding-left:10px;
}

/* Modul: MAP */
#imap {
	margin: 0;
	padding-top: 70px;
	padding-top: calc(50px + 1.111em);
}
#imap .map_legend {
	position: absolute;
	top: 0;
	left: 0;
	max-height: 100%;
	padding-top: 60px;
	padding-top: calc(40px + 1.111em);
	margin: 0;
}
#imap .map_legend .slideDownTrigger {
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

/* ==========================================================================
   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;
    }
	.list .listItem,
	.gridWrap .articleGrid {
		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;
    }
	
	.hidden-print {
		display: none;
	}
}