.dlh_googlemap img {max-width:none}.dlh_googlemap .routinglink{white-space:nowrap}
header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
	/* disable global scrolling when featherlights are visible */
	overflow: hidden;
}

.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	/* make content container for positioned elements (close button) */
	position: relative;

	/* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block;

	/* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent;

	/* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;

	/* styling */
	background: #fff;
	cursor: auto;

	/* reset white-space wrapping */
	white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
	/* make sure its visible */
	display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;

	/* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px;

	/* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}


.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe {
	/* styling */
	border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;

		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}

/* hide non featherlight items when printing */
@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 0;
	left: 80%;
	cursor: pointer;
	/* preventing text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* IE9 hack, otherwise navigation doesn't appear */
	background: rgba(0,0,0,0);
}

.featherlight-previous {
	left: 25px;
	right: 80%;
}

.featherlight-next:hover,
.featherlight-previous:hover {
	background: rgba(255,255,255,0.25);
}


.featherlight-next span,
.featherlight-previous span {
	display: none;
	position: absolute;

	top: 50%;
	left: 5%;
	width: 82%;

	/* center horizontally */
	text-align: center;

	font-size: 80px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #fff;
	font-style: normal;
	font-weight: normal;
}
.featherlight-next span {
	right: 5%;
	left: auto;
}


.featherlight-next:hover span,
.featherlight-previous:hover span {
	display: inline-block;
}

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}

/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}


/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}

	.featherlight-previous {
		left: 10px;
		right: 85%;
	}

	.featherlight-next span,
	.featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../../files/template/libs/slick/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../../files/template/libs/slick/./fonts/slick.eot');
    src: url('../../files/template/libs/slick/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('../../files/template/libs/slick/./fonts/slick.woff') format('woff'), url('../../files/template/libs/slick/./fonts/slick.ttf') format('truetype'), url('../../files/template/libs/slick/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -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;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}

@charset "UTF-8";@font-face{font-family:'Roboto';font-style:normal;font-weight:300;src:local('Roboto Light'), local('Roboto-Light'), url('../../files/template/fonts/roboto-v18-latin-300.woff2') format('woff2'), url('../../files/template/fonts/roboto-v18-latin-300.woff') format('woff')}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto'), local('Roboto-Regular'), url('../../files/template/fonts/roboto-v18-latin-regular.woff2') format('woff2'), url('../../files/template/fonts/roboto-v18-latin-regular.woff') format('woff')}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'), local('Roboto-Bold'), url('../../files/template/fonts/roboto-v18-latin-700.woff2') format('woff2'), url('../../files/template/fonts/roboto-v18-latin-700.woff') format('woff')}@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:local('Ubuntu Regular'), local('Ubuntu-Regular'), url('../../files/template/fonts/ubuntu-v11-latin-regular.woff2') format('woff2'), url('../../files/template/fonts/ubuntu-v11-latin-regular.woff') format('woff')}@font-face{font-family:'Ubuntu';font-style:italic;font-weight:300;src:local('Ubuntu Light Italic'), local('Ubuntu-LightItalic'), url('../../files/template/fonts/ubuntu-v11-latin-300italic.woff2') format('woff2'), url('../../files/template/fonts/ubuntu-v11-latin-300italic.woff') format('woff')}@font-face{font-family:'Ubuntu';font-style:italic;font-weight:400;src:local('Ubuntu Italic'), local('Ubuntu-Italic'), url('../../files/template/fonts/ubuntu-v11-latin-italic.woff2') format('woff2'), url('../../files/template/fonts/ubuntu-v11-latin-italic.woff') format('woff')}@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:local('Ubuntu Bold'), local('Ubuntu-Bold'), url('../../files/template/fonts/ubuntu-v11-latin-700.woff2') format('woff2'), url('../../files/template/fonts/ubuntu-v11-latin-700.woff') format('woff')}@font-face{font-family:'Ubuntu';font-style:italic;font-weight:700;src:local('Ubuntu Bold Italic'), local('Ubuntu-BoldItalic'), url('../../files/template/fonts/ubuntu-v11-latin-700italic.woff2') format('woff2'), url('../../files/template/fonts/ubuntu-v11-latin-700italic.woff') format('woff')}@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:local('Ubuntu Light'), local('Ubuntu-Light'), url('../../files/template/fonts/ubuntu-v11-latin-300.woff2') format('woff2'), url('../../files/template/fonts/ubuntu-v11-latin-300.woff') format('woff')}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font:12px/1 "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco, monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}.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}.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-track,.slick-slider .slick-list{-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:before,.slick-track:after{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;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/template/libs/slick/ajax-loader.gif") center center no-repeat}@font-face{font-family:"slick";src:url("../../files/template/libs/slick/fonts/slick.eot");src:url("../../files/template/libs/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../../files/template/libs/slick/fonts/slick.woff") format("woff"), url("../../files/template/libs/slick/fonts/slick.ttf") format("truetype"), url("../../files/template/libs/slick/fonts/slick.svg#slick") format("svg");font-weight:normal;font-style:normal}.slick-prev,.slick-next{position:absolute;display:block;height:20px;width:20px;line-height:0px;font-size:0px;cursor:pointer;background:transparent;color:transparent;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);padding:0;border:none;outline:none}.slick-prev:hover,.slick-next:hover,.slick-prev:focus,.slick-next:focus{outline:none;background:transparent;color:transparent}.slick-prev:hover:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:0.25}.slick-prev:before,.slick-next:before{font-family:"slick";font-size:20px;line-height:1;color:#000;opacity:0.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:"\2190"}[dir="rtl"] .slick-prev:before{content:"\2192"}.slick-next{right:-25px}[dir="rtl"] .slick-next{left:-25px;right:auto}.slick-next:before{content:"\2192"}[dir="rtl"] .slick-next:before{content:"\2190"}.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:0px;font-size:0px;color:transparent;padding:5px;cursor:pointer}.slick-dots li button:hover,.slick-dots li button:focus{outline:none}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{position:absolute;top:0;left:0;content:"\2022";width:20px;height:20px;font-family:"slick";font-size:1.4rem;line-height:20px;text-align:center;color:#327c00;opacity:0.25;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{color:#000;opacity:0.75}.rs-columns{clear:both;width:100%;display:block}.rs-column{float:left;width:100%;margin-right:2rem}.rs-column.-large-first{clear:left}.rs-column.-large-last{margin-right:0}.rs-column.-large-first-row{margin-top:0}.rs-column.-large-col-1-1{width:calc((
        		(
        			100% - 2rem * ( 0 )
        		) / 1 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-large-col-2-1{width:calc((
        		(
        			100% - 2rem * ( 1 )
        		) / 2 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-large-col-2-2{width:calc((
        		(
        			100% - 2rem * ( 1 )
        		) / 2 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-large-col-3-1{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-large-col-3-2{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-large-col-3-3{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-large-col-4-1{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-large-col-4-2{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-large-col-4-3{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-large-col-4-4{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-large-col-5-1{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-large-col-5-2{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-large-col-5-3{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-large-col-5-4{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-large-col-5-5{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			5
        		) + 2rem * 4
        	) - 0.01px)}.rs-column.-large-col-6-1{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-large-col-6-2{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-large-col-6-3{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-large-col-6-4{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-large-col-6-5{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			5
        		) + 2rem * 4
        	) - 0.01px)}.rs-column.-large-col-6-6{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			6
        		) + 2rem * 5
        	) - 0.01px)}@media screen and (max-width:56.25em){.rs-column{margin-top:2rem;margin-right:2rem}.rs-column.-large-first{clear:none}.rs-column.-large-last{margin-right:2rem}.rs-column.-large-first-row{margin-top:2rem}.rs-column.-medium-first{clear:left}.rs-column.-medium-last{margin-right:0}.rs-column.-medium-first-row{margin-top:0}.rs-column.-medium-col-1-1{width:calc((
        		(
        			100% - 2rem * ( 0 )
        		) / 1 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-medium-col-2-1{width:calc((
        		(
        			100% - 2rem * ( 1 )
        		) / 2 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-medium-col-2-2{width:calc((
        		(
        			100% - 2rem * ( 1 )
        		) / 2 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-medium-col-3-1{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-medium-col-3-2{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-medium-col-3-3{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-medium-col-4-1{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-medium-col-4-2{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-medium-col-4-3{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-medium-col-4-4{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-medium-col-5-1{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-medium-col-5-2{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-medium-col-5-3{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-medium-col-5-4{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-medium-col-5-5{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			5
        		) + 2rem * 4
        	) - 0.01px)}.rs-column.-medium-col-6-1{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-medium-col-6-2{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-medium-col-6-3{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-medium-col-6-4{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-medium-col-6-5{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			5
        		) + 2rem * 4
        	) - 0.01px)}.rs-column.-medium-col-6-6{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			6
        		) + 2rem * 5
        	) - 0.01px)}}@media screen and (max-width:37.5em){.rs-column{margin-right:2rem}.rs-column.-medium-first{clear:none}.rs-column.-medium-last{margin-right:2rem}.rs-column.-medium-first-row{margin-top:2rem}.rs-column.-small-first{clear:left}.rs-column.-small-last{margin-right:0}.rs-column.-small-first-row{margin-top:0}.rs-column.-small-col-1-1{width:calc((
        		(
        			100% - 2rem * ( 0 )
        		) / 1 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-small-col-2-1{width:calc((
        		(
        			100% - 2rem * ( 1 )
        		) / 2 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-small-col-2-2{width:calc((
        		(
        			100% - 2rem * ( 1 )
        		) / 2 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-small-col-3-1{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-small-col-3-2{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-small-col-3-3{width:calc((
        		(
        			100% - 2rem * ( 2 )
        		) / 3 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-small-col-4-1{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-small-col-4-2{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-small-col-4-3{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-small-col-4-4{width:calc((
        		(
        			100% - 2rem * ( 3 )
        		) / 4 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-small-col-5-1{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-small-col-5-2{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-small-col-5-3{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-small-col-5-4{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-small-col-5-5{width:calc((
        		(
        			100% - 2rem * ( 4 )
        		) / 5 * (
        			5
        		) + 2rem * 4
        	) - 0.01px)}.rs-column.-small-col-6-1{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			1
        		) + 2rem * 0
        	) - 0.01px)}.rs-column.-small-col-6-2{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			2
        		) + 2rem * 1
        	) - 0.01px)}.rs-column.-small-col-6-3{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			3
        		) + 2rem * 2
        	) - 0.01px)}.rs-column.-small-col-6-4{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			4
        		) + 2rem * 3
        	) - 0.01px)}.rs-column.-small-col-6-5{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			5
        		) + 2rem * 4
        	) - 0.01px)}.rs-column.-small-col-6-6{width:calc((
        		(
        			100% - 2rem * ( 5 )
        		) / 6 * (
        			6
        		) + 2rem * 5
        	) - 0.01px)}}.columns-1>*{float:left}.columns-1>*:nth-of-type(1n){width:calc(( 100% - ( 0 * 2rem ) ) / 1 - 0.01px);margin-right:calc(2rem);clear:none}.columns-1>*:nth-of-type(1n+1){clear:left}.columns-1>*:nth-of-type(1n+1){margin-right:0}.columns-1:nth-of-type(1){margin-top:0}.columns-1:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-2>*{float:left}.columns-2>*:nth-of-type(1n){width:calc(( 100% - ( 1 * 2rem ) ) / 2 - 0.01px);margin-right:calc(2rem);clear:none}.columns-2>*:nth-of-type(2n+1){clear:left}.columns-2>*:nth-of-type(2n+2){margin-right:0}.columns-2:nth-of-type(1){margin-top:0}.columns-2:nth-of-type(2){margin-top:0}.columns-2:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-3>*{float:left}.columns-3>*:nth-of-type(1n){width:calc(( 100% - ( 2 * 2rem ) ) / 3 - 0.01px);margin-right:calc(2rem);clear:none}.columns-3>*:nth-of-type(3n+1){clear:left}.columns-3>*:nth-of-type(3n+3){margin-right:0}.columns-3:nth-of-type(1){margin-top:0}.columns-3:nth-of-type(2){margin-top:0}.columns-3:nth-of-type(3){margin-top:0}.columns-3:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-4>*{float:left}.columns-4>*:nth-of-type(1n){width:calc(( 100% - ( 3 * 2rem ) ) / 4 - 0.01px);margin-right:calc(2rem);clear:none}.columns-4>*:nth-of-type(4n+1){clear:left}.columns-4>*:nth-of-type(4n+4){margin-right:0}.columns-4:nth-of-type(1){margin-top:0}.columns-4:nth-of-type(2){margin-top:0}.columns-4:nth-of-type(3){margin-top:0}.columns-4:nth-of-type(4){margin-top:0}.columns-4:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-5>*{float:left}.columns-5>*:nth-of-type(1n){width:calc(( 100% - ( 4 * 2rem ) ) / 5 - 0.01px);margin-right:calc(2rem);clear:none}.columns-5>*:nth-of-type(5n+1){clear:left}.columns-5>*:nth-of-type(5n+5){margin-right:0}.columns-5:nth-of-type(1){margin-top:0}.columns-5:nth-of-type(2){margin-top:0}.columns-5:nth-of-type(3){margin-top:0}.columns-5:nth-of-type(4){margin-top:0}.columns-5:nth-of-type(5){margin-top:0}.columns-5:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-6>*{float:left}.columns-6>*:nth-of-type(1n){width:calc(( 100% - ( 5 * 2rem ) ) / 6 - 0.01px);margin-right:calc(2rem);clear:none}.columns-6>*:nth-of-type(6n+1){clear:left}.columns-6>*:nth-of-type(6n+6){margin-right:0}.columns-6:nth-of-type(1){margin-top:0}.columns-6:nth-of-type(2){margin-top:0}.columns-6:nth-of-type(3){margin-top:0}.columns-6:nth-of-type(4){margin-top:0}.columns-6:nth-of-type(5){margin-top:0}.columns-6:nth-of-type(6){margin-top:0}.columns-6:after{content:".";display:block;height:0;clear:both;visibility:hidden}.push-left-0{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 0 + 0 * 2rem)}.push-right-0{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 0 + 0 * 2rem)}.push-left-1{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 1 + 1 * 2rem)}.push-right-1{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 1 + 1 * 2rem)}.push-left-2{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 2 + 2 * 2rem)}.push-right-2{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 2 + 2 * 2rem)}.push-left-3{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 3 + 3 * 2rem)}.push-right-3{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 3 + 3 * 2rem)}.push-left-4{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 4 + 4 * 2rem)}.push-right-4{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 4 + 4 * 2rem)}.push-left-5{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 5 + 5 * 2rem)}.push-right-5{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 5 + 5 * 2rem)}.push-left-6{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 6 + 6 * 2rem)}.push-right-6{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 6 + 6 * 2rem)}.push-left-7{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 7 + 7 * 2rem)}.push-right-7{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 7 + 7 * 2rem)}.push-left-8{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 8 + 8 * 2rem)}.push-right-8{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 8 + 8 * 2rem)}.push-left-9{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 9 + 9 * 2rem)}.push-right-9{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 9 + 9 * 2rem)}.push-left-10{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 10 + 10 * 2rem)}.push-right-10{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 10 + 10 * 2rem)}.push-left-11{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 11 + 11 * 2rem)}.push-right-11{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 11 + 11 * 2rem)}.columns-11-1>*{float:left}.columns-11-1>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 11 + 10 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-11-1>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 1 + 0 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-11-1>*:nth-child(2n+1){clear:left}.columns-11-1>*:nth-child(2n+2){margin-right:0}.columns-11-1:nth-child(1){margin-top:0}.columns-11-1:nth-child(2){margin-top:0}.columns-11-1:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-10-2>*{float:left}.columns-10-2>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 10 + 9 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-10-2>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 2 + 1 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-10-2>*:nth-child(2n+1){clear:left}.columns-10-2>*:nth-child(2n+2){margin-right:0}.columns-10-2:nth-child(1){margin-top:0}.columns-10-2:nth-child(2){margin-top:0}.columns-10-2:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-9-3>*{float:left}.columns-9-3>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 9 + 8 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-9-3>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 3 + 2 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-9-3>*:nth-child(2n+1){clear:left}.columns-9-3>*:nth-child(2n+2){margin-right:0}.columns-9-3:nth-child(1){margin-top:0}.columns-9-3:nth-child(2){margin-top:0}.columns-9-3:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-8-4>*{float:left}.columns-8-4>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 8 + 7 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-8-4>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 4 + 3 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-8-4>*:nth-child(2n+1){clear:left}.columns-8-4>*:nth-child(2n+2){margin-right:0}.columns-8-4:nth-child(1){margin-top:0}.columns-8-4:nth-child(2){margin-top:0}.columns-8-4:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-7-5>*{float:left}.columns-7-5>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 7 + 6 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-7-5>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 5 + 4 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-7-5>*:nth-child(2n+1){clear:left}.columns-7-5>*:nth-child(2n+2){margin-right:0}.columns-7-5:nth-child(1){margin-top:0}.columns-7-5:nth-child(2){margin-top:0}.columns-7-5:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-6-6>*{float:left}.columns-6-6>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 6 + 5 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-6-6>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 6 + 5 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-6-6>*:nth-child(2n+1){clear:left}.columns-6-6>*:nth-child(2n+2){margin-right:0}.columns-6-6:nth-child(1){margin-top:0}.columns-6-6:nth-child(2){margin-top:0}.columns-6-6:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-5-7>*{float:left}.columns-5-7>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 5 + 4 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-5-7>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 7 + 6 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-5-7>*:nth-child(2n+1){clear:left}.columns-5-7>*:nth-child(2n+2){margin-right:0}.columns-5-7:nth-child(1){margin-top:0}.columns-5-7:nth-child(2){margin-top:0}.columns-5-7:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-4-8>*{float:left}.columns-4-8>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 4 + 3 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-4-8>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 8 + 7 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-4-8>*:nth-child(2n+1){clear:left}.columns-4-8>*:nth-child(2n+2){margin-right:0}.columns-4-8:nth-child(1){margin-top:0}.columns-4-8:nth-child(2){margin-top:0}.columns-4-8:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-3-9>*{float:left}.columns-3-9>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 3 + 2 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-3-9>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 9 + 8 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-3-9>*:nth-child(2n+1){clear:left}.columns-3-9>*:nth-child(2n+2){margin-right:0}.columns-3-9:nth-child(1){margin-top:0}.columns-3-9:nth-child(2){margin-top:0}.columns-3-9:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-2-10>*{float:left}.columns-2-10>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 2 + 1 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-2-10>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 10 + 9 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-2-10>*:nth-child(2n+1){clear:left}.columns-2-10>*:nth-child(2n+2){margin-right:0}.columns-2-10:nth-child(1){margin-top:0}.columns-2-10:nth-child(2){margin-top:0}.columns-2-10:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-1-11>*{float:left}.columns-1-11>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 1 + 0 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-1-11>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 11 + 10 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-1-11>*:nth-child(2n+1){clear:left}.columns-1-11>*:nth-child(2n+2){margin-right:0}.columns-1-11:nth-child(1){margin-top:0}.columns-1-11:nth-child(2){margin-top:0}.columns-1-11:after{content:".";display:block;height:0;clear:both;visibility:hidden}@media screen and (max-width:56.25em){.columns-medium-1>*{float:left}.columns-medium-1>*:nth-of-type(1n){width:calc(( 100% - ( 0 * 2rem ) ) / 1 - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-1>*:nth-of-type(1n+1){clear:left}.columns-medium-1>*:nth-of-type(1n+1){margin-right:0}.columns-medium-1:nth-of-type(1){margin-top:0}.columns-medium-1:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-2>*{float:left}.columns-medium-2>*:nth-of-type(1n){width:calc(( 100% - ( 1 * 2rem ) ) / 2 - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-2>*:nth-of-type(2n+1){clear:left}.columns-medium-2>*:nth-of-type(2n+2){margin-right:0}.columns-medium-2:nth-of-type(1){margin-top:0}.columns-medium-2:nth-of-type(2){margin-top:0}.columns-medium-2:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-3>*{float:left}.columns-medium-3>*:nth-of-type(1n){width:calc(( 100% - ( 2 * 2rem ) ) / 3 - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-3>*:nth-of-type(3n+1){clear:left}.columns-medium-3>*:nth-of-type(3n+3){margin-right:0}.columns-medium-3:nth-of-type(1){margin-top:0}.columns-medium-3:nth-of-type(2){margin-top:0}.columns-medium-3:nth-of-type(3){margin-top:0}.columns-medium-3:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-4>*{float:left}.columns-medium-4>*:nth-of-type(1n){width:calc(( 100% - ( 3 * 2rem ) ) / 4 - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-4>*:nth-of-type(4n+1){clear:left}.columns-medium-4>*:nth-of-type(4n+4){margin-right:0}.columns-medium-4:nth-of-type(1){margin-top:0}.columns-medium-4:nth-of-type(2){margin-top:0}.columns-medium-4:nth-of-type(3){margin-top:0}.columns-medium-4:nth-of-type(4){margin-top:0}.columns-medium-4:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-5>*{float:left}.columns-medium-5>*:nth-of-type(1n){width:calc(( 100% - ( 4 * 2rem ) ) / 5 - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-5>*:nth-of-type(5n+1){clear:left}.columns-medium-5>*:nth-of-type(5n+5){margin-right:0}.columns-medium-5:nth-of-type(1){margin-top:0}.columns-medium-5:nth-of-type(2){margin-top:0}.columns-medium-5:nth-of-type(3){margin-top:0}.columns-medium-5:nth-of-type(4){margin-top:0}.columns-medium-5:nth-of-type(5){margin-top:0}.columns-medium-5:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-6>*{float:left}.columns-medium-6>*:nth-of-type(1n){width:calc(( 100% - ( 5 * 2rem ) ) / 6 - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-6>*:nth-of-type(6n+1){clear:left}.columns-medium-6>*:nth-of-type(6n+6){margin-right:0}.columns-medium-6:nth-of-type(1){margin-top:0}.columns-medium-6:nth-of-type(2){margin-top:0}.columns-medium-6:nth-of-type(3){margin-top:0}.columns-medium-6:nth-of-type(4){margin-top:0}.columns-medium-6:nth-of-type(5){margin-top:0}.columns-medium-6:nth-of-type(6){margin-top:0}.columns-medium-6:after{content:".";display:block;height:0;clear:both;visibility:hidden}.push-left-medium-0{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 0 + 0 * 2rem)}.push-right-medium-0{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 0 + 0 * 2rem)}.push-left-medium-1{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 1 + 1 * 2rem)}.push-right-medium-1{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 1 + 1 * 2rem)}.push-left-medium-2{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 2 + 2 * 2rem)}.push-right-medium-2{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 2 + 2 * 2rem)}.push-left-medium-3{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 3 + 3 * 2rem)}.push-right-medium-3{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 3 + 3 * 2rem)}.push-left-medium-4{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 4 + 4 * 2rem)}.push-right-medium-4{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 4 + 4 * 2rem)}.push-left-medium-5{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 5 + 5 * 2rem)}.push-right-medium-5{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 5 + 5 * 2rem)}.push-left-medium-6{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 6 + 6 * 2rem)}.push-right-medium-6{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 6 + 6 * 2rem)}.push-left-medium-7{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 7 + 7 * 2rem)}.push-right-medium-7{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 7 + 7 * 2rem)}.push-left-medium-8{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 8 + 8 * 2rem)}.push-right-medium-8{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 8 + 8 * 2rem)}.push-left-medium-9{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 9 + 9 * 2rem)}.push-right-medium-9{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 9 + 9 * 2rem)}.push-left-medium-10{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 10 + 10 * 2rem)}.push-right-medium-10{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 10 + 10 * 2rem)}.push-left-medium-11{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 11 + 11 * 2rem)}.push-right-medium-11{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 11 + 11 * 2rem)}.columns-medium-11-1>*{float:left}.columns-medium-11-1>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 11 + 10 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-11-1>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 1 + 0 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-11-1>*:nth-child(2n+1){clear:left}.columns-medium-11-1>*:nth-child(2n+2){margin-right:0}.columns-medium-11-1:nth-child(1){margin-top:0}.columns-medium-11-1:nth-child(2){margin-top:0}.columns-medium-11-1:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-10-2>*{float:left}.columns-medium-10-2>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 10 + 9 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-10-2>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 2 + 1 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-10-2>*:nth-child(2n+1){clear:left}.columns-medium-10-2>*:nth-child(2n+2){margin-right:0}.columns-medium-10-2:nth-child(1){margin-top:0}.columns-medium-10-2:nth-child(2){margin-top:0}.columns-medium-10-2:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-9-3>*{float:left}.columns-medium-9-3>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 9 + 8 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-9-3>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 3 + 2 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-9-3>*:nth-child(2n+1){clear:left}.columns-medium-9-3>*:nth-child(2n+2){margin-right:0}.columns-medium-9-3:nth-child(1){margin-top:0}.columns-medium-9-3:nth-child(2){margin-top:0}.columns-medium-9-3:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-8-4>*{float:left}.columns-medium-8-4>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 8 + 7 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-8-4>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 4 + 3 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-8-4>*:nth-child(2n+1){clear:left}.columns-medium-8-4>*:nth-child(2n+2){margin-right:0}.columns-medium-8-4:nth-child(1){margin-top:0}.columns-medium-8-4:nth-child(2){margin-top:0}.columns-medium-8-4:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-7-5>*{float:left}.columns-medium-7-5>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 7 + 6 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-7-5>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 5 + 4 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-7-5>*:nth-child(2n+1){clear:left}.columns-medium-7-5>*:nth-child(2n+2){margin-right:0}.columns-medium-7-5:nth-child(1){margin-top:0}.columns-medium-7-5:nth-child(2){margin-top:0}.columns-medium-7-5:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-6-6>*{float:left}.columns-medium-6-6>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 6 + 5 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-6-6>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 6 + 5 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-6-6>*:nth-child(2n+1){clear:left}.columns-medium-6-6>*:nth-child(2n+2){margin-right:0}.columns-medium-6-6:nth-child(1){margin-top:0}.columns-medium-6-6:nth-child(2){margin-top:0}.columns-medium-6-6:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-5-7>*{float:left}.columns-medium-5-7>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 5 + 4 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-5-7>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 7 + 6 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-5-7>*:nth-child(2n+1){clear:left}.columns-medium-5-7>*:nth-child(2n+2){margin-right:0}.columns-medium-5-7:nth-child(1){margin-top:0}.columns-medium-5-7:nth-child(2){margin-top:0}.columns-medium-5-7:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-4-8>*{float:left}.columns-medium-4-8>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 4 + 3 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-4-8>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 8 + 7 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-4-8>*:nth-child(2n+1){clear:left}.columns-medium-4-8>*:nth-child(2n+2){margin-right:0}.columns-medium-4-8:nth-child(1){margin-top:0}.columns-medium-4-8:nth-child(2){margin-top:0}.columns-medium-4-8:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-3-9>*{float:left}.columns-medium-3-9>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 3 + 2 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-3-9>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 9 + 8 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-3-9>*:nth-child(2n+1){clear:left}.columns-medium-3-9>*:nth-child(2n+2){margin-right:0}.columns-medium-3-9:nth-child(1){margin-top:0}.columns-medium-3-9:nth-child(2){margin-top:0}.columns-medium-3-9:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-2-10>*{float:left}.columns-medium-2-10>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 2 + 1 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-2-10>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 10 + 9 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-2-10>*:nth-child(2n+1){clear:left}.columns-medium-2-10>*:nth-child(2n+2){margin-right:0}.columns-medium-2-10:nth-child(1){margin-top:0}.columns-medium-2-10:nth-child(2){margin-top:0}.columns-medium-2-10:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-medium-1-11>*{float:left}.columns-medium-1-11>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 1 + 0 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-1-11>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 11 + 10 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-medium-1-11>*:nth-child(2n+1){clear:left}.columns-medium-1-11>*:nth-child(2n+2){margin-right:0}.columns-medium-1-11:nth-child(1){margin-top:0}.columns-medium-1-11:nth-child(2){margin-top:0}.columns-medium-1-11:after{content:".";display:block;height:0;clear:both;visibility:hidden}}@media screen and (max-width:37.5em){.columns-small-1>*{float:left}.columns-small-1>*:nth-of-type(1n){width:calc(( 100% - ( 0 * 2rem ) ) / 1 - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-1>*:nth-of-type(1n+1){clear:left}.columns-small-1>*:nth-of-type(1n+1){margin-right:0}.columns-small-1:nth-of-type(1){margin-top:0}.columns-small-1:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-2>*{float:left}.columns-small-2>*:nth-of-type(1n){width:calc(( 100% - ( 1 * 2rem ) ) / 2 - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-2>*:nth-of-type(2n+1){clear:left}.columns-small-2>*:nth-of-type(2n+2){margin-right:0}.columns-small-2:nth-of-type(1){margin-top:0}.columns-small-2:nth-of-type(2){margin-top:0}.columns-small-2:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-3>*{float:left}.columns-small-3>*:nth-of-type(1n){width:calc(( 100% - ( 2 * 2rem ) ) / 3 - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-3>*:nth-of-type(3n+1){clear:left}.columns-small-3>*:nth-of-type(3n+3){margin-right:0}.columns-small-3:nth-of-type(1){margin-top:0}.columns-small-3:nth-of-type(2){margin-top:0}.columns-small-3:nth-of-type(3){margin-top:0}.columns-small-3:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-4>*{float:left}.columns-small-4>*:nth-of-type(1n){width:calc(( 100% - ( 3 * 2rem ) ) / 4 - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-4>*:nth-of-type(4n+1){clear:left}.columns-small-4>*:nth-of-type(4n+4){margin-right:0}.columns-small-4:nth-of-type(1){margin-top:0}.columns-small-4:nth-of-type(2){margin-top:0}.columns-small-4:nth-of-type(3){margin-top:0}.columns-small-4:nth-of-type(4){margin-top:0}.columns-small-4:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-5>*{float:left}.columns-small-5>*:nth-of-type(1n){width:calc(( 100% - ( 4 * 2rem ) ) / 5 - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-5>*:nth-of-type(5n+1){clear:left}.columns-small-5>*:nth-of-type(5n+5){margin-right:0}.columns-small-5:nth-of-type(1){margin-top:0}.columns-small-5:nth-of-type(2){margin-top:0}.columns-small-5:nth-of-type(3){margin-top:0}.columns-small-5:nth-of-type(4){margin-top:0}.columns-small-5:nth-of-type(5){margin-top:0}.columns-small-5:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-6>*{float:left}.columns-small-6>*:nth-of-type(1n){width:calc(( 100% - ( 5 * 2rem ) ) / 6 - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-6>*:nth-of-type(6n+1){clear:left}.columns-small-6>*:nth-of-type(6n+6){margin-right:0}.columns-small-6:nth-of-type(1){margin-top:0}.columns-small-6:nth-of-type(2){margin-top:0}.columns-small-6:nth-of-type(3){margin-top:0}.columns-small-6:nth-of-type(4){margin-top:0}.columns-small-6:nth-of-type(5){margin-top:0}.columns-small-6:nth-of-type(6){margin-top:0}.columns-small-6:after{content:".";display:block;height:0;clear:both;visibility:hidden}.push-left-small-0{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 0 + 0 * 2rem)}.push-right-small-0{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 0 + 0 * 2rem)}.push-left-small-1{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 1 + 1 * 2rem)}.push-right-small-1{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 1 + 1 * 2rem)}.push-left-small-2{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 2 + 2 * 2rem)}.push-right-small-2{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 2 + 2 * 2rem)}.push-left-small-3{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 3 + 3 * 2rem)}.push-right-small-3{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 3 + 3 * 2rem)}.push-left-small-4{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 4 + 4 * 2rem)}.push-right-small-4{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 4 + 4 * 2rem)}.push-left-small-5{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 5 + 5 * 2rem)}.push-right-small-5{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 5 + 5 * 2rem)}.push-left-small-6{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 6 + 6 * 2rem)}.push-right-small-6{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 6 + 6 * 2rem)}.push-left-small-7{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 7 + 7 * 2rem)}.push-right-small-7{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 7 + 7 * 2rem)}.push-left-small-8{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 8 + 8 * 2rem)}.push-right-small-8{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 8 + 8 * 2rem)}.push-left-small-9{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 9 + 9 * 2rem)}.push-right-small-9{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 9 + 9 * 2rem)}.push-left-small-10{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 10 + 10 * 2rem)}.push-right-small-10{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 10 + 10 * 2rem)}.push-left-small-11{margin-left:calc(( 100% - 11 * 2rem ) / 12 * 11 + 11 * 2rem)}.push-right-small-11{margin-right:calc(( 100% - 11 * 2rem ) / 12 * 11 + 11 * 2rem)}.columns-small-11-1>*{float:left}.columns-small-11-1>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 11 + 10 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-11-1>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 1 + 0 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-11-1>*:nth-child(2n+1){clear:left}.columns-small-11-1>*:nth-child(2n+2){margin-right:0}.columns-small-11-1:nth-child(1){margin-top:0}.columns-small-11-1:nth-child(2){margin-top:0}.columns-small-11-1:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-10-2>*{float:left}.columns-small-10-2>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 10 + 9 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-10-2>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 2 + 1 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-10-2>*:nth-child(2n+1){clear:left}.columns-small-10-2>*:nth-child(2n+2){margin-right:0}.columns-small-10-2:nth-child(1){margin-top:0}.columns-small-10-2:nth-child(2){margin-top:0}.columns-small-10-2:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-9-3>*{float:left}.columns-small-9-3>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 9 + 8 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-9-3>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 3 + 2 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-9-3>*:nth-child(2n+1){clear:left}.columns-small-9-3>*:nth-child(2n+2){margin-right:0}.columns-small-9-3:nth-child(1){margin-top:0}.columns-small-9-3:nth-child(2){margin-top:0}.columns-small-9-3:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-8-4>*{float:left}.columns-small-8-4>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 8 + 7 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-8-4>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 4 + 3 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-8-4>*:nth-child(2n+1){clear:left}.columns-small-8-4>*:nth-child(2n+2){margin-right:0}.columns-small-8-4:nth-child(1){margin-top:0}.columns-small-8-4:nth-child(2){margin-top:0}.columns-small-8-4:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-7-5>*{float:left}.columns-small-7-5>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 7 + 6 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-7-5>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 5 + 4 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-7-5>*:nth-child(2n+1){clear:left}.columns-small-7-5>*:nth-child(2n+2){margin-right:0}.columns-small-7-5:nth-child(1){margin-top:0}.columns-small-7-5:nth-child(2){margin-top:0}.columns-small-7-5:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-6-6>*{float:left}.columns-small-6-6>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 6 + 5 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-6-6>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 6 + 5 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-6-6>*:nth-child(2n+1){clear:left}.columns-small-6-6>*:nth-child(2n+2){margin-right:0}.columns-small-6-6:nth-child(1){margin-top:0}.columns-small-6-6:nth-child(2){margin-top:0}.columns-small-6-6:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-5-7>*{float:left}.columns-small-5-7>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 5 + 4 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-5-7>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 7 + 6 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-5-7>*:nth-child(2n+1){clear:left}.columns-small-5-7>*:nth-child(2n+2){margin-right:0}.columns-small-5-7:nth-child(1){margin-top:0}.columns-small-5-7:nth-child(2){margin-top:0}.columns-small-5-7:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-4-8>*{float:left}.columns-small-4-8>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 4 + 3 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-4-8>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 8 + 7 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-4-8>*:nth-child(2n+1){clear:left}.columns-small-4-8>*:nth-child(2n+2){margin-right:0}.columns-small-4-8:nth-child(1){margin-top:0}.columns-small-4-8:nth-child(2){margin-top:0}.columns-small-4-8:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-3-9>*{float:left}.columns-small-3-9>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 3 + 2 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-3-9>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 9 + 8 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-3-9>*:nth-child(2n+1){clear:left}.columns-small-3-9>*:nth-child(2n+2){margin-right:0}.columns-small-3-9:nth-child(1){margin-top:0}.columns-small-3-9:nth-child(2){margin-top:0}.columns-small-3-9:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-2-10>*{float:left}.columns-small-2-10>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 2 + 1 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-2-10>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 10 + 9 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-2-10>*:nth-child(2n+1){clear:left}.columns-small-2-10>*:nth-child(2n+2){margin-right:0}.columns-small-2-10:nth-child(1){margin-top:0}.columns-small-2-10:nth-child(2){margin-top:0}.columns-small-2-10:after{content:".";display:block;height:0;clear:both;visibility:hidden}.columns-small-1-11>*{float:left}.columns-small-1-11>*:nth-child(2n+1){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 1 + 0 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-1-11>*:nth-child(2n+2){width:calc(( 100% - ( 11 * 2rem ) ) / 12 * 11 + 10 * 2rem - 0.01px);margin-right:calc(2rem);clear:none}.columns-small-1-11>*:nth-child(2n+1){clear:left}.columns-small-1-11>*:nth-child(2n+2){margin-right:0}.columns-small-1-11:nth-child(1){margin-top:0}.columns-small-1-11:nth-child(2){margin-top:0}.columns-small-1-11:after{content:".";display:block;height:0;clear:both;visibility:hidden}}@media screen and (max-width:56.25em){.float_left,.float_right{max-width:none;float:none;clear:both;margin:2em 0}}.float_left{float:left;margin:0 2em 1em 0}.float_right{float:right;margin:0 0 1em 2em}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.invisible{position:absolute !important;left:-9999em !important;display:none !important}.overflow-hidden{overflow:hidden !important}.text-align-left{text-align:left !important}.text-align-center{text-align:center !important}.text-align-right{text-align:right !important}.remove-margin-top{margin-top:0 !important}@media screen and (max-width:81.25em){.remove-margin-top-desktop-small{margin-top:0 !important}}@media screen and (max-width:56.25em){.remove-margin-top-tablet{margin-top:0 !important}}@media screen and (max-width:37.5em){.remove-margin-top-mobile{margin-top:0 !important}}.remove-margin-right{margin-right:0 !important}@media screen and (max-width:81.25em){.remove-margin-right-desktop-small{margin-right:0 !important}}@media screen and (max-width:56.25em){.remove-margin-right-tablet{margin-right:0 !important}}@media screen and (max-width:37.5em){.remove-margin-right-mobile{margin-right:0 !important}}.remove-margin-bottom{margin-bottom:0 !important}@media screen and (max-width:81.25em){.remove-margin-bottom-desktop-small{margin-bottom:0 !important}}@media screen and (max-width:56.25em){.remove-margin-bottom-tablet{margin-bottom:0 !important}}@media screen and (max-width:37.5em){.remove-margin-bottom-mobile{margin-bottom:0 !important}}.remove-margin-left{margin-left:0 !important}@media screen and (max-width:81.25em){.remove-margin-left-desktop-small{margin-left:0 !important}}@media screen and (max-width:56.25em){.remove-margin-left-tablet{margin-left:0 !important}}@media screen and (max-width:37.5em){.remove-margin-left-mobile{margin-left:0 !important}}.remove-padding-top{padding-top:0 !important}@media screen and (max-width:81.25em){.remove-padding-top-desktop-small{padding-top:0 !important}}@media screen and (max-width:56.25em){.remove-padding-top-tablet{padding-top:0 !important}}@media screen and (max-width:37.5em){.remove-padding-top-mobile{padding-top:0 !important}}.remove-padding-right{padding-right:0 !important}@media screen and (max-width:81.25em){.remove-padding-right-desktop-small{padding-right:0 !important}}@media screen and (max-width:56.25em){.remove-padding-right-tablet{padding-right:0 !important}}@media screen and (max-width:37.5em){.remove-padding-right-mobile{padding-right:0 !important}}.remove-padding-bottom{padding-bottom:0 !important}@media screen and (max-width:81.25em){.remove-padding-bottom-desktop-small{padding-bottom:0 !important}}@media screen and (max-width:56.25em){.remove-padding-bottom-tablet{padding-bottom:0 !important}}@media screen and (max-width:37.5em){.remove-padding-bottom-mobile{padding-bottom:0 !important}}.remove-padding-left{padding-left:0 !important}@media screen and (max-width:81.25em){.remove-padding-left-desktop-small{padding-left:0 !important}}@media screen and (max-width:56.25em){.remove-padding-left-tablet{padding-left:0 !important}}@media screen and (max-width:37.5em){.remove-padding-left-mobile{padding-left:0 !important}}@media screen and (max-width:81.25em){.hide-on-desktop-small{display:none !important}}@media screen and (max-width:56.25em){.hide-on-tablet{display:none !important}}@media screen and (max-width:37.5em){.hide-on-mobile{display:none !important}}.show-on-desktop-small{display:none !important}@media screen and (max-width:81.25em){.show-on-desktop-small{display:block !important}.show-on-desktop-small--flex{display:flex !important}.show-on-desktop-small--inline{display:inline !important}.show-on-desktop-small--inline-block{display:inline-block !important}}.show-on-tablet{display:none !important}@media screen and (max-width:56.25em){.show-on-tablet{display:block !important}.show-on-tablet--flex{display:flex !important}.show-on-tablet--inline{display:inline !important}.show-on-tablet--inline-block{display:inline-block !important}}.show-on-mobile{display:none !important}@media screen and (max-width:37.5em){.show-on-mobile{display:block !important}.show-on-mobile--flex{display:flex !important}.show-on-mobile--inline{display:inline !important}.show-on-mobile--inline-block{display:inline-block !important}}*,*:after,*:before{box-sizing:border-box}html{font-size:62.5%}@media screen\9{html{font-size:10px}}@media screen\0{html{font-size:10px}}body{font-family:"Ubuntu";font-size:1.6rem;font-weight:400;line-height:1.6;letter-spacing:0.01em;color:#000}@media screen and (max-width:37.5em){body{font-size:1.4rem}}a{color:inherit;text-decoration:none;cursor:pointer}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:1.6rem}q{quotes:"«" "»" "‹" "›"}input:focus,textarea:focus,select:focus{outline:1px solid rgba(160, 0, 57, 0.6);outline-offset:-1px;transition:outline 0.4s}hr{height:1px;border:1px solid #000;border-width:1px 0 0}img{max-width:100%;height:auto;vertical-align:middle}label{border-radius:0px;border:1px solid transparent;margin-bottom:1.6rem;padding:0.6rem;transition:color 0.4s, background 0.4s}input,select,textarea{border-radius:0px;border:1px solid transparent;margin-bottom:1.6rem;padding:0.6rem;transition:color 0.4s, background 0.4s;color:#000;background-color:#fff}input:focus,select:focus,textarea:focus{color:#a6a6a6;background-color:#f3f3f3}table{width:100%;font-size:inherit}::-moz-selection{text-shadow:none;color:#fff;background:rgba(72, 177, 0, 0.8)}::selection{text-shadow:none;color:#fff;background:rgba(72, 177, 0, 0.8)}.main-wrapper{min-height:100vh;display:flex;flex-direction:column}.main-wrapper>*{flex:0 0 auto}.main-wrapper>.main-container{flex:1 0 auto}.main .mod_article>*,.base-width{width:98%;width:calc(100% - 2 * 2rem);max-width:120rem;margin-right:auto;margin-left:auto}.main .mod_article>*.full-width,.base-width.full-width{max-width:none;width:auto}.main .mod_article>*.inset-width,.base-width.inset-width{max-width:100rem;width:calc(100% - 2 * 8rem)}.main .mod_article>*.outset-width,.base-width.outset-width{max-width:140rem;width:calc(100% - 2 * 1rem)}.main-header{position:relative;position:-o-sticky;position:sticky;top:0;z-index:100;padding:1.5rem 0rem;background-color:#f3f3f3}.main-header .progress-wrapper{top:100%}.main-header .progress{background-color:#48B100}.header-wrapper{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;position:relative;height:100%}.header-wrapper .breadcrumb{flex:0 0 100%}.header-wrapper ul{margin-bottom:0}.header-wrapper form{margin-bottom:0}.header-wrapper .logo img{width:250px}.header-wrapper .line{background-color:#48B100}@media screen and (max-width:81.25em){.header-wrapper .menu .mod_navigation{display:none}}.header-wrapper .menu .mod_navigation>ul>li{display:inline-block}.header-wrapper .menu .mod_navigation ul a,.header-wrapper .menu .mod_navigation ul strong{display:block;padding:0.6em;color:inherit}.header-wrapper .menu .mod_navigation ul li{position:relative}.header-wrapper .menu .mod_navigation ul li:hover>ul{left:0}.header-wrapper .menu .mod_navigation ul ul{position:absolute;top:100%;left:-9999em}.header-wrapper .menu .mod_navigation ul ul a,.header-wrapper .menu .mod_navigation ul ul strong{color:inherit}.header-wrapper .hamburger{display:none}@media screen and (max-width:81.25em){.header-wrapper .hamburger{display:block}}@media screen and (max-width:81.25em){.header-wrapper .search{display:none}}.header-wrapper .search .formbody .widget{display:inline-block}.header-wrapper .search .formbody input{margin-bottom:0px}@media screen and (max-width:81.25em){.header-wrapper .breadcrumb{display:none}}.header-wrapper .breadcrumb li{display:inline-block}.header-wrapper .breadcrumb li:not(:last-child):after{content:"/";display:inline-block;padding-left:0.5rem}.header-wrapper .breadcrumb ul span,.header-wrapper .breadcrumb ul a{padding:0.1rem;display:inline-block;font-size:1.2rem}.main-footer{padding:1.5rem 0rem;background-color:#f3f3f3}.main-footer .footer-area--social ul li{display:inline-block}.main-footer .footer-area--social ul img{width:35px}.icon-burger{display:inline-block;position:relative;width:4rem;height:3rem;border:0px solid #48B100;border-width:4px 0;transition:border 0.4s 0.4s, color 0.4s 0.4s;cursor:pointer}.icon-burger:before,.icon-burger:after{content:"";display:block;position:absolute;top:50%;left:50%;width:100%;height:4px;background-color:#48B100;transform:translate(-50%, -50%) rotate(0deg);transition:transform 0.4s, background 0.4s}.icon-burger--close{border:0 solid transparent;transition-delay:0s}.icon-burger--close:before,.icon-burger--close:after{transition-delay:0.4s}.icon-burger--close:before{transform:translate(-50%, -50%) rotate(135deg)}.icon-burger--close:after{transform:translate(-50%, -50%) rotate(-135deg)}.ce_text ol,.text-container ol,.ce_text ul,.text-container ul{display:table;list-style:none;width:100%}.ce_text li,.text-container li{display:table-row}.ce_text li:before,.text-container li:before{content:"–";display:table-cell;width:1px;padding-right:0.3em}.ce_text li:after,.text-container li:after{content:"";display:block;margin-bottom:0.4em}.ce_text li ul,.text-container li ul,.ce_text li ol,.text-container li ol,.ce_text li li:after,.text-container li li:after{margin-bottom:0}.ce_text ol,.text-container ol{counter-reset:list-count}.ce_text ol li:before,.text-container ol li:before{content:counter(list-count) ".";counter-increment:list-count;text-align:right}.ce_text a,.text-container a{color:#48B100;text-decoration:underline;transition:color 0.3s}.ce_text a:hover,.text-container a:hover{color:#327c00;text-decoration:none}.article_gallery{overflow:hidden}.ce_accordion .toggler:focus{outline:none}.button{display:inline-block;position:relative;max-width:100%;padding:0.6em 1em 0.4em;background-color:#48B100;color:#fff;text-decoration:none;text-align:center;transition:color 0.3s, background 0.3s}.button:hover{background-color:#327c00}.button--align-left{text-align:left}.button--align-right{text-align:right}.button--uppercase{text-transform:uppercase}.button--underline{text-decoration:underline}.button--block{display:block;width:auto}.button--large{font-size:1.3em}.button--small{font-size:0.8em}.inline-list{display:flex;margin:0 -0.7rem}.inline-list__item{margin:0 0.7rem}.hover-tile{position:relative}.hover-tile__hover-content{display:flex;flex-direction:column;justify-content:center;position:absolute;top:0;right:0;bottom:0;left:0;margin:0;padding:1rem;color:#fff;background-color:rgba(72, 177, 0, 0.8);visibility:hidden;opacity:0;transition:opacity 0.8s, visibility 0s 0.8s;text-align:center}.hover-tile__hover-content>*{margin-right:auto;margin-left:auto}.hover-tile__hover-content>:last-child{margin-bottom:0}.hover-tile:hover .hover-tile__hover-content{opacity:1;visibility:visible;transition-duration:0.8s, 0s;transition-delay:0s}.hover-tile__span-link{display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:20}.cookie-banner{position:fixed;right:0;bottom:0;left:0;padding-top:1.6rem;padding-bottom:1.6rem;color:#fff;background-color:rgba(72, 177, 0, 0.8)}.cookie-banner__button{text-decoration:none}.input{position:relative}.input+.input{margin-top:1.6rem}.input__label{border-radius:0px;border:1px solid transparent;margin-bottom:1.6rem;padding:0.6rem;transition:color 0.4s, background 0.4s}.input__field{border-radius:0px;border:1px solid transparent;margin-bottom:1.6rem;padding:0.6rem;transition:color 0.4s, background 0.4s;color:#000;background-color:#fff}.input__field:focus{color:#a6a6a6;background-color:#f3f3f3}.input__field:-webkit-autofill{animation-name:onAutoFillStart}.input__field :not(:-webkit-autofill){animation-name:onAutoFillCancel}.input__label,.input__field{margin:0}.input__field{display:block;width:100%;border:1px solid #000;outline:none;background-color:#fff;transition:outline 0.3s, background 0.3s}.js .input__label{position:absolute;top:0;left:0;opacity:1;color:#000;transition:top, left, font-size, padding, color, opacity, transform;transition-duration:0.2s}.js .input__label--static{position:static}.js .input__field:focus{outline:none}.js .input--is-filled-out .input__label{opacity:1}.js .input--has-focus .input__label{opacity:0.8}.js .input--has-focus .input__label,.js .input--is-filled-out .input__label{padding-top:0.1em;padding-left:1.2em;padding-bottom:0.1em;font-size:0.7em;color:inherit;transform:translateY(-100%)}.js .input--is-filled-out .input__label{transition-duration:0.8s;padding-left:0.2em}.js .input--is-filled-out .input__input{color:rbga(#000, 0.9)}@keyframes onAutoFillStart{from{opacity:0.99}to{opacity:1}}@keyframes onAutoFillCancel{from{opacity:0.99}to{opacity:1}}.slick-slider img{width:100%}.slick-slider a{outline:0}.slick-slider-slide,.slick-slider-slide *{outline:none}.dlh_googlemap{height:500px;width:100%}.mm-menu.mm-theme-white{background:#fff;border-color:#000;color:#000}.mm-menu.mm-theme-white .mm-navbar a,.mm-menu.mm-theme-white .mm-navbar>*{color:#000}.mm-menu.mm-theme-white .mm-btn:after,.mm-menu.mm-theme-white .mm-btn:before{border-color:#000}.mm-menu.mm-theme-white .mm-listview{border-color:#000}.mm-menu.mm-theme-white .mm-listview>li .mm-next:after{border-color:#000}.mm-menu.mm-theme-white .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(0, 74, 127, 0.8);tap-highlight-color:rgba(0, 74, 127, 0.8)}.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-theme-white .mm-divider{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-theme-white label.mm-check:before{border-color:#000}.mm-menu.mm-theme-white em.mm-counter{color:#000}.mm-menu.mm-theme-white .mm-fixeddivider span{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-keyboardfocus a:focus{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-shadow-page.mm-theme-white:after,.mm-menu.mm-shadow-panels.mm-theme-white .mm-panel.mm-opened:nth-child(n+2){box-shadow:0 0 10px rgba(0, 0, 0, 0.2)}.mm-menu.mm-theme-white .mm-search input{background:rgba(0, 74, 127, 0.8);color:#000}.mm-menu.mm-theme-white .mm-noresultsmsg,.mm-menu.mm-theme-white .mm-indexer a{color:#000}.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a:not(.mm-fullsubopen):hover{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+span{background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected:not(.mm-fullsubopen){background:rgba(0, 74, 127, 0.8)}.mm-menu.mm-theme-white label.mm-toggle{background:#000}.mm-menu.mm-theme-white label.mm-toggle:before{background:#fff}.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle{background:#f3f3f3}
h1{
	font-size: 35px;
}
h2{
	font-size: 30px;
}
.flex-img > ul, .flex-img > figure{
	display: flex;
	justify-content: center;
}
.ce_gallery ul.cols_3{
	justify-content: space-between;
}
#aktuelles > .flex-img{
	align-items: center;
}
.flex-img{
	display: flex;
}
.event, .bg-grey{
	background: #CBCBCB;
	padding: 20px;
}
.bg-grey{
	padding: 20px;
	background-color: #CBCBCB;
}
.white-font{
	color: white;
}
.bg-img{
	background-image: url("/files/content/images/home/background_events.jpg");
	background-size: cover;
}
.bg-img2{
	background-image: url("/files/content/images/home/background-aktuelles.jpg");
	background-size: cover; 
}
.mod_eventlist h2{
	margin-top: 0;
}
.font-size{
	font-size: 45px;
}
.bg-transparent{
	opacity: 0.9;
}
.border-right{
	border-right: 1px solid white;
}
.margin-top{
	margin-top: 30px;
}
.margin-bottom{
	margin-bottom: 30px;
}
#header, #footer{
	background-color: #9D97A6;
	font-size: 20px;
}
#inhalt-2 h2{
	font-size: 40px;
	text-align: center;
}
#ctrl_2{
	padding: 6px;
}
.image_container img, .margin-bottom-line{
	margin-bottom: 15px;
}
input, select, textarea{
	margin-bottom: 2.5rem;
}
::selection{
	background: #aab0ae;
}
button{
	color: black;
	border: 1px solid #CBC7CB;
	border-radius: 0;
	background: #CBC7CB;
	padding: 10px;
	transition: .4s;
}
button:hover{
	color: white;
	background: #9D97A6;
	border: 1px solid black;
	border-color: #9D97A6;
	border-radius: 1px;
}
.ce_text a, .text-container a{
	text-decoration: none;
	transition: none;
	color: white;
}
a{
	color: inherit;
	transition: .3s;
}
a:hover{
	color: #647A7A;
}
.ce_text ul li{
	transition: .5s;
	 display: inline-block;
	 width: 25%;
}
.ce_text ul li:hover{
	color: #c37575;
}
.ce_text ul li:before {
	display: none;
}
.block .image_container * img {
	width: 100%;
	margin-top: 20px;
}
.mod_newslist .block p.more span{
	border: 1px solid black;
	padding: 15px;
	transition: .6s;
}
.mod_newslist .block p.more span:hover{
	background: #c37575;
	color: white;
	border-color: #c37575;
}
.mod_newsreader > .block > .ce_image {
	margin-left: calc(-100vw / 2 + 1200px / 2);
	margin-right: calc(-100vw / 2 + 1200px / 2);
} 
.mod_newsreader > .block > .ce_image img {
	width: 100%;
	max-height: 50vh;
	object-fit: cover;
}
@media screen and (max-width: 420px){
	.image_container img{
		margin-bottom: 0;
	}
}
