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

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

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

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

.mm-hidden {
	display: none
}

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

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

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

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

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

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

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

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

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

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

.mm-panel_highest {
	z-index: 2
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mm-menu_offcanvas {
	width: 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}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
.invisible{border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px}.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: Poppins;font-size: 1.1rem;line-height: 1.4;color: #fff;background-color: #fff;-webkit-text-size-adjust: 100%}@media screen and (max-width: 1280px){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: #5d8fae;text-decoration: none;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}a:hover,.toggler:hover{color: #505050;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}a.email,.toggler.email{white-space: nowrap}.toggler{cursor: pointer}ul{padding: 0;margin-bottom: 0}a.skip-main{left: -999px;position: absolute;top: auto;width: 1px;height: 1px;overflow: hidden;z-index: -999}a.skip-main:focus,a.skip-main:active{display: inline-block;color: #fff;background-color: black;left: 50%;top: auto;width: auto;transform: translateX(-50%);height: auto;overflow: auto;margin: 1rem 0;padding: 1rem;border-radius: 1px;border: 4px solid #ff0;text-align: center;font-size: 1.2em;z-index: 999}.form-flex .formbody,.widget-group{display: flex;flex-direction: row;flex-wrap: wrap;justify-content: space-between;align-items: stretch;align-content: stretch;width: 100%}.form-inline form .formbody{flex-wrap: nowrap}.form-inline form .formbody .widget-submit{position: relative;text-align: center}.form-inline form .formbody .widget-submit button{position: absolute;left: 0;bottom: 0;width: 100%;margin: 0;padding-top: 0.8rem;padding-bottom: 0.8rem}.item_rating,.widget{margin-bottom: 1.25rem}.explanation p{margin-bottom: 0}.explanation a{text-decoration: underline}.explanation a:hover{text-decoration: none}.formbody > fieldset > legend{width: calc(100% + 0px);background: #e8e8e8;background: linear-gradient(130deg, #c8c8c8, #e8e8e8);border-top-right-radius: 3px;border-top-left-radius: 3px;margin-left: calc(-1rem - 1px);border: 1px solid #aaa;padding: .5rem 1rem;-webkit-transition: all 250ms linear;-moz-transition: all 250ms linear;-ms-transition: all 250ms linear;-o-transition: all 250ms linear;transition: all 250ms linear;color: #222}.formbody > fieldset:hover > legend{background-color: #546d7d;background: linear-gradient(130deg, #3c4e5a, #6c8ea5);color: #fff;border-color: #3c4e5a}fieldset{padding: 1rem;border-radius: 4px;margin-bottom: 2rem;flex: 1 1 auto}fieldset legend{margin-bottom: 0.25rem;font-size: 1.1rem;color: #505050}@media screen and (max-width: 1280px){fieldset legend{font-size: 1rem}}@media screen and (max-width: 1024px){fieldset legend{font-size: 0.9rem}}fieldset.checkbox_container legend,fieldset.radio_container legend{padding: 0;line-height: 1.2;font-family: Poppins}fieldset.checkbox_container label,fieldset.radio_container label{display: inline;line-height: 1.4;color: #505050;font-size: 1.1rem;font-weight: 400}@media screen and (max-width: 1280px){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 .widget label{color: #505050}fieldset.checkbox_container,fieldset.radio_container{border: 0;padding: 0;border-radius: 0;margin-bottom: 0;background-color: transparent}label{display: block;margin-bottom: 0.25rem;font-family: Poppins}.placeholder{color: #aaa}::-webkit-input-placeholder{color: #aaa}::-moz-placeholder{color: #aaa}:-ms-input-placeholder{color: #aaa}:-moz-placeholder{color: #aaa}.error ::-webkit-input-placeholder{color: #aaa;color: rgba(255,255,255,0.9)}.error ::-moz-placeholder{color: #aaa;color: rgba(255,255,255,0.9)}.error :-ms-input-placeholder{color: #aaa;color: rgba(255,255,255,0.9)}.error :-moz-placeholder{color: #aaa;color: rgba(255,255,255,0.9)}p.error{margin-top: 1rem;margin-bottom: 0;color: #ff0000}.frm_field{display: block;width: 100%;box-sizing: border-box;font-family: Poppins}div.field_third{float: left;width: 32.6%;margin: 0 .5% 1.25rem}@media screen and (max-width: 800px){div.field_third{float: none;width: 100%;margin: 0 0 1.25rem}}div.field_third.first{margin-left: 0}div.field_third.last{margin-right: 0}.frm_lft{float: left;width: 48%;margin: 0 0 1.25rem;padding: 0}@media screen and (max-width: 800px){.frm_lft{float: none;width: 100%;margin: 0 0 1.25rem}}.frm_rght{float: right;width: 48%;margin: 0 0 1.25rem;padding: 0}@media screen and (max-width: 800px){.frm_rght{float: none;width: 100%;margin: 0 0 1.25rem}}textarea{border: 0}.widget-textarea{clear: both;margin-bottom: 1.25rem}.widget-textarea textarea{display: block;width: 100%;box-sizing: border-box;font-family: Poppins}.widget-textarea.mceEditor .mce-tinymce{width: calc(100% - 2px) !important;border-radius: 3px}.widget-textarea.mceEditor .mce-tinymce .mce-edit-area{border-width: 1px 1px 0px 0px !important}.widget-captcha .value img,.widget-email .value img,.widget-password .value img,.widget-tel .value img,.widget-text .value img{max-width: 100%}.widget-captcha input,.widget-email input,.widget-password input,.widget-tel input,.widget-text input{display: block;width: 100%;box-sizing: border-box;font-family: Poppins;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: #5d8fae;font-size: 1.1rem;font-weight: 600;border: 2px solid #5d8fae;padding: .75rem 3.5rem;text-transform: uppercase;line-height: 150%}@media screen and (max-width: 1280px){.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: 1280px){.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: 1280px){.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: #5d8fae;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: #5d8fae;border: 2px solid #5d8fae;background: transparent}.button-container.button-invert a:hover,button.button-invert:hover{color: #5d8fae;background-color: #5d8fae;border: 2px solid #5d8fae}.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: #5d8fae;font-weight: 600;border: 2px solid #5d8fae;padding: .75rem 3.5rem;text-transform: uppercase;line-height: 150%;font-size: 1.1rem;color: #fff;background-color: #505050;border: 1px solid #505050;padding: 1rem 2rem;display: inline-block}@media screen and (max-width: 1280px){.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: 1280px){.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: #5d8fae;background-color: #fff}@media screen and (max-width: 1280px){.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: #5d8fae;border: 2px solid #5d8fae;background: transparent}.button-container-secondary button:hover:hover,.button-container-secondary input:hover:hover,.button-container-secondary a:hover:hover{color: #5d8fae;background-color: #5d8fae;border: 2px solid #5d8fae}.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.1rem;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: 1280px){.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: Poppins;text-align: center}@media screen and (max-width: 699px){.srch_frm button.submit{color: #fff;background-color: #5d8fae}}.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: #5d8fae}.maxcentered{max-width: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.maxcentered{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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.1rem;line-height: 1.2}@media screen and (max-width: 1280px){.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: #000;font-size: 2.5rem;font-weight: 600;font-family: Poppins}@media screen and (max-width: 1366px){h1{font-size: 2.25rem}}@media screen and (max-width: 1024px){h1{font-size: 3rem}}@media screen and (max-width: 699px){h1{font-size: 1.8rem}}h2{font-size: 1.8rem;font-weight: 600;font-family: Poppins}@media screen and (max-width: 1366px){h2{font-size: 2rem}}@media screen and (max-width: 1024px){h2{font-size: 1.6rem}}@media screen and (max-width: 480px){h2{font-size: 1.4rem}}h3{font-size: 1.6rem;font-weight: 700;line-height: 125%;font-family: Poppins}@media screen and (max-width: 1366px){h3{font-size: 1.75rem}}@media screen and (max-width: 699px){h3{font-size: 1.4375rem}}h4{font-size: 1.4rem;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.1rem;font-weight: 600}@media screen and (max-width: 1280px){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.1rem;line-height: 1.2}@media screen and (max-width: 1280px){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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){#topbar .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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}header .mod_article{margin: 0 !important}header .mod_layout_article{max-width: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){header .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (2*6rem))}}@media screen and (max-width: 1440px){header .mod_layout_article{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){header .mod_layout_article{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){header .mod_layout_article{padding-left: 1.5rem;padding-right: 1.5rem}}header .mod_box{position: relative;z-index: 2;overflow: visible}header .ce_columnStart{padding-top: 1rem;padding-bottom: 1rem}header .box-top.fixed{position: fixed;width: 100%;top: 0;z-index: 4;overflow: visible}header .box-top.fixed .ce_columnStart{padding-top: 0;padding-bottom: 0}#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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.column-left #container{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.column-right #container{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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: 1440px;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: 1440px){footer .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){#copyright .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.mod_article .article_inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.mobile .mod_article .article_inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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 .image_container.float_above{margin-bottom: 1rem}.ce_text .image_container.float_left{margin-right: 1rem;margin-bottom: 1rem}.ce_text .image_container.float_right{margin-left: 1rem;margin-bottom: 1rem}.ce_text .image_container.float_below{margin-top: 1rem}.ce_text .linkbox{margin-top: 1rem}.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.1rem}@media screen and (max-width: 1280px){.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: #5d8fae;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.1rem;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;text-align: center;width: auto;cursor: pointer;display: inline-block;position: relative}@media screen and (max-width: 1280px){.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: #5d8fae;font-size: 1.1rem;font-weight: 700;text-align: center;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;-webkit-border-radius: 1px;-moz-border-radius: 1px;-ms-border-radius: 1px;border-radius: 1px}@media screen and (max-width: 1280px){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: #5d8fae;border: 1px solid #5d8fae;background-color: #fff}p.back a.inverted:hover{color: #fff;background-color: #5d8fae}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.1rem;border-spacing: 0}@media screen and (max-width: 1280px){.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: #15314a;border-bottom: 1px solid #0a1722;border-top: 1px solid #0a1722;text-align: left}.ce_table th.col_first,.table th.col_first{border-left: 1px solid #0a1722;border-top: 0}.ce_table th.col_last,.table th.col_last{border-right: 1px solid #0a1722}.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 #5d8fae;border-bottom: 1px solid #5d8fae}.ce_table tr.active td:first-child,.table tr.active td:first-child{border-left: 1px solid #5d8fae}.ce_table tr.active td:last-child,.table tr.active td:last-child{border-right: 1px solid #5d8fae}.ce_table td,.table td,.ce_table th,.table th{padding: 1rem .625rem;vertical-align: top}@media screen and (max-width: 699px){.ce_table td,.table td,.ce_table th,.table th{padding: .5rem .25rem}}.ce_table tr.row_center td,.table tr.row_center td{vertical-align: middle}.ce_table th.col_number,.table th.col_number,.ce_table td.col_number,.table td.col_number{text-align: right;padding-right: 2rem;white-space: nowrap}.ce_table th.col_center,.table th.col_center,.ce_table td.col_center,.table td.col_center{text-align: center}.ce_table th.col_left,.table th.col_left,.ce_table td.col_left,.table td.col_left{text-align: left}.ce_table tfoot,.table tfoot{font-weight: 400;color: #fff;background-color: #f5f5f5}.ce_table tr.row_first td,.table tr.row_first td{border-top: 0 solid #5d8fae}.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.1rem}@media screen and (max-width: 1280px){.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: #5d8fae}.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: #5d8fae;font-size: 1.1rem;font-weight: 600;border: 2px solid #5d8fae;padding: .75rem 3.5rem;text-transform: uppercase;line-height: 150%;padding: .5rem 4rem}@media screen and (max-width: 1280px){.cookiebar__button.accept{font-size: 1rem}}@media screen and (max-width: 1024px){.cookiebar__button.accept{font-size: 0.9rem}}@media screen and (max-width: 1280px){.cookiebar__button.accept{font-size: 1rem}}@media screen and (max-width: 1024px){.cookiebar__button.accept{font-size: 0.9rem}}.cookiebar__button.accept:hover{color: #5d8fae;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: 699px){.mainnav{display: none}}.mainnav :focus{outline: 1}.mainnav ul{margin: 0;padding: 0}.mainnav ul li{display: inline-block;list-style-type: none;text-align: center}.mainnav a,.mainnav strong{display: inline-block;margin-right: 0;margin-left: 1.5rem;padding: 1.25rem 1.25rem 1.25rem;color: #505050;font-family: Poppins;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}@media screen and (max-width: 1366px){.mainnav a,.mainnav strong{margin-left: 1rem;font-size: 1.1rem}}@media screen and (max-width: 1366px) and screen and (max-width: 1280px){.mainnav a,.mainnav strong{font-size: 1rem}}@media screen and (max-width: 1366px) and screen and (max-width: 1024px){.mainnav a,.mainnav strong{font-size: 0.9rem}}@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: #5d8fae;-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: #5d8fae}.mainnav a.srch:focus:before,.mainnav strong.srch:focus:before{color: #5d8fae}.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 #5d8fae;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 #5d8fae;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.1rem;-webkit-transition: background 250ms ease-in-out;-moz-transition: background 250ms ease-in-out;-ms-transition: background 250ms ease-in-out;-o-transition: background 250ms ease-in-out;transition: background 250ms ease-in-out;background-image: none;font-weight: 400;text-shadow: 0 0 0 rgba(0,0,0,0)}@media screen and (max-width: 1280px){.mainnav .level_2 li a,.mainnav .level_2 li strong{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: #5d8fae;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.1rem;padding: 5px 0;text-transform: none}@media screen and (max-width: 1280px){.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 #5d8fae;-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: #5d8fae;border-radius: 2px;background-color: #fff;border: 1px solid #5d8fae;-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: #5d8fae;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}.footernav a:hover{color: #5d8fae}.footernav strong{color: #5d8fae;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: #5d8fae;color: #fff}.jump-nav ul li a.active{background-color: #5d8fae;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: 699px){.mobilenav,.mm-menu{display: block}}.mobilenav i,.mm-menu i{font-size: 1.5rem}.pagination{clear: left;list-style-type: none;font-weight: 300;margin-top: 2rem;padding: .75rem 1rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-between;align-items: stretch;align-content: stretch;width: calc(100% - 1rem)}.pagination .pages,.pagination .switcher{flex: 1 0 auto}.pagination .switcher{display: flex;align-items: center;justify-content: flex-end}.pagination ul{clear: both;float: right;margin: 0;padding: 0;-webkit-padding-start: 0}.pagination li{float: left;display: inline-block;list-style-type: none}.pagination p{font-weight: 300;margin: 0}.pagination a,.pagination .active{color: #5d8fae;text-decoration: none;padding: 1px 8px}.pagination a:hover{background-color: #5d8fae;color: #fff}.pagination .active{background-color: #5d8fae;color: #fff}.routenav{margin-bottom: 2rem}.routenav li{display: inline-block;margin-right: 1.5rem}@media screen and (max-width: 480px){.routenav li{display: block;margin-right: 0;margin-bottom: .5rem}}.routenav li.last{margin-right: 0}.routenav a{display: inline-block;padding: .5rem 1rem;color: #fff;background-color: #5d8fae;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: #5d8fae;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: #15314a;color: #fff}.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: #5d8fae;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.1rem}}@media screen and (max-width: 480px) and screen and (max-width: 1280px){.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: #5d8fae;-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.1rem}@media screen and (max-width: 1280px){.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: #a1bed0}.ce_accordion.appearance-layout-1 .toggler.active{background-color: #5d8fae}.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 #487490;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: #5d8fae}.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: #5d8fae;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: #5d8fae}.ce_accordion.appearance-layout-2 .toggler.active{color: #5d8fae}.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: #5d8fae}.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: #5d8fae;font-size: 1.1rem}@media screen and (max-width: 1280px){.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: .4rem 1rem;background-color: #f5f5f5;border: 1px solid #d2d2d2;border-radius: 3px;box-sizing: border-box;margin-bottom: 0.5rem}.col_grid_1{width: calc((100% - 3rem * 2) / 12*1)}.col_grid_2{width: calc((100% - 3rem * 2) / 12*2)}.col_grid_3{width: calc((100% - 3rem * 2) / 12*3)}.col_grid_4{width: calc((100% - 3rem * 2) / 12*4)}.col_grid_5{width: calc((100% - 3rem * 2) / 12*5)}.col_grid_6{width: calc((100% - 3rem * 2) / 12*6)}.col_grid_7{width: calc((100% - 3rem * 2) / 12*7)}.col_grid_8{width: calc((100% - 3rem * 2) / 12*8)}.col_grid_9{width: calc((100% - 3rem * 2) / 12*9)}.col_grid_10{width: calc((100% - 3rem * 2) / 12*10)}.col_grid_11{width: calc((100% - 3rem * 2) / 12*11)}.col_grid_12{width: 100%;margin-right: 0}.col_width_5{width: 20%}.col_grid_6-no-gap{width: 50%}.col_grid_3-no-gap{box-sizing: border-box;width: 25%}.ce_columnStart{display: flex;flex-direction: row;flex-wrap: wrap;justify-content: space-between;align-items: stretch;align-content: stretch}.ce_columnStart > *{overflow: hidden}.ce_columnStart.cols-2.col-1-6 > *:nth-child(2n+1){width: calc((100% - 3rem * 2) / 12*6)}.ce_columnStart.cols-2.col-2-6 > *:nth-child(2n+2){width: calc((100% - 3rem * 2) / 12*6)}.ce_columnStart.cols-2.col-1-6.column-gap-none > *:nth-child(2n+1){width: 50%}.ce_columnStart.cols-2.col-2-6.column-gap-none > *:nth-child(2n+2){width: 50%}.ce_columnStart.cols-2.col-1-4 > *:nth-child(2n+1){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-2.col-2-8 > *:nth-child(2n+2){width: calc((100% - 3rem * 2) / 12*8)}.ce_columnStart.cols-2.col-1-8 > *:nth-child(2n+1){width: calc((100% - 3rem * 2) / 12*8)}.ce_columnStart.cols-2.col-2-4 > *:nth-child(2n+2){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-2.col-1-9 > *:nth-child(2n+1){width: calc((100% - 3rem * 2) / 12*9)}.ce_columnStart.cols-2.col-2-3 > *:nth-child(2n+2){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-2.col-1-3 > *:nth-child(2n+1){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-2.col-2-9 > *:nth-child(2n+2){width: calc((100% - 3rem * 2) / 12*9)}.ce_columnStart.cols-3.col-1-3 > *:nth-child(3n+1){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-3.col-2-3 > *:nth-child(3n+2){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-3.col-3-6 > *:nth-child(3n+3){width: calc((100% - 3rem * 2) / 12*6)}.ce_columnStart.cols-3.col-1-4 > *:nth-child(3n+1){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-3.col-2-4 > *:nth-child(3n+2){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-3.col-3-4 > *:nth-child(3n+3){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-4.col-1-3 > *:nth-child(4n+1){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-4.col-2-3 > *:nth-child(4n+2){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-4.col-3-3 > *:nth-child(4n+3){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-4.col-4-3 > *:nth-child(4n+4){width: calc((100% - 3rem * 2) / 12*3)}.ce_columnStart.cols-4.column-gap-none.col-1-3 > *:nth-child(4n+1){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.column-gap-none.col-2-3 > *:nth-child(4n+2){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.column-gap-none.col-3-3 > *:nth-child(4n+3){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.column-gap-none.col-4-3 > *:nth-child(4n+4){box-sizing: border-box;width: 25%}.ce_columnStart.cols-4.col-1-2 > *:nth-child(4n+1){width: calc((100% - 3rem * 2) / 12*2)}.ce_columnStart.cols-4.col-2-4 > *:nth-child(4n+2){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-4.col-3-2 > *:nth-child(4n+3){width: calc((100% - 3rem * 2) / 12*2)}.ce_columnStart.cols-4.col-4-4 > *:nth-child(4n+4){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-4.col-1-4 > *:nth-child(4n+1){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-4.col-2-2 > *:nth-child(4n+2){width: calc((100% - 3rem * 2) / 12*2)}.ce_columnStart.cols-4.col-3-4 > *:nth-child(4n+3){width: calc((100% - 3rem * 2) / 12*4)}.ce_columnStart.cols-4.col-4-2 > *:nth-child(4n+4){width: calc((100% - 3rem * 2) / 12*2)}.ce_columnStart.cols-2.col-1-2_5 > *:nth-child(2n + 1){width: 40%}.ce_columnStart.cols-2.col-2-3_5 > *:nth-child(2n + 2){width: 60%}.ce_columnStart.cols-5{display: flex;flex-wrap: wrap;justify-content: center}.ce_columnStart.cols-5 > *{display: flex;flex-basis: calc(960px * 999 - 100% * 999);flex: 1 1 340px}.ce_columnStart.cols-5.col-1-1_5 > *:nth-child(5n + 1){width: 20%}.ce_columnStart.cols-5.col-2-1_5 > *:nth-child(5n + 2){width: 20%}.ce_columnStart.cols-5.col-3-1_5 > *:nth-child(5n + 3){width: 20%}.ce_columnStart.cols-5.col-4-1_5 > *:nth-child(5n + 4){width: 20%}.ce_columnStart.cols-5.col-5-1_5 > *:nth-child(5n + 5){width: 20%}.ce_columnStart .col_margin{margin-bottom: 2rem}@media screen and (max-width: 699px){.ce_columnStart .col_grid_4{width: calc((100% - 1rem * 2) / 12*4)}.ce_columnStart .col_grid_6{width: calc((100% - 1rem * 2) / 12*6)}.ce_columnStart.cols-2.col-1-6 > *:nth-child(2n+1){width: calc((100% - 1rem * 2) / 12*6)}.ce_columnStart.cols-2.col-2-6 > *:nth-child(2n+2){width: calc((100% - 1rem * 2) / 12*6)}.ce_columnStart.cols-m-1 > *{width: 100% !important;margin-right: 0 !important}.ce_columnStart.cols-m-2.col-m-1-6 > *:nth-child(2n + 1){width: calc((100% - 1rem * 2) / 12*6)}.ce_columnStart.cols-m-2.col-m-1-6.column-gap-none > *:nth-child(2n + 1){width: 50%}.ce_columnStart.cols-m-2.col-m-2-6 > *:nth-child(2n + 2){width: calc((100% - 1rem * 2) / 12*6)}.ce_columnStart.cols-m-2.col-m-2-6.column-gap-none > *:nth-child(2n + 2){width: 50%}.ce_columnStart.cols-m-3 > *{margin-bottom: 2rem}.ce_columnStart.cols-m-3.col-m-1-4 > *:nth-child(3n + 1){width: calc((100% - 1rem * 2) / 12*4)}.ce_columnStart.cols-m-3.col-m-2-4 > *:nth-child(3n + 2){width: calc((100% - 1rem * 2) / 12*4)}.ce_columnStart.cols-m-3.col-m-3-4 > *:nth-child(3n + 3){width: calc((100% - 1rem * 2) / 12*4)}}@media screen and (max-width: 699px){.ce_columnStart > *{width: 100% !important}.ce_columnStart.cols-s-1 > *{margin-bottom: 2rem}.ce_columnStart.cols-s-1.col-s-1-12 > *:nth-child(2n + 1){width: 100%;margin-top: 0}.ce_columnStart.cols-s-1.col-s-1-12 > *:nth-child(2n + 2){width: 100%}.ce_columnStart.cols-s-3 > *{margin-bottom: 2rem}.ce_columnStart.cols-s-3.col-s-1-12 > *:nth-child(2n + 1){width: 100%;margin-top: 0}.ce_columnStart.cols-s-3.col-s-1-12 > *:nth-child(2n + 2){width: 100%}}.ce_placeholder{box-sizing: border-box;padding: 1.5rem;margin-bottom: 1.5rem}@media screen and (max-width: 699px){.ce_placeholder{margin-bottom: 1rem}}.ce_placeholder .headline{margin-bottom: 1rem}.ce_placeholder .image_container{margin-bottom: 1rem}.ce_placeholder p{margin-bottom: 0}.ce_placeholder.appearance-layout-1{border: 2px dashed #e6007e}.ce_placeholder.appearance-layout-2{color: white;background-color: #e6007e}.ce_placeholder.appearance-layout-2 p{color: white}.ce_placeholder.appearance-layout-3{border: 2px solid #e6007e}.ce_button{margin-bottom: 1.5rem}.ce_button.alignment-centered{text-align: center}.ce_button.alignment-right{text-align: right}.ce_button .rounded{border-radius: 0.5rem}.ce_button .round{border-radius: 2rem}.ce_button .shadow{margin-bottom: 4px;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.ce_button img.icon{display: inline-block;width: auto;height: 1.25rem;margin-right: 0.5rem;vertical-align: middle}.ce_button .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: #5d8fae;font-size: 1.1rem;font-weight: 600;border: 2px solid #5d8fae;padding: .75rem 3.5rem;text-transform: uppercase;line-height: 150%}@media screen and (max-width: 1280px){.ce_button .btn{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_button .btn{font-size: 0.9rem}}@media screen and (max-width: 1280px){.ce_button .btn{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_button .btn{font-size: 0.9rem}}.ce_button .btn:hover{color: #5d8fae;background-color: #fff}.ce_button .btn.width_1{border: 1px solid #5d8fae !important}.ce_button .btn.width_2{border: 2px solid #5d8fae !important}.ce_button .btn.width_3{border: 3px solid #5d8fae !important}.ce_button .btn.width_4{border: 4px solid #5d8fae !important}.ce_button .btn.width_5{border: 5px solid #5d8fae !important}.ce_downloads ul{list-style-type: none}.download-element.border{box-sizing: padding-box;color: #5d8fae;background-color: #fff}.download-element.border a{transition: 0s}.download-element.border:hover{color: #fff;background-color: #5d8fae}.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 #5d8fae}.download-element.width_2{padding: 14px 30px;border: 2px solid #5d8fae}.download-element.width_3{padding: 13px 29px;border: 3px solid #5d8fae}.download-element.width_4{padding: 12px 28px;border: 4px solid #5d8fae}.download-element.width_5{padding: 11px 27px;border: 5px solid #5d8fae}.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.1rem;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: 1280px){.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: #5d8fae;border: 1px solid #5d8fae;-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: #15314a}.ce_text_left .inside,.ce_text_right .inside{display: flex;flex-wrap: wrap;flex-basis: calc(960px * 999 - 100% * 999);margin: -1rem}.ce_text_left .text,.ce_text_right .text{flex: 1 1 280px;margin: 1rem 1rem}.ce_text_left ul,.ce_text_right ul{list-style-type: square;margin-bottom: 1.5rem;padding: .5rem 0 0 2.25rem}.ce_text_left ul li,.ce_text_right ul li{margin-bottom: 0.5rem;line-height: 1.4}.ce_text_left .image_container,.ce_text_right .image_container{flex: 1 1 280px;margin: 1rem 1rem}.ce_text_left .image_container img,.ce_text_right .image_container img{width: 100%;height: auto}.tile-list,.tile-wrapper > .inside{display: flex;flex-wrap: wrap;justify-content: center;margin-left: -1%;margin-right: -1%}@media screen and (max-width: 699px){.tile-list,.tile-wrapper > .inside{margin-left: 0;margin-right: 0}}.tile-list .tile,.tile-wrapper > .inside .tile{flex-basis: calc(960px * 999 - 100% * 999);margin: 4px 1% 30px 1%;padding: 0;border: 1px solid #d2d2d2;background-color: #fff;-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35)}.tile-list .tile .content,.tile-wrapper > .inside .tile .content{display: flex;flex-wrap: wrap;flex-basis: calc(960px * 999 - 100% * 999)}.tile-list .tile .content > *,.tile-wrapper > .inside .tile .content > *{flex: 1 1 280px}@media screen and (max-width: 699px){.tile-list .tile,.tile-wrapper > .inside .tile{width: calc(100% - 8px);margin: 4px 4px 2rem}}.tile-list .tile .image_container,.tile-wrapper > .inside .tile .image_container{border: 1px solid #fff;overflow: hidden}.tile-list .tile .image_container img,.tile-wrapper > .inside .tile .image_container img{width: 100%;height: 100%;object-fit: cover;display: block;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.tile-list .tile .textbox,.tile-wrapper > .inside .tile .textbox{align-self: center;padding: 1em 2em;min-height: 200px}@media screen and (max-width: 1280px){.tile-list .tile .textbox,.tile-wrapper > .inside .tile .textbox{min-height: 250px}}@media screen and (max-width: 1280px){.tile-list .tile .textbox,.tile-wrapper > .inside .tile .textbox{min-height: 200px}}@media screen and (max-width: 699px){.tile-list .tile .textbox,.tile-wrapper > .inside .tile .textbox{min-height: auto}}.tile-list .tile .textbox .teaser,.tile-wrapper > .inside .tile .textbox .teaser{margin-bottom: 5px}.tile-list .tile .textbox .teaser p,.tile-wrapper > .inside .tile .textbox .teaser p{margin-bottom: 0}.tile-list .tile .textbox ul,.tile-wrapper > .inside .tile .textbox ul{padding-left: 1.75rem}.tile-list .tile h4,.tile-wrapper > .inside .tile h4{margin-top: 0;margin-bottom: 1rem;line-height: 1.2;color: #222;text-transform: none;hyphens: auto;text-align: center}.tile-list .tile p,.tile-wrapper > .inside .tile p{text-align: center;font-size: 1.1rem;line-height: 1.6}@media screen and (max-width: 1280px){.tile-list .tile p,.tile-wrapper > .inside .tile p{font-size: 1rem}}@media screen and (max-width: 1024px){.tile-list .tile p,.tile-wrapper > .inside .tile p{font-size: 0.9rem}}.tile-list .tile p.info,.tile-wrapper > .inside .tile p.info{font-size: 0.75rem;color: #505050;margin-bottom: 15px}.tile-list .tile p.more,.tile-wrapper > .inside .tile p.more{margin-top: 20px;margin-bottom: 0;color: #5d8fae}.tile-list .tile .button-container,.tile-wrapper > .inside .tile .button-container{margin-top: 20px;text-align: center}.tile-list .tile:hover,.tile-wrapper > .inside .tile:hover{color: rgba(0,145,61,0.65);-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 0 rgba(0,0,0,0);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.tile-list .tile:hover h4,.tile-wrapper > .inside .tile:hover h4{color: rgba(0,145,61,0.65)}.tile-list .tile:hover img,.tile-wrapper > .inside .tile:hover img{transform: scale(1.1);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.tile-list .tile:hover p.more,.tile-wrapper > .inside .tile:hover p.more{color: rgba(0,145,61,0.65)}.tile-list .pagination,.tile-wrapper > .inside .pagination{margin-left: 1%;margin-right: 1%}.ce_quotation blockquote{margin-bottom: 0.5rem}.ce_quotation blockquote:before{display: inline;margin-right: 0.125rem;content: "\f10d";font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_quotation blockquote:after{display: inline;margin-left: 0.25rem;content: "\f10e";font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_quotation blockquote p{display: inline;margin-bottom: 0;font-style: italic;font-weight: 300}.ce_quotation p.author{font-weight: 300}.ce_link_box{display: flex;-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 0 rgba(0,0,0,0);margin-top: 4px;margin-bottom: 4px}@media screen and (max-width: 699px){.ce_link_box{margin-bottom: 1.5rem}}.ce_link_box .inside{flex: 1 1 auto;position: relative}.ce_link_box .image{position: relative}.ce_link_box .layer{position: absolute;top: 0;left: 0;display: flex;align-items: center;justify-content: center;width: 100%;height: 100%;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}.ce_link_box img.icon{width: auto;height: 25%;transform: scale(0);opacity: 0;-webkit-transition: all 100ms ease-in-out;-moz-transition: all 100ms ease-in-out;-ms-transition: all 100ms ease-in-out;-o-transition: all 100ms ease-in-out;transition: all 100ms ease-in-out}.ce_link_box .label{position: absolute;z-index: 10;top: 2rem;right: -2.4rem;min-width: 11rem;padding: 0.2rem;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);text-align: center;color: white;line-height: 1.5;font-size: 0.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.1rem;font-weight: 700}@media screen and (max-width: 1280px){.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: #5d8fae}.ce_link_box.appearance-hover-1 .layer{z-index: 2;display: flex;align-items: center;justify-content: center;opacity: 0;background: #5d8fae;-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: #5d8fae}.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{padding: .5rem 0;list-style-type: none}.ce_feature_box li::before{font-family: 'Font Awesome 5 Free';font-weight: 700}.ce_feature_box .iconbox img{width: auto}.ce_feature_box.appearance-layout-1{box-sizing: border-box;border: 1px solid #d2d2d2}.ce_feature_box.appearance-layout-1 .head{padding: 2rem}.ce_feature_box.appearance-layout-1 .headline h1,.ce_feature_box.appearance-layout-1 .headline h2,.ce_feature_box.appearance-layout-1 .headline h3{margin: 1.5rem 0 0;color: #5d8fae;font-weight: 400}.ce_feature_box.appearance-layout-1 .subheadline{margin: .5rem 0 0;color: #5d8fae}.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: #5d8fae;font-size: 1.1rem;font-weight: 700}@media screen and (max-width: 1280px){.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: #5d8fae;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: #5d8fae;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: #5d8fae;font-size: 1.1rem;font-weight: 700}@media screen and (max-width: 1280px){.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: #5d8fae}.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: #5d8fae;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.1rem}@media screen and (max-width: 1280px){.tab_inside li{font-size: 1rem}}@media screen and (max-width: 1024px){.tab_inside li{font-size: 0.9rem}}.ce_teaser_box{display: flex;margin-bottom: 1.5rem}.ce_teaser_box.shadow{-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box.shadow:hover{-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box.zoom img{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.ce_teaser_box.zoom.zoom:hover img{-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;transform: scale(1.17)}.ce_teaser_box .inside{flex: 1 1 auto;padding-bottom: 2rem;overflow: hidden;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: #5d8fae;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.1rem;font-weight: 700;margin-bottom: 0.5rem}@media screen and (max-width: 1280px){.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_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: #5d8fae}.ce_image_advanced.width_1 img{width: calc(100% - 2px);border: 1px solid #5d8fae}.ce_image_advanced.width_2 img{width: calc(100% - 4px);border: 2px solid #5d8fae}.ce_image_advanced.width_3 img{width: calc(100% - 6px);border: 3px solid #5d8fae}.ce_image_advanced.width_4 img{width: calc(100% - 8px);border: 4px solid #5d8fae}.ce_image_advanced.width_5 img{width: calc(100% - 10px);border: 5px solid #5d8fae}.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}}.ce_facts .text{line-height: 1.2;font-size: 1.1rem;font-weight: 700}@media screen and (max-width: 1280px){.ce_facts .text{font-size: 1rem}}@media screen and (max-width: 1024px){.ce_facts .text{font-size: 0.9rem}}.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: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.xl-parallax .mod_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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: #5d8fae;-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: #5d8fae}.mod_search .highlight{color: #5d8fae;background-color: transparent;font-weight: 400}.mod_search p.url{color: #5d8fae;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: #5d8fae;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: #5d8fae;border: 0;background-color: transparent;font-family: 'Font Awesome 5 Free';font-weight: 700;font-size: 1.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: 1280px){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: #5d8fae;-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}.layout_list .date,.layout_full .date,.layout_simple .date{display: inline-block;padding: .25rem .5rem;margin-bottom: .5rem;color: #505050;font-size: 0.75rem}.layout_latest{margin-bottom: 1rem}.layout_latest .inside{background-color: #fbfbfb;border: 1px solid #ddd;height: 100%;align-content: start}.layout_latest .textbox{padding: 1rem 1.25rem}.layout_latest .info{font-size: 0.9rem;color: #888;margin-bottom: 0.75rem}.layout_latest .headline a{color: inherit}.layout_latest .linkbox{margin-top: auto;padding: 0 1.25rem 1rem}@media screen and (max-width: 1024px){.layout_latest.last{margin-bottom: 0}}@media screen and (min-width: calc(800px + 1px)){.mod_newslist.tile-wrapper .inside{display: flex;flex-wrap: wrap;justify-content: space-between}.mod_newslist.tile-wrapper .layout_latest{flex: 1 1 auto;width: 33.33%;padding: 0 1vw;box-sizing: border-box}}.layout_list{flex: 0 1 auto;width: calc(50% - 2rem);margin-bottom: 4rem;padding-top: 2rem;border-top: 1px solid #505050}@media screen and (max-width: 800px){.layout_list{width: 100%;margin-bottom: 4rem}}.layout_list .head{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-items: center;align-content: stretch;text-align: center;color: #505050}.layout_list .date{display: inline-block;padding: .25rem .5rem;background-color: rgba(255,255,255,0.9);margin-bottom: .5rem;color: #222;font-size: 0.75rem}.layout_list .headline{margin-top: 1rem;font-family: Poppins;text-transform: none}.layout_list .teaser p{margin-bottom: 0}.layout_list p.more{margin-top: 1rem}.layout_list p.more a{display: inline-block;margin-top: 0.5rem;padding: .25rem 0;color: #5d8fae;background-color: transparent;border: 1px solid #5d8fae;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out;min-width: 8rem;text-align: center}.layout_list p.more a:hover{color: #fff;background-color: #5d8fae;border: 1px solid #5d8fae;-webkit-transition: all 250ms ease-in-out;-moz-transition: all 250ms ease-in-out;-ms-transition: all 250ms ease-in-out;-o-transition: all 250ms ease-in-out;transition: all 250ms ease-in-out}.layout_list .foot{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-between;align-items: stretch;align-content: stretch}.layout_list .author,.layout_list .sharebuttons{flex: 1 1 auto}.layout_list .author{color: #d2d2d2;align-self: center}@media screen and (max-width: 699px){.layout_list .author{font-size: 1.1rem}}@media screen and (max-width: 699px) and screen and (max-width: 1280px){.layout_list .author{font-size: 1rem}}@media screen and (max-width: 699px) and screen and (max-width: 1024px){.layout_list .author{font-size: 0.9rem}}.layout_list .sharebuttons ul{text-align: right}.layout_list .sharebuttons > ul.theme > li{float: none;display: inline-block}.news_column{display: flex;display: -webkit-flex;flex-wrap: nowrap;flex-direction: column;justify-content: flex-start;align-content: flex-start}.news_column .layout_column{position: relative;padding-top: 3rem;padding-bottom: 3rem;border-top: 1px solid #fff;border-bottom: 1px solid #d2d2d2}@media screen and (max-width: 1024px){.news_column .layout_column{padding-bottom: 0;border-top: 0px solid #fff;border-bottom: 0px solid #d2d2d2}}.news_column .layout_column .box{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-items: stretch;align-content: stretch}@media screen and (max-width: 1024px){.news_column .layout_column .box{flex-wrap: wrap;flex-direction: column}}.news_column .layout_column .lft{flex: 0 0 auto;width: 4rem;margin-right: 2rem;padding-right: 1.5rem;border-right: 1px solid #d2d2d2}@media screen and (max-width: 1024px){.news_column .layout_column .lft{width: 100%;margin-right: 0;padding-right: 0;border-right: 0px solid #d2d2d2;margin-bottom: 1rem;padding-bottom: 1rem;border-bottom: 1px solid #d2d2d2}}.news_column .layout_column .mdl{flex: 1 1 auto;margin-right: 1rem}@media screen and (max-width: 1024px){.news_column .layout_column .mdl{width: 100%;margin-right: 0}}.news_column .layout_column .rght{flex: 0 0 auto;width: 16rem;margin-right: 1rem;display: flex;flex-wrap: wrap;align-items: center}@media screen and (max-width: 1024px){.news_column .layout_column .rght{flex: 1 0 auto;margin-top: 1rem;flex-direction: column;align-items: flex-start;width: 100%;margin-right: 0}}.news_column .layout_column .headline h2{margin-bottom: 1rem}.news_column .layout_column .teaser{width: 80%}.news_column .layout_column .teaser p{margin-bottom: 0}@media screen and (max-width: 1024px){.news_column .layout_column .image_container{width: 100%}}@media screen and (max-width: 1024px){.news_column .layout_column img{width: 100%;height: auto}}.news_column .layout_column figcaption{margin-top: 0.5rem}.news_column .layout_column .first{border-top: 0;padding-top: 0}.news_column .blog .teaser{clear: both}.news_column time .date{text-align: center}.news_column time .year{color: #d2d2d2}.news_column time .day{margin: 0;padding: 0;text-align: center;font-size: 3rem;font-weight: 300;color: #d2d2d2}@media screen and (max-width: 1024px){.news_column time .day{text-align: left}}.news_column time .month{color: #d2d2d2;text-align: center}@media screen and (max-width: 1024px){.news_column time .month{text-align: left}}.mod_newsreader .layout_full .ce_image{margin-bottom: 1.5rem}.mod_newsreader .layout_full .subheadline{margin-bottom: 2rem}.mod_newsreader .layout_full h1{color: #000;font-size: 2.5rem;font-weight: 600;font-family: Poppins;color: #222;margin-bottom: 1rem;text-align: left}@media screen and (max-width: 1366px){.mod_newsreader .layout_full h1{font-size: 2.25rem}}@media screen and (max-width: 1024px){.mod_newsreader .layout_full h1{font-size: 3rem}}@media screen and (max-width: 699px){.mod_newsreader .layout_full h1{font-size: 1.8rem}}.mod_newsreader .info_container{color: #505050;border-bottom: 1px solid #f5f5f5;padding-bottom: 0.15rem;margin-bottom: 1rem;font-weight: 300}.mod_newsreader .news_location,.mod_newsreader .date{display: inline-block}.mod_newsreader .date{max-width: 14rem;padding-top: 1rem;padding-left: 0;font-size: 1.1rem}@media screen and (max-width: 1280px){.mod_newsreader .date{font-size: 1rem}}@media screen and (max-width: 1024px){.mod_newsreader .date{font-size: 0.9rem}}.mod_newsreader img{width: 100%;height: auto}.mod_newsreader figcaption{background-color: #f5f5f5;margin-top: 0}.mod_newsreader figcaption span{padding: 1rem;display: block}.mod_newsreader .ce_text{margin-top: 2rem}.mod_newsreader p.back{margin-bottom: 1.25rem}.mod_newsmenu a{list-height: 1.5}.mod_newsmenu .year{padding-top: 1rem;border-top: 1px solid #505050}.mod_newsmenu ul.level_1{margin-top: .5rem}.mod_newsmenu ul.level_2{margin-top: 1rem;padding-block: 1rem}.mod_newsmenu ul.level_2 li{margin-bottom: .75rem}.mod_newsmenu ul.level_2 li a,.mod_newsmenu ul.level_2 li strong{padding-top: 0;border-top: 0px solid #505050}@media screen and (max-width: 800px){.mod_newsarchive{margin-top: 2rem;border-top: 1px solid #505050;padding-top: 2rem}}.mod_newsarchive .layout_simple{margin-bottom: .75rem}.mod_newslist{display: flex;display: -webkit-flex;align-content: flex-start;align-items: auto;flex-direction: row;flex-wrap: wrap;justify-content: space-between}.mod_newslist.teaser{flex-wrap: nowrap;justify-content: flex-start}@media screen and (max-width: 699px){.mod_newslist{flex-direction: column}}@media screen and (max-width: 699px){.mod_newslist{width: 100%;margin-right: 0}}.mod_newslist.slick-columns{display: flex;display: -webkit-flex;flex-wrap: nowrap;flex-direction: column;justify-content: flex-start;align-content: flex-start}.mod_newslist.slick-columns .layout_column{position: relative;padding-top: 3rem;padding-bottom: 3rem;border-top: 1px solid #fff;border-bottom: 1px solid #d2d2d2}.mod_newslist.slick-columns .layout_column .box{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: flex-start;align-items: stretch;align-content: stretch}.mod_newslist.slick-columns .layout_column .lft{flex: 0 0 auto;width: 4rem;margin-right: 2rem;padding-right: 1.5rem;border-right: 1px solid #d2d2d2}.mod_newslist.slick-columns .layout_column .mdl{flex: 0 0 auto;width: 16rem;margin-right: 2rem;display: flex;flex-wrap: wrap;align-items: center}.mod_newslist.slick-columns .layout_column .rght{flex: 1 1 auto}.mod_newslist.slick-columns .layout_column .headline h2{margin-bottom: 1rem}.mod_newslist.slick-columns .layout_column .teaser{width: 80%}.mod_newslist.slick-columns .layout_column .teaser p{margin-bottom: 0}.mod_newslist.slick-columns .layout_column .first{border-top: 0;padding-top: 0}.mod_newslist.slick-columns a{color: #5d8fae}.mod_newslist.slick-columns a:hover{color: #505050}.mod_newslist.slick-columns .blog .teaser{clear: both}.mod_newslist.slick-columns time .date{text-align: center}.mod_newslist.slick-columns time .year{color: #777}.mod_newslist.slick-columns time .day{margin: 0;padding: 0;text-align: center;font-size: 3rem;font-weight: 300;color: #777}.mod_newslist.slick-columns time .month{color: #777;text-align: center}@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: #5d8fae;opacity: .25;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale}.slick-dots li.slick-active button:before{color: #5d8fae;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: #5d8fae;border: 1px double #4d7d9a;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"}.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: Poppins}.font_alternative{font-family: Poppins}body{color: #fff}body{background-color: #16709c}.font_global{font-size: 1.1rem}@media screen and (max-width: 1280px){.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: #15314a}.bg-7{background-color: #c4c9cc}.bg-9{background-color: #f6f6f6}.bg-8{background-color: #16709c}.bg-6{background-color: #202020}.bg-1{background-color: #5d8fae}.bg-2{background-color: #fff}.bg-3{background-color: #000}.bg-4{background-color: #e4ecf0}.fc-5{color: #15314a}.fc-5 .headline{color: #15314a}.fc-5 a{color: #15314a}.fc-7{color: #c4c9cc}.fc-7 .headline{color: #c4c9cc}.fc-7 a{color: #c4c9cc}.fc-9{color: #f6f6f6}.fc-9 .headline{color: #f6f6f6}.fc-9 a{color: #f6f6f6}.fc-8{color: #16709c}.fc-8 .headline{color: #16709c}.fc-8 a{color: #16709c}.fc-6{color: #202020}.fc-6 .headline{color: #202020}.fc-6 a{color: #202020}.fc-1{color: #5d8fae}.fc-1 .headline{color: #5d8fae}.fc-1 a{color: #5d8fae}.fc-2{color: #fff}.fc-2 .headline{color: #fff}.fc-2 a{color: #fff}.fc-3{color: #000}.fc-3 .headline{color: #000}.fc-3 a{color: #000}.fc-4{color: #e4ecf0}.fc-4 .headline{color: #e4ecf0}.fc-4 a{color: #e4ecf0}.hlc-5 .headline,.hlc-5 .headline > *{color: #15314a}.hlc-7 .headline,.hlc-7 .headline > *{color: #c4c9cc}.hlc-9 .headline,.hlc-9 .headline > *{color: #f6f6f6}.hlc-8 .headline,.hlc-8 .headline > *{color: #16709c}.hlc-6 .headline,.hlc-6 .headline > *{color: #202020}.hlc-1 .headline,.hlc-1 .headline > *{color: #5d8fae}.hlc-2 .headline,.hlc-2 .headline > *{color: #fff}.hlc-3 .headline,.hlc-3 .headline > *{color: #000}.hlc-4 .headline,.hlc-4 .headline > *{color: #e4ecf0}.parallax .bg-5{background-color: rgba(21,49,74,0.85)}.parallax .bg-7{background-color: rgba(196,201,204,0.85)}.parallax .bg-9{background-color: rgba(246,246,246,0.85)}.parallax .bg-8{background-color: rgba(22,112,156,0.85)}.parallax .bg-6{background-color: rgba(32,32,32,0.85)}.parallax .bg-1{background-color: rgba(93,143,174,0.85)}.parallax .bg-2{background-color: rgba(255,255,255,0.85)}.parallax .bg-3{background-color: rgba(0,0,0,0.85)}.parallax .bg-4{background-color: rgba(228,236,240,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 !important}}@media screen and (max-width: 800px){.mod_article{margin-bottom: 1.5rem !important}}.btn-default,.ce_button.default .btn{color: #fff;background-color: #5d8fae;font-size: 1.1rem;font-weight: 600;border: 2px solid #5d8fae;padding: .75rem 3.5rem;text-transform: uppercase;line-height: 150%}@media screen and (max-width: 1280px){.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: #5d8fae;background-color: #fff}.btn-secondary,.ce_button.secondary .btn{color: #000;background-color: #fff;border: 2px solid #fff}.btn-secondary:hover,.ce_button.secondary .btn:hover{color: #fff;background-color: #5d8fae;border: 1px solid #5d8fae}.btn-cta,.ce_button.cta .btn{color: #fff;background-color: #16709c;border: 2px solid #16709c}.btn-cta:hover,.ce_button.cta .btn:hover{color: #5d8fae;background-color: #fff}.btn-cta-big,.ce_button.cta-big .btn{color: #fff;background-color: #16709c;border: 2px solid #16709c;padding: 1.125rem 8rem !important}.btn-cta-big:hover,.ce_button.cta-big .btn:hover{color: #5d8fae;background-color: #fff}.btn-inverted,.ce_button.inverted .btn{color: #5d8fae;border: 2px solid #5d8fae;background: transparent}.btn-inverted:hover,.ce_button.inverted .btn:hover{color: #5d8fae;background-color: #5d8fae;border: 2px solid #5d8fae}div[class*="ce_"].text-large{font-size: 1.4rem}@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: #16709c;border: 2px solid #16709c}div[class*="ce_"].cta .linkbox a:hover{color: #5d8fae;background-color: #fff}div[class*="ce_"].button-inverted .linkbox a{color: #5d8fae;border: 2px solid #5d8fae;background: transparent}div[class*="ce_"].button-inverted .linkbox a:hover{color: #5d8fae;background-color: #5d8fae;border: 2px solid #5d8fae}div[class*="ce_"].button-secondary .linkbox a{color: #000;background-color: #fff;border: 2px solid #fff}div[class*="ce_"].button-secondary .linkbox a:hover{color: #fff;background-color: #5d8fae;border: 1px solid #5d8fae}div[class*="ce_"].dark-subheadline .subheadline{background-color: #15314a;color: #fff;padding: 1rem 1rem}div[class*="ce_"].green-subheadline .subheadline{background-color: #16709c;color: #fff}div[class*="ce_"].midgray-subheadline .subheadline{background-color: #4f5153;color: #fff}input.text,textarea,select,input.captcha{color: #000;font-size: 1.1rem;font-weight: 600;border: 1px solid #000;padding: 1rem 1.25rem;line-height: 150%;border-radius: 3px}@media screen and (max-width: 1280px){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}}textarea{resize: none}.headline-size-l{font-size: 1.8rem;font-weight: 600;font-family: Poppins}@media screen and (max-width: 1366px){.headline-size-l{font-size: 2rem}}@media screen and (max-width: 1024px){.headline-size-l{font-size: 1.6rem}}@media screen and (max-width: 480px){.headline-size-l{font-size: 1.4rem}}.headline-size-m{font-size: 1.6rem;font-weight: 700;line-height: 125%;font-family: Poppins}@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{font-size: 1.4rem;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: #000;font-size: 2.5rem;font-weight: 600;font-family: Poppins}@media screen and (max-width: 1366px){.headline-size-xl{font-size: 2.25rem}}@media screen and (max-width: 1024px){.headline-size-xl{font-size: 3rem}}@media screen and (max-width: 699px){.headline-size-xl{font-size: 1.8rem}}.headline-size-xs{font-size: 1.1rem;font-weight: 600}@media screen and (max-width: 1280px){.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}.ce_paragraph{font-weight: 300;line-height: 150%;margin-bottom: 1rem}.ce_teaser_box.gray{background-color: #15314a}.ce_teaser_box_double.purple .text2{background-color: #202020}.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 !important}}@media screen and (max-width: 800px){.margin-top-large{margin-top: 2rem !important}}@media screen and (max-width: 800px){.margin-top-medium{margin-top: 1.5rem !important}}@media screen and (max-width: 800px){.margin-top-small{margin-top: 1rem !important}}@media screen and (max-width: 800px){.margin-top-x-small{margin-top: 1rem !important}}@media screen and (max-width: 800px){.margin-bottom-xx-large{margin-bottom: 4rem !important}}@media screen and (max-width: 800px){.margin-bottom-large{margin-bottom: 2rem !important}}@media screen and (max-width: 800px){.margin-bottom-medium{margin-bottom: 1.5rem !important}}@media screen and (max-width: 800px){.margin-bottom-small{margin-bottom: 1rem !important}}@media screen and (max-width: 800px){.margin-bottom-x-small{margin-bottom: 1rem !important}}.padding-h-small .article_inside{padding-left: 10% !important;padding-right: 10% !important}.padding-h-small > .inside{padding-left: 10% !important;padding-right: 10% !important}.padding-h-medium .article_inside{padding-left: 15% !important;padding-right: 15% !important}.padding-h-medium > .inside{padding-left: 15% !important;padding-right: 15% !important}.padding-h-large .article_inside{padding-left: 20% !important;padding-right: 20% !important}.padding-h-large > .inside{padding-left: 20% !important;padding-right: 20% !important}.padding-h-x-large .article_inside{padding-left: 25% !important;padding-right: 25% !important}.padding-h-x-large > .inside{padding-left: 25% !important;padding-right: 25% !important}.padding-h-xx-large .article_inside{padding-left: 30% !important;padding-right: 30% !important}.padding-h-xx-large > .inside{padding-left: 30% !important;padding-right: 30% !important}.padding-h-x-small .article_inside{padding-left: 5% !important;padding-right: 5% !important}.padding-h-x-small > .inside{padding-left: 5% !important;padding-right: 5% !important}@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-small .article_inside,.padding-h-small > .inside{padding-left: 1.5rem !important;padding-right: 1.5rem !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: 1024px){.padding-h-x-large .article_inside,.padding-h-x-large > .inside{padding-left: 5% !important;padding-right: 5% !important}}.padding-v-x-small .article_inside{padding-top: 1.5vh !important;padding-bottom: 1.5vh !important}.padding-v-x-small > .inside{padding-top: 1.5vh !important;padding-bottom: 1.5vh !important}.padding-v-x-large .article_inside{padding-top: 15vh !important;padding-bottom: 15vh !important}.padding-v-x-large > .inside{padding-top: 15vh !important;padding-bottom: 15vh !important}.padding-v-xx-large .article_inside{padding-top: 20vh !important;padding-bottom: 20vh !important}.padding-v-xx-large > .inside{padding-top: 20vh !important;padding-bottom: 20vh !important}.padding-v-small .article_inside{padding-top: 3vh !important;padding-bottom: 3vh !important}.padding-v-small > .inside{padding-top: 3vh !important;padding-bottom: 3vh !important}.padding-v-medium .article_inside{padding-top: 2.5vw !important;padding-bottom: 2.5vw !important}.padding-v-medium > .inside{padding-top: 2.5vw !important;padding-bottom: 2.5vw !important}.padding-v-large .article_inside{padding-top: 9vh !important;padding-bottom: 9vh !important}.padding-v-large > .inside{padding-top: 9vh !important;padding-bottom: 9vh !important}@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_xxs{font-size: 0.75rem}.font_l{font-size: 1.6rem}.font_m{font-size: 1.4rem}.font_s{font-size: 1.1rem}.font_xl{font-size: 1.8rem}.font_xxl{font-size: 2.5rem}.font_xs{font-size: 0.9rem}@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: 1280px){.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: 2rem}}@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: 1366px){.font_xxl{font-size: 2.25rem}}@media screen and (max-width: 1024px){.font_xxl{font-size: 3rem}}@media screen and (max-width: 699px){.font_xxl{font-size: 1.8rem}}.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: 'Poppins';font-style: normal;font-weight: 300;src: url('/files/theme/fonts/poppins-v22-latin-300.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: normal;font-weight: 400;src: url('/files/theme/fonts/poppins-v22-latin-regular.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: italic;font-weight: 400;src: url('/files/theme/fonts/poppins-v22-latin-italic.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: normal;font-weight: 500;src: url('/files/theme/fonts/poppins-v22-latin-500.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: normal;font-weight: 600;src: url('/files/theme/fonts/poppins-v22-latin-600.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: normal;font-weight: 700;src: url('/files/theme/fonts/poppins-v22-latin-700.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: normal;font-weight: 800;src: url('/files/theme/fonts/poppins-v22-latin-800.woff2') format('woff2')}@font-face{font-display: swap;font-family: 'Poppins';font-style: normal;font-weight: 900;src: url('/files/theme/fonts/poppins-v22-latin-900.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}.swiper-button-next,.swiper-button-prev{color: #fff;border-radius: 50%;border: 1px #fff;outline: 1px #fff;padding: 1rem}@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}.layout_full .inside{max-width: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){.layout_full .inside{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (2*6rem))}}@media screen and (max-width: 1440px){.layout_full .inside{padding-left: 3rem;padding-right: 3rem}}@media screen and (max-width: 1024px){.layout_full .inside{padding-left: 2rem;padding-right: 2rem}}@media screen and (max-width: 699px){.layout_full .inside{padding-left: 1.5rem;padding-right: 1.5rem}}.layout_full .image_container{margin-bottom: 2rem}.layout_full .teaser{margin-top: 2rem}.layout_full .linkbox{margin-top: 2.25rem;margin-bottom: 1.5rem}.layout_full .back{margin-top: 4rem}.layout_full .back i{margin-right: 1rem}.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: #5d8fae;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}.mod_contact_list .all_items{display: flex;flex-wrap: wrap;justify-content: space-between}@media screen and (min-width: calc(1024px + 1px)){.mod_contact_list .all_items{justify-content: flex-start}}.contact_item{text-align: center}@media screen and (min-width: calc(1024px + 1px)){.contact_item{margin: 2vw 1vw 2vw;width: calc(25% - 2vw)}}@media screen and (max-width: 1024px){.contact_item{margin: 1.5rem 1.25rem 1.5rem;width: calc(50% - 2.5rem)}}@media screen and (max-width: 540px){.contact_item{margin: 1.5rem auto 1.5rem;width: auto}}.contact_item a{color: #15314a}.contact_item .headline{margin-top: 1.5rem}.contact_item .more{margin-top: 2rem}.contact_item .more a{display: inline-block;border-radius: 50%;height: calc(4rem - .5rem);width: 4rem;font-size: 2rem;text-align: center;padding-top: 0.5rem;background-color: #15314a;color: #fff}.contact_item .more a i{display: block;margin: 0.5rem}.contact_item:hover .more{letter-spacing: 3px}.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: #5d8fae;font-size: 1.1rem;font-weight: 600;border: 2px solid #5d8fae;padding: .75rem 3.5rem;text-transform: uppercase;line-height: 150%;font-size: 0.9rem}@media screen and (max-width: 1280px){.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: 1280px){.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: #5d8fae;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: #5d8fae !important;border: 2px solid #5d8fae !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}header .mod_box.iconbar{box-shadow: none;font-weight: 500}header .mod_box.iconbar .icon{margin-bottom: 0}header .mod_box.iconbar .icon i{font-size: 2.5rem;margin-top: -4px}header .mod_box.iconbar .textbox p{margin-bottom: 0}header .mod_box.iconbar a:hover{color: #5182a1}@media screen and (max-width: 1024px){header .mod_box.iconbar .ce_icon_box{margin-bottom: 0}header .mod_box.iconbar .ce_icon_box .icon_link{display: block !important;text-align: center}header .mod_box.iconbar .ce_icon_box .icon{margin-bottom: 1rem}header .mod_box.iconbar .ce_icon_box i{margin-top: 0}header .mod_box.iconbar .ce_icon_box .textbox{padding: 0}}@media screen and (max-width: 699px){header .mod_box.iconbar .ce_icon_box{margin-top: 0.625rem;margin-bottom: 0.625rem;width: 60vw;margin-left: 10vw;margin-right: 10vw}header .mod_box.iconbar .ce_icon_box .icon_link{display: flex !important;min-width: 210px}header .mod_box.iconbar .ce_icon_box .icon{margin-right: 1rem !important}}header .article_inside{display: flex}header .article_inside .ce_intro{max-width: 475px;width: 100%;text-align: left;margin-left: auto;align-self: center}@media screen and (max-width: 800px){header .article_inside{padding-left: 1.5rem !important}}header .ce_columnStart{position: relative}header .headline-size-xl{font-size: 3.25rem}#topnavbar{width: 100%;top: 0;z-index: 4;overflow: visible}#topnavbar .mod_box{overflow: visible}#topnav .mod_layout_article{max-width: 1440px;margin-left: auto;margin-right: auto;padding-left: 0;padding-right: 0;width: 100%;box-sizing: border-box}@media screen and (max-width: 1440px){#topnav .mod_layout_article{padding-left: 6rem;padding-right: 6rem;max-width: calc(1440px + (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}}#topnav .box-top{z-index: 3;transition: all .5s}#topnav .ce_columnStart{position: relative;padding-top: 1rem;padding-bottom: 1rem;transition: 1s}@media screen and (max-width: 699px){#topnav .ce_columnStart{display: flex;flex-direction: column;align-items: center;gap: 1.3rem}#topnav .ce_columnStart > *{width: auto !important}#topnav .ce_columnStart .ce_icon_link{width: 100%;text-align: center}#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}}body.sticky #topnav .ce_image.logo,body.is-sticky #topnav .ce_image.logo,.sticky #topnav .ce_image.logo,.is-sticky #topnav .ce_image.logo{display: none !important}#container{min-height: 60px}.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}.mm-menu .image_container{max-width: 45%;margin: 2rem auto 2rem}.logo a{color: #5d8fae;font-weight: 600}.logo .headline{display: none}.fixed .logo{padding: 0 !important}.mod_article.width-medium .article_inside{max-width: 1265px}footer .mod_layout_article{padding-top: 5rem;padding-bottom: 3rem}@media screen and (max-width: 699px){footer .mod_layout_article{padding-top: 1rem}footer .ce_form{margin-top: 2rem}}footer .fc-2 a{color: #bbb}footer .fc-2 a:hover{color: #fff}footer .mod_customnav div{font-size: 1.4rem;font-weight: 600;margin-bottom: 0.75rem}footer .mod_customnav ul{list-style-type: none;padding-left: 1rem}footer .mod_customnav ul li{margin-bottom: 0.5rem;padding-left: 1rem}footer .mod_customnav ul li:before{content: "○";color: #5d8fae;font-size: 1rem;display: inline-block;margin-left: -1.25rem;margin-right: 14px;top: -2px;position: relative}footer .mod_customnav ul li a{color: #5d8fae;border-bottom: 0}footer .mod_customnav ul li a.active{font-weight: 600}footer .ce_separator hr{border: 0;border-top: 2px solid #171a21}@media screen and (max-width: 699px){.kontakt .mobile-reverse{flex-flow: column-reverse}.kontakt .ce_form{margin-top: 0}}@media screen and (max-width: 699px){#copyright{text-align: center}}#copyright .ce_icon_box_multiple .inside{display: inline-block;padding-top: 1rem;padding-bottom: 1rem}.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}.mainnav{align-self: center;overflow: visible}.mainnav .level_1 > li{font-size: 1.15rem;font-weight: 600}.mainnav .level_1 > li strong{font-weight: 600}.mainnav .level_1 > li > a{position: relative;overflow: visible;padding: .75rem .75rem .75rem;font-weight: 500}.mainnav .level_1 > li > a:hover,.mainnav .level_1 > li > a.trail,.mainnav .level_1 > li > a.active{font-weight: 500}.mainnav .level_1 > li > a.trail,.mainnav .level_1 > li > a.active{font-weight: 600}.mainnav .level_1 li.submenu > a{cursor: default}.mainnav .level_2 li{border-bottom: 1px solid #eee}.mainnav .level_2 li a{font-size: 0.90rem !important}.sidebar{width: 43px;transition: 1.3s}.sidebar:hover{width: 205px}.sidebar a{white-space: nowrap;margin-top: 2px;overflow: hidden}.contact_item .image_container{border-radius: 50%}.contact_item .image_container img{border-radius: 50%}.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: #5d8fae}.ce_teaser_box,.ce_teaser_box_double{background-color: #fff;font-size: 95%}.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 2.75rem 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 .linkbox,.ce_teaser_box_double .linkbox{padding: 0 2rem}.ce_teaser_box .more,.ce_teaser_box_double .more{margin-top: 1rem}@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_double .text2{margin-top: 2rem;padding: 2rem 2.75rem 2rem;background-color: #15314a;color: #fff}.ce_intro .subheadline,.ce_text .subheadline{font-size: 1.25rem;margin-bottom: 1rem;display: inline-block;color: #5d8fae}#main .ce_intro .subheadline:after{display: block;border-bottom: 5px solid #5d8fae;width: 5rem;content: ' ';margin: 1rem auto 0}.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}}@media screen and (max-width: 1024px){.ce_text_right,.ce_text_left{padding-top: 1.5rem;padding-bottom: 1.5rem}}.ce_text_right .inside,.ce_text_left .inside{margin: 0}@media screen and (max-width: 699px){.ce_text_right .inside,.ce_text_left .inside{display: block;padding-left: 1.5rem;padding-right: 1.5rem;flex-wrap: nowrap}.ce_text_right .inside .text,.ce_text_left .inside .text{margin-top: 1rem}.ce_text_right .inside .linkbox,.ce_text_left .inside .linkbox{margin-top: 0}.ce_text_right .inside .image_container,.ce_text_left .inside .image_container{flex: none}}.ce_text_right .image_container,.ce_text_left .image_container{margin: 0}.ce_text_right .text,.ce_text_left .text{margin: 0;align-self: center;flex: none}@media screen and (min-width: calc(1366px + 1px)){.ce_text_right .text,.ce_text_left .text{padding: 1rem 8rem 1rem 8rem;width: calc(50% - 16rem)}}@media screen and (min-width: calc(699px + 1px)) and (max-width: 1366px){.ce_text_right .text,.ce_text_left .text{padding: 1rem 2vw 1rem 2vw;width: calc(50% - 4vw)}}.ce_text_right .linkbox,.ce_text_left .linkbox{margin-top: 3rem}@media screen and (max-width: 699px){.ce_text_left .inside{display: flex;flex-direction: column-reverse}}.ce_player video{width: 100%;height: auto}.video_container iframe{width: 100%;min-height: 350px;background-color: #e7e7e7}.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%}.ce_facts .text{font-size: 1.5rem}.listing ul{list-style-type: square;padding-left: 2rem;margin-bottom: 1.5rem}.listing ul li{margin-bottom: 0.5rem}.ce_list ul{list-style-type: square;padding-left: 2rem;margin-bottom: 1.5rem}.ce_list ul li{margin-bottom: 0.5rem}.ce_text ul,.ce_text_pro ul,.ce_intro 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{margin-bottom: 0.5rem}.mod_faqlist .faq_category{margin-top: 1rem}.mod_faqlist .faq_item{margin-bottom: 0.5rem;padding: 1rem 1rem;border-radius: 10px;background-color: #15314a}.mod_faqlist .faq_item p:last-child{margin-bottom: 0}.mod_faqlist .faq_item .toggler{font-weight: 500;color: #fff}.mod_faqlist .faq_item .toggler::before{top: 8px}.mod_faqlist .faq_item .accordion{color: #fff}.mod_faqlist .faq_item .accordion a{color: #fff}.standard img{width: auto;display: inline-block}.ce_table{margin-bottom: 4rem}.ce_table .col_1{width: 15%}.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: #15314a;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: #5d8fae;background-color: #fff}.mobile-show{display: none}@media screen and (max-width: 699px){.mobile-show{display: block}.mobile-hide{display: none}}.readmore summary{cursor: pointer;list-style: none;display: inline-flex;align-items: center;gap: 8px;color: #ffffff}.readmore summary::-webkit-details-marker{display: none}.readmore summary::before{content: "▶";font-size: 12px;transition: transform .3s ease}.readmore summary:hover{opacity: 0.8}.readmore .less{display: none}.readmore .readmore-content{display: grid;grid-template-rows: 0fr;opacity: 0;transition: grid-template-rows .4s ease, opacity .3s ease}.readmore .readmore-content-inner{overflow: hidden;padding-top: 0;transition: padding-top .4s ease}.readmore[open] summary::before{transform: rotate(90deg)}.readmore[open] .more{display: none}.readmore[open] .less{display: inline}.readmore[open] .readmore-content{grid-template-rows: 1fr;opacity: 1}.readmore[open] .readmore-content-inner{padding-top: 18px}.ce_toplink{position: fixed;left: 30px;bottom: 30px;z-index: 1000}.ce_toplink a{display: flex;align-items: center;gap: 8px;padding: 10px 14px;background: #ffffff;color: #000000;border-radius: 6px;text-decoration: none;box-shadow: 0 4px 10px rgba(0,0,0,0.2);font-size: 14px;transition: all .25s ease}.ce_toplink i{font-size: 16px}.ce_toplink span{line-height: 1}.ce_toplink a:hover{transform: translateY(-2px)}.mod_article{margin-bottom: 0rem !important}@media screen and (max-width: 699px){#topnav .logo img{max-width: 120px}}
