@import url("https://fonts.googleapis.com/css?family=PT+Sans|Roboto+Slab:400,700");
/* 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;
}
.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';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/./ajax-loader.gif") center center no-repeat;
}

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

    src: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/./fonts/slick.eot");
    src: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/./fonts/slick.eot?#iefix") format('embedded-opentype'), url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/./fonts/slick.woff") format('woff'), url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/./fonts/slick.ttf") format('truetype'), url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/./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;
}

.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
  font-size: 15px;
  background: #333;
  color: #fff;
  box-shadow: 0 0 5px 5px #222 inset;
}
.sidr .sidr-inner {
  padding: 0 0 15px;
}
.sidr .sidr-inner > p {
  margin-left: 15px;
  margin-right: 15px;
}
.sidr.right {
  left: auto;
  right: -260px;
}
.sidr.left {
  left: -260px;
  right: auto;
}
.sidr h1,
.sidr h2,
.sidr h3,
.sidr h4,
.sidr h5,
.sidr h6 {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFhMWExYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #1a1a1a));
  background-image: -moz-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: -webkit-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: linear-gradient(#4d4d4d, #1a1a1a);
  font-size: 11px;
  font-weight: normal;
  padding: 0 15px;
  margin: 0 0 5px;
  color: #fff;
  line-height: 24px;
  box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.2);
}
.sidr p {
  font-size: 13px;
  margin: 0 0 12px;
}
.sidr p a {
  color: rgba(255, 255, 255, 0.9);
}
.sidr > p {
  margin-left: 15px;
  margin-right: 15px;
}
.sidr ul {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #4d4d4d;
}
.sidr ul li {
  display: block;
  margin: 0;
  line-height: 48px;
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #1a1a1a;
}
.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
  border-top: 0;
  line-height: 49px;
}
.sidr ul li:hover > a,
.sidr ul li:hover > span, .sidr ul li.active > a,
.sidr ul li.active > span, .sidr ul li.sidr-class-active > a,
.sidr ul li.sidr-class-active > span {
  box-shadow: 0 0 15px 3px #222 inset;
}
.sidr ul li a,
.sidr ul li span {
  padding: 0 15px;
  display: block;
  text-decoration: none;
  color: #fff;
}
.sidr ul li ul {
  border-bottom: 0;
  margin: 0;
}
.sidr ul li ul li {
  line-height: 40px;
  font-size: 13px;
}
.sidr ul li ul li:last-child {
  border-bottom: 0;
}
.sidr ul li ul li:hover, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active {
  border-top: 0;
  line-height: 41px;
}
.sidr ul li ul li:hover > a,
.sidr ul li ul li:hover > span, .sidr ul li ul li.active > a,
.sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a,
.sidr ul li ul li.sidr-class-active > span {
  box-shadow: 0 0 15px 3px #222 inset;
}
.sidr ul li ul li a,
.sidr ul li ul li span {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 30px;
}
.sidr form {
  margin: 0 15px;
}
.sidr label {
  font-size: 13px;
}
.sidr input[type="text"],
.sidr input[type="password"],
.sidr input[type="date"],
.sidr input[type="datetime"],
.sidr input[type="email"],
.sidr input[type="number"],
.sidr input[type="search"],
.sidr input[type="tel"],
.sidr input[type="time"],
.sidr input[type="url"],
.sidr textarea,
.sidr select {
  width: 100%;
  font-size: 13px;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 10px;
  border-radius: 2px;
  border: 0;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: block;
  clear: both;
}
.sidr input[type=checkbox] {
  width: auto;
  display: inline;
  clear: none;
}
.sidr input[type=button],
.sidr input[type=submit] {
  color: #333;
  background: #fff;
}
.sidr input[type=button]:hover,
.sidr input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.9);
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/../JS/fancyBox/source/fancybox_sprite.png");
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/../JS/fancyBox/source/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/blank.gif"); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/../JS/fancyBox/source/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/../JS/fancyBox/source/fancybox_sprite@2x.png");
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url("../../../../typo3conf/ext/dauskonzept/Resources/Public/Style/../JS/fancyBox/source/fancybox_loading@2x.gif");
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}

/* ==========================================================================
    @creator                : foehr;
    @contact                : http://www.foehr-vermietung.de;
    ========================================================================== */
/*  ==========================================================================
    @section                : Eric Meyer reset;
    @source                 : http://meyerweb.com/eric/tools/css/reset/;
    ========================================================================== */
/*  ==========================================================================
    Custom Reset daus:konzept
    ========================================================================== */
div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style-position: inside;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*  ==========================================================================
    @section                : Remove focus;
    @source                 : http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links;
    ========================================================================== */
a:focus,
button:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
/*  ==========================================================================
    @section                : Box model reset;
    @source                 : http://www.paulirish.com/2012/box-sizing-border-box-ftw/;
    ========================================================================== */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*  ==========================================================================
    @section                : Remove gray highlight when tapping links in Mobile Safari;
    @source                 : https://css-tricks.com/snippets/css/remove-gray-highlight-when-tapping-links-in-mobile-safari/
    ========================================================================== */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*  ==========================================================================
    @section                : Prevent mobile safari from resizing text
    @source                 : http://blog.55minutes.com/2012/04/iphone-text-resizing/
    ========================================================================== */
/*  ==========================================================================
    @section                : Remove default styles from input on iOS
    @source                 : http://stackoverflow.com/questions/7599533/ios-forces-rounded-corners-and-glare-on-inputs
    ========================================================================== */
input {
  -webkit-appearance: none;
  border-radius: 0;
}
/*  ==========================================================================
    @section                : Remove default styles from input on iOS
    @source                 : https://maximilianhoffmann.com/posts/better-font-rendering-on-osx
    ========================================================================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ==========================================================================
    @creator                : Print styles
    @contact                : https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
    ========================================================================== */
@media print {
  *,
  *:after,
  *:before,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
@font-face {
  font-family: 'Font Awesome';
  src: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.eot");
  src: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.eot?#iefix") format('embedded-opentype'), url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.woff") format('woff'), url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf") format('truetype'), url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.svg#svgFontName") format('svg');
}
.sidr,
.sidr h1,
.sidr h2,
.sidr h3,
.sidr h4,
.sidr h5,
.sidr h6,
.sidr ul li:hover > a,
.sidr ul li:hover > span,
.sidr ul li.active > a,
.sidr ul li.active > span,
.sidr ul li.sidr-class-active > a,
.sidr ul li.sidr-class-active > span,
.sidr ul li ul li:hover > a,
.sidr ul li ul li:hover > span,
.sidr ul li ul li.active > a,
.sidr ul li ul li.active > span,
.sidr ul li ul li.sidr-class-active > a,
.sidr ul li ul li.sidr-class-active > span {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.sidr ul,
.sidr ul li {
  border: none;
}
.sidr ul li:hover,
.sidr ul li.active,
.sidr ul li.sidr-class-active {
  line-height: 48px;
}
.sidr li {
  line-height: 55px;
  padding-left: 10px;
}
.sidr li:hover {
  text-decoration: none;
}
.sidr li a {
  display: block;
  text-doceration: none;
  color: #fff;
  width: 100%;
}
.sidr li a:hover {
  text-decoration: none;
}
.slick-loading .slick-list {
  background: #ffffff url("/typo3conf/ext/dauskonzept/Resources/Public/JS/slick/slick/ajax-loader.gif") center center no-repeat;
}
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("/typo3conf/ext/dauskonzept/Resources/Public/JS/slick/slick/fonts/slick.eot");
  src: url("/typo3conf/ext/dauskonzept/Resources/Public/JS/slick/slick/fonts/slick.eot?#iefix") format('embedded-opentype'), url("/typo3conf/ext/dauskonzept/Resources/Public/JS/slick/slick/fonts/slick.woff") format('woff'), url("/typo3conf/ext/dauskonzept/Resources/Public/JS/slick/slick/fonts/slick.ttf") format('truetype'), url("/typo3conf/ext/dauskonzept/Resources/Public/JS/slick/slick/fonts/slick.svg#slick") format('svg');
}
.container {
  width: 1700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1789px) {
  .container {
    width: 1500px;
  }
}
@media (max-width: 1550px) {
  .container {
    width: 1300px;
  }
}
@media (max-width: 1350px) {
  .container {
    width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 767px;
  }
}
@media (max-width: 850px) {
  .container {
    width: 650px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 370px) {
  .container {
    width: 95%;
  }
}
a {
  outline: 0;
}
a:active,
a:focus,
a:hover {
  outline: 0;
  text-decoration: none;
}
*::-moz-selection {
  background-color: #e30613;
  color: #ffffff;
}
*::selection {
  background-color: #e30613;
  color: #ffffff;
}
*::-o-selection {
  background-color: #e30613;
  color: #ffffff;
}
*::-moz-selection {
  background-color: #e30613;
  color: #ffffff;
}
*::-webkit-selection {
  background-color: #e30613;
  color: #ffffff;
}
input,
textarea {
  -webkit-appearance: none;
}
.clearfix::after,
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
.clearfix {
  *zoom: 1;
  /* Für den IE6 und IE7 */
}
body {
  font-family: 'Roboto Slab', serif;
  margin: 0;
  padding: 0;
  outline: 0 none;
}
header {
  position: relative;
  min-height: 200px;
  z-index: 10;
}
h2 {
  font-size: 80px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
h3 {
  padding: 16px 0;
  font-size: 26px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.slick-slide {
  outline: 0 none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}
p {
  font-family: 'PT Sans', sans-serif;
}
p b,
p strong {
  font-weight: bold;
}
.menuButton {
  display: none;
  background: #000000 url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/menu_button.png") center center no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  border: 20px solid #000000;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  cursor: pointer;
}
.menuButton:hover {
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.menuButtonHidden {
  display: none;
  content: "";
  background: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/cross.svg") center center no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  position: absolute;
  background-color: black;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  border: 20px solid #000000;
  z-index: 10;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  z-index: 10;
  left: -95px;
  top: 65px;
}
.dropdown-content .submenu {
  position: absolute;
  top: 70px;
  left: 233px;
  display: none;
}
.dropdown-content .sub:hover .submenu {
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.dropdown-content .list {
  list-style: none;
  text-align: center;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}
.dropdown-content .list li {
  opacity: 0;
  -webkit-animation: fadeIn 0.9s 1;
  animation: fadeIn 0.9s 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background-color: black;
}
.dropdown-content .list li:hover a {
  color: #e30613;
}
.dropdown-content .list li.cur a {
  color: #e30613;
}
.dropdown-content .list li .submenu li a {
  color: #ffffff;
}
.dropdown-content .list li .submenu li.cur a,
.dropdown-content .list li .submenu li:hover a {
  color: #e30613;
}
.dropdown-content .list li::before {
  content: "";
  width: 230px;
  height: 2px;
  background-color: white;
  display: block;
}
.dropdown-content .list li:first-child::before {
  display: none;
}
.dropdown-content .list li:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.dropdown-content .list li:nth-child(3) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.dropdown-content .list li:nth-child(4) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.dropdown-content .list li:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.dropdown-content .list li:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.dropdown-content .list li:nth-child(7) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.dropdown-content .list li:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.dropdown-content .list li:nth-child(9) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
.dropdown-content .list li:nth-child(10) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.dropdown-content a {
  color: white;
  padding: 7px 40px;
  text-decoration: none;
  display: block;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 54px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.closeButton {
  content: "";
  background: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/cross.svg") center center no-repeat;
  background-size: contain;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.sidemenu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: #000000;
  padding: 40px 0;
  z-index: 150;
  overflow: auto;
  -webkit-transition: left 0.25s ease;
  transition: left 0.25s ease;
}
.sidemenu.show {
  left: 0;
}
.sidemenu .sidenav {
  margin-top: 80px;
  list-style: none;
}
.sidemenu .sidenav a {
  font-size: 20px;
  line-height: 60px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.sidemenu .sidenav a:hover {
  color: #e30613;
}
.sidemenu .sidenav li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid white;
}
.sidemenu .sidenav li.cur a {
  color: #e30613;
}
.sidemenu .sidenav li .submenu li a {
  color: #ffffff;
}
.sidemenu .sidenav li .submenu li.cur a,
.sidemenu .sidenav li .submenu li:hover a {
  color: #e30613;
}
.sidemenu .sidenav li.sub::after {
  content: "";
  height: 60px;
  width: 1px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  right: 60px;
}
.sidemenu .sidenav li a {
  padding-left: 40px;
}
.sidemenu .sidenav li:last-child {
  border-bottom: none;
}
.sidemenu .sidenav .submenu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.sidemenu .sidenav .submenu.show {
  max-height: 750px;
}
.sidemenu .sidenav .submenu li {
  width: 100%;
}
.sidemenu .sidenav .submenu li:first-child {
  border-top: 1px solid white;
}
.sidemenu .sidenav .submenu li a {
  padding-left: 80px;
}
.sidemenu .sidenav .openSub {
  cursor: pointer;
  background: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/arrow-down.svg") center center no-repeat;
  background-size: 20px 20px;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.sidemenu .sidenav .openSub.show {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.scrollButton {
  background: #000000 url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/double_vektor_down.png") center center no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  position: absolute;
  border: 20px solid #000000;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  cursor: pointer;
}
.scrollButton:hover {
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.show {
  display: block;
}
.cookieHint {
  position: fixed;
  display: none;
  bottom: 25px;
  right: 25px;
  width: 400px;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e30613;
  color: #fff;
  z-index: 100;
}
.cookieHint.hide {
  display: inline-block;
}
.cookieHint a {
  padding: 5px 15px;
  border: 1px solid #fff;
  display: inline-block;
  color: #fff;
  transition: all 0.3s;
}
.cookieHint a:hover {
  background-color: #fff;
  color: #e30613;
}
.cookieHint p {
  margin-bottom: 25px;
}
.cookieHint .closeHint {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/images/close.svg") center center no-repeat;
  background-size: contain;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cookieHint .closeHint:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cookieHint a {
  text-decoration: none;
}
.cookieHint .cookieHint-button {
  cursor: pointer;
  padding: 5px 15px;
  float: right;
  background-color: #fff;
  border: 1px solid #fff;
  color: #e30613;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cookieHint .cookieHint-button:hover {
  background-color: #e30613;
  color: #fff;
}
@media (max-width: 1789px) {
  h2 {
    font-size: 70px;
  }
  h3 {
    font-size: 22px;
  }
  .menuButton {
    width: 70px;
    height: 70px;
  }
  .menuButtonHidden {
    width: 70px;
    height: 70px;
  }
  .dropdown-content {
    left: -110px;
  }
  .scrollButton {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 16px;
  }
  .startSection .startSection-title-overlay {
    height: 50px;
  }
  .menuButton {
    width: 65px;
    height: 65px;
  }
  .menuButtonHidden {
    width: 65px;
    height: 65px;
  }
  .submenu .scrollButton {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 14px;
  }
  .startSection .startSection-title-overlay {
    height: 50px;
  }
  .menuButton {
    width: 60px;
    height: 60px;
  }
  .menuButtonHidden {
    width: 60px;
    height: 60px;
  }
  .scrollButton {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 430px) {
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 10px;
  }
  .startSection .startSection-title-overlay {
    height: 40px;
  }
  .cookieHint {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 375px) {
  .menuButtonHidden {
    left: 255px;
  }
}
@media (max-width: 370px) {
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 12px;
  }
  .startSection .startSection-title-overlay {
    height: 30px;
  }
}
@media (max-width: 360px) {
  .menuButtonHidden {
    left: 245px;
  }
}
.startSection {
  height: 100vh;
  position: relative;
  z-index: -1000;
}
.startSection h3 {
  background: #000000;
  padding: 6px 0;
}
.logo {
  position: absolute;
  bottom: 55%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.startSection-title-overlay {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e30613;
  mix-blend-mode: multiply;
  height: 80px;
  width: 100%;
  position: absolute;
  top: 50%;
}
.startSection-headings {
  top: 50%;
  position: relative;
}
@media (max-width: 1940px) {
  .logo {
    width: 240px;
    height: auto;
  }
}
@media (max-width: 1789px) {
  .logo {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 160px;
    height: auto;
  }
}
.submenu h2 {
  color: #000000;
  padding-top: 150px;
}
.submenu h3 {
  color: #e30613;
  margin-bottom: 100px;
}
.submenu .scrollButton {
  position: relative;
  bottom: 0;
  margin-top: 80px;
  margin-bottom: 135px;
}
.menuLink {
  display: inline-block;
  margin-bottom: 150px;
  width: 500px;
  height: 225px;
  position: relative;
}
.submenu-content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.submenu-content .menuLink:nth-child(8),
.submenu-content .menuLink:nth-child(9) {
  margin-bottom: 0;
}
.submenu-content .menuLink-inner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.submenu-content .menuLink-inner:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: scale(1.2);
  -moz-transition: scale(1.2);
  -o-transition: scale(1.2);
}
.submenu-content .menuLink-inner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.submenu-content .menuLink-inner-content p {
  font-family: 'Roboto Slab', serif;
}
.submenu-content p {
  color: #ffffff;
  text-decoration: none;
  font-size: 44px;
  font-weight: 700;
  margin-top: 20px;
}
@media (max-width: 1789px) {
  .menuLink {
    width: 450px;
    height: 200px;
    margin-bottom: 100px;
  }
  .submenu img {
    width: 60px;
    height: auto;
  }
  .submenu-content p {
    font-size: 35px;
  }
}
@media (max-width: 1550px) {
  .menuLink {
    width: 400px;
    height: 200px;
    margin-bottom: 75px;
  }
  .submenu-content p {
    font-size: 38px;
  }
}
@media (max-width: 1350px) {
  .menuLink {
    width: 350px;
    height: 150px;
    margin-bottom: 30px;
  }
  .submenu img {
    width: 50px;
    height: auto;
  }
  .submenu-content p {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .submenu-content .menuLink:nth-child(10) {
    margin: 0;
  }
}
@media (max-width: 1050px) {
  .submenu .scrollButton {
    margin-bottom: 50px;
  }
}
@media (max-width: 850px) {
  .submenu h2 {
    padding-top: 100px;
  }
  .menuLink {
    width: 300px;
  }
}
@media (max-width: 750px) {
  .submenu h2 {
    padding-top: 75px;
  }
  .submenu h3 {
    margin-bottom: 75px;
  }
  .submenu-content {
    display: block;
  }
  .menuLink {
    width: 500px;
    height: 250px;
  }
  .submenu img {
    width: 70px;
    height: auto;
  }
  .submenu-content p {
    font-size: 34px;
  }
  .submenu-content .menuLink:nth-child(4),
  .submenu-content .menuLink:nth-child(5),
  .submenu-content .menuLink:nth-child(6),
  .submenu-content .menuLink:nth-child(7),
  .submenu-content .menuLink:nth-child(8),
  .submenu-content .menuLink:nth-child(9) {
    margin-bottom: 30px;
  }
  .submenu .scrollButton {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
@media (max-width: 620px) {
  .submenu h2 {
    padding-top: 50px;
  }
  .submenu h3 {
    margin-bottom: 50px;
  }
  .submenu-content {
    display: block;
  }
  .menuLink {
    width: 400px;
    height: 150px;
  }
  .submenu img {
    width: 60px;
    height: auto;
  }
  .submenu-content p {
    font-size: 26px;
  }
}
@media (max-width: 430px) {
  .submenu h3 {
    margin-bottom: 25px;
  }
  .menuLink {
    width: 300px;
    height: 150px;
  }
  .submenu img {
    width: 50px;
    height: auto;
  }
  .submenu-content p {
    font-size: 20px;
  }
}
@media (max-width: 370px) {
  .menuLink {
    width: 250px;
    height: 150px;
  }
  .submenu img {
    width: 50px;
    height: auto;
  }
  .submenu-content p {
    font-size: 20px;
  }
}
.separator {
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  clear: both;
}
.separator h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .separator {
    background-size: cover;
  }
}
.news-heading {
  padding-top: 150px;
  margin-bottom: 70px;
}
.news-heading h2 {
  color: #000000;
}
.news-heading h3 {
  color: #e30613;
}
.slick-prev::before {
  content: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/slick_prev_next.svg");
}
.slick-next {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
.slick-next::before {
  content: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/slick_prev_next.svg");
}
.slick-dots {
  position: absolute;
  top: 107%;
}
.slick-dots li.slick-active button::before {
  color: red;
}
.slick-dots li button::before {
  opacity: 1;
  font-size: 10px;
}
.news-overview {
  width: 1800px;
}
.news-overview a {
  display: inline-block;
  width: 100%;
}
.news-overview .news-article {
  margin: 0 50px;
  display: block;
}
.news-overview .news-bgImage {
  height: 280px;
  display: block;
}
.news-overview .news-heading-wrapper {
  height: 100px;
  background-color: #f6f6f6;
  border-bottom: 5px solid #e30613;
}
.news-overview .slick-prev {
  width: 50px;
  height: 50px;
  left: -110px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0.7;
}
.news-overview .slick-prev:hover {
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.news-overview .slick-next {
  width: 50px;
  height: 50px;
  right: -110px;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.news-overview .slick-next:hover {
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.news-overview .news-list-view {
  margin-bottom: 170px;
}
.news-overview .news-list-view .header {
  padding-top: 20px;
  margin-bottom: 5px;
  text-align: center;
  font-size: 24px;
  color: #e30613;
  text-transform: uppercase;
}
.news-overview .news-list-view .teaser-text {
  text-align: center;
  font-size: 20px;
  color: #000000;
}
.news-overview .news-list-view .more {
  text-align: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  background-color: black;
  display: block;
  padding: 10px 0;
  text-transform: uppercase;
}
.news-overview .footer {
  display: none;
}
@media (max-width: 2100px) {
  .news-overview {
    width: 1400px;
  }
  .news-overview .news-heading-wrapper {
    height: 130px;
  }
}
@media (max-width: 1789px) {
  .news-overview {
    width: 1200px;
  }
  .news-heading-wrapper {
    height: 100px;
  }
}
@media (max-width: 1550px) {
  .news-overview {
    width: 1000px;
  }
}
@media (max-width: 1350px) {
  .news-overview {
    width: 800px;
  }
}
@media (max-width: 1050px) {
  .news-heading {
    padding-top: 100px;
  }
  .news-overview {
    width: 600px;
  }
  .news-overview .news-list-view {
    margin-bottom: 130px;
  }
  .news-overview .slick-prev {
    left: -50px;
  }
  .news-overview .slick-next {
    right: -50px;
  }
}
@media (max-width: 850px) {
  .news-heading {
    padding-top: 50px;
  }
  .news-overview {
    width: 400px;
  }
  .news-overview .news-bgImage {
    height: 200px;
    display: block;
  }
}
@media (max-width: 650px) {
  .news-overview {
    width: 350px;
  }
  .news-overview .news-bgImage {
    height: 150px;
    display: block;
  }
  .news-overview .news-heading-wrapper {
    height: 150px;
  }
  .news-overview .news-list-view .header {
    padding-top: 20px;
    margin-bottom: 5px;
    font-size: 20px;
  }
  .news-overview .news-list-view .teaser-text {
    text-align: center;
    font-size: 18px;
    color: #000000;
  }
  .news-overview .news-list-view .more {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .slick-dots {
    top: 113%;
  }
  .news-overview {
    width: 300px;
  }
  .news-overview .slick-prev {
    left: 30px;
    top: 400px;
  }
  .news-overview .slick-next {
    right: 30px;
    top: 400px;
  }
  .news-overview .news-article {
    margin: 0 10px;
  }
}
.sponsor-wrapper {
  background-color: black;
}
.sponsor-wrapper h3 {
  color: #e30613;
}
.sponsor-heading {
  padding-top: 70px;
}
.logo-slide-element {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 160px;
  margin: 75px;
}
.download-heading h2 {
  margin-top: 90px;
  color: #000000;
}
.download-heading h3 {
  color: #e30613;
}
.download-slider .slick-prev {
  width: 50px;
  height: 50px;
  left: -110px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0.7;
  z-index: 10;
}
.download-slider .slick-prev:hover {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 1;
}
.download-slider .slick-next {
  width: 50px;
  height: 50px;
  right: -110px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0.7;
}
.download-slider .slick-next:hover {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 1;
}
.downloadElement {
  display: inline-block;
  text-align: center;
  margin-bottom: 100px;
}
.downloadElement h3 {
  color: #000000;
  margin-bottom: 40px;
  font-size: 34px;
}
.downloadElement .icon-wrapper {
  margin-top: 40px;
  margin-bottom: 25px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 140px;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.downloadElement a {
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 28px;
  color: #ffffff;
  background-color: black;
  text-decoration: none;
  text-transform: uppercase;
  border-right: 20px solid black;
  border-radius: 30px;
  position: relative;
  padding-left: 70px;
  display: inline-block;
  line-height: 40px;
}
.downloadElement a:before {
  content: url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/icons/pdf.png");
  background-color: red;
  border-radius: 50px;
  position: absolute;
  top: -10px;
  left: 0px;
  width: 60px;
  height: 60px;
  padding-top: 10px;
}
.download-slider {
  width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1789px) {
  .download-slider {
    width: 1000px;
  }
}
@media (max-width: 1350px) {
  .download-slider {
    width: 800px;
  }
}
@media (max-width: 1050px) {
  .download-slider .slick-prev {
    left: -50px;
  }
  .download-slider .slick-next {
    right: -50px;
  }
}
@media (max-width: 950px) {
  .download-slider {
    width: 600px;
  }
}
@media (max-width: 750px) {
  .download-slider {
    width: 400px;
  }
}
@media (max-width: 550px) {
  .download-slider {
    width: 250px;
  }
  .downloadElement .icon-wrapper {
    margin-top: 40px;
    margin-bottom: 25px;
    height: 120px;
    width: 120px;
  }
  .downloadElement h3 {
    color: #000000;
    margin-bottom: 40px;
    font-size: 22px;
  }
  .downloadElement a {
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    background-color: black;
    text-decoration: none;
    text-transform: uppercase;
    border-right: 20px solid black;
    border-radius: 30px;
    position: relative;
    padding-left: 70px;
    display: inline-block;
    line-height: 40px;
  }
  .downloadElement a:before {
    border-radius: 50px;
    top: -10px;
    left: 0px;
    width: 60px;
    height: 60px;
    padding-top: 10px;
  }
}
@media (max-width: 370px) {
  .download-slider .slick-prev {
    left: 50px;
    top: 360px;
  }
  .download-slider .slick-next {
    right: 50px;
    top: 360px;
  }
}
.contactForm {
  background-color: black;
}
.contactForm h2 {
  padding-top: 70px;
}
.contactForm h3 {
  color: #e30613;
  margin-bottom: 40px;
}
.contactForm #kontaktformular {
  margin-bottom: 50px;
  width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.contactForm #kontaktformular input,
.contactForm #kontaktformular textarea {
  font-family: 'Roboto Slab', serif;
}
.contactForm #kontaktformular textarea {
  overflow: auto;
}
.contactForm #kontaktformular h2 {
  display: none;
}
.contactForm #kontaktformular .control-label {
  display: none;
}
.contactForm #kontaktformular .form-control {
  width: 100%;
  height: 50px;
  font-size: 18px;
  padding-left: 10px;
  border: none;
}
.contactForm #kontaktformular .btn {
  width: 100%;
  border: none;
  background-color: #e30613;
  height: 50px;
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.contactForm #kontaktformular .btn:hover {
  background-color: #ffffff;
  color: #e30613;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.contactForm #kontaktformular .form-group {
  margin-bottom: 6px;
}
.contactForm #kontaktformular #kontaktformular-message {
  height: 290px;
  display: block;
  padding-top: 10px;
}
.contactForm #kontaktformular .checkbox label {
  display: block;
  overflow: auto;
  margin: 10px 0;
}
.contactForm #kontaktformular .checkbox label:after {
  content: "";
  clear: both;
  display: table;
}
.contactForm #kontaktformular .checkbox input {
  margin-left: 0;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  display: block;
  float: left;
  margin-right: 10px;
}
.contactForm #kontaktformular .checkbox input:checked {
  background: #ffffff url("../../typo3conf/ext/dauskonzept/Resources/Public/Include/images/check.png") center center no-repeat;
  background-size: contain;
}
.contactForm #kontaktformular .checkbox input:focus {
  outline: 0 none;
}
.contactForm #kontaktformular .checkbox span {
  float: left;
  color: #ffffff;
  line-height: 30px;
}
.contactForm #kontaktformular .checkbox span a {
  color: #e30613;
  text-decoration: none;
}
.contactForm .imprint {
  background-color: #e30613;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
.contactForm .imprint a {
  font-weight: bold;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.contactForm .imprint a:hover {
  color: #000000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}
@media (max-width: 1789px) {
  .contactForm #kontaktformular {
    width: 820px;
  }
}
@media (max-width: 991px) {
  .contactForm #kontaktformular {
    width: 700px;
  }
}
@media (max-width: 767px) {
  .contactForm #kontaktformular {
    width: 580px;
  }
}
@media (max-width: 600px) {
  .contactForm .imprint {
    line-height: 30px;
    font-size: 14px;
  }
  .contactForm #kontaktformular {
    width: 470px;
  }
  .contactForm #kontaktformular .form-control {
    height: 30px;
  }
  .contactForm #kontaktformular .btn {
    height: 30px;
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 490px) {
  .contactForm #kontaktformular {
    width: 90%;
  }
}
.greeting-heading h2 {
  color: #000000;
  padding-top: 170px;
}
.greeting-heading h3 {
  color: #e30613;
  margin-bottom: 75px;
}
.greeting-text {
  margin-bottom: 110px;
}
.greeting-text p {
  color: #000000;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Roboto Slab', serif;
}
@media (max-width: 1789px) {
  .greeting-heading h2 {
    padding-top: 130px;
  }
}
@media (max-width: 991px) {
  .greeting-heading h2 {
    padding-top: 100px;
  }
  .greeting-text p {
    font-size: 20px;
    width: 750px;
  }
}
@media (max-width: 850px) {
  .greeting-heading h2 {
    padding-top: 80px;
  }
  .greeting-text p {
    width: 550px;
  }
}
@media (max-width: 600px) {
  .greeting-text p {
    font-size: 18px;
    width: 400px;
  }
}
@media (max-width: 450px) {
  .greeting-heading h2 {
    padding-top: 60px;
  }
  .greeting-heading h3 {
    margin-bottom: 25px;
  }
  .greeting-text p {
    font-size: 18px;
    width: 300px;
    margin-bottom: 50px;
    line-height: 22px;
  }
}
.gallery-wrapper {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}
.gallery-slider {
  width: 1800px;
  margin: 23% auto 400px;
}
.gallery-slider .slick-prev {
  width: 50px;
  height: 50px;
  left: -110px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0.7;
}
.gallery-slider .slick-prev:hover {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 1;
}
.gallery-slider .slick-next {
  width: 50px;
  height: 50px;
  right: -110px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0.7;
}
.gallery-slider .slick-next:hover {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 1;
}
.gallery-heading {
  position: absolute;
  top: 10%;
  width: 100%;
}
.gallery-heading h3 {
  background-color: black;
}
.gallery-heading-overlay {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e30613;
  mix-blend-mode: multiply;
  height: 80px;
  width: 100%;
  position: absolute;
  top: 10%;
}
.picture-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
  height: 280px;
  width: 500px;
  border: 5px solid white;
}
.galleryElement {
  width: 500px;
  margin: 0 50px;
  display: inline-block;
}
.gallery-text-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 500px;
  background-color: black;
}
.gallery-text-wrapper h3 {
  padding-top: 15px;
  margin-bottom: 10px;
}
.gallery-text-wrapper p {
  font-size: 20px;
  color: #e30613;
  font-family: 'Roboto Slab', serif;
  text-align: center;
  padding-bottom: 15px;
}
@media (max-width: 2100px) {
  .gallery-slider {
    width: 1400px;
  }
}
@media (max-width: 1789px) {
  .gallery-slider {
    width: 1000px;
    margin-top: 30%;
  }
  .picture-wrapper {
    width: 400px;
  }
  .gallery-text-wrapper {
    width: 400px;
  }
}
@media (max-width: 1250px) {
  .gallery-slider {
    width: 600px;
    margin-top: 40%;
  }
  .gallery-slider .slick-prev {
    left: -60px;
  }
  .gallery-slider .slick-next {
    right: -60px;
  }
}
@media (max-width: 991px) {
  .gallery-slider {
    margin-top: 50%;
  }
}
@media (max-width: 750px) {
  .slick-dotted.slick-slider {
    margin-bottom: 200px;
  }
  .gallery-heading-overlay {
    height: 60px;
  }
  .gallery-slider {
    margin-top: 60%;
  }
  .gallery-slider .slick-prev {
    left: 120px;
    top: 405px;
  }
  .gallery-slider .slick-next {
    right: 120px;
    top: 405px;
  }
  .gallery-slider .slick-dots {
    top: 100%;
  }
}
@media (max-width: 600px) {
  .gallery-slider {
    width: 400px;
  }
  .gallery-slider .slick-prev {
    left: 50px;
  }
  .gallery-slider .slick-next {
    right: 50px;
  }
  .gallery-slider .slick-dots {
    top: 105%;
  }
  .gallery-heading-overlay {
    height: 40px;
  }
  .picture-wrapper {
    width: 300px;
  }
  .gallery-text-wrapper {
    width: 300px;
  }
  .gallery-text-wrapper p {
    font-size: 14px;
  }
}
@media (max-width: 401px) {
  .gallery-slider {
    width: 350px;
  }
  .picture-wrapper {
    width: 250px;
  }
  .gallery-text-wrapper {
    width: 250px;
  }
}
@media (max-width: 351px) {
  .gallery-slider {
    width: 300px;
  }
  .picture-wrapper {
    width: 200px;
  }
  .gallery-text-wrapper {
    width: 200px;
  }
  .gallery-slider .slick-prev {
    left: 30px;
  }
  .gallery-slider .slick-next {
    right: 30px;
  }
}
.location-heading {
  display: block;
  width: 500px;
  clear: both;
}
.location-heading h2 {
  font-size: 40px;
  color: #000000;
  text-align: left;
  display: block;
}
.location-heading h3 {
  font-size: 30px;
  color: #e30613;
  text-align: left;
  display: block;
}
.location-heading h4 {
  color: #808080;
  font-weight: bold;
  margin-bottom: 100px;
  display: inline-block;
}
.block-wrapper {
  margin: 170px auto;
}
.location-blockA {
  float: left;
  width: 500px;
}
.location-blockA a {
  text-decoration: none;
  color: black;
}
.location-blockA h4 {
  font-size: 22px;
  font-weight: 700;
}
.location-blockA p {
  color: #000000;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  line-height: 1.8;
}
.location-blockB {
  width: 500px;
  display: inline-block;
  background-color: #e30613;
  margin: 0 100px;
  float: left;
}
.location-blockB .picture-wrapper-leader {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 40%;
  height: 310px;
  float: left;
}
.location-blockB .location-blockB-text {
  float: left;
  width: 60%;
}
.location-blockB .location-blockB-text .leader-text-wrapper {
  max-height: 200px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  z-index: 100;
}
.location-blockB .location-blockB-text .leader-text-wrapper ul {
  list-style: none;
  font-size: 20px;
  padding: 10px;
  font-weight: 700;
}
.location-blockB .location-blockB-text .leader-text-wrapper:hover {
  overflow: scroll;
}
.location-blockB .location-blockB-text a {
  text-decoration: none;
  color: white;
}
.location-blockB .location-blockB-text h2 {
  padding-left: 10px;
  padding-top: 10px;
  text-align: left;
  font-size: 26px;
  background-color: black;
}
.location-blockB .location-blockB-text h3 {
  padding-left: 10px;
  text-align: left;
  font-size: 20px;
  background-color: black;
  color: #e30613;
  padding-bottom: 10px;
  min-height: 44px;
}
.location-blockB .location-blockB-text p {
  padding: 0 10px;
  font-size: 20px;
  color: #ffffff;
  font-family: 'Roboto Slab', serif;
}
.mobile .location-blockB .location-blockB-text .leader-text-wrapper {
  overflow: scroll;
}
@media (max-width: 1940px) {
  .block-wrapper {
    width: 1100px;
  }
  .block-wrapper .js-map {
    width: 100% !Important;
  }
  .location-blockA {
    margin-bottom: 30px;
  }
  .location-blockB {
    margin: 0 0 80px 100px;
  }
}
@media (max-width: 1150px) {
  .location-blockA {
    float: none;
    margin-bottom: 80px;
  }
  .location-blockB {
    margin-left: 0;
  }
  .block-wrapper {
    width: 500px;
  }
}
@media (max-width: 600px) {
  .block-wrapper {
    width: 380px;
  }
  .location-heading {
    width: 380px;
  }
  .location-heading h2 {
    font-size: 30px;
  }
  .location-heading h3 {
    font-size: 22px;
  }
  .location-heading h4 {
    font-size: 18px;
  }
  .location-blockA {
    width: 380px;
  }
  .location-blockB {
    width: 380px;
  }
  .location-blockB .location-blockB-text h3 {
    font-size: 18px;
  }
  .location-blockB .location-blockB-text h4 {
    margin-top: 10px;
  }
}
@media (max-width: 400px) {
  .block-wrapper {
    margin: 75px auto;
    width: 300px;
    text-align: center;
  }
  .location-heading {
    width: 300px;
  }
  .location-heading h2 {
    font-size: 30px;
    text-align: center;
  }
  .location-heading h3 {
    font-size: 18px;
    text-align: center;
  }
  .location-heading h4 {
    font-size: 16px;
  }
  .location-blockA {
    width: 300px;
  }
  .location-blockB {
    width: 300px;
  }
  .location-blockB .picture-wrapper-leader {
    width: 105px;
    height: 100px;
    background-position: top center;
  }
  .location-blockB .location-blockB-text {
    width: 100%;
    float: none;
  }
  .location-blockB .location-blockB-text h2,
  .location-blockB .location-blockB-text h3 {
    float: right;
    width: 195px;
  }
  .location-blockB .location-blockB-text h3 {
    padding-top: 12px;
    font-size: 16px;
  }
  .location-blockB .location-blockB-text h4,
  .location-blockB .location-blockB-text p {
    font-size: 16px;
  }
  .location-blockB .location-blockB-text h4 {
    display: inline-block;
    padding-top: 10px;
    padding-right: 10px;
    margin: 0;
  }
  .location-blockB .location-blockB-text p {
    padding: 10px;
    text-align: left;
  }
  .location-blockB .location-blockB-text ul {
    text-align: left;
  }
}
.news .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news .article h3 {
  color: #000000;
  font-size: 80px;
  width: 100%;
}
.news .article .singleNews-left {
  width: 55%;
}
.news .article .singleNews-right {
  width: 40%;
  display: inline-block;
}
.news .article .singleNews-right .slick-prev {
  left: 0;
  z-index: 10;
}
.news .article .singleNews-right .slick-next {
  right: 0;
  z-index: 10;
}
.news .article .goBack-button {
  outline: 0 none;
  -webkit-appearance: none;
  font-family: 'Roboto Slab', serif;
  padding: 8px 16px;
  border: 2px solid #e30613;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  background-color: #ffffff;
}
.news .article .goBack-button:hover {
  background-color: #e30613;
  color: #ffffff;
}
.news .article .singleNews-media img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.news .article .singleNews-media-small {
  position: relative;
}
.news .article .singleNews-media-small img {
  margin: 0 10px;
  cursor: pointer;
}
.news .article .teaser-text {
  width: 100%;
}
.news .article .teaser-text p {
  font-size: 40px;
  color: #e30613;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 100px;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Roboto Slab', serif;
  text-transform: uppercase;
}
.news .article .text {
  padding: 0 100px;
  display: inline-block;
}
.news .article .news-list-date {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  font-family: inherit;
  color: #e30613;
  font-size: 16px;
}
.news .article .news-text-wrap p {
  font-size: 18px;
  line-height: 1.5;
  font-family: inherit;
}
.news .article .footer {
  display: none;
}
@media (max-width: 2100px) {
  .news .article h3 {
    font-size: 70px;
  }
  .news .article .teaser-text p {
    font-size: 26px;
  }
}
@media (max-width: 1789px) {
  .news .article .teaser-text p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .news .article h3 {
    font-size: 60px;
  }
  .news .article .teaser-text p {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .news .article .singleNews-left,
  .news .article .singleNews-right {
    width: 100%;
  }
  .news .article .singleNews-left {
    margin-bottom: 50px;
  }
  .news .article .singleNews-media-small {
    margin-bottom: 0;
  }
}
@media (max-width: 850px) {
  .news .article .news-text-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .news .article h3 {
    font-size: 50px;
  }
  .news .article .teaser-text p {
    font-size: 14px;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .news .article h3 {
    font-size: 40px;
  }
  .news .article .teaser-text p {
    font-size: 14px;
  }
}
@media (max-width: 550px) {
  .news .article .singleNews-media-small {
    display: none;
  }
}
@media (max-width: 450px) {
  .news .article .news-text-wrap p {
    font-size: 12px;
  }
}
@media (max-width: 430px) {
  .news .article h3 {
    font-size: 30px;
  }
  .news .article .teaser-text p {
    font-size: 12px;
  }
}
.impressum {
  line-height: 1.5;
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 100px;
  column-gap: 100px;
  margin-bottom: 100px;
}
.impressum header {
  min-height: 130px;
  z-index: auto;
}
.impressum h2 {
  text-align: left;
  font-size: 32px;
  color: #000000;
  min-height: 130px;
}
.impressum h4 {
  font-size: 26px;
}
.impressum h5 {
  font-size: 22px;
}
.impressum p {
  font-size: 18px;
}
.impressum p strong {
  font-weight: 700;
}
.impressum a {
  color: #e30613;
  text-decoration: none;
}
@media (max-width: 2100px) {
  .impressum {
    width: 1300px;
  }
}
@media (max-width: 1789px) {
  .impressum {
    width: 1100px;
  }
}
@media (max-width: 1550px) {
  .impressum {
    width: 900px;
  }
}
@media (max-width: 1350px) {
  .impressum {
    width: 700px;
  }
}
@media (max-width: 1050px) {
  .impressum {
    width: 500px;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
@media (max-width: 600px) {
  .impressum {
    width: 400px;
  }
}
@media (max-width: 500px) {
  .impressum {
    width: 300px;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fvariables.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Freset.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Ffix%5C%2Fsidr_fix.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Ffix%5C%2Fslick_fix.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fcontainer-responsive.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fstyle.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2FstartImage.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fsubmenu.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fparallax.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fnews.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fsponsor.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fdownloads.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2FcontactForm.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fgreeting.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fgallery.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Flocation.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2FnewsSingleview.less%22%2C%22%5C%2Ftypo3conf%5C%2Fext%5C%2Fdauskonzept%5C%2FResources%5C%2FPublic%5C%2FStyle%5C%2Fimpressum.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22YAqBY%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACVZ%3BEACI%3BEACA%3B%3BAAGJ%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BEACI%3B%3BAAGJ%3BEACI%3B%3BAAGJ%3BAACA%3BEACI%3B%3BAAGJ%3BAACA%3BEACI%3B%3BAAGJ%2CUAAU%3BAACV%2CUAAU%3BAACV%2CCAAC%3BAACD%2CCAAC%3BEACG%2CSAAS%2CEAAT%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3B%3B%3B%3B%3BAAMJ%2CCAAC%3BAACD%2CMAAM%3BEACF%3B%3BAAGJ%2CMAAM%3BEACF%3B%3B%3B%3B%3B%3BAAMJ%3BAACA%2CCAAC%3BAACD%2CCAAC%3BEACG%3BEACA%3B%3B%3B%3B%3B%3BAAMJ%3BEACI%2C6CAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BAAaJ%3BEACI%3BEACA%3B%3B%3B%3B%3B%3BAAMJ%3BEACI%3BEACA%3B%3B%3B%3B%3B%3BAA4EJ%3BEArEI%3BEACA%2CCAAC%3BEACD%2CCAAC%3BEACD%2CCAAC%3BEACD%2CCAAC%3BIACG%3BIACA%3B%3B%3BIAGA%3BIACA%3BIACA%3B%3BEAGJ%3BEACA%2CCAAC%3BIACG%3B%3BEAGJ%2CCAAC%2CMAAM%3BIACH%2CSAAS%2CKAAK%2CWAAW%2CGAAzB%3B%3BEAGJ%2CIAAI%2COAAO%3BIACP%2CSAAS%2CKAAK%2CYAAY%2CGAA1B%3B%3B%3B%3B%3B%3BEAMJ%2CCAAC%2CWAAW%3BEACZ%2CCAAC%2CqBAAqB%3BIAClB%2CSAAS%2CEAAT%3B%3BEAGJ%3BEACA%3BIACI%2CsBAAA%3BIACA%3B%3B%3B%3B%3B%3BEAMJ%3BIACI%3B%3BEAGJ%3BEACA%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BEACA%3BEACA%3BIACI%3BIACA%3B%3BEAGJ%3BEACA%3BIACI%3B%3B%3BADhQR%3BEACG%2CaAAa%2CcAAb%3BEACA%2CSAAU%2CyIAAV%3BEACA%2CSAAS%2CiJAAyE%2COAAO%2C0BAClF%2C2IAAmE%2COAAO%2CaAC1E%2C0IAAkE%2COAAO%2CiBACzE%2CsJAA8E%2COAAO%2CMAH5F%3B%3BAEbH%3BAACA%2CKAAM%3BAACN%2CKAAM%3BAACN%2CKAAM%3BAACN%2CKAAM%3BAACN%2CKAAM%3BAACN%2CKAAM%3BAACN%2CKAAM%2CGAAG%2CGAAE%2CMAAO%3BAAClB%2CKAAM%2CGAAG%2CGAAE%2CMAAO%3BAAClB%2CKAAM%2CGAAG%2CGAAE%2COAAQ%3BAACnB%2CKAAM%2CGAAG%2CGAAE%2COAAQ%3BAACnB%2CKAAM%2CGAAG%2CGAAE%2CkBAAmB%3BAAC9B%2CKAAM%2CGAAG%2CGAAE%2CkBAAmB%3BAAC9B%2CKAAM%2CGAAG%2CGAAG%2CGAAG%2CGAAE%2CMAAO%3BAACxB%2CKAAM%2CGAAG%2CGAAG%2CGAAG%2CGAAE%2CMAAO%3BAACxB%2CKAAM%2CGAAG%2CGAAG%2CGAAG%2CGAAE%2COAAQ%3BAACzB%2CKAAM%2CGAAG%2CGAAG%2CGAAG%2CGAAE%2COAAQ%3BAACzB%2CKAAM%2CGAAG%2CGAAG%2CGAAG%2CGAAE%2CkBAAmB%3BAACpC%2CKAAM%2CGAAG%2CGAAG%2CGAAG%2CGAAE%2CkBAAmB%3BEAEnC%3BEACA%3BEACA%3B%3BAAID%2CKAAM%3BAACN%2CKAAM%2CGAAG%3BEAER%3B%3BAAGD%2CKAAM%2CGAAG%2CGAAE%3BAACX%2CKAAM%2CGAAG%2CGAAE%3BAACX%2CKAAM%2CGAAG%2CGAAE%3BEACV%3B%3BAAGD%2CKAAM%3BEACL%3BEACA%3B%3BAAEA%2CKAJK%2CGAIJ%3BEAEC%3B%3BAANH%2CKAAM%2CGASJ%3BEACC%3BEACA%3BEACA%3BEACA%3B%3BAAEA%2CKAfG%2CGASJ%2CEAME%3BEAEC%3B%3BACtDL%2CcAAe%3BEAEX%2CwBAAqB%2CqGAArB%3B%3BAAGJ%3BEAEI%3BEACA%3BEACA%3BEAEA%2CSAAS%2C6EAAT%3BEACA%2CSAAS%2CqFAAsC%2COAAO%2C0BAA0B%2C%2BEAAgC%2COAAO%2CaAAa%2C8EAA%2BB%2COAAO%2CiBAAiB%2CoFAAqC%2COAAO%2CMAAvO%3B%3BACfJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAUJ%2CQANA%3BEACE%3BIACI%3B%3B%3BAAUN%2CQANyB%3BEACrB%3BIACI%3B%3B%3BAASR%2CQALyB%3BEACrB%3BIACA%3B%3B%3BAAUJ%2CQALA%3BEACI%3BIACI%3B%3B%3BAAgBR%2CQALyB%3BEACrB%3BIACI%3B%3B%3BAAWR%2CQANA%3BEACI%3BIACI%3B%3B%3BAASR%2CQALuB%3BEACnB%3BIACI%3B%3B%3BACpDR%3BEACI%3B%3BAAEA%2CCAAC%3BAACD%2CCAAC%3BAACD%2CCAAC%3BEACG%3BEACA%3B%3BAAKR%2CCAAC%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAIJ%2CCAAC%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAGJ%2CCAAC%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAGJ%2CCAAC%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAGJ%2CCAAC%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAGJ%3BAACA%3BEACI%3B%3BAAGJ%2CSAAS%3BAACT%2CSAAS%3BEACL%2CSAAS%2CGAAT%3BEACA%3B%3BAAGJ%2CSAAS%3BEACL%3B%3BAAGJ%3BEACI%2CQAAA%3B%3B%3BAAwCJ%3BEACI%2CaAAa%2CoBAAb%3BEACA%3BEACA%3BEACA%2CeAAA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%2CeAAA%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%2CeAAA%3BEAxCA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CwBAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAwCJ%3BEACI%2CaAAa%2CqBAAb%3B%3BAADJ%2CCAEI%3BAAFJ%2CCAEO%3BEACC%3B%3BAAIR%3BEACI%3BEACA%2CwBAAwB%2CgIAAxB%3BEACA%3BEACA%3BEACA%3BEACA%3BEArFA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CmBAAmB%2CgBAAnB%3BEACA%2CeAAe%2CgBAAf%3BEACA%2CgBAAgB%2CgBAAhB%3BEACA%2CcAAc%2CgBAAd%3BEAkFA%2C0BAAA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAGJ%2CWAAW%3BEACP%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAGJ%3BEACI%3BEACA%2CSAAS%2CEAAT%3BEACA%2CgBAAgB%2C0HAAhB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEAhHA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CmBAAmB%2CgBAAnB%3BEACA%2CeAAe%2CgBAAf%3BEACA%2CgBAAgB%2CgBAAhB%3BEACA%2CcAAc%2CgBAAd%3BEA6GA%2C0BAAA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAANJ%2CiBAQI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAZR%2CiBAeI%2CKAAI%2CMACA%3BEACI%3BEACA%2CkCAAA%3BEACA%2C0BAAA%3B%3BAAnBZ%2CiBAuBI%3BEACI%3BEACA%3B%3BAAEJ%3BEACI%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAAGR%3BEACI%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAA1CZ%2CiBA8CI%2CMAAM%3BEACF%3BEACA%2CgCAAA%3BEACA%2CwBAAA%3BEACA%3BEACA%3BEACA%3B%3BAAEA%2CiBARJ%2CMAAM%2CGAQD%2CMAAO%3BEACJ%2CcAAA%3B%3BAAGJ%2CiBAZJ%2CMAAM%2CGAYD%2CIAAK%3BEACF%2CcAAA%3B%3BAA3DZ%2CiBA8CI%2CMAAM%2CGAgBF%2CSAAS%2CGACL%3BEACI%2CcAAA%3B%3BAAGJ%2CiBArBR%2CMAAM%2CGAgBF%2CSAAS%2CGAKJ%2CIAAK%3BAACN%2CiBAtBR%2CMAAM%2CGAgBF%2CSAAS%2CGAMJ%2CMAAO%3BEACJ%2CcAAA%3B%3BAArEhB%2CiBA0EI%2CMAAM%2CGAAE%3BEACJ%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAA%5C%2FER%2CiBAkFI%2CMAAM%2CGAAE%2CYAAY%3BEAChB%3B%3BAAnFR%2CiBAsFI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAAxFR%2CiBA2FI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAA7FR%2CiBAgGI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAAlGR%2CiBAqGI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAAvGR%2CiBA0GI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAA5GR%2CiBA%2BGI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAAjHR%2CiBAoHI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAAtHR%2CiBAyHI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAA3HR%2CiBA8HI%2CMAAM%2CGAAE%2CUAAU%3BEACd%3BEACA%3B%3BAAhIR%2CiBAmII%3BEACI%3BEACA%2CiBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkCAAA%3BEACA%2C0BAAA%3B%3BAAIR%3BEACI%2CSAAS%2CEAAT%3BEACA%2CgBAAgB%2C0HAAhB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEA%5C%2FQA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CmBAAmB%2CgBAAnB%3BEACA%2CeAAe%2CgBAAf%3BEACA%2CgBAAgB%2CgBAAhB%3BEACA%2CcAAc%2CgBAAd%3B%3BAA8QJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%2CeAAA%3BEACA%3BEACA%3BEACA%2CmCAAA%3BEACA%2C2BAAA%3B%3BAAEA%2CSAAC%3BEACG%3B%3BAAdR%2CSAiBI%3BEACI%3BEACA%3B%3BAAnBR%2CSAiBI%2CSAII%3BEACI%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%2CoCAAA%3BEACA%2C4BAAA%3B%3BAAEA%2CSAZR%2CSAII%2CEAQK%3BEACG%2CcAAA%3B%3BAA9BhB%2CSAiBI%2CSAiBI%3BEA4BI%3BEAKA%3BEACA%2C8BAAA%3B%3BAAjCA%2CSAlBR%2CSAiBI%2CGACK%2CIAAK%3BEACF%2CcAAA%3B%3BAApChB%2CSAiBI%2CSAiBI%2CGAKI%2CSAAS%2CGACL%3BEACI%2CcAAA%3B%3BAAGJ%2CSA3BZ%2CSAiBI%2CGAKI%2CSAAS%2CGAKJ%2CIAAK%3BAACN%2CSA5BZ%2CSAiBI%2CGAKI%2CSAAS%2CGAMJ%2CMAAO%3BEACJ%2CcAAA%3B%3BAAKJ%2CSAlCZ%2CSAiBI%2CGAgBK%2CIACI%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAA3DpB%2CSAiBI%2CSAiBI%2CGA8BI%3BEACI%3B%3BAAjEhB%2CSAiBI%2CSAsDI%2CGAAE%3BEACE%3B%3BAAxEZ%2CSAiBI%2CSA0DI%3BEACI%3BEACA%3BEACA%3BEAEA%2CwCAAA%3BEACA%2CgCAAA%3B%3BAAEA%2CSAlER%2CSA0DI%2CSAQK%3BEACG%3B%3BAApFhB%2CSAiBI%2CSA0DI%2CSAYI%3BEACI%3B%3BAAEA%2CSAzEZ%2CSA0DI%2CSAYI%2CGAGK%3BEACG%2C2BAAA%3B%3BAA3FpB%2CSAiBI%2CSA0DI%2CSAYI%2CGAOI%3BEACI%3B%3BAA%5C%2FFpB%2CSAiBI%2CSAmFI%3BEACI%3BEACA%2CgBAAgB%2C%2BHAAhB%3BEACA%2C0BAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CuCAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2C%2BBAAA%3BEACA%2C4DAAA%3B%3BAAEA%2CSAlGR%2CSAmFI%2CSAeK%3BEACG%2CmBAAmB%2CcAAnB%3BEACA%2CWAAW%2CcAAX%3B%3BAAMhB%3BEACI%2CwBAAwB%2CuIAAxB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2C0BAAA%3BEACA%3BEArZA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CmBAAmB%2CgBAAnB%3BEACA%2CeAAe%2CgBAAf%3BEACA%2CgBAAgB%2CgBAAhB%3BEACA%2CcAAc%2CgBAAd%3BEAkZA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAGJ%2CaAAa%3BEACT%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAGJ%3BEACI%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3B%3BAACA%2CWAAC%3BEACG%3B%3BAAbR%2CWAgBI%3BEACI%2CiBAAA%3BEACA%2CsBAAA%3BEACA%3BEACA%3BEACA%2CoBAAA%3B%3BAAEA%2CWAPJ%2CEAOK%3BEACG%3BEACA%2CcAAA%3B%3BAAzBZ%2CWA6BI%3BEACI%3B%3BAA9BR%2CWAiCI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAgB%2C2HAAhB%3BEACA%3BEACA%3BEACA%2C0CAAA%3BEACA%2CkCAAA%3BEACA%2C0BAAA%3BEACA%2CkDAAA%3B%3BAAEA%2CWAfJ%2CWAeK%3BEACG%2CmBAAmB%2CaAAnB%3BEACA%2CWAAW%2CaAAX%3B%3BAAlDZ%2CWAqDI%3BEACI%3B%3BAAtDR%2CWAyDI%3BEACI%3BEACA%2CiBAAA%3BEACA%3BEACA%3BEACA%2CsBAAA%3BEACA%2CcAAA%3BEACA%2C4BAAA%3BEACA%2CoBAAA%3B%3BAAEA%2CWAVJ%2CmBAUK%3BEACG%2CyBAAA%3BEACA%3B%3BAAgCZ%2CQA5B2B%3BEACvB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3B%3BAAYR%2CQAT0B%3BEACtB%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAA%2BBR%2CQA5B0B%3BEACtB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%2CaAAc%3BIACV%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3B%3BAA%2BBR%2CQA5B0B%3BEACtB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%2CaAAc%3BIACV%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3B%3BAAsBR%2CQAnByB%3BEACrB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%2CaAAc%3BIACV%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3B%3BAAQR%2CQALwB%3BEACpB%3BIACI%3B%3B%3BAAgBR%2CQAbyB%3BEACrB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%2CaAAc%3BIACV%3B%3B%3BAAQR%2CQALwB%3BEACpB%3BIACI%3B%3B%3BACtrBR%3BEACI%3BEACA%3BEACA%3B%3BAAHJ%2CaAKI%3BEACI%2CmBAAA%3BEACA%2CcAAA%3B%3BAAIR%3BEACI%3BEACA%3BEDiDA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CmBAAmB%2CgBAAnB%3BEACA%2CeAAe%2CgBAAf%3BEACA%2CgBAAgB%2CgBAAhB%3BEACA%2CcAAc%2CgBAAd%3B%3BAClDJ%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAQJ%2CQAN2B%3BEACvB%3BIACI%3BIACA%3B%3B%3BAASR%2CQAN2B%3BEACvB%3BIACI%3BIACA%3B%3B%3BAASR%2CQAN0B%3BEACtB%3BIACI%3BIACA%3B%3B%3BAC%5C%2FCR%2CQACI%3BEACI%2CcAAA%3BEACA%3B%3BAAHR%2CQAMI%3BEACI%2CcAAA%3BEACA%3B%3BAARR%2CQAWI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAIR%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAATJ%2CgBAWI%2CUAAS%2CUAAU%3BAAXvB%2CgBAYI%2CUAAS%2CUAAU%3BEACf%3B%3BAAbR%2CgBAkBI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAA3BR%2CgBA8BI%2CgBAAe%3BEACX%2CmBAAmB%2CUAAnB%3BEACA%2CWAAW%2CUAAX%3BEACA%2CoBAAoB%2CUAApB%3BEACA%2CiBAAiB%2CUAAjB%3BEACA%2CeAAe%2CUAAf%3B%3BAAnCR%2CgBAsCI%3BEACI%3BEFcJ%3BEACA%3BEACA%2CWAAW%2CqBAAX%3BEACA%2CmBAAmB%2CqBAAnB%3BEACA%2CeAAe%2CqBAAf%3BEACA%2CgBAAgB%2CqBAAhB%3BEACA%2CcAAc%2CqBAAd%3BEElBI%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAA7CR%2CgBAgDI%2CwBAAwB%3BEACpB%2CaAAa%2CoBAAb%3B%3BAAjDR%2CgBAoDI%3BEACI%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAoBR%2CQAhB0B%3BEACtB%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3B%3BAAcR%2CQAX0B%3BEACtB%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3B%3BAAmBR%2CQAhB0B%3BEACtB%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3B%3BAAUR%2CQAPyB%3BEACrB%2CgBACI%2CUAAS%2CUAAU%3BIACf%3B%3B%3BAASZ%2CQALyB%3BEACrB%2CQAAS%3BIACL%3B%3B%3BAAYR%2CQATwB%3BEACpB%2CQAAS%3BIACL%3B%3BEAGJ%3BIACI%3B%3B%3BAA4CR%2CQAzCwB%3BEACpB%2CQAAS%3BIACL%3B%3BEAGJ%2CQAAS%3BIACL%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3BEAGJ%2CgBAAiB%2CUAAS%2CUAAU%3BEACpC%2CgBAAiB%2CUAAS%2CUAAU%3BEACpC%2CgBAAiB%2CUAAS%2CUAAU%3BEACpC%2CgBAAiB%2CUAAS%2CUAAU%3BEACpC%2CgBAAiB%2CUAAS%2CUAAU%3BEACpC%2CgBAAiB%2CUAAS%2CUAAU%3BIAChC%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3B%3BAA8BR%2CQA3BwB%3BEACpB%2CQAAS%3BIACL%3B%3BEAGJ%2CQAAS%3BIACL%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3B%3BAAsBR%2CQAnBwB%3BEACpB%2CQAAS%3BIACL%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3B%3BAAkBR%2CQAfwB%3BEACpB%3BIACI%3BIACA%3B%3BEAGJ%2CQAAS%3BIACL%3BIACA%3B%3BEAGJ%2CgBAAiB%3BIACb%3B%3B%3BAC3PR%3BEACI%3BEACA%3BEACA%2CkCAAA%3BEACA%3BEACA%3B%3BAALJ%2CUAMI%3BEACI%3BEHyEJ%3BEACA%3BEACA%2CWAAW%2CqBAAX%3BEACA%2CmBAAmB%2CqBAAnB%3BEACA%2CeAAe%2CqBAAf%3BEACA%2CgBAAgB%2CqBAAhB%3BEACA%2CcAAc%2CqBAAd%3B%3BAGrEJ%2CQALuB%3BEACnB%3BIACI%3B%3B%3BACdR%3BEACI%3BEACA%3B%3BAAFJ%2CaAII%3BEACI%2CcAAA%3B%3BAALR%2CaAQI%3BEACI%2CcAAA%3B%3BAAIR%2CWAAW%3BEACP%2CaAAa%2C4GAAb%3B%3BAAGJ%3BEACI%2CmBAAmB%2CmBAAkB%2CcAArC%3BEACA%2CWAAW%2CmBAAkB%2CcAA7B%3B%3BAAGJ%2CWAAW%3BEACP%2CaAAa%2C4GAAb%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAGJ%2CWAAY%2CGAAE%2CaAAc%2COAAM%3BEAC9B%3B%3BAAGJ%2CWAAY%2CGAAG%2COAAM%3BEACjB%3BEACA%3B%3BAAGJ%3BEACI%3B%3BAADJ%2CcAGI%3BEACI%3BEACA%3B%3BAALR%2CcAQI%3BEACI%2CcAAA%3BEACA%3B%3BAAVR%2CcAaI%3BEACI%3BEACA%3B%3BAAfR%2CcAkBI%3BEACI%3BEACA%2CyBAAA%3BEACA%2CgCAAA%3B%3BAArBR%2CcAwBI%3BEACI%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAhCR%2CcAmCI%2CYAAW%3BEACP%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAxCR%2CcA2CI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAnDR%2CcAsDI%2CYAAW%3BEACP%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAA3DR%2CcA8DI%3BEACI%3B%3BAA%5C%2FDR%2CcA8DI%2CgBAGI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAvEZ%2CcA8DI%2CgBAYI%3BEACI%3BEACA%3BEACA%2CcAAA%3B%3BAA7EZ%2CcA8DI%2CgBAkBI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CeAAA%3BEACA%3B%3BAAxFZ%2CcA4FI%3BEACI%3B%3BAAYR%2CQATyB%3BEACrB%3BIACI%3B%3BEADJ%2CcAGI%3BIACI%3B%3B%3BAAaZ%2CQAT0B%3BEACtB%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAAQR%2CQALyB%3BEACrB%3BIACI%3B%3B%3BAAQR%2CQALyB%3BEACrB%3BIACI%3B%3B%3BAAwBR%2CQArByB%3BEACrB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CcAGI%3BIACI%3B%3BEAJR%2CcAOI%3BIACI%3B%3BEARR%2CcAWI%3BIACI%3B%3B%3BAAkBZ%2CQAd0B%3BEACtB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CcAGI%3BIACI%3BIACA%3B%3B%3BAAoCZ%2CQAhC0B%3BEACtB%3BIACI%3B%3BEADJ%2CcAGI%3BIACI%3BIACA%3B%3BEALR%2CcAQI%3BIACI%3B%3BEATR%2CcAYI%2CgBACI%3BIACI%3BIACA%3BIACA%3B%3BEAhBZ%2CcAYI%2CgBAOI%3BIACI%3BIACA%3BIACA%2CcAAA%3B%3BEAtBZ%2CcAYI%2CgBAaI%3BIACI%3B%3B%3BAA2BhB%2CQAtBwB%3BEACpB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CcAGI%3BIACI%3BIACA%3B%3BEALR%2CcAQI%3BIACI%3BIACA%3B%3BEAVR%2CcAYI%3BIACI%2CcAAA%3B%3B%3BACzPZ%3BEACI%3B%3BAADJ%2CgBAGI%3BEACI%2CcAAA%3B%3BAAIR%3BEACI%3B%3BAAGJ%3BEACI%3BEACA%2CkCAAA%3BEACA%3BEACA%3BEACA%3B%3BACjBJ%2CiBACI%3BEACI%3BEACA%2CcAAA%3B%3BAAHR%2CiBAMI%3BEACI%2CcAAA%3B%3BAAIR%2CgBACI%3BEACI%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3BEACA%3B%3BAAVR%2CgBAaI%2CYAAW%3BEACP%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAlBR%2CgBAqBI%3BEACI%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAA7BR%2CgBAgCI%2CYAAW%3BEACP%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAIR%3BEACI%3BEACA%3BEACA%3B%3BAAHJ%2CgBAKI%3BEACI%2CcAAA%3BEACA%3BEACA%3B%3BAARR%2CgBAWI%3BEACI%3BEACA%3BEACA%3BEACA%2CkCAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAApBR%2CgBAuBI%3BEACI%2CaAAa%2CoBAAb%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%2C8BAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAACA%2CgBAdJ%2CEAcK%3BEACG%2C2GAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAOZ%3BEACI%3BEACA%3BEACA%3B%3BAAWJ%2CQAPwB%3BEACpB%3BIACI%3B%3B%3BAAWR%2CQANwB%3BEACpB%3BIACI%3B%3B%3BAAgBR%2CQAZwB%3BEACpB%2CgBACI%3BIACI%3B%3BEAFR%2CgBAKI%3BIACI%3B%3B%3BAAWZ%2CQANuB%3BEACnB%3BIACI%3B%3B%3BAAUR%2CQANuB%3BEACnB%3BIACI%3B%3B%3BAAgDR%2CQA5CuB%3BEACnB%3BIACI%3B%3BEAER%2CgBACI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEALR%2CgBAQQ%3BIACI%2CcAAA%3BIACA%3BIACA%3B%3BEAXZ%2CgBAcQ%3BIACI%2CaAAa%2CoBAAb%3BIACA%3BIACA%3BIACA%2CcAAA%3BIACA%3BIACA%3BIACA%3BIACA%2C8BAAA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEACA%2CgBAdJ%2CEAcK%3BIACG%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAmBhB%2CQAbuB%3BEACnB%2CgBACI%3BIACI%3BIACA%3B%3BEAHR%2CgBAMI%3BIACI%3BIACA%3B%3B%3BAC1MZ%3BEACI%3B%3BAADJ%2CYAGI%3BEACI%3B%3BAAJR%2CYAOI%3BEACI%2CcAAA%3BEACA%3B%3BAATR%2CYAYI%3BEACI%3BEAaA%3BEACA%3BEACA%3BEACA%3B%3BAA7BR%2CYAYI%2CiBAEI%3BAAdR%2CYAYI%2CiBAGI%3BEACI%2CaAAa%2CoBAAb%3B%3BAAhBZ%2CYAYI%2CiBAMI%3BEACI%3B%3BAAnBZ%2CYAYI%2CiBAUI%3BEACI%3B%3BAAvBZ%2CYAYI%2CiBAmBI%3BEACI%3B%3BAAhCZ%2CYAYI%2CiBAuBI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAxCZ%2CYAYI%2CiBA%2BBI%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%2CaAAa%2CoBAAb%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAxDZ%2CYAYI%2CiBA%2BCI%2CKAAI%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAjEZ%2CYAYI%2CiBAwDI%3BEACI%3B%3BAArEZ%2CYAYI%2CiBA4DI%3BEACI%3BEACA%3BEACA%3B%3BAA3EZ%2CYAYI%2CiBAkEI%2CUACI%3BEACI%3BEACA%3BEACA%2CcAAA%3B%3BAACA%2CYAvEZ%2CiBAkEI%2CUACI%2CMAIK%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3B%3BAAtFpB%2CYAYI%2CiBAkEI%2CUAWI%3BEACI%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3B%3BAACA%2CYArFZ%2CiBAkEI%2CUAWI%2CMAQK%3BEACG%2CwBAAwB%2C2HAAxB%3BEACA%3B%3BAAGJ%2CYA1FZ%2CiBAkEI%2CUAWI%2CMAaK%3BEACG%2CeAAA%3B%3BAAvGpB%2CYAYI%2CiBAkEI%2CUA4BI%3BEACI%3BEACA%2CcAAA%3BEACA%3B%3BAA7GhB%2CYAYI%2CiBAkEI%2CUA4BI%2CKAII%3BEACI%2CcAAA%3BEACA%3B%3BAAhHpB%2CYAsHI%3BEACI%2CyBAAA%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAA3HR%2CYAsHI%2CSASI%3BEACI%3BEACA%2CaAAa%2CoBAAb%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAEA%2CYApBR%2CSASI%2CEAWK%3BEACG%2CcAAA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3B%3BAAchB%2CQANyB%3BEACrB%2CYAAa%3BIACT%3B%3B%3BAAUR%2CQANuB%3BEACnB%2CYAAa%3BIACT%3B%3B%3BAAUR%2CQANuB%3BEACnB%2CYAAa%3BIACT%3B%3B%3BAA0BR%2CQAtBuB%3BEAEnB%2CYAAa%3BIACT%3BIACA%3B%3BEAGJ%2CYAAa%3BIACT%3B%3BEADJ%2CYAAa%2CiBAGT%3BIACI%3B%3BEAJR%2CYAAa%2CiBAOT%3BIACI%3BIACA%3BIACA%3B%3B%3BAAUZ%2CQALuB%3BEACnB%2CYAAa%3BIACT%3B%3B%3BACjMR%2CiBACI%3BEACI%2CcAAA%3BEACA%3B%3BAAHR%2CiBAKI%3BEACI%2CcAAA%3BEACA%3B%3BAAIR%3BEACI%3B%3BAADJ%2CcAEI%3BEACI%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CaAAa%2CoBAAb%3B%3BAAcR%2CQATA%3BEACI%2CiBACI%3BIACI%3B%3B%3BAAsBZ%2CQAhBuB%3BEAEnB%2CiBACI%3BIACI%3B%3BEAGR%2CcAEI%3BIACI%3BIACA%3B%3B%3BAAmBZ%2CQAduB%3BEAEnB%2CiBACI%3BIACI%3B%3BEAGR%2CcACI%3BIACI%3B%3B%3BAAcZ%2CQATuB%3BEACnB%2CcACI%3BIACI%3BIACA%3B%3B%3BAAwBZ%2CQAnBuB%3BEAEnB%2CiBACI%3BIACI%3B%3BEAFR%2CiBAII%3BIACI%3B%3BEAGR%2CcACI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3B%3BACzFZ%3BEACI%3BEACA%2CkCAAA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%2CsBAAA%3B%3BAAFJ%2CeAII%3BEACI%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAZR%2CeAeI%2CYAAW%3BEACP%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAApBR%2CeAuBI%3BEACI%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAA%5C%2FBR%2CeAkCI%2CYAAW%3BEACP%2CoBAAA%3BEACA%2C4BAAA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3B%3BAAIR%3BEACI%3BEACA%3BEACA%3B%3BAAHJ%2CgBAKI%3BEACI%3B%3BAAIR%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CuBAAA%3B%3BAAGJ%3BEACI%3BEACA%2CcAAA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAJJ%2CqBAMI%3BEACI%3BEACA%3B%3BAARR%2CqBAWI%3BEACI%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%3BEACA%3B%3BAAQR%2CQALyB%3BEACrB%3BIACI%3B%3B%3BAAiBR%2CQAdyB%3BEACrB%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAAiBR%2CQAdyB%3BEACrB%3BIACI%3BIACA%3B%3BEAFJ%2CeAII%3BIACI%3B%3BEALR%2CeAQI%3BIACI%3B%3B%3BAASZ%2CQALwB%3BEACpB%3BIACI%3B%3B%3BAA8BR%2CQA3BwB%3BEACpB%2CaAAa%3BIACT%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CeAGI%3BIACI%3BIACA%3B%3BEALR%2CeAQI%3BIACI%3BIACA%3B%3BEAVR%2CeAaI%3BIACI%3B%3B%3BAAqCZ%2CQAjCwB%3BEACpB%3BIACI%3B%3BEADJ%2CeAGI%3BIACI%3B%3BEAJR%2CeAOI%3BIACI%3B%3BEARR%2CeAWI%3BIACI%3B%3BEAIR%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CqBAGI%3BIACI%3B%3B%3BAAiBZ%2CQAbwB%3BEACpB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAA0BR%2CQAvByB%3BEACrB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%2CeACI%3BIACI%3B%3BEAFR%2CeAKI%3BIACI%3B%3B%3BAC7OZ%3BEACI%3BEACA%3BEACA%3B%3BAAHJ%2CiBAMI%3BEACI%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAAVR%2CiBAYI%3BEACI%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAAhBR%2CiBAmBI%3BEACI%2CcAAA%3BEACA%3BEACA%3BEACA%3B%3BAAIR%3BEACI%2CkBAAA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAFJ%2CgBAII%3BEACI%3BEACA%3B%3BAANR%2CgBASI%3BEACI%3BEACA%3B%3BAAXR%2CgBAcI%3BEACI%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%3BEACA%3B%3BAAGR%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%2CeAAA%3BEACA%3B%3BAALJ%2CgBAOI%3BEACI%3BEACA%2CkCAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAbR%2CgBAgBI%3BEACI%3BEACA%3B%3BAAlBR%2CgBAgBI%2CsBAII%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAzBZ%2CgBAgBI%2CsBAII%2CqBAOI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAKR%2CgBApBJ%2CsBAII%2CqBAgBC%3BEACG%3B%3BAArCZ%2CgBAgBI%2CsBA2BI%3BEACI%3BEACA%3B%3BAA7CZ%2CgBAgBI%2CsBAgCI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAArDZ%2CgBAgBI%2CsBAwCI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAA%5C%2FDZ%2CgBAgBI%2CsBAkDI%3BEACI%2CeAAA%3BEACA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3B%3BAAMZ%2COACI%2CiBACI%2CsBACI%3BEACI%3B%3BAA0BhB%2CQApByB%3BEAErB%3BIACI%3B%3BEADJ%2CcAGI%3BIACI%2CsBAAA%3B%3BEAIR%3BIACI%3B%3BEAGJ%3BIACI%2CsBAAA%3B%3B%3BAAqBR%2CQAhByB%3BEAErB%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAA8CR%2CQA1CuB%3BEACnB%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CiBAGI%3BIACI%3B%3BEAJR%2CiBAOI%3BIACI%3B%3BEARR%2CiBAWI%3BIACI%3B%3BEAIR%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CgBAGI%2CsBACI%3BIACI%3B%3BEALZ%2CgBAGI%2CsBAKI%3BIACI%3B%3B%3BAAoFhB%2CQA5EuB%3BEACnB%3BIACI%2CiBAAA%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEADJ%2CiBAGI%3BIACI%3BIACA%3B%3BEALR%2CiBAQI%3BIACI%3BIACA%3B%3BEAVR%2CiBAaI%3BIACI%3B%3BEAIR%3BIACI%3B%3BEAIJ%3BIACI%3B%3BEADJ%2CgBAEI%3BIACI%3BIACA%3BIACA%2C%2BBAAA%3B%3BEALR%2CgBAQI%3BIAEI%3BIACA%3B%3BEAXR%2CgBAQI%2CsBAKI%3BEAbR%2CgBAQI%2CsBA9PR%2CCAmQe%3BIACC%3BIACA%3B%3BEAfZ%2CgBAQI%2CsBAUI%3BIACI%3BIACA%3B%3BEApBZ%2CgBAQI%2CsBAeI%3BEAvBR%2CgBAQI%2CsBA9PR%2CCA6Qe%3BIACC%3B%3BEAxBZ%2CgBAQI%2CsBAmBI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEA%5C%2FBZ%2CgBAQI%2CsBA0BI%3BIACI%3BIACA%3B%3BEApCZ%2CgBAQI%2CsBA%2BBI%3BIACI%3B%3B%3BAC9RhB%2CKAAM%3BEACF%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAARJ%2CKAAM%2CSAUF%3BEACI%2CcAAA%3BEACA%3BEACA%3B%3BAAbR%2CKAAM%2CSAgBF%3BEACI%3B%3BAAjBR%2CKAAM%2CSAoBF%3BEACI%3BEACA%3B%3BAAtBR%2CKAAM%2CSAoBF%2CkBAII%3BEACI%3BEACA%3B%3BAA1BZ%2CKAAM%2CSAoBF%2CkBASI%3BEACI%3BEACA%3B%3BAA%5C%2FBZ%2CKAAM%2CSAmCF%3BEACI%2CeAAA%3BEACA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CiBAAA%3BEACA%2CyBAAA%3BEACA%2C4BAAA%3BEACA%2CoBAAA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3B%3BAAEA%2CKAhDF%2CSAmCF%2CeAaK%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAlDZ%2CKAAM%2CSAsDF%2CkBAAkB%3BEACd%3BEACA%3BEACA%3B%3BAAzDR%2CKAAM%2CSA4DF%3BEACI%3B%3BAA7DR%2CKAAM%2CSA4DF%2CwBAGI%3BEACI%2CcAAA%3BEACA%3B%3BAAjEZ%2CKAAM%2CSAqEF%3BEACI%3B%3BAAtER%2CKAAM%2CSAqEF%2CaAGI%3BEACI%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CaAAa%2CoBAAb%3BEACA%3B%3BAAjFZ%2CKAAM%2CSAqFF%3BEACI%2CgBAAA%3BEACA%3B%3BAAvFR%2CKAAM%2CSA0FF%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAhGR%2CKAAM%2CSAmGF%2CgBACI%3BEACI%3BEACA%3BEACA%3B%3BAAvGZ%2CKAAM%2CSA2GF%3BEACI%3B%3BAAcR%2CQAX0B%3BEACtB%2CKAAM%2CSACF%3BIACI%3B%3BEAFR%2CKAAM%2CSAKF%2CaAAa%3BIACT%3B%3B%3BAAWZ%2CQAP0B%3BEACtB%2CKAAM%2CSACF%2CaAAa%3BIACT%3B%3B%3BAAeZ%2CQAXyB%3BEACrB%2CKAAM%2CSACF%3BIACI%3B%3BEAFR%2CKAAM%2CSAKF%2CaAAa%3BIACT%3B%3B%3BAAoBZ%2CQAhB2B%3BEACvB%2CKAAM%2CSACF%3BEADJ%2CKAAM%2CSAEF%3BIACI%3B%3BEAHR%2CKAAM%2CSAMF%3BIACI%3B%3BEAPR%2CKAAM%2CSAUF%3BIACI%3B%3B%3BAAWZ%2CQAPwB%3BEACpB%2CKAAM%2CSACF%2CgBAAgB%3BIACZ%3B%3B%3BAAgBZ%2CQAZyB%3BEACrB%2CKAAM%2CSACF%3BIACI%3B%3BEAFR%2CKAAM%2CSAKF%2CaAAa%3BIACT%3BIACA%3B%3B%3BAAeZ%2CQAXyB%3BEACrB%2CKAAM%2CSACF%3BIACI%3B%3BEAFR%2CKAAM%2CSAKF%2CaAAa%3BIACT%3B%3B%3BAAWZ%2CQAP0B%3BEACtB%2CKAAM%2CSACF%3BIACI%3B%3B%3BAAWZ%2CQAPwB%3BEACpB%2CKAAM%2CSACF%2CgBAAgB%3BIACZ%3B%3B%3BAAeZ%2CQAXyB%3BEACrB%2CKAAM%2CSACF%3BIACI%3B%3BEAFR%2CKAAM%2CSAKF%2CaAAa%3BIACT%3B%3B%3BAC%5C%2FMZ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAANJ%2CUAQI%3BEACI%3BEACA%3B%3BAAVR%2CUAaI%3BEACI%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAjBR%2CUAoBI%3BEACI%3B%3BAArBR%2CUAwBI%3BEACI%3B%3BAAzBR%2CUA4BI%3BEAII%3B%3BAAhCR%2CUA4BI%2CEACI%3BEACI%3B%3BAA9BZ%2CUAkCI%3BEACI%2CcAAA%3BEACA%3B%3BAAQR%2CQAL0B%3BEACtB%3BIACI%3B%3B%3BAAQR%2CQAL0B%3BEACtB%3BIACI%3B%3B%3BAAQR%2CQAL0B%3BEACtB%3BIACI%3B%3B%3BAAQR%2CQAL0B%3BEACtB%3BIACI%3B%3B%3BAAUR%2CQAP0B%3BEACtB%3BIACI%3BIACA%3BIACA%3B%3B%3BAAQR%2CQALyB%3BEACrB%3BIACI%3B%3B%3BAAQR%2CQALyB%3BEACrB%3BIACI%22%7D */