/*! * mmenu.js * mmenujs.com * * Copyright (c) Fred Heusschen * frebsite.nl * * License: CC-BY-NC-4.0 * http://creativecommons.org/licenses/by-nc/4.0/ */
.mm-menu_theme-white {
	--mm-color-border: rgba( 0,0,0, 0.1 );
	--mm-color-button: rgba( 0,0,0, 0.3 );
	--mm-color-text: rgba( 0,0,0, 0.7 );
	--mm-color-text-dimmed: rgba( 0,0,0, 0.3 );
	--mm-color-background: #fff;
	--mm-color-background-highlight: rgba( 0,0,0, 0.06 );
	--mm-color-background-emphasis: rgba( 0,0,0, 0.03 );
	--mm-shadow: 0 0 10px rgba( 0,0,0, 0.2 )
}

.mm-menu_theme-dark {
	--mm-color-border: rgba( 0,0,0, 0.3 );
	--mm-color-button: rgba( 255,255,255, 0.4 );
	--mm-color-text: rgba( 255,255,255, 0.85 );
	--mm-color-text-dimmed: rgba( 255,255,255, 0.4 );
	--mm-color-background: #333;
	--mm-color-background-highlight: rgba( 255,255,255, 0.08 );
	--mm-color-background-emphasis: rgba( 0,0,0, 0.1 );
	--mm-shadow: 0 0 20px rgba( 0,0,0, 0.5 )
}

.mm-menu_theme-black {
	--mm-color-border: rgba( 255,255,255, 0.25 );
	--mm-color-button: rgba( 255,255,255, 0.4 );
	--mm-color-text: rgba( 255,255,255, 0.75 );
	--mm-color-text-dimmed: rgba( 255,255,255, 0.4 );
	--mm-color-background: #000;
	--mm-color-background-highlight: rgba( 255,255,255, 0.2 );
	--mm-color-background-emphasis: rgba( 255,255,255, 0.15 );
	--mm-shadow: none
}

:root {
	--mm-line-height: 20px;
	--mm-listitem-size: 44px;
	--mm-navbar-size: 44px;
	--mm-offset-top: 0;
	--mm-offset-right: 0;
	--mm-offset-bottom: 0;
	--mm-offset-left: 0;
	--mm-color-border: rgba(0, 0, 0, 0.1);
	--mm-color-button: rgba(0, 0, 0, 0.3);
	--mm-color-text: rgba(0, 0, 0, 0.75);
	--mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
	--mm-color-background: #f3f3f3;
	--mm-color-background-highlight: rgba(0, 0, 0, 0.05);
	--mm-color-background-emphasis: rgba(255, 255, 255, 0.4);
	--mm-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}

.mm-hidden {
	display: none
}

.mm-wrapper {
	overflow-x: hidden;
	position: relative
}

.mm-menu {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #f3f3f3;
	border-color: rgba(0,0,0,.1);
	color: rgba(0,0,0,.75);
	line-height: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: var(--mm-offset-top);
	right: var(--mm-offset-right);
	bottom: var(--mm-offset-bottom);
	left: var(--mm-offset-left);
	z-index: 0;
	background: var(--mm-color-background);
	border-color: var(--mm-color-border);
	color: var(--mm-color-text);
	line-height: var(--mm-line-height);
	-webkit-tap-highlight-color: var(--mm-color-background-emphasis);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
	text-decoration: none;
	color: inherit
}

[dir=rtl] .mm-menu {
	direction: rtl
}

.mm-panel {
	background: #f3f3f3;
	border-color: rgba(0,0,0,.1);
	color: rgba(0,0,0,.75);
	z-index: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	overflow-scrolling: touch;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	background: var(--mm-color-background);
	border-color: var(--mm-color-border);
	color: var(--mm-color-text);
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-panel:after {
	height: 44px
}

.mm-panel:not(.mm-hidden) {
	display: block
}

.mm-panel:after {
	content: '';
	display: block;
	height: var(--mm-listitem-size)
}

.mm-panel_opened {
	z-index: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-panel_opened-parent {
	-webkit-transform: translate3d(-30%,0,0);
	transform: translate3d(-30%,0,0)
}

.mm-panel_highest {
	z-index: 2
}

.mm-panel_noanimation {
	-webkit-transition: none;
	-o-transition: none;
	transition: none
}

.mm-panel_noanimation.mm-panel_opened-parent {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-panels>.mm-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0
}

.mm-panel__content {
	padding: 20px 20px 0
}

.mm-panels {
	background: #f3f3f3;
	border-color: rgba(0,0,0,.1);
	color: rgba(0,0,0,.75);
	position: relative;
	height: 100%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	overflow: hidden;
	background: var(--mm-color-background);
	border-color: var(--mm-color-border);
	color: var(--mm-color-text)
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0)
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
	-webkit-transform: translate3d(30%,0,0);
	transform: translate3d(30%,0,0)
}

.mm-listitem_vertical>.mm-panel {
	display: none;
	width: 100%;
	padding: 10px 0 10px 10px;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none
}

.mm-listitem_vertical>.mm-panel:after, .mm-listitem_vertical>.mm-panel:before {
	content: none;
	display: none
}

.mm-listitem_opened>.mm-panel {
	display: block
}

.mm-listitem_vertical>.mm-listitem__btn {
	height: 44px;
	height: var(--mm-listitem-size);
	bottom: auto
}

.mm-listitem_vertical .mm-listitem:last-child:after {
	border-color: transparent
}

.mm-listitem_opened>.mm-listitem__btn:after {
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
	right: 19px
}

.mm-btn {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 50px;
	padding: 0
}

.mm-btn:after, .mm-btn:before {
	border: 2px solid rgba(0,0,0,.3);
	border: 2px solid var(--mm-color-button)
}

.mm-btn_next:after, .mm-btn_prev:before {
	content: '';
	border-bottom: none;
	border-right: none;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	width: 8px;
	height: 8px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0
}

.mm-btn_prev:before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 23px;
	right: auto
}

.mm-btn_next:after {
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	right: 23px;
	left: auto
}

.mm-btn_close:after, .mm-btn_close:before {
	content: '';
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	width: 5px;
	height: 5px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.mm-btn_close:before {
	border-right: none;
	border-bottom: none;
	right: 18px
}

.mm-btn_close:after {
	border-left: none;
	border-top: none;
	right: 25px
}

[dir=rtl] .mm-btn_next:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 23px;
	right: auto
}

[dir=rtl] .mm-btn_prev:before {
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	right: 23px;
	left: auto
}

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
	right: auto
}

[dir=rtl] .mm-btn_close:before {
	left: 25px
}

[dir=rtl] .mm-btn_close:after {
	left: 18px
}

.mm-navbar {
	min-height: 44px;
	border-bottom: 1px solid rgba(0,0,0,.1);
	background: #f3f3f3;
	color: rgba(0,0,0,.3);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: var(--mm-navbar-size);
	border-bottom: 1px solid var(--mm-color-border);
	background: var(--mm-color-background);
	color: var(--mm-color-text-dimmed);
	text-align: center;
	opacity: 1;
	-webkit-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease
}

.mm-navbar>* {
	min-height: 44px
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
.mm-navbar_sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1
}

}

.mm-navbar>* {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.mm-navbar__btn {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0
}

.mm-navbar__title {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 20px;
	padding-right: 20px;
	overflow: hidden
}

.mm-navbar__title:not(:last-child) {
	padding-right: 0
}

.mm-navbar__title>span {
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}

.mm-navbar__btn:not(.mm-hidden)+.mm-navbar__title {
	padding-left: 0
}

.mm-navbar__btn:not(.mm-hidden)+.mm-navbar__title:last-child {
	padding-right: 50px
}

[dir=rtl] .mm-navbar {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse
}

.mm-listview {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0
}

.mm-listitem {
	color: rgba(0,0,0,.75);
	border-color: rgba(0,0,0,.1);
	color: var(--mm-color-text);
	border-color: var(--mm-color-border);
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.mm-listitem:after {
	content: '';
	border-color: inherit;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	display: block;
	position: absolute;
	left: 20px;
	right: 0;
	bottom: 0
}

.mm-listitem a, .mm-listitem a:hover {
	text-decoration: none
}

.mm-listitem__btn, .mm-listitem__text {
	padding: 12px;
	display: block;
	padding: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
	padding-left: 0;
	padding-right: 0;
	color: inherit
}

.mm-listitem__text {
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 10%;
	flex-basis: 10%
}

.mm-listitem__btn {
	background: rgba(3,2,1,0);
	border-color: inherit;
	width: auto;
	padding-right: 50px;
	position: relative
}

.mm-listitem__btn:not(.mm-listitem__text) {
	border-left-width: 1px;
	border-left-style: solid
}

.mm-listitem_selected>.mm-listitem__text {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis)
}

.mm-listitem_opened>.mm-listitem__btn, .mm-listitem_opened>.mm-panel {
	background: rgba(0,0,0,.05);
	background: var(--mm-color-background-highlight)
}

[dir=rtl] .mm-listitem:after {
	left: 0;
	right: 20px
}

[dir=rtl] .mm-listitem__text {
	padding-left: 10px;
	padding-right: 20px
}

[dir=rtl] .mm-listitem__btn {
	padding-left: 50px;
	border-left-width: 0;
	border-left-style: none
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
	padding-right: 0;
	border-right-width: 1px;
	border-right-style: solid
}

.mm-page {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative
}

.mm-slideout {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	z-index: 1
}

.mm-wrapper_opened {
	overflow-x: hidden;
	position: relative
}

.mm-wrapper_opened .mm-page {
	min-height: 100vh
}

.mm-wrapper_background .mm-page {
	background: inherit
}

.mm-menu_offcanvas {
	position: fixed;
	right: auto;
	z-index: 0
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
	display: none
}

.mm-menu_offcanvas {
	width: 80%;
	min-width: 240px;
	max-width: 440px
}

.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
	-webkit-transform: translate3d(80vw,0,0);
	transform: translate3d(80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
	-webkit-transform: translate3d(240px,0,0);
	transform: translate3d(240px,0,0)
}

}

@media all and (min-width:550px) {
.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
	-webkit-transform: translate3d(440px,0,0);
	transform: translate3d(440px,0,0)
}

}

.mm-wrapper__blocker {
	background: rgba(3,2,1,0);
	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2
}

.mm-wrapper_blocking {
	overflow: hidden
}

.mm-wrapper_blocking body {
	overflow: hidden
}

.mm-wrapper_blocking .mm-wrapper__blocker {
	display: block
}

.mm-sronly {
	border: 0;
	clip: rect(1px,1px,1px,1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	white-space: nowrap;
	width: 1px;
	min-width: 1px;
	height: 1px;
	min-height: 1px;
	padding: 0;
	overflow: hidden;
	position: absolute
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
	position: relative
}

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
	max-height: 80%
}

.mm-menu_autoheight-measuring .mm-panel {
	display: block
}

.mm-menu_autoheight-measuring .mm-panels>.mm-panel {
	bottom: auto;
	height: auto
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
	display: none
}

[class*=mm-menu_columns-] {
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel {
	right: auto;
	-webkit-transition-property: width, -webkit-transform;
	transition-property: width, -webkit-transform;
	-o-transition-property: width, transform;
	transition-property: width, transform;
	transition-property: width, transform, -webkit-transform
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened, [class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent {
	display: block
}

[class*=mm-panel_columns-] {
	border-right: 1px solid;
	border-color: inherit
}

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
	border-right: none
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-menu_columns-0 .mm-panels>.mm-panel {
	z-index: 0
}

.mm-menu_columns-0 .mm-panels>.mm-panel else {
	width: 100%
}

.mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0)
}

.mm-menu_columns-0 {
	width: 80%;
	min-width: 240px;
	max-width: 0
}

.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
	-webkit-transform: translate3d(80vw,0,0);
	transform: translate3d(80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
	-webkit-transform: translate3d(240px,0,0);
	transform: translate3d(240px,0,0)
}

}

@media all and (min-width:0px) {
.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-80vw,0,0);
	transform: translate3d(-80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-240px,0,0);
	transform: translate3d(-240px,0,0)
}

}

@media all and (min-width:0px) {
.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1 {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0)
}

.mm-menu_columns-1 .mm-panels>.mm-panel {
	z-index: 1;
	width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel else {
	width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
	-webkit-transform: translate3d(200%,0,0);
	transform: translate3d(200%,0,0)
}

.mm-menu_columns-1 {
	width: 80%;
	min-width: 240px;
	max-width: 440px
}

.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
	-webkit-transform: translate3d(80vw,0,0);
	transform: translate3d(80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
	-webkit-transform: translate3d(240px,0,0);
	transform: translate3d(240px,0,0)
}

}

@media all and (min-width:550px) {
.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
	-webkit-transform: translate3d(440px,0,0);
	transform: translate3d(440px,0,0)
}

}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-80vw,0,0);
	transform: translate3d(-80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-240px,0,0);
	transform: translate3d(-240px,0,0)
}

}

@media all and (min-width:550px) {
.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-440px,0,0);
	transform: translate3d(-440px,0,0)
}

}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2 {
	-webkit-transform: translate3d(200%,0,0);
	transform: translate3d(200%,0,0)
}

.mm-menu_columns-2 .mm-panels>.mm-panel {
	z-index: 2;
	width: 50%
}

.mm-menu_columns-2 .mm-panels>.mm-panel else {
	width: 100%
}

.mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
	-webkit-transform: translate3d(300%,0,0);
	transform: translate3d(300%,0,0)
}

.mm-menu_columns-2 {
	width: 80%;
	min-width: 240px;
	max-width: 880px
}

.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
	-webkit-transform: translate3d(80vw,0,0);
	transform: translate3d(80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
	-webkit-transform: translate3d(240px,0,0);
	transform: translate3d(240px,0,0)
}

}

@media all and (min-width:1100px) {
.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
	-webkit-transform: translate3d(880px,0,0);
	transform: translate3d(880px,0,0)
}

}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-80vw,0,0);
	transform: translate3d(-80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-240px,0,0);
	transform: translate3d(-240px,0,0)
}

}

@media all and (min-width:1100px) {
.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-880px,0,0);
	transform: translate3d(-880px,0,0)
}

}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3 {
	-webkit-transform: translate3d(300%,0,0);
	transform: translate3d(300%,0,0)
}

.mm-menu_columns-3 .mm-panels>.mm-panel {
	z-index: 3;
	width: 33.34%
}

.mm-menu_columns-3 .mm-panels>.mm-panel else {
	width: 100%
}

.mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
	-webkit-transform: translate3d(400%,0,0);
	transform: translate3d(400%,0,0)
}

.mm-menu_columns-3 {
	width: 80%;
	min-width: 240px;
	max-width: 1320px
}

.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
	-webkit-transform: translate3d(80vw,0,0);
	transform: translate3d(80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
	-webkit-transform: translate3d(240px,0,0);
	transform: translate3d(240px,0,0)
}

}

@media all and (min-width:1650px) {
.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
	-webkit-transform: translate3d(1320px,0,0);
	transform: translate3d(1320px,0,0)
}

}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-80vw,0,0);
	transform: translate3d(-80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-240px,0,0);
	transform: translate3d(-240px,0,0)
}

}

@media all and (min-width:1650px) {
.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-1320px,0,0);
	transform: translate3d(-1320px,0,0)
}

}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4 {
	-webkit-transform: translate3d(400%,0,0);
	transform: translate3d(400%,0,0)
}

.mm-menu_columns-4 .mm-panels>.mm-panel {
	z-index: 4;
	width: 25%
}

.mm-menu_columns-4 .mm-panels>.mm-panel else {
	width: 100%
}

.mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
	-webkit-transform: translate3d(500%,0,0);
	transform: translate3d(500%,0,0)
}

.mm-menu_columns-4 {
	width: 80%;
	min-width: 240px;
	max-width: 1760px
}

.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
	-webkit-transform: translate3d(80vw,0,0);
	transform: translate3d(80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
	-webkit-transform: translate3d(240px,0,0);
	transform: translate3d(240px,0,0)
}

}

@media all and (min-width:2200px) {
.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
	-webkit-transform: translate3d(1760px,0,0);
	transform: translate3d(1760px,0,0)
}

}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-80vw,0,0);
	transform: translate3d(-80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-240px,0,0);
	transform: translate3d(-240px,0,0)
}

}

@media all and (min-width:2200px) {
.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-1760px,0,0);
	transform: translate3d(-1760px,0,0)
}

}

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
	width: 100%;
	max-width: 100%;
	min-width: 100%
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
	-webkit-transition-property: width, min-width, max-width, -webkit-transform;
	transition-property: width, min-width, max-width, -webkit-transform;
	-o-transition-property: width, min-width, max-width, transform;
	transition-property: width, min-width, max-width, transform;
	transition-property: width, min-width, max-width, transform, -webkit-transform
}

.mm-counter {
	color: rgba(0,0,0,.3);
	display: block;
	padding-left: 20px;
	float: right;
	text-align: right;
	color: var(--mm-color-text-dimmed)
}

.mm-listitem_nosubitems>.mm-counter {
	display: none
}

[dir=rtl] .mm-counter {
	text-align: left;
	float: left;
	padding-left: 0;
	padding-right: 20px
}

.mm-divider {
	position: relative;
	min-height: 20px;
	padding: 4.3px;
	background: #f3f3f3;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	min-height: var(--mm-line-height);
	padding: calc(((var(--mm-listitem-size) * .65) - var(--mm-line-height)) * .5);
	padding-right: 10px;
	padding-left: 20px;
	font-size: 75%;
	text-transform: uppercase;
	background: var(--mm-color-background);
	opacity: 1;
	-webkit-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease
}

.mm-divider:before {
	background: rgba(0,0,0,.05)
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
.mm-divider {
	position: -webkit-sticky;
	position: sticky;
	z-index: 2;
	top: 0
}

.mm-navbar_sticky:not(.mm-hidden)~.mm-listview .mm-divider {
	top: var(--mm-navbar-size)
}

}

.mm-divider:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--mm-color-background-highlight)
}

.mm-wrapper_dragging .mm-menu, .mm-wrapper_dragging .mm-slideout {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.mm-wrapper_dragging .mm-menu {
	pointer-events: none
}

.mm-wrapper_dragging .mm-wrapper__blocker {
	display: none
}

.mm-menu_dropdown {
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	height: 80%
}

.mm-wrapper_dropdown .mm-slideout {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	z-index: 0
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	z-index: 1
}

.mm-wrapper_dropdown .mm-menu_dropdown {
	z-index: 2
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
	display: none
}

.mm-menu_tip-bottom:before, .mm-menu_tip-left:before, .mm-menu_tip-right:before, .mm-menu_tip-top:before {
	content: '';
	background: inherit;
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	z-index: -1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.mm-menu_tip-left:before {
	left: 22px
}

.mm-menu_tip-right:before {
	right: 22px
}

.mm-menu_tip-top:before {
	top: -8px
}

.mm-menu_tip-bottom:before {
	bottom: -8px
}

:root {
	--mm-iconbar-size: 50px
}

.mm-menu_iconbar-left .mm-navbars_bottom, .mm-menu_iconbar-left .mm-navbars_top, .mm-menu_iconbar-left .mm-panels {
	margin-left: 50px;
	margin-left: var(--mm-iconbar-size)
}

.mm-menu_iconbar-left .mm-iconbar {
	border-right-width: 1px;
	display: block;
	left: 0
}

.mm-menu_iconbar-right .mm-navbars_bottom, .mm-menu_iconbar-right .mm-navbars_top, .mm-menu_iconbar-right .mm-panels {
	margin-right: 50px;
	margin-right: var(--mm-iconbar-size)
}

.mm-menu_iconbar-right .mm-iconbar {
	border-left-width: 1px;
	display: block;
	right: 0
}

.mm-iconbar {
	width: 50px;
	border-color: rgba(0,0,0,.1);
	background: #f3f3f3;
	color: rgba(0,0,0,.3);
	display: none;
	width: var(--mm-iconbar-size);
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	border: 0 solid;
	border-color: var(--mm-color-border);
	background: var(--mm-color-background);
	color: var(--mm-color-text-dimmed);
	text-align: center
}

.mm-iconbar__bottom, .mm-iconbar__top {
	width: inherit;
	position: absolute
}

.mm-iconbar__bottom>*, .mm-iconbar__top>* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	padding: 12.5px 0
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
	text-decoration: none
}

.mm-iconbar__top {
	top: 0
}

.mm-iconbar__bottom {
	bottom: 0
}

.mm-iconbar__tab_selected {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis)
}

:root {
	--mm-iconpanel-size: 50px
}

.mm-panel_iconpanel-1 {
	width: calc(100% - 50px);
	width: calc(100% - (var(--mm-iconpanel-size) * 1))
}

.mm-panel_iconpanel-2 {
	width: calc(100% - 100px);
	width: calc(100% - (var(--mm-iconpanel-size) * 2))
}

.mm-panel_iconpanel-3 {
	width: calc(100% - 150px);
	width: calc(100% - (var(--mm-iconpanel-size) * 3))
}

.mm-panel_iconpanel-first~.mm-panel {
	width: calc(100% - 50px);
	width: calc(100% - var(--mm-iconpanel-size))
}

.mm-menu_iconpanel .mm-panels>.mm-panel {
	left: auto;
	-webkit-transition-property: width, -webkit-transform;
	transition-property: width, -webkit-transform;
	-o-transition-property: transform, width;
	transition-property: transform, width;
	transition-property: transform, width, -webkit-transform
}

.mm-menu_iconpanel .mm-panels>.mm-panel_opened, .mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent {
	display: block
}

.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent {
	overflow-y: hidden;
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset
}

.mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
	border-left-width: 1px;
	border-left-style: solid
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
	opacity: 0
}

.mm-panel__blocker {
	background: inherit;
	opacity: 0;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 3;
	-webkit-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease
}

.mm-panel_opened-parent .mm-panel__blocker {
	opacity: .6;
	bottom: -100000px
}

[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel {
	left: 0;
	right: auto;
	-webkit-transition-property: width, -webkit-transform;
	transition-property: width, -webkit-transform;
	-o-transition-property: transform, width;
	transition-property: transform, width;
	transition-property: transform, width, -webkit-transform
}

[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
	border-left: none;
	border-right: 1px solid;
	border-color: inherit
}

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis);
	outline: 0
}

.mm-wrapper__blocker .mm-tabstart {
	cursor: default;
	display: block;
	width: 100%;
	height: 100%
}

.mm-wrapper__blocker .mm-tabend {
	opacity: 0;
	position: absolute;
	bottom: 0
}

.mm-navbars_top {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.mm-navbars_top .mm-navbar:not(:last-child) {
	border-bottom: none
}

.mm-navbars_bottom {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.mm-navbars_bottom .mm-navbar {
	border-bottom: none
}

.mm-navbars_bottom .mm-navbar:first-child {
	border-top: 1px solid rgba(0,0,0,.1);
	border-top: 1px solid var(--mm-color-border)
}

.mm-btn:not(.mm-hidden)+.mm-navbar__searchfield .mm-searchfield__input {
	padding-left: 0
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
	padding-right: 0
}

.mm-navbar__breadcrumbs {
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0 20px;
	overflow-x: auto;
}

.mm-navbar__breadcrumbs>* {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-right: 6px
}

.mm-navbar__breadcrumbs>a {
	text-decoration: underline
}

.mm-navbar__breadcrumbs:not(:last-child) {
	padding-right: 0
}

.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs {
	padding-left: 0
}

.mm-navbar_tabs>* {
	padding: 0 10px;
	border: 1px solid transparent
}

.mm-navbar__tab_selected {
	background: #f3f3f3;
	color: rgba(0,0,0,.75);
	background: var(--mm-color-background);
	color: var(--mm-color-text)
}

.mm-navbar__tab_selected:not(:first-child) {
	border-left-color: rgba(0,0,0,.1)
}

.mm-navbar__tab_selected:not(:last-child) {
	border-right-color: rgba(0,0,0,.1)
}

.mm-navbar__tab_selected:not(:first-child) {
	border-left-color: var(--mm-color-border)
}

.mm-navbar__tab_selected:not(:last-child) {
	border-right-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar_tabs {
	border-bottom: none
}

.mm-navbars_top .mm-navbar_tabs>* {
	border-bottom-color: rgba(0,0,0,.1);
	border-bottom-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar__tab_selected {
	border-top-color: rgba(0,0,0,.1);
	border-top-color: var(--mm-color-border);
	border-bottom-color: transparent
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis)
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar {
	background: #f3f3f3;
	background: var(--mm-color-background)
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
	border-top: none
}

.mm-navbars_bottom .mm-navbar_tabs>* {
	border-top-color: rgba(0,0,0,.1);
	border-top-color: var(--mm-color-border)
}

.mm-navbars_bottom .mm-navbar__tab_selected {
	border-bottom-color: rgba(0,0,0,.1);
	border-bottom-color: var(--mm-color-border);
	border-top-color: transparent
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
	background: #f3f3f3;
	background: var(--mm-color-background)
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis)
}

.mm-searchfield {
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: var(--mm-navbar-size);
	padding: 0;
	overflow: hidden
}

.mm-searchfield input {
	height: 30.8px;
	line-height: 30.8px
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
	background: rgba(0,0,0,.05);
	color: rgba(0,0,0,.75)
}

.mm-searchfield input {
	display: block;
	width: 100%;
	max-width: 100%;
	height: calc(var(--mm-navbar-size) * .7);
	min-height: unset;
	max-height: unset;
	margin: 0;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	border-radius: 4px;
	line-height: calc(var(--mm-navbar-size) * .7);
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
	font: inherit;
	font-size: inherit
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
	background: var(--mm-color-background-highlight);
	color: var(--mm-color-text)
}

.mm-searchfield input::-ms-clear {
	display: none
}

.mm-searchfield__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.mm-panel__noresultsmsg {
	color: rgba(0,0,0,.3);
	padding: 50px 0;
	color: var(--mm-color-text-dimmed);
	text-align: center;
	font-size: 150%
}

.mm-searchfield__btn {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0
}

.mm-panel_search {
	left: 0;
	right: 0;
	width: 100%;
	border-left: none
}

.mm-searchfield__cancel {
	line-height: 44px;
	display: block;
	padding-right: 10px;
	margin-right: -100px;
	line-height: var(--mm-navbar-size);
	text-decoration: none;
	-webkit-transition: margin .4s ease;
	-o-transition: margin .4s ease;
	transition: margin .4s ease
}

.mm-searchfield__cancel-active {
	margin-right: 0
}

.mm-listitem_nosubitems>.mm-listitem__btn {
	display: none
}

.mm-listitem_nosubitems>.mm-listitem__text {
	padding-right: 10px
}

.mm-listitem_onlysubitems>.mm-listitem__text:not(.mm-listitem__btn) {
	z-index: -1;
	pointer-events: none
}

.mm-sectionindexer {
	background: inherit;
	text-align: center;
	font-size: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -20px;
	z-index: 5;
	-webkit-transition: right .4s ease;
	-o-transition: right .4s ease;
	transition: right .4s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly
}

.mm-sectionindexer a {
	color: rgba(0,0,0,.3);
	color: var(--mm-color-text-dimmed);
	line-height: 1;
	text-decoration: none;
	display: block
}

.mm-sectionindexer~.mm-panel {
	padding-right: 0
}

.mm-sectionindexer_active {
	right: 0
}

.mm-sectionindexer_active~.mm-panel {
	padding-right: 20px
}

.mm-menu_selected-hover .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem__text, .mm-menu_selected-parent .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem__text {
	-webkit-transition: background-color .4s ease;
	-o-transition: background-color .4s ease;
	transition: background-color .4s ease
}

.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>.mm-listitem__text {
	background: 0 0
}

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis)
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>.mm-listitem__text {
	background: 0 0
}

.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__text {
	background: rgba(255,255,255,.4);
	background: var(--mm-color-background-emphasis)
}

:root {
	--mm-sidebar-collapsed-size: 50px;
	--mm-sidebar-expanded-size: 440px
}

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
	position: relative
}

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
	-webkit-transition-property: width, -webkit-transform;
	transition-property: width, -webkit-transform;
	-o-transition-property: width, transform;
	transition-property: width, transform;
	transition-property: width, transform, -webkit-transform
}

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
	background: inherit;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 100vh
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	top: 0;
	right: auto;
	bottom: 0;
	left: 0
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
	width: calc(100% - 50px);
	-webkit-transform: translate3d(50px,0,0);
	transform: translate3d(50px,0,0);
	width: calc(100% - var(--mm-sidebar-collapsed-size));
	-webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
	transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0)
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
	opacity: 0
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
	width: 440px;
	width: var(--mm-sidebar-expanded-size);
	min-width: 0;
	max-width: 100000px;
	border-right-width: 1px;
	border-right-style: solid
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
	content: none;
	display: none
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
	overflow: visible
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
	display: none
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout {
	width: calc(100% - 440px);
	-webkit-transform: translate3d(440px,0,0);
	transform: translate3d(440px,0,0);
	width: calc(100% - var(--mm-sidebar-expanded-size));
	-webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
	transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0)
}

.mm-menu__blocker {
	background: rgba(3,2,1,0);
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3
}

.mm-menu_opened .mm-menu__blocker {
	display: none
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

input.mm-toggle {
	margin-top: 5px;
	background: rgba(0,0,0,.1);
	display: inline-block;
	min-width: 58px;
	width: 58px;
	height: 34px;
	margin: 0 10px;
	margin-top: calc((var(--mm-listitem-size) - 34px)/ 2);
	border: none;
	background: var(--mm-color-border);
	border-radius: 34px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease
}

input.mm-toggle:before {
	background: #f3f3f3
}

input.mm-toggle:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	margin: 1px;
	border-radius: 34px;
	background: var(--mm-color-background);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	-o-transition: transform .2s ease;
	transition: transform .2s ease;
	transition: transform .2s ease, -webkit-transform .2s ease
}

input.mm-toggle:checked {
	background: #4bd963
}

input.mm-toggle:checked:before {
	-webkit-transform: translateX(24px);
	-ms-transform: translateX(24px);
	transform: translateX(24px)
}

input.mm-check {
	margin-top: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	background: 0 0;
	cursor: pointer;
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 10px;
	margin-top: calc((var(--mm-listitem-size) - 40px)/ 2)
}

input.mm-check:before {
	content: '';
	display: block;
	width: 40%;
	height: 20%;
	margin: 25% 0 0 20%;
	border-left: 3px solid;
	border-bottom: 3px solid;
	border-color: var(--mm-color-text);
	opacity: .3;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease
}

input.mm-check:checked:before {
	opacity: 1
}

[dir=rtl] input.mm-toggle:checked~label.mm-toggle:before {
	float: left
}

.mm-menu_border-none .mm-listitem:after {
	content: none
}

.mm-menu_border-full .mm-listitem:after {
	left: 0
}

.mm-menu_fx-menu-slide {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
	-webkit-transform: translate3d(-30%,0,0);
	transform: translate3d(-30%,0,0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
	-webkit-transform: translate3d(30%,0,0);
	transform: translate3d(30%,0,0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
	-webkit-transition-property: none;
	-o-transition-property: none;
	transition-property: none
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0)
}

.mm-menu_fullscreen {
	width: 100%;
	min-width: 140px;
	max-width: 10000px
}

.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
	-webkit-transform: translate3d(100vw,0,0);
	transform: translate3d(100vw,0,0)
}

@media all and (max-width:140px) {
.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
	-webkit-transform: translate3d(140px,0,0);
	transform: translate3d(140px,0,0)
}

}

@media all and (min-width:10000px) {
.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
	-webkit-transform: translate3d(10000px,0,0);
	transform: translate3d(10000px,0,0)
}

}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-100vw,0,0);
	transform: translate3d(-100vw,0,0)
}

@media all and (max-width:140px) {
.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-140px,0,0);
	transform: translate3d(-140px,0,0)
}

}

@media all and (min-width:10000px) {
.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-10000px,0,0);
	transform: translate3d(-10000px,0,0)
}

}

.mm-menu_fullscreen.mm-menu_position-top {
	height: 100vh;
	min-height: 140px;
	max-height: 10000px
}

.mm-menu_fullscreen.mm-menu_position-bottom {
	height: 100vh;
	min-height: 140px;
	max-height: 10000px
}

.mm-menu_listview-justify .mm-panels>.mm-panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.mm-menu_listview-justify .mm-panels>.mm-panel:after {
	content: none;
	display: none
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	margin-top: 0;
	margin-bottom: 0
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	min-height: 50px
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.mm-listview_inset {
	list-style: inside disc;
	width: 100%;
	padding: 0 30px 15px 30px;
	margin: 0
}

.mm-listview_inset .mm-listitem {
	padding: 5px 0
}

.mm-menu_multiline .mm-listitem__text {
	-o-text-overflow: clip;
	text-overflow: clip;
	white-space: normal
}

[class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker {
	opacity: 0
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker {
	opacity: .3;
	-webkit-transition: opacity .4s ease .4s;
	-o-transition: opacity .4s ease .4s;
	transition: opacity .4s ease .4s
}

.mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker {
	background: inherit
}

.mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker {
	background: #000
}

.mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker {
	background: #fff
}

.mm-menu_popup {
	-webkit-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease;
	opacity: 0;
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	height: 80%;
	min-height: 140px;
	max-height: 880px;
	top: 50%;
	left: 50%;
	bottom: auto;
	right: auto;
	z-index: 2;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0)
}

.mm-menu_popup.mm-menu_opened~.mm-slideout {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	z-index: 0
}

.mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	z-index: 1
}

.mm-wrapper_opening .mm-menu_popup {
	opacity: 1
}

.mm-menu_position-right {
	left: auto;
	right: 0
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-80vw,0,0);
	transform: translate3d(-80vw,0,0)
}

@media all and (max-width:300px) {
.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-240px,0,0);
	transform: translate3d(-240px,0,0)
}

}

@media all and (min-width:550px) {
.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
	-webkit-transform: translate3d(-440px,0,0);
	transform: translate3d(-440px,0,0)
}

}

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
	z-index: 2
}

.mm-menu_position-bottom.mm-menu_opened~.mm-slideout, .mm-menu_position-front.mm-menu_opened~.mm-slideout, .mm-menu_position-top.mm-menu_opened~.mm-slideout {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	z-index: 0
}

.mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker {
	z-index: 1
}

.mm-menu_position-front {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0)
}

.mm-menu_position-front.mm-menu_position-right {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0)
}

.mm-menu_position-bottom, .mm-menu_position-top {
	width: 100%;
	min-width: 100%;
	max-width: 100%
}

.mm-menu_position-top {
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0)
}

.mm-menu_position-top {
	height: 80vh;
	min-height: 140px;
	max-height: 880px
}

.mm-menu_position-bottom {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	top: auto
}

.mm-menu_position-bottom {
	height: 80vh;
	min-height: 140px;
	max-height: 880px
}

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.mm-menu_shadow-page:after {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	content: '';
	display: block;
	width: 20px;
	height: 120%;
	position: absolute;
	left: 100%;
	top: -10%;
	z-index: 100;
	-webkit-clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%);
	clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%);
	-webkit-box-shadow: var(--mm-shadow);
	box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-page.mm-menu_position-right:after {
	left: auto;
	right: 100%;
	-webkit-clip-path: polygon(20px 0,40px 0,40px 100%,20px 100%);
	clip-path: polygon(20px 0,40px 0,40px 100%,20px 100%)
}

.mm-menu_shadow-page.mm-menu_position-front:after {
	content: none;
	display: none
}

.mm-menu_shadow-menu {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	-webkit-box-shadow: var(--mm-shadow);
	box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-panels .mm-panels>.mm-panel {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	-webkit-box-shadow: var(--mm-shadow);
	box-shadow: var(--mm-shadow)
}

.mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
	margin: 0
}

.mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
	content: '';
	display: block;
	clear: both
}

.mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
	padding: 0;
	float: left;
	position: relative;
	width: 50%;
	height: 0;
	padding-top: 50%
}

.mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
	left: 0;
	top: 0;
	border-right-width: 1px;
	border-right-style: solid;
	z-index: -1
}

.mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
	width: 12.5%;
	padding-top: 12.5%
}

.mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
	width: 25%;
	padding-top: 25%
}

.mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
	width: 75%;
	padding-top: 75%
}

.mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
	width: 100%;
	padding-top: 100%
}

.mm-menu_tileview .mm-listitem__text, .mm-panel_tileview .mm-listitem__text {
	line-height: 1px;
	text-align: center;
	padding: 50% 10px 0 10px;
	margin: 0;
	position: absolute;
	top: 0;
	right: 1px;
	bottom: 1px;
	left: 0
}

.mm-menu_tileview .mm-listitem__btn, .mm-panel_tileview .mm-listitem__btn {
	width: auto
}

.mm-menu_tileview .mm-listitem__btn:after, .mm-menu_tileview .mm-listitem__btn:before, .mm-panel_tileview .mm-listitem__btn:after, .mm-panel_tileview .mm-listitem__btn:before {
	content: none;
	display: none
}

.mm-menu_tileview .mm-divider, .mm-panel_tileview .mm-divider {
	display: none
}

.mm-menu_tileview .mm-panel, .mm-panel_tileview {
	padding-left: 0;
	padding-right: 0
}

.mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
	content: none;
	display: none
}

body.modal-open .mm-slideout {
	z-index: unset
}


#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
.invisible{border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px}.mod_box{overflow: hidden}.rs-columns{overflow: hidden}.clear,#clear{height: 0.1px;font-size: 0.1px;line-height: 0.1px;clear: both}#container:after,.custom:after{content: "";display: table;clear: both}.invisible{border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px}.mod_box{overflow: hidden}.rs-columns{overflow: hidden}.clear,#clear{height: 0.1px;font-size: 0.1px;line-height: 0.1px;clear: both}#container:after,.custom:after{content: "";display: table;clear: both}*{margin: 0}:focus{outline: 0}body,html{margin: 0;padding: 0;height: 100%}body{font-family: 'Poppins', sans-serif;font-size: 1rem;line-height: 1.4;color: #565658;background-color: #fff;-webkit-text-size-adjust: 100%}img{display: block}a,.toggler{color: #b71c1c;text-decoration: none;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}a:hover,.toggler:hover{color: #505050;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}a.email,.toggler.email{white-space: nowrap}.toggler{cursor: pointer}ul{padding: 0;margin-bottom: 0}a.skip-main{left: -999px;position: absolute;top: auto;width: 1px;height: 1px;overflow: hidden;z-index: -999}a.skip-main:focus,a.skip-main:active{display: inline-block;color: #fff;background-color: black;left: 50%;top: auto;width: auto;transform: translateX(-50%);height: auto;overflow: auto;margin: 1rem 0;padding: 1rem;border-radius: 1px;border: 4px solid #ff0;text-align: center;font-size: 1.2em;z-index: 999}.form-flex .formbody,.widget-group{display: flex;flex-direction: row;flex-wrap: wrap;justify-content: space-between;align-items: stretch;align-content: stretch;width: 100%}.form-inline form .formbody{flex-wrap: nowrap}.form-inline form .formbody .widget-submit{position: relative;text-align: center}.form-inline form .formbody .widget-submit button{position: absolute;left: 0;bottom: 0;width: 100%;margin: 0;padding-top: 0.8rem;padding-bottom: 0.8rem}.item_rating,.widget{margin-bottom: 1.25rem}.explanation p{margin-bottom: 0}.explanation a{text-decoration: underline}.explanation a:hover{text-decoration: none}.formbody > fieldset > legend{width: calc(100% + 0px);background: #e8e8e8;background: linear-gradient(130deg, #c8c8c8, #e8e8e8);border-top-right-radius: 3px;border-top-left-radius: 3px;margin-left: calc(-1rem - 1px);border: 1px solid #aaa;padding: .5rem 1rem;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear;color: #222}.formbody > fieldset:hover > legend{background-color: #546d7d;background: linear-gradient(130deg, #3c4e5a, #6c8ea5);color: #fff;border-color: #3c4e5a}fieldset{padding: 1rem;border-radius: 4px;margin-bottom: 2rem;flex: 1 1 auto}fieldset legend{margin-bottom: 0.25rem;font-size: 1rem;color: #505050}fieldset.checkbox_container legend,fieldset.radio_container legend{padding: 0;line-height: 1.2;font-family: 'Poppins', sans-serif}fieldset.checkbox_container label,fieldset.radio_container label{display: inline;line-height: 1.4;color: #505050;font-size: 1rem;font-weight: 400}fieldset .widget label{color: #505050}fieldset.checkbox_container,fieldset.radio_container{border: 0;padding: 0;border-radius: 0;margin-bottom: 0;background-color: transparent}label{display: block;margin-bottom: 0.25rem;font-family: 'Poppins', sans-serif}.placeholder{color: #777}::-webkit-input-placeholder{color: #777}::-moz-placeholder{color: #777}:-ms-input-placeholder{color: #777}:-moz-placeholder{color: #777}.error ::-webkit-input-placeholder{color: #777;color: rgba(255,255,255,0.9)}.error ::-moz-placeholder{color: #777;color: rgba(255,255,255,0.9)}.error :-ms-input-placeholder{color: #777;color: rgba(255,255,255,0.9)}.error :-moz-placeholder{color: #777;color: rgba(255,255,255,0.9)}p.error{margin-top: 1rem;margin-bottom: 0;color: #ff0000}.frm_field{display: block;width: 100%;box-sizing: border-box;font-family: 'Poppins', sans-serif}div.field_third{float: left;width: 32.6%;margin: 0 .5% 1.25rem}@media screen and (max-width: 800px){div.field_third{float: none;width: 100%;margin: 0 0 1.25rem}}div.field_third.first{margin-left: 0}div.field_third.last{margin-right: 0}.frm_lft{float: left;width: 48%;margin: 0 0 1.25rem;padding: 0}@media screen and (max-width: 800px){.frm_lft{float: none;width: 100%;margin: 0 0 1.25rem}}.frm_rght{float: right;width: 48%;margin: 0 0 1.25rem;padding: 0}@media screen and (max-width: 800px){.frm_rght{float: none;width: 100%;margin: 0 0 1.25rem}}textarea{border: 0}.widget-textarea{clear: both;margin-bottom: 1.25rem}.widget-textarea textarea{display: block;width: 100%;box-sizing: border-box;font-family: 'Poppins', sans-serif}.widget-textarea.mceEditor .mce-tinymce{width: calc(100% - 2px) !important;border-radius: 3px}.widget-textarea.mceEditor .mce-tinymce .mce-edit-area{border-width: 1px 1px 0px 0px !important}.widget-captcha .value img,.widget-email .value img,.widget-password .value img,.widget-tel .value img,.widget-text .value img{max-width: 100%}.widget-captcha input,.widget-email input,.widget-password input,.widget-tel input,.widget-text input{display: block;width: 100%;box-sizing: border-box;font-family: 'Poppins', sans-serif;border: 0}.widget-captcha input{display: inline-block;margin-right: 1rem;width: 20%;min-width: 15rem;max-width: 4rem;text-align: center}.firefox select{padding: .7rem .625rem}select{-moz-appearance: none;-webkit-appearance: none;appearance: none;border: 0;outline: none;width: 100%;color: #505050;cursor: pointer;background: #fff url("/files/theme/misc/select-arrow.png") right 16px center no-repeat;background-size: 18px}select:focus::-ms-value{background-color: transparent}select::-ms-expand{display: none}.widget-checkbox,.widget-radio{margin-bottom: 1rem}.widget-checkbox fieldset > span,.widget-radio fieldset > span{display: block;margin-bottom: 0.5rem}.widget-checkbox fieldset > span p,.widget-radio fieldset > span p{display: inline}.widget-checkbox span.mandatory,.widget-radio span.mandatory{display: inline}.widget-checkbox input,.widget-radio input{margin: .25rem .25rem 0 .125rem}.widget-checkbox label,.widget-radio label{display: inline-block;vertical-align: top}.widget-checkbox.checkbox-single span{margin-bottom: 0}button{line-height: inherit}.button,.widget-submit button,.button-container a,.linkbox a{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;font-size: 1rem}.button:hover,.widget-submit button:hover,.button-container a:hover,.linkbox a:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}@media screen and (max-width: 480px){.button,.widget-submit button,.button-container a,.linkbox a{display: block;box-sizing: border-box;width: 100%}}.button:hover,.widget-submit button:hover,.button-container a:hover,.linkbox a:hover{color: #b71c1c;background-color: #fff;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.button i,.widget-submit button i,.button-container a i,.linkbox a i{font-size: 0.9rem}.button-container.button-invert a,button.button-invert{color: #b71c1c;background-color: #fff;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;position: relative;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;font-size: 1rem;color: #fff;background-color: #505050;border: 1px solid #505050;padding: 1rem 2rem;display: inline-block}.button-container-secondary button:hover,.button-container-secondary input:hover,.button-container-secondary a:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.button-container-secondary button:hover,.button-container-secondary input:hover,.button-container-secondary a:hover{color: #b71c1c;background-color: #fff;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.button-container-secondary button div,.button-container-secondary input div,.button-container-secondary a div{width: auto}.button-container-secondary button div i,.button-container-secondary input div i,.button-container-secondary a div i{margin-right: 4px}.button-container-cta button,.button-container-cta input,.button-container-cta a{border-radius: 3px;margin-top: 1rem;padding: .75rem 2.1rem;font-size: 1rem;color: #fff;background-color: #505050;border: 1px solid #505050;background: linear-gradient(to right bottom, #f5ba15 10%, #ff8733);border-color: #cc5400}.button-container-cta button:hover,.button-container-cta input:hover,.button-container-cta a:hover{text-shadow: 0px 0px 1px #000, 2px 1px 6px rgba(0,0,0,0.2);box-shadow: rgba(55,55,55,0.3) 0 16px 11px -10px;color: #fff;border: 1px solid #f00;background: linear-gradient(to right bottom, #f5ba15 10%, #f43)}.button-container-cta button div,.button-container-cta input div,.button-container-cta a div{width: auto}.button-container-cta button div i,.button-container-cta input div i,.button-container-cta a div i{margin-right: 4px}form.no_label fieldset{padding-bottom: 0}.srch_frm{float: left;width: 42%;margin: .625rem 0 0;overflow: visible}@media screen and (max-width: 1366px){.srch_frm{width: 38%}}@media screen and (max-width: 1280px){.srch_frm{width: 25%}}@media screen and (max-width: 1024px){.srch_frm{width: 50%;float: right}}@media screen and (max-width: 800px){.srch_frm{margin-top: 0}}@media screen and (max-width: 699px){.srch_frm{float: none;clear: both;width: 100%;margin-top: 1rem;margin-bottom: 1rem}}.srch_frm .widget{float: left;margin-bottom: 0}.srch_frm .widget-text{width: calc(100% - 42px)}.srch_frm .widget-submit{width: 40px;overflow: visible}.srch_frm input.text{height: 41px;background-color: #f5f5f5}.srch_frm input.text:focus{outline: 0;background-color: transparent}.srch_frm button.submit{width: 41px;height: 41px;padding: 0;border-radius: 0 3px 3px 0;background-color: transparent;font-family: 'Font Awesome 5 Free';font-weight: 700;font-family: 'Poppins', sans-serif;text-align: center}@media screen and (max-width: 699px){.srch_frm button.submit{color: #fff;background-color: #b71c1c}}.srch_frm button.submit:hover{color: #505050}@media screen and (max-width: 699px){.srch_frm button.submit:hover{color: #fff;background-color: #505050}}div.widget{width: 100%;flex: 1 1 auto}div.widget-10{width: calc(10% - .5rem)}div.widget-20{width: calc(20% - .5rem)}div.widget-30{width: calc(30% - .5rem)}div.widget-40{width: calc(40% - .5rem)}div.widget-50{width: calc(50% - .5rem)}div.widget-50-single{flex: 0 0 calc(50% - .5rem);margin-right: calc(50% + .5rem)}@media screen and (max-width: 480px){div.widget-50{width: 100%;margin-right: 0 !important}}div.widget-60{width: calc(60% - .5rem)}div.widget-70{width: calc(70% - .5rem)}div.widget-80{width: calc(80% - .5rem)}div.widget-90{width: calc(90% - .5rem)}div.widget.left{margin-right: 1rem}div.widget.right{margin-left: 1rem}div.widget-number input,div.widget-postal input{text-align: center}div.widget .explain{color: #ababab;margin-top: 0.25rem}.widget-singleSRC{margin-right: 0}.widget-singleSRC .value img{padding: 4px;margin-bottom: 1rem;width: 25%}.widget-singleSRC .explain{margin-top: 1rem}label .mandatory{color: #06d25b}.maxcentered{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.maxcentered{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.maxcentered{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.maxcentered{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.maxcentered{padding-left: 1.5rem;padding-right: 1.5rem}}.maxcentered_no{max-width: auto;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0;width: 100%}.full_width{width: 100%;max-width: 100%;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0}.column-left #main .mod_article.small-width,#main .mod_article.small-width{width: 70%;max-width: 70%;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0}.narrow_width{max-width: 699px;padding-left: 0;padding-right: 0}@media screen and (max-width: 800px){.narrow_width{max-width: auto;padding-left: 1rem;padding-right: 1rem}}@media screen and (max-width: 699px){.narrow_width{padding-left: 1rem;padding-right: 1rem}}.radius2{-webkit-border-radius: 1px;-moz-border-radius: 1px;-ms-border-radius: 1px;border-radius: 1px}.radius4{border-radius: 4px}.easeInOutQuad{-webkit-transition: all 500ms cubic-bezier(.455, .03, .515, .955);-moz-transition: all 500ms cubic-bezier(.455, .03, .515, .955);-o-transition: all 500ms cubic-bezier(.455, .03, .515, .955);transition: all 500ms cubic-bezier(.455, .03, .515, .955);-webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);-moz-transition-timing-function: cubic-bezier(.455, .03, .515, .955);-o-transition-timing-function: cubic-bezier(.455, .03, .515, .955);transition-timing-function: cubic-bezier(.455, .03, .515, .955)}.trans_in_out{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.trans_in_out_100{-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}.trans_in_out_500{-webkit-transition: all 500ms ease-in-out;-moz-transition: all 500ms ease-in-out;-ms-transition: all 500ms ease-in-out;-o-transition: all 500ms ease-in-out;transition: all 500ms ease-in-out}.trans_in_out_1000{-webkit-transition: all 1s ease-in-out;-moz-transition: all 1s ease-in-out;-ms-transition: all 1s ease-in-out;-o-transition: all 1s ease-in-out;transition: all 1s ease-in-out}.trans_linear_250{-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ellipsis{text-overflow: ellipsis;white-space: nowrap;overflow: hidden}.invert{color: white}.invert a,.invert p{color: white}.horizontal li{display: inline-block}.horizontal li a,.horizontal li strong{padding: 1.25rem 1rem 1.25rem}.rounded{border-radius: 0.5rem}.gradient_1{background: #fff;background: -moz-linear-gradient(top, #fff 75%, #e5e5e5 100%);background: -webkit-linear-gradient(top, #fff 75%, #e5e5e5 100%);background: linear-gradient(to bottom, #fff 75%, #e5e5e5 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0)}.font_icons{font-family: 'Font Awesome 5 Free';font-weight: 700}.font_brands{font-family: 'Font Awesome 5 Brands';font-weight: 700}.thin{font-weight: 100}.light{font-weight: 300}.normal{font-weight: 400}.black{font-weight: 900}strong{-webkit-font-smoothing: antialiased}sub{vertical-align: sub}.copy{line-height: 1.5;font-weight: 400}.h6{margin-top: 0.5rem;margin-bottom: 0.5rem;font-size: 1rem;line-height: 1.2}.headline_standard{margin-top: 0;margin-bottom: 0.75rem;line-height: 1.25;hyphens: auto;-moz-hyphens: auto;-webkit-hyphens: auto;-ms-hyphens: auto}h1,h2,h3,h4,h5,h6{margin-top: 0;margin-bottom: 0.75rem;line-height: 1.25;hyphens: auto;-moz-hyphens: auto;-webkit-hyphens: auto;-ms-hyphens: auto}.headline > div{margin-top: 0;margin-bottom: 0.75rem;line-height: 1.25;hyphens: auto;-moz-hyphens: auto;-webkit-hyphens: auto;-ms-hyphens: auto}h1{font-size: 3rem}@media screen and (max-width: 1024px){h1{font-size: 1.6rem}}@media screen and (max-width: 480px){h1{font-size: 1.4rem}}h2{font-size: 2.25rem;font-weight: 400;margin-bottom: 1.5rem}@media screen and (max-width: 1024px){h2{font-size: 1.6rem}}@media screen and (max-width: 480px){h2{font-size: 1.4rem}}h3{font-size: 1.4rem;font-weight: 600;line-height: 125%}h4{font-size: 1.2rem;font-weight: 600}h5{font-size: 1rem;font-weight: 600}h6{margin-top: 0.5rem;margin-bottom: 0.5rem;font-size: 1rem;line-height: 1.2}p{-ms-hyphens: auto;-moz-hyphens: auto;-webkit-hyphens: auto;hyphens: auto}p a{-ms-hyphens: none;-moz-hyphens: none;-webkit-hyphens: none;hyphens: none}p{margin-bottom: 1rem}blockquote{margin-bottom: .5rem}blockquote p{display: inline;font-style: italic;margin-bottom: 0}figcaption{margin-top: 0.5rem;font-size: 0.85rem;color: #222;line-height: 1.2}.upprcse{text-transform: uppercase}.shadow_no{-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 0 rgba(0,0,0,0)}.shadow_1{-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5)}.shadow_2{-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.shadow_3{-webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 8px 0 rgba(0,0,0,0.35);box-shadow: 0 0 8px 0 rgba(0,0,0,0.35)}.shadow_text_no{text-shadow: 0 0 0 rgba(0,0,0,0)}.shadow_text_1{text-shadow: 0 0 6px rgba(0,0,0,0.4)}.shadow_text_2{text-shadow: 0 0 14px rgba(0,0,0,0.8)}.shadow_text_3{text-shadow: 0 0 6px #fff}#topbar{font-size: 0.85rem;color: #fff;background-color: #505050;position: relative;z-index: 1}#topbar > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){#topbar > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#topbar > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#topbar > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#topbar > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (max-width: 800px){#topbar > .inside{padding-right: 0}}#topbar a{color: #fff}#topnav{width: 100%;position: relative;background-color: #fff;padding-top: 1.5rem;box-shadow: 0 0 6px 0 rgba(0,0,0,0.2);-webkit-transition: all .5s;transition: all .5s}@media screen and (max-width: 800px){#topnav{padding-top: 0.75rem}}#topnav > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){#topnav > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#topnav > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#topnav > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#topnav > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}#topnav.fixed{position: fixed;top: 0;left: 0;width: 100%;opacity: 1;visibility: visible;box-shadow: 0 0 6px 0 rgba(0,0,0,0.2);z-index: 99;padding-top: 0.75rem;-webkit-transition: all .5s;transition: all .5s}@media screen and (max-width: 800px){#topnav.fixed{padding-top: 0.75rem;position: relative}}#topbar.fixed,#header.fixed{position: fixed;top: 0;left: 0;width: 100%;opacity: 1;visibility: visible;z-index: 99;padding-top: 0.75rem;-webkit-transition: all .5s;transition: all .5s}@media screen and (max-width: 800px){#topbar.fixed,#header.fixed{padding-top: 0.75rem;position: relative}}footer .mod_layout_article{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 3rem;padding-bottom: 2rem}@media screen and (max-width: 1280px){footer .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){footer .mod_layout_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){footer .mod_layout_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){footer .mod_layout_article{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (max-width: 800px){footer .mod_layout_article{padding-top: 2rem;padding-bottom: 1rem}}footer a:hover{color: #b71c1c}footer .item{width: 20%;margin-bottom: 0}@media screen and (max-width: 1024px){footer .item{width: 25%}}@media screen and (max-width: 800px){footer .item{width: 50%}}@media screen and (max-width: 480px){footer .item{width: 100%}}@media screen and (max-width: 699px){footer .item{margin-bottom: 2rem;padding-bottom: 2rem}}@media screen and (max-width: 1024px){footer .item.last{display: none}}#copyright{background-color: #f6f6f6}#copyright > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 1.5rem;padding-bottom: 1.5rem}@media screen and (max-width: 1280px){#copyright > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#copyright > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#copyright > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#copyright > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (max-width: 800px){#copyright > .inside{padding-top: 2rem;padding-bottom: 1rem}}#copyright p{margin: 0}#container{flex: 1;min-height: 400px;display: flex;display: -webkit-flex;flex-wrap: nowrap;flex-direction: row;justify-content: space-between;align-items: auto;align-content: flex-start}@media screen and (max-width: 800px){#container{flex-direction: column}}.no_footer_padding #container{padding-bottom: 0 !important}.srch #container{min-height: 56vh}#main{width: 100%}.column-left #container{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.column-left #container{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.column-left #container{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.column-left #container{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.column-left #container{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (min-width: calc(1024px + 1px)){.column-left #container{flex-direction: row-reverse}}.column-left #main{float: none;flex: 0 0 auto;width: 73%}@media screen and (max-width: 1280px){.column-left #main{width: 68%}}@media screen and (max-width: 1024px){.column-left #main{width: 100%}}.column-left #container .article_inside{max-width: auto;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0;width: 100%}.column-left.border-right #main{padding-right: 2%;border-right: 1px solid #d2d2d2;box-sizing: border-box}@media screen and (max-width: 800px){.column-left.border-right #main{padding-right: 0;border-right: 0 solid #d2d2d2;padding-bottom: 2rem}}#left{float: none;-webkit-box-flex: 0;flex: 0 0 auto;width: 23%;margin-right: 0;margin-right: auto;padding-top: 2.5rem}@media screen and (max-width: 1280px){#left{width: 28%}}@media screen and (max-width: 1024px){#left{padding-top: 0;width: 100%;margin-left: 0;box-sizing: border-box}}.column-right #container{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.column-right #container{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.column-right #container{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.column-right #container{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.column-right #container{padding-left: 1.5rem;padding-right: 1.5rem}}.column-right #main{float: none;flex: 0 0 auto;width: 73%}@media screen and (max-width: 1280px){.column-right #main{width: 68%}}@media screen and (max-width: 1024px){.column-right #main{width: 100%}}.column-right #container .article_inside{max-width: auto;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0;width: 100%}.column-right.border-right #main{padding-right: 2%;border-right: 1px solid #d2d2d2;box-sizing: border-box}@media screen and (max-width: 800px){.column-right.border-right #main{padding-right: 0;border-right: 0 solid #d2d2d2;padding-bottom: 2rem}}#right{float: none;-webkit-box-flex: 0;flex: 0 0 auto;width: 23%;margin-right: 0;margin-left: auto;padding-top: 2.5rem}@media screen and (max-width: 1280px){#right{width: 28%}}@media screen and (max-width: 1024px){#right{padding-top: 0;width: 100%;margin-left: 0;box-sizing: border-box}}.mod_article .article_inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.mod_article .article_inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_article .article_inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_article .article_inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_article .article_inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_article.width-full .article_inside{width: 100%;max-width: 100%;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0}.mod_article.width-narrow .article_inside{max-width: 699px;padding-left: 0;padding-right: 0}@media screen and (max-width: 800px){.mod_article.width-narrow .article_inside{max-width: auto;padding-left: 1rem;padding-right: 1rem}}@media screen and (max-width: 699px){.mod_article.width-narrow .article_inside{padding-left: 1rem;padding-right: 1rem}}.mod_article.inner_padding .article_inside{padding-top: 8vh;padding-bottom: 8vh}.mod_article.image{position: relative}.mod_article.image .article_image img{width: 100%;height: auto}.mod_article.image .article_inside{position: absolute;top: 0;width: 100%;height: 100%}.mobile .mod_article .article_inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.mobile .mod_article .article_inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mobile .mod_article .article_inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mobile .mod_article .article_inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mobile .mod_article .article_inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mobile .mod_article.width-full .article_inside{width: 100%;max-width: 100%;margin-left: 0;margin-right: 0;padding-left: 0;padding-right: 0}.content_narrow{display: block;max-width: 768px;margin: 0 auto}@media screen and (max-width: 699px){.content_narrow{display: inline-block}}.text_narrow{display: block;max-width: 600px;margin: 0 auto}@media screen and (max-width: 699px){.text_narrow{display: inline-block}}.ce_text .image_container.float_left{margin-right: 2rem}.ce_image{margin-bottom: 2rem}@media screen and (max-width: 699px){.ce_image{margin-bottom: 1rem}}.ce_image.auto img{width: auto !important}.ce_list ol li,.ce_list ul li,.ce_text ol li,.ce_text ul li{margin-bottom: 0.5rem;line-height: 1.4;font-size: 1rem}.ce_list ol li ol,.ce_list ul li ol,.ce_text ol li ol,.ce_text ul li ol,.ce_list ol li ul,.ce_list ul li ul,.ce_text ol li ul,.ce_text ul li ul{margin-bottom: 0.5rem;padding-top: 0.25rem}.ce_list ol li ol li,.ce_list ul li ol li,.ce_text ol li ol li,.ce_text ul li ol li,.ce_list ol li ul li,.ce_list ul li ul li,.ce_text ol li ul li,.ce_text ul li ul li{padding-top: 0.5rem}.ce_list > ul,.ce_text > ul{margin-bottom: 1.5rem;padding: .5rem 0 0 1.5rem;list-style: square}.ce_list > ul li,.ce_text > ul li{position: relative}.ce_list > ul.check,.ce_text > ul.check{padding-left: 0;list-style-type: none}.ce_list > ul.check li,.ce_text > ul.check li{margin-bottom: 1rem;padding-left: 2rem}.ce_list > ul.check li::before,.ce_text > ul.check li::before{position: absolute;left: 0.5rem;display: inline-block;content: "\f00c";color: #b71c1c;font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_list > ul.hyphen,.ce_text > ul.hyphen{padding-left: 0;list-style-type: none}.ce_list > ul.hyphen li,.ce_text > ul.hyphen li{padding-left: 1.5rem}.ce_list > ul.hyphen li::before,.ce_text > ul.hyphen li::before{position: absolute;left: 0.5rem;display: inline-block;content: "–"}.ce_list.alignment-centered ul.check,.ce_list.alignment-centered ul.hyphen{list-style-position: inside}.ce_list.alignment-centered ul.check li,.ce_list.alignment-centered ul.hyphen li{padding-left: 0}.ce_list.alignment-centered ul.check li::before,.ce_list.alignment-centered ul.hyphen li::before{position: relative;left: 0;margin-right: 0.75rem}.ce_list ol,.ce_text ol{margin-bottom: 1.5rem;padding: .5rem 0 0 1.75rem}.ce_list ol.roman,.ce_text ol.roman{list-style-type: upper-roman}.ce_list ol.alpha,.ce_text ol.alpha{list-style-type: lower-alpha}.btn-default{color: #fff;background-color: #b71c1c;font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative}.btn-invert{color: #b71c1c;background-color: #fff;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.btn-dark{color: #fff;background-color: #505050;border: 1px solid #505050}.btn-disabled{background: linear-gradient(to right bottom, #d0d0d0 10%, #a0a0a0);text-shadow: 1px 1px 1px rgba(0,0,0,0.5);border: 1px solid #4d4d4d}.btn-disabled:hover{color: #fff;cursor: default}.btn-disabled:focus{outline: none}p.back{margin-top: 2rem;margin-bottom: 2rem}p.back a{display: inline-block;padding: .5rem 1.5rem;box-sizing: border-box;color: #fff;background-color: #b71c1c;font-size: 1rem;font-weight: 700;text-align: center;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;-webkit-border-radius: 1px;-moz-border-radius: 1px;-ms-border-radius: 1px;border-radius: 1px}@media screen and (max-width: 480px){p.back a{width: 100%}}p.back a.inverted{color: #b71c1c;border: 1px solid #b71c1c;background-color: #fff}p.back a.inverted:hover{color: #fff;background-color: #b71c1c}p.back a.uppercase{text-transform: uppercase}p.back a:hover{color: white;background-color: #505050;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_hyperlink{margin-bottom: 1.5rem;padding-left: 0.25rem;line-height: 1.3}.ce_hyperlink.appearance-layout-2 a:after{margin-left: 0.25rem;content: "\f105";font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_hyperlink.ext_link{margin-top: 1.5rem;padding-top: 1.5rem;border-top: 1px solid #d2d2d2}.ce_hyperlink.ext_link i{margin-left: 0.25rem}table th.nowrap,table td.nowrap{white-space: nowrap}.ce_table,.table{line-height: 1.3em}@media screen and (max-width: 699px){.ce_table,.table{margin-bottom: 1rem}}.ce_table table,.table table{width: 100%;font-size: 1rem;border-spacing: 0}@media screen and (max-width: 1024px){.ce_table table,.table table{font-size: 0.85rem}}.ce_table th,.table th{color: #fff;background-color: #f6f6f6;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;text-align: left}.ce_table th.col_first,.table th.col_first{border-left: 1px solid #ddd;border-top: 0}.ce_table th.col_last,.table th.col_last{border-right: 1px solid #ddd}.ce_table td.col_first,.table td.col_first{border-left: 1px solid #d2d2d2}.ce_table td.col_last,.table td.col_last{border-right: 1px solid #d2d2d2}.ce_table tr.row_last td,.table tr.row_last td{border-bottom: 1px solid #d2d2d2}.ce_table tr.active td,.table tr.active td{border-top: 1px solid #b71c1c;border-bottom: 1px solid #b71c1c}.ce_table tr.active td:first-child,.table tr.active td:first-child{border-left: 1px solid #b71c1c}.ce_table tr.active td:last-child,.table tr.active td:last-child{border-right: 1px solid #b71c1c}.ce_table td,.table td,.ce_table th,.table th{padding: 1rem .625rem;vertical-align: top}@media screen and (max-width: 699px){.ce_table td,.table td,.ce_table th,.table th{padding: .5rem .25rem}}.ce_table tr.row_center td,.table tr.row_center td{vertical-align: middle}.ce_table th.col_number,.table th.col_number,.ce_table td.col_number,.table td.col_number{text-align: right;padding-right: 2rem;white-space: nowrap}.ce_table th.col_center,.table th.col_center,.ce_table td.col_center,.table td.col_center{text-align: center}.ce_table th.col_left,.table th.col_left,.ce_table td.col_left,.table td.col_left{text-align: left}.ce_table tfoot,.table tfoot{font-weight: 400;color: #fff;background-color: #f5f5f5}.ce_table tr.row_first td,.table tr.row_first td{border-top: 0 solid #b71c1c}.ce_table .noheader tr.row_first td,.table .noheader tr.row_first td{border-top: 1px solid #d2d2d2}.ce_table .even td,.table .even td{background-color: #f5f5f5}.ce_table caption,.table caption{font-size: 0.85rem;font-weight: 300;margin-top: 6px;caption-side: bottom}.download-element{background-size: 32px}@media screen and (max-width: 699px){.download-element{padding: 3px 6px 2px 22px;background-size: 16px}}.ce_download,.ce_downloads,.enclosure{font-size: 1rem}.ce_download .size,.ce_downloads .size,.enclosure .size{color: #222;font-size: 0.85rem}.ce_download a,.ce_downloads a,.enclosure a{color: #b71c1c}.ce_download a:hover,.ce_downloads a:hover,.enclosure a:hover{color: #505050}.ce_download .download-element a,.ce_downloads .download-element a,.enclosure .download-element a{display: block;overflow: hidden;width: 100%;white-space: nowrap;text-overflow: ellipsis;line-height: 1.5}.netz .download-element{background-position: left top}.netz .download-element a{white-space: normal;text-overflow: unset}.ce_download{margin-bottom: 0.5rem}.ce_download p{margin-bottom: 0}.ce_downloads{margin-bottom: 1.25rem}.ce_downloads li{margin-bottom: 0.5rem}img.mime_icon{display: inline-block;width: auto;margin: 0 4px 0 0;vertical-align: sub}.ce_gallery{margin-bottom: 1rem}.ce_gallery img{width: 100%;height: auto}.ce_gallery ul{display: flex;align-content: flex-start;align-items: stretch;flex-direction: row;flex-wrap: wrap;justify-content: flex-start;list-style-type: none;width: calc(100% + 1.5rem);margin-right: 1.5rem}.ce_gallery ul li{flex: 0 1 auto;margin-right: 1.5rem;margin-bottom: 1.5rem}.ce_gallery ul.cols_2 li{width: calc(50% - 1.5rem)}.ce_gallery ul.cols_3 li{width: calc(33.33% - 1.5rem)}.ce_gallery ul.cols_4 li{width: calc(25% - 1.5rem)}.ce_gallery ul.cols_5 li{width: calc(20% - 1.5rem)}.ce_gallery ul.cols_6 li{width: calc(16.667% - 1.5rem)}.ce_gallery ul.cols_7 li{width: calc(14.28% - 1.5rem)}.ce_gallery ul.cols_8 li{width: calc(12.5% - 1.5rem)}.ce_gallery ul.cols_9 li{width: calc(11.11% - 1.5rem)}.ce_gallery ul.cols_10 li{width: calc(10% - 1.5rem)}.ce_gallery ul.cols_11 li{width: calc(9.09% - 1.5rem)}.ce_gallery ul.cols_12 li{width: calc(8.33% - 1.5rem)}@media screen and (max-width: 800px){.ce_gallery ul.cols_10 li,.ce_gallery ul.cols_11 li,.ce_gallery ul.cols_12 li,.ce_gallery ul.cols_4 li,.ce_gallery ul.cols_5 li,.ce_gallery ul.cols_6 li,.ce_gallery ul.cols_7 li,.ce_gallery ul.cols_8 li,.ce_gallery ul.cols_9 li{width: calc(33.33% - 1.5rem)}}@media screen and (max-width: 699px){.ce_gallery ul.cols_10 li,.ce_gallery ul.cols_11 li,.ce_gallery ul.cols_12 li,.ce_gallery ul.cols_3 li,.ce_gallery ul.cols_4 li,.ce_gallery ul.cols_5 li,.ce_gallery ul.cols_6 li,.ce_gallery ul.cols_7 li,.ce_gallery ul.cols_8 li,.ce_gallery ul.cols_9 li{width: calc(50% - 1.5rem)}}.ce_youtube{margin-bottom: 30px}.ce_youtube .video-wrapper{position: relative;padding-bottom: 56.25%;width: 100%;height: auto}.ce_youtube iframe{position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100% !important;height: 100% !important}.youtube_default .video-thumbnail .image_container{width: 100%}.modal-header .modal-title,.modal-header button{display: none}.youtube_modal a{display: none}.alertify .ajs-dialog{padding-bottom: 12px}.alertify .ajs-content label{line-height: 1.5}.alertify .ajs-footer .ajs-buttons.ajs-primary{text-align: right;padding-right: 12px}.mod_logo,div.logo{display: inline-block;float: left;margin-bottom: 1.5rem}@media screen and (max-width: 1024px){.mod_logo,div.logo{flex: 1 1 auto}}.mod_logo figure,div.logo figure{display: inline-block}.mod_logo a img,div.logo a img{border: 1px solid transparent;padding: 1px}.mod_logo a:focus img,div.logo a:focus img{border: 1px dotted #b71c1c;padding: 1px}.fixed .logo{padding-bottom: 1rem;margin-bottom: 0}.cookiebar{display: none;position: fixed;top: 0;left: 0;z-index: 9999;overflow: hidden;-webkit-transform: translate3d(0, 0, 0);background: rgba(0,0,0,0.7);height: 100%;width: 100%}.cookiebar.cookiebar--active{display: block}.cookiebar-hide .cookiebar.cookiebar--active{display: none}.cookiebar .inside{position: relative;top: 30%;width: 23%;margin: auto;background-color: #fff;box-shadow: 0 4px 8px rgba(0,0,0,0.2);border-radius: 3px;padding: 2em 1.5rem 2rem}.cookiebar__text{font-size: 0.85rem;line-height: 1.5;margin-bottom: 1.5rem}.cookiebar__button.accept{font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;padding: .5rem 4rem}.cookiebar__button.accept:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.cookiebar__button.accept:hover{color: #fff;background-color: #505050;border: 1px solid #505050}.cookiebar__button.denied{border: none;background-color: #f6f6f6;color: #777;cursor: pointer;float: right;font-size: 1rem;border-radius: 3px;padding: .5rem 1rem}.cookiebar .links{clear: both;margin-top: 2rem;text-align: center;font-size: 12px}.cookiebar .links a{padding: 1.8rem .4rem}.cookiebar__message{margin-right: 0.25rem}@media screen and (max-width: 480px){.cookiebar__analytics{margin-top: 1rem}}.cookiebar__analytics-label{margin: 0;line-height: 1}input.cookiebar__analytics-checkbox{display: inline-block;vertical-align: top;width: 16px;height: 16px}span.cookiebar__analytics-text{display: inline-block;vertical-align: middle;height: 16px;font-size: 0.85rem;font-weight: 400}.mod_sitemap li{margin-left: 28px;padding-right: 12px;padding-bottom: 3px;list-style-type: square}.resp-container{position: relative;overflow: hidden}.resp-container.video{padding-top: 56.25%}.resp-container.living{padding-top: 64%}.resp-container iframe{display: inline-block}.resp-container .resp-iframe{position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: 0}.pegel{text-align: center}.pegel.desktop{display: none}@media screen and (min-width: 699px){.pegel.desktop{display: inline-block}}.pegel.mobile{display: none}@media screen and (max-width: 699px){.pegel.mobile{display: inline-block}}.mainnav{flex: 1 1 auto;text-align: right}@media screen and (max-width: 1024px){.mainnav{display: none}}.mainnav :focus{outline: 1}.mainnav ul{margin: 0;padding: 0}.mainnav ul li{display: inline-block;list-style-type: none;text-align: center}.mainnav a,.mainnav strong{display: inline-block;margin-right: 0;margin-left: 1.5rem;padding: 1.25rem 1.25rem 1.25rem;color: #505050;font-family: 'Poppins', sans-serif;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}@media screen and (max-width: 1366px){.mainnav a,.mainnav strong{margin-left: 1rem;font-size: 1rem}}@media screen and (max-width: 1280px){.mainnav a,.mainnav strong{padding: 2rem .625rem 1rem;margin-left: 0.75rem}}.mainnav a .last,.mainnav strong .last{margin-right: 0.5rem}.mainnav a.active,.mainnav strong.active,.mainnav a.trail,.mainnav strong.trail,.mainnav a:hover,.mainnav strong:hover{color: #b71c1c;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}.mainnav a.invisible,.mainnav strong.invisible{margin: 0;padding: 0}.mainnav a.srch,.mainnav strong.srch{color: rgba(255,255,255,0);font-size: 0;margin-right: 0.5rem}.mainnav a.srch:before,.mainnav strong.srch:before{font-family: 'Font Awesome 5 Free';font-weight: 700;content: '\f002';color: #505050}.mainnav a.srch.active:before,.mainnav strong.srch.active:before,.mainnav a.srch.trail:before,.mainnav strong.srch.trail:before,.mainnav a.srch:hover:before,.mainnav strong.srch:hover:before{color: #b71c1c}.mainnav a.srch:focus:before,.mainnav strong.srch:focus:before{color: #b71c1c}.mainnav .level_2{position: absolute;overflow: hidden;max-height: 0;margin-top: 0;padding: 0;border: 1px solid #d2d2d2;border-top: 0;border-radius: 3px;background-color: #d2d2d2;opacity: 0;z-index: 1000;top: auto;left: auto;min-width: 230px;max-width: 240px;margin-left: -45px;transition: opacity .5s ease-in-out;text-align: left;background-color: white}.mainnav .level_2 li{display: block;float: none;width: auto;height: auto;margin-left: 0;padding: 0;text-align: left;border-top: 1px solid #d2d2d2;background-color: #fff}.mainnav .level_2 li.last{border-bottom: 0 solid #fff}.mainnav .level_2 li a,.mainnav .level_2 li strong{display: block;margin-left: 0;margin-right: 0;padding: 1rem 1.25rem;color: #222;font-size: 1rem;-webkit-transition: background 250ms ease-in-out;-moz-transition: background 250ms ease-in-out;-ms-transition: background 250ms ease-in-out;-o-transition: background 250ms ease-in-out;transition: background 250ms ease-in-out;background-image: none;font-weight: 400;text-shadow: 0 0 0 rgba(0,0,0,0)}@media screen and (max-width: 1280px){.mainnav .level_2 li a,.mainnav .level_2 li strong{padding: .5rem 1rem}}.mainnav .level_2 li a:hover,.mainnav .level_2 li .active,.mainnav .level_2 li .trail{background-color: #b71c1c;background: linear-gradient(to right bottom, #b71c1c 10%, #c46a6a);-webkit-transition: background 250ms ease-in-out;-moz-transition: background 250ms ease-in-out;-ms-transition: background 250ms ease-in-out;-o-transition: background 250ms ease-in-out;transition: background 250ms ease-in-out;color: #fff}.mainnav li:hover .level_2,.mainnav li:focus-within .level_2{opacity: 1;max-height: 500px}.mainnav div.level_3{display: none;-webkit-animation: fadeOut 1s;animation: fadeOut 1s;margin-top: 0;padding-top: 20px;padding-bottom: 20px;opacity: 0}.mainnav div.level_3 a{font-size: 1rem;padding: 5px 0;text-transform: none}.mainnav li:hover div.level_3{display: block;-webkit-animation: fadeIn 1s;animation: fadeIn 1s;position: absolute;left: 0;top: auto;width: 100%;height: auto;overflow: auto;z-index: 1000;text-align: left;opacity: 1;background-color: #fff;border-top: 1px solid #b71c1c;-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5)}.mainnav a.bttn{margin-right: 0.5rem;padding: .625rem 1rem;color: #b71c1c;border-radius: 2px;background-color: #fff;border: 1px solid #b71c1c;-webkit-transition: all 500ms ease-in-out;-moz-transition: all 500ms ease-in-out;-ms-transition: all 500ms ease-in-out;-o-transition: all 500ms ease-in-out;transition: all 500ms ease-in-out;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);text-shadow: 0 0 0 rgba(0,0,0,0)}.mainnav a.bttn:hover{color: #b71c1c;background: #fff;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.mainnav .level_3{display: none}.mainnav .level_3 li a{padding-left: 2rem}.subnav{font-weight: 400}.subnav ul{margin: 4px;list-style-type: none;padding: 1.5rem .5rem 1rem;background-color: #fff;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.subnav ul ul.level_2{margin: 0;padding: 0;-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 0 rgba(0,0,0,0)}.subnav ul ul.level_2 li a,.subnav ul ul.level_2 li strong{font-weight: 400;padding-left: 2rem;font-size: 1rem}.subnav ul ul.level_2 li a{color: #b71c1c}.subnav ul ul.level_2 li a:hover{color: #777;padding-left: calc(2rem + 8px)}.subnav ul .level_3 li a,.subnav ul .level_3 li strong{padding-left: 3rem}.subnav ul .level_3 li a.trail{border-top: 0 solid #d2d2d2}.subnav a,.subnav strong{display: block;padding: .75rem 1rem;border-top: 1px solid #f5f5f5}.subnav strong{color: #b71c1c;font-weight: 400}.subnav strong.submenu{background-color: #d2d2d2}.subnav strong.first{border-top: 0}.subnav strong.active,.subnav strong.trail{color: #fff;font-weight: 400;background-color: #b71c1c;background: linear-gradient(to right bottom, #b71c1c 10%, #c46a6a);border-top: 1px solid #861515;position: relative;top: 1px;margin-left: -10px;padding-left: calc(1rem + 10px);margin-right: -10px}.subnav a{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;color: #222}.subnav a:hover{color: #b71c1c;background-color: #fafafa;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;margin-left: -8px;padding-left: calc(1rem + 8px);margin-right: -8px}.subnav a.trail{color: #b71c1c;border-top: 1px solid #d2d2d2;background-color: #f5f5f5;font-weight: 400}.subnav a.trail.submenu{color: #b71c1c}.subnav a.trail.submenu:hover{color: #b71c1c;background-color: rgba(255,255,255,0.9);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.subnav a.first{border-top: 0 solid #d2d2d2}.footernav a:hover{color: #b71c1c}.footernav strong{color: #b71c1c;font-weight: 400}.footernav ul{display: inline-block;list-style-type: none}.jump-nav{width: 100%;background-color: #f5f5f5;border-radius: 3px;z-index: 2;box-shadow: 0 0 6px 0 rgba(0,0,0,0.2);margin-bottom: 2rem}.jump-nav ul{max-width: calc(1440px - 4%);margin-left: auto;margin-right: auto}.jump-nav ul li{display: inline-flex}.jump-nav ul li a{padding: 1.25rem 1.25rem}.jump-nav ul li a:hover{background-color: #b71c1c;color: #fff}.jump-nav ul li a.active{background-color: #b71c1c;color: #fff}.jump-nav ul li.back{float: right}.jump-nav ul li.back a{padding: 0;margin: 1.25rem 0;color: #f5f5f5}.jump-nav ul li.back a:hover{background-color: unset;color: #777}.jump-nav.fixed{position: fixed;top: 96px}#mobilenav{display: none;margin-right: 1.5rem}@media screen and (max-width: 1024px){#mobilenav{display: block;flex: 0 1 auto;align-self: center}}.mm-listview > li > strong{text-overflow: ellipsis;white-space: nowrap;overflow: hidden;color: inherit;display: block;padding: 10px 10px 10px 20px;margin: 0}.no_mobile{display: none}.pagination{clear: left;list-style-type: none;font-weight: 300;margin-top: 2rem;padding: .75rem 1rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-between;align-items: stretch;align-content: stretch;width: calc(100% - 1rem)}.pagination .pages,.pagination .switcher{flex: 1 0 auto}.pagination .switcher{display: flex;align-items: center;justify-content: flex-end}.pagination ul{clear: both;float: right;margin: 0;padding: 0;-webkit-padding-start: 0}.pagination li{float: left;display: inline-block;list-style-type: none}.pagination p{font-weight: 300;margin: 0}.pagination a,.pagination .active{color: #b71c1c;text-decoration: none;padding: 1px 8px}.pagination a:hover{background-color: #b71c1c;color: #fff}.pagination .active{background-color: #b71c1c;color: #fff}.routenav{margin-bottom: 2rem}.routenav li{display: inline-block;margin-right: 1.5rem}@media screen and (max-width: 480px){.routenav li{display: block;margin-right: 0;margin-bottom: .5rem}}.routenav li.last{margin-right: 0}.routenav a{display: inline-block;padding: .5rem 1rem;color: #fff;background-color: #b71c1c;border-radius: 3px}@media screen and (max-width: 480px){.routenav a{display: block}}.routenav a:hover{color: #fff;background-color: #505050}.routenav strong{display: inline-block;padding: .5rem 1rem;color: #fff;background-color: #222;border-radius: 3px;font-weight: 400}@media screen and (max-width: 480px){.routenav strong{display: block}}.mod_breadcrumb{color: #777;font-size: 0.85rem}.mod_breadcrumb li{display: inline-block}.mod_breadcrumb li:after{content: "/"}.mod_breadcrumb li.last:after{content: ''}.mod_breadcrumb li a{padding-right: 0.25rem}#toTop{display: none;position: fixed;bottom: 3rem;right: 3rem;overflow: hidden;padding: .75rem;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);background-color: #b71c1c;color: #fff;text-decoration: none;border-radius: 3px;z-index: 9999}#toTop:hover{cursor: pointer}.mod_article .syndication{bottom: 0;position: absolute;z-index: 1}.mod_share{margin-top: 1rem}.syndication a{margin-top: 1.25rem}.syndication a.share{cursor: pointer}.syndication a.share.active{background-color: #9de61e;color: #fff}.syndication #share{position: absolute;left: -9999px}.socialnav a{width: 4rem;padding-top: 1.125rem;padding-bottom: 1.125rem;margin-right: 1.25rem;display: inline-block;text-align: center;font-size: 1.25rem;background-color: #f6f6f6;color: #565658}.socialnav a:hover{background-color: #909090;color: #fff}.socialnav a.facebook:hover{background-color: #3b5998}.socialnav a.twitter:hover{background-color: #1DA1F2}.socialnav a.whatsapp:hover{background-color: #25D366}.position-center .inside,.position-bottom .inside{height: 100%;width: 100%;box-sizing: border-box;display: flex;flex-direction: column;justify-content: center}.position-bottom .inside{justify-content: end}.margin-top-none{margin-top: 0 !important}.margin-bottom-none{margin-bottom: 0 !important}.flex-wrapper > .inside{display: flex;flex-wrap: wrap;justify-content: space-between}.ce_accordion .toggler{position: relative;line-height: 1.25;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ce_accordion .toggler:hover{cursor: pointer}.ce_accordion .toggler:after,.ce_accordion .toggler:before{position: absolute;left: 0;font-family: 'Font Awesome 5 Free';font-weight: 700;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ce_accordion .toggler:focus{outline: none}.ce_accordion .toggler .active{-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ce_accordion .toggler .active:after,.ce_accordion .toggler .active:before{-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ce_accordion.appearance-layout-1 .toggler{padding: .8rem .8rem .8rem 2.5rem;color: #fff;border-bottom: 1px solid #fff;background-color: #b71c1c;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ce_accordion.appearance-layout-1 .toggler:before{top: 14px;left: 20px;display: inline-block;content: '\f105';-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);color: #fff;font-size: 1rem}.ce_accordion.appearance-layout-1 .toggler:hover{background-color: #e55454}.ce_accordion.appearance-layout-1 .toggler.active{background-color: #b71c1c}.ce_accordion.appearance-layout-1 .toggler.active:before{display: inline-block;content: '\f105';-webkit-transform: rotate(90deg);-moz-transform: rotate(90deg);-ms-transform: rotate(90deg);-o-transform: rotate(90deg);transform: rotate(90deg)}.ce_accordion.appearance-layout-1 .accordion{border-bottom: 1px solid #8b1515;background-color: rgba(255,255,255,0.9)}.ce_accordion.appearance-layout-1 .accordion p{color: #505050}.ce_accordion.appearance-layout-1 .accordion a{color: #b71c1c}.ce_accordion.appearance-layout-1 .accordion a:hover{color: #505050}.ce_accordion.appearance-layout-1 .ui-widget-content > div{padding: 1.5rem 2.5rem}@media screen and (max-width: 1366px){.ce_accordion.appearance-layout-1 .ui-widget-content > div{padding: 1.25rem 1.5rem}}@media screen and (max-width: 699px){.ce_accordion.appearance-layout-1 .ui-widget-content > div{padding: 1rem .75rem}}.ce_accordion.appearance-layout-2 .toggler{padding: .8rem 2.5rem .8rem .5rem;color: #b71c1c;border-bottom: 1px solid #d2d2d2;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}.ce_accordion.appearance-layout-2 .toggler:after{top: 15px;right: 14px;left: auto;display: inline-block;content: '\f055';color: #b71c1c}.ce_accordion.appearance-layout-2 .toggler.active{color: #b71c1c}.ce_accordion.appearance-layout-2 .toggler.active:after{display: inline-block;content: '\f056'}.ce_accordion.appearance-layout-2 .ui-widget-content > div{padding: 1rem .5rem}.ce_accordion.appearance-layout-3 .toggler,.ce_accordion.appearance-layout-4 .toggler{padding: .5rem .5rem .5rem 2rem;color: #b71c1c}.ce_accordion.appearance-layout-3 .toggler:before,.ce_accordion.appearance-layout-4 .toggler:before{top: 12px;display: inline-block;content: '\f067';-webkit-transform: rotate(90deg);-moz-transform: rotate(90deg);-ms-transform: rotate(90deg);-o-transform: rotate(90deg);transform: rotate(90deg);color: #b71c1c;font-size: 1rem}.ce_accordion.appearance-layout-3 .toggler.active:before,.ce_accordion.appearance-layout-4 .toggler.active:before{display: inline-block;content: '\f068';-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg)}.ce_accordion.appearance-layout-3 .ui-widget-content > div,.ce_accordion.appearance-layout-4 .ui-widget-content > div{padding: .5rem 1.5rem 0}.ce_accordion.appearance-layout-4{padding: .4rem 1rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;box-sizing: border-box;margin-bottom: 0.5rem}.col_grid_1{width: calc((100% - 2rem * 2) / 12*1)}.col_grid_2{width: calc((100% - 2rem * 2) / 12*2)}.col_grid_3{width: calc((100% - 2rem * 2) / 12*3)}.col_grid_4{width: calc((100% - 2rem * 2) / 12*4)}.col_grid_5{width: calc((100% - 2rem * 2) / 12*5)}.col_grid_6{width: calc((100% - 2rem * 2) / 12*6)}.col_grid_7{width: calc((100% - 2rem * 2) / 12*7)}.col_grid_8{width: calc((100% - 2rem * 2) / 12*8)}.col_grid_9{width: calc((100% - 2rem * 2) / 12*9)}.col_grid_10{width: calc((100% - 2rem * 2) / 12*10)}.col_grid_11{width: calc((100% - 2rem * 2) / 12*11)}.col_grid_12{width: 100%;margin-right: 0}.col_width_5{width: 20%}.col_grid_6-no-gap{width: 50%}.col_grid_3-no-gap{box-sizing: border-box;width: 25%}.ce_columnStart{display: flex;flex-direction: row;flex-wrap: wrap;justify-content: space-between;align-items: stretch;align-content: stretch}.ce_columnStart > *{overflow: hidden}.ce_columnStart.cols-2.col-1-6 > *:nth-child(2n+1){width: calc((100% - 2rem * 2) / 12*6)}.ce_columnStart.cols-2.col-2-6 > *:nth-child(2n+2){width: calc((100% - 2rem * 2) / 12*6)}.ce_columnStart.cols-2.col-1-6.column-gap-none > *:nth-child(2n+1){width: 50%}.ce_columnStart.cols-2.col-2-6.column-gap-none > *:nth-child(2n+2){width: 50%}.ce_columnStart.cols-2.col-1-4 > *:nth-child(2n+1){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-2.col-2-8 > *:nth-child(2n+2){width: calc((100% - 2rem * 2) / 12*8)}.ce_columnStart.cols-2.col-1-8 > *:nth-child(2n+1){width: calc((100% - 2rem * 2) / 12*8)}.ce_columnStart.cols-2.col-2-4 > *:nth-child(2n+2){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-2.col-1-9 > *:nth-child(2n+1){width: calc((100% - 2rem * 2) / 12*9)}.ce_columnStart.cols-2.col-2-3 > *:nth-child(2n+2){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-2.col-1-3 > *:nth-child(2n+1){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-2.col-2-9 > *:nth-child(2n+2){width: calc((100% - 2rem * 2) / 12*9)}.ce_columnStart.cols-3.col-1-3 > *:nth-child(3n+1){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-3.col-2-3 > *:nth-child(3n+2){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-3.col-3-6 > *:nth-child(3n+3){width: calc((100% - 2rem * 2) / 12*6)}.ce_columnStart.cols-3.col-1-4 > *:nth-child(3n+1){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-3.col-2-4 > *:nth-child(3n+2){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-3.col-3-4 > *:nth-child(3n+3){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-4.col-1-3 > *:nth-child(4n+1){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-4.col-2-3 > *:nth-child(4n+2){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-4.col-3-3 > *:nth-child(4n+3){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-4.col-4-3 > *:nth-child(4n+4){width: calc((100% - 2rem * 2) / 12*3)}.ce_columnStart.cols-4.col-1-3 > *:nth-child(4n+1){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.col-2-3 > *:nth-child(4n+2){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.col-3-3 > *:nth-child(4n+3){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.col-4-3 > *:nth-child(4n+4){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.col-1-2 > *:nth-child(4n+1){width: calc((100% - 2rem * 2) / 12*2)}.ce_columnStart.cols-4.col-2-4 > *:nth-child(4n+2){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-4.col-3-2 > *:nth-child(4n+3){width: calc((100% - 2rem * 2) / 12*2)}.ce_columnStart.cols-4.col-4-4 > *:nth-child(4n+4){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-4.col-1-4 > *:nth-child(4n+1){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-4.col-2-2 > *:nth-child(4n+2){width: calc((100% - 2rem * 2) / 12*2)}.ce_columnStart.cols-4.col-3-4 > *:nth-child(4n+3){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-4.col-4-2 > *:nth-child(4n+4){width: calc((100% - 2rem * 2) / 12*2)}.ce_columnStart.cols-2.col-1-2_5 > *:nth-child(2n + 1){width: 40%}.ce_columnStart.cols-2.col-2-3_5 > *:nth-child(2n + 2){width: 60%}.ce_columnStart.cols-5{display: flex;flex-wrap: wrap;justify-content: center}.ce_columnStart.cols-5 > *{display: flex;flex-basis: calc(960px * 999 - 100% * 999);flex: 1 1 340px}.ce_columnStart.cols-5.col-1-1_5 > *:nth-child(5n + 1){width: 20%}.ce_columnStart.cols-5.col-2-1_5 > *:nth-child(5n + 2){width: 20%}.ce_columnStart.cols-5.col-3-1_5 > *:nth-child(5n + 3){width: 20%}.ce_columnStart.cols-5.col-4-1_5 > *:nth-child(5n + 4){width: 20%}.ce_columnStart.cols-5.col-5-1_5 > *:nth-child(5n + 5){width: 20%}.ce_columnStart .col_margin{margin-bottom: 2rem}@media screen and (max-width: 1024px){.ce_columnStart.cols-m-2.col-m-1-6 > *:nth-child(2n + 1){width: calc((100% - 2rem * 2) / 12*6)}.ce_columnStart.cols-m-2.col-m-1-6.column-gap-none > *:nth-child(2n + 1){width: 50%}.ce_columnStart.cols-m-2.col-m-2-6 > *:nth-child(2n + 2){width: calc((100% - 2rem * 2) / 12*6)}.ce_columnStart.cols-m-2.col-m-2-6.column-gap-none > *:nth-child(2n + 2){width: 50%}.ce_columnStart.cols-m-3 > *{margin-bottom: 2rem}.ce_columnStart.cols-m-3.col-m-1-4 > *:nth-child(3n + 1){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-m-3.col-m-2-4 > *:nth-child(3n + 2){width: calc((100% - 2rem * 2) / 12*4)}.ce_columnStart.cols-m-3.col-m-3-4 > *:nth-child(3n + 3){width: calc((100% - 2rem * 2) / 12*4)}}@media screen and (max-width: 480px){.ce_columnStart > *{width: 100% !important}.ce_columnStart.cols-s-1 > *{margin-bottom: 2rem}.ce_columnStart.cols-s-1.col-s-1-12 > *:nth-child(2n + 1){width: 100%;margin-top: 0}.ce_columnStart.cols-s-1.col-s-1-12 > *:nth-child(2n + 2){width: 100%}.ce_columnStart.cols-s-3 > *{margin-bottom: 2rem}.ce_columnStart.cols-s-3.col-s-1-12 > *:nth-child(2n + 1){width: 100%;margin-top: 0}.ce_columnStart.cols-s-3.col-s-1-12 > *:nth-child(2n + 2){width: 100%}}.ce_placeholder{box-sizing: border-box;padding: 1.5rem;margin-bottom: 1.5rem}@media screen and (max-width: 699px){.ce_placeholder{margin-bottom: 1rem}}.ce_placeholder .headline{margin-bottom: 1rem}.ce_placeholder .image_container{margin-bottom: 1rem}.ce_placeholder p{margin-bottom: 0}.ce_placeholder.appearance-layout-1{border: 2px dashed #e6007e}.ce_placeholder.appearance-layout-2{color: white;background-color: #e6007e}.ce_placeholder.appearance-layout-2 p{color: white}.ce_placeholder.appearance-layout-3{border: 2px solid #e6007e}.ce_button{margin-bottom: 1.5rem}.ce_button.alignment-centered{text-align: center}.ce_button.alignment-right{text-align: right}.ce_button .rounded{border-radius: 0.5rem}.ce_button .round{border-radius: 2rem}.ce_button .shadow{margin-bottom: 4px;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.ce_button img.icon{display: inline-block;width: auto;height: 1.25rem;margin-right: 0.5rem;vertical-align: middle}.ce_button a{font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;position: relative;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;display: inline-block;width: auto;cursor: pointer;font-weight: 700}.ce_button a:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.ce_button a:hover{color: #fff;background-color: #505050;border: 1px solid #505050}.ce_button a.border{box-sizing: padding-box;color: #b71c1c;background-color: #fff}.ce_button a.border:hover{color: #fff;background-color: #b71c1c}.ce_button a.width_1{padding: 15px 31px;border: 1px solid #b71c1c}.ce_button a.width_2{padding: 14px 30px;border: 2px solid #b71c1c}.ce_button a.width_3{padding: 13px 29px;border: 3px solid #b71c1c}.ce_button a.width_4{padding: 12px 28px;border: 4px solid #b71c1c}.ce_button a.width_5{padding: 11px 27px;border: 5px solid #b71c1c}.ce_downloads ul{list-style-type: none}.download-element.border{box-sizing: padding-box;color: #b71c1c;background-color: #fff}.download-element.border a{transition: 0s}.download-element.border:hover{color: #fff;background-color: #b71c1c}.download-element.border:hover a,.download-element.border:hover .size{color: #fff}.download-element.border i{float: right;margin-top: 3px}.download-element.width_1{padding: 15px 31px;border: 1px solid #b71c1c}.download-element.width_2{padding: 14px 30px;border: 2px solid #b71c1c}.download-element.width_3{padding: 13px 29px;border: 3px solid #b71c1c}.download-element.width_4{padding: 12px 28px;border: 4px solid #b71c1c}.download-element.width_5{padding: 11px 27px;border: 5px solid #b71c1c}.ce_headline.alignment-centered{text-align: center}.ce_headline.alignment-right{text-align: right}.ce_headline_button{overflow: hidden;margin-bottom: 2rem}@media screen and (max-width: 1024px){.ce_headline_button{text-align: center}}.ce_headline_button.bg{padding: 1.5rem;box-sizing: border-box}.ce_headline_button .headline h1,.ce_headline_button .headline h2,.ce_headline_button .headline h3{display: inline-block;float: left;margin-bottom: 0;line-height: 1.4}@media screen and (max-width: 1280px){.ce_headline_button .headline h1,.ce_headline_button .headline h2,.ce_headline_button .headline h3{line-height: 1.7}}@media screen and (max-width: 699px){.ce_headline_button .headline h1,.ce_headline_button .headline h2,.ce_headline_button .headline h3{display: block;float: none;text-align: center;margin-bottom: 1rem;line-height: 1.3}}.ce_headline_button img.icon{display: inline-block;margin-right: 0.5rem;height: 1.25rem;width: auto;vertical-align: middle}@media screen and (max-width: 1024px){.ce_headline_button img.icon{height: 1rem}}@media screen and (max-width: 699px){.ce_headline_button img.icon{height: 1.25rem}}.ce_headline_button a{float: right;display: inline-block;padding: 16px 32px;margin-left: 0.75rem;width: auto;color: #fff;background-color: #b71c1c;cursor: pointer;font-weight: 700;line-height: 1.5rem;text-align: center}@media screen and (max-width: 1024px){.ce_headline_button a{padding: 8px 16px;font-size: 0.85rem}}@media screen and (max-width: 699px){.ce_headline_button a{float: none;margin-left: 0.375rem;margin-right: 0.375rem;margin-bottom: 0.75rem;font-size: 1rem}}.ce_headline_button a:hover{color: #505050;background-color: #d2d2d2}.ce_headline_button a.border{background-color: #fff;color: #b71c1c}.ce_headline_button a.border:hover{color: #fff;background-color: #b71c1c}.ce_headline_button a.shadow{-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);margin-top: 2px;margin-right: 2px}.ce_headline_button a.rounded{border-radius: 0.5rem}.ce_headline_button a.round{border-radius: 2rem}.ce_headline_button a.width_1{padding: 15px 31px;border: 1px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_1{padding: 7px 15px}}.ce_headline_button a.width_2{padding: 14px 30px;border: 2px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_2{padding: 6px 14px}}.ce_headline_button a.width_3{padding: 13px 29px;border: 3px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_3{padding: 5px 13px}}.ce_headline_button a.width_4{padding: 12px 28px;border: 4px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_4{padding: 4px 12px}}.ce_headline_button a.width_5{padding: 11px 27px;border: 5px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_5{padding: 5px 11px}}.ce_headline_button a::after{clear: both}.ce_separator{margin: 1.5rem 0;text-align: center}@media screen and (max-width: 800px){.ce_separator{margin: 1rem 0}}@media screen and (max-width: 699px){.ce_separator{margin: .5rem 0}}.ce_separator hr{display: inline-block;width: 100%;border-top: 1px solid #d2d2d2;border-bottom: 0 solid #fff}.ce_icon_box,.ce_icon_box_fa{margin-bottom: 1rem;position: relative;text-align: center;transition: all .3s ease;z-index: 1}@media screen and (max-width: 1024px){.ce_icon_box,.ce_icon_box_fa{margin-bottom: 6rem}}@media screen and (max-width: 699px){.ce_icon_box,.ce_icon_box_fa{margin-bottom: 4rem}}.ce_icon_box .icon,.ce_icon_box_fa .icon{margin-bottom: 1.25rem}.ce_icon_box .textbox,.ce_icon_box_fa .textbox{box-sizing: border-box}@media screen and (max-width: 1024px){.ce_icon_box .textbox,.ce_icon_box_fa .textbox{padding: 0 10%}}.ce_icon_box .textbox p,.ce_icon_box_fa .textbox p{margin-bottom: 0.5rem}.ce_icon_box .btn,.ce_icon_box_fa .btn{font-size: 1rem;display: inline-block;margin-top: 0.5rem;padding: .5rem 1rem;color: #505050;border: 1px solid #505050;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_icon_box:hover .btn,.ce_icon_box_fa:hover .btn{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_icon_box .icon.file,.ce_icon_box_fa .icon.file{display: inline-block;width: 5rem;height: 5rem}.ce_icon_box .icon.fa,.ce_icon_box_fa .icon.fa{text-align: center;width: auto}.ce_icon_box .icon.fa i,.ce_icon_box_fa .icon.fa i{font-size: 2.5rem}.ce_icon_box_multiple{position: absolute;bottom: 0;width: 100%;background-color: rgba(60,78,90,0.85);padding: 10px 0}.ce_icon_box_multiple .special{display: flex;margin-left: auto;margin-right: auto;max-width: 1440px}.ce_icon_box_multiple .special > div{width: calc(25% - 2px);text-align: center;border-right: 1px solid rgba(255,255,255,0.5)}.ce_icon_box_multiple .special > div a{display: block;color: white;padding: .75rem 0;transition: all .5s}.ce_icon_box_multiple .special > div a i{margin-right: 0.5rem}.ce_icon_box_multiple .special > div a h3{display: inline-block;text-transform: uppercase;margin-bottom: 0.5rem;font-weight: 600}.ce_icon_box_multiple .special > div a i,.ce_icon_box_multiple .special > div a h3{font-size: 1.25rem}.ce_icon_box_multiple .special > div a:hover{background-color: #b71c1c}.ce_icon_box_multiple .special > div:first-child{border-left: 1px solid rgba(255,255,255,0.5)}@media screen and (max-width: 1440px){.ce_icon_box_multiple .special > div:first-child{border-left: 0}.ce_icon_box_multiple .special > div:last-child{border-right: 0}}.ce_intro .icon i{font-size: 290%;margin-bottom: 2rem}.ce_intro .subheadline{margin-bottom: 1rem}.ce_intro a.more{font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;margin-top: 1rem}.ce_intro a.more:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.ce_intro a.more:hover{color: #fff;background-color: #505050;border: 1px solid #505050}.ce_intro a.more i{margin-left: 1rem}.ce_headline.alignment-centered{text-align: center}.ce_headline.alignment-right{text-align: right}.ce_headline_button{margin-bottom: 2rem}@media screen and (max-width: 1024px){.ce_headline_button{text-align: center}}.ce_headline_button.bg{box-sizing: border-box;padding: 1.5rem}.ce_headline_button .headline h1,.ce_headline_button .headline h2,.ce_headline_button .headline h3{display: inline-block;float: left;margin-bottom: 0;line-height: 1.4}@media screen and (max-width: 1280px){.ce_headline_button .headline h1,.ce_headline_button .headline h2,.ce_headline_button .headline h3{line-height: 1.7}}@media screen and (max-width: 699px){.ce_headline_button .headline h1,.ce_headline_button .headline h2,.ce_headline_button .headline h3{display: block;float: none;margin-bottom: 1rem;text-align: center;line-height: 1.3}}.ce_headline_button img.icon{display: inline-block;width: auto;height: 1.25rem;margin-right: 0.5rem;vertical-align: middle}@media screen and (max-width: 1024px){.ce_headline_button img.icon{height: 1rem}}@media screen and (max-width: 699px){.ce_headline_button img.icon{height: 1.25rem}}.ce_headline_button a{display: inline-block;float: right;width: auto;margin-left: 0.75rem;padding: 16px 32px;cursor: pointer;text-align: center;color: #fff;background-color: #b71c1c;line-height: 1.5rem;font-weight: 700}@media screen and (max-width: 1024px){.ce_headline_button a{padding: 8px 16px}}@media screen and (max-width: 699px){.ce_headline_button a{float: none;margin-right: 0.375rem;margin-bottom: 0.75rem;margin-left: 0.375rem;font-size: 1rem}}.ce_headline_button a:hover{color: #505050;background-color: #d2d2d2}.ce_headline_button a.border{color: #b71c1c;background-color: #fff}.ce_headline_button a.border:hover{color: #fff;background-color: #b71c1c}.ce_headline_button a.shadow{margin-top: 2px;margin-right: 2px;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.ce_headline_button a.rounded{border-radius: 0.5rem}.ce_headline_button a.round{border-radius: 2rem}.ce_headline_button a.width_1{padding: 15px 31px;border: 1px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_1{padding: 7px 15px}}.ce_headline_button a.width_2{padding: 14px 30px;border: 2px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_2{padding: 6px 14px}}.ce_headline_button a.width_3{padding: 13px 29px;border: 3px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_3{padding: 5px 13px}}.ce_headline_button a.width_4{padding: 12px 28px;border: 4px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_4{padding: 4px 12px}}.ce_headline_button a.width_5{padding: 11px 27px;border: 5px solid #b71c1c}@media screen and (max-width: 1024px){.ce_headline_button a.width_5{padding: 5px 11px}}.ce_text_left .inside,.ce_text_right .inside{display: flex;flex-wrap: wrap;flex-basis: calc(960px * 999 - 100% * 999);margin: -1rem}.ce_text_left .text,.ce_text_right .text{flex: 1 1 280px;margin: 1rem 1rem}.ce_text_left ul,.ce_text_right ul{list-style-type: square;margin-bottom: 1.5rem;padding: .5rem 0 0 2.25rem}.ce_text_left ul li,.ce_text_right ul li{margin-bottom: 0.5rem;line-height: 1.4}.ce_text_left .image_container,.ce_text_right .image_container{flex: 1 1 280px;margin: 1rem 1rem}.ce_text_left .image_container img,.ce_text_right .image_container img{width: 100%;height: auto}.tile-list{display: flex;flex-wrap: wrap;justify-content: center;margin-left: -1%;margin-right: -1%}@media screen and (max-width: 699px){.tile-list{margin-left: 0;margin-right: 0}}.tile-list .tile{flex-basis: calc(960px * 999 - 100% * 999);margin: 4px 1% 30px 1%;padding: 0;border: 1px solid #d2d2d2;background-color: #fff;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.tile-list .tile .content{display: flex;flex-wrap: wrap;flex-basis: calc(960px * 999 - 100% * 999)}.tile-list .tile .content > *{flex: 1 1 280px}@media screen and (max-width: 699px){.tile-list .tile{width: calc(100% - 8px);margin: 4px 4px 2rem}}.tile-list .tile .image_container{border: 1px solid #fff;overflow: hidden}.tile-list .tile .image_container img{width: 100%;height: 100%;object-fit: cover;display: block;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.tile-list .tile .textbox{align-self: center;padding: 1em 2em;min-height: 200px}@media screen and (max-width: 1280px){.tile-list .tile .textbox{min-height: 250px}}@media screen and (max-width: 1280px){.tile-list .tile .textbox{min-height: 200px}}@media screen and (max-width: 699px){.tile-list .tile .textbox{min-height: auto}}.tile-list .tile .textbox .teaser{margin-bottom: 5px}.tile-list .tile .textbox .teaser p{margin-bottom: 0}.tile-list .tile .textbox ul{padding-left: 1.75rem}.tile-list .tile h4{margin-top: 0;margin-bottom: 1rem;line-height: 1.2;color: #222;text-transform: none;hyphens: auto;text-align: center}.tile-list .tile p{text-align: center;font-size: 1rem;line-height: 1.6}.tile-list .tile p.info{font-size: 0.85rem;font-weight: 100;color: #505050;margin-bottom: 15px}.tile-list .tile p.more{margin-top: 20px;margin-bottom: 0;color: #b71c1c}.tile-list .tile .button-container{margin-top: 20px;text-align: center}.tile-list .tile:hover{color: rgba(0,145,61,0.65);-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 0 rgba(0,0,0,0);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.tile-list .tile:hover h4{color: rgba(0,145,61,0.65)}.tile-list .tile:hover img{transform: scale(1.1);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.tile-list .tile:hover p.more{color: rgba(0,145,61,0.65)}.tile-list .pagination{margin-left: 1%;margin-right: 1%}.ce_quotation blockquote{margin-bottom: 0.5rem}.ce_quotation blockquote:before{display: inline;margin-right: 0.125rem;content: "\f10d";font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_quotation blockquote:after{display: inline;margin-left: 0.25rem;content: "\f10e";font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_quotation blockquote p{display: inline;margin-bottom: 0;font-style: italic;font-weight: 300}.ce_quotation p.author{font-weight: 300}.ce_link_box{display: flex;-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 0 rgba(0,0,0,0);margin-top: 4px;margin-bottom: 4px}@media screen and (max-width: 699px){.ce_link_box{margin-bottom: 1.5rem}}.ce_link_box .inside{flex: 1 1 auto;position: relative}.ce_link_box .image{position: relative}.ce_link_box .layer{position: absolute;top: 0;left: 0;display: flex;align-items: center;justify-content: center;width: 100%;height: 100%;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}.ce_link_box img.icon{width: auto;height: 25%;transform: scale(0);opacity: 0;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}.ce_link_box .label{position: absolute;z-index: 10;top: 2rem;right: -2.4rem;min-width: 11rem;padding: 0.2rem;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);text-align: center;color: white;line-height: 1.5;font-size: 0.85rem;font-weight: 700}.ce_link_box .textbox{position: relative;display: block;box-sizing: border-box;padding: 2rem}@media screen and (max-width: 699px){.ce_link_box .textbox{padding: 3rem 2rem}}@media screen and (max-width: 480px){.ce_link_box .textbox{padding: 2rem}}.ce_link_box .headline{margin-bottom: 0}.ce_link_box .headline h1,.ce_link_box .headline h2,.ce_link_box .headline h3{margin-bottom: .5rem;font-style: normal;text-transform: uppercase;padding-left: 0;-webkit-hyphens: none;-ms-hyphens: none;hyphens: none}.ce_link_box .subheadline{margin-top: 0.25rem;line-height: 1.2;font-size: 1rem;font-weight: 700}.ce_link_box .copy p{margin-top: 0;margin-bottom: 0}.ce_link_box .overlay .textbox{position: absolute;top: 0;left: 0;display: flex;flex-direction: column;flex-wrap: nowrap;box-sizing: border-box;width: 100%;height: 100%;padding: 10%}.ce_link_box .overlay .textbox .headline h1,.ce_link_box .overlay .textbox .headline h2,.ce_link_box .overlay .textbox .headline h3{margin-bottom: 0;color: white;font-weight: 400;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_link_box .overlay .textbox .subheadline{color: white;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_link_box .overlay .textbox .copy p{color: white;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_link_box.appearance-hover-1{background-color: #b71c1c}.ce_link_box.appearance-hover-1 .layer{z-index: 2;display: flex;align-items: center;justify-content: center;opacity: 0;background: #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.appearance-hover-1 .textbox{background-color: #b71c1c}.ce_link_box.appearance-hover-1 .headline h1,.ce_link_box.appearance-hover-1 .headline h2,.ce_link_box.appearance-hover-1 .headline h3{color: #fff;padding-left: 0}.ce_link_box.appearance-hover-1 .subheadline{color: #fff}.ce_link_box.appearance-hover-1 p.info{margin-top: 1rem;margin-bottom: 0.25rem;color: #fff;font-size: 0.85rem}.ce_link_box.appearance-hover-1 .copy p{color: #fff}.ce_link_box.appearance-hover-1:hover .image_container img{transform: scale(1.05);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.appearance-hover-2{background-color: rgba(0,145,61,0.65)}.ce_link_box.appearance-hover-2 .layer{z-index: 1;display: flex;align-items: center;justify-content: center;opacity: 0;background: rgba(0,145,61,0.65);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.appearance-hover-2 .icon{display: none}.ce_link_box.appearance-hover-2 .image_container{overflow: hidden}.ce_link_box.appearance-hover-2 .image_container img{transform: scale(1);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.appearance-hover-2 .textbox{z-index: 4;background-color: rgba(0,145,61,0.65)}.ce_link_box.appearance-hover-2 .headline h1,.ce_link_box.appearance-hover-2 .headline h2,.ce_link_box.appearance-hover-2 .headline h3{color: #505050}.ce_link_box.appearance-hover-2 .subheadline{color: #505050}.ce_link_box.appearance-hover-2 .overlay .headline h1,.ce_link_box.appearance-hover-2 .overlay .headline h2,.ce_link_box.appearance-hover-2 .overlay .headline h3{margin-bottom: 0;padding-bottom: 0.5rem;border-bottom: 1px solid #fff}.ce_link_box.appearance-hover-2 .overlay .subheadline{margin-top: 0.75rem}.ce_link_box.appearance-hover-2:hover .image_container img{transform: scale(1.05);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.appearance-hover-3 .inside{border: 1px solid #777}.ce_link_box.appearance-hover-3 .textbox{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.appearance-hover-3 .headline h1,.ce_link_box.appearance-hover-3 .headline h2,.ce_link_box.appearance-hover-3 .headline h3{color: #505050}.ce_link_box.appearance-hover-3 .subheadline{color: #505050}.ce_link_box.appearance-hover-3:hover .textbox{top: 100%;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box:hover{-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.ce_link_box:hover .layer{opacity: 0.65;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box:hover img.icon{transform: scale(1);opacity: 1;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_link_box.position-top .textbox{justify-content: flex-start}.ce_link_box.position-center .textbox{justify-content: center}.ce_link_box.position-bottom .textbox{justify-content: flex-end}.ce_link_box.alignment-left .textbox{text-align: left}.ce_link_box.alignment-left .overlay .textbox{align-items: flex-start}.ce_link_box.alignment-centered .textbox{text-align: center}.ce_link_box.alignment-centered .overlay .textbox{align-items: center}.ce_link_box.alignment-right .textbox{text-align: right}.ce_link_box.alignment-right .overlay .textbox{align-items: flex-end}.ce_feature_box li{padding: .5rem 0;list-style-type: none}.ce_feature_box li::before{font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_feature_box .iconbox img{width: auto}.ce_feature_box.appearance-layout-1{box-sizing: border-box;border: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-1 .head{padding: 2rem}.ce_feature_box.appearance-layout-1 .headline h1,.ce_feature_box.appearance-layout-1 .headline h2,.ce_feature_box.appearance-layout-1 .headline h3{margin: 1.5rem 0 0;color: #b71c1c;font-weight: 400}.ce_feature_box.appearance-layout-1 .subheadline{margin: .5rem 0 0;color: #b71c1c}.ce_feature_box.appearance-layout-1 .body{padding: 0 2rem}.ce_feature_box.appearance-layout-1 .text{padding: 1rem 0 0;border-top: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-1 li{position: relative;margin-top: 0.5rem;padding-top: 1rem;padding-left: 3rem;border-top: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-1 li.first{margin-top: 1rem;padding-top: 1rem}.ce_feature_box.appearance-layout-1 li.last{padding-bottom: 1rem;border-bottom: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-1 li::before{position: absolute;left: 0.5rem;display: inline-block;content: "\f00c";color: #777;font-weight: 700}.ce_feature_box.appearance-layout-1 .linkbox{padding: 0 2rem 2rem}.ce_feature_box.appearance-layout-1 a.more{display: inline-block;margin-top: 1.5rem;padding: 1rem 2rem;color: #fff;background-color: #b71c1c;font-size: 1rem;font-weight: 700}.ce_feature_box.appearance-layout-1 a.more:hover{color: #fff;background-color: #505050}.ce_feature_box.appearance-layout-2{box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);margin: 4px 0px;border: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-2 .head{background-color: #b71c1c;padding: 2rem}.ce_feature_box.appearance-layout-2 .head ::selection{background-color: rgba(0,0,0,0.3)}.ce_feature_box.appearance-layout-2 .icon img{margin: 0 auto}.ce_feature_box.appearance-layout-2 .headline h1,.ce_feature_box.appearance-layout-2 .headline h2,.ce_feature_box.appearance-layout-2 .headline h3{margin: 1.5rem 0 0;text-align: center;color: #fff;font-weight: 400}.ce_feature_box.appearance-layout-2 .subheadline{margin: .5rem 0 0;text-align: center;color: #fff}.ce_feature_box.appearance-layout-2 .text{padding: 1rem 2rem 0}.ce_feature_box.appearance-layout-2 li{position: relative;padding: 1.25rem 2rem 1.25rem 5rem;border-top: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-2 li.last{padding-bottom: 1.25rem}.ce_feature_box.appearance-layout-2 li::before{position: absolute;left: 2.5rem;display: inline-block;content: "\f00c";color: #777;font-weight: 700}.ce_feature_box.appearance-layout-2 a.more{display: block;padding: 2rem;text-align: center;color: #fff;background-color: #b71c1c;font-weight: 700}.ce_feature_box.appearance-layout-2 a.more:hover{color: #fff;background-color: #505050}.ce_feature_box.appearance-layout-3{border: 1px solid #f5f5f5}.ce_feature_box.appearance-layout-3 .head{padding: 2rem;background-color: #d2d2d2}.ce_feature_box.appearance-layout-3 .icon img{display: inline-block}.ce_feature_box.appearance-layout-3 .headline h1,.ce_feature_box.appearance-layout-3 .headline h2,.ce_feature_box.appearance-layout-3 .headline h3{margin: 0;color: #505050;font-weight: 400}.ce_feature_box.appearance-layout-3 .subheadline{margin: .5rem 0 0;color: #505050;font-weight: 400}.ce_feature_box.appearance-layout-3 .text{padding: 1rem 2rem 0}.ce_feature_box.appearance-layout-3 li{position: relative;padding: 1.25rem 2rem 1.25rem 5rem}.ce_feature_box.appearance-layout-3 li.last{padding-bottom: 1.5rem}.ce_feature_box.appearance-layout-3 li::before{position: absolute;left: 2.5rem;display: inline-block;content: "\f00c";color: #777;font-weight: 700}.ce_feature_box.appearance-layout-3 li.odd{background-color: #f5f5f5}.ce_feature_box.appearance-layout-3 .linkbox{padding: 0 2rem 2rem}.ce_feature_box.appearance-layout-3 a.more{display: inline-block;padding: 1rem 2rem;color: #fff;background-color: #b71c1c;font-size: 1rem;font-weight: 700}.ce_feature_box.appearance-layout-3 a.more:hover{color: #fff;background-color: #505050}.tabs{margin-bottom: 2rem;position: relative;padding: 2px}.tabs a{color: #b71c1c}.tabs a:hover{color: #505050}.tabs .ce_list{overflow: visible}.tabs ul.tabs-nav{display: flex}.tabs ul.tabs-nav li{position: relative;margin: 1px 2px 0 0;white-space: nowrap;list-style: none;border-bottom-width: 0}.tabs ul.tabs-nav li:last-child{margin-right: 0}.tabs ul.tabs-nav li a,.tabs ul.tabs-nav li strong{display: block;padding: .75rem 1rem;text-decoration: none;color: #505050;border-bottom: 0;background-color: #f5f5f5;transition: all 500ms}.tabs ul.tabs-nav li a:focus,.tabs ul.tabs-nav li strong:focus{outline: 0}.tabs ul.tabs-nav li:not(.active):not(.ui-tabs-active) a:hover,.tabs ul.tabs-nav li strong:hover{background-color: #d2d2d2}.tabs ul li.ui-tabs-active a,.tabs ul li.active a,.tabs ul li.ui-tabs-active strong,.tabs ul li.active strong{padding: .75rem 1rem;color: #fff;border-bottom: 0;background-color: #b71c1c;cursor: default}.tabs ul li.state-disabled a{padding: .75rem 1rem;border: 1px solid #d2d2d2;font-weight: bold;cursor: default;border-bottom: 0;background-color: #d2d2d2}.tabs ul li.tabs-loading a{padding: .75rem 1rem;border: 1px solid #d2d2d2;font-weight: bold;cursor: default;border-bottom: 0;background-color: #d2d2d2}.tabs ul li a{cursor: pointer}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor: pointer}.tab_inside .ce_list ul,.tab_inside .ce_text ul{list-style: square;padding: 0 0 0 1.5rem;margin-bottom: 1.5rem;margin-top: 0}.tab_inside li{line-height: 1.4;margin-bottom: 0.5rem;font-size: 1rem}.ce_teaser_box{display: flex;margin-bottom: 1.5rem}.ce_teaser_box.shadow{-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box.shadow:hover{-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box.zoom img{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box.zoom.zoom:hover img{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;transform: scale(1.17)}.ce_teaser_box .inside{flex: 1 1 auto;padding-bottom: 2rem;overflow: hidden}.ce_teaser_box .image{position: relative;border: 1px solid #fff;overflow: hidden}.ce_teaser_box a img{transform: scale(1);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box .label{position: absolute;z-index: 10;top: 1.8rem;right: -2.6rem;font-size: 0.85rem;min-width: 11rem;padding: .5rem 0;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);text-align: center;color: white;background: #b71c1c;line-height: 1.5;text-shadow: 1px 1px 3px rgba(0,0,0,0.45);font-weight: 700}.ce_teaser_box img{width: 100%;height: auto}.ce_teaser_box .headline{margin-bottom: 1rem;margin-top: 1.5rem}.ce_teaser_box .subheadline{font-size: 1rem;font-weight: 700;margin-bottom: 0.5rem}.ce_teaser_box .textbox{padding: 0 2rem 0}@media screen and (max-width: 699px){.ce_teaser_box .textbox{min-height: auto}}.ce_teaser_box .copy{margin-top: 1rem}.ce_teaser_box .copy ul{margin-left: 1.1rem}.ce_teaser_box p{margin-bottom: 0}.ce_teaser_box .linkbox{padding: 0 2rem}.ce_teaser_box.appearance-layout .headline h1,.ce_teaser_box.appearance-layout .headline h2,.ce_teaser_box.appearance-layout .headline h3{margin-bottom: 0;color: #fff}.ce_teaser_box.appearance-layout-1{background-color: #b71c1c}.ce_teaser_box.appearance-layout-1 a.more{color: #b71c1c;background-color: #fff;font-weight: 400}.ce_teaser_box.appearance-layout-1 a.more:hover{color: #b71c1c;background-color: #505050}.ce_teaser_box.appearance-layout-2 .headline h1,.ce_teaser_box.appearance-layout-2 .headline h2,.ce_teaser_box.appearance-layout-2 .headline h3{color: #505050}.ce_teaser_box.appearance-layout-2 p{color: #505050}.ce_teaser_box.appearance-layout-2 .image{overflow: hidden}.ce_teaser_box.appearance-layout-2 a.more{color: #fff;background-color: #b71c1c}.ce_teaser_box.appearance-layout-2 a.more:hover{color: #b71c1c;background-color: #505050}.ce_teaser_box.appearance-layout-3 .inside{border: 1px solid #d2d2d2}.ce_teaser_box.appearance-layout-3 .headline h1,.ce_teaser_box.appearance-layout-3 .headline h2,.ce_teaser_box.appearance-layout-3 .headline h3{color: #505050}.ce_teaser_box.appearance-layout-3 p{color: #505050}.ce_teaser_box.appearance-layout-3 a.more{padding: .75rem 2rem;border: 1px solid #b71c1c;font-weight: 400}.ce_teaser_box.appearance-layout-3 a.more:hover{color: #b71c1c;border: 1px solid #b71c1c;background-color: #b71c1c}body.column-left .ce_columnStart > .ce_teaser_box{flex: 1 1 310px}.ce_image_advanced img{max-width: 100%;height: auto}@media screen and (max-width: 699px){.ce_image_advanced{margin-bottom: 1rem}}.ce_image_advanced.rounded img{border-radius: 0.5rem}.ce_image_advanced.round img{border-radius: 50%}.ce_image_advanced.round .caption{text-align: center}.ce_image_advanced.shadow .image_container{box-sizing: border-box;padding: 8px}.ce_image_advanced.shadow img{-webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 8px 0 rgba(0,0,0,0.35);box-shadow: 0 0 8px 0 rgba(0,0,0,0.35)}.ce_image_advanced.border img{color: #b71c1c}.ce_image_advanced.width_1 img{width: calc(100% - 2px);border: 1px solid #b71c1c}.ce_image_advanced.width_2 img{width: calc(100% - 4px);border: 2px solid #b71c1c}.ce_image_advanced.width_3 img{width: calc(100% - 6px);border: 3px solid #b71c1c}.ce_image_advanced.width_4 img{width: calc(100% - 8px);border: 4px solid #b71c1c}.ce_image_advanced.width_5 img{width: calc(100% - 10px);border: 5px solid #b71c1c}.ce_section_image{overflow: hidden;position: relative}.ce_section_image .inside{position: relative}.ce_section_image img{width: 100%;height: auto}.ce_section_image .textbox{position: absolute;top: 0;left: 0;display: flex;flex-direction: column;flex-wrap: nowrap;box-sizing: border-box;width: 100%;height: 100%;padding: 4vh 10%}@media screen and (max-width: 1366px){.ce_section_image .textbox{padding: 6vh 4vw}}@media screen and (max-width: 1366px){.ce_section_image .textbox{padding-right: 2.5rem;padding-left: 2.5rem}}@media screen and (max-width: 699px){.ce_section_image .textbox{padding-right: 1.5rem;padding-left: 1.5rem}}.ce_section_image .textbox.position-top{justify-content: flex-start}.ce_section_image .textbox.position-center{justify-content: center}.ce_section_image .textbox.position-bottom{justify-content: flex-end}.ce_section_image .textbox.alignment-left{align-items: flex-start}.ce_section_image .textbox.alignment-center{align-items: center}.ce_section_image .textbox.alignment-right{align-items: flex-end}.ce_section_image .headline,.ce_section_image .subheadline,.ce_section_image .text{flex: 1 0 auto;color: #fff;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_section_image .headline p,.ce_section_image .subheadline p,.ce_section_image .text p{margin-bottom: 0;color: #fff;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_section_image .headline{display: inline-block;line-height: 1.2;font-weight: 700}.ce_section_image .subheadline{margin-bottom: 1rem;padding-bottom: 1rem}.ce_section_image a.more{margin-top: 3vh}.xl-parallax .mod_article{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.xl-parallax .mod_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.xl-parallax .mod_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.xl-parallax .mod_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.xl-parallax .mod_article{padding-left: 1.5rem;padding-right: 1.5rem}}.ce_section_parallax,.parallax .ce_intro,.xl-parallax .ce_intro{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-content: flex-start}.ce_section_parallax .inside,.parallax .ce_intro .inside,.xl-parallax .ce_intro .inside{margin-top: 2rem;margin-bottom: 2rem;width: 100%;flex: 0 1 auto}@media screen and (max-width: 800px){.ce_section_parallax .inside,.parallax .ce_intro .inside,.xl-parallax .ce_intro .inside{flex-direction: column;flex: 1 1 auto}}.ce_section_parallax .inside .content,.parallax .ce_intro .inside .content,.xl-parallax .ce_intro .inside .content{display: flex}.ce_section_parallax .inside .content > div,.parallax .ce_intro .inside .content > div,.xl-parallax .ce_intro .inside .content > div{width: 50%;padding: 2rem;box-sizing: border-box}@media screen and (max-width: 800px){.ce_section_parallax .inside .content > div,.parallax .ce_intro .inside .content > div,.xl-parallax .ce_intro .inside .content > div{width: 100%;padding: 2rem}.ce_section_parallax .inside .content .left,.parallax .ce_intro .inside .content .left,.xl-parallax .ce_intro .inside .content .left{padding-bottom: 0}.ce_section_parallax .inside .content .right,.parallax .ce_intro .inside .content .right,.xl-parallax .ce_intro .inside .content .right{padding-top: 0}}.ce_section_parallax.position-top,.parallax .ce_intro.position-top,.xl-parallax .ce_intro.position-top{align-items: flex-start}.ce_section_parallax.position-center,.parallax .ce_intro.position-center,.xl-parallax .ce_intro.position-center{align-items: center}.ce_section_parallax.position-bottom,.parallax .ce_intro.position-bottom,.xl-parallax .ce_intro.position-bottom{align-items: flex-end}.ce_section_parallax .headline,.parallax .ce_intro .headline,.xl-parallax .ce_intro .headline,.ce_section_parallax .subheadline,.parallax .ce_intro .subheadline,.xl-parallax .ce_intro .subheadline,.ce_section_parallax .text,.parallax .ce_intro .text,.xl-parallax .ce_intro .text{text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_section_parallax .headline p,.parallax .ce_intro .headline p,.xl-parallax .ce_intro .headline p,.ce_section_parallax .subheadline p,.parallax .ce_intro .subheadline p,.xl-parallax .ce_intro .subheadline p,.ce_section_parallax .text p,.parallax .ce_intro .text p,.xl-parallax .ce_intro .text p{margin-bottom: 0;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_section_parallax .subheadline,.parallax .ce_intro .subheadline,.xl-parallax .ce_intro .subheadline{margin-top: 0.25rem;line-height: 1.2}.ce_section_parallax .subheadline hr,.parallax .ce_intro .subheadline hr,.xl-parallax .ce_intro .subheadline hr{width: 50%;max-width: 200px;margin: 1.5rem auto;height: 0;border-top: 1px solid #fff;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.ce_section_parallax .text,.parallax .ce_intro .text,.xl-parallax .ce_intro .text{margin-top: 1rem}.parallax{background-size: cover;background-attachment: fixed;background-position: center center;background-repeat: no-repeat;display: flex;min-height: 500px}@media screen and (max-width: 800px){.parallax{background-attachment: scroll}}.parallax.ratio_content{height: auto}.parallax.ratio_3_1{height: 33.33vh}.parallax.ratio_16_9{height: 56.25vh}@media screen and (max-width: 800px){.parallax.ratio_16_9{height: 50vh}}.parallax.ratio_4_3{height: 75vh}@media screen and (max-width: 800px){.parallax.ratio_4_3{height: 50vh}}.parallax.ratio_100{height: 100vh}@media screen and (max-width: 800px){.parallax.ratio_100{height: 50vh}}.parallax .inside{flex: 1}.parallax .inside hr{margin-bottom: 2rem}.alignment-left{text-align: left}.alignment-centered{text-align: center}.alignment-right{text-align: right}.position-top{justify-content: flex-start}.position-center{justify-content: center}.position-bottom{justify-content: flex-end}.position-bottom .article_inside > *{height: 100%}table.bt thead,table.bt tbody th{display: none}table.bt tfoot th,table.bt tfoot td,table.bt tbody td{border: none;display: block;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;vertical-align: top;float: left\9;width: 100%\9}table.bt tfoot th::before,table.bt tfoot td::before,table.bt tbody td::before{content: attr(data-th) ": ";display: inline-block;-webkit-flex-shrink: 0;-ms-flex-shrink: 0;flex-shrink: 0;font-weight: bold;width: 6.5em}table.bt tfoot th.bt-hide,table.bt tfoot td.bt-hide,table.bt tbody td.bt-hide{display: none}table.bt tfoot th .bt-content,table.bt tfoot td .bt-content,table.bt tbody td .bt-content{vertical-align: top}.bt-wrapper.active{max-height: 310px;overflow: auto;-webkit-overflow-scrolling: touch}table.bt.bt--no-header tfoot td::before,table.bt.bt--no-header tbody td::before{display: none}.mod_search .widget-text{width: 84%;float: left}@media screen and (max-width: 800px){.mod_search .widget-text{width: 74%}}@media screen and (max-width: 480px){.mod_search .widget-text{width: 100%;float: none;margin-bottom: .625rem}}.mod_search .widget-text input[type="search"]{width: 99%}@media screen and (max-width: 480px){.mod_search .widget-text input[type="search"]{width: 99.9%}}.mod_search .widget-submit{width: 15%;float: right}@media screen and (max-width: 800px){.mod_search .widget-submit{width: 25%}}@media screen and (max-width: 480px){.mod_search .widget-submit{width: 100%;float: none}}.mod_search .widget-submit button{width: 100%;margin: 0;padding: .75rem 0;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;color: #fff;background-color: #b71c1c;-webkit-border-radius: 1px;-moz-border-radius: 1px;-ms-border-radius: 1px;border-radius: 1px}.mod_search .widget-submit button:hover{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;color: #fff;background-color: #505050}.mod_search .even,.mod_search .odd{max-width: 83%;border-top: 1px solid #b4b4b4;margin-top: 2rem;padding-top: 2rem}@media screen and (max-width: 1366px){.mod_search .even,.mod_search .odd{max-width: 100%}}.mod_search h3{margin-top: 0;margin-bottom: .5rem}.mod_search h3 a{color: #b71c1c}.mod_search .highlight{color: #b71c1c;background-color: transparent;font-weight: 400}.mod_search p.url{color: #b71c1c;font-size: 0.85rem}.mod_search span.relevance{font-size: 0.85rem;font-weight: 300}.mod_search span.filesize{color: #222;font-size: 0.85rem}.mod_search p.context{margin-bottom: .5rem}.mod_search p.header{clear: left}.mod_search .info{margin-top: 1.25rem}.mod_search .info p{color: #b71c1c;margin-bottom: 6px}.search-trigger{display: block;float: right}a.nav_toggler,button.nav_toggler{display: inline-block;padding: .625rem 1rem .5rem;cursor: pointer;text-align: center;color: #b71c1c;border: 0;background-color: transparent;font-family: 'Font Awesome 5 Free';font-weight: 700;font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}a.nav_toggler:hover,button.nav_toggler:hover{color: #505050;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}a.nav_toggler:focus,button.nav_toggler:focus{outline: none}a.nav_toggler#hide,button.nav_toggler#hide{margin-top: 20px}a.nav_toggler#hide:hover,button.nav_toggler#hide:hover{color: #222;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}a.nav_toggler#hide::before,button.nav_toggler#hide::before{content: '\E809'}a.nav_toggler#show:hover,button.nav_toggler#show:hover{color: #b71c1c;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}a.nav_toggler#show::before,button.nav_toggler#show::before{content: '\f0c9'}.ce_comments .formbody{display: flex;flex-wrap: wrap}.ce_comments .item_rating,.ce_comments .widget-submit{width: 50%}.ce_comments .item_rating{float: left}.ce_comments .widget-submit{float: right;text-align: right}.cookiebox{display: none;position: fixed;top: 0;left: 0;z-index: 9999;overflow: hidden;-webkit-transform: translate3d(0, 0, 0);background: rgba(0,0,0,0.7);height: 100%;width: 100%}.cookiebox.cookiebox--active{display: block}.cookiebox-hide .cookiebox.cookiebox--active{display: none}.cookiebox .inside{position: relative;top: 30%;width: 93%;min-width: 18rem;max-width: 25rem;margin: auto;background-color: #fff;box-shadow: 0 4px 8px rgba(0,0,0,0.2);border-radius: 3px;padding: 2em 1.5rem 2rem}.cookiebox__text{font-size: 0.85rem;line-height: 1.5}.cookiebox__button.accept{font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;padding: .5rem 4rem}.cookiebox__button.accept:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.cookiebox__button.accept:hover{color: #fff;background-color: #505050;border: 1px solid #505050}.cookiebox__button.denied{border: none;background-color: #f6f6f6;color: #777;cursor: pointer;float: right;font-size: 1rem;border-radius: 3px;padding: .5rem 1rem}@media screen and (max-width: 699px){.cookiebox__button{padding: 0.75rem !important;width: 100% !important;margin-bottom: 1rem}}.cookiebox .links{clear: both;margin-top: 2rem;text-align: center;font-size: 12px}.cookiebox .links a{padding: 1.8rem .4rem}.cookiebox__message{margin-right: 0.25rem}@media screen and (max-width: 480px){.cookiebox__analytics{margin-top: 1rem}}.cookiebox__analytics-label{margin: 0;line-height: 1}input.cookiebox__analytics-checkbox{display: inline-block;vertical-align: top;width: 16px;height: 16px}span.cookiebox__analytics-text{display: inline-block;vertical-align: middle;height: 16px;font-size: 0.85rem;font-weight: 400}.mod_faqlist .faq_category{width: 100%}.mod_faqlist .faq_item{padding: .4rem 1rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;box-sizing: border-box;margin-bottom: 0.5rem}.mod_faqlist .faq_item .question.toggler{font-size: 1.5rem;font-weight: 600;padding: .5rem .5rem .5rem 2rem}.mod_faqlist .faq_item.appearance-1{padding: .5rem 1rem;margin-bottom: 0.5rem}.mod_faqlist .faq_item.appearance-2{border-color: #505050;background-color: #f6f6f6}.mod_faqlist .faq_item.appearance-2 *:not(input),.mod_faqlist .faq_item.appearance-2 .explain{color: white}.mod_faqlist .faq_item div.widget input{background-color: white}.mod_faqlist .faq_item div.widget-textarea textarea{background-color: white}.mod_faqlist .faq_item.highlightbox-flex{display: flex;flex-wrap: wrap;margin-bottom: 1.25rem;width: 100%}.mod_faqlist .faq_item.highlightbox-flex .widget{margin-bottom: 0}.mod_faqlist .faq_item.highlightbox-flex .widget p.error{font-weight: bold}.layout_list .date,.layout_full .date,.layout_simple .date{display: inline-block;padding: .25rem .5rem;margin-bottom: .5rem;color: #505050;font-size: 0.85rem}.layout_latest .headline{margin-bottom: 0.75rem;font-weight: 700;text-transform: uppercase}.layout_latest .headline a:hover{color: #b71c1c}.layout_latest .date{font-size: 0.85rem;margin-bottom: .5rem}.layout_latest .more a{display: inline-block;margin-top: 0.5rem;padding: .25rem 0;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;font-weight: 700;min-width: 8rem}.layout_latest .more a:hover{color: #fff;background-color: #505050;border: 1px solid #505050;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.layout_list{flex: 0 1 auto;width: calc(50% - 2rem);margin-bottom: 4rem;padding-top: 2rem;border-top: 1px solid #505050}@media screen and (max-width: 800px){.layout_list{width: 100%;margin-bottom: 4rem}}.layout_list .head{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-items: center;align-content: stretch;text-align: center;color: #505050}.layout_list .date{display: inline-block;padding: .25rem .5rem;background-color: rgba(255,255,255,0.9);margin-bottom: .5rem;color: #222;font-size: 0.85rem}.layout_list .headline{margin-top: 1rem;font-family: 'Poppins', sans-serif;text-transform: none}.layout_list .teaser p{margin-bottom: 0}.layout_list p.more{margin-top: 1rem}.layout_list p.more a{display: inline-block;margin-top: 0.5rem;padding: .25rem 0;color: #b71c1c;background-color: transparent;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;min-width: 8rem;text-align: center}.layout_list p.more a:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.layout_list .foot{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-between;align-items: stretch;align-content: stretch}.layout_list .author,.layout_list .sharebuttons{flex: 1 1 auto}.layout_list .author{color: #d2d2d2;align-self: center}@media screen and (max-width: 699px){.layout_list .author{font-size: 1rem}}.layout_list .sharebuttons ul{text-align: right}.layout_list .sharebuttons > ul.theme > li{float: none;display: inline-block}.news_column{display: flex;display: -webkit-flex;flex-wrap: nowrap;flex-direction: column;justify-content: flex-start;align-content: flex-start}.news_column .layout_column{position: relative;padding-top: 3rem;padding-bottom: 3rem;border-top: 1px solid #fff;border-bottom: 1px solid #d2d2d2}@media screen and (max-width: 1024px){.news_column .layout_column{padding-bottom: 0;border-top: 0px solid #fff;border-bottom: 0px solid #d2d2d2}}.news_column .layout_column .box{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-items: stretch;align-content: stretch}@media screen and (max-width: 1024px){.news_column .layout_column .box{flex-wrap: wrap;flex-direction: column}}.news_column .layout_column .lft{flex: 0 0 auto;width: 4rem;margin-right: 2rem;padding-right: 1.5rem;border-right: 1px solid #d2d2d2}@media screen and (max-width: 1024px){.news_column .layout_column .lft{width: 100%;margin-right: 0;padding-right: 0;border-right: 0px solid #d2d2d2;margin-bottom: 1rem;padding-bottom: 1rem;border-bottom: 1px solid #d2d2d2}}.news_column .layout_column .mdl{flex: 1 1 auto;margin-right: 1rem}@media screen and (max-width: 1024px){.news_column .layout_column .mdl{width: 100%;margin-right: 0}}.news_column .layout_column .rght{flex: 0 0 auto;width: 16rem;margin-right: 1rem;display: flex;flex-wrap: wrap;align-items: center}@media screen and (max-width: 1024px){.news_column .layout_column .rght{flex: 1 0 auto;margin-top: 1rem;flex-direction: column;align-items: flex-start;width: 100%;margin-right: 0}}.news_column .layout_column .headline h2{margin-bottom: 1rem}.news_column .layout_column .teaser{width: 80%}.news_column .layout_column .teaser p{margin-bottom: 0}@media screen and (max-width: 1024px){.news_column .layout_column .image_container{width: 100%}}@media screen and (max-width: 1024px){.news_column .layout_column img{width: 100%;height: auto}}.news_column .layout_column figcaption{margin-top: 0.5rem}.news_column .layout_column .first{border-top: 0;padding-top: 0}.news_column .blog .teaser{clear: both}.news_column time .date{text-align: center}.news_column time .year{color: #d2d2d2}.news_column time .day{margin: 0;padding: 0;text-align: center;font-size: 3rem;font-weight: 300;color: #d2d2d2}@media screen and (max-width: 1024px){.news_column time .day{text-align: left}}.news_column time .month{color: #d2d2d2;text-align: center}@media screen and (max-width: 1024px){.news_column time .month{text-align: left}}.mod_newsreader .layout_full .ce_image{margin-bottom: 1.5rem}.mod_newsreader .layout_full .subheadline{margin-bottom: 2rem}.mod_newsreader .layout_full h1{font-size: 3rem;color: #222;margin-bottom: 1rem;text-align: left}@media screen and (max-width: 1024px){.mod_newsreader .layout_full h1{font-size: 1.6rem}}@media screen and (max-width: 480px){.mod_newsreader .layout_full h1{font-size: 1.4rem}}.mod_newsreader .info_container{color: #505050;border-bottom: 1px solid #f5f5f5;padding-bottom: 0.15rem;margin-bottom: 1rem;font-weight: 300}.mod_newsreader .news_location,.mod_newsreader .date{display: inline-block}.mod_newsreader .date{max-width: 14rem;padding-top: 1rem;padding-left: 0;font-size: 1rem}.mod_newsreader img{width: 100%;height: auto}.mod_newsreader figcaption{background-color: #f5f5f5;margin-top: 0}.mod_newsreader figcaption span{padding: 1rem;display: block}.mod_newsreader .ce_text{margin-top: 2rem}.mod_newsreader p.back{margin-bottom: 1.25rem}.mod_newsmenu a{list-height: 1.5}.mod_newsmenu .year{padding-top: 1rem;border-top: 1px solid #505050}.mod_newsmenu ul.level_1{margin-top: .5rem}.mod_newsmenu ul.level_2{margin-top: 1rem;padding-block: 1rem}.mod_newsmenu ul.level_2 li{margin-bottom: .75rem}.mod_newsmenu ul.level_2 li a,.mod_newsmenu ul.level_2 li strong{padding-top: 0;border-top: 0px solid #505050}@media screen and (max-width: 800px){.mod_newsarchive{margin-top: 2rem;border-top: 1px solid #505050;padding-top: 2rem}}.mod_newsarchive .layout_simple{margin-bottom: .75rem}.mod_newslist.slick-columns{display: flex;display: -webkit-flex;flex-wrap: nowrap;flex-direction: column;justify-content: flex-start;align-content: flex-start}.mod_newslist.slick-columns .layout_column{position: relative;padding-top: 3rem;padding-bottom: 3rem;border-top: 1px solid #fff;border-bottom: 1px solid #d2d2d2}.mod_newslist.slick-columns .layout_column .box{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-items: stretch;align-content: stretch}.mod_newslist.slick-columns .layout_column .lft{flex: 0 0 auto;width: 4rem;margin-right: 2rem;padding-right: 1.5rem;border-right: 1px solid #d2d2d2}.mod_newslist.slick-columns .layout_column .mdl{flex: 0 0 auto;width: 16rem;margin-right: 2rem;display: flex;flex-wrap: wrap;align-items: center}.mod_newslist.slick-columns .layout_column .rght{flex: 1 1 auto}.mod_newslist.slick-columns .layout_column .headline h2{margin-bottom: 1rem}.mod_newslist.slick-columns .layout_column .teaser{width: 80%}.mod_newslist.slick-columns .layout_column .teaser p{margin-bottom: 0}.mod_newslist.slick-columns .layout_column .first{border-top: 0;padding-top: 0}.mod_newslist.slick-columns a{color: #b71c1c}.mod_newslist.slick-columns a:hover{color: #505050}.mod_newslist.slick-columns .blog .teaser{clear: both}.mod_newslist.slick-columns time .date{text-align: center}.mod_newslist.slick-columns time .year{color: #777}.mod_newslist.slick-columns time .day{margin: 0;padding: 0;text-align: center;font-size: 3rem;font-weight: 300;color: #777}.mod_newslist.slick-columns time .month{color: #777;text-align: center}.dlh_googlemap{position: relative}@media screen and (max-width: 800px){.dlh_googlemap{padding-bottom: 56.25% !important}}@media screen and (max-width: 699px){.dlh_googlemap{padding-bottom: 75% !important}}@media screen and (max-width: 480px){.dlh_googlemap{padding-bottom: 100% !important}}#confirm-googlemaps{position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100% !important;height: 100% !important;padding: 3%;background-color: #777;box-sizing: border-box}#confirm-googlemaps p{color: white}#confirm-googlemaps a{color: white;text-decoration: underline}#confirm-googlemaps a:hover{color: white;text-decoration: none}@charset "UTF-8";.slick-slider{position: relative;display: block;box-sizing: border-box;-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;overflow: visible}.slick-list{position: relative;overflow: hidden;display: block;margin: 0;padding: 0}.slick-list:focus{outline: none}.slick-list.dragging{cursor: pointer;cursor: hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}.slick-track{position: relative;left: 0;top: 0;display: block;margin-left: auto;margin-right: auto}.slick-track:after,.slick-track:before{content: "";display: table}.slick-track:after{clear: both}.slick-loading .slick-track{visibility: hidden}.slick-slide{float: left;min-height: 1px;display: none}[dir="rtl"] .slick-slide{float: right}.slick-slide img{display: block}.slick-slide.slick-loading img{display: none}.slick-slide.dragging img{pointer-events: none}.slick-initialized .slick-slide{display: block}.slick-loading .slick-slide{visibility: hidden}.slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent}.slick-arrow.slick-hidden{display: none}.slick-loading .slick-list{background: #fff url("/files/theme/misc/ajax-loader.gif") center center no-repeat}.slick-next,.slick-prev{position: absolute;display: block;height: 80px;width: 28px;line-height: 0;font-size: 0;cursor: pointer;background: #fff;color: transparent;top: 50%;-webkit-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);padding: 0;border: none;outline: none;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);z-index: 1;border-radius: 2px}.slick-next:focus,.slick-prev:focus,.slick-next:hover,.slick-prev:hover{outline: none;background: #fff;color: transparent}.slick-next:focus:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-prev:hover:before{opacity: 1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity: .25}.slick-next:before,.slick-prev:before{font-family: "Font Awesome 5 Free";font-size: 20px;font-weight: 700;line-height: 1;color: #000;opacity: .75;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale}.slick-prev{left: -25px}[dir="rtl"] .slick-prev{left: auto;right: -25px}.slick-prev:before{content: "\f053"}[dir="rtl"] .slick-prev:before{content: "\f054"}.slick-next{right: -25px}[dir="rtl"] .slick-next{left: -25px;right: auto}.slick-next:before{content: "\f054"}[dir="rtl"] .slick-next:before{content: "\f053"}.slick-dotted .slick-slider{margin-bottom: 30px}.slick-dots{position: absolute;bottom: -25px;list-style: none;display: block;text-align: center;padding: 0;margin: 0;width: 100%}.slick-dots li{position: relative;display: inline-block;height: 20px;width: 20px;margin: 0 5px;padding: 0;cursor: pointer}.slick-dots li button{border: 0;background: transparent;display: block;height: 20px;width: 20px;outline: none;line-height: 0;font-size: 0;color: transparent;padding: 5px;cursor: pointer}.slick-dots li button:focus,.slick-dots li button:hover{outline: none}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity: 1}.slick-dots li button:before{position: absolute;top: 0;left: 0;content: "\f111";width: 20px;height: 20px;font-family: "Font Awesome 5 Free";font-size: 6px;line-height: 20px;text-align: center;color: #b71c1c;opacity: .25;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale}.slick-dots li.slick-active button:before{color: #b71c1c;opacity: .75}.mod_newslist.slick-slider{width: 100%}.mod_newslist.slick-slider .slick-list{width: calc(100% - 62px);margin: auto}.mod_newslist.slick-slider .slick-list .layout_latest{margin: 4px 1rem;position: relative}.mod_newslist.slick-slider .slick-list .layout_latest .act_buttons{position: absolute;right: 0.5rem;bottom: 1rem}.mod_newslist.slick-slider .slick-prev{left: 3px}.mod_newslist.slick-slider .slick-next{right: 3px}.mod_pageImage{margin-bottom: 3rem}@media screen and (max-width: 800px){.mod_pageImage{margin-bottom: 2rem}}@media screen and (max-width: 699px){.mod_pageImage{margin-bottom: 1.5rem}}.no_pageimage .mod_pageImage,.no_header .mod_pageImage{display: none}.shariff li .fab,.shariff li .far,.shariff li .fas{width: auto}.shariff .orientation-horizontal{flex-wrap: nowrap;-webkit-justify-content: flex-end;justify-content: flex-end}@media screen and (max-width: 1024px){.shariff .orientation-horizontal{-webkit-justify-content: flex-start;justify-content: flex-start}}.shariff .orientation-horizontal li{display: inline-block;float: none;width: auto;margin-bottom: 0;margin-left: 1rem}.shariff .theme-grey .shariff-button,.shariff .theme-white .shariff-button{border: 0 solid #fff}.shariff .theme-grey .shariff-button a,.shariff .theme-white .shariff-button a{background-color: transparent}.shariff .theme-grey .shariff-button a:hover,.shariff .theme-white .shariff-button a:hover{background-color: transparent}.shariff .theme-grey .facebook a,.shariff .theme-white .facebook a,.shariff .theme-grey .twitter a,.shariff .theme-white .twitter a,.shariff .theme-grey .xing a,.shariff .theme-white .xing a,.shariff .theme-grey .linkedin a,.shariff .theme-white .linkedin a{color: #fff}@media only screen and (min-width: 360px){.shariff .orientation-horizontal li{margin-right: 0.5rem}}.widget-calendar{position: relative}.widget-calendar input{display: inline-block}.widget-calendar img{position: absolute;right: 0.5rem;top: 50%;height: 1.5rem;width: auto;vertical-align: sub;cursor: pointer}.ui-datepicker{background-color: #fff;border: 1px solid #c5c5c5;border-radius: 3px;padding: 3px;font-size: 85%}.ui-datepicker .ui-widget-header{border: 1px solid #ddd;background: #f6f6f6;color: #333333;font-weight: bold;height: 41px;padding: 0;position: relative}.ui-datepicker .ui-datepicker-title select{border-bottom: 0;background-color: #f6f6f6}.ui-datepicker .ui-datepicker-title .ui-datepicker-year{margin-left: 2%;margin-right: 0%}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position: absolute;top: 2px;width: 1.8em;height: 1.8em;top: 0px;height: 100%}.ui-datepicker .ui-datepicker-prev:hover,.ui-datepicker .ui-datepicker-next:hover{cursor: pointer}.ui-datepicker select{width: 48%;margin-right: 2%;float: left;padding-right: 0.325rem;border: 0;background-position: 84% 12px}.ui-datepicker .ui-datepicker-prev{left: 2px;left: 0px}.ui-datepicker .ui-datepicker-next{right: 2px;right: 0px}.ui-datepicker .ui-datepicker-title{margin: 0 2.3em;line-height: 1.8em;text-align: center}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display: block;position: absolute;left: 50%;margin-left: -8px;top: 50%;margin-top: -8px}.ui-datepicker .ui-datepicker-next span{background-position-x: -48px;margin-left: -7px}.ui-datepicker .ui-icon{display: block;text-indent: -99999px;overflow: hidden;background-repeat: no-repeat;left: .5em;top: .3em}.ui-datepicker .ui-icon,.ui-datepicker .ui-widget-content .ui-icon{background-image: url(/files/theme/misc/jquery-ui-icons.png);background-position-x: -80px;background-position-y: -192px;background-repeat-x: no-repeat;background-repeat-y: no-repeat;color: #333;display: block;font-family: Arial, Helvetica, sans-serif;font-size: 16px;font-weight: 700;height: 16px;left: 14.3906px;margin-left: -8px;margin-top: -8px;overflow-x: hidden;overflow-y: hidden;position: absolute;text-indent: -99999px;top: 14.3906px;vertical-align: middle;width: 16px}.ui-datepicker td{padding: 1px}.ui-datepicker .ui-datepicker-calendar a{border: 1px solid #eaeaea;background: #f6f6f6;font-weight: normal;color: #454545;padding: 3px 6px;display: block;text-align: center}.ui-datepicker .ui-datepicker-calendar a:hover{background: #e1e1e1}.ui-datepicker .ui-datepicker-calendar .ui-state-active{background-color: #b71c1c;border: 1px double #981717;color: #fff}.ui-slider{position: relative;text-align: left;margin-bottom: 2rem;border: 1px solid #c5c5c5}.ui-slider .ui-widget-header{border: 1px solid #ddd;background: #e9e9e9;color: #333333;font-weight: bold}.ui-slider .ui-state-default{border: 1px solid #c5c5c5;background: #f6f6f6;font-weight: normal;color: #454545;border-radius: 50%}.ui-slider .ui-slider-handle{position: absolute;z-index: 2;width: 15px;height: 15px;cursor: default;-ms-touch-action: none;touch-action: none}.ui-slider .ui-slider-range{position: absolute;z-index: 1;font-size: .7em;display: block;border: 0;background-position: 0 0}.ui-slider-horizontal{height: 3px}.ui-slider-horizontal .ui-slider-handle{top: -7px;margin-left: -.6em}.ui-slider-horizontal .ui-slider-range{top: 0;height: 100%}.ui-slider-horizontal .ui-slider-range-min{left: 0}.ui-slider-horizontal .ui-slider-range-max{right: 0}/*!
 * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */.fa,.fas,.far,.fal,.fad,.fab{-moz-osx-font-smoothing: grayscale;-webkit-font-smoothing: antialiased;display: inline-block;font-style: normal;font-variant: normal;text-rendering: auto;line-height: 1}.fa-lg{font-size: 1.33333333em;line-height: .75em;vertical-align: -.0667em}.fa-xs{font-size: .75em}.fa-sm{font-size: .875em}.fa-1x{font-size: 1em}.fa-2x{font-size: 2em}.fa-3x{font-size: 3em}.fa-4x{font-size: 4em}.fa-5x{font-size: 5em}.fa-6x{font-size: 6em}.fa-7x{font-size: 7em}.fa-8x{font-size: 8em}.fa-9x{font-size: 9em}.fa-10x{font-size: 10em}.fa-fw{text-align: center;width: 1.25em}.fa-ul{list-style-type: none;margin-left: 2.5em;padding-left: 0}.fa-ul > li{position: relative}.fa-li{left: -2em;position: absolute;text-align: center;width: 2em;line-height: inherit}.fa-border{border-radius: .1em;border: solid .08em #eee;padding: .2em .25em .15em}.fa-pull-left{float: left}.fa-pull-right{float: right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right: .3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left: .3em}.fa-spin{animation: fa-spin 2s infinite linear}.fa-pulse{animation: fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform: rotate(0deg)}100%{transform: rotate(360deg)}}.fa-rotate-90{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform: rotate(90deg)}.fa-rotate-180{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform: rotate(180deg)}.fa-rotate-270{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform: rotate(270deg)}.fa-flip-horizontal{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform: scale(-1, 1)}.fa-flip-vertical{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform: scale(1, -1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform: scale(-1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-flip-both{filter: none}.fa-stack{display: inline-block;height: 2em;line-height: 2em;position: relative;vertical-align: middle;width: 2em}.fa-stack-1x,.fa-stack-2x{left: 0;position: absolute;text-align: center;width: 100%}.fa-stack-1x{line-height: inherit}.fa-stack-2x{font-size: 2em}.fa-inverse{color: #fff}.fa-address-book:before{content: "\f2b9"}.fa-address-card:before{content: "\f2bb"}.fa-angle-double-down:before{content: "\f103"}.fa-angle-double-left:before{content: "\f100"}.fa-angle-double-right:before{content: "\f101"}.fa-angle-double-up:before{content: "\f102"}.fa-angle-down:before{content: "\f107"}.fa-angle-left:before{content: "\f104"}.fa-angle-right:before{content: "\f105"}.fa-angle-up:before{content: "\f106"}.fa-archive:before{content: "\f187"}.fa-arrow-alt-circle-down:before{content: "\f358"}.fa-arrow-alt-circle-left:before{content: "\f359"}.fa-arrow-alt-circle-right:before{content: "\f35a"}.fa-arrow-alt-circle-up:before{content: "\f35b"}.fa-arrow-circle-down:before{content: "\f0ab"}.fa-arrow-circle-left:before{content: "\f0a8"}.fa-arrow-circle-right:before{content: "\f0a9"}.fa-arrow-circle-up:before{content: "\f0aa"}.fa-arrow-down:before{content: "\f063"}.fa-arrow-left:before{content: "\f060"}.fa-arrow-right:before{content: "\f061"}.fa-arrow-up:before{content: "\f062"}.fa-arrows-alt:before{content: "\f0b2"}.fa-arrows-alt-h:before{content: "\f337"}.fa-arrows-alt-v:before{content: "\f338"}.fa-award:before{content: "\f559"}.fa-bars:before{content: "\f0c9"}.fa-bookmark:before{content: "\f02e"}.fa-building:before{content: "\f1ad"}.fa-calendar:before{content: "\f133"}.fa-calendar-alt:before{content: "\f073"}.fa-calendar-check:before{content: "\f274"}.fa-calendar-day:before{content: "\f783"}.fa-calendar-minus:before{content: "\f272"}.fa-calendar-plus:before{content: "\f271"}.fa-calendar-times:before{content: "\f273"}.fa-calendar-week:before{content: "\f784"}.fa-camera:before{content: "\f030"}.fa-camera-retro:before{content: "\f083"}.fa-cart-arrow-down:before{content: "\f218"}.fa-cart-plus:before{content: "\f217"}.fa-check:before{content: "\f00c"}.fa-chevron-down:before{content: "\f078"}.fa-chevron-right:before{content: "\f054"}.fa-chevron-up:before{content: "\f077"}.fa-chevron-left:before{content: "\f053"}.fa-chalkboard-teacher:before{content: "\f51c"}.fa-clock:before{content: "\f017"}.fa-comments:before{content: "\f086"}.fa-download:before{content: "\f019"}.fa-envelope:before{content: "\f0e0"}.fa-external-link-alt:before{content: "\f35d"}.fa-external-link-square-alt:before{content: "\f360"}.fa-eye:before{content: "\f06e"}.fa-eye-slash:before{content: "\f070"}.fa-facebook:before{content: "\f09a"}.fa-facebook-f:before{content: "\f39e"}.fa-facebook-messenger:before{content: "\f39f"}.fa-facebook-square:before{content: "\f082"}.fa-file:before{content: "\f15b"}.fa-file-alt:before{content: "\f15c"}.fa-file-archive:before{content: "\f1c6"}.fa-file-audio:before{content: "\f1c7"}.fa-file-code:before{content: "\f1c9"}.fa-file-contract:before{content: "\f56c"}.fa-file-csv:before{content: "\f6dd"}.fa-file-download:before{content: "\f56d"}.fa-file-excel:before{content: "\f1c3"}.fa-file-export:before{content: "\f56e"}.fa-file-image:before{content: "\f1c5"}.fa-file-import:before{content: "\f56f"}.fa-file-invoice:before{content: "\f570"}.fa-file-invoice-dollar:before{content: "\f571"}.fa-file-medical:before{content: "\f477"}.fa-file-medical-alt:before{content: "\f478"}.fa-folder:before{content: "\f07b"}.fa-globe:before{content: "\f0ac"}.fa-heart:before{content: "\f004"}.fa-minus:before{content: "\f068"}.fa-minus-circle:before{content: "\f056"}.fa-minus-square:before{content: "\f146"}.fa-plus:before{content: "\f067"}.fa-plus-circle:before{content: "\f055"}.fa-plus-square:before{content: "\f0fe"}.fa-file-pdf:before{content: "\f1c1"}.fa-file-powerpoint:before{content: "\f1c4"}.fa-file-prescription:before{content: "\f572"}.fa-file-signature:before{content: "\f573"}.fa-file-upload:before{content: "\f574"}.fa-file-video:before{content: "\f1c8"}.fa-file-word:before{content: "\f1c2"}.fa-graduation-cap:before{content: "\f19d"}.fa-hand-holding-usd:before{content: "\f4c0"}.fa-hashtag:before{content: "\f292"}.fa-home:before{content: "\f015"}.fa-info-circle:before{content: "\f05a"}.fa-instagram:before{content: "\f16d"}.fa-language:before{content: "\f1ab"}.fa-linkedin-in:before{content: "\f0e1"}.fa-map-marker-alt:before{content: "\f3c5"}.fa-minus:before{content: "\f068"}.fa-pen:before{content: "\f304"}.fa-phone:before{content: "\f095"}.fa-phone-alt:before{content: "\f879"}.fa-plus:before{content: "\f067"}.fa-print:before{content: "\f02f"}.fa-question-circle:before{content: "\f059"}.fa-school:before{content: "\f549"}.fa-search:before{content: "\f002"}.fa-search-plus:before{content: "\f00e"}.fa-share-alt:before{content: "\f1e0"}.fa-shopping-cart:before{content: "\f07a"}.fa-smile:before{content: "\f118"}.fa-times:before{content: "\f00d"}.fa-trash:before{content: "\f1f8"}.fa-twitter:before{content: "\f099"}.fa-university:before{content: "\f19c"}.fa-user-friends:before{content: "\f500"}.fa-user:before{content: "\f007"}.fa-users:before{content: "\f0c0"}.fa-video:before{content: "\f03d"}.fa-whatsapp:before{content: "\f232"}.fa-xing:before{content: "\f168"}.fa-xing-square:before{content: "\f169"}.fa-youtube:before{content: "\f167"}.fa-youtube-square:before{content: "\f431"}.fa-truck:before{content: "\f0d1"}.fa-bolt:before{content: "\f0e7"}.sr-only{border: 0;clip: rect(0, 0, 0, 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip: auto;height: auto;margin: 0;overflow: visible;position: static;width: auto}/*!
 * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */@font-face{font-family: 'Font Awesome 5 Free';font-style: normal;font-weight: 900;font-display: swap;src: url('/files/theme/fonts/fontawesome/fa-solid-900.eot');src: url('/files/theme/fonts/fontawesome/fa-solid-900.eot?#iefix') format('embedded-opentype'), url('/files/theme/fonts/fontawesome/fa-solid-900.woff2') format('woff2'), url('/files/theme/fonts/fontawesome/fa-solid-900.woff') format('woff'), url('/files/theme/fonts/fontawesome/fa-solid-900.ttf') format('truetype'), url('/files/theme/fonts/fontawesome/fa-solid-900.svg#fontawesome') format('svg')}.fa,.fas{font-family: 'Font Awesome 5 Free';font-weight: 900}/*!
 * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */@font-face{font-family: 'Font Awesome 5 Free';font-style: normal;font-weight: 400;font-display: swap;src: url('/files/theme/fonts/fontawesome/fa-regular-400.eot');src: url('/files/theme/fonts/fontawesome/fa-regular-400.eot?#iefix') format('embedded-opentype'), url('/files/theme/fonts/fontawesome/fa-regular-400.woff2') format('woff2'), url('/files/theme/fonts/fontawesome/fa-regular-400.woff') format('woff'), url('/files/theme/fonts/fontawesome/fa-regular-400.ttf') format('truetype'), url('/files/theme/fonts/fontawesome/fa-regular-400.svg#fontawesome') format('svg')}.far{font-family: 'Font Awesome 5 Free';font-weight: 400}/*!
 * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */@font-face{font-family: 'Font Awesome 5 Brands';font-style: normal;font-weight: normal;font-display: swap;src: url('/files/theme/fonts/fontawesome/fa-brands-400.eot');src: url('/files/theme/fonts/fontawesome/fa-brands-400.eot?#iefix') format('embedded-opentype'), url('/files/theme/fonts/fontawesome/fa-brands-400.woff2') format('woff2'), url('/files/theme/fonts/fontawesome/fa-brands-400.woff') format('woff'), url('/files/theme/fonts/fontawesome/fa-brands-400.ttf') format('truetype'), url('/files/theme/fonts/fontawesome/fa-brands-400.svg#fontawesome') format('svg')}.fab{font-family: 'Font Awesome 5 Brands'}.headline{color: #222}.font_standard{font-family: 'Poppins', sans-serif}.font_global{font-size: 1rem}.font_small{font-size: 0.85rem}.p-large{padding-left: 2remrem;padding-right: 2remrem}.bg-1{background-color: #b71c1c}.bg-2{background-color: #fff}.bg-3{background-color: #f6f6f6}.bg-4{background-color: #565658}.bg-5{background-color: #222}.fc-1{color: #b71c1c}.fc-1 .headline{color: #b71c1c}.fc-2{color: #fff}.fc-2 .headline{color: #fff}.fc-3{color: #f6f6f6}.fc-3 .headline{color: #f6f6f6}.fc-4{color: #565658}.fc-4 .headline{color: #565658}.fc-5{color: #222}.fc-5 .headline{color: #222}.hlc-1 .headline{color: #b71c1c}.hlc-2 .headline{color: #fff}.hlc-3 .headline{color: #f6f6f6}.hlc-4 .headline{color: #565658}.hlc-5 .headline{color: #222}.parallax .bg-1{background-color: rgba(183,28,28,0.85)}.parallax .bg-2{background-color: rgba(255,255,255,0.85)}.parallax .bg-3{background-color: rgba(246,246,246,0.85)}.parallax .bg-4{background-color: rgba(86,86,88,0.85)}.parallax .bg-5{background-color: rgba(34,34,34,0.85)}.margin-top-xx-large{margin-top: 8rem}.margin-top-x-large{margin-top: 6rem}.margin-top-large{margin-top: 4rem}.margin-top-medium{margin-top: 3rem}.margin-top-small{margin-top: 2rem}.margin-top-x-small{margin-top: 1.5rem}.margin-bottom-xx-large{margin-bottom: 8rem}.margin-bottom-x-large{margin-bottom: 6rem}.margin-bottom-large{margin-bottom: 4rem}.margin-bottom-medium{margin-bottom: 3rem}.margin-bottom-small{margin-bottom: 2rem}.margin-bottom-x-small{margin-bottom: 1.5rem}.padding-h-small .article_inside{padding-left: 10% !important;padding-right: 10% !important}.padding-h-small > .inside{padding-left: 10% !important;padding-right: 10% !important}.padding-h-medium .article_inside{padding-left: 15% !important;padding-right: 15% !important}.padding-h-medium > .inside{padding-left: 15% !important;padding-right: 15% !important}.padding-h-large .article_inside{padding-left: 20% !important;padding-right: 20% !important}.padding-h-large > .inside{padding-left: 20% !important;padding-right: 20% !important}.padding-h-x-large .article_inside{padding-left: 25% !important;padding-right: 25% !important}.padding-h-x-large > .inside{padding-left: 25% !important;padding-right: 25% !important}.padding-h-xx-large .article_inside{padding-left: 30% !important;padding-right: 30% !important}.padding-h-xx-large > .inside{padding-left: 30% !important;padding-right: 30% !important}.padding-h-x-small .article_inside{padding-left: 5% !important;padding-right: 5% !important}.padding-h-x-small > .inside{padding-left: 5% !important;padding-right: 5% !important}.padding-v-x-small .article_inside{padding-top: 1.5vh !important;padding-bottom: 1.5vh !important}.padding-v-x-small > .inside{padding-top: 1.5vh !important;padding-bottom: 1.5vh !important}.padding-v-x-large .article_inside{padding-top: 15vh !important;padding-bottom: 15vh !important}.padding-v-x-large > .inside{padding-top: 15vh !important;padding-bottom: 15vh !important}.padding-v-xx-large .article_inside{padding-top: 20vh !important;padding-bottom: 20vh !important}.padding-v-xx-large > .inside{padding-top: 20vh !important;padding-bottom: 20vh !important}.padding-v-small .article_inside{padding-top: 3vh !important;padding-bottom: 3vh !important}.padding-v-small > .inside{padding-top: 3vh !important;padding-bottom: 3vh !important}.padding-v-medium .article_inside{padding-top: 6vh !important;padding-bottom: 6vh !important}.padding-v-medium > .inside{padding-top: 6vh !important;padding-bottom: 6vh !important}.padding-v-large .article_inside{padding-top: 9vh !important;padding-bottom: 9vh !important}.padding-v-large > .inside{padding-top: 9vh !important;padding-bottom: 9vh !important}.font_xxs{font-size: 0.7rem}.font_l{font-size: 1.4rem}.font_m{font-size: 1.2rem}.font_s{font-size: 1rem}.font_xl{font-size: 2.25rem}.font_xxl{font-size: 3rem}.font_xs{font-size: 0.85rem}@media screen and (max-width: 1024px){.font_xl{font-size: 1.6rem}}@media screen and (max-width: 480px){.font_xl{font-size: 1.4rem}}@media screen and (max-width: 1024px){.font_xxl{font-size: 1.6rem}}@media screen and (max-width: 480px){.font_xxl{font-size: 1.4rem}}.medium{font-weight: 600}.normal{font-weight: 400}.bold{font-weight: 700}.min-l-xs{min-height: 16vh !important}.min-l-m{min-height: 56vh !important}.min-l-l{min-height: 66vh !important}.min-l-xl{min-height: 76vh !important}.min-l-s{min-height: 36vh !important}.btn-default{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.btn-default:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.btn-large{padding: .75rem 6rem}.btn-secondary{font-weight: 700;text-transform: uppercase;margin-top: auto}.btn-secondary i{margin-left: 1.5rem}.btn-inverted{color: #b71c1c;background-color: #fff;border: 1px solid #b71c1c;padding: .75rem 2rem;text-transform: uppercase}.btn-inverted:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;text-transform: uppercase}input.text,textarea,select{color: #222;font-size: 1rem;border: 1px solid #565658;padding: .75rem 1.26rem;border-radius: 25px}textarea{resize: none}.headline-size-l{font-size: 2.25rem;font-weight: 400;margin-bottom: 1.5rem}@media screen and (max-width: 1024px){.headline-size-l{font-size: 1.6rem}}@media screen and (max-width: 480px){.headline-size-l{font-size: 1.4rem}}.headline-size-m{font-size: 1.4rem;font-weight: 600;line-height: 125%}.headline-size-s{font-size: 1.2rem;font-weight: 600}.headline-size-xl{font-size: 3rem}@media screen and (max-width: 1024px){.headline-size-xl{font-size: 1.6rem}}@media screen and (max-width: 480px){.headline-size-xl{font-size: 1.4rem}}.headline-size-xs{font-size: 1rem;font-weight: 600}.ce_intro.red a{color: #fff}.ce_intro.red a.more{color: #b71c1c;background-color: #fff;border: 1px solid #b71c1c;padding: .75rem 2rem;text-transform: uppercase}.ce_intro.red a.more:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;text-transform: uppercase}.ce_teaser_box.large-button .more{padding: .75rem 6rem}.ce_teaser_box.blue{background-color: #b71c1c}.ce_teaser_box.gray{background-color: #222}@font-face{font-family: 'Poppins';font-style: normal;font-weight: 400;src: url('/files/theme/fonts/poppins-v20-latin-regular.eot');src: local(''), url('/files/theme/fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('/files/theme/fonts/poppins-v20-latin-regular.woff2') format('woff2'), url('/files/theme/fonts/poppins-v20-latin-regular.woff') format('woff'), url('/files/theme/fonts/poppins-v20-latin-regular.ttf') format('truetype'), url('/files/theme/fonts/poppins-v20-latin-regular.svg#Poppins') format('svg')}@font-face{font-family: 'Poppins';font-style: italic;font-weight: 400;src: url('/files/theme/fonts/poppins-v20-latin-italic.eot');src: local(''), url('/files/theme/fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'), url('/files/theme/fonts/poppins-v20-latin-italic.woff2') format('woff2'), url('/files/theme/fonts/poppins-v20-latin-italic.woff') format('woff'), url('/files/theme/fonts/poppins-v20-latin-italic.ttf') format('truetype'), url('/files/theme/fonts/poppins-v20-latin-italic.svg#Poppins') format('svg')}@font-face{font-family: 'Poppins';font-style: normal;font-weight: 600;src: url('/files/theme/fonts/poppins-v20-latin-600.eot');src: local(''), url('/files/theme/fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), url('/files/theme/fonts/poppins-v20-latin-600.woff2') format('woff2'), url('/files/theme/fonts/poppins-v20-latin-600.woff') format('woff'), url('/files/theme/fonts/poppins-v20-latin-600.ttf') format('truetype'), url('/files/theme/fonts/poppins-v20-latin-600.svg#Poppins') format('svg')}#header .mod_article{margin-top: 6.5rem}@media screen and (max-width: 480px){#header .mod_article{margin-top: 5rem}}#header .mod_article.image .headline,#header .mod_article.image .subheadline{text-shadow: none}#header .mod_article.image .fc-2 .headline,#header .mod_article.image .fc-2 .subheadline{text-shadow: 0px 0px 6px rgba(0,0,0,0.45)}@media screen{#header .logo{margin: 0;max-width: 270px}#header .logo,#header .mainnav,#header .metanav{align-items: center}#header .box-top{position: relative;background: #fff;padding: .5rem 0 0;position: fixed;width: 100%;top: 0;z-index: 4;overflow: visible;box-shadow: 0 0 15px rgba(0,0,0,0.1)}}#header .mod_layout_article{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;display: flex;align-items: center;padding-top: 1.5rem;padding-bottom: 1.5rem}@media screen and (max-width: 1280px){#header .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#header .mod_layout_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#header .mod_layout_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#header .mod_layout_article{padding-left: 1.5rem;padding-right: 1.5rem}}#header .metanav{margin-left: auto;display: flex;align-items: center}#header .mod_switch_language{margin-right: 1.5rem;padding-bottom: 0.1rem}#header .mod_switch_language .label{display: none}#header .mod_switch_language ul{list-style-type: none}#header .mod_switch_language li{display: inline-block}#header .mod_switch_language li.first{border-right: 1px solid #ddd}#header .mod_switch_language li a{padding: .25rem .5rem;color: #565658}#header .mod_switch_language li a.active{color: #b71c1c}@media screen and (max-width: 1440px) and (min-width: 1150px){#header div.logo{width: 20%;margin-right: 3%}}@media screen and (max-width: 1366px){#header .ce_search{margin-right: 1rem}}@media screen and (max-width: 480px){#header .mod_layout_article{padding-top: 1rem;padding-bottom: 1rem}#header .metanav{scale: 0.75;margin-left: 0.5rem;margin-right: -0.7rem}}#header .ce_search{display: inline-block}#header .ce_search button{border-radius: 50%;background-color: #b71c1c;padding: 11px;border: 0;color: #fff;text-align: center;line-height: 100%;font-size: 1.125rem;cursor: pointer}#header .ce_search button:hover{background-color: #941717}#header .ce_search span{display: none}#header .mobile-nav{border-radius: 50%;background-color: #b71c1c;padding: 8px 12px;color: #fff;text-align: center;line-height: 100%;font-size: 1.125rem}#header #search-area{display: none;background-color: #b71c1c;width: 100%;box-shadow: 0 0 15px rgba(0,0,0,0.3);left: 0;position: fixed;right: 0;top: 0}.mainnav{margin-right: 2rem}.mainnav > ul{display: inline-block}.mainnav > ul > li{position: relative;display: inline-block;margin-bottom: -1px}.mainnav > ul > li > a{text-transform: uppercase;padding: .25rem .25rem .25rem;margin-top: 0.5rem;margin-bottom: 0.5rem;display: block;border-bottom: 3px solid transparent;font-weight: 700}.mainnav > ul > li.active > a,.mainnav > ul > li.trail > a{border-bottom: 3px solid #b71c1c}.mainnav > ul > li + li{margin-left: 1rem}@media screen and (max-width: 1440px){.mainnav{flex: 0 1 auto}.mainnav li a{font-size: 0.9rem;margin-left: 0}}@media screen and (min-width: 800px) and (max-width: 1150px){.mainnav{flex: none;width: 50%;text-align: center}}.mainnav .active,.mainnav .trail{color: #b71c1c}.mainnav a{color: #000;font-weight: 600}.mainnav li:hover > a{color: #b71c1c}.mainnav li.submenu{position: relative;padding-right: 20px}.mainnav li.submenu:after{position: absolute;content: '\f078';font-family: "Font Awesome 5 Free";font-weight: 900;right: 0;top: 11px;transition: all .3s ease-in-out;transform: rotateX(0deg);transform-origin: center}.mainnav li.submenu > ul{margin-top: -4px !important}.mainnav li.submenu ul{display: block;border-radius: 0;border-left: none;border-right: none;border-bottom: none;padding-left: 0;top: 100%;z-index: 2;position: absolute;opacity: 0;visibility: visible;transform-origin: 0 0;-webkit-transform: scale(1, 0);-ms-transform: scale(1, 0);transform: scale(1, 0)}.mainnav li.submenu ul li{background-color: #f5f5f5;min-width: 240px}.mainnav li.submenu ul li:hover{background-color: #fff}.mainnav li.submenu ul li a,.mainnav li.submenu ul li strong{padding: 10px 15px 15px 25px;display: block;font-weight: normal}.mainnav li.submenu ul li a:hover,.mainnav li.submenu ul li strong:hover{color: #fff !important}.mainnav li.submenu:hover:after{transform: rotateX(180deg);color: #b71c1c}.mainnav li.submenu:hover ul{opacity: 1;-webkit-transform: scale(1, 1);-ms-transform: scale(1, 1);transform: scale(1, 1)}.dropdown{display: none;margin-top: -4px !important}li.submenu:hover .dropdown{display: flex;position: absolute;margin-top: -1px;min-width: 800px;width: 100%;left: -300px;background-color: #fff;font-size: 0.9rem;padding: 38px 1rem 1rem}li.submenu:hover .dropdown .dropdown-nav{width: 65.6666%;column-count: 2;gap: 1rem;min-width: 500px}li.submenu:hover .dropdown .dropdown-image{width: 32.3333%;align-self: center;margin-left: auto;background-color: #b71c1c;border-radius: 14px}li.submenu:hover .dropdown .dropdown-image img{width: 100%;height: auto}li.submenu:hover .dropdown div.category{border-top: 1px solid #eee;text-align: left}li.submenu:hover .dropdown div.category a{margin-left: 0;padding: 10px 15px 15px 25px;font-weight: 400}.mm-menu{text-transform: uppercase;margin-top: 6rem}@media screen and (max-width: 480px){.mm-menu{margin-top: 5rem}}.mm-menu .mm-navbar{border-bottom: 1px solid rgba(0,0,0,0.6)}.mm-menu .image_container{display: none;background-color: #fff;width: 100%;height: 150px;padding: 3rem 2rem 3rem;text-align: center}.mm-menu .image_container img{width: 80%;margin: auto;height: auto;max-width: 260px}.mm-menu.mm-menu_position-top{height: 90vh}.mm-menu .close-menu{position: absolute;right: 1.5rem;box-shadow: 0px 3px 26px rgba(0,0,0,0.29)}.mm-menu .switch-language{padding-left: 1.25rem;background-color: #222}.mm-menu .switch-language:after{border-bottom: 1px solid rgba(0,0,0,0.4)}.mm-menu .switch-language nav{display: flex;width: 100%;font-size: 0.8rem;margin-right: 0;align-items: center}.mm-menu .switch-language nav ul{display: block;margin-left: auto}.mm-menu .switch-language nav li.first{border-right: 1px solid rgba(255,255,255,0.2)}.mm-menu .switch-language .label{display: block;text-transform: none;margin-bottom: 0;color: #888}.mm-menu .switch-language a{display: block;padding: .5rem 1rem}.mm-listitem{font-size: 1.2rem;border-color: rgba(255,255,255,0.2);font-weight: 400 !important;line-height: 150%}.mm-listitem a{padding: 1.25rem 1.75rem}.mm-listitem:after{left: 0}.mm-listitem a.mm-btn{border: 0}.mm-listitem a.mm-btn:after{border-color: #fff}.mm-listitem.mm-listitem_selected,.mm-listitem.active{border-top: 1px solid #b71c1c;margin-top: -1px}.mm-listitem.mm-listitem_selected > a,.mm-listitem.active > a,.mm-listitem.mm-listitem_selected > span,.mm-listitem.active > span{background-color: #b71c1c !important}.mm-listitem.mm-listitem_selected a.mm-btn:after,.mm-listitem.active a.mm-btn:after{border-color: #fff}.level_2 .mm-listitem{border-top: 1px solid rgba(255,255,255,0.1)}.level_2 .mm-listitem:after{border: 0}.level_2 .mm-listitem a{text-transform: none;padding: .75rem 1.75rem}.level_3 .mm-listitem a{font-size: 0.925rem;padding: .35rem 2.75rem}.mm-listitem_vertical > .mm-panel{padding: 0}footer{font-size: 0.85rem}footer .mod_customnav .headline,footer .mod_product_category_navigation .headline{margin-bottom: 1.75rem}footer .mod_customnav .headline div,footer .mod_product_category_navigation .headline div{font-size: 1.2rem;font-weight: 600}footer .mod_subscribe .ce_text,footer .mod_subscribe .ce_button,footer .mod_subscribe .error,footer .mod_subscribe .widget-captcha{display: none}footer .ce_hyperlink{padding: 0}footer .ce_hyperlink a{color: #565658}@media screen and (max-width: 1024px){footer{font-size: 0.925rem}footer .ce_image_advanced{display: none}footer .headline div{background-color: #565658 !important;padding: .75rem 1rem;color: #fff}}@media screen and (max-width: 480px){footer{text-align: center;font-size: 1rem}footer .headline div{font-size: 1rem}}.socialnav a{padding: 2px !important;width: 25px;height: 25px;color: #aaa;border: 1px solid #aaa;border-radius: 50%;line-height: 22px}.socialnav a i{font-size: 15px}@media screen and (max-width: 800px){.socialnav{margin-top: 2rem}.socialnav a{scale: 1.45}}#footer-copyright{background-color: #b71c1c;font-size: 0.85rem}#footer-copyright > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){#footer-copyright > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#footer-copyright > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#footer-copyright > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#footer-copyright > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}#footer-copyright p{margin-bottom: 0}#footer-copyright p,#footer-copyright a{font-weight: 700;font-weight: 400;color: #fff}@media screen and (min-width: 501px){#footer-copyright .mod_layout_article{display: flex;align-items: center}#footer-copyright .mod_customnav{margin-left: auto}}@media screen and (max-width: 500px){#footer-copyright .ce_text{display: none}}#footer-copyright .footernav ul{display: flex;justify-content: space-between}#footer-copyright .footernav li{text-align: center}#footer-copyright .footernav li.first{text-align: left}#footer-copyright .footernav li.last{text-align: right}#footer-copyright .footernav li a{padding: 1.75rem 2.5rem 1.75rem 0;display: inline-block}@media screen and (max-width: 1024px){#footer-copyright .footernav li a{padding: .85rem .5rem .65rem 0}}#footer-copyright .footernav li.last a{padding-right: 0}.mod_article{position: relative}.mod_article .article_inside{position: relative;z-index: 2}@media screen and (min-width: calc(1024px + 1px)){.mod_article .lines{position: absolute;z-index: 1;left: 0;width: 100%;height: 100%}.mod_article .lines img{width: 100%;height: 100%}}@media screen and (max-width: 1024px){.mod_article .lines{display: none}}@media screen and (max-width: 699px){.mod_article .article_inside{padding-left: 1.25rem;padding-right: 1.25rem}}.mod_article.image .article_inside{max-width: none}.mod_article.image .article_inside > div{max-width: 1280px;width: 100%;margin-left: auto;margin-right: auto}.mod_article.head .ce_image_advanced{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){.mod_article.head .ce_image_advanced{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_article.head .ce_image_advanced{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_article.head .ce_image_advanced{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_article.head .ce_image_advanced{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_article.head .ce_image_advanced .image_container{display: inline-block;background-color: #b71c1c;border-radius: 14px}.parallax.nocover{background-size: auto}.bg-1{transition: 1s}.bg-1 .ce_icon_box a{color: #fff}.bg-1 .ce_icon_box .btn{opacity: 0;border-color: #fff;color: #fff;border-radius: 25px}.bg-1:hover{background-color: #565658}.bg-1:hover .ce_icon_box p{color: #bbb;transition: 1s}.bg-1:hover .ce_icon_box:hover p{color: #fff}.bg-1:hover .ce_icon_box:hover .btn{opacity: 1}.button{font-size: 1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative;color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px;border: 1px solid transparent;transition: 0.5s}.button:hover{color: #fff;background-color: #b71c1c;border: 1px solid #b71c1c;padding: .75rem 2rem;border-radius: 25px}.ce_intro.start{max-width: 600px;margin: auto}.ce_image_advanced.alignment-centered img{margin: auto}.ce_text_left,.ce_text_right{padding: 0 !important}.ce_text_left .inside,.ce_text_right .inside{margin: 0}@media screen and (min-width: calc(1366px + 1px)){.ce_text_left .text,.ce_text_right .text{padding: 3.5rem 3.5rem 3rem 0}}@media screen and (min-width: calc(1024px + 1px)){.ce_text_right .text{padding-left: 3.5rem;padding-right: 0}}.ce_teaser_box,.box{border: 1px solid #ddd;border-radius: 14px;box-shadow: none;padding: 2rem 2rem}.ce_teaser_box .headline,.box .headline{margin-top: 0}.ce_teaser_box .textbox,.box .textbox{margin: 2.5rem 0 0}.ce_teaser_box .linkbox,.box .linkbox{margin: 0rem 3rem 2rem}.ce_teaser_box:hover,.box:hover{box-shadow: none}@media screen and (max-width: 800px){.ce_teaser_box .textbox,.box .textbox{margin: 1rem 1rem 1rem 1rem;padding: 0}}@media screen and (max-width: 480px){.ce_intro.alignment-centered .text{text-align: left}}.ce_quotation{font-family: Calligraffitti, 'Poppins', Arial}.ce_quotation p{font-style: normal !important;font-size: 3rem}@media screen and (min-width: 800px){.ce_quotation .inside{padding-left: 3rem}}.ce_quotation blockquote:before,.ce_quotation blockquote:after{font-size: 0.5rem}.listing ul{list-style-type: none;padding-left: 1rem;margin-bottom: 1.5rem}.listing ul li{margin-bottom: 0.5rem}.listing ul li:before{content: "■";color: #b71c1c;font-size: 13px;display: inline-block;margin-left: -0.75rem;margin-right: 9px;top: -2px;position: relative}.ce_list ul,.ce_text ul,.ce_text_pro ul,.ce_intro ul,.ce_text_left ul,.ce_text_right ul{list-style-type: none;padding-left: 1rem;margin-bottom: 1.5rem}.ce_list ul li,.ce_text ul li,.ce_text_pro ul li,.ce_intro ul li,.ce_text_left ul li,.ce_text_right ul li{margin-bottom: 0.5rem}.ce_list ul li:before,.ce_text ul li:before,.ce_text_pro ul li:before,.ce_intro ul li:before,.ce_text_left ul li:before,.ce_text_right ul li:before{content: "■";color: #b71c1c;font-size: 13px;display: inline-block;margin-left: -0.75rem;margin-right: 9px;top: -2px;position: relative}.mod_subscribe .privacy{display: none}.mod_subscribe p.error{font-size: inherit}.mod_subscribe.hide .widget-text,.mod_unsubscribe.hide .widget-text,.mod_subscribe .hide .widget-text,.mod_unsubscribe .hide .widget-text,.mod_subscribe.hide .widget-submit,.mod_unsubscribe.hide .widget-submit,.mod_subscribe .hide .widget-submit,.mod_unsubscribe .hide .widget-submit,.mod_subscribe.hide p,.mod_unsubscribe.hide p,.mod_subscribe .hide p,.mod_unsubscribe .hide p{display: none}footer .mod_subscribe{margin-bottom: 2rem}footer .mod_subscribe .widgets{position: relative}footer .mod_subscribe .widget-text input.text{font-size: 0.85rem}footer .mod_subscribe .widget-submit{color: #fff;position: absolute;right: -5px;top: 0;width: 52px;z-index: 1;transition: 0.5s}footer .mod_subscribe .widget-submit button{padding: .64rem 1.04rem;margin-top: 1px}.mod_product_category_list .category_list{background-color: #f6f6f6;margin-bottom: 2rem;padding: 0;border: 1px solid #ddd;border-radius: 14px;width: calc(23.5% - 1px);text-align: center}.mod_product_category_list .category_list .image_container{background-color: #b71c1c;padding: 1.5rem 1rem;border-radius: 14px 14px 0 0}@media screen and (max-width: 1440px){.mod_product_category_list .category_list{width: calc(32.5% - 1px)}}@media screen and (max-width: 1024px){.mod_product_category_list .category_list{width: calc(48.5% - 1px)}}@media screen and (max-width: 699px){.mod_product_category_list .category_list{font-size: 80%}.mod_product_category_list .category_list h3{font-size: 1rem}.mod_product_category_list .category_list .button-container a{font-size: 100%;padding: .5rem 1rem}}@media screen and (max-width: 480px){.mod_product_category_list .category_list{width: 100%}.mod_product_category_list .category_list .button-container{display: none}}.mod_product_category_list .category_list .inside{padding: 2rem 2rem;height: 100%;display: flex;flex-direction: column}.mod_product_category_list .category_list .image_container{margin-bottom: 1.3rem}.mod_product_category_list .category_list .image_container img{width: 100%;height: auto}.mod_product_category_list .category_list p{color: #565658}.mod_product_category_list .category_list .button-container{margin-top: 1.3rem}.mod_product_category_list .category_list .button:hover{border: 1px solid #fff !important}@media screen and (max-width: 800px){.mod_product_category_list .category_list .inside{padding: 0 1rem}}.mod_product_list h1 .active{font-weight: bold}.mod_product_list .category_teaser h2{font-size: 1.2rem;font-weight: 600;color: #222}.mod_product_list .products{margin-top: 2rem}.mod_product_list .flex > .image_container{width: 32%;display: none}.mod_product_list .flex > .image_container img{width: 100%;height: auto}.mod_product_list .list_options{text-align: center}.mod_product_list .list_options label{margin-bottom: 0.25rem}.mod_product_list .list_options select{padding-right: 2.25rem}.mod_product_list .category_text{margin-top: 2rem}.mod_product_list .headline h2{font-weight: 400}.mod_product_list .headline h2 span{font-weight: 600}.mod_product_list .product_object{color: #565658}.mod_product_list .instant h2{color: #b71c1c}.mod_product_list .instant:hover .product_object{color: #b71c1c}.product_list{background-color: #f6f6f6;margin-bottom: 2rem;padding: 0;border: 1px solid #ddd;border-radius: 14px;width: calc(31.6666% - 1px);text-align: center;overflow: hidden;position: relative}@media screen and (max-width: 1024px){.product_list{width: calc(48.5% - 1px)}}@media screen and (max-width: 480px){.product_list{width: 100%}}.product_list .flag{width: 136px;height: 20px;top: 0rem;right: 0rem;position: absolute}.product_list .flag .inside{margin: 1rem 0 0 1.75rem;padding: .5rem .25rem;background-color: #444;text-align: center;width: 140px;color: #fff;transform: rotate(45deg);text-shadow: 1px 1px 3px rgba(0,0,0,0.45)}.product_list.new .flag .inside{background-color: #b71c1c}.product_list .inside{padding: 2rem 2rem;height: 100%;display: flex;flex-direction: column}.product_list .image_container img{width: 100%;height: auto;border-radius: 14px}.product_list p{color: #565658}.product_list .more{display: none;position: absolute;bottom: 0;width: calc(100% - 2rem);text-align: center;padding: .4rem 1rem;margin-left: -2rem;color: #fff;background-color: #b71c1c}.product_list:hover .more{display: block}@media screen and (max-width: 800px){.product_list .inside{padding: 1rem}}.product_list.product_newsletter{width: calc(23.5% - 1px);border-radius: 4px;font-size: 80%}.product_list.product_newsletter h2{font-size: 1.25rem}.product_list.product_newsletter .image_container img{border-radius: 4px}.product_list.product_newsletter .inside{padding: 1rem}.pagination{background-color: transparent;border: 0;font-size: 1rem;padding: 0}.pagination li a,.pagination li .active{min-width: 8px;text-align: center;display: block;border-radius: 25px;padding: .6rem 1rem;margin: 0 .75rem .75rem 0;border: 1px solid #b71c1c}.pagination li a{background-color: #fff;border: 1px solid #b71c1c;color: #b71c1c}@media screen and (max-width: 800px){.pagination p{display: none}}@media screen{.mod_product_reader .product_full .sold_out{display: inline-block;margin-bottom: 1rem;padding: .5rem 1rem;background-color: #b71c1c;color: #fff}.mod_product_reader .product_full .sold_out.full{margin-top: 4rem;padding: 1rem 2rem}.mod_product_reader .product_full > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;margin-top: 4rem}.mod_product_reader .product_full .flex .gallery{width: 49%}.mod_product_reader .product_full .flex .gallery img{border: 1px solid #ddd;border-radius: 14px}.mod_product_reader .product_full .flex .info{width: 49%}}@media screen and screen and (max-width: 1280px){.mod_product_reader .product_full > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and screen and (max-width: 1440px){.mod_product_reader .product_full > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and screen and (max-width: 1024px){.mod_product_reader .product_full > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and screen and (max-width: 699px){.mod_product_reader .product_full > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (max-width: 480px){.mod_product_reader .product_full > .inside{margin-top: 1.5rem}.mod_product_reader .product_full .flex{display: flex;flex-direction: column-reverse}.mod_product_reader .product_full .flex .gallery,.mod_product_reader .product_full .flex .info{width: 100%}.mod_product_reader .product_full .gallery{margin-top: 2.5rem}}.mod_product_reader .product_full .headline h1{font-weight: 400}.mod_product_reader .product_full .headline h1 span{font-weight: 600}.mod_product_reader .product_full span.label{color: #444;font-weight: 600;margin-right: 10px}.mod_product_reader .product_full .product_description{margin: 1.25rem 0 1.25rem}.mod_product_reader .product_full .product_object{margin-bottom: 1rem}.mod_product_reader .product_full .contact-data{border-top: 1px solid #ddd;border-bottom: 1px solid #ddd;padding: 1.25rem 0;margin: 1.25rem 0}.mod_product_request .back{text-align: center;margin-top: 5rem;margin-bottom: 4rem}.mod_product_request .back a{position: relative;display: inline-block}.mod_product_request .back a i{padding-right: 0.25rem;font-size: 0.75rem}.syndication{position: relative !important}.syndication a{margin-right: 0.5rem;display: inline-block;border-radius: 50%;width: 23px;height: 22px;padding: 4px 4px;text-align: center;font-size: 15px;background-color: #666;color: #fff}.syndication a.email{background-color: #b71c1c}.syndication a.facebook{background-color: #3b5998}.syndication a.twitter{background-color: #1DA1F2}.syndication a.whatsapp{background-color: #25D366}.syndication a:hover{background-color: #222}.syndication svg{display: none;position: relative;top: 2px}.syndication path{fill: #fff}.mod_product_category_breadcrumb{color: #222;padding: 0 0 1rem}.mod_product_category_breadcrumb .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;text-align: center}@media screen and (max-width: 1280px){.mod_product_category_breadcrumb .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_product_category_breadcrumb .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_product_category_breadcrumb .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_product_category_breadcrumb .inside{padding-left: 1.5rem;padding-right: 1.5rem}}#left .mod_product_category_navigation ul{list-style-type: none}#left .mod_product_category_navigation .level_2{border-bottom: 1px solid #ddd;padding-bottom: 0.5rem;margin-bottom: 1rem}#left .mod_product_category_navigation .level_2 a{font-size: 0.85rem;color: #222;padding-left: 2rem}.bg-4 .mod_product_category_list{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;text-align: center}@media screen and (max-width: 1280px){.bg-4 .mod_product_category_list{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.bg-4 .mod_product_category_list{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.bg-4 .mod_product_category_list{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.bg-4 .mod_product_category_list{padding-left: 1.5rem;padding-right: 1.5rem}}.bg-4 .mod_product_category_list li{display: inline-block;margin: .25rem .25rem}.bg-4 .mod_product_category_list li a{display: block;font-size: 1.5rem;color: #e1e1e1 !important;background-color: #424242;border-radius: 13px;padding: .25rem 2rem}.bg-4 .mod_product_category_list li a:hover{background-color: #b71c1c;color: #e1e1e1 !important}#header .mod_product_search{padding: 2rem 0;color: #fff;text-align: center}#header .mod_product_search div.formbody{width: 65%;margin: auto;position: relative;display: flex}#header .mod_product_search div.formbody .widget-text{position: relative;width: 92%}#header .mod_product_search .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1280px){#header .mod_product_search .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#header .mod_product_search .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#header .mod_product_search .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#header .mod_product_search .inside{padding-left: 1.5rem;padding-right: 1.5rem}}#header .mod_product_search button{background: transparent none repeat scroll 0 0;border: 0 none;border-radius: 0;cursor: pointer;height: 51px;line-height: 51px;position: absolute;right: 1px;top: 0;width: 51px;transition: 0.3s}#header .mod_product_search .close{display: block;cursor: pointer;padding: 1rem 1rem}.mod_product_filter{margin-top: 1rem}.mod_product_filter select{color: #b71c1c;font-weight: bold}.mod_product_filter .widget-submit{display: none}.widget-calendar,.widget-select,.widget.fulltext{position: relative}.widget-calendar:after,.widget-select:after,.widget.fulltext:after{position: absolute;font-family: "Font Awesome 5 Free";font-size: 125%;right: 0;top: 0;transform-origin: center;margin-right: 2rem;margin-top: 0.5rem;transition: 2s;z-index: 1;color: #b71c1c;pointer-events: none}.widget-calendar:after{content: '\f073';font-weight: 400}.widget-calendar a{display: none}.widget-select select{background-image: none}.widget-select:after{content: '\f107';font-weight: 900;font-size: 155%}::placeholder{color: #aaa !important}p.error{color: #b71c1c}#container .widget-text > label,#container .widget-textarea > label,#container .widget-select > label,#container .widget-upload > label,#container .widget-password > label{border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px}.label,.list_sort label{margin-bottom: 2rem}.euf_overlay{z-index: 3;cursor: pointer}.euf_overlay strong{font-size: 2rem}.euf_overlay .euf_overlay__close{font-size: 2rem}.euf_overlay .euf_overlay__content{cursor: default;text-align: center}@media screen and (min-width: 800px){.euf_overlay .euf_overlay__content{padding-left: 185px;max-width: 600px;background-image: url('/files/aktuelles/drupa-logo-2024.jpg');background-repeat: no-repeat;background-size: contain}}@media print{#footer,#copyright,#right,#left,#topbar,#topnav .mod_layout_article > div,#topnav .mod_layout_article > nav,#wrapper .submit,.noprint,.back,.syndication{display: none}#wrapper{width: 210mm;max-width: 210mm}#container{min-height: 0 !important}#header .mod_article{margin-top: 0}#header .mod_navigation,#header .metanav,#header .ce_html_pro{display: none}.toggler{display: none}.accordion{padding-right: 0;padding-left: 0}.accordion{height: auto !important;opacity: 100 !important;visibility: visible !important}#container,#main{width: 100% !important}#main{width: 100%;font: 11pt Arial}body{background-color: #fff;font: 12pt Arial;color: #000}p{font-size: 11pt}a{color: #000 !important}table{width: 100%}h1{font-size: 2rem}.mod_product_reader .product_full .head{display: none}.mod_product_reader .product_full .ce_gallery ul.cols_2 li{width: calc(25% - .5rem)}.mod_product_reader .product_full .ce_gallery ul li{margin-right: 0.5rem;margin-bottom: 0.5rem}.mod_product_reader .product_full .contact-data{margin-bottom: 0;padding-bottom: 0;border-bottom: 0}}.subheadline{color: #b71c1c;font-size: 1.125rem !important;font-weight: 700;margin-bottom: 0.75rem}.fc-2 .subheadline{color: #fff}span.spam{display: none}strong{font-weight: 600;color: #000}.toggler,a{color: #b71c1c;cursor: pointer}.border-top{border-top: 10px solid #b71c1c}.strong{font-weight: 600}.nobr{white-space: nowrap}.brand{color: #b71c1c;font-size: 1.5rem;padding-right: 2px;font-weight: 600}.information{color: #bbb}@media screen and (min-width: 480px){.flex{display: flex;flex-wrap: wrap;justify-content: space-between}}.rounded{border-radius: 14px}.border{border: 1px solid #ddd}.border .inside{padding: 3.5rem 3rem 3rem 3.5rem}.mobile-show{display: none}@media screen and (max-width: 1024px){.mobile-show{display: block}.mobile-hide{display: none !important}}.category-nav li a{display: block;color: #565658;padding-bottom: 0.65rem}.category-nav li a:hover{color: #b71c1c !important}.category-nav li a.active,.category-nav li a.trail{color: #b71c1c !important;font-weight: 600}@media screen and (max-width: 1024px){.category-nav li a{border-bottom: 1px solid #ddd;padding: .75rem 1rem}}@media screen and (max-width: 800px){.category-nav a{font-size: 1rem}}@media screen and (max-width: 480px){.category-nav a{font-size: 1.1rem}.category-nav li a{padding: 1rem 1rem}}.ce_sliderStart{background-color: #b71c1c;padding: 1.5rem 1rem;border-radius: 14px}@media screen and (min-width: 800px){.sidebar{position: fixed;right: 0;top: 45%;z-index: 9999;max-width: 160px;font-size: 75%;background-color: #555;color: #fff}.sidebar .ce_image{margin-bottom: 0.5rem}.sidebar .ce_text{padding: .4rem .4rem 0 1rem}.sidebar a{color: #fff}}
