/*! * 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
}

.close-menu {
	text-align: center;
	display: inline-block;
	width: 100%;
	margin-top: 1rem;
}

[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: 80vw;
	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}
.invisible{border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px}.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%}html{scroll-behavior: smooth}body{font-family: Lato;font-size: 1.05rem;line-height: 1.4;color: #4d5459;background-color: #fff;-webkit-text-size-adjust: 100%}@media screen and (max-width: 1366px){body{font-size: 1rem}}@media screen and (max-width: 1024px){body{font-size: 0.9rem}}img{display: block;width: 100%;height: auto}a,.toggler{color: #d20a11;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}span.spam{display: none}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{-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear}fieldset{flex: 1 1 auto}fieldset.checkbox_container legend,fieldset.radio_container legend{padding: 0;line-height: 1.2;font-family: Lato}fieldset.checkbox_container label,fieldset.radio_container label{display: inline;line-height: 1.4;color: #505050;font-size: 1.05rem;font-weight: 400}@media screen and (max-width: 1366px){fieldset.checkbox_container label,fieldset.radio_container label{font-size: 1rem}}@media screen and (max-width: 1024px){fieldset.checkbox_container label,fieldset.radio_container label{font-size: 0.9rem}}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: Lato}.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}.error input,.error textarea{border: 1px solid #f00 !important}.frm_field{display: block;width: 100%;box-sizing: border-box;font-family: Lato}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: Lato}.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: Lato;border: 0}.widget-captcha input{display: inline-block;margin-right: 1rem;width: 20%;min-width: 2.5rem;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: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px}@media screen and (max-width: 1366px){.button,.widget-submit button,.button-container a,.linkbox a{font-size: 1rem}}@media screen and (max-width: 1024px){.button,.widget-submit button,.button-container a,.linkbox a{font-size: 0.9rem}}@media screen and (max-width: 1366px){.button,.widget-submit button,.button-container a,.linkbox a{font-size: 1rem}}@media screen and (max-width: 1024px){.button,.widget-submit button,.button-container a,.linkbox a{font-size: 0.9rem}}@media screen and (max-width: 1366px){.button,.widget-submit button,.button-container a,.linkbox a{font-size: 1rem}}@media screen and (max-width: 1024px){.button,.widget-submit button,.button-container a,.linkbox a{font-size: 0.9rem}}.button:hover,.widget-submit button:hover,.button-container a:hover,.linkbox a:hover{color: #d20a11;background-color: #fff}@media screen and (max-width: 480px){.button,.widget-submit button,.button-container a,.linkbox a{display: block;box-sizing: border-box;width: 100%}}.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: #d20a11;border: 1px solid #d20a11;background: transparent}.button-container.button-invert a:hover,button.button-invert:hover{color: #fff;background-color: #d20a11;border: 1px solid #d20a11}.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: #d20a11;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px;font-size: 1.05rem;color: #fff;background-color: #505050;border: 1px solid #505050;padding: 1rem 2rem;display: inline-block}@media screen and (max-width: 1366px){.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{font-size: 1rem}}@media screen and (max-width: 1024px){.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{font-size: 0.9rem}}@media screen and (max-width: 1366px){.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{font-size: 1rem}}@media screen and (max-width: 1024px){.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{font-size: 0.9rem}}.button-container-secondary button:hover,.button-container-secondary input:hover,.button-container-secondary a:hover{color: #d20a11;background-color: #fff}@media screen and (max-width: 1366px){.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{font-size: 1rem}}@media screen and (max-width: 1024px){.button-container-secondary button,.button-container-secondary input,.button-container-secondary a{font-size: 0.9rem}}.button-container-secondary button:hover,.button-container-secondary input:hover,.button-container-secondary a:hover{color: #d20a11;border: 1px solid #d20a11;background: transparent}.button-container-secondary button:hover:hover,.button-container-secondary input:hover:hover,.button-container-secondary a:hover:hover{color: #fff;background-color: #d20a11;border: 1px solid #d20a11}.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: 1.05rem;color: #fff;background-color: #505050;border: 1px solid #505050;background: linear-gradient(to right bottom, #f5ba15 10%, #ff8733);border-color: #cc5400}@media screen and (max-width: 1366px){.button-container-cta button,.button-container-cta input,.button-container-cta a{font-size: 1rem}}@media screen and (max-width: 1024px){.button-container-cta button,.button-container-cta input,.button-container-cta a{font-size: 0.9rem}}.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: Lato;text-align: center}@media screen and (max-width: 699px){.srch_frm button.submit{color: #fff;background-color: #d20a11}}.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 .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: #d20a11}.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}.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}.flex{display: flex;flex-wrap: wrap}.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}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: 1.05rem;line-height: 1.2}@media screen and (max-width: 1366px){.h6{font-size: 1rem}}@media screen and (max-width: 1024px){.h6{font-size: 0.9rem}}.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{color: #1a1b1c;font-size: 2.4rem;font-weight: 400;font-family: Lato}@media screen and (max-width: 1680px){h1{font-size: 2.15rem}}@media screen and (max-width: 1280px){h1{font-size: 1.9rem}}@media screen and (max-width: 1024px){h1{font-size: 1.7rem}}@media screen and (max-width: 800px){h1{font-size: 1.4rem}}@media screen and (max-width: 699px){h1{font-size: 1.3rem}}@media screen and (max-width: 480px){h1{font-size: 1.2rem}}h2{color: #1a1b1c;font-size: 1.85rem;font-weight: 400;font-family: Lato}@media screen and (max-width: 1366px){h2{font-size: 1.8rem}}@media screen and (max-width: 1024px){h2{font-size: 1.6rem}}@media screen and (max-width: 480px){h2{font-size: 1.4rem}}h3{color: #1a1b1c;font-size: 1.55rem;font-weight: 400;line-height: 125%;font-family: Lato}@media screen and (max-width: 1366px){h3{font-size: 1.75rem}}@media screen and (max-width: 699px){h3{font-size: 1.4375rem}}h4{color: #1a1b1c;font-size: 1.3rem;font-weight: 600}@media screen and (max-width: 1366px){h4{font-size: 1.1875rem}}@media screen and (max-width: 699px){h4{font-size: 1.25rem}}h5{font-size: 1.05rem;font-weight: 600}@media screen and (max-width: 1366px){h5{font-size: 1rem}}@media screen and (max-width: 1024px){h5{font-size: 0.9rem}}h6{margin-top: 0.5rem;margin-bottom: 0.5rem;font-size: 1.05rem;line-height: 1.2}@media screen and (max-width: 1366px){h6{font-size: 1rem}}@media screen and (max-width: 1024px){h6{font-size: 0.9rem}}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.75rem;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{position: relative;z-index: 2}#topbar .mod_layout_article{padding-top: 0.5rem;padding-bottom: 0.5rem;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 .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#topbar .mod_layout_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#topbar .mod_layout_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#topbar .mod_layout_article{padding-left: 1.5rem;padding-right: 1.5rem}}#topbar .ce_columnStart > *{align-self: center}#topbar .mod_search .widget{margin-bottom: 0}#topbar .mod_search input.text{padding: .35rem 1rem;font-weight: normal}#topbar .mod_search .widget-submit{display: none}#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}}#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}}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: 3rem}@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: 2rem}}#copyright .mod_layout_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){#copyright .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#copyright .mod_layout_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#copyright .mod_layout_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#copyright .mod_layout_article{padding-left: 1.5rem;padding-right: 1.5rem}}#copyright p{margin-bottom: 0;padding-top: 1.25rem;padding-bottom: 1.25rem}.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 .mod_article.width-medium > .article_inside{max-width: 1200px}.mod_article .mod_article.width-small > .article_inside{max-width: 800px}.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 .subheadline{margin-bottom: 1rem}.ce_text .linkbox{margin-top: 1rem}@media screen and (min-width: 699px){.ce_text .image_container{width: calc(100% / 2 - 14px)}.ce_text .image_container.float_above{margin-bottom: 2rem}.ce_text .image_container.float_left{margin-right: 2rem;margin-bottom: 2rem;float: left}.ce_text .image_container.float_right{margin-left: 2rem;margin-bottom: 2rem;float: right}.ce_text .image_container.float_below{margin-top: 2rem}.ce_text.float_right{overflow: hidden}.ce_text.float_right.split-2-1 .image_container{width: calc(100% / 3 - 14px)}.ce_text.float_right.split-3-1 .image_container{width: calc(100% / 4 - 14px)}.ce_text.float_right.split-4-1 .image_container{width: calc(100% / 5 - 14px)}.ce_text.float_right.split-1-2 .image_container{width: calc(100% / 3 * 2 - 14px)}.ce_text.float_right.split-1-3 .image_container{width: calc(100% / 4 * 3 - 14px)}.ce_text.float_right.split-1-4 .image_container{width: calc(100% / 5 * 4 - 14px)}.ce_text.split-1-1 .image_container{width: calc(100% / 2 - 14px)}.ce_text.float_left{overflow: hidden}.ce_text.float_left.split-2-1 .image_container{width: calc(100% / 3 * 2 - 14px)}.ce_text.float_left.split-3-1 .image_container{width: calc(100% / 4 * 3 - 14px)}.ce_text.float_left.split-4-1 .image_container{width: calc(100% / 5 * 4 - 14px)}.ce_text.float_left.split-1-2 .image_container{width: calc(100% / 3 - 14px)}.ce_text.float_left.split-1-3 .image_container{width: calc(100% / 4 - 14px)}.ce_text.float_left.split-1-4 .image_container{width: calc(100% / 5 - 14px)}}@media screen and (max-width: 699px){.ce_text .image_container{margin-bottom: 2rem}.ce_text.float_below{margin-bottom: 0;margin-top: 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: 1.05rem}@media screen and (max-width: 1366px){.ce_list ol li,.ce_list ul li,.ce_text ol li,.ce_text ul li{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_list ol li,.ce_list ul li,.ce_text ol li,.ce_text ul li{font-size: 0.9rem}}.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: #d20a11;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{font-size: 1.05rem;-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}@media screen and (max-width: 1366px){.btn-default{font-size: 1rem}}@media screen and (max-width: 1024px){.btn-default{font-size: 0.9rem}}.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: #d20a11;font-size: 1.05rem;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: 1366px){p.back a{font-size: 1rem}}@media screen and (max-width: 1024px){p.back a{font-size: 0.9rem}}@media screen and (max-width: 480px){p.back a{width: 100%}}p.back a.inverted{color: #d20a11;border: 1px solid #d20a11;background-color: #fff}p.back a.inverted:hover{color: #fff;background-color: #d20a11}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: 1.05rem;border-spacing: 0}@media screen and (max-width: 1366px){.ce_table table,.table table{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_table table,.table table{font-size: 0.9rem}}@media screen and (max-width: 1024px){.ce_table table,.table table{font-size: 0.75rem}}.ce_table th,.table th{color: #fff;background-color: #0079b8;border-bottom: 1px solid #005785;border-top: 1px solid #005785;text-align: left}.ce_table th.col_first,.table th.col_first{border-left: 1px solid #005785;border-top: 0}.ce_table th.col_last,.table th.col_last{border-right: 1px solid #005785}.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 #d20a11;border-bottom: 1px solid #d20a11}.ce_table tr.active td:first-child,.table tr.active td:first-child{border-left: 1px solid #d20a11}.ce_table tr.active td:last-child,.table tr.active td:last-child{border-right: 1px solid #d20a11}.ce_table td,.table td,.ce_table th,.table th{padding: .75rem .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 #d20a11}.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.75rem;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: 1.05rem}@media screen and (max-width: 1366px){.ce_download,.ce_downloads,.enclosure{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_download,.ce_downloads,.enclosure{font-size: 0.9rem}}.ce_download .size,.ce_downloads .size,.enclosure .size{color: #222;font-size: 0.75rem}.ce_download a,.ce_downloads a,.enclosure a{color: #d20a11}.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;margin-bottom: 0}@media screen and (max-width: 1024px){.mod_logo,div.logo{flex: 1 1 auto}}.mod_logo figure,div.logo figure{display: inline-block}.fixed .logo{padding-top: 1rem;padding-bottom: 1rem}.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.75rem;line-height: 1.5;margin-bottom: 1.5rem}.cookiebar__button.accept{-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: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px;padding: .5rem 4rem}@media screen and (max-width: 1366px){.cookiebar__button.accept{font-size: 1rem}}@media screen and (max-width: 1024px){.cookiebar__button.accept{font-size: 0.9rem}}@media screen and (max-width: 1366px){.cookiebar__button.accept{font-size: 1rem}}@media screen and (max-width: 1024px){.cookiebar__button.accept{font-size: 0.9rem}}.cookiebar__button.accept:hover{color: #d20a11;background-color: #fff}.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.75rem;font-weight: 400}.mod_sitemap li{margin-left: 28px;padding-right: 12px;padding-bottom: 3px;list-style-type: square}iframe{display: inline-block;width: 100%}.mainnav{flex: 1 1 auto;text-align: right}@media screen and (max-width: 1152px){.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: Lato;-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}}@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: #d20a11;-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: #d20a11}.mainnav a.srch:focus:before,.mainnav strong.srch:focus:before{color: #d20a11}.mainnav li.submenu.double:after{padding-bottom: 20px;content: ' ';background-color: transparent}.mainnav li.submenu.double ul{align-content: flex-start;flex-wrap: wrap;justify-content: center;flex-direction: column;min-width: 600px;background-color: #f5f5f5;margin-left: -180px !important;max-height: 28vh;display: none}.mainnav li.submenu.double li{display: block;width: calc(50% - 1px);border-right: 1px solid #f5f5f5;flex: 0 0 auto}.mainnav li.submenu.double li.last{border: 0;margin-bottom: auto}.mainnav li.submenu.double:hover ul{display: flex}.mainnav.line-top .level_1 > li > a:before{content: '';display: block;border-top: 3px solid #d20a11;width: 0;position: absolute;top: 0;transition: all .8s ease-in-out 0s}.mainnav.line-top .level_1 > li > a:before{left: 0%}.mainnav.line-top .level_1 > li > a:hover:before{width: 100%}.mainnav.line-bottom .level_1 > li > a:after{content: '';display: block;border-bottom: 3px solid #d20a11;width: 0;position: absolute;bottom: 0;transition: all .8s ease-in-out 0s}.mainnav.line-bottom .level_1 > li > a:after{left: 0%}.mainnav.line-bottom .level_1 > li > a:hover:after{width: 100%}.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;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;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: 1.05rem;-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: 1366px){.mainnav .level_2 li a,.mainnav .level_2 li strong{font-size: 1rem}}@media screen and (max-width: 1024px){.mainnav .level_2 li a,.mainnav .level_2 li strong{font-size: 0.9rem}}@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: #d20a11;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: 1.05rem;padding: 5px 0;text-transform: none}@media screen and (max-width: 1366px){.mainnav div.level_3 a{font-size: 1rem}}@media screen and (max-width: 1024px){.mainnav div.level_3 a{font-size: 0.9rem}}.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 #d20a11;-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: #d20a11;border-radius: 2px;background-color: #fff;border: 1px solid #d20a11;-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: #d20a11;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;background-color: #f5f5f5;border: 1px solid #d2d2d2}.subnav ul{list-style-type: none;padding: 0}.subnav ul ul.level_2{background-color: #fff;margin: 0;padding: 0}.subnav ul ul.level_2 li a,.subnav ul ul.level_2 li strong{font-weight: 400;padding-left: 2rem;font-size: 1.05rem}@media screen and (max-width: 1366px){.subnav ul ul.level_2 li a,.subnav ul ul.level_2 li strong{font-size: 1rem}}@media screen and (max-width: 1024px){.subnav ul ul.level_2 li a,.subnav ul ul.level_2 li strong{font-size: 0.9rem}}.subnav ul ul.level_2 li a:hover{color: #777}.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 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: #d20a11;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}.subnav a.active{color: #d20a11}.subnav a.active.submenu:hover{color: #d20a11;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: #d20a11}.footernav strong{color: #d20a11;font-weight: 400}.footernav ul{display: inline-block;list-style-type: none}.footernav li{margin-bottom: 0.25rem}.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: #d20a11;color: #fff}.jump-nav ul li a.active{background-color: #d20a11;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{flex: 1 1 auto;text-align: right;align-self: center}.mobilenav,.mm-menu{display: none}@media all and (max-width: 1152px){.mobilenav,.mm-menu{display: block}}.mobilenav i,.mm-menu i{font-size: 1.5rem}.pagination{display: grid;gap: 3rem;grid-template-columns: 1fr 4fr;margin-top: 2rem}.pagination .pages,.pagination .switcher{flex: 1 0 auto}.pagination .switcher{display: flex;align-items: center;justify-content: flex-end}.pagination ul{display: grid;gap: 1rem;grid-auto-flow: column;grid-auto-columns: max-content;list-style-type: none;margin: 0;padding: 0;margin-left: auto}.pagination p{align-self: center;font-weight: 300;margin: 0}.pagination a,.pagination .active{color: #d20a11;text-decoration: none;padding: .5rem 1rem;display: block}.pagination a:hover{background-color: #d20a11;color: #fff}.pagination .active{background-color: #d20a11;color: #fff}@media screen and (max-width: 800px){.pagination p{display: none}}@media screen and (max-width: 699px){.pagination ul{gap: 0.5rem}.pagination ul .first,.pagination ul .last{display: none}}@media screen and (max-width: 480px){.pagination ul .previous,.pagination ul .next{display: none}}.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: #d20a11;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.75rem}.mod_breadcrumb li{display: inline-block}.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: #d20a11;color: #fff;text-decoration: none;border-radius: 3px;z-index: 9999}#toTop:hover{cursor: pointer}.mod_article .syndication{bottom: 0;position: absolute}.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: #0079b8;color: #4d5459}.socialnav a:hover{background-color: #000;color: #fff}.socialnav a.facebook:hover{background-color: #3b5998}.socialnav a.twitter:hover{background-color: #1DA1F2}.socialnav a.whatsapp:hover{background-color: #25D366}.sidebar{position: fixed;right: 0;top: 45%;z-index: 9999}@media screen and (max-width: 480px){.sidebar{top: auto;bottom: 0}}.sidebar .ce_icon_box_multiple .special{display: block}.sidebar .ce_icon_box_multiple .icon{margin-right: 0.5rem}.sidebar a{display: block;padding: 0.5rem;margin-bottom: 2px;min-width: 38px;color: #fff;background-color: #d20a11;border-radius: 3px;-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}@media screen and (max-width: 480px){.sidebar a{font-size: 1.05rem}}@media screen and (max-width: 480px) and screen and (max-width: 1366px){.sidebar a{font-size: 1rem}}@media screen and (max-width: 480px) and screen and (max-width: 1024px){.sidebar a{font-size: 0.9rem}}.sidebar a: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;background-color: #505050;background: linear-gradient(to right bottom, #909090 10%, #505050)}.sidebar .count{margin-right: 0.25rem}.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: #d20a11;-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: 1.05rem}@media screen and (max-width: 1366px){.ce_accordion.appearance-layout-1 .toggler:before{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_accordion.appearance-layout-1 .toggler:before{font-size: 0.9rem}}.ce_accordion.appearance-layout-1 .toggler:hover{background-color: #f64c52}.ce_accordion.appearance-layout-1 .toggler.active{background-color: #d20a11}.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 #a1080d;background-color: rgba(255,255,255,0.9);padding: 1rem 1rem}.ce_accordion.appearance-layout-1 .accordion p{color: #505050}.ce_accordion.appearance-layout-1 .accordion a{color: #d20a11}.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: #d20a11;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: #d20a11}.ce_accordion.appearance-layout-2 .toggler.active{color: #d20a11}.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: #d20a11}.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: #d20a11;font-size: 1.05rem}@media screen and (max-width: 1366px){.ce_accordion.appearance-layout-3 .toggler:before,.ce_accordion.appearance-layout-4 .toggler:before{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_accordion.appearance-layout-3 .toggler:before,.ce_accordion.appearance-layout-4 .toggler:before{font-size: 0.9rem}}.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: 1.5rem 2.5rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;box-sizing: border-box;margin-bottom: 0.5rem}.ce_columnStart{display: grid;gap: 1.25rem;grid-auto-flow: column;grid-auto-columns: auto}.ce_columnStart.column-gap-none{gap: 0}.ce_columnStart.cols-2{grid-auto-flow: unset}.ce_columnStart.cols-2.set-6-6{grid-template-columns: repeat(2, 1fr)}.ce_columnStart.cols-2.set-4-8{grid-template-columns: 1fr 2fr}.ce_columnStart.cols-2.set-8-4{grid-template-columns: 2fr 1fr}.ce_columnStart.cols-2.set-9-3{grid-template-columns: 3fr 1fr}.ce_columnStart.cols-2.set-3-9{grid-template-columns: 1fr 3fr}.ce_columnStart.cols-2.set-2-3{grid-template-columns: 2fr 3fr}.ce_columnStart.cols-2.set-3-2{grid-template-columns: 3fr 2fr}.ce_columnStart.cols-3{grid-auto-flow: unset}.ce_columnStart.cols-3.set-3-3-6{grid-template-columns: 1fr 1fr 2fr}.ce_columnStart.cols-3.set-4-4-4{grid-template-columns: repeat(3, 1fr)}.ce_columnStart.cols-4{grid-auto-flow: unset}.ce_columnStart.cols-4.set-3-3-3-3{grid-template-columns: repeat(4, 1fr)}.ce_columnStart.cols-4.set-2-4-2-4{grid-template-columns: 1fr 2fr 1fr 2fr}.ce_columnStart.cols-4.set-4-2-4-2{grid-template-columns: 2fr 1fr 2fr 1fr}.ce_columnStart.cols-5{grid-auto-flow: unset;grid-template-columns: repeat(5, 1fr)}@media screen and (max-width: 1152px){.ce_columnStart.cols-m-2.col-m-1-6.col-m-2-6{grid-template-columns: repeat(2, 1fr) !important}.ce_columnStart.cols-3.col-m-1-3.col-m-2-3.col-m-3-6{grid-template-columns: 1fr 1fr 2fr}}@media screen and (max-width: 699px){.ce_columnStart{display: block !important}}.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 .btn{-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: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px}@media screen and (max-width: 1366px){.ce_button .btn{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_button .btn{font-size: 0.9rem}}@media screen and (max-width: 1366px){.ce_button .btn{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_button .btn{font-size: 0.9rem}}.ce_button .btn:hover{color: #d20a11;background-color: #fff}.ce_button .btn.width_1{border: 1px solid #d20a11 !important}.ce_button .btn.width_2{border: 2px solid #d20a11 !important}.ce_button .btn.width_3{border: 3px solid #d20a11 !important}.ce_button .btn.width_4{border: 4px solid #d20a11 !important}.ce_button .btn.width_5{border: 5px solid #d20a11 !important}.ce_downloads ul{list-style-type: none}.download-element.border{box-sizing: padding-box;color: #d20a11;background-color: #fff}.download-element.border a{transition: 0s}.download-element.border:hover{color: #fff;background-color: #d20a11}.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 #d20a11}.download-element.width_2{padding: 14px 30px;border: 2px solid #d20a11}.download-element.width_3{padding: 13px 29px;border: 3px solid #d20a11}.download-element.width_4{padding: 12px 28px;border: 4px solid #d20a11}.download-element.width_5{padding: 11px 27px;border: 5px solid #d20a11}.ce_headline.alignment-centered{text-align: center}.ce_headline.alignment-right{text-align: right}@media screen and (max-width: 1024px){.ce_headline_button{text-align: center}}@media screen and (min-width: calc(699px + 1px)){.ce_headline_button .inside{display: flex;justify-content: space-between;align-items: center}.ce_headline_button .linkbox{align-self: center;padding-left: 2%}}@media screen and (min-width: calc(480px + 1px)){.ce_headline_button .linkboxes{display: flex;justify-content: space-between;align-items: center}}@media screen and (max-width: 480px){.ce_headline_button .linkbox2{margin-top: 1rem}}.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{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{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_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{position: relative;text-align: center;transition: all .3s ease;z-index: 1}.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: 1.05rem;display: inline-block;margin-top: 0.5rem;padding: .5rem 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}@media screen and (max-width: 1366px){.ce_icon_box .btn,.ce_icon_box_fa .btn{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_icon_box .btn,.ce_icon_box_fa .btn{font-size: 0.9rem}}.ce_icon_box:hover .btn,.ce_icon_box_fa:hover .btn{color: #fff;background-color: #d20a11;border: 1px solid #d20a11;-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}.ce_icon_box .inside .icon_link div.icon,.ce_icon_box_fa .inside .icon_link div.icon{margin-right: 1rem;align-self: center}.ce_icon_box .inside .icon_link div.link,.ce_icon_box_fa .inside .icon_link div.link{align-self: center}.ce_icon_box.icon-left .icon_link,.ce_icon_box_fa.icon-left .icon_link{display: flex;margin: auto}.ce_icon_box.icon-right .icon_link,.ce_icon_box_fa.icon-right .icon_link{display: flex;margin: auto}.ce_icon_box.icon-right .icon_link .inside,.ce_icon_box_fa.icon-right .icon_link .inside{flex-direction: row-reverse}.ce_icon_box.icon-right .icon_link .inside div.icon,.ce_icon_box_fa.icon-right .icon_link .inside div.icon{margin-left: 2rem}.ce_icon_box.icon-top .icon_link .inside,.ce_icon_box_fa.icon-top .icon_link .inside{flex-direction: column}.ce_icon_box.icon-top .icon_link .inside div.icon,.ce_icon_box_fa.icon-top .icon_link .inside div.icon{margin-bottom: 2rem}.ce_icon_box.icon-bottom .icon_link .inside,.ce_icon_box_fa.icon-bottom .icon_link .inside{flex-direction: column-reverse}.ce_icon_box.icon-bottom .icon_link .inside div.icon,.ce_icon_box_fa.icon-bottom .icon_link .inside div.icon{margin-top: 2rem}.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: 4rem}.ce_icon_link .inside a{display: flex}.ce_icon_link .inside a div.icon{margin-right: 0.5rem;align-self: center}.ce_icon_link .inside a div.link{align-self: center}.ce_icon_link.icon-right a{flex-direction: row-reverse}.ce_icon_link.icon-right a div.icon{margin-left: 0.5rem}.ce_icon_link.icon-top a{flex-direction: column}.ce_icon_link.icon-top a div.icon{margin-bottom: 0.5rem}.ce_icon_link.icon-bottom a{flex-direction: column-reverse}.ce_icon_link.icon-bottom a div.icon{margin-top: 0.5rem}.ce_icon_box_multiple .special{display: flex}.ce_icon_box_multiple .special > *{margin-right: 1rem}.ce_icon_box_multiple .special > * i:before{display: inline-block;border-radius: 3px;height: 1.3rem;width: 1.75rem;font-size: 0.9rem;text-align: center;padding-top: 0.5rem;background-color: #fff;color: #0079b8}.ce_text_left .inside,.ce_text_right .inside{display: grid;grid-template-columns: 50% 50%}.ce_text_left.split-1-1 .inside,.ce_text_right.split-1-1 .inside{grid-template-columns: 1fr 1fr}.ce_text_left.split-2-1 .inside,.ce_text_right.split-2-1 .inside{grid-template-columns: 2fr 1fr}.ce_text_left.split-1-2 .inside,.ce_text_right.split-1-2 .inside{grid-template-columns: 1fr 2fr}.ce_text_left.split-3-1 .inside,.ce_text_right.split-3-1 .inside{grid-template-columns: 3fr 1fr}.ce_text_left.split-1-3 .inside,.ce_text_right.split-1-3 .inside{grid-template-columns: 1fr 3fr}.ce_text_left.split-4-1 .inside,.ce_text_right.split-4-1 .inside{grid-template-columns: 4fr 1fr}.ce_text_left.split-1-4 .inside,.ce_text_right.split-1-4 .inside{grid-template-columns: 1fr 4fr}.ce_text_left .text,.ce_text_right .text{padding: 2rem;justify-content: center;display: flex;flex-direction: column}.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{display: flex;flex-direction: column;margin: 0;flex: 0 0 50%;border-left: 1px solid #d7dbde}.ce_text_left .image_container picture,.ce_text_right .image_container picture{display: flex;flex: 1}.ce_text_left .image_container img,.ce_text_right .image_container img{width: 100%;height: auto;object-fit: cover;flex-grow: 1}@media screen and (max-width: 1024px){.ce_text_left.split-1-1 .inside{grid-template-columns: 2fr 1fr}.ce_text_right.split-1-1 .inside{grid-template-columns: 1fr 2fr}}@media screen and (max-width: 699px){.ce_text_right .inside{display: flex;flex-direction: column}.ce_text_left .inside{display: flex;flex-direction: column-reverse}}.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.75rem;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: 1.05rem;font-weight: 700}@media screen and (max-width: 1366px){.ce_link_box .subheadline{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_link_box .subheadline{font-size: 0.9rem}}.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: #d20a11}.ce_link_box.appearance-hover-1 .layer{z-index: 2;display: flex;align-items: center;justify-content: center;opacity: 0;background: #d20a11;-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: #d20a11}.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.75rem}.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{list-style-type: none;position: relative;margin-top: 0.5rem;padding-top: 1rem;padding-left: 3rem}.ce_feature_box li::before{font-family: 'Font Awesome 5 Free';font-weight: 700;position: absolute;left: 0.5rem;display: inline-block;content: "\f00c";color: #d7dbde}.ce_feature_box ul{padding: 0 2rem 2rem}.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: #d20a11;font-weight: 400}.ce_feature_box.appearance-layout-1 .subheadline{margin: .5rem 0 0;color: #d20a11}.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: #d20a11;font-size: 1.05rem;font-weight: 700}@media screen and (max-width: 1366px){.ce_feature_box.appearance-layout-1 a.more{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_feature_box.appearance-layout-1 a.more{font-size: 0.9rem}}.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: #d20a11;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: #d20a11;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: #d20a11;font-size: 1.05rem;font-weight: 700}@media screen and (max-width: 1366px){.ce_feature_box.appearance-layout-3 a.more{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_feature_box.appearance-layout-3 a.more{font-size: 0.9rem}}.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: #d20a11}.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: #d20a11;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: 1.05rem}@media screen and (max-width: 1366px){.tab_inside li{font-size: 1rem}}@media screen and (max-width: 1024px){.tab_inside li{font-size: 0.9rem}}.ce_teaser_box{display: flex}.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;display: flex;flex-flow: column}.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: #d20a11;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: 1.05rem;font-weight: 700;margin-bottom: 0.5rem}@media screen and (max-width: 1366px){.ce_teaser_box .subheadline{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_teaser_box .subheadline{font-size: 0.9rem}}.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{margin-top: auto;padding: 0 2rem}.ce_teaser_box.text-overlay .inside{position: relative}.ce_teaser_box.text-overlay .textbox{position: absolute;top: 0;left: 0;display: flex;flex-direction: column;flex-wrap: nowrap;width: 100%;height: 100%;padding: 10%}.ce_teaser_box.text-overlay .linkbox{position: absolute;bottom: 0;width: 100%}.ce_teaser_box.text-overlay .linkbox a{margin: 4rem}.ce_image_advanced.alignment-centered img,.ce_image_advanced.alignment-right img,.ce_image_advanced.alignment-left img{display: inline-block}.ce_image_advanced img{max-width: 100%;height: auto}.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: #d20a11}.ce_image_advanced.width_1 img{width: calc(100% - 2px);border: 1px solid #d20a11}.ce_image_advanced.width_2 img{width: calc(100% - 4px);border: 2px solid #d20a11}.ce_image_advanced.width_3 img{width: calc(100% - 6px);border: 3px solid #d20a11}.ce_image_advanced.width_4 img{width: calc(100% - 8px);border: 4px solid #d20a11}.ce_image_advanced.width_5 img{width: calc(100% - 10px);border: 5px solid #d20a11}.ce_facts .stats{display: flex;align-content: stretch;align-items: stretch;flex-direction: row;flex-wrap: wrap;justify-content: space-between}.ce_facts .item{flex: 1 0 auto;text-align: center}.ce_facts .cols_1 .item{width: 100%}.ce_facts .cols_2 .item{width: 50%}@media screen and (max-width: 480px){.ce_facts .cols_2 .item{width: 100%;margin-top: 5vh;margin-bottom: 5vh}}.ce_facts .cols_3 .item{width: 33.3333%}@media screen and (max-width: 480px){.ce_facts .cols_3 .item{width: 100%;margin-top: 5vh;margin-bottom: 5vh}}.ce_facts .cols_4 .item{width: 25%}@media screen and (max-width: 800px){.ce_facts .cols_4 .item{width: 50%;margin-top: 5vh;margin-bottom: 5vh}}@media screen and (max-width: 480px){.ce_facts .cols_4 .item{width: 100%}}.ce_facts .cols_5 .item{width: 20%}@media screen and (max-width: 800px){.ce_facts .cols_5 .item{width: 50%;margin-top: 5vh;margin-bottom: 5vh}}@media screen and (max-width: 480px){.ce_facts .cols_5 .item{width: 100%}}.ce_facts .cols_6 .item{width: 16.6667%}@media screen and (max-width: 800px){.ce_facts .cols_6 .item{width: 33.3333%;margin-top: 5vh;margin-bottom: 5vh}}@media screen and (max-width: 480px){.ce_facts .cols_6 .item{width: 100%}}.ce_facts .icon{margin-bottom: 0.5rem}.ce_facts .icon i{font-size: 5vh}.ce_facts .icon img{display: inline-block;width: auto;height: 5vh}.ce_facts .title{line-height: 1.2;font-size: 5.25rem;font-weight: 300}@media screen and (max-width: 1680px){.ce_facts .title{font-size: 4.5rem}}@media screen and (max-width: 1366px){.ce_facts .title{font-size: 3.75rem}}@media screen and (max-width: 1024px){.ce_facts .title{font-size: 3rem}}@media screen and (max-width: 800px){.ce_facts .title{font-size: 2.25rem}}.ce_facts .text{font-size: 1.5rem;line-height: 1.2;font-weight: 700}@media screen and (max-width: 1024px){.ce_facts .text{font-size: 1.125rem}}.ce_facts.appearance-layout-1{color: #fff}.ce_facts.appearance-layout-2{color: #777}.ce_section_image,.ce_section_parallax{overflow: hidden;position: relative}.ce_section_image .inside,.ce_section_parallax .inside{position: relative}.ce_section_image img,.ce_section_parallax img{width: 100%;height: auto}.ce_section_image .textbox,.ce_section_parallax .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,.ce_section_parallax .textbox{padding: 6vh 4vw}}@media screen and (max-width: 1366px){.ce_section_image .textbox,.ce_section_parallax .textbox{padding-right: 2.5rem;padding-left: 2.5rem}}@media screen and (max-width: 699px){.ce_section_image .textbox,.ce_section_parallax .textbox{padding-right: 1.5rem;padding-left: 1.5rem}}.ce_section_image .textbox.position-top,.ce_section_parallax .textbox.position-top{justify-content: flex-start}.ce_section_image .textbox.position-center,.ce_section_parallax .textbox.position-center{justify-content: center}.ce_section_image .textbox.position-bottom,.ce_section_parallax .textbox.position-bottom{justify-content: flex-end}.ce_section_image .textbox.alignment-left,.ce_section_parallax .textbox.alignment-left{align-items: flex-start}.ce_section_image .textbox.alignment-center,.ce_section_parallax .textbox.alignment-center{align-items: center}.ce_section_image .textbox.alignment-right,.ce_section_parallax .textbox.alignment-right{align-items: flex-end}.ce_section_image .headline,.ce_section_parallax .headline,.ce_section_image .subheadline,.ce_section_parallax .subheadline,.ce_section_image .text,.ce_section_parallax .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_parallax .headline p,.ce_section_image .subheadline p,.ce_section_parallax .subheadline p,.ce_section_image .text p,.ce_section_parallax .text p{margin-bottom: 0;color: #fff;text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_section_image .headline,.ce_section_parallax .headline{display: inline-block;line-height: 1.2;font-weight: 700}.ce_section_image .subheadline,.ce_section_parallax .subheadline{margin-bottom: 1rem;padding-bottom: 1rem}.ce_section_image a.more,.ce_section_parallax 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.shadow .headline,.parallax .ce_intro.shadow .headline,.xl-parallax .ce_intro.shadow .headline,.ce_section_parallax.shadow .subheadline,.parallax .ce_intro.shadow .subheadline,.xl-parallax .ce_intro.shadow .subheadline,.ce_section_parallax.shadow .text,.parallax .ce_intro.shadow .text,.xl-parallax .ce_intro.shadow .text{text-shadow: 0 0 6px rgba(0,0,0,0.4)}.ce_section_parallax.shadow .headline p,.parallax .ce_intro.shadow .headline p,.xl-parallax .ce_intro.shadow .headline p,.ce_section_parallax.shadow .subheadline p,.parallax .ce_intro.shadow .subheadline p,.xl-parallax .ce_intro.shadow .subheadline p,.ce_section_parallax.shadow .text p,.parallax .ce_intro.shadow .text p,.xl-parallax .ce_intro.shadow .text p{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: #d20a11;-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: #d20a11}.mod_search .highlight{color: #d20a11;background-color: transparent;font-weight: 400}.mod_search p.url{color: #d20a11;font-size: 0.75rem}.mod_search span.relevance{font-size: 0.75rem;font-weight: 300}.mod_search span.filesize{color: #222;font-size: 0.75rem}.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: #d20a11;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: #d20a11;border: 0;background-color: transparent;font-family: 'Font Awesome 5 Free';font-weight: 700;font-size: 1.05rem;-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}@media screen and (max-width: 1366px){a.nav_toggler,button.nav_toggler{font-size: 1rem}}@media screen and (max-width: 1024px){a.nav_toggler,button.nav_toggler{font-size: 0.9rem}}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: #d20a11;-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}@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: #d20a11;opacity: .25;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale}.slick-dots li.slick-active button:before{color: #d20a11;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}.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: #d20a11;border: 1px double #b0080e;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}@media print{#footer,#copyright,#right,#left,#topbar,#topnav .mod_layout_article > div,#topnav .mod_layout_article > nav,#wrapper .submit,.noprint,#header,.back,.syndication{display: none}#topnav .mod_layout_article .logo{display: block}.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}table{width: 100%}}/*!
 * 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: "\2b"}.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: "\23"}.fa-home:before{content: "\f015"}.fa-house: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: "\2b"}.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-tiktok:before{content: "\e07b"}.fa-dharmachakra:before{content: "\f655"}.fa-bullhorn:before{content: "\f0a1"}.fa-question:before{content: "\3f"}.fa-robot:before{content: "\f544"}.fa-right-left:before{content: "\f362"}.fa-info:before{content: "\f129"}.fa-images:before{content: "\f302"}.fa-industry:before{content: "\f275"}.fa-cubes:before{content: "\f1b3"}.fa-user-gear:before{content: "\f4fe"}.fa-box:before{content: "\f466"}.fa-building-flag:before{content: "\e4d5"}.fa-people-group:before{content: "\e533"}.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.woff2') format('woff2'), url('/files/theme/fonts/fontawesome/fa-solid-900.ttf') format('truetype')}.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.woff2') format('woff2'), url('/files/theme/fonts/fontawesome/fa-regular-400.ttf') format('truetype')}.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.woff2') format('woff2'), url('/files/theme/fonts/fontawesome/fa-brands-400.ttf') format('truetype')}.fab{font-family: 'Font Awesome 5 Brands'}.font_standard{font-family: Lato}.font_alternative{font-family: Lato}body{color: #4d5459}body{background-color: #fff}.font_global{font-size: 1.05rem}@media screen and (max-width: 1366px){.font_global{font-size: 1rem}}@media screen and (max-width: 1024px){.font_global{font-size: 0.9rem}}.font_small{font-size: 0.75rem}.p-large{padding-left: 2remrem;padding-right: 2remrem}.bg-5{background-color: #0079b8}.bg-7{background-color: #a10d12}.bg-9{background-color: #f1f4f6}.bg-8{background-color: #2b4b63}.bg-6{background-color: #4d5459}.bg-1{background-color: #d20a11}.bg-2{background-color: #fff}.bg-3{background-color: #1a1b1c}.bg-4{background-color: #d7dbde}.fc-5{color: #0079b8}.fc-5 .headline{color: #0079b8}.fc-5 a{color: #0079b8}.fc-7{color: #a10d12}.fc-7 .headline{color: #a10d12}.fc-7 a{color: #a10d12}.fc-9{color: #f1f4f6}.fc-9 .headline{color: #f1f4f6}.fc-9 a{color: #f1f4f6}.fc-8{color: #2b4b63}.fc-8 .headline{color: #2b4b63}.fc-8 a{color: #2b4b63}.fc-6{color: #4d5459}.fc-6 .headline{color: #4d5459}.fc-6 a{color: #4d5459}.fc-1{color: #d20a11}.fc-1 .headline{color: #d20a11}.fc-1 a{color: #d20a11}.fc-2{color: #fff}.fc-2 .headline{color: #fff}.fc-2 a{color: #fff}.fc-3{color: #1a1b1c}.fc-3 .headline{color: #1a1b1c}.fc-3 a{color: #1a1b1c}.fc-4{color: #d7dbde}.fc-4 .headline{color: #d7dbde}.fc-4 a{color: #d7dbde}.hlc-5 .headline,.hlc-5 .headline > *{color: #0079b8}.hlc-7 .headline,.hlc-7 .headline > *{color: #a10d12}.hlc-9 .headline,.hlc-9 .headline > *{color: #f1f4f6}.hlc-8 .headline,.hlc-8 .headline > *{color: #2b4b63}.hlc-6 .headline,.hlc-6 .headline > *{color: #4d5459}.hlc-1 .headline,.hlc-1 .headline > *{color: #d20a11}.hlc-2 .headline,.hlc-2 .headline > *{color: #fff}.hlc-3 .headline,.hlc-3 .headline > *{color: #1a1b1c}.hlc-4 .headline,.hlc-4 .headline > *{color: #d7dbde}.parallax .bg-5{background-color: rgba(0,121,184,0.85)}.parallax .bg-7{background-color: rgba(161,13,18,0.85)}.parallax .bg-9{background-color: rgba(241,244,246,0.85)}.parallax .bg-8{background-color: rgba(43,75,99,0.85)}.parallax .bg-6{background-color: rgba(77,84,89,0.85)}.parallax .bg-1{background-color: rgba(210,10,17,0.85)}.parallax .bg-2{background-color: rgba(255,255,255,0.85)}.parallax .bg-3{background-color: rgba(26,27,28,0.85)}.parallax .bg-4{background-color: rgba(215,219,222,0.85)}.ce_{border-radius: 3px}.mod_article{margin-top: 3.5rem;margin-bottom: 3.5rem;position: relative}@media screen and (max-width: 800px){.mod_article{margin-top: 1.5rem}}@media screen and (max-width: 800px){.mod_article{margin-bottom: 1.5rem}}.border-silver{border: 1px solid #d7dbde}.border-gray{border: 1px solid #4d5459}.btn-default,.ce_button.default .btn{color: #fff;background-color: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px}@media screen and (max-width: 1366px){.btn-default,.ce_button.default .btn{font-size: 1rem}}@media screen and (max-width: 1024px){.btn-default,.ce_button.default .btn{font-size: 0.9rem}}.btn-default:hover,.ce_button.default .btn:hover{color: #d20a11;background-color: #fff}.btn-secondary,.ce_button.secondary .btn{color: #1a1b1c;background-color: #fff;border: 1px solid #fff}.btn-secondary:hover,.ce_button.secondary .btn:hover{color: #fff;background-color: #4d5459;border: 1px solid #fff}.btn-secondary-line,.ce_button.secondary-line .btn{color: #fff;border: 1px solid #fff;background: transparent}.btn-dark-blue,.ce_button.dark-blue .btn{color: #fff;background-color: #2b4b63;border: 1px solid #2b4b63}.btn-dark-blue:hover,.ce_button.dark-blue .btn:hover{color: #d20a11;background-color: #fff}.btn-dark-gray,.ce_button.dark-gray .btn{color: #fff;background-color: #4d5459;border: 1px solid #4d5459}.btn-dark-blue-69,.ce_button.dark-blue-69 .btn{color: #2b4b63;border: 1px solid #2b4b63;width: 80%;max-width: 400px;background: transparent}.btn-blue,.ce_button.blue .btn{color: #fff;background-color: #0079b8;border: 1px solid #0079b8}.btn-cta,.ce_button.cta .btn{color: #fff;background-color: #d20a11;border: 1px solid #d20a11;padding: .6rem 6rem !important;box-shadow: rgba(0,0,0,0.12) 0 4px 9px 1px;background: linear-gradient(135deg, rgba(210,10,17,0.98) 0%, rgba(173,0,6,0.98) 100%)}.btn-cta:hover,.ce_button.cta .btn:hover{color: #d20a11;background-color: #fff;background: #fff;box-shadow: 0 0 0 2px rgba(0,0,0,0.08), 0 4px 14px rgba(0,0,0,0.12), 0 0px 0px rgba(0,0,0,0.06)}.btn-cancel-big,.ce_button.cancel-big .btn{color: #4d5459;background-color: #d7dbde;border: 1px solid #d7dbde;padding: .6rem 6rem !important}.btn-inverted,.ce_button.inverted .btn{color: #d20a11;border: 1px solid #d20a11;background: transparent}.btn-inverted:hover,.ce_button.inverted .btn:hover{color: #fff;background-color: #d20a11;border: 1px solid #d20a11}div[class*="ce_"].darkblue-68 .linkbox a{color: #fff;background-color: #2b4b63;border: 1px solid #2b4b63}div[class*="ce_"].darkblue-68 .linkbox a:hover{color: #d20a11;background-color: #fff}div[class*="ce_"].dark-gray .linkbox a{color: #fff;background-color: #4d5459;border: 1px solid #4d5459}div[class*="ce_"].blue .linkbox .more,div[class*="ce_"].blue .linkbox a{color: #fff;background-color: #0079b8;border: 1px solid #0079b8}div[class*="ce_"].text-large{font-size: 1.3rem}@media screen and (max-width: 1366px){div[class*="ce_"].text-large{font-size: 1.1875rem}}@media screen and (max-width: 699px){div[class*="ce_"].text-large{font-size: 1.25rem}}div[class*="ce_"].cta .linkbox a{color: #fff;background-color: #d20a11;border: 1px solid #d20a11;padding: .6rem 6rem !important;box-shadow: rgba(0,0,0,0.12) 0 4px 9px 1px;background: linear-gradient(135deg, rgba(210,10,17,0.98) 0%, rgba(173,0,6,0.98) 100%)}div[class*="ce_"].cta .linkbox a:hover{color: #d20a11;background-color: #fff;background: #fff;box-shadow: 0 0 0 2px rgba(0,0,0,0.08), 0 4px 14px rgba(0,0,0,0.12), 0 0px 0px rgba(0,0,0,0.06)}div[class*="ce_"].button-inverted .linkbox a{color: #d20a11;border: 1px solid #d20a11;background: transparent}div[class*="ce_"].button-inverted .linkbox a:hover{color: #fff;background-color: #d20a11;border: 1px solid #d20a11}div[class*="ce_"].button-secondary .linkbox a{color: #1a1b1c;background-color: #fff;border: 1px solid #fff}div[class*="ce_"].button-secondary .linkbox a:hover{color: #fff;background-color: #4d5459;border: 1px solid #fff}div[class*="ce_"].dark-subheadline .subheadline{background-color: #0079b8;color: #fff;padding: 1rem 1rem}div[class*="ce_"].green-subheadline .subheadline{background-color: #2b4b63;color: #fff}div[class*="ce_"].midgray-subheadline .subheadline{background-color: #4f5153;color: #fff}input.text,textarea,select,input.captcha{color: #0079b8;font-size: 1.05rem;font-weight: 400;border: 1px solid #a10d12;padding: 1rem 1.25rem;line-height: 150%;border-radius: 3px;font-family: Lato;border: 1px solid #93989b}@media screen and (max-width: 1366px){input.text,textarea,select,input.captcha{font-size: 1rem}}@media screen and (max-width: 1024px){input.text,textarea,select,input.captcha{font-size: 0.9rem}}label{color: #1a1b1c;font-weight: 600}.formbody > fieldset > legend{color: #1a1b1c;font-weight: 600;margin-bottom: 0.25rem}textarea{resize: none}.headline-size-l{color: #1a1b1c;font-size: 1.85rem;font-weight: 400;font-family: Lato}@media screen and (max-width: 1366px){.headline-size-l{font-size: 1.8rem}}@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{color: #1a1b1c;font-size: 1.55rem;font-weight: 400;line-height: 125%;font-family: Lato}@media screen and (max-width: 1366px){.headline-size-m{font-size: 1.75rem}}@media screen and (max-width: 699px){.headline-size-m{font-size: 1.4375rem}}.headline-size-s{color: #1a1b1c;font-size: 1.3rem;font-weight: 600}@media screen and (max-width: 1366px){.headline-size-s{font-size: 1.1875rem}}@media screen and (max-width: 699px){.headline-size-s{font-size: 1.25rem}}.headline-size-xl{color: #1a1b1c;font-size: 2.4rem;font-weight: 400;font-family: Lato}@media screen and (max-width: 1680px){.headline-size-xl{font-size: 2.15rem}}@media screen and (max-width: 1280px){.headline-size-xl{font-size: 1.9rem}}@media screen and (max-width: 1024px){.headline-size-xl{font-size: 1.7rem}}@media screen and (max-width: 800px){.headline-size-xl{font-size: 1.4rem}}@media screen and (max-width: 699px){.headline-size-xl{font-size: 1.3rem}}@media screen and (max-width: 480px){.headline-size-xl{font-size: 1.2rem}}.headline-size-xs{font-size: 1.05rem;font-weight: 600}@media screen and (max-width: 1366px){.headline-size-xs{font-size: 1rem}}@media screen and (max-width: 1024px){.headline-size-xs{font-size: 0.9rem}}.ce_icon_box.icon-small .icon i{font-size: 2rem}.ce_icon_box.icon-large .icon i{font-size: 6rem}p{font-weight: 400;line-height: 150%;margin-bottom: 1rem}.ce_teaser_box_double.purple .text2{background-color: #4d5459}.margin-top-xx-large{margin-top: 8rem}.margin-top-x-large{margin-top: 6.5rem}.margin-top-large{margin-top: 5rem}.margin-top-medium{margin-top: 3.5rem}.margin-top-small{margin-top: 2.25rem}.margin-top-x-small{margin-top: 1.25rem}.margin-bottom-xx-large{margin-bottom: 8rem}.margin-bottom-x-large{margin-bottom: 6.5rem}.margin-bottom-large{margin-bottom: 5rem}.margin-bottom-medium{margin-bottom: 3.5rem}.margin-bottom-small{margin-bottom: 2.25rem}.margin-bottom-x-small{margin-bottom: 1.25rem}@media screen and (max-width: 800px){.margin-top-xx-large{margin-top: 4rem}}@media screen and (max-width: 800px){.margin-top-large{margin-top: 2rem}}@media screen and (max-width: 800px){.margin-top-medium{margin-top: 1.5rem}}@media screen and (max-width: 800px){.margin-top-small{margin-top: 1rem}}@media screen and (max-width: 800px){.margin-top-x-small{margin-top: 1rem}}@media screen and (max-width: 800px){.margin-bottom-xx-large{margin-bottom: 4rem}}@media screen and (max-width: 800px){.margin-bottom-large{margin-bottom: 2rem}}@media screen and (max-width: 800px){.margin-bottom-medium{margin-bottom: 1.5rem}}@media screen and (max-width: 800px){.margin-bottom-small{margin-bottom: 1rem}}@media screen and (max-width: 800px){.margin-bottom-x-small{margin-bottom: 1rem}}.padding-h-small .article_inside{padding-left: 2rem !important;padding-right: 2rem !important}.padding-h-small > .inside{padding-left: 2rem !important;padding-right: 2rem !important}.padding-h-medium .article_inside{padding-left: 4rem !important;padding-right: 4rem !important}.padding-h-medium > .inside{padding-left: 4rem !important;padding-right: 4rem !important}.padding-h-large .article_inside{padding-left: 8rem !important;padding-right: 8rem !important}.padding-h-large > .inside{padding-left: 8rem !important;padding-right: 8rem !important}.padding-h-x-large .article_inside{padding-left: 16rem !important;padding-right: 16rem !important}.padding-h-x-large > .inside{padding-left: 16rem !important;padding-right: 16rem !important}.padding-h-xx-large .article_inside{padding-left: 20rem !important;padding-right: 20rem !important}.padding-h-xx-large > .inside{padding-left: 20rem !important;padding-right: 20rem !important}.padding-h-x-small .article_inside{padding-left: 2rem !important;padding-right: 2rem !important}.padding-h-x-small > .inside{padding-left: 2rem !important;padding-right: 2rem !important}@media screen and (max-width: 1024px){.padding-h-small .article_inside,.padding-h-small > .inside{padding-left: 1.5rem !important;padding-right: 1.5rem !important}}@media screen and (max-width: 699px){.padding-h-small .article_inside,.padding-h-small > .inside{padding-left: 1rem !important;padding-right: 1rem !important}}@media screen and (max-width: 1024px){.padding-h-medium .article_inside,.padding-h-medium > .inside{padding-left: 1.5rem !important;padding-right: 1.5rem !important}}@media screen and (max-width: 1024px){.padding-h-large .article_inside,.padding-h-large > .inside{padding-left: 3% !important;padding-right: 3% !important}}@media screen and (max-width: 1680px){.padding-h-x-large .article_inside,.padding-h-x-large > .inside{padding-left: 8rem !important;padding-right: 8rem !important}}@media screen and (max-width: 1440px){.padding-h-x-large .article_inside,.padding-h-x-large > .inside{padding-left: 4rem !important;padding-right: 4rem !important}}@media screen and (max-width: 1280px){.padding-h-x-large .article_inside,.padding-h-x-large > .inside{padding-left: 2rem !important;padding-right: 2rem !important}}.padding-v-x-small .article_inside{padding-top: 1.5rem !important;padding-bottom: 1.5rem !important}.padding-v-x-small > .inside{padding-top: 1.5rem !important;padding-bottom: 1.5rem !important}.padding-v-x-large .article_inside{padding-top: 15rem !important;padding-bottom: 15rem !important}.padding-v-x-large > .inside{padding-top: 15rem !important;padding-bottom: 15rem !important}.padding-v-xx-large .article_inside{padding-top: 20rem !important;padding-bottom: 20rem !important}.padding-v-xx-large > .inside{padding-top: 20rem !important;padding-bottom: 20rem !important}.padding-v-small .article_inside{padding-top: 2rem !important;padding-bottom: 2rem !important}.padding-v-small > .inside{padding-top: 2rem !important;padding-bottom: 2rem !important}.padding-v-medium .article_inside{padding-top: 4rem !important;padding-bottom: 4rem !important}.padding-v-medium > .inside{padding-top: 4rem !important;padding-bottom: 4rem !important}.padding-v-large .article_inside{padding-top: 8rem !important;padding-bottom: 8rem !important}.padding-v-large > .inside{padding-top: 8rem !important;padding-bottom: 8rem !important}@media screen and (max-width: 800px){.padding-v-x-large .article_inside{padding-top: 10vh !important;padding-bottom: 10vh !important}}@media screen and (max-width: 699px){.padding-v-x-large .article_inside{padding-top: 5rem !important;padding-bottom: 5rem !important}}@media screen and (max-width: 1024px){.padding-v-large .article_inside{padding-top: 3rem !important;padding-bottom: 3rem !important}}.font_xxxl{font-size: 3.25rem}.font_xxs{font-size: 0.75rem}.font_l{font-size: 1.55rem}.font_m{font-size: 1.3rem}.font_s{font-size: 1.05rem}.font_xl{font-size: 1.85rem}.font_xxl{font-size: 2.4rem}.font_xs{font-size: 0.9rem}@media screen and (max-width: 1680px){.font_xxxl{font-size: 2.75rem}}@media screen and (max-width: 1280px){.font_xxxl{font-size: 2.15rem}}@media screen and (max-width: 1024px){.font_xxxl{font-size: 1.8rem}}@media screen and (max-width: 800px){.font_xxxl{font-size: 1.6rem}}@media screen and (max-width: 699px){.font_xxxl{font-size: 1.5rem}}@media screen and (max-width: 480px){.font_xxxl{font-size: 1.4rem}}@media screen and (max-width: 1366px){.font_l{font-size: 1.75rem}}@media screen and (max-width: 699px){.font_l{font-size: 1.4375rem}}@media screen and (max-width: 1366px){.font_m{font-size: 1.1875rem}}@media screen and (max-width: 699px){.font_m{font-size: 1.25rem}}@media screen and (max-width: 1366px){.font_s{font-size: 1rem}}@media screen and (max-width: 1024px){.font_s{font-size: 0.9rem}}@media screen and (max-width: 1366px){.font_xl{font-size: 1.8rem}}@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: 1680px){.font_xxl{font-size: 2.15rem}}@media screen and (max-width: 1280px){.font_xxl{font-size: 1.9rem}}@media screen and (max-width: 1024px){.font_xxl{font-size: 1.7rem}}@media screen and (max-width: 800px){.font_xxl{font-size: 1.4rem}}@media screen and (max-width: 699px){.font_xxl{font-size: 1.3rem}}@media screen and (max-width: 480px){.font_xxl{font-size: 1.2rem}}.light{font-weight: 300}.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-xxl{min-height: 86vh !important}.min-l-s{min-height: 36vh !important}@font-face{font-display: swap;font-family: 'Lato';font-style: normal;font-weight: 300;src: url('/files/theme/fonts/lato-v24-latin-300.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Lato';font-style: normal;font-weight: 400;src: url('/files/theme/fonts/lato-v24-latin-regular.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Lato';font-style: italic;font-weight: 400;src: url('/files/theme/fonts/lato-v24-latin-italic.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Lato';font-style: normal;font-weight: 700;src: url('/files/theme/fonts/lato-v24-latin-700.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Lato';font-style: normal;font-weight: 900;src: url('/files/theme/fonts/lato-v24-latin-900.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 300;src: url('/files/theme/fonts/fira-sans-v17-latin-300.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 400;src: url('/files/theme/fonts/fira-sans-v17-latin-regular.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: italic;font-weight: 400;src: url('/files/theme/fonts/fira-sans-v17-latin-italic.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 500;src: url('/files/theme/fonts/fira-sans-v17-latin-500.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 600;src: url('/files/theme/fonts/fira-sans-v17-latin-600.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 700;src: url('/files/theme/fonts/fira-sans-v17-latin-700.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 800;src: url('/files/theme/fonts/fira-sans-v17-latin-800.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Fira Sans';font-style: normal;font-weight: 900;src: url('/files/theme/fonts/fira-sans-v17-latin-900.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'IBM Plex Sans';font-style: normal;font-weight: 300;src: url('/files/theme/fonts/ibm-plex-sans-v22-latin-300.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'IBM Plex Sans';font-style: normal;font-weight: 400;src: url('/files/theme/fonts/ibm-plex-sans-v22-latin-regular.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'IBM Plex Sans';font-style: italic;font-weight: 400;src: url('/files/theme/fonts/ibm-plex-sans-v22-latin-italic.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'IBM Plex Sans';font-style: normal;font-weight: 500;src: url('/files/theme/fonts/ibm-plex-sans-v22-latin-500.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'IBM Plex Sans';font-style: normal;font-weight: 600;src: url('/files/theme/fonts/ibm-plex-sans-v22-latin-600.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'IBM Plex Sans';font-style: normal;font-weight: 700;src: url('/files/theme/fonts/ibm-plex-sans-v22-latin-700.woff2') format('woff2')}.ce_sliderStart{position: relative}.ce_sliderStart .slider-prev:before{content: '\f053'}.ce_sliderStart .slider-next:before{content: '\f054'}.ce_sliderStart .slider-prev,.ce_sliderStart .slider-next{position: absolute;width: 70px;height: 70px;display: block;top: 42%;margin: 20px 20px;font-size: 0;text-align: center}.ce_sliderStart .slider-prev:before,.ce_sliderStart .slider-next:before{font-family: 'Font Awesome 5 Free';font-weight: bold;font-size: 64px;transform: translateY(-50%);color: rgba(255,255,255,0.2);transition: 2s}@media (min-width: 700px) and (max-width: 1180px){.ce_sliderStart .slider-prev,.ce_sliderStart .slider-next{top: 22%}.ce_sliderStart .slider-prev:before,.ce_sliderStart .slider-next:before{font-size: 40px;color: rgba(255,255,255,0.4)}}.ce_sliderStart .slider-next{right: 0}.ce_sliderStart .slider-control{width: 100%;height: auto;top: 0;position: static}.ce_sliderStart .slider-control .slider-menu{display: none}@media (max-width: 1280px){.ce_sliderStart .slider-control .slider-menu b:after{width: 5.6vw}}@media (max-width: 980px){.ce_sliderStart .slider-control .slider-menu b:after{width: 5.9vw}}.ce_sliderStart:hover .slider-prev:before,.ce_sliderStart:hover .slider-next:before{color: rgba(255,255,255,0.9)}.ce_swiperStart ul{list-style-type: none}.ce_swiperStart .swiper-slide{height: 100%;box-sizing: border-box}.swiper-button-next,.swiper-button-prev{color: #fff;border-radius: 50%;border: 1px #fff;outline: 1px #fff;padding: 1rem}.mod_newsreader .layout_full section.news > .inside{display: grid;grid-template-columns: 2fr 1fr;gap: 6rem;margin-bottom: 3rem}.mod_newsreader .layout_full section.news > .inside .ce_button{margin-top: 5rem}.mod_newsreader .layout_full section.news > .inside .related-products{padding: 1rem}.mod_newsreader .layout_full section.news > .inside .related-products .tile{margin-bottom: 2rem}.mod_newsreader .layout_full section.news > .inside .related-products .tile .product_container{background-color: #fff}@media screen and (max-width: 1152px){.mod_newsreader .layout_full section.news > .inside{gap: 3rem}}@media screen and (max-width: 1024px){.mod_newsreader .layout_full section.news > .inside{grid-template-columns: 3fr 2fr;gap: 2rem}}@media screen and (max-width: 800px){.mod_newsreader .layout_full section.news > .inside{display: block}}@media screen and (min-width: 640px) and (max-width: 800px){.mod_newsreader .layout_full section.news .mod_product_container .elements{display: grid;gap: 1.25rem;grid-template-columns: repeat(2, 1fr)}}.mod_newsreader .layout_full section > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 4rem;padding-bottom: 4rem}@media screen and (max-width: 1280px){.mod_newsreader .layout_full section > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_newsreader .layout_full section > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_newsreader .layout_full section > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_newsreader .layout_full section > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_newsreader .layout_full .head{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: 3rem}@media screen and (max-width: 1280px){.mod_newsreader .layout_full .head{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_newsreader .layout_full .head{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_newsreader .layout_full .head{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_newsreader .layout_full .head{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_newsreader .layout_full section.news-head .syndication{position: relative}.mod_newsreader .layout_full section.news-head .info{display: grid;grid-template-columns: auto auto auto auto;gap: 1rem}.mod_newsreader .layout_full section.news-head .info div{display: inline-block}@media screen and (max-width: 1152px){.mod_newsreader .layout_full section.news-head .inside{display: block}.mod_newsreader .layout_full section.news-head .syndication{margin-top: 1rem}}@media screen and (max-width: 699px){.mod_newsreader .layout_full section.news-head .info{grid-template-columns: auto auto}}@media screen and (max-width: 320px){.mod_newsreader .layout_full section.news-head .info{grid-template-columns: auto}}.mod_newsreader .layout_full .company-box{text-align: center;padding: 3rem 2rem;border: 1px solid #d7dbde;border-radius: 2px;margin-bottom: 2rem}.mod_newsreader .layout_full .company-box .subheadline{font-size: 0.9rem}.mod_newsreader .layout_full .company-box .headline > *{font-size: 1.25rem;margin-bottom: 1rem}.mod_newsreader .layout_full .company-box .btn-cta,.mod_newsreader .layout_full .company-box .ce_button.cta .btn{padding: .6rem 3rem !important}.mod_newsreader .layout_full .left .teaser{font-weight: bold}.mod_newsreader .layout_full .left .head > .image_container img{width: 100%;height: auto}.mod_newsreader .layout_full .left .image_container{display: inline-block}.mod_newsreader .layout_full .left .ce_hyperlink{text-align: center}.mod_newsreader .layout_full .left .ce_hyperlink a{display: block;background-color: #d20a11;color: #fff;padding: 10px}@media screen and (min-width: calc(800px + 1px)){.mod_newslist > .inside{display: flex;flex-wrap: wrap;justify-content: space-between}}.layout_latest .inside{display: flex;flex-direction: column;background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;font-size: 0.9rem}.layout_latest.nocrop .image_container{width: 100%;aspect-ratio: 401 / 240;overflow: hidden;display: flex;align-items: center;justify-content: center;padding: 1rem;box-sizing: border-box}.layout_latest.nocrop .image_container img{max-width: 100%;max-height: 208px;height: auto;width: auto;object-fit: contain;display: block}.layout_latest .textbox{padding: 1.25rem 1rem}.layout_latest .info{border-bottom: 1px solid #f1f4f6;padding-bottom: 1rem;margin-bottom: 1rem}.layout_latest .more{width: auto;align-self: start;margin: auto 1.25rem 1rem;border: 2px solid #0079b8;color: #0079b8;padding: .5rem 2rem;display: inline-block;background-color: #fff;font-size: 1rem}.layout_latest .headline > *{font-size: 1.25rem;margin-bottom: 1rem}.layout_latest:hover .more{background-color: #0079b8;color: #fff}.news-ms .inside{flex-direction: column;display: flex}.news-ms .inside .info{display: flex;justify-content: space-between}.news-ms .inside .act_buttons{margin: auto 1rem 1rem}.news-ms.inactive .publish{color: #888}@media screen and (min-width: calc(800px + 1px)){.mod_eventlist.tile-wrapper > .inside{display: flex;flex-wrap: wrap;justify-content: space-between;align-content: start}.mod_eventlist.tile-wrapper .event{flex: 1 1 auto;width: 33.33%;padding: 0 1vw;box-sizing: border-box}}.event_list{margin-bottom: 1rem}.event_list .inside{height: 100%;background-color: #fbfbfb;border: 1px solid #ddd}.event_list .image_container{border: 1px solid #555;margin: -1px}.event_list .textbox{padding: 1rem 1.25rem}.event_list .info{display: flex;justify-content: space-between;font-size: 0.9rem;margin-bottom: 1.5rem;background-color: #e5e5e5;padding: .25rem .5rem}.event_list .headline{border-bottom: 1px solid #eee;padding-bottom: 0.25rem}.event_list .headline{margin-bottom: 1rem}.event_list .headline a{color: inherit}.event_list .linkbox{margin-top: -1.5rem;padding: 1rem 1.25rem}.mod_eventreader .layout_full section.event > .inside{display: grid;grid-template-columns: 2fr 1fr;gap: 6rem;margin-bottom: 3rem}.mod_eventreader .layout_full section.event > .inside .ce_button{margin-top: 5rem}.mod_eventreader .layout_full section.event > .inside .related-products{padding: 1rem}.mod_eventreader .layout_full section.event > .inside .related-products .tile{margin-bottom: 2rem}.mod_eventreader .layout_full section.event > .inside .related-products .tile .product_container{background-color: #fff}@media screen and (max-width: 1152px){.mod_eventreader .layout_full section.event > .inside{gap: 3rem}}@media screen and (max-width: 1024px){.mod_eventreader .layout_full section.event > .inside{grid-template-columns: 3fr 2fr;gap: 2rem}}@media screen and (max-width: 800px){.mod_eventreader .layout_full section.event > .inside{display: block}}@media screen and (min-width: 640px) and (max-width: 800px){.mod_eventreader .layout_full section.event .mod_product_container .elements{display: grid;gap: 1.25rem;grid-template-columns: repeat(2, 1fr)}}.mod_eventreader .layout_full section > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 4rem;padding-bottom: 4rem}@media screen and (max-width: 1280px){.mod_eventreader .layout_full section > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_eventreader .layout_full section > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_eventreader .layout_full section > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_eventreader .layout_full section > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_eventreader .layout_full .head{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: 3rem}@media screen and (max-width: 1280px){.mod_eventreader .layout_full .head{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_eventreader .layout_full .head{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_eventreader .layout_full .head{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_eventreader .layout_full .head{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_eventreader .layout_full section.news-head .syndication{position: relative}.mod_eventreader .layout_full section.news-head .info{display: grid;grid-template-columns: auto auto auto auto;gap: 1rem}.mod_eventreader .layout_full section.news-head .info div{display: inline-block}@media screen and (max-width: 1152px){.mod_eventreader .layout_full section.news-head .inside{display: block}.mod_eventreader .layout_full section.news-head .syndication{margin-top: 1rem}}@media screen and (max-width: 699px){.mod_eventreader .layout_full section.news-head .info{grid-template-columns: auto auto}}@media screen and (max-width: 320px){.mod_eventreader .layout_full section.news-head .info{grid-template-columns: auto}}.mod_eventreader .layout_full .company-box{text-align: center;padding: 3rem 2rem;border: 1px solid #d7dbde;border-radius: 2px;margin-bottom: 2rem}.mod_eventreader .layout_full .company-box .subheadline{font-size: 0.9rem}.mod_eventreader .layout_full .company-box .headline > *{font-size: 1.25rem;margin-bottom: 1rem}.mod_eventreader .layout_full .company-box .btn-cta,.mod_eventreader .layout_full .company-box .ce_button.cta .btn{padding: .6rem 3rem !important}.mod_eventreader .layout_full .left .teaser{font-weight: bold}.mod_eventreader .layout_full .left .head > .image_container img{width: 100%;height: auto}.mod_eventreader .layout_full .left .image_container{display: inline-block}.mod_eventreader .layout_full .left .ce_hyperlink{text-align: center}.mod_eventreader .layout_full .left .ce_hyperlink a{display: block;background-color: #d20a11;color: #fff;padding: 10px}.mod_event_reader .back a{background-color: #505050}.mod_calendar{overflow: scroll}.calendar{border-collapse: collapse;width: 100%}.calendar th{padding: 8px 10px;text-align: center}.calendar th.label{background-color: #d20a11;color: #fff;font-weight: 600}.calendar td{border: 1px solid #ddd;vertical-align: top;width: calc(100% / 7)}.calendar .days{padding-bottom: 12px;height: 100px;text-align: center}.calendar .days .header{font-size: 1.25rem;background-color: #f9f9f9;padding-top: 10px;padding-bottom: 10px}.calendar .days .event{padding: 4px 10px}.calendar .days .event a{font-size: 0.9rem;font-weight: bold}@media screen and (min-width: calc(1024px + 1px)){.mod_location_contact_list .inside{grid-template-columns: repeat(4, 1fr);gap: 3rem}}.contact-tile{text-align: center}.contact-tile .contact_container{background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;box-sizing: border-box;display: flex;flex-direction: column;font-size: 0.9rem}.contact-tile .image_container{border-radius: 2px}.contact-tile .image_container img{width: auto;max-width: 100%;border-radius: 2px}.contact-tile .image_container.placeholder{opacity: 0.1}.contact-tile .textbox{padding: 1rem}.contact-tile .contact-button{margin-top: auto}.mod_location_contact_list.ms > .inside{grid-template-columns: repeat(4, 1fr)}.mod_location_contact_list.ms .tile .contact_container .act_buttons{margin: auto 1rem 1rem}.mod_location_contact_list.ms .tile .contact_container .act_buttons span{display: none}.mod_contact_details .contact_object{display: grid;grid-template-columns: 1fr 4fr;gap: 3rem;margin-bottom: 2rem}.mod_contact_details .contact_object .label{font-weight: 600}.contao-cookiebar{position: fixed;left: 0;right: 0;top: 0;bottom: 0;z-index: 9999;font-size: 0;letter-spacing: 0;text-align: center;padding: 15px;max-height: 100vh;box-sizing: border-box;pointer-events: none;overflow: hidden}.contao-cookiebar:before{content: '';display: inline-block;height: 100%;vertical-align: middle}.contao-cookiebar .cc-inner{display: inline-block;overflow-y: auto;max-height: 100%;max-width: 100%;opacity: 0;pointer-events: none;visibility: hidden;font-size: 1rem;text-align: left}.contao-cookiebar.cc-saved{display: none}.contao-cookiebar.cc-top .cc-inner{vertical-align: top}.contao-cookiebar.cc-top.cc-active .cc-inner{animation: cookiebar-top-in .5s ease-in-out forwards}.contao-cookiebar.cc-top.cc-saved .cc-inner{animation: cookiebar-top-out .5s ease-in-out forwards}.contao-cookiebar.cc-bottom .cc-inner{vertical-align: bottom}.contao-cookiebar.cc-bottom.cc-active .cc-inner{animation: cookiebar-bottom-in .5s ease-in-out forwards}.contao-cookiebar.cc-bottom.cc-saved .cc-inner{animation: cookiebar-bottom-out .5s ease-in-out forwards}.contao-cookiebar.cc-middle .cc-inner{vertical-align: middle}.contao-cookiebar.cc-middle.cc-active .cc-inner{animation: cookiebar-middle-in .5s ease-in-out forwards}.contao-cookiebar.cc-middle.cc-saved .cc-inner{animation: cookiebar-middle-out .5s ease-in-out forwards}.contao-cookiebar.cc-left{text-align: left}.contao-cookiebar.cc-right{text-align: right}.contao-cookiebar .cc-head h1:first-child,.contao-cookiebar .cc-head h2:first-child,.contao-cookiebar .cc-head h3:first-child,.contao-cookiebar .cc-head h4:first-child,.contao-cookiebar .cc-head h5:first-child,.contao-cookiebar .cc-head h6:first-child{margin-top: 0}.contao-cookiebar .cc-head p{margin-bottom: 15px}.contao-cookiebar .cc-btn{-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: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px;font-size: 0.9rem}@media screen and (max-width: 1366px){.contao-cookiebar .cc-btn{font-size: 1rem}}@media screen and (max-width: 1024px){.contao-cookiebar .cc-btn{font-size: 0.9rem}}@media screen and (max-width: 1366px){.contao-cookiebar .cc-btn{font-size: 1rem}}@media screen and (max-width: 1024px){.contao-cookiebar .cc-btn{font-size: 0.9rem}}.contao-cookiebar .cc-btn:hover{color: #d20a11;background-color: #fff}.contao-cookiebar .cc-btn:last-child{margin-bottom: 0}.contao-cookiebar .cc-btn.save{background: #f1efef;color: #888;border: 2px solid #cfcfcf;margin-right: 1rem}.contao-cookiebar .cc-btn.success{background-color: #d20a11 !important;border: 2px solid #d20a11 !important}.contao-cookiebar label{position: relative;display: block;padding: 8px 13px 8px 0;line-height: 1.2rem}.contao-cookiebar label.group{font-weight: 600}.contao-cookiebar input{position: absolute;width: 1px;height: 1px;outline: 0 none;opacity: 0}.contao-cookiebar input + label{padding: 8px 13px 8px 50px;cursor: pointer}.contao-cookiebar input + label:before{content: '';position: absolute;top: 6px;left: 0;width: 35px;height: 18px;margin: 0;box-sizing: content-box;border-radius: 10px;background: #fff;border: 2px solid #9c9b99;transition: border-color .2s}.contao-cookiebar input + label:after{display: block;content: '';position: absolute;top: 10px;left: 4px;width: 14px;height: 14px;border-radius: 10px;background: #9c9b99;transition: background .2s, margin-left .2s, padding .2s}.contao-cookiebar input + label:active:after{padding-left: 5px}.contao-cookiebar input.cc-group-half + label:after{background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%)}.contao-cookiebar input:checked + label:after{background: #399d32;margin-left: 17px}.contao-cookiebar input:checked + label:active:after{margin-left: 12px}.contao-cookiebar input:checked + label:before{background: #dcf3db;border-color: #399d32}.contao-cookiebar input:disabled + label{pointer-events: none}.contao-cookiebar input:disabled + label:after{background: #c8c7c5}.contao-cookiebar input:disabled + label:before{background: #f4f4f4;border-color: #c8c7c5}.contao-cookiebar.cc-active .cc-inner{opacity: 1;pointer-events: auto;visibility: visible}.contao-cookiebar.cc-active.cc-blocked{pointer-events: auto;animation: cookiebar-overlay-in .5s ease-in-out forwards}.contao-cookiebar.cc-saved.cc-inner{opacity: 0;pointer-events: none;visibility: hidden}.contao-cookiebar.cc-saved.cc-blocked{pointer-events: none;animation: cookiebar-overlay-out .5s ease-in-out forwards}@media (min-width: 768px){.contao-cookiebar .cc-btn{width: auto;margin-bottom: 0}.contao-cookiebar .cc-inner{max-width: 750px}}.contao-cookiebar{color: #444444}.contao-cookiebar p{color: #868686;line-height: 1.4}.contao-cookiebar .cc-inner{padding: 25px;border-radius: 5px;-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);background: #fff}.contao-cookiebar .cc-group{display: flex;flex-wrap: wrap;justify-content: space-between;align-content: center;position: relative;border: 1px solid #d0d0d0;border-radius: 5px;margin-bottom: 10px}.contao-cookiebar .cc-group > label{flex-grow: 1;margin: 5px 0 5px 10px}.contao-cookiebar .cc-group .cc-detail-btn{border: 0 none;outline: 0 none;background: transparent;font-size: 13px;letter-spacing: 0;text-transform: initial;cursor: pointer;color: #a2a2a2;padding: 8px 10px;line-height: 1.2rem;font-family: 'Interstate', Arial}.contao-cookiebar .cc-group .cc-detail-btn span:nth-child(2){display: none}.contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(1){display: none}.contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(2){display: inline}.contao-cookiebar .cc-group .cc-detail-btn:hover{color: #717171}.contao-cookiebar .cc-group .cc-detail-btn-details{display: inline-block;border: 0 none;outline: 0 none;background: transparent;font-size: 13px;letter-spacing: 0;text-transform: initial;cursor: pointer;color: #a2a2a2;text-decoration: underline;padding: 0;margin: 0 0 10px}.contao-cookiebar .cc-group .cc-detail-btn-details span:nth-child(2){display: none}.contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(1){display: none}.contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(2){display: inline}.contao-cookiebar .cc-group .cc-detail-btn-details:hover{color: #717171}.contao-cookiebar .cc-cookies{display: none;width: 100%;background: #fbfbfb;border-radius: 0 0 5px 5px}.contao-cookiebar .cc-cookies > p{font-size: 0.875rem}.contao-cookiebar .cc-cookies > p,.contao-cookiebar .cc-cookies > .cc-cookie{margin: 0;padding: 15px;border-top: 1px solid #e6e6e6}.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info{font-size: 0.875rem;background: #fff;padding: 10px;border-radius: 5px;border: 1px solid #efefef}.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span{font-weight: 600}.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div{margin-top: 5px}.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details{margin-top: 15px}.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc > p{margin-bottom: 0}.contao-cookiebar .cc-cookies .cc-cookie label.cookie + p,.contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info,.contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details{margin-top: 10px}.contao-cookiebar .cc-cookies .cc-cookie p{margin: 0 0 15px;font-size: 0.875rem}.contao-cookiebar .cc-footer,.contao-cookiebar .cc-info{text-align: center}.contao-cookiebar .cc-info{margin-top: 15px}.contao-cookiebar .cc-info > p{font-size: 0.875rem}.contao-cookiebar .cc-info > a{display: inline-block;font-size: 0.813rem;color: #a2a2a2;text-decoration: none}.contao-cookiebar .cc-info > a:hover{color: #717171}.contao-cookiebar .cc-info > a + a:before{display: inline-block;content: '·';margin-right: 5px}.tiles,.tile-group > .inside{display: grid;gap: 1.25rem}@media screen and (min-width: calc(1280px + 1px)){.tiles,.tile-group > .inside{grid-template-columns: repeat(3, 1fr)}}@media screen and (min-width: 699px) and (max-width: 1280px){.tiles,.tile-group > .inside{grid-template-columns: repeat(2, 1fr)}}.tiles .tile,.tile-group > .inside .tile{cursor: pointer;min-width: 0}@media screen and (min-width: calc(800px + 1px)){.tile-group.pl2 > .inside{grid-template-columns: repeat(2, 1fr)}}.tile-group.pl4 .tile{flex: 0 1 calc(25% - 2rem)}.upload_tile .upload_container{background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;font-size: 0.9rem}.mod_product_list .filter-container{margin-bottom: 2rem}.mod_product_filter .formbody{display: grid;grid-template-columns: 40% 20% 20% 20%;gap: 1rem}.mod_product_filter .formbody label{visibility: hidden}.mod_product_filter .formbody .widget-submit{margin-top: 1.75rem}.mod_product_filter .formbody .widget-submit button{padding: 1rem 1.25rem !important}.product_list{cursor: default !important}.product_list .product_container{display: flex;flex-direction: column;background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;font-size: 0.9rem}.product_list .image_container{width: 100%;aspect-ratio: 460 / 280;overflow: hidden;display: flex;align-items: center;justify-content: center;box-sizing: border-box;border-bottom: 4px solid transparent;cursor: pointer}.product_list .image_container img{max-width: 100%;max-height: 100%;height: auto;width: auto;object-fit: contain;display: block}.product_list .textbox{padding: 1.25rem 1rem;cursor: pointer}.product_list .label{font-weight: bold}.product_list h2{font-size: 1.3em;font-weight: 600;margin-top: 0;margin-bottom: 15px}.product_list .headline{margin-bottom: 1rem}.product_list .product_price,.product_list .product_rating{color: #aaa}.product_list .location_categories{clear: both;margin-top: 10px}.product_list .product_info{float: right;max-width: 35%;margin-top: 5px}.product_list .product_rating{margin: 0 0 10px}.product_list .product_location{margin: .25rem 0 0}.product_list .product_object{margin-bottom: 11px;overflow: hidden}.product_list .more{width: auto;align-self: start;margin: auto 1.25rem 1rem;border: 2px solid #0079b8;color: #0079b8;padding: .5rem 2rem;display: inline-block;background-color: #fff;font-size: 1rem;cursor: pointer}.product_list .more:hover{background-color: #0079b8;color: #fff}.product_list:hover .image_container{border-bottom: 4px solid #0079b8}.product_list .product_container{background-color: #f1f4f6}.bg-4 .product_list .product_container,.bg-9 .product_list .product_container{background-color: #fff}.product_full section > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 4rem;padding-bottom: 4rem}@media screen and (max-width: 1280px){.product_full section > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.product_full section > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.product_full section > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.product_full section > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.product_full .product_object{display: flex;flex-wrap: wrap;border-bottom: 1px solid #d7dbde}.product_full .product_object:first-of-type{border-top: 1px solid #d7dbde}.product_full div.label{width: calc(35% - 2.25rem - 2px);background-color: #f1f4f6;color: #1a1b1c;font-weight: 600;border-left: 1px solid #d7dbde;border-right: 1px solid #d7dbde;padding: .65rem 1.125rem}.product_full div.value{width: calc(65% - 2.25rem - 1px);border-right: 1px solid #d7dbde;padding: .65rem 1.125rem}.product_full .product_category a{display: inline-block;margin: 0 2px 2px}.product_full .product_description{margin: 1.25rem 0 1.25rem}.product_full .product_location{margin: 2rem 0 2rem}.product_full .product_location .location-logo{margin-top: 2rem}.mod_product_request .intro .inside,.mod_product_request form{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_product_request .intro .inside,.mod_product_request form{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_product_request .intro .inside,.mod_product_request form{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_product_request .intro .inside,.mod_product_request form{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_product_request .intro .inside,.mod_product_request form{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_product_request .intro{background-color: #fff}.mod_product_request fieldset{border: 1px solid #d7dbde;padding: 1rem 1rem .5rem}.mod_product_request form{padding-top: 2rem;padding-bottom: 2rem}.mod_product_request .widget-privacy{display: none}.product-ms .product_container{flex-direction: column;display: flex}.product-ms .product_container .act_buttons{margin: auto 1rem 1rem}.product-ms.inactive .publish{color: #888}.mod_product_form .select2-container--default .select2-selection--multiple::after,.mod_video_form .select2-container--default .select2-selection--multiple::after{content: "Klicken Sie hier, um weitere Produktkategorien auszuwählen"}.location_slider .location_container{background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;padding: 2rem}.location_tile{cursor: pointer}.location_tile .location_container{background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;display: flex;flex-direction: column;font-size: 0.9rem}.location_tile .image_container{width: 100%;max-width: 180px;aspect-ratio: 334 / 270;overflow: hidden;display: flex;align-items: center;justify-content: center;box-sizing: border-box;margin: 1rem auto 1rem}.location_tile .image_container img{max-width: 100%;max-height: 100%;height: auto;width: auto;object-fit: contain;display: block;filter: grayscale(100%) sepia(25%) hue-rotate(180deg) saturate(120%) opacity(.75);opacity: 0.95}.location_tile .textbox{padding: 1.25rem 1rem}.location_tile h3{font-size: 1.5rem}.location_tile .company_info{padding-bottom: 1rem}.location_tile .request{margin-top: auto}.location_tile .link{background-color: #2b4b63;color: #fff;display: block;padding: .5rem 2rem;font-size: 1.05rem;font-weight: 600;border-radius: 0 0 3px 3px;text-align: center}.location_tile .link i{margin-right: 8px}.location_tile .link span{font-weight: 300}.location_tile .link:hover{background-color: #d20a11}.location_tile:hover img{filter: none;opacity: 1}.tags{display: flex;flex-wrap: wrap;gap: 0.25rem;margin-bottom: 1rem}.tags .tag{background-color: #f1f4f6;padding: 5px 7px;font-size: 80%;color: #666;border-radius: 2px}.tags .more{background-color: #d4e2ec;color: #000}.location_list{margin: 2rem auto 2rem}.location_list .highlight{background-color: #ffd000}.location_list .location_container{background-color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;overflow: hidden}.location_list .tags{margin-bottom: 1.5rem}.location_list .textbox{display: grid;grid-template-columns: 4fr 1fr;gap: 1.25rem;padding: 1.5rem}.location_list .textbox .btn-cta{background: #2b4b63;border-color: #2b4b63}.location_list .textbox .btn-cta:hover{color: #fff}.location_list .content-box{display: grid;grid-template-columns: 65% 35%;gap: 1.25rem}.location_list:hover .textbox .btn-cta{background: #d20a11;border-color: #d20a11}.location_list .headline{padding: 1rem 1.5rem;border-bottom: 1px solid #e1e1e1;display: flex;align-items: center;justify-content: space-between;gap: 1.25rem}.location_list .headline .location-box{display: flex;align-items: center;justify-content: space-between;margin-bottom: 0}.location_list .headline .location-box .location_logo{margin-right: 2rem}.location_list .headline .location-box .location_logo .image_container{display: -webkit-box;display: -ms-flexbox;display: flex}.location_list .headline .btn{background-color: transparent}.location_list h2{margin: 0;padding: 0}.location_list .teaser p{font-style: italic}.location_list .more{font-weight: 600}.location_list .company_info .address-container{margin-bottom: 1rem}.location_list .company_info .company{font-weight: 600;color: #1a1b1c}.location_list .company_info .label{color: #1a1b1c;font-weight: bold}.location_list .location_info{margin-bottom: 15px}@media screen and (min-width: calc(1152px + 1px)){.location_list .flipbox{background-color: transparent;height: 200px;perspective: 1000px;float: left}.location_list .flipbox-inside{position: relative;width: 100%;height: 100%;text-align: center;transition: transform .8s;transform-style: preserve-3d}.location_list .flipbox:hover .flipbox-inside{transform: rotateY(180deg)}.location_list .flipbox-front,.location_list .flipbox-back{position: absolute;width: 100%;height: 100%;backface-visibility: hidden}.location_list .flipbox-back{transform: rotateY(180deg)}}@media screen and (max-width: 1152px){.location_list .flipbox-inside{display: grid;gap: 1rem}}@media screen and (max-width: 800px){.location_list .textbox{display: block}.location_list .flipbox-inside,.location_list .image{margin-top: 1rem;display: grid;grid-template-columns: repeat(2, 1fr)}}@media screen and (max-width: 480px){.location_list .btn-cta{padding: .6rem 3rem !important}}.location_list .iconbox{margin-bottom: 10px}.location_list .location_statistics{clear: both;margin: 10px 0 0}.location_list .location_categories,.location_list .location_statistics,.location_list .location_product_gallery{font-size: 80%;color: #aaa}.location_list .location_categories{clear: both;margin-top: 10px}.location_list.free .textbox{display: block}@media screen and (max-width: 1152px){.location_list .content-box{display: block}.location_list .textbox{grid-template-columns: 3fr 1fr}}.mod_location_product_category_quicknav .items,.mod_product_category_quicknav .items{display: flex;align-items: center;justify-content: center;gap: 1rem}@media screen and (max-width: 1152px){.mobile-hero #wrapper{padding-top: 0}}.mod_location_reader .mod_article{position: relative}.mod_location_reader .mod_article .article_inside{text-shadow: 0 2px 4px rgba(0,0,0,0.6);max-width: none}.mod_location_reader .mod_article .placeholder{min-height: 250px}.mod_location_reader .ce_columnStart{gap: 3rem}.mod_location_reader .sticky-navigation{color: #fff;position: relative;transition: opacity .3s ease, transform .3s ease;opacity: 1;box-shadow: inset 0 0 60px rgba(0,0,0,0.2);background: radial-gradient(circle at center, #365e7c 50%, #315671 100%)}.mod_location_reader .sticky-navigation > .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_location_reader .sticky-navigation > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_location_reader .sticky-navigation > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_location_reader .sticky-navigation > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_location_reader .sticky-navigation > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_location_reader .sticky-navigation > .inside ul{display: flex;justify-content: flex-start;align-items: center;flex-wrap: wrap;list-style-type: none}.mod_location_reader .sticky-navigation > .inside ul a,.mod_location_reader .sticky-navigation > .inside ul .link{color: #fff;display: block;padding: .75rem 1.75rem;border-right: 1px solid rgba(255,255,255,0.2)}.mod_location_reader .sticky-navigation > .inside ul a i,.mod_location_reader .sticky-navigation > .inside ul .link i{margin-right: 0.5rem}.mod_location_reader .sticky-navigation > .inside ul:first-child{border-left: 1px solid rgba(255,255,255,0.2)}.mod_location_reader .sticky-navigation > .inside ul .cta{background-color: #d20a11}.mod_location_reader .sticky-navigation .contact-button-sticky{display: none}.mod_location_reader .sticky-navigation-clone{position: fixed;top: 90px;width: 100%;z-index: 600;opacity: 0;transform: translateY(-10px);transition: opacity .3s ease, transform .3s ease;background-color: #2b4b63;overflow: hidden;box-shadow: inset 0 0 60px rgba(0,0,0,0.2);background: radial-gradient(circle at center, #2b4b63 50%, #172835 100%)}.mod_location_reader .sticky-navigation-clone .shadow{box-shadow: 0 60px 90px 50px #172835}.mod_location_reader .sticky-navigation-clone .contact-button-sticky{display: inline-block}.mod_location_reader .sticky-navigation-clone.is-visible{opacity: 1;transform: translateY(0)}.mod_location_reader .ce_accordion.about{background-color: transparent;margin-top: 2rem}.mod_location_reader .ce_accordion.about .toggler{color: inherit;border-right-color: #4d5459}.mod_location_reader .ce_accordion.about .toggler::before{color: #4d5459}.mod_location_reader .ce_intro{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;height: 100%;padding-bottom: 5rem;position: relative;z-index: 5}@media screen and (max-width: 1280px){.mod_location_reader .ce_intro{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_location_reader .ce_intro{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_location_reader .ce_intro{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_location_reader .ce_intro{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_location_reader .ce_intro .subheadline{color: #fff}.mod_location_reader .ce_intro .subheadline:after{content: none !important}.mod_location_reader section > .inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 4rem;padding-bottom: 4rem}@media screen and (max-width: 1280px){.mod_location_reader section > .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_location_reader section > .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_location_reader section > .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_location_reader section > .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_location_reader section.width-small > .inside{max-width: 1024px}.mod_location_reader .story{font-style: italic;font-weight: 300}.mod_location_reader .story .headline-size-xl{font-size: 2.75rem}.mod_location_reader .story .ce_text,.mod_location_reader .story .ce_text_right,.mod_location_reader .story .ce_text_left{margin-top: 0;margin-bottom: 0}.mod_location_reader .bg-9 .toggler{background-color: #fff}.mod_location_reader .business_logo{margin-bottom: 2rem}.mod_location_reader .contact-button-top.is-fixed{position: fixed;width: 100%;top: 146px;z-index: 6}.mod_location_reader .tab-content{background-color: #f1f4f6}.mod_location_reader .address-container{margin-top: 3rem;margin-bottom: 2rem}.mod_location_reader .address-container .company{margin-bottom: 1rem}.mod_location_reader .contact-container{margin-top: 2rem}.mod_location_reader .intro-container{margin-bottom: 2rem}.mod_location_reader .info{margin-bottom: 1.25rem}.mod_location_reader .info .label{font-weight: 600}.mod_location_reader .info-container .label{display: block}.mod_location_reader .headline-size-s{font-size: 1.25rem}.mod_location_reader .back{margin-top: 4rem}.mod_location_upload_listing .items{display: grid;grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));gap: 1.25rem}.upload_item{position: relative;width: 100%;height: 100%;min-height: 250px;font-size: 0.9rem}.upload_item .headline{margin-top: 1.5rem;position: absolute;bottom: 0;background-color: rgba(77,84,89,0.9);color: #fff;width: calc(100% - 2rem);padding: .5rem 1rem}.upload_item .flip-card{perspective: 1000px;width: 100%;height: 100%}.upload_item .flip-card .flip-card-inner{position: relative;width: 100%;height: 100%;text-align: center;transition: transform .6s;transform-style: preserve-3d}.upload_item .flip-card.hover:hover .flip-card-inner{transform: rotateY(180deg)}.upload_item.nocrop .image_container{width: 100%;aspect-ratio: 401 / 240;overflow: hidden;display: flex;align-items: center;justify-content: center;padding: 1rem;box-sizing: border-box}.upload_item.nocrop .image_container img{max-width: 100%;max-height: 208px;height: auto;width: auto;object-fit: contain;display: block}.upload_item .flip-card-front,.upload_item .flip-card-back{position: absolute;width: 100%;height: 100%;backface-visibility: hidden;border-radius: 2px;overflow: hidden;box-sizing: border-box}.upload_item .flip-card-front{background: #fff}.upload_item .flip-card-back{background: #fff;transform: rotateY(180deg);padding: 1rem;display: flex;align-items: center;justify-content: center;font-size: 0.9rem;flex-direction: column;justify-content: space-evenly}.upload_item .flip-card-back .location{font-size: 1.3rem;font-weight: 600}@media screen and (max-width: 1366px){.upload_item .flip-card-back .location{font-size: 1.1875rem}}@media screen and (max-width: 699px){.upload_item .flip-card-back .location{font-size: 1.25rem}}.upload_item .teaser{max-width: 100%}.mod_location_product_categories .headline,.mod_product_categories_form .headline{margin-top: 2rem}.mod_location_product_categories .ce_accordion .accordion,.mod_product_categories_form .ce_accordion .accordion{margin-bottom: 2rem}.mod_location_product_categories .product_accordions,.mod_product_categories_form .product_accordions{display: grid;grid-template-columns: repeat(5, 1fr);gap: 1rem;align-items: center;align-items: stretch;list-style: none}.mod_location_product_categories .product_accordions > * .link,.mod_product_categories_form .product_accordions > * .link{background-color: #f1f4f6;border: 1px solid #d7dbde;min-height: 100px;text-align: center;align-content: center;font-size: 1rem;font-weight: bold;display: block;padding: 1rem 1rem;hyphens: auto;cursor: pointer}.mod_location_product_categories .button,.mod_product_categories_form .button{margin-top: 2rem}.mod_location_product_categories .ce_accordion{background-color: #fff}.mod_location_product_categories .active > .link,.mod_location_product_categories .link:hover{background-color: #0079b8;border: 1px solid #0079b8;color: #fff}.mod_product_categories_form .product_accordions{display: block}.mod_product_categories_form .link{background-color: #fff !important}.mod_product_categories_form input[type="checkbox"]{appearance: none;-webkit-appearance: none;-moz-appearance: none;width: 1.5rem;height: 1.5rem;border: 2px solid rgba(187,194,199,0.7);border-radius: 4px;display: inline-block;position: relative;cursor: pointer}.mod_product_categories_form input[type="checkbox"]:checked::after{content: "";position: absolute;left: 6px;top: -2px;width: 6px;height: 15px;border: solid #6cbd05;border-width: 0 3px 3px 0;transform: rotate(45deg)}.mod_product_categories_form .level_3.link{min-height: 0;text-align: left;display: flex;background-color: #0079b8 !important;border: 1px solid #0079b8;color: #fff;padding: 1rem 1rem}.mod_product_categories_form .level_3.link input{margin-right: 0.75rem;border: 2px solid rgba(255,255,255,0.7)}.mod_product_categories_form .level_3.link input[type="checkbox"]:checked::after{border: solid #fff;border-width: 0 3px 3px 0}.mod_product_categories_form .level_3{margin-bottom: 1rem}.mod_product_categories_form div.level_4{display: grid;grid-template-columns: repeat(3, 1fr);gap: 1rem;margin-bottom: 2rem}.mod_product_categories_form div.level_4 > label.link{display: grid;grid-template-columns: 1fr 6fr;align-items: center;text-align: left;min-height: 50px}.mod_product_categories_form div.level_4 > label.link:hover{background-color: #f1f4f6 !important}.mod_listing.full-width .intro .inside,.mod_listing.full-width .elements,.mod_listing.full-width .pagination{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_listing.full-width .intro .inside,.mod_listing.full-width .elements,.mod_listing.full-width .pagination{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_listing.full-width .intro .inside,.mod_listing.full-width .elements,.mod_listing.full-width .pagination{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_listing.full-width .intro .inside,.mod_listing.full-width .elements,.mod_listing.full-width .pagination{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_listing.full-width .intro .inside,.mod_listing.full-width .elements,.mod_listing.full-width .pagination{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_listing.full-width .intro{background-color: #fff}.mod_listing.full-width .elements{padding-top: 2rem;padding-bottom: 2rem}.mod_listing.full-width .pagination{padding-bottom: 3rem}.mod_location_request .intro .inside,.mod_location_request .form-box{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_location_request .intro .inside,.mod_location_request .form-box{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_location_request .intro .inside,.mod_location_request .form-box{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_location_request .intro .inside,.mod_location_request .form-box{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_location_request .intro .inside,.mod_location_request .form-box{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_location_request .form-box{padding-top: 2rem;padding-bottom: 2rem}.mod_location_request fieldset{border: 1px solid #d7dbde;padding: 1rem 1rem .5rem}.mod_location_request .intro{background-color: #fff}.mod_location_request .widget-privacy{display: none}.mod_locationlist_advertising .toggler:after,.mod_product_list .toggler:after{font-family: 'Font Awesome 5 Free';font-weight: 900;content: "\f054";font-size: 0.9rem;margin-left: 0.25rem}.mod_locationlist_advertising .toggler.ui-state-active:after,.mod_product_list .toggler.ui-state-active:after{content: "\f078"}.mod_locationlist_advertising .accordion,.mod_product_list .accordion{display: grid;grid-template-columns: 3fr 1fr;gap: 1.25rem}.mod_location_search .formbody{display: grid;grid-template-columns: 14fr 3fr 3fr;gap: 1rem}.mod_location_search .formbody label{visibility: hidden}.mod_location_search .formbody .widget-submit{margin-top: 1.75rem}.mod_location_search .formbody .widget-submit button{padding: 1rem 1.25rem !important}.mod_location_member_list .list_element .element_container{flex-direction: column;display: flex;background-color: #f1f4f6;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;font-size: 0.9rem}.mod_location_member_list .list_element .element_container .textbox{padding: 1.25rem 1rem}.mod_tender_listing .count{margin-bottom: 2rem}.mod_tender_listing .tender_list{border-bottom: 1px solid #d7dbde;margin-bottom: 2.5rem;padding-bottom: 2.5rem;line-height: 180%}.mod_tender_listing .tender_list:hover h2 a{background-color: #6cbd05}.mod_tender_listing .tender_list.past:hover h2 a{background-color: #0079b8}.mod_tender_listing span.label{color: #1a1b1c;font-weight: bold}.mod_tender_listing h2{font-size: 120%;margin-top: 0;margin-bottom: 15px}.mod_tender_listing h2 a{background-color: #6cbd05;color: #fff;padding: .5rem 1rem;display: block;text-decoration: none}.mod_tender_listing h2 span.tnr{float: right}.mod_tender_listing .past h2 a{background-color: #4d5459}.mod_tender_listing .more{margin-top: 1.25rem}.mod_tender_reader div.tender_object{display: grid;grid-template-columns: 30% 70%;gap: 1.25rem;margin-bottom: 1rem;padding-bottom: 1rem;border-bottom: 1px solid #d7dbde}.mod_tender_reader div.label{color: #1a1b1c;font-weight: bold}.mod_location_visits .formbody{display: grid;grid-template-columns: 2fr 1fr;gap: 1.25rem}.mod_location_visits button{display: block;height: 100%;width: 100%}.upload-tile .inside{box-sizing: border-box;color: #fff;border: 1px solid #d7dbde;border-radius: 2px;height: 100%;display: flex;flex-direction: column;font-size: 0.9rem;text-align: center}.upload-tile .headline{background-color: #fff;color: #1a1b1c;padding: 1rem}.upload-tile .headline > div{margin-bottom: 0}.upload-tile .textbox{padding: 1.25rem 1rem}.select2-container{box-sizing: border-box;display: inline-block;margin: 0;position: relative;vertical-align: middle;border: 1px solid #d2d2d2;max-width: 100%}.select2-container .select2-selection--single{box-sizing: border-box;cursor: pointer;display: block;height: 45px;user-select: none;-webkit-user-select: none}.select2-container .select2-selection--single .select2-selection__rendered{display: block;padding-left: 8px;padding-right: 20px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color: transparent;border: none;font-size: 1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right: 8px;padding-left: 20px}.select2-container .select2-selection--multiple{box-sizing: border-box;cursor: pointer;display: block;min-height: 32px;user-select: none;-webkit-user-select: none}.select2-container .select2-selection--multiple .select2-selection__rendered{display: inline;list-style: none;padding: 0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color: transparent;border: none;font-size: 1em}.select2-container .select2-search--inline .select2-search__field{box-sizing: border-box;border: none;font-size: 100%;margin-top: 5px;margin-left: 5px;padding: 0;max-width: 100%;resize: none;height: 18px;vertical-align: bottom;font-family: sans-serif;overflow: hidden;word-break: keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance: none}.select2-dropdown{background-color: white;border: 1px solid #aaa;border-radius: 0;box-sizing: border-box;display: block;position: absolute;left: -100000px;width: 100%;z-index: 1051}.select2-results{display: block}.select2-results__options{list-style: none;margin: 0;padding: 0}.select2-results__option{padding: 6px;user-select: none;-webkit-user-select: none}.select2-results__option--selectable{cursor: pointer}.select2-container--open .select2-dropdown{left: 0}.select2-container--open .select2-dropdown--above{border-bottom: none;border-bottom-left-radius: 0;border-bottom-right-radius: 0}.select2-container--open .select2-dropdown--below{border-top: none;border-top-left-radius: 0;border-top-right-radius: 0}.select2-search--dropdown{display: block;padding: 4px}.select2-search--dropdown .select2-search__field{padding: 8px;width: 100%;box-sizing: border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance: none}.select2-search--dropdown.select2-search--hide{display: none}.select2-close-mask{border: 0;margin: 0;padding: 0;display: block;position: fixed;left: 0;top: 0;min-height: 100%;min-width: 100%;height: auto;width: auto;opacity: 0;z-index: 99;background-color: #fff;filter: alpha(opacity=0)}.select2-hidden-accessible{border: 0 !important;clip: rect(0 0 0 0) !important;-webkit-clip-path: inset(50%) !important;clip-path: inset(50%) !important;height: 1px !important;overflow: hidden !important;padding: 0 !important;position: absolute !important;width: 1px !important;white-space: nowrap !important}.select2-container--default .select2-selection--single{background-color: #fff;border-radius: 0}.select2-container--default .select2-selection--single .select2-selection__rendered{color: #444;line-height: 45px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor: pointer;float: right;font-weight: bold;height: 26px;margin-right: 20px;padding-right: 0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color: #999}.select2-container--default .select2-selection--single .select2-selection__arrow{height: 43px;position: absolute;top: 1px;right: 1px;width: 20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color: #888 transparent transparent transparent;border-style: solid;border-width: 5px 4px 0 4px;height: 0;left: 50%;margin-left: -4px;margin-top: -2px;position: absolute;top: 50%;width: 0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float: left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left: 1px;right: auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color: #eee;cursor: default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display: none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color: transparent transparent #888 transparent;border-width: 0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color: white;border: 1px solid #aaa;border-radius: 0;cursor: text;padding-bottom: 5px;padding-right: 5px;position: relative}.select2-container--default .select2-selection--multiple{padding-bottom: 2.5em;min-height: 3.5em;position: relative}.select2-container--default .select2-selection--multiple::after{content: "Klicken Sie hier, um weitere Einträge auszuwählen";color: #999;font-weight: bold;position: absolute;left: 10px;bottom: 0.5rem;pointer-events: none}.select2-container--default.select2-container--open .select2-selection--multiple::after{display: none}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right: 25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor: pointer;font-weight: bold;height: 20px;margin-right: 10px;margin-top: 5px;position: absolute;right: 0;padding: 1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color: #2b4b63;border: 1px solid #aaa;color: #fff;border-radius: 0;box-sizing: border-box;display: inline-block;margin-left: 5px;margin-top: 5px;padding: 6px 6px 6px 30px;position: relative;max-width: 100%;overflow: hidden;text-overflow: ellipsis;vertical-align: bottom;white-space: nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor: default;padding-left: 2px;padding-right: 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color: #eee;border: none;border-right: 1px solid #aaa;color: #d20a11;cursor: pointer;font-size: 1.4em;font-weight: bold;position: absolute;padding: 1px 5px 0px 5px;left: 0;top: 0;margin: 5px;line-height: 110%}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color: #f1f1f1;color: #333;outline: none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left: 5px;margin-right: auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left: 5px;padding-right: 2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left: 1px solid #aaa;border-right: none;border-top-left-radius: 0;border-bottom-left-radius: 0;border-top-right-radius: 4px;border-bottom-right-radius: 4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float: left;margin-left: 10px;margin-right: auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border: solid #000 1px;outline: 0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color: #eee;cursor: default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display: none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius: 0;border-top-right-radius: 0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius: 0;border-bottom-right-radius: 0}.select2-container--default .select2-search--dropdown .select2-search__field{border: 1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background: transparent;border: none;outline: 0;box-shadow: none;-webkit-appearance: textfield}.select2-container--default .select2-results > .select2-results__options{max-height: 25rem;overflow-y: auto}.select2-container--default .select2-results__option .select2-results__option{padding-left: 1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left: 0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left: -1em;padding-left: 2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left: -2em;padding-left: 3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left: -3em;padding-left: 4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left: -4em;padding-left: 5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left: -5em;padding-left: 6em}.select2-container--default .select2-results__option--group{padding: 0}.select2-container--default .select2-results__option--disabled{color: #999}.select2-container--default .select2-results__option--selected{background-color: #f1f4f6}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color: #bd050e;color: white}.select2-container--default .select2-results__group{cursor: default;display: block;padding: 6px}.select2-container--classic .select2-selection--single{background-color: #f7f7f7;border: 1px solid #aaa;border-radius: 0;outline: 0;background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat: repeat-x;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border: 1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color: #444;line-height: 45px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor: pointer;float: right;font-weight: bold;height: 26px;margin-right: 20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color: #999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color: #ddd;border: none;border-left: 1px solid #aaa;border-top-right-radius: 4px;border-bottom-right-radius: 4px;height: 26px;position: absolute;top: 1px;right: 1px;width: 20px;background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat: repeat-x;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color: #888 transparent transparent transparent;border-style: solid;border-width: 5px 4px 0 4px;height: 0;left: 50%;margin-left: -4px;margin-top: -2px;position: absolute;top: 50%;width: 0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float: left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border: none;border-right: 1px solid #aaa;border-radius: 0;border-top-left-radius: 4px;border-bottom-left-radius: 4px;left: 1px;right: auto}.select2-container--classic.select2-container--open .select2-selection--single{border: 1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background: transparent;border: none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color: transparent transparent #888 transparent;border-width: 0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top: none;border-top-left-radius: 0;border-top-right-radius: 0;background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat: repeat-x;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom: none;border-bottom-left-radius: 0;border-bottom-right-radius: 0;background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat: repeat-x;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color: white;border: 1px solid #aaa;border-radius: 0;cursor: text;outline: 0;padding-bottom: 5px;padding-right: 5px}.select2-container--classic .select2-selection--multiple:focus{border: 1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display: none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color: #e4e4e4;border: 1px solid #aaa;border-radius: 0;display: inline-block;margin-left: 5px;margin-top: 5px;padding: 0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor: default;padding-left: 2px;padding-right: 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color: transparent;border: none;border-top-left-radius: 4px;border-bottom-left-radius: 4px;color: #888;cursor: pointer;font-size: 1em;font-weight: bold;padding: 0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color: #555;outline: none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left: 5px;margin-right: auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left: 5px;padding-right: 2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius: 0;border-bottom-left-radius: 0;border-top-right-radius: 4px;border-bottom-right-radius: 4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border: 1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top: none;border-top-left-radius: 0;border-top-right-radius: 0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom: none;border-bottom-left-radius: 0;border-bottom-right-radius: 0}.select2-container--classic .select2-search--dropdown .select2-search__field{border: 1px solid #aaa;outline: 0}.select2-container--classic .select2-search--inline .select2-search__field{outline: 0;box-shadow: none}.select2-container--classic .select2-dropdown{background-color: white;border: 1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom: none}.select2-container--classic .select2-dropdown--below{border-top: none}.select2-container--classic .select2-results > .select2-results__options{max-height: 200px;overflow-y: auto}.select2-container--classic .select2-results__option--group{padding: 0}.select2-container--classic .select2-results__option--disabled{color: grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color: #3875d7;color: white}.select2-container--classic .select2-results__group{cursor: default;display: block;padding: 6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color: #5897fb}#wrapper{padding-top: 9rem;position: relative}.mod_article.width-small .article_inside{max-width: 1024px}.mod_article.width-medium .article_inside{max-width: 1280px}.article_inside.breadcrumb{padding-top: 1rem !important;padding-bottom: 1rem !important}.article_inside.breadcrumb .mod_breadcrumb{font-size: 0.9rem;color: #d7dbde}.article_inside.breadcrumb li a{padding-right: 0}.article_inside.breadcrumb li a:after{font-family: "Font Awesome 5 Free";content: "\f054";font-weight: 900;margin: 0 .5rem;font-size: 0.5rem;top: -1px;position: relative;color: #aaa}span.small{font-size: 85%}strong{font-weight: bold;color: #000}.fc-2 strong{color: #fff}.tooltip{color: #0079b8;cursor: pointer;text-decoration: underline;font-weight: bold;display: inline-flex;align-items: center;margin-top: 10px}.tooltip::before{content: "i";display: inline-block;width: 18px;height: 18px;background: #0079b8;color: white;border-radius: 50%;text-align: center;line-height: 18px;font-size: 12px;margin-right: 8px;font-style: italic;text-decoration: none}.tooltip_info{background-color: rgba(0,0,0,0.08);padding: 15px;border-left: 4px solid #0079b8;margin-top: 10px;font-size: 0.9em;line-height: 1.4}.column-element-start.small{font-size: 0.975rem;hyphens: none}.column-element-start.small > .inside{padding-right: 4rem}.warning{color: #d20a11}.confirmation{color: #6cbd05}.information{color: #0079b8}.inactive{color: #888}div.warning,div.info.error,div.info.success,p.error{background-color: #f1f4f6;border: 1px solid #d7dbde;padding: 1.5rem;font-size: 1rem;font-weight: bold;margin-bottom: 2rem}div.warning p:last-child,div.info.error p:last-child,div.info.success p:last-child,p.error p:last-child{margin-bottom: 0}div.warning,div.info.error,p.error{border: 1px solid #d20a11;color: #d20a11}div.confirmation,div.info.success{border: 1px solid #6cbd05;color: #6cbd05}div.information{border: 1px solid #0079b8}.line{border: 1px solid #a10d12}.line-top{border-top: 1px solid #a10d12;padding-top: 2rem;margin-top: 2rem}.line-bottom{border-bottom: 1px solid #a10d12;padding-bottom: 2rem;margin-bottom: 2rem}.custom{display: contents}#topnav{position: fixed;top: 0;width: 100%;z-index: 10}#topnav .mod_box{transition: padding 1.2s ease, background-color 1.2s ease}@media screen and (min-width: 1152px){#topnav .mod_box{padding-top: 4rem}}@media screen and (max-width: 1152px){#topnav .mod_box{padding-top: 1rem}#topnav .mod_box .mod_layout_article{padding-left: 1rem}}@media screen and (max-width: 800px){#topnav .mod_box{padding-top: 0;overflow: visible}#topnav .mod_box .mod_layout_article{padding-left: 0}#topnav .mod_box .logo .image_container{background-color: rgba(77,84,89,0.9);padding: 5.5rem 9.5rem .65rem;rotate: -25deg;top: -68px;position: relative;left: -165px}#topnav .mod_box .logo .image_container img{content: url('/files/layout/logo/logo-schneidforum-weiss.svg') !important}#topnav .mod_box .mobilenav{top: 1.125rem;position: fixed;right: 1.275rem}}#topnav .mobilenav i{font-size: 3rem}#topnav > .inside{position: absolute;top: 0;width: 100%}#topnav .mod_layout_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){#topnav .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){#topnav .mod_layout_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){#topnav .mod_layout_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){#topnav .mod_layout_article{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (min-width: calc(1152px + 1px)){body.fixed #topnav .mod_box{padding-top: 0.5rem;background-color: rgba(255,255,255,0.95)}}@media screen and (min-width: calc(800px + 1px)) and (max-width: 1152px){body.fixed #topnav .mod_box .logo .image_container{background-color: rgba(77,84,89,0.9);padding: 1.75rem 1.25rem 1rem}}header .article_inside{display: flex}header .article_inside .ce_intro{max-width: 475px;width: 100%}@media screen and (max-width: 1152px){header .article_inside{padding-left: 1.5rem !important}}header .headline-size-xl{font-size: 3.25rem;font-weight: 300}@media screen and (max-width: 1680px){header .headline-size-xl{font-size: 2.75rem}}@media screen and (max-width: 1280px){header .headline-size-xl{font-size: 2.15rem}}@media screen and (max-width: 1024px){header .headline-size-xl{font-size: 1.8rem}}@media screen and (max-width: 800px){header .headline-size-xl{font-size: 1.6rem}}@media screen and (max-width: 699px){header .headline-size-xl{font-size: 1.5rem}}@media screen and (max-width: 480px){header .headline-size-xl{font-size: 1.4rem}}header h1{color: #f00 !important}header h2{color: #0f0 !important}.sidebar{font-size: 1.125rem;top: 75%;transition: 2s;width: 40px}.sidebar span.count{position: absolute;left: 22px;top: 10px;font-size: 9px;border-radius: 50%;padding: 1px 3px 1px 3px !important}.sidebar .fas,.sidebar .far{width: 22px}.sidebar .fa-users,.sidebar .fa-arrow-ups{padding-left: 3px}.sidebar a{box-shadow: none;min-width: 10px;padding-left: 13px;position: relative;text-shadow: 0px 0px 1px #000, 2px 1px 6px rgba(0,0,0,0.2)}.sidebar a:hover{color: #fff}.sidebar a:hover span.count{background-color: #d20a11;border: 1px solid #777}.sidebar > div{text-overflow: hidden;white-space: nowrap;margin-top: 2px;overflow: hidden}.sidebar > div a{display: block}.sidebar > div span{padding-left: 10px;transition: 2s}.sidebar:hover{width: 165px}.sidebar:hover > div span{padding-left: 5px}#topbar{z-index: 13;box-shadow: rgba(55,55,55,0.5) 0 1px 0, rgba(55,55,55,0.2) 0 25px 42px 0px, rgba(0,0,0,0.6) 0 1px 5px;background: linear-gradient(233deg, #818a8f, #eee, #96a1a7);background: linear-gradient(148deg, #818a8f 0%, #96a1a7 20%, #d8dadb 75%, #96a1a7 97%);background: linear-gradient(148deg, #c7c7c7 0% 0%, #838383 20%, #d9d9d9 75%, #b1b1b1 97%)}#topbar .ce_icon_box_multiple .special{display: inline-flex}#topbar .ce_icon_link a:hover{color: #d20a11}@media screen and (max-width: 1152px){#topbar{display: none}}#topbar .mod_box{overflow: visible}#topbar .mod_layout_article{padding-top: 0;padding-bottom: 0}#topbar .mod_customnav{text-align: right}#topbar a{font-size: 0.85rem}#topbar .level_1 > li{position: relative}#topbar .level_1 > li > a{color: #000;font-weight: 600;font-size: 0.85rem;padding-top: 0.5rem;padding-bottom: 0.5rem;margin-left: 0;display: block}#topbar .level_1 > li > a.cta{background-color: #2b4b63;color: #fff}#topbar .level_2{right: -100%}#topbar .level_2 li a{padding: .75rem .75rem;font-size: 0.8rem}#topbar .level_2 li a:hover{background-color: #0079b8}@media screen and (max-width: 1440px){#topbar .level_2{right: 1rem}}@media screen and (max-width: 699px){#topnav .ce_columnStart > *{width: auto !important}#topnav .ce_columnStart .ce_icon_link i{font-size: 1rem}}@media screen and (max-width: 380px){#topnav .ce_columnStart .ce_icon_link .link{display: none}}#container{min-height: 60px}.mod_layout_article.article_inside{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;padding-top: 2rem;padding-bottom: 2rem}@media screen and (max-width: 1280px){.mod_layout_article.article_inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.mod_layout_article.article_inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.mod_layout_article.article_inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.mod_layout_article.article_inside{padding-left: 1.5rem;padding-right: 1.5rem}}.mod_layout_article.article_inside .ce_accordionStart{background-color: #fff}.ce_icon_box_multiple i:before{border-radius: 50% !important;padding-top: 0.451rem !important}.mobilenav{position: relative;z-index: 2}.mobilenav i{font-size: 1.25rem}.mobilenav.scroll a{color: #4d5459}.mm-menu{z-index: 13}.mm-menu .image_container{margin: 2rem auto 2rem;padding: 2rem 0}.mm-menu .image_container img{display: block;width: auto;height: 100px;margin: auto}.logo a{color: #d20a11;font-weight: 600}.logo .headline{display: none}.fixed .logo{padding: 0 !important}.mod_article.width-medium .article_inside{max-width: 1265px}footer p{font-weight: 300}footer .mod_layout_article{padding-top: 4rem}footer .fc-2 a{color: #fff;border-bottom: 1px solid transparent;padding-bottom: 2px}footer .fc-2 a:hover{border-bottom: 1px solid rgba(255,255,255,0.5)}footer div.headline{font-weight: 300;font-size: 1.25rem;margin-bottom: 1rem;border-bottom: 1px solid rgba(255,255,255,0.2);padding-bottom: 5px;display: inline-block}footer div.headline div{margin: 0}footer .mod_customnav ul{list-style-type: none}footer .mod_customnav ul li{margin-bottom: 0.5rem}footer .mod_customnav ul li a{font-weight: 300}#copyright p,#copyright a{color: #000;font-weight: 300}.footernav{text-align: right}@media screen and (max-width: 699px){.footernav{text-align: center}}.footernav a{display: inline-block}.footernav a:hover{color: #fff;text-decoration: underline}a{color: #0079b8}.bg-9 .ce_accordionSingle{background-color: #fff}.meganav{align-self: center;overflow: visible}.meganav > .level_1{display: inline-block;border-bottom: 1px solid #777}.meganav > .level_1 > li > a,.meganav > .level_1 > li > span{font-size: 1.15rem;position: relative;overflow: visible;padding: .75rem 1rem .75rem;margin-left: 0.5rem;font-weight: 600;display: block;border-bottom: 2px solid transparent}@media screen and (max-width: 1440px){.meganav > .level_1 > li > a,.meganav > .level_1 > li > span{padding-left: 0.7rem;padding-right: 0.7rem;font-size: 1.05rem}}@media screen and (max-width: 1220px){.meganav > .level_1 > li > a,.meganav > .level_1 > li > span{padding-left: 0.5rem;padding-right: 0.5rem;font-size: 1rem}}.meganav > .level_1 > li > a.trail,.meganav > .level_1 > li > span.trail,.meganav > .level_1 > li > a.active,.meganav > .level_1 > li > span.active{font-weight: 600;color: #000;font-weight: 700}.meganav > .level_1 > li > a:hover,.meganav > .level_1 > li > span:hover{border-bottom: 2px solid #0079b8}.meganav > .level_1 > li > span{cursor: pointer}.meganav > .level_1 > li > span.clicked{background: rgba(242,242,242,0.95) !important;color: #000 !important}.meganav > .level_1 > li > a.trail,.meganav > .level_1 > li > a.active,.meganav > .level_1 > li > span.trail,.meganav > .level_1 > li > span.active{background-color: rgba(0,0,0,0.04)}.meganav .level_2 li{border-bottom: 1px solid #eee}.meganav .level_2 li a{font-size: 0.90rem !important}.meganav .megamenu{visibility: hidden;opacity: 0;transform: translateX(-50%) scale(.98);transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;position: absolute;left: 0;top: 115%;padding: 2.5rem;padding-bottom: 2rem;width: 100%;box-sizing: border-box;background-color: rgba(255,255,255,0.93);background: rgba(242,242,242,0.95);z-index: 10;text-align: left;width: 92%;max-width: 1280px;left: 50%}.meganav .megamenu.active{visibility: visible;opacity: 1;transform: translateX(-50%) scale(1);transition-delay: 0s;animation: megamenuPop .3s ease-out}.meganav .megamenu .ce_columnStart{padding-top: 0}.meganav .megamenu .headline{display: inline-block;margin-bottom: 1rem;font-size: 1.05rem;font-weight: bold;background-color: #d7dbde;color: #000;border-radius: 2px;padding: .5rem 1rem}.meganav .megamenu .mod_customnav ul li{display: block;text-align: left;margin-bottom: 0.85rem}.meganav .megamenu .mod_customnav ul li:last-child{margin-bottom: 0}.meganav .megamenu .mod_customnav ul li a{color: #000;font-weight: 400;padding: .25rem 1rem !important;margin-left: 0;transition: all .3s ease;position: relative}.meganav .megamenu .mod_customnav ul li a.mega{font-weight: bold;background-color: #0079b8;color: #fff !important;border-radius: 2px;padding-top: 0.5rem !important;padding-bottom: 0.5rem !important}.meganav .megamenu .mod_customnav ul li a.mega::after{font-family: 'Font Awesome 5 Free';font-weight: 900;content: "\f054";margin-left: 5px;font-size: 0.8rem}.meganav .megamenu .mod_customnav ul li a.mega::before{content: none}.meganav .megamenu .mod_customnav ul li a::before{content: "";position: absolute;left: 0;top: 0;width: 4px;height: 100%;background: linear-gradient(to bottom, #0079b8 0%, #0079b8 52%, transparent 52%, transparent 55%, #0079b8 55%, #0079b8 100%);background-size: 100% 200%;animation: none;transition: background-position .3s ease}.meganav .megamenu .mod_customnav ul li a:hover::before{animation: scanline 1.25s linear infinite}.meganav .megamenu .mod_customnav ul li a:hover{color: #0079b8}.meganav .megamenu .mod_customnav ul li.active a,.meganav .megamenu .mod_customnav ul li.trail a{color: #0079b8}.meganav .megamenu .ce_button .btn{padding: .5rem 3.5rem}@keyframes megamenuPop{0%{opacity: 0;transform: translateX(-50%) scale(.85)}70%{opacity: 1;transform: translateX(-50%) scale(1.05)}100%{transform: translateX(-50%) scale(1)}}@keyframes scanline{0%{background-position: 0% 0%}100%{background-position: 0% 100%}}.logo img{width: 120px;height: 78px;object-fit: contain;display: block}@media (max-width: 800px){.logo img{width: 92px;height: auto}}@media screen and (min-width: calc(1152px + 1px)){.hero.fixed #topnav .mod_box{background-color: rgba(77,84,89,0.98) !important;background: radial-gradient(circle at center, rgba(77,84,89,0.98) 50%, rgba(46,50,53,0.98) 100%);box-shadow: inset 0 0 60px rgba(0,0,0,0.2), rgba(0,0,0,0.09) 0 6px 0, rgba(0,0,0,0.12) 0 10px 13px 6px, rgba(0,0,0,0.6) 0 0px 1px}}.hero #wrapper{padding-top: 0}.hero .meganav > .level_1{border-bottom: 1px solid #fff}.hero .meganav > .level_1 > li > a,.hero .meganav > .level_1 > li > span{color: #fff}.hero .meganav > .level_1 > li > a.trail,.hero .meganav > .level_1 > li > a.active,.hero .meganav > .level_1 > li > span.trail,.hero .meganav > .level_1 > li > span.active{color: #fff;background-color: rgba(255,255,255,0.1)}.hero #topnav .logo img{content: url('/files/layout/logo/logo-schneidforum-weiss.svg')}.hero header .mod_article{margin-top: 0;margin-bottom: 0;position: relative;display: flex;flex-direction: column;justify-content: flex-start}.hero header .article_inside{max-width: none;text-shadow: 0 2px 4px rgba(0,0,0,0.6)}.hero header .article_inside,.hero header .ce_section_image .textbox{background: linear-gradient(to bottom, rgba(0,0,0,0.95) 2%, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 84%)}.hero header .ce_intro{max-width: 1280px;margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 5}.hero header .ce_intro .subheadline{color: #fff}@media screen and (max-width: 1366px){.hero header .ce_intro .subheadline{text-shadow: 4px 1px 5px rgba(0,0,0,0.9)}}.hero header .ce_intro .linkbox{text-shadow: none}.hero .intro-block{margin-top: 0}.extra-shadow header .article_inside,.extra-shadow header .ce_section_image .textbox{background: linear-gradient(to bottom, rgba(0,0,0,0.95) 5%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 84%)}.hero-overlay{position: absolute;inset: 0;z-index: 1;background: linear-gradient(15deg, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.8) 20%, transparent 50%);pointer-events: none}.sidebar{width: 43px;transition: 1.3s}.sidebar:hover{width: 205px}.sidebar a{white-space: nowrap;margin-top: 2px;overflow: hidden}.mod_link_listing > .inside{border: 1px solid #d7dbde}.mod_link_listing .headline{display: block;margin-bottom: 2rem;color: #0079b8;font-size: 1.55rem}@media screen and (max-width: 1366px){.mod_link_listing .headline{font-size: 1.75rem}}@media screen and (max-width: 699px){.mod_link_listing .headline{font-size: 1.4375rem}}@media screen and (max-width: 800px){.mod_link_listing .headline{font-size: 1rem}}.mod_link_listing .textbox{background-color: #f1f4f6;padding: 2rem 2.25rem;z-index: 1}.mod_link_listing .teaser{margin-bottom: 2rem}.mod_link_listing .teaser .strong{font-size: 1rem}@media screen and (min-width: 700px){.mod_link_listing .link_container .inside{display: flex}.mod_link_listing.overlay .link_container .inside{display: block;overflow: hidden;position: relative}.mod_link_listing.overlay .image_container{position: absolute;z-index: -1;width: 100%}.mod_link_listing.overlay .image_container img{object-fit: cover;width: 100%;max-height: 1000px}.mod_link_listing.overlay .textbox{background-color: rgba(255,255,255,0.25);width: 100%}.mod_link_listing.float_right .link_container{flex-direction: row-reverse}.mod_link_listing .image_container{width: 33%}.mod_link_listing .image_container img{height: 100%;width: auto;max-height: 480px;max-width: none}.mod_link_listing .textbox{width: 67%}.mod_link_listing .button-box{margin-top: 1rem}}.mod_link_listing a{color: inherit}.mod_link_listing a:hover{text-decoration: none}.formbody .explain{font-size: 80%}.formbody input,.formbody select{font-size: 1rem !important}.formbody .widget-submit button{color: #fff;background-color: #d20a11;border: 1px solid #d20a11;padding: .6rem 6rem !important;box-shadow: rgba(0,0,0,0.12) 0 4px 9px 1px;background: linear-gradient(135deg, rgba(210,10,17,0.98) 0%, rgba(173,0,6,0.98) 100%)}.formbody .widget-submit button:hover{color: #d20a11;background-color: #fff;background: #fff;box-shadow: 0 0 0 2px rgba(0,0,0,0.08), 0 4px 14px rgba(0,0,0,0.12), 0 0px 0px rgba(0,0,0,0.06)}.formbody .widget.border{border: 1px solid #d7dbde;padding: 1rem}.formbody .widget-calendar{position: relative}.formbody .widget-calendar input{display: inline-block}.formbody .widget-calendar .input-button{width: 16px;position: absolute;right: 1rem;top: 53%;cursor: pointer}.quota-range{clear: both;height: 1.6em;overflow: hidden;margin: 1.06667em 0;background: #f1f4f6}.quota-range .inside{height: 100%;color: #fff;background-color: #2b4b63}.bg-5{overflow: hidden;box-shadow: inset 0 0 60px rgba(0,0,0,0.2);background: radial-gradient(circle at center, #0079b8 50%, #004d76 100%)}.bg-5 .subheadline{background-color: rgba(0,0,0,0.1) !important;color: #fff !important;padding: 7px 16px}.bg-6{overflow: hidden;box-shadow: inset 0 0 60px rgba(0,0,0,0.2);background: radial-gradient(circle at center, #4d5459 50%, #2e3235 100%)}.bg-6 .shadow{box-shadow: 0 60px 90px 50px #2e3235}.bg-8{overflow: hidden;box-shadow: inset 0 0 60px rgba(0,0,0,0.2);background: radial-gradient(circle at center, #2b4b63 50%, #172835 100%)}.bg-8 .shadow{box-shadow: 0 60px 90px 50px #172835}.video_container iframe{width: 100%;min-height: 250px;background-color: #e7e7e7;border: 1px solid #d9d9d9}.video_container .video_placeholder{position: relative;cursor: pointer}.video_container .video_placeholder img{display: block;width: 100%}.video_container .video_overlay{position: absolute;inset: 0;background: rgba(0,0,0,0.6);color: white;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;padding: 20px}.video_container .video_overlay button{margin-top: 10px;padding: .35rem 1.25rem;font-size: 85%}.map_placeholder{position: relative;cursor: pointer;height: 450px;background: #f0f0f0}.map_overlay{position: absolute;inset: 0;background: rgba(0,0,0,0.6);color: white;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;padding: 20px}.map_overlay button{margin-top: 10px;padding: .35rem 1.25rem;font-size: 85%}.route-button{display: block}.ad-skyscraper{position: fixed;top: 6rem;right: 0.5rem;width: 160px;max-height: 600px;height: 50%;z-index: 1000}.ad-skyscraper img{width: auto;max-width: 160px}@media (max-width: 1152px){.ad-skyscraper{display: none !important}}.mod_registration_amp label{display: none}.mod_registration_amp input{color: #0079b8}.mod_registration_amp .widget-erfahren{display: none}.mod_registration_amp .widget-agreement{font-size: 85%}.mod_registration_amp .widget-agreement .value{display: flex;align-items: flex-start;gap: 7px}.mod_registration_amp .widget-agreement input{width: 25px;height: 25px;flex-shrink: 0;align-self: center}.mod_registration_amp .widget-agreement p{margin-bottom: 0}.no-margin p{margin-bottom: 0}.headline-margin h2{margin-top: 3rem}.headline-margin h3{margin-top: 2rem}.headline-margin h4{margin-top: 1.5rem}.no-overflow{overflow: hidden}input::placeholder{color: #1a1b1c;opacity: 1}select option{color: #1a1b1c !important}input::placeholder,select.placeholder{color: #1a1b1c}select option[value=""]{color: #aaa !important;font-style: italic}.ce_text_number .number{color: #d7dbde;font-size: 4rem;font-weight: 300;margin-bottom: 1rem}.ce_icon_box a{text-decoration: none}@media screen and (max-width: 800px){.ce_icon_box{margin-bottom: 1.5rem}.ce_icon_box .textbox{padding: 0}}.headline strong{color: #d20a11}.ce_teaser_box,.ce_teaser_box_double{background-color: #fff;font-size: 0.9rem}.ce_teaser_box .headline,.ce_teaser_box_double .headline{margin-top: 0}@media screen and (max-width: 480px){.ce_teaser_box .headline-size-s,.ce_teaser_box_double .headline-size-s{font-size: 1.25rem}}.ce_teaser_box .subheadline,.ce_teaser_box_double .subheadline{color: #999;font-weight: normal;letter-spacing: 1px;font-size: 1rem;margin-bottom: 0.5rem}.ce_teaser_box .textbox,.ce_teaser_box_double .textbox{padding: 1rem 1rem 0}.ce_teaser_box p,.ce_teaser_box_double p{margin-bottom: 0.5rem;font-size: 92%}.ce_teaser_box ul,.ce_teaser_box_double ul{list-style-type: square;margin-bottom: 1.5rem}.ce_teaser_box ul li,.ce_teaser_box_double ul li{margin-bottom: 0.5rem;line-height: 1.4}.ce_teaser_box a,.ce_teaser_box_double a{cursor: pointer}.ce_teaser_box .more,.ce_teaser_box_double .more{margin-top: 1rem;border-radius: 0 0 3px 3px}@media screen and (max-width: 480px){.ce_teaser_box .more,.ce_teaser_box_double .more{font-size: 0.95rem}}.ce_teaser_box .headline a,.ce_teaser_box_double .headline a{color: #000}.ce_teaser_box.wide .inside{padding-bottom: 0}.ce_teaser_box.wide .linkbox{padding: 0}.ce_teaser_box.wide .more{display: block}@media screen and (max-width: 1152px){.ce_teaser_box.wide{margin-bottom: 1rem}}.ce_teaser_box_double .text2{margin-top: 2rem;padding: 2rem 2.75rem 2rem;background-color: #0079b8;color: #fff}.ce_intro .subheadline,.ce_text .subheadline{font-size: 1.25rem;margin-bottom: 1rem;display: inline-block;color: #0079b8}@media screen and (max-width: 1366px){.ce_intro .subheadline,.ce_text .subheadline{font-size: 1.1rem;font-weight: normal}}@media screen and (max-width: 800px){.ce_intro .subheadline,.ce_text .subheadline{font-size: 0.9rem}}.ce_table table,.table table{border-left: 1px solid #d7dbde;border-right: 1px solid #d7dbde}.ce_table thead th,.table thead th{background-color: #4d5459;border-bottom: 1px solid #444a4e;border-top: 1px solid #444a4e;font-weight: 500}.ce_table tbody th,.table tbody th{background-color: #f1f4f6;border-bottom: 1px solid #ccd1d5;border-top: 0;font-weight: 500;color: #000}.ce_table td,.table td{border-bottom: 1px solid #d7dbde}#main .ce_intro .subheadline{color: #839099}#main .ce_intro .subheadline:after{display: block;border-bottom: 5px solid #0079b8;width: 10rem;content: ' ';margin: 2rem auto 1rem}.ce_intro .icon{margin-bottom: 2rem}.ce_intro .icon i{font-size: 2rem}.ce_text h2{border-left: 8px solid #d20a11;padding-left: 1rem}.mod_tender_form .intro{background-color: #fff}.mod_tender_form.no-recipients .widget-recipient{display: none}.mod_tender_form fieldset{border: 1px solid #d7dbde;padding: 1rem 1rem .5rem}.mod_tender_form form{padding-top: 2rem;padding-bottom: 2rem}.mod_tender_form .widget-privacy{display: none}.ce_quotation{font-size: 2rem}.ce_quotation p{padding: 0 3rem;font-size: 2rem}@media screen and (max-width: 800px){.ce_quotation{font-size: 1.25rem}.ce_quotation p{font-size: 1rem}}.ce_text,.ce_text_right,.ce_text_left{margin-top: 2rem;margin-bottom: 2rem}@media screen and (max-width: 1024px){.ce_text,.ce_text_right,.ce_text_left{margin-top: 1.5rem;margin-bottom: 1.5rem}}.ce_text_right .inside,.ce_text_left .inside{border: 1px solid #d7dbde;gap: 36px !important}.ce_text_right .image_container,.ce_text_left .image_container{border-left: 1px solid #d7dbde}.ce_text_right .text p:last-child,.ce_text_left .text p:last-child{margin-bottom: 0}.ce_text_right .linkbox,.ce_text_left .linkbox{margin-top: 3rem}.ce_text_left .text{padding-right: 0}.ce_text_left h2,.ce_text_right h2{border-left: 8px solid #d20a11;padding-left: 1rem;display: inline-block}@media screen and (max-width: 1024px){.ce_text_left .inside,.ce_text_right .inside{border: 0}.ce_text_left .text,.ce_text_right .text{padding: 0}}.grafik .image_container a{padding: 2rem}.ce_player video{width: 100%;height: auto}.listing ul{list-style-type: square;padding-left: 2rem;margin-bottom: 1.5rem}.listing ul li{margin-bottom: 0.5rem}.listing ul li:last-child{margin-bottom: 0}.ce_list ul{list-style-type: square;padding-left: 2rem;margin-bottom: 1.5rem}.ce_list ul li{margin-bottom: 0.5rem}.ce_list ul li:last-child{margin-bottom: 0}.ce_text ul,.ce_text_pro ul,.ce_intro ul,.widget-explanation ul,.message ajaxconfirm ul,.link_container ul,.product_category ul{list-style-type: square;padding-left: 2rem;margin-bottom: 1.5rem}.ce_text ul li,.ce_text_pro ul li,.ce_intro ul li,.widget-explanation ul li,.message ajaxconfirm ul li,.link_container ul li,.product_category ul li{margin-bottom: 0.5rem}.ce_text ul li:last-child,.ce_text_pro ul li:last-child,.ce_intro ul li:last-child,.widget-explanation ul li:last-child,.message ajaxconfirm ul li:last-child,.link_container ul li:last-child,.product_category ul li:last-child{margin-bottom: 0}.widget-explanation .headline-size-s,.widget-explanation .headline-size-m,.widget-explanation .headline-size-l{display: block;margin-bottom: 1rem}.widget-explanation hr{margin-top: 2rem;margin-bottom: 2rem}.pagination a{background-color: #4d5459;color: #fff}.widget-pageswitch .continue{-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;background-color: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px;color: #fff;background-color: #0079b8;border: 1px solid #0079b8}@media screen and (max-width: 1366px){.widget-pageswitch .continue{font-size: 1rem}}@media screen and (max-width: 1024px){.widget-pageswitch .continue{font-size: 0.9rem}}@media screen and (max-width: 1366px){.widget-pageswitch .continue{font-size: 1rem}}@media screen and (max-width: 1024px){.widget-pageswitch .continue{font-size: 0.9rem}}.widget-pageswitch .continue:hover{color: #d20a11;background-color: #fff}.widget-pageswitch .back{-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: #d20a11;font-size: 1.05rem;font-weight: 600;border: 1px solid #d20a11;padding: .5rem 2rem;line-height: 150%;border-radius: 3px;color: #1a1b1c;background-color: #fff;border: 1px solid #fff}@media screen and (max-width: 1366px){.widget-pageswitch .back{font-size: 1rem}}@media screen and (max-width: 1024px){.widget-pageswitch .back{font-size: 0.9rem}}@media screen and (max-width: 1366px){.widget-pageswitch .back{font-size: 1rem}}@media screen and (max-width: 1024px){.widget-pageswitch .back{font-size: 0.9rem}}.widget-pageswitch .back:hover{color: #d20a11;background-color: #fff}.widget-pageswitch .back:hover{color: #fff;background-color: #4d5459;border: 1px solid #fff}.ce_accordionSingle,.ce_accordionStart{padding: 1.5rem 2.5rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;box-sizing: border-box;margin-bottom: 0.5rem;padding: 0 !important}.ce_accordionSingle .toggler,.ce_accordionStart .toggler{padding: .5rem .5rem .5rem 2rem;color: #d20a11}.ce_accordionSingle .toggler:before,.ce_accordionStart .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: #d20a11;font-size: 1.05rem}@media screen and (max-width: 1366px){.ce_accordionSingle .toggler:before,.ce_accordionStart .toggler:before{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_accordionSingle .toggler:before,.ce_accordionStart .toggler:before{font-size: 0.9rem}}.ce_accordionSingle .toggler.active:before,.ce_accordionStart .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_accordionSingle .ui-widget-content > div,.ce_accordionStart .ui-widget-content > div{padding: .5rem 1.5rem 0}.ce_accordionSingle .toggler,.ce_accordionStart .toggler{font-weight: 600;padding: 1rem 2.75rem;border-right: 8px solid #0079b8;color: #0079b8;position: relative}.ce_accordionSingle .toggler::before,.ce_accordionStart .toggler::before{top: 14px;font-size: 1.25rem;left: 14px;color: #0079b8}.ce_accordionSingle .accordion > div,.ce_accordionStart .accordion > div{padding: 1.5rem 1.5rem 1.5rem}.fc-1 .toggler{color: #d20a11;border-right: 8px solid #d20a11}.fc-1 .toggler::before{color: #d20a11}.fc-3 a{border-bottom: 1px solid #1a1b1c}.fc-3 a:hover{color: #0079b8;border-bottom: 1px solid #0079b8}.mod_price_index table,.mod_price_index2 table,.mod_price_index3 table,.mod_price_index td,.mod_price_index2 td,.mod_price_index3 td{border: 0;padding: 0}.mod_price_index td span,.mod_price_index2 td span,.mod_price_index3 td span{position: relative;top: -2px;padding-left: 4px}.mod_price_index form,.mod_price_index2 form,.mod_price_index3 form{margin-top: 1.5rem}.mod_price_index .canvas,.mod_price_index2 .canvas,.mod_price_index3 .canvas{height: 425px;padding-left: 10px;margin-bottom: 1rem}.mod_price_index .canvas canvas,.mod_price_index2 .canvas canvas,.mod_price_index3 .canvas canvas{display: block}.mod_price_index .graph_legend,.mod_price_index2 .graph_legend,.mod_price_index3 .graph_legend{margin-bottom: 3rem}.mod_price_index .select2-container,.mod_price_index2 .select2-container,.mod_price_index3 .select2-container{max-width: 100%}.mod_price_index .select2,.mod_price_index2 .select2,.mod_price_index3 .select2{width: 100%;margin-bottom: 2rem;border: 0}.mod_price_index .select2 .select2-selection,.mod_price_index2 .select2 .select2-selection,.mod_price_index3 .select2 .select2-selection{min-height: 120px;cursor: cell;border: 1px solid #93989b;color: #fff;font-size: 85%}.mod_price_index .select2 .select2-selection__choice,.mod_price_index2 .select2 .select2-selection__choice,.mod_price_index3 .select2 .select2-selection__choice{border: 1px solid #585858}.mod_price_index .select2-container--default .select2-selection--multiple::after,.mod_price_index2 .select2-container--default .select2-selection--multiple::after,.mod_price_index3 .select2-container--default .select2-selection--multiple::after{content: "Klicken Sie hier, um weitere Rohstoffe auszuwählen"}.mod_faqlist .faq_category{margin-top: 1rem}.mod_faqlist .faq_item{margin-bottom: 0.5rem}.mod_faqlist .faq_item p:last-child{margin-bottom: 0}.mod_faqlist .faq_item .toggler{background-color: #f1f4f6;color: #0079b8;border: 1px solid #d7dbde;font-weight: 600;border-right: 8px solid #0079b8;position: relative;padding: 1rem 2.75rem}.mod_faqlist .faq_item .toggler h3{font-size: 1.05rem;font-weight: 600;color: #0079b8;margin-bottom: 0}@media screen and (max-width: 1366px){.mod_faqlist .faq_item .toggler h3{font-size: 1rem}}@media screen and (max-width: 1024px){.mod_faqlist .faq_item .toggler h3{font-size: 0.9rem}}.mod_faqlist .faq_item .toggler:before{top: 14px;font-size: 1.25rem;right: auto;left: 14px;display: inline-block;content: '\f067';color: #0079b8;-webkit-transform: rotate(90deg);-moz-transform: rotate(90deg);-ms-transform: rotate(90deg);-o-transform: rotate(90deg);transform: rotate(90deg)}.mod_faqlist .faq_item .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)}.mod_faqlist .faq_item .accordion{padding: 1rem 2.75rem;border: 1px solid #d7dbde;border-top: 0}.standard img{width: auto !important;display: inline-block;max-width: 100%}.standard .image_container{display: inline-block}.image_container figcaption,.image_container .caption{background-color: #4d5459;font-size: 75%;color: #fff;padding: 1rem;margin-top: 0}.ce_table{margin-bottom: 4rem}.alignment-centered .ce_text_pro{width: 100%}#mobile .ce_toplink{display: none;position: fixed;z-index: 2;right: 2rem;bottom: 2rem}#mobile .ce_toplink a{display: block;color: #0079b8;font-weight: bold;padding: .9rem 1.75rem;background-color: rgba(255,255,255,0.75);border: 1px solid rgba(0,0,0,0.5);border-radius: 4px}#mobile .ce_toplink a i{margin-left: 1rem}#mobile .ce_toplink a:hover{color: #d20a11;background-color: #fff}.mobile-show{display: none}@media screen and (max-width: 1152px){.mobile-show{display: block}.mobile-hide{display: none}}.link{cursor: pointer;color: #0079b8}.sub-navigation{max-width: 1280px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box;margin-bottom: 2rem}@media screen and (max-width: 1280px){.sub-navigation{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.sub-navigation{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.sub-navigation{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.sub-navigation{padding-left: 1.5rem;padding-right: 1.5rem}}.sub-navigation .h3{text-align: center;font-size: 1.55rem;margin-bottom: 1rem}@media screen and (max-width: 1366px){.sub-navigation .h3{font-size: 1.75rem}}@media screen and (max-width: 699px){.sub-navigation .h3{font-size: 1.4375rem}}.sub-navigation .items{display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 1.25rem;list-style: none}.sub-navigation .items div a{min-height: 120px;text-align: center;align-content: center;font-size: 1.3rem;display: block;background-color: #f1f4f6;padding: 2rem 2rem;hyphens: auto}@media screen and (max-width: 1366px){.sub-navigation .items div a{font-size: 1.1875rem}}@media screen and (max-width: 699px){.sub-navigation .items div a{font-size: 1.25rem}}.sub-navigation .items div.active a,.sub-navigation .items div:hover a{background-color: #0079b8;color: #fff}.tab-content{margin: -1px 0;padding: 1.5rem 1.5rem .5rem;background-color: #fff;border: 1px solid #bbb;border-radius: 0 4px 4px}.mod_article_list ul{list-style-type: square;padding-left: 2rem;margin-bottom: 1.5rem}.mod_article_list ul li{margin-bottom: 0.5rem}.mod_article_list ul li:last-child{margin-bottom: 0}.mod_article_list ul{margin-bottom: 0}.intro-block{padding-top: 0.5rem;padding-bottom: 0.5rem}.intro-block .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){.intro-block .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.intro-block .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.intro-block .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.intro-block .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.intro-block .directory,.intro-block .directory-headline{padding-top: 0.5rem;padding-bottom: 0.5rem}.info-block{padding-top: 0.5rem;padding-bottom: 0.5rem}.info-block .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){.info-block .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1280px + (2*6rem))}}@media screen and (max-width: 1440px){.info-block .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.info-block .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.info-block .inside{padding-left: 1.5rem;padding-right: 1.5rem}}@media screen and (min-width: 800px){.info-block .inside{display: flex;justify-content: space-between;align-items: center}}.syndication a{cursor: pointer;margin-top: 0;margin-right: 1rem;padding-top: 0.1rem;padding-bottom: 0.25rem;border-radius: 3px;width: 2.125rem}.syndication i{color: #fff;font-size: 0.95rem}@media screen and (max-width: 800px){.syndication{margin-top: 0.5rem}}@media screen and (max-width: 480px){.syndication a{margin-right: 0.25rem}}.act_buttons{background-color: #fff;border: 1px dashed #d7dbde;display: flex;justify-content: space-between;margin: auto 1rem 1rem}.act_buttons > div{display: inline-block}.act_buttons i{margin-right: 0.25rem}.act_buttons .edit a,.act_buttons .publish,.act_buttons .delete button{padding: .75rem .75rem;display: inline-block}.act_buttons button{border: 0;cursor: pointer;background: none;color: #bd050e;font-size: 0.9rem;font-family: Lato}.act_buttons button i{font-size: 1.2rem;top: 1px;position: relative}.act_buttons button:hover{color: #fff;background-color: #bd050e}.act_buttons a:hover{color: #000}.act_buttons .delete form{margin: 0}.act_buttons .publish{color: #6cbd05}.formbody .widget{position: relative}.formbody .widget .explain{margin-top: 0;cursor: pointer;position: relative}.formbody .widget .explain .inside{margin-top: 6px;visibility: hidden;opacity: 0;position: absolute;top: 130%;left: 0;width: calc(100% - 16px);background-color: #333;color: #fff;padding: 8px;border-radius: 2px;font-size: 12px;box-shadow: 0 4px 10px rgba(0,0,0,0.2);transition: opacity .3s;z-index: 10;pointer-events: none}.formbody .widget:hover .inside{visibility: visible;opacity: 1}.form-grid .formbody,fieldset.form-grid{display: grid;grid-template-columns: repeat(2, 1fr);gap: 1.25rem}.form-grid .widget{min-width: 0;margin-bottom: 0}.form-grid .widget-textarea,.form-grid .widget-explanation,.form-grid .widget-upload,.form-grid .widget-checkbox,.form-grid .multiselect,.form-grid .ce_accordion,.form-grid .widget-submit{grid-column: 1 / -1}.form-grid .ce_accordionSingle .accordion{display: grid;grid-template-columns: repeat(2, 1fr);gap: 1.25rem;padding: 2rem}.form-grid .ce_accordionSingle .accordion > *{padding: 0}.form-grid .checkbox_container legend{margin-bottom: 0.25rem;font-weight: 600}.form-grid .checkbox_container label{font-size: 0.95rem;margin-bottom: 0.25rem}.form-grid img{width: auto;display: inline-block}.form-grid.mod_location_form .widget-submit{grid-column: 1 / -1}.column-left .subnav ul{background-color: #f1f4f6}.column-left .subnav ul.level_1 > li > a{font-weight: 600}.column-left .subnav a,.column-left .subnav strong{border-bottom: 1px solid #d7dbde}.column-left #left{margin-bottom: 3rem}.column-left #left .mod_location_link a{display: block}.column-left .mod_article .mod_location_link{display: grid;grid-template-columns: 2fr 1fr;gap: 1.25rem;align-items: center;margin-bottom: 1.5rem}.column-left .mod_article .mod_location_link h1{margin-bottom: 0}.column-left .mod_article .mod_location_link .link{text-align: right}.column-left .ce_accordionSingle{margin-bottom: 2rem}@media screen and (max-width: 1152px){.column-left #container{flex-direction: column}}div.advertising_type{background-color: rgba(255,255,255,0.3);padding: .5rem 1rem;font-size: 0.75rem;z-index: 1;text-align: center;margin-bottom: 2px;display: inline-block}.banner_list.banner-skyscraper img{max-width: 160px}.banner_list.banner-medium img{max-width: 300px}.banner_list.banner-billboard img{max-width: 970px}.banner_list img{max-width: 100%;margin: auto}.p3 .container_element{padding-left: 3rem;padding-right: 3rem;align-self: center}.p4 .container_element{padding-left: 4rem;padding-right: 4rem;align-self: center}.ce_swiperStart .p4 .container_element{padding: 0;margin: 0}.p5 .container_element{padding-left: 5rem;padding-right: 5rem;align-self: center}.upload-ms.upload_item{min-height: calc(250px + 47px)}.upload-ms.upload_item .flip-card{height: calc(100% - 47px)}.upload-ms.upload_item .act_buttons{margin: 0}.video-tile{font-size: 0.9rem;cursor: default !important}.video-tile .headline{margin-top: 1rem}.video-tile .ui-state-active{display: none}.video-ms .act_buttons{margin: 0}
