@charset "UTF-8";
/*----------  base float
------------------------------------------------------------------------------*/
/*----------  Text Overflow
------------------------------------------------------------------------------*/
/*---------- horizontal align
------------------------------------------------------------------------------*/
/* Button styles  gradients & shadows */
@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@-moz-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@-o-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@-o-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-webkit-keyframes checkbox-check-orange {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check-orange {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-orange {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-webkit-keyframes checkbox-check-green {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check-green {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-green {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-webkit-keyframes checkbox-check-green-b2b {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check-green-b2b {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-green-b2b {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-white {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@media (min-width: 1600px) {
  .mid-wrapper .content-wrapper {
    max-width: 93.3em;
    padding-left: 11em;
    padding-right: 11em;
  }
  .mid-wrapper.simple-text-icons .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.carsharing-banner {
  z-index: 20;
  position: relative;
  overflow: visible;
  background: rgb(248, 247, 247 0.9);
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgba(248, 247, 247, 0.9) 0%, rgba(238, 237, 237, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(248, 247, 247, 0.9) 0%, rgba(238, 237, 237, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(248, 247, 247, 0.9) 0%, rgba(238, 237, 237, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f7f7", endColorstr="#eeeded",GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.carsharing-banner .ce_text {
  overflow: visible;
  padding: 6em 0 2.5em;
}
.carsharing-banner .content-wrapper {
  position: relative;
  padding-right: 30em;
}
.carsharing-banner .content-wrapper:before {
  content: "";
  display: table;
  clear: both;
}
.carsharing-banner h1, .carsharing-banner p, .carsharing-banner ul li {
  color: #4d4d4d;
}
.carsharing-banner h1 {
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: var(--font-base-light-weight);
}
.carsharing-banner h1 strong {
  color: var(--brand-color-1);
}
.carsharing-banner ul li {
  margin-bottom: 0.2em;
  padding-left: 1.6em;
  position: relative;
  font-size: 1.25em;
}
.carsharing-banner ul li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0;
  height: 0;
  border-right: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check-green 130ms 500ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
  border-radius: 2px;
}
.carsharing-banner ul li:nth-child(1):before {
  animation-delay: 500ms;
}
.carsharing-banner ul li:nth-child(2):before {
  animation-delay: 1000ms;
}
.carsharing-banner ul li:nth-child(3):before {
  animation-delay: 1500ms;
}
.carsharing-banner ul li:nth-child(4):before {
  animation-delay: 2000ms;
}
.carsharing-banner ul li:nth-child(5):before {
  animation-delay: 2500ms;
}
.carsharing-banner p {
  max-width: 29em;
  font-size: 1.25em;
  line-height: 1.5;
}
.carsharing-banner img {
  position: absolute;
  bottom: -2.85em;
  right: 6.5em;
  max-width: 27em;
}
.carsharing-banner.small-img img {
  max-width: 22em;
}
.carsharing-banner.medium-img img {
  max-width: 25em;
}
.carsharing-banner .banner-badge img {
  max-height: 13em;
  width: auto;
  right: -2em;
  bottom: -3em;
}
.carsharing-banner .small-bubble {
  width: 14.5em;
  height: 14.5em;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 3em;
  position: absolute;
  bottom: -5em;
  right: 0;
  -webkit-box-shadow: 0 0.125em 1em 0.125em rgba(132, 129, 129, 0.36);
  -moz-box-shadow: 0 0.125em 1em 0.125em rgba(132, 129, 129, 0.36);
  box-shadow: 0 0.125em 1em 0.125em rgba(132, 129, 129, 0.36);
}
.carsharing-banner .small-bubble p {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1.2em;
  font-family: var(--font-heading);
  font-style: var(--font-heading-style);
  font-size: 1.075em;
  color: #4d4d4d;
}
.carsharing-banner .small-bubble strong {
  text-transform: uppercase;
  color: var(--brand-color-1);
  font-style: normal;
}
@media (max-width: 1350px) {
  .carsharing-banner .float_below img {
    right: 10em;
  }
  .carsharing-banner .small-bubble {
    right: 4em;
  }
  .carsharing-banner .banner-badge img {
    right: 1em;
  }
}
@media (max-width: 1150px) {
  .carsharing-banner .float_below img {
    max-width: 25em;
    right: 8em;
    bottom: -1.8em;
  }
  .carsharing-banner .banner-badge img {
    right: 1em;
  }
}
@media (max-width: 950px) {
  .carsharing-banner .float_below img {
    max-width: 21em;
    bottom: auto;
    top: 2em;
  }
}
@media (max-width: 870px) {
  .carsharing-banner .content-wrapper {
    padding-right: 0;
  }
  .carsharing-banner .textimage .textcontainer {
    max-width: 50%;
  }
  .carsharing-banner p {
    max-width: none;
  }
}
@media (max-width: 740px) {
  .carsharing-banner .float_below img {
    max-width: 34%;
    right: 4em;
  }
}
@media (max-width: 680px) {
  .carsharing-banner {
    text-align: center;
    overflow: hidden;
  }
  .carsharing-banner .content-wrapper {
    padding-left: 0;
  }
  .carsharing-banner .textimage .textcontainer {
    max-width: 100%;
    padding: 0 12%;
  }
  .carsharing-banner .textimage .textcontainer ul li {
    text-align: left;
  }
  .carsharing-banner .textimage .textcontainer p:last-of-type {
    margin-bottom: 0;
  }
  .carsharing-banner .textimage.ce_text {
    padding-top: 4.5em;
    padding-bottom: 0;
  }
  .carsharing-banner .float_below img {
    position: relative;
    right: auto;
    bottom: auto;
    margin: auto;
    height: 20em;
    bottom: -2.5em;
    width: auto;
    max-width: none;
    position: relative;
    left: auto;
    z-index: 5;
  }
  .carsharing-banner .banner-badge img {
    max-height: 10em;
    right: 2em;
    bottom: 2em;
    z-index: 20;
  }
}
@media (max-width: 680px) and (min-width: 400px) {
  .carsharing-banner .banner-badge img {
    max-height: 10em;
    left: 50%;
    right: auto;
    bottom: 1em;
    z-index: 20;
  }
}
@media (max-width: 630px) {
  .carsharing-banner .small-bubble {
    position: relative;
    z-index: 1;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: auto;
    height: auto;
    font-size: 1.4em;
    padding-left: 1.4em;
    padding-right: 1.4em;
    bottom: 0;
    right: auto;
  }
  .carsharing-banner .small-bubble strong {
    display: block;
    margin-bottom: 0.5em;
  }
  .carsharing-banner .small-bubble br {
    display: none;
  }
}
@media (max-width: 400px) {
  .carsharing-banner .textimage .textcontainer {
    padding: 0 1em;
  }
  .carsharing-banner .textimage .textcontainer ul {
    display: inline-block;
    padding: 0 1.25em;
  }
  .carsharing-banner .textimage .textcontainer ul li {
    display: block;
    text-align: left;
  }
}
@media (max-width: 340px) {
  .carsharing-banner .btn-default {
    padding: 0.3em 1.5em;
  }
  .carsharing-banner .small-bubble {
    margin-right: -11em;
  }
}
body.energie .full-orange-banner .ce_text img {
  right: 3em;
}
@media (max-width: 1150px) and (min-width: 681px) {
  body.energie .full-orange-banner .ce_text img {
    right: 6em;
  }
  body.energie .full-orange-banner .banner-badge img {
    max-height: 10em;
  }
}
@media (max-width: 768px) {
  body.internet .full-orange-banner, body.internet .infobubble-banner {
    margin-bottom: 4em;
  }
}
.contact-box {
  text-align: center;
}
.contact-box h3 {
  font-family: var(--font-heading);
  font-style: var(--font-heading-style);
  font-size: 1.5em;
  margin-bottom: 2.2em;
}
.contact-box h3 strong {
  font-weight: var(--font-base-strong-weight);
  font-style: normal;
}
.contact-box h4 {
  font-weight: var(--font-base-strong-weight);
  font-size: 1.2em;
}
.contact-box a, .contact-box .wh-toggler {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
}
.contact-box a:hover, .contact-box .wh-toggler:hover {
  opacity: 0.7;
}
.contact-box a.energieshop-popup-opener, .contact-box a.kundencenter-popup-opener {
  margin-top: 0.75em;
  margin-left: 0;
  margin-right: auto;
  display: block;
  max-width: 13em;
}
.contact-box .wh-toggler {
  cursor: pointer;
}
.contact-box .textimage {
  display: inline-block;
  text-align: left;
  overflow: visible;
  vertical-align: top;
  position: relative;
}
.contact-box .textimage .textcontainer {
  float: left;
  padding-left: 2.5em;
  padding-top: 1.5em;
}
.contact-box .textimage p, .contact-box .textimage ul {
  font-size: 1em;
}
.contact-box .textimage p {
  margin-bottom: 0;
}
.contact-box .textimage ul li {
  line-height: 1.2;
}
.contact-box .img_containment {
  width: 13em;
  height: 13em;
  padding: 0.5em;
}
.contact-box .img_containment img {
  display: block;
}
.contact-box .image_container {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  -moz-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
}
.contact-box.border-top .content-wrapper:before {
  position: absolute;
  left: 4em;
  right: 4em;
  top: 0;
  content: "";
  border-bottom: 1px solid #e0e1e0;
}
@media (min-width: 1025px) {
  .contact-box .img_containment {
    position: relative;
    background: #fff;
  }
  .contact-box .wh-toggler {
    display: none;
  }
  .contact-box .textimage {
    -webkit-perspective: 1000px;
    -ms-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    margin: 0 2em;
  }
  .contact-box .textimage ul {
    margin-bottom: 0;
  }
  .contact-box .textimage:hover .image_container {
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .contact-box .textimage:hover ul {
    -moz-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  .contact-box .textimage.no-animation:hover .image_container, .contact-box .textimage.no-animation:last-of-type:hover .image_container {
    -moz-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  .contact-box .textimage.no-animation:hover ul, .contact-box .textimage.no-animation:last-of-type:hover ul {
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .contact-box .image_container {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: transform 0.8s;
    -moz-transition: transform 0.8s;
    transition: transform 0.8s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #fff;
  }
  .contact-box ul {
    -webkit-transition: transform 0.8s;
    transition: transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    top: 2.2em;
    left: 0;
    position: absolute;
    width: 13em;
    height: 13em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: 0.85em;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .contact-box ul li {
    display: block;
    margin-bottom: 0.15em;
    text-align: center;
  }
  .contact-box ul li:last-of-type {
    margin-bottom: 0;
  }
  .contact-box .ce_text:last-of-type ul {
    top: 0.7em;
  }
}
@media (max-width: 1024px) {
  .contact-box .img_containment {
    width: 12em;
    height: 12em;
  }
  .contact-box .textimage {
    margin: 0 2em 2em;
  }
  .contact-box .textimage ul {
    display: none;
  }
  .contact-box .textimage .textcontainer {
    padding-top: 0.8em;
    padding-left: 1.5em;
  }
}
@media (max-width: 880px) {
  .contact-box h3 {
    font-size: 1.6em;
  }
  .contact-box a.energieshop-popup-opener, .contact-box a.kundencenter-popup-opener {
    margin-right: auto;
    margin-left: auto;
  }
  .contact-box .textimage {
    text-align: center;
    margin: 0 3.2em;
    margin-bottom: 3em;
  }
  .contact-box .textimage .img_containment {
    display: block;
    margin: 0 auto 0;
    float: none;
    width: 12em;
    height: 12em;
  }
  .contact-box .textimage p, .contact-box .textimage ul {
    font-size: inherit;
  }
  .contact-box .textimage .textcontainer {
    font-size: 1.15em;
    width: 100%;
    float: left;
    padding-left: 0;
  }
}
@media (max-width: 590px) {
  .contact-box h3 {
    font-size: 1.5em;
  }
  .contact-box .image_container {
    max-width: 150px;
    margin: auto;
    float: none;
  }
  .contact-box .textimage {
    width: 49%;
    display: inline-block;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .contact-box {
    margin-bottom: 0;
  }
  .contact-box h3 {
    font-size: 1.35em;
  }
  .contact-box .textimage {
    width: 100%;
    margin-bottom: 3em;
  }
}
.section-accordion .ce_accordion {
  border-bottom: 1px solid #e4e3e3;
}
.section-accordion .ce_accordion + h2 {
  margin-top: 2.5em;
}
.section-accordion .ce_accordion:first-of-type {
  border-top: 1px solid #e4e3e3;
}
.section-accordion h2 {
  margin-bottom: 1.5em;
  font-size: 1.3em;
  position: relative;
  font-weight: var(--font-base-strong-weight);
}
.section-accordion h2 + .ce_accordion {
  border-top: 1px solid #e4e3e3;
}
.section-accordion h3 strong {
  color: inherit;
}
.section-accordion .toggler {
  cursor: pointer;
  padding: 0.75em 0;
}
.section-accordion .toggler h3 {
  color: #767676;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1em;
  padding-right: 1.75em;
  font-weight: var(--font-base-strong-weight);
}
.section-accordion .toggler h3:after {
  position: absolute;
  font-weight: var(--font-base-weight);
  right: 0.5em;
  top: 0;
  content: "";
  font-family: "zeag";
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section-accordion .toggler:hover h3 {
  color: var(--brand-color-1);
}
.section-accordion .toggler.ui-accordion-header-active h3:after {
  transform: rotate(180deg);
}
.section-accordion p {
  margin-bottom: 1em;
}
.section-accordion p a {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
}
.section-accordion p a:hover {
  opacity: 0.7;
}
.section-accordion .accordion {
  padding-top: 1em;
}
#article-3083 .content-wrapper {
  z-index: 20;
}
.big-cta-blocks h2 {
  font-style: normal;
  font-family: inherit;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 1.5em;
  color: #595959;
}
.big-cta-blocks.one-half-blocks .ce_text {
  width: 50%;
  float: left;
  padding-left: 2em;
  position: relative;
  margin-bottom: 5em;
  overflow: visible;
}
.big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n + 1) {
  padding-left: 0;
  padding-right: 2em;
  clear: left;
}
.big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n + 1) .textcontainer {
  right: 2em;
}
.big-cta-blocks.one-half-blocks .ce_text h5 {
  margin-bottom: 0.9em;
  font-size: 1em;
}
.big-cta-blocks.one-half-blocks .ce_text p {
  margin-bottom: 0;
  font-size: 1.3em;
  line-height: 1.25;
  font-weight: var(--font-base-strong-weight);
  min-width: 10.75em;
  max-width: 11em;
  -moz-transition: color 0.35s ease-in-out;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}
.big-cta-blocks.one-half-blocks .ce_text p strong {
  color: inherit;
}
.big-cta-blocks.one-half-blocks .ce_text:not(.contant-info-box):hover img {
  transform: scale(1.1, 1.1);
}
.big-cta-blocks.one-half-blocks .ce_text:not(.contant-info-box):hover h3, .big-cta-blocks.one-half-blocks .ce_text:not(.contant-info-box):hover p {
  color: var(--brand-color-1);
}
.big-cta-blocks.one-half-blocks .ce_text .textcontainer {
  background: #fff;
  position: absolute;
  bottom: -1em;
  right: 0;
  padding: 1.1em 1.9em 1.4em 1.4em;
  -webkit-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  -moz-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
}
.big-cta-blocks.one-half-blocks .ce_text .img_containment {
  padding-right: 1em;
}
.big-cta-blocks.one-half-blocks .ce_text .image_container {
  overflow: hidden;
}
.big-cta-blocks.one-half-blocks .ce_text .image_container img {
  transition: all 0.7s ease-out;
  display: block;
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box .textcontainer {
  position: relative;
  bottom: auto;
  height: calc(100% + 1em);
  padding: 2.6em 2.8em;
  box-shadow: none;
  background: #f7f7f7;
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box .innerbox {
  height: 100%;
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box h3 {
  font-size: 1.3em;
  margin-bottom: 1em;
  font-weight: var(--font-base-strong-weight);
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box h3 strong {
  font-weight: var(--font-base-strong-weight);
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box p {
  max-width: none;
  line-height: 1.5;
  font-weight: 400;
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box p strong {
  font-weight: var(--font-base-strong-weight);
  text-transform: none;
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box p:hover {
  color: inherit;
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box p a {
  font-weight: var(--font-base-strong-weight);
  color: var(--brand-color-1);
}
.big-cta-blocks.one-half-blocks .ce_text.contant-info-box p a:hover {
  opacity: 0.7;
}
.big-cta-blocks.light-p div.textcontainer h3 + p, .big-cta-blocks.light-p div.textcontainer p {
  font-weight: 500;
}
.big-cta-blocks .full-width-block {
  position: relative;
  overflow: visible;
}
.big-cta-blocks .full-width-block:after {
  content: "";
  display: table;
  clear: both;
}
.big-cta-blocks .full-width-block .textcontainer > *:last-child {
  margin-bottom: 0;
}
.big-cta-blocks .full-width-block .img_containment {
  width: 68%;
}
.big-cta-blocks .full-width-block .img_containment .image_container, .big-cta-blocks .full-width-block .img_containment img {
  width: 100%;
}
.big-cta-blocks .full-width-block .textcontainer {
  position: absolute;
  background: #fff;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  max-width: 48em;
  width: 48em;
  padding: 3em 6em 3em 3em;
  -webkit-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  -moz-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
}
.big-cta-blocks .full-width-block .textcontainer:after {
  content: "";
  display: table;
  clear: both;
}
.big-cta-blocks .full-width-block .textcontainer h5 {
  margin-bottom: 1em;
}
.big-cta-blocks .full-width-block .textcontainer h3, .big-cta-blocks .full-width-block .textcontainer h1 {
  font-size: 1.3em;
  line-height: 1.4;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}
.big-cta-blocks .full-width-block .textcontainer h3 + p.p-default {
  color: #333;
}
.big-cta-blocks .full-width-block .textcontainer p > strong {
  color: var(--brand-color-1);
  font-weight: var(--font-base-semibold-weight);
}
.big-cta-blocks .full-width-block .textcontainer .p-price {
  color: var(--brand-color-1);
  font-weight: var(--font-base-semibold-weight);
}
.big-cta-blocks .full-width-block .textcontainer .p-default {
  margin-bottom: 1em;
  font-weight: var(--font-base-weight);
}
.big-cta-blocks .full-width-block .textcontainer p .btn-default {
  font-weight: var(--font-base-weight);
}
.big-cta-blocks .full-width-block .textcontainer p:last-of-type {
  margin-bottom: 0;
}
.big-cta-blocks .full-width-block ul li {
  border-top: 1px solid #424242;
  padding-top: 1em;
  padding-bottom: 1em;
  position: relative;
}
.big-cta-blocks .full-width-block ul li:last-child {
  border-bottom: 1px solid #424242;
}
.big-cta-blocks .full-width-block ul li:after {
  content: "";
  display: block;
  clear: both;
}
.big-cta-blocks .full-width-block ul li .left, .big-cta-blocks .full-width-block ul li .widget-select {
  float: left;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.big-cta-blocks .full-width-block ul li .price {
  float: right;
  font-style: normal;
  font-weight: var(--font-base-strong-weight);
  font-size: 2.3em;
}
.big-cta-blocks .full-width-block ul li .price span.number {
  padding-right: 0.25em;
}
.big-cta-blocks .full-width-block ul li select {
  float: left;
  margin-right: 1em;
  padding: 0.5em 2.5em 0.5em 1em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #929292;
}
.big-cta-blocks .full-width-block ul li select:focus {
  border-color: var(--brand-color-1);
}
.big-cta-blocks .full-width-block ul li select.disabled {
  border: 1px solid #ebebeb;
  color: #595959;
}
.big-cta-blocks .full-width-block ul li select.disabled option {
  color: #595959;
}
.big-cta-blocks .full-width-block ul li label {
  position: relative;
  float: right;
  top: 0.4em;
}
.big-cta-blocks .full-width-block ul li label:before {
  content: "";
  font-family: "zeag";
  height: auto;
  left: -2.5em;
  right: auto;
  top: -0.1em;
  font-size: 1.1em;
  color: #929292;
  font-weight: var(--font-base-strong-weight);
  position: absolute;
  display: inline-block;
  pointer-events: none;
  cursor: pointer;
}
.big-cta-blocks .full-width-block ul li.sum {
  border-top: 3px solid #424242;
}
.big-cta-blocks .full-width-block ul li.sum p, .big-cta-blocks .full-width-block ul li.sum p span, .big-cta-blocks .full-width-block ul li.sum p strong {
  color: var(--brand-color-1);
}
.big-cta-blocks .full-width-block.btn-right .textcontainer {
  padding-right: 3em;
}
.big-cta-blocks .full-width-block.btn-right .btn-default {
  float: right;
}
.big-cta-blocks .full-width-block.form .textcontainer {
  transform: none;
  top: 2.5em;
}
.big-cta-blocks .simple-text .innerbox {
  max-width: 64em;
}
.big-cta-blocks .simple-text h2 {
  text-transform: none;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 1em;
  font-size: 1.2em;
  color: #4d4d4d;
}
.big-cta-blocks .simple-text h4 {
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 1em;
  font-size: 1.05em;
}
.big-cta-blocks .simple-text p:last-of-type {
  margin-bottom: 0;
}
.big-cta-blocks .simple-text a {
  color: var(--brand-color-1);
  transition: all 0.3s ease-out;
}
.big-cta-blocks .full-width-teaser {
  overflow: visible;
  margin-bottom: 5em;
  position: relative;
  width: 100%;
  float: left;
}
.big-cta-blocks .full-width-teaser .textcontainer {
  background: #fff;
  position: absolute;
  bottom: -1em;
  right: 0;
  width: 50%;
  width: calc(50% - 3em);
  padding: 1.2em 2em 1.5em 1.5em;
  -webkit-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  -moz-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
}
.big-cta-blocks .full-width-teaser .img_containment {
  width: 100%;
  padding-right: 1em;
}
.big-cta-blocks .full-width-teaser .img_containment > * {
  width: 100%;
}
.big-cta-blocks .full-width-teaser p {
  margin-bottom: 0;
  font-size: 1.3em;
  line-height: 1.25;
  font-weight: var(--font-base-strong-weight);
  -moz-transition: color 0.35s ease-in-out;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}
.big-cta-blocks .full-width-teaser h5 {
  margin-bottom: 1.2em;
}
.big-cta-blocks.tv-blocks.one-half-blocks .ce_text .textcontainer {
  width: 75%;
  bottom: -3em;
}
.big-cta-blocks.tv-blocks.one-half-blocks .ce_text h5 {
  margin-bottom: 1em;
}
.big-cta-blocks.tv-blocks.one-half-blocks .ce_text h3 {
  font-size: 1.4em;
  font-family: var(--font-base);
  font-weight: var(--font-base-strong-weight);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.5em;
  -moz-transition: color 0.35s ease-in-out;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}
.big-cta-blocks.tv-blocks.one-half-blocks .ce_text p {
  font-size: 1.05em;
  line-height: 1.25;
  max-width: 22em;
}
.big-cta-blocks.tv-blocks.one-half-blocks .ce_text p strong {
  font-size: 1.2em;
  margin-bottom: 0.15em;
  display: block;
}
.big-cta-blocks.grey-text .full-width-block .textcontainer h3 + p {
  color: #4d4d4d;
}
@media (max-width: 1050px) {
  .big-cta-blocks.one-half-blocks .ce_text {
    margin-bottom: 4em;
    padding-left: 1.75em;
  }
  .big-cta-blocks.one-half-blocks .ce_text .textcontainer {
    padding-right: 1.75em;
  }
  .big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n + 1) {
    padding-right: 1.75em;
  }
  .big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n + 1) .textcontainer {
    right: 1.75em;
  }
  .big-cta-blocks.one-half-blocks .ce_text h5 {
    margin-bottom: 0.5em;
  }
  .big-cta-blocks.one-half-blocks .ce_text p {
    font-size: 1.25em;
    line-height: 1.2;
  }
  .big-cta-blocks.one-half-blocks .ce_text.contant-info-box .textcontainer {
    padding: 2.5em 2em;
  }
  .big-cta-blocks .full-width-teaser .textcontainer {
    width: calc(50% - 2.2em);
  }
}
@media (max-width: 880px) {
  .big-cta-blocks.one-half-blocks .ce_text {
    text-align: left;
  }
  .big-cta-blocks.one-half-blocks .ce_text p {
    font-size: 1.2em;
  }
  .big-cta-blocks.one-half-blocks .same-height {
    height: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .big-cta-blocks .full-width-block {
    min-height: 25em;
  }
  .big-cta-blocks .full-width-block .img_containment {
    position: absolute;
    top: 0;
    left: 0;
    max-height: calc(100% + 2em);
    overflow: hidden;
  }
  .big-cta-blocks .full-width-block .innerbox:before {
    display: table;
    content: "";
    clear: both;
  }
  .big-cta-blocks .full-width-block .textcontainer {
    position: relative;
    float: right;
    margin-bottom: 3em;
    max-width: 58%;
    transform: none;
    top: auto;
    margin-top: 2.5em;
  }
  .big-cta-blocks.small-text .full-width-block {
    min-height: 23em;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .big-cta-blocks .full-width-block .textcontainer {
    max-width: 58%;
    padding: 2em;
  }
}
@media (max-width: 767px) {
  .big-cta-blocks .full-width-block.form .textcontainer {
    top: auto;
  }
  .big-cta-blocks .full-width-block {
    margin-bottom: 4em;
  }
  .big-cta-blocks .full-width-block .textcontainer {
    position: relative;
    top: auto;
    transform: none;
    float: left;
    float: left;
    width: 100%;
    max-width: none;
    padding: 2.5em;
  }
  .big-cta-blocks .full-width-block .img_containment {
    width: 100%;
  }
  .big-cta-blocks .ce_text:nth-of-type(2n + 1) {
    clear: left;
  }
}
@media (max-width: 767px) and (min-width: 741px) {
  .big-cta-blocks.tv-blocks .ce_text {
    padding-bottom: 3em !important;
    padding-left: 1.25em;
    padding-right: 0;
  }
  .big-cta-blocks.tv-blocks .ce_text .textcontainer {
    width: 82%;
  }
  .big-cta-blocks.tv-blocks .ce_text:nth-of-type(2n + 1) {
    padding-right: 1.25em;
  }
  .big-cta-blocks.tv-blocks .ce_text:nth-of-type(2n + 1) .textcontainer {
    right: 1.25em;
  }
}
@media (min-width: 577px) and (max-width: 740px) {
  .big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n+1) .textcontainer, .big-cta-blocks.one-half-blocks .ce_text .textcontainer {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
  }
  .big-cta-blocks.one-half-blocks .ce_text p {
    min-width: 0;
    max-width: 100%;
  }
  .big-cta-blocks.one-half-blocks .ce_text .innerbox {
    -webkit-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
    -moz-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
    box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
    min-height: 20em;
  }
  .big-cta-blocks.one-half-blocks .ce_text .img_containment {
    padding-right: 0;
  }
}
@media (max-width: 650px) {
  .big-cta-blocks .full-width-teaser {
    margin-bottom: 4em;
  }
  .big-cta-blocks .full-width-teaser .textcontainer {
    width: 75%;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .big-cta-blocks {
    text-align: center;
  }
  .big-cta-blocks.tv-blocks.one-half-blocks .ce_text:last-of-type {
    margin-bottom: 6em;
  }
  .big-cta-blocks.one-half-blocks .ce_text, .big-cta-blocks .full-width-teaser.ce_text {
    width: 100%;
    max-width: 350px;
    padding: 0;
    float: none;
    margin: 0 auto 4em;
  }
  .big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n + 1), .big-cta-blocks .full-width-teaser.ce_text:nth-of-type(2n + 1) {
    padding: 0;
    float: none;
  }
  .big-cta-blocks.one-half-blocks .ce_text:last-of-type, .big-cta-blocks .full-width-teaser.ce_text:last-of-type {
    margin-bottom: 5em;
  }
  .big-cta-blocks.one-half-blocks .ce_text .textcontainer, .big-cta-blocks.one-half-blocks .ce_text:nth-of-type(2n + 1) .textcontainer, .big-cta-blocks .full-width-teaser.ce_text .textcontainer, .big-cta-blocks .full-width-teaser.ce_text:nth-of-type(2n + 1) .textcontainer {
    text-align: left;
    right: -1em;
  }
  .big-cta-blocks.one-half-blocks .ce_text .img_containment, .big-cta-blocks .full-width-teaser.ce_text .img_containment {
    padding-right: 0;
  }
  .big-cta-blocks .full-width-teaser.ce_text {
    margin-bottom: 5em;
  }
  .big-cta-blocks .full-width-teaser.ce_text .innerbox {
    width: 100%;
    position: relative;
    float: left;
    margin-bottom: 5em;
  }
  .big-cta-blocks .full-width-teaser.ce_text .textcontainer {
    position: absolute;
    width: auto;
    bottom: -1em;
  }
  .big-cta-blocks .full-width-teaser.ce_text .textcontainer p {
    min-width: 11em;
    max-width: 11em;
  }
  .big-cta-blocks.one-half-blocks.two-equal-row .ce_text {
    max-width: 100%;
    margin-bottom: 4em;
  }
  .big-cta-blocks.one-half-blocks.two-equal-row .textcontainer {
    right: auto;
  }
  .big-cta-blocks .full-width-block h3 br {
    display: none;
  }
}
@media (max-width: 560px) {
  .big-cta-blocks .full-width-teaser .textcontainer {
    position: relative;
    width: 100%;
    max-width: 100%;
    float: left;
    bottom: auto;
  }
  .big-cta-blocks .full-width-teaser .img_containment {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .big-cta-blocks .full-width-block .textcontainer {
    padding: 2em 1.5em;
  }
  .big-cta-blocks .full-width-block ul li .left {
    top: auto;
    transform: none;
    position: relative;
    width: 100%;
  }
  .big-cta-blocks .full-width-block ul li .price {
    width: 100%;
  }
  .big-cta-blocks .full-width-block.btn-right .textcontainer {
    padding-right: 1.5em;
  }
  .big-cta-blocks .full-width-block.btn-right .textcontainer .btn-default {
    float: none;
  }
}
@media (max-width: 350px) {
  .big-cta-blocks.one-half-blocks .ce_text .textcontainer, .big-cta-blocks.one-half-blocks .full-width-teaser.ce_text .textcontainer, .big-cta-blocks.section .ce_text .textcontainer, .big-cta-blocks.section .full-width-teaser.ce_text .textcontainer {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .big-cta-blocks.one-half-blocks .ce_text .innerbox, .big-cta-blocks.one-half-blocks .full-width-teaser.ce_text .innerbox, .big-cta-blocks.section .ce_text .innerbox, .big-cta-blocks.section .full-width-teaser.ce_text .innerbox {
    -webkit-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
    -moz-box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
    box-shadow: 0 0 1.5em 0 rgba(200, 200, 200, 0.5);
  }
  .big-cta-blocks.one-half-blocks .ce_text .img_containment, .big-cta-blocks.one-half-blocks .full-width-teaser.ce_text .img_containment, .big-cta-blocks.section .ce_text .img_containment, .big-cta-blocks.section .full-width-teaser.ce_text .img_containment {
    padding-right: 0;
  }
}
@media (max-width: 376px) {
  .big-cta-blocks.one-half-blocks .ce_text {
    margin-bottom: 3.8em;
  }
}
.big-cta-blocks h5 a, .big-cta-blocks p a, .big-cta-blocks h3 a, .home-banner h5 a, .home-banner p a, .home-banner h3 a {
  text-decoration: none;
  font-family: inherit;
  font-style: inherit;
  color: inherit;
}
.big-cta-blocks h5, .home-banner h5 {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
}
.big-cta-blocks .textimage p:last-of-type a:before, .home-banner .textimage p:last-of-type a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.simple-text-icons {
  position: relative;
}
.simple-text-icons:after {
  content: "";
  display: table;
  clear: both;
}
.simple-text-icons .content-wrapper:after {
  display: table;
  content: "";
  clear: both;
}
.simple-text-icons .content-wrapper:before {
  display: block;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 4em;
  right: 4em;
}
.simple-text-icons .ce_text {
  width: 25%;
  float: left;
  padding: 0 2em;
  text-align: center;
  z-index: 20;
  position: relative;
}
.simple-text-icons .ce_headline {
  margin-bottom: 3em;
  font-size: 1.4em;
  text-align: center;
}
.simple-text-icons h3 {
  font-size: 1.05em;
  font-weight: var(--font-base-strong-weight);
  color: #4d4d4d;
  margin: 0.5em auto;
  position: relative;
  min-height: 6.5em;
}
.simple-text-icons h3:before {
  display: block;
  font-family: "zeag";
  color: var(--brand-color-1);
  font-size: 4.2em;
  line-height: 1.3;
  font-weight: var(--font-base-weight);
  margin-bottom: 0.05em;
}
.simple-text-icons p {
  max-width: 24em;
  margin: 0 auto 1em;
  font-size: 0.95em;
  color: #767676;
  margin-bottom: 0;
}
.simple-text-icons p a {
  font-weight: var(--font-base-strong-weight);
  color: var(--brand-color-1);
  transition: color 0.3s ease-in-out;
}
.simple-text-icons p a:hover {
  color: #333;
}
.simple-text-icons figure img {
  width: auto;
}
.simple-text-icons .box-preise h3:before {
  content: "";
}
.simple-text-icons .box-preise-2 h3:before {
  content: "";
}
.simple-text-icons .box-echter h3:before {
  content: "";
}
.simple-text-icons .box-callcentar h3:before {
  content: "";
}
.simple-text-icons .box-treue h3:before {
  content: "";
}
.simple-text-icons .box-tarife h3:before {
  content: "";
}
.simple-text-icons .box-anderungen h3:before {
  content: "";
}
.simple-text-icons .box-daheim h3:before {
  content: "";
}
.simple-text-icons .box-alles h3:before {
  content: "";
  color: var(--brand-color-1);
}
.simple-text-icons .box-klare h3:before {
  content: "";
  color: var(--brand-color-1);
}
.simple-text-icons .box-lokal h3:before {
  content: "";
  color: var(--brand-color-1);
}
.simple-text-icons .box-storm-kuendigen h3:before {
  content: "";
  color: var(--brand-color-1);
}
.simple-text-icons .box-gas-kuendigen h3:before {
  content: "";
  color: var(--brand-color-1);
}
.simple-text-icons .box-daheiminternet-kuendigen h3:before {
  content: "";
  color: var(--brand-color-1);
}
.simple-text-icons .schonung h3:before {
  content: "";
}
.simple-text-icons .konsequente h3:before {
  content: "";
}
.simple-text-icons .messbarkeit h3:before {
  content: "";
}
.simple-text-icons .transparenz h3:before {
  content: "";
}
.simple-text-icons .transparenz-2 h3:before {
  content: "";
}
.simple-text-icons .sicherheit h3:before {
  content: "";
}
.simple-text-icons .kompetenz-circled h3:before {
  content: "";
}
.simple-text-icons .svg-icon h3:before {
  content: "";
  display: block;
  height: 86px;
}
.simple-text-icons .oekostrom-ressourcen h3:before {
  background: url("/bundles/zeag/icons/oekostrom-ressourcen.svg") center / auto 100% no-repeat;
}
.simple-text-icons .oekostrom-emissionen h3:before {
  background: url("/bundles/zeag/icons/oekostrom-emissionen.svg") center / auto 100% no-repeat;
}
.simple-text-icons .oekostrom-atomstrom h3:before {
  background: url("/bundles/zeag/icons/oekostrom-atomstrom.svg") center / auto 100% no-repeat;
}
.simple-text-icons .box-regenerative-energie h3:before {
  height: 1.3em;
  background: url("/bundles/zeag/icons/regenerative-energie.svg") center / auto 0.7em no-repeat;
}
.simple-text-icons.three-elements .ce_text {
  width: 33.3333%;
}
.simple-text-icons.two-elements .ce_text {
  width: 50%;
  margin-bottom: 2.5em;
}
.simple-text-icons.two-elements .ce_text:nth-of-type(2n + 1) {
  clear: left;
}
.simple-text-icons.two-elements .ce_text p {
  max-width: 32em;
}
.simple-text-icons.odd .ce_text:last-of-type {
  float: none;
  margin: auto;
}
.simple-text-icons.number-blocks .ce_text h3 {
  min-height: 0;
  padding-top: 5em;
  display: block;
}
.simple-text-icons.number-blocks .ce_text h3:before {
  font-family: var(--font-base);
  font-size: 1.975em;
  border: 2px solid var(--brand-color-1);
  color: var(--brand-color-1);
  font-weight: var(--font-base-weight);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  height: 1.8em;
  line-height: 1.65em;
  width: 1.8em;
}
.simple-text-icons.number-blocks .ce_text:nth-child(1) h3:before {
  content: "1";
}
.simple-text-icons.number-blocks .ce_text:nth-child(2) h3:before {
  content: "2";
}
.simple-text-icons.number-blocks .ce_text:nth-child(3) h3:before {
  content: "3";
}
.simple-text-icons.number-blocks .ce_text:nth-child(4) h3:before {
  content: "4";
}
.simple-text-icons.number-blocks .ce_text:nth-child(5) h3:before {
  content: "5";
}
@media screen and (min-width: 401px) and (max-width: 870px) {
  .simple-text-icons.number-blocks.three-elements .ce_text, .simple-text-icons.number-blocks.two-elements .ce_text {
    max-width: 550px;
  }
  .simple-text-icons.number-blocks.three-elements .ce_text .textcontainer, .simple-text-icons.number-blocks.two-elements .ce_text .textcontainer {
    padding-left: 7em;
  }
  .simple-text-icons.number-blocks.three-elements .ce_text h3, .simple-text-icons.number-blocks.two-elements .ce_text h3 {
    padding-top: 0;
    text-align: left;
  }
  .simple-text-icons.number-blocks.three-elements .ce_text h3:before, .simple-text-icons.number-blocks.two-elements .ce_text h3:before {
    text-align: center;
    margin: 0;
    left: -2.5em;
    top: 0.1em;
  }
  .simple-text-icons.number-blocks.three-elements .ce_text p, .simple-text-icons.number-blocks.two-elements .ce_text p {
    max-width: max-content;
    margin: 0;
    text-align: left;
  }
}
.simple-text-icons.small-headings .ce_text {
  padding: 0 1.75em;
}
.simple-text-icons.small-headings h3 {
  font-size: 1.05em;
  min-height: 5.5em;
}
.simple-text-icons.small-headings h3:before {
  font-size: 4.2em;
}
.simple-text-icons.big-icons h3:before {
  font-size: 5.75em;
  height: 0.85em;
  line-height: 0.85em;
}
.simple-text-icons.grey-bg {
  background-color: #f7f7f7;
}
.simple-text-icons.gray-bg {
  background-color: #f7f7f7;
}
.simple-text-icons.color-orange h3:before {
  color: var(--brand-color-1);
}
.simple-text-icons.col-50 .ce_text {
  width: 50%;
}
.simple-text-icons.no-bottom-space .content-wrapper {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .simple-text-icons .content-wrapper:before {
    left: 3em;
    right: 3em;
  }
}
@media (max-width: 800px) {
  .simple-text-icons .content-wrapper:before {
    left: 2.5em;
    right: 2.5em;
  }
}
@media (min-width: 1024px) {
  .simple-text-icons .ce_text, .simple-text-icons .input-container {
    opacity: 0;
    transform: scale(0.7, 0.7);
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
  }
  .simple-text-icons .ce_text:nth-of-type(2), .simple-text-icons .input-container:nth-of-type(2) {
    transition-delay: 0.25s;
  }
  .simple-text-icons .ce_text:nth-of-type(3), .simple-text-icons .input-container:nth-of-type(3) {
    transition-delay: 0.5s;
  }
  .simple-text-icons .ce_text:nth-of-type(4), .simple-text-icons .input-container:nth-of-type(4) {
    transition-delay: 0.75s;
  }
  .simple-text-icons.in-view .ce_text, .simple-text-icons.in-view .input-container {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@media (max-width: 870px) {
  .simple-text-icons .ce_text {
    width: 50%;
  }
  .simple-text-icons .ce_text:nth-of-type(3) {
    clear: left;
  }
  .simple-text-icons .ce_text h3 {
    min-height: 0;
  }
  .simple-text-icons.three-elements .ce_text, .simple-text-icons.two-elements .ce_text {
    max-width: 400px;
    float: none;
    width: 100%;
    clear: both;
    margin: auto;
    margin-bottom: 2.5em;
  }
  .simple-text-icons.three-elements .ce_text:last-of-type, .simple-text-icons.two-elements .ce_text:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 580px) {
  .simple-text-icons.number-blocks .ce_text h3:before {
    height: 1.5em;
    width: 1.5em;
    line-height: 1.45em;
  }
}
@media (max-width: 480px) {
  .simple-text-icons.col-50 .ce_text {
    width: 100%;
  }
  .simple-text-icons .ce_text {
    width: 100%;
    padding: 1em;
  }
}
.simple-text-icons.has-headline.number-blocks .ce_text:nth-child(2) h3:before {
  content: "1";
}
.simple-text-icons.has-headline.number-blocks .ce_text:nth-child(3) h3:before {
  content: "2";
}
.simple-text-icons.has-headline.number-blocks .ce_text:nth-child(4) h3:before {
  content: "3";
}
.simple-text-icons.has-headline.number-blocks .ce_text:nth-child(5) h3:before {
  content: "4";
}
.image-text-elements .ce_text:first-of-type {
  border-top: 1px solid #dadada;
  padding-top: 5em;
}
.image-text-elements .textcontainer {
  width: 62%;
  float: right;
}
.image-text-elements .img_containment {
  width: 38%;
  float: left;
  padding-right: 5em;
}
.image-text-elements h4 {
  font-weight: var(--font-base-strong-weight);
  font-size: 1.05em;
  margin-bottom: 0.2em;
}
.image-text-elements.no-top-border .ce_text:first-of-type {
  border-top: none;
  padding-top: 5em;
}
@media (max-width: 800px) {
  .image-text-elements .img_containment {
    padding-right: 2em;
  }
}
@media (max-width: 560px) {
  .image-text-elements.no-top-border .ce_text:first-of-type {
    padding-top: 0;
  }
  .image-text-elements .textcontainer, .image-text-elements .img_containment {
    width: 100%;
  }
  .image-text-elements .img_containment {
    padding-right: 0;
    text-align: center;
  }
  .image-text-elements .img_containment img {
    max-width: 20em;
    margin: 0 auto 2em;
  }
  .image-text-elements .float_left {
    width: 100%;
  }
}
.small-heading {
  font-style: normal;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 1.5em;
  color: #595959;
}
@media (max-width: 480px) {
  .small-heading {
    text-align: center;
  }
}
.bottom-btn-holder {
  text-align: center;
  overflow: visible;
}
.bottom-btn-holder p {
  margin-bottom: 0;
}
.bottom-btn-holder .textcontainer {
  margin-top: 1em;
  padding-bottom: 4em;
  margin-bottom: 5em;
  border-bottom: 1px solid #e0e1e0;
}
.big-cta-blocks .content-wrapper:after, .simple-text-icons .content-wrapper:after {
  display: table;
  content: "";
  clear: both;
}
.big-cta-blocks.border-bottom, .simple-text-icons.border-bottom {
  margin-bottom: 5em;
}
.big-cta-blocks.border-bottom .content-wrapper:before, .simple-text-icons.border-bottom .content-wrapper:before {
  position: absolute;
  left: 4em;
  right: 4em;
  bottom: 0;
  content: "";
  border-bottom: 1px solid #e0e1e0;
}
.big-cta-blocks.border-top .content-wrapper, .simple-text-icons.border-top .content-wrapper {
  padding-top: 5em;
  position: relative;
}
.big-cta-blocks.border-top .content-wrapper:before, .simple-text-icons.border-top .content-wrapper:before {
  position: absolute;
  height: 0;
  left: 4em;
  right: 4em;
  top: 0;
  content: "";
  border-bottom: 1px solid #e0e1e0;
}
.big-cta-blocks.no-margin-bottom .content-wrapper, .simple-text-icons.no-margin-bottom .content-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 1300px) {
  .big-cta-blocks.border-bottom .content-wrapper:before, .big-cta-blocks.border-top .content-wrapper:before, .simple-text-icons.border-bottom .content-wrapper:before, .simple-text-icons.border-top .content-wrapper:before {
    left: 3em;
    right: 3em;
  }
}
@media (max-width: 800px) {
  .big-cta-blocks.border-bottom .content-wrapper:before, .big-cta-blocks.border-top .content-wrapper:before, .simple-text-icons.border-bottom .content-wrapper:before, .simple-text-icons.border-top .content-wrapper:before {
    left: 2em;
    right: 2em;
  }
}
@media (max-width: 480px) {
  .big-cta-blocks.border-bottom .content-wrapper:before, .big-cta-blocks.border-top .content-wrapper:before, .simple-text-icons.border-bottom .content-wrapper:before, .simple-text-icons.border-top .content-wrapper:before {
    left: 2.5em;
    right: 2.5em;
  }
}
@media (max-width: 800px) {
  .simple-text-icons .content-wrapper {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.short-text-image .img_containment {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.short-text-image .img_containment .image_container, .short-text-image .img_containment img {
  width: 100%;
}
.short-text-image h2 {
  font-size: 1.35em;
  margin-bottom: 1em;
  font-weight: var(--font-base-strong-weight);
  line-height: 1.3;
}
.short-text-image h2 small {
  margin-bottom: 0.5em;
}
.short-text-image h2 strong {
  font-weight: inherit;
}
.short-text-image p {
  font-weight: 500;
}
@media (min-width: 800px) {
  .short-text-image .img_containment {
    width: 40%;
  }
  .short-text-image .img_containment.float_left {
    padding-right: 5em;
  }
  .short-text-image .img_containment.float_right {
    padding-left: 5em;
  }
  .short-text-image .textcontainer {
    width: 60%;
  }
  .short-text-image .textcontainer p:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 640px) and (max-width: 799px) {
  .short-text-image .img_containment {
    width: 45%;
  }
  .short-text-image .img_containment.float_left {
    padding-right: 3em;
  }
  .short-text-image .img_containment.float_right {
    padding-left: 3em;
  }
  .short-text-image .textcontainer {
    width: 55%;
  }
}
@media (min-width: 640px) {
  .short-text-image .innerbox {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .short-text-image.textimage-right .innerbox {
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-flex-direction: row-reverse;
    -flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (max-width: 639px) {
  .short-text-image .img_containment {
    float: none;
    max-width: 30em;
  }
  .short-text-image .img_containment figure {
    margin-bottom: 2em;
  }
  .short-text-image .textcontainer {
    float: none;
    clear: both;
  }
  .short-text-image p br {
    display: none;
  }
}
.service-box-block {
  background: #f7f7f7;
  margin: 0 auto 5em;
  float: none;
  overflow: visible;
  padding: 4em 0;
}
.service-box-block .content-wrapper {
  position: relative;
}
.service-box-block .package-preview {
  width: 11.35em;
  position: relative;
  float: left;
  margin-right: 4em;
  top: -6em;
  left: 0;
  background: #fff;
  border-radius: 12px;
  -moz-box-shadow: 0 0.125em 1em 0.125em rgba(25, 25, 25, 0.32);
  -webkit-box-shadow: 0 0.125em 1em 0.125em rgba(25, 25, 25, 0.32);
  box-shadow: 0 0.125em 1em 0.125em rgba(25, 25, 25, 0.32);
}
.service-box-block .package-preview .textcontainer {
  padding: 1em;
  text-align: center;
}
.service-box-block .package-preview .textcontainer p a {
  color: var(--brand-color-1);
}
.service-box-block .package-preview .textcontainer h4 {
  font-weight: var(--font-base-strong-weight);
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
.service-box-block .package-preview .textcontainer p {
  margin-bottom: 0;
  font-size: 0.8;
  color: var(--brand-color-1);
  line-height: 1.4;
}
.service-box-block .package-preview .textcontainer p strong {
  font-size: 1.6em;
  font-weight: var(--font-base-strong-weight);
  color: inherit;
}
.service-box-block .white-infobubble {
  position: absolute;
  right: 8em;
  top: 0;
}
.service-box-block .inner-box h3 {
  font-size: 1.3em;
  margin-bottom: 1.4em;
  padding-right: 12em;
}
.service-box-block .inner-box p {
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .service-box-block .inner-box h3 {
    max-width: 100%;
  }
  .service-box-block .white-infobubble {
    position: relative;
    right: auto;
    top: auto;
    padding: 0;
    margin-bottom: 2em;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    height: auto;
    width: auto;
  }
  .service-box-block .white-infobubble ul {
    position: relative;
    top: auto;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .service-box-block .white-infobubble li {
    font-size: 1.085em;
  }
}
@media (max-width: 480px) {
  .service-box-block .package-preview {
    float: none;
    top: auto;
    margin: -9em auto 3em;
    width: 13em;
  }
  .service-box-block .inner-box {
    width: 100%;
  }
}
.grey-image-text {
  background: #f7f7f7;
  margin: 0 auto 5em;
  float: none;
  padding: 4em 0;
}
.grey-image-text h3 {
  font-weight: var(--font-base-strong-weight);
  line-height: 1.25;
  font-size: 1.2em;
  margin-bottom: 1.1em;
}
.grey-image-text h3 strong {
  display: block;
  font-weight: inherit;
}
.grey-image-text ul {
  margin-bottom: 0;
}
.grey-image-text li {
  position: relative;
  padding-left: 1.5em;
}
.grey-image-text .img_containment {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(calc(-50% - .5px));
  -moz-transform: translateY(calc(-50% - .5px));
  -o-transform: translateY(calc(-50% - .5px));
  transform: translateY(calc(-50% - .5px));
  position: absolute;
  right: 4em;
  max-width: 40%;
}
.grey-image-text .ce_text {
  padding-right: 45%;
}
@media (max-width: 1000px) {
  .grey-image-text .img_containment {
    padding-left: 5em;
  }
}
@media (max-width: 620px) {
  .grey-image-text .ce_text {
    padding-right: 0;
  }
  .grey-image-text .img_containment {
    width: 100%;
    left: auto;
    right: auto;
    margin-top: 2em;
    padding-left: 0;
    max-width: none;
    position: relative;
    top: auto;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .grey-image-text .img_containment img {
    max-width: 90%;
    display: block;
    margin: auto;
  }
}
.text-overview {
  margin-bottom: 5em;
}
.text-overview .textcontainer {
  padding: 3.5em 3.5em 2.5em 4.5em;
  background: #f7f7f7;
  width: 100%;
  float: left;
}
@media screen and (max-width: 850px) and (min-width: 641px) {
  .text-overview .textcontainer {
    padding: 2.5em 2.5em 2em 3.5em;
  }
}
@media screen and (max-width: 450px) {
  .text-overview .textcontainer {
    padding: 2.5em 1.5em 1.5em 2em;
  }
}
.text-overview h2 {
  font-size: 1.35em;
  margin-bottom: 1.3em;
  font-weight: var(--font-base-strong-weight);
}
.text-overview h2 strong {
  font-weight: inherit;
}
.text-overview ul {
  width: 100%;
  float: left;
  margin-bottom: 0;
}
@media screen and (min-width: 641px) {
  .text-overview ul {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 2em;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 2em;
    /* Firefox */
    column-gap: 2em;
  }
}
.text-overview li {
  margin-bottom: 1em;
  padding-left: 1.6em;
  position: relative;
  font-weight: 500;
}
@media (max-width: 450px) {
  .text-overview .content-wrapper {
    padding: 0;
  }
  .text-overview .content-wrapper .textcontainer {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}
.text-overview.in-view li:after, .grey-image-text.in-view li:after {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0;
  height: 0;
  border-right: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  border-radius: 2px;
  animation: checkbox-check-green 130ms 500ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}
.text-overview.in-view li:nth-child(1):after, .grey-image-text.in-view li:nth-child(1):after {
  animation-delay: 500ms;
}
.text-overview.in-view li:nth-child(2):after, .grey-image-text.in-view li:nth-child(2):after {
  animation-delay: 750ms;
}
.text-overview.in-view li:nth-child(3):after, .grey-image-text.in-view li:nth-child(3):after {
  animation-delay: 1000ms;
}
.text-overview.in-view li:nth-child(4):after, .grey-image-text.in-view li:nth-child(4):after {
  animation-delay: 1250ms;
}
.text-overview.in-view li:nth-child(5):after, .grey-image-text.in-view li:nth-child(5):after {
  animation-delay: 1500ms;
}
.text-overview.in-view li:nth-child(6):after, .grey-image-text.in-view li:nth-child(6):after {
  animation-delay: 1750ms;
}
.text-overview.in-view li:nth-child(7):after, .grey-image-text.in-view li:nth-child(7):after {
  animation-delay: 2000ms;
}
.text-overview.in-view li:nth-child(8):after, .grey-image-text.in-view li:nth-child(8):after {
  animation-delay: 2250ms;
}
.text-overview.in-view li:nth-child(9):after, .grey-image-text.in-view li:nth-child(9):after {
  animation-delay: 2500ms;
}
.text-overview.in-view li:nth-child(10):after, .grey-image-text.in-view li:nth-child(10):after {
  animation-delay: 2750ms;
}
.text-overview.in-view li:nth-child(11):after, .grey-image-text.in-view li:nth-child(11):after {
  animation-delay: 3000ms;
}
.text-overview.in-view li:nth-child(12):after, .grey-image-text.in-view li:nth-child(12):after {
  animation-delay: 3250ms;
}
.download-list {
  display: flex;
  margin-bottom: 5em;
}
.download-list h4 {
  font-weight: var(--font-base-strong-weight);
  color: #767676;
  float: left;
}
.download-list li {
  padding: 1.1em 0 1em;
  width: 100%;
  float: left;
  position: relative;
  border-top: 1px solid #dadada;
}
.download-list li:last-of-type {
  border-bottom: 1px solid #dadada;
}
.download-list .document-el {
  text-align: right;
  float: right;
  position: relative;
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
  padding-left: 1.75em;
}
.download-list .document-el .size {
  font-weight: 400;
}
.download-list .document-el:before {
  font-family: "Zeag";
  position: absolute;
  left: 0;
  top: -0.085em;
  font-weight: normal;
  font-size: 1.35em;
  content: "";
  color: var(--brand-color-1);
}
.download-list a {
  padding-left: 0;
}
.download-list a:before {
  display: none;
}
@media (max-width: 400px) {
  .download-list h4, .download-list .document-el {
    float: none;
  }
  .download-list h4 {
    margin-bottom: 1em;
  }
}
.icon-wrapper {
  margin-bottom: 1em;
  width: 100%;
  float: left;
}
.icon-wrapper .img-item {
  width: 18%;
  float: left;
  height: 8.5em;
  position: relative;
  margin-right: 2.5%;
  margin-bottom: 1.75em;
  padding: 1.5em;
  text-align: center;
  -webkit-box-shadow: 2.99174px 2.99174px 7.47934px rgba(0, 0, 0, 0.15);
  box-shadow: 2.99174px 2.99174px 7.47934px rgba(0, 0, 0, 0.15);
}
.icon-wrapper img {
  display: block;
  margin: auto;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(calc(-50% - .5px));
  -moz-transform: translateY(calc(-50% - .5px));
  -o-transform: translateY(calc(-50% - .5px));
  transform: translateY(calc(-50% - .5px));
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
@media (min-width: 800px) {
  .icon-wrapper .img-item:nth-child(5n) {
    margin-right: 0;
  }
}
@media (max-width: 799px) and (min-width: 601px) {
  .icon-wrapper .img-item {
    width: 22.5%;
    margin-right: 3.3333%;
  }
  .icon-wrapper .img-item:nth-child(4n) {
    margin-right: 0;
  }
}
@media (max-width: 600px) and (min-width: 441px) {
  .icon-wrapper .img-item {
    width: 30%;
    margin-right: 5%;
  }
  .icon-wrapper .img-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 440px) and (min-width: 341px) {
  .icon-wrapper .img-item {
    width: 48%;
    margin-right: 4%;
  }
  .icon-wrapper .img-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 340px) {
  .icon-wrapper .img-item {
    max-width: 16em;
    width: 100%;
    margin: 0 auto 2em;
    float: none;
  }
}
.icomoon-icon-2-01:before {
  content: "";
}
.open-this {
  cursor: pointer;
}
.iframe-block iframe {
  min-height: 603px;
}
.service-intro {
  overflow: visible;
}
.service-intro .overlay_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.service-intro .intro-text {
  float: left;
  width: calc(100% - 28em);
  padding-right: 5em;
  max-width: 50em;
}
.service-intro .intro-text h2 {
  font-size: 1.3em;
}
.service-intro .textimage-above {
  width: 11.3em;
  float: right;
  margin-left: 2em;
  text-align: center;
  overflow: visible;
}
.service-intro .textimage-above .innerbox {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.service-intro .textimage-above .textcontainer {
  padding-top: 1em;
  background-color: #f7f7f7;
}
.service-intro .textimage-above h4 {
  font-size: 1.1em;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 0.5em;
}
.service-intro .textimage-above p {
  background: linear-gradient(135deg, var(--brand-color-1) 33.46%, var(--brand-color-1-variant) 85.27%);
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
}
.service-intro .textimage-above p:before {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(calc(-50% - .5px));
  -moz-transform: translateY(calc(-50% - .5px));
  -o-transform: translateY(calc(-50% - .5px));
  transform: translateY(calc(-50% - .5px));
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
}
.service-intro .icomoon-icon-2-01:before {
  color: #fff;
}
@media (max-width: 900px) {
  .service-intro .intro-text {
    padding-right: 2em;
  }
}
@media (max-width: 700px) {
  .service-intro .intro-text {
    width: 100%;
    float: none;
    margin-bottom: 2em;
  }
  .service-intro .textimage {
    float: none;
    display: inline-block;
    margin-left: 0;
    margin-right: 2em;
  }
}
@media (max-width: 400px) {
  .service-intro .intro-text {
    padding-right: 0;
  }
  .service-intro .textimage-above p {
    width: 3.5em;
    height: 3.5em;
  }
  .service-intro .textimage-above p:before {
    font-size: 1.3em;
  }
  .service-intro .textimage {
    width: 47.5%;
    margin-right: 5%;
    float: left;
  }
  .service-intro .textimage:last-of-type {
    margin-right: 0;
  }
}
.grey-arccodion-block {
  background: #f7f7f7;
  margin-bottom: 5em;
  padding: 4em 0;
}
.grey-arccodion-block .toggler .ui-icon:before {
  background: transparent !important;
}
.grey-arccodion-block .textimage h3 {
  font-size: 1.1em;
  font-weight: var(--font-base-strong-weight);
  line-height: 1.2;
  margin-bottom: 1em;
}
.grey-arccodion-block .textimage h3 strong {
  color: #4d4d4d;
  font-weight: inherit;
  font-family: inherit;
}
.grey-arccodion-block .img_containment {
  width: 23em;
}
.grey-arccodion-block .textcontainer {
  width: calc(100% - 34em);
}
.grey-arccodion-block .section-acc .accordion {
  text-align: left;
}
.grey-arccodion-block .section-acc .textcontainer {
  padding: 0;
}
.grey-arccodion-block .section-acc .toggler h3 {
  font-size: 1.05em;
}
.grey-arccodion-block li {
  padding: 0.85em 1.5em;
  position: relative;
}
.grey-arccodion-block li p:last-of-type {
  margin-bottom: 0;
}
.grey-arccodion-block p strong {
  position: absolute;
  right: 3em;
  bottom: 1em;
  color: var(--brand-color-1);
}
.grey-arccodion-block h4 {
  font-weight: var(--font-base-strong-weight);
}
.grey-arccodion-block .white-bg {
  background: #fff;
}
.grey-arccodion-block .white-bg h4 {
  margin-bottom: 1.5em;
}
@media (max-width: 1100px) {
  .grey-arccodion-block .textcontainer {
    width: calc(100% - 26em);
  }
}
@media (max-width: 840px) {
  .grey-arccodion-block .textcontainer {
    width: calc(100% - 18em);
  }
  .grey-arccodion-block .img_containment {
    width: 16em;
    margin-top: 2.5em;
  }
}
@media (max-width: 580px) {
  .grey-arccodion-block .textcontainer {
    width: calc(100% - 16em);
  }
  .grey-arccodion-block .img_containment {
    width: 14em;
    margin-top: 3.5em;
  }
}
@media (max-width: 400px) {
  .grey-arccodion-block .textcontainer {
    width: 100%;
  }
  .grey-arccodion-block .image_container {
    height: 100%;
  }
  .grey-arccodion-block .img_containment {
    position: absolute;
    height: 9em;
    margin-top: 0;
    width: auto;
    top: 4.5em;
  }
  .grey-arccodion-block .img_containment img {
    height: 100%;
    width: auto;
  }
  .grey-arccodion-block .textimage h3 {
    margin-bottom: 11em;
  }
  .grey-arccodion-block .section-acc {
    margin-top: 0;
  }
}
.event-block {
  margin-bottom: 5em;
}
.event-block .textcontainer {
  float: right;
  width: 70%;
  padding-left: 5em;
}
.event-block .img_containment {
  float: left;
  width: 30%;
}
.event-block h3 {
  font-size: 1.3em;
  line-height: 1.25;
  margin-bottom: 1.1em;
  font-weight: var(--font-base-strong-weight);
}
.event-block h3 strong {
  display: block;
  font-weight: var(--font-base-strong-weight);
  font-family: inherit;
}
.event-block ul.list-more {
  margin-top: -0.5em;
}
.event-block li {
  background: #f7f7f7;
  padding: 0.35em 1em;
  margin-bottom: 0.85em;
  font-weight: var(--font-base-strong-weight);
}
.event-block li strong {
  font-weight: 400;
}
.event-block button.show-more {
  display: none;
}
.event-block .image-right .textcontainer {
  float: left;
  padding-left: 0;
  padding-right: 5em;
}
.event-block .badge {
  padding-top: 1.6em;
  overflow: visible;
}
.event-block .badge .textcontainer {
  position: relative;
}
.event-block .badge h4 {
  position: absolute;
  right: -5.5em;
  top: -1.5em;
  margin: auto;
  background: var(--brand-color-1);
  height: 7.2em;
  width: 7.2em;
  border-radius: 50%;
  text-align: center;
  padding: 0.5em;
  color: #fff;
  z-index: 30;
  font-size: 1.15em;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(113, 113, 113, 0.58);
  box-shadow: 0px 4px 16px 0px rgba(113, 113, 113, 0.58);
  background: var(--brand-color-1);
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, var(--brand-color-1) 0%, var(--brand-color-1-variant) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, var(--brand-color-1) 0%, var(--brand-color-1-variant) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, var(--brand-color-1) 0%, var(--brand-color-1-variant) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--brand-color-1)", endColorstr="var(--brand-color-1-variant)",GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.event-block .badge h4 strong {
  top: 50%;
  position: relative;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  display: block;
  margin-top: 2px;
  line-height: 1.25;
}
.event-block .two-column .textcontainer {
  width: 100%;
  padding-left: 0;
}
.event-block .two-column ul {
  width: 47%;
  float: left;
  margin-right: 6%;
}
.event-block .two-column ul:last-of-type {
  margin-right: 0;
}
.event-block .two-column ul.list-more {
  margin-top: 0;
}
@media (max-width: 900px) {
  .event-block {
    margin-bottom: 2em;
  }
  .event-block .textcontainer {
    padding-left: 3em;
    width: 65%;
  }
  .event-block .img_containment {
    width: 35%;
  }
  .event-block .image-right .textcontainer {
    padding-right: 3em;
  }
}
@media (max-width: 700px) {
  .event-block .badge h4 {
    font-size: 1em;
  }
}
@media (max-width: 600px) {
  .event-block {
    margin-bottom: 1em;
  }
  .event-block .textcontainer, .event-block .img_containment {
    float: none;
    width: 100%;
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
  .event-block .image-right .textcontainer {
    padding-right: 0;
    float: none;
  }
  .event-block .badge {
    padding-top: 0;
  }
  .event-block .badge h4 {
    right: -2em;
    top: auto;
    bottom: -8em;
    left: auto;
  }
  .event-block .badge .img_containment {
    padding-top: 1.5em;
    margin-top: 1em;
  }
  .event-block .two-column ul {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
@media (max-width: 340px) {
  .event-block .badge h4 {
    left: -1em;
  }
}
.simple-text h2 {
  font-size: 1.3em;
}
.simple-text a {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
}
.simple-text h2 {
  max-width: 45em;
}
.simple-text p {
  max-width: 55em;
}
.simple-text ul.btnlist {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.ce_accordionStart .simple-text {
  margin-bottom: 3em;
}
.text-image-overflow {
  background: #f7f7f7;
  padding: 5em 0;
  overflow: visible;
  margin-top: 2em;
}
.text-image-overflow:after {
  display: table;
  clear: both;
  content: "";
}
.text-image-overflow .ce_text {
  overflow: visible;
}
.text-image-overflow .innerbox {
  float: left;
  width: 100%;
  position: relative;
}
.text-image-overflow .textcontainer {
  width: 52%;
  float: left;
}
.text-image-overflow .textcontainer h2 {
  font-weight: var(--font-base-strong-weight);
  font-size: 1.4em;
  margin-bottom: 1em;
  line-height: 1.3;
}
.text-image-overflow .textcontainer p {
  font-weight: var(--font-base-light-weight);
  font-size: 1.0625em;
}
.text-image-overflow .textcontainer p:last-of-type {
  margin-bottom: 0;
}
.text-image-overflow .img_containment {
  width: 48%;
  position: absolute;
  top: -8em;
  right: 0;
  text-align: center;
  float: right;
}
.text-image-overflow .img_containment img {
  width: auto;
  max-height: 100%;
  max-width: 26em;
  margin: auto;
}
@media (max-width: 767px) {
  .text-image-overflow .img_containment, .text-image-overflow .textcontainer {
    width: 100%;
  }
  .text-image-overflow .img_containment {
    top: auto;
    left: auto;
    margin-top: 3em;
    position: relative;
  }
  .text-image-overflow .img_containment img {
    max-width: 20em;
  }
}
.trident .simple-text-icons.big-icons h3::before {
  font-size: 5rem;
}
.trident .simple-text-icons.number-blocks .ce_text h3::before {
  font-size: 2rem;
}
.trident .simple-text-icons.color-orange h3::before {
  font-size: 4.3rem;
}
.border-table-element {
  padding: 2em 2em 3em;
  background: #f7f7f7;
}
.border-table-element table {
  width: 100%;
  margin-bottom: 0;
}
.border-table-element thead, .border-table-element tr {
  border-bottom: 1px solid #e4e3e3;
}
.border-table-element tr td {
  padding: 0.5em 0;
  color: #929292;
}
.border-table-element tr td, .border-table-element thead th {
  padding-left: 1em;
}
.border-table-element tr td:first-of-type, .border-table-element thead th:first-of-type {
  font-weight: var(--font-base-strong-weight);
  padding-left: 0;
}
.border-table-element th {
  text-align: left;
  font-weight: var(--font-base-strong-weight);
  color: var(--brand-color-1);
  padding: 0.5em 0;
  font-size: 1.1em;
}
@media (max-width: 540px) {
  .border-table-element {
    padding: 1.5em 1.5em 2em;
  }
  .border-table-element thead th {
    display: none;
  }
  .border-table-element thead th:first-of-type {
    display: block;
  }
  .border-table-element tr {
    display: block;
  }
  .border-table-element tr td:first-of-type {
    display: block;
    width: 100%;
    float: left;
  }
  .border-table-element tr td:nth-of-type(2n) {
    padding-left: 0;
  }
}
#karriere-zeag .border-table-element {
  margin-bottom: 2em;
}
#karriere-zeag .announce p {
  margin-bottom: 5em;
  font-weight: var(--font-base-strong-weight);
  font-size: 1em;
  color: #929292;
}
.energy-graphics h2 {
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 2em;
}
.bauen-graphic {
  padding-bottom: 4em;
  border-bottom: 1px solid #e1e1e1;
}
.bauen-graphic .desktop-only {
  display: none;
}
@media (min-width: 801px) {
  .bauen-graphic .desktop-only {
    display: block;
  }
}
.bauen-graphic .mobile-only {
  display: none;
}
@media (max-width: 800px) {
  .bauen-graphic {
    text-align: center;
  }
  .bauen-graphic .mobile-only {
    display: block;
  }
  .bauen-graphic svg {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}
.svg-icon-blocks {
  margin-bottom: 5em;
  margin-top: 3.5em;
  width: 100%;
  background-color: #f7f7f7;
}
.svg-icon-blocks div {
  width: 29%;
  display: inline-block;
  vertical-align: top;
  margin: 0 1.6%;
  text-align: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 22px;
}
.svg-icon-blocks svg {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 130px;
}
.svg-icon-blocks h4 {
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 0.25em;
}
.svg-icon-blocks p {
  color: #A2A1A1;
}
@media (max-width: 920px) {
  .svg-icon-blocks div {
    padding-top: 40px;
    padding-bottom: 10px;
  }
  .svg-icon-blocks svg {
    height: 90px;
  }
}
@media (max-width: 620px) {
  .svg-icon-blocks {
    margin-top: 0;
    padding-bottom: 1.5em;
  }
  .svg-icon-blocks div {
    width: initial;
    max-width: 250px;
    margin: auto;
    display: block;
  }
  .svg-icon-blocks svg {
    height: 70px;
    width: 8em;
    margin: 0;
    top: 2em;
  }
  .svg-icon-blocks h4, .svg-icon-blocks p {
    text-align: left;
    padding-left: 9em;
  }
}
.one-half-text {
  width: 47%;
  float: left;
}
.one-half-text:last-of-type {
  float: right;
}
.one-half-text h3 {
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 0.85em;
  font-size: 1.1em;
}
.one-half-text p {
  font-weight: var(--font-base-light-weight);
}
.one-half-text p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 740px) {
  .one-half-text {
    width: 100%;
    margin-bottom: 2.5em;
  }
  .one-half-text:last-of-type {
    margin-bottom: 0;
  }
}
.headline-centered .ce_headline {
  text-align: center;
}
.headline-centered h2 {
  margin-bottom: 3em;
  font-size: 1.4em;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  margin-bottom: 4em;
}
.map-responsive span {
  display: none;
  position: absolute;
  top: 9px;
  left: 7px;
  background: #fff;
  padding: 2px;
  z-index: 20;
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
body.fees .pricing-container .content-wrapper {
  padding-left: 4em;
  padding-right: 4em;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row;
  flex-flow: row wrap;
  height: 100%;
}
@media (max-width: 1300px) {
  body.fees .pricing-container .content-wrapper {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 800px) {
  body.fees .pricing-container .content-wrapper {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}
@media (max-width: 480px) {
  body.fees .pricing-container .content-wrapper {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}
@media (max-width: 340px) {
  body.fees .pricing-container .content-wrapper {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
body.fees .pricing-container .ce_text {
  flex-basis: 50%;
  -ms-flex: auto;
  width: 50%;
  max-width: 50em;
}
body.fees .pricing-container .ce_text .textcontainer {
  width: 100%;
  margin-bottom: 0;
}
body.fees .pricing-container .pricing {
  text-align: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
  width: 50%;
}
body.fees .pricing-container .pricing .price-info {
  width: 13.9em;
  height: 17em;
  padding-right: 0.5em;
  padding-bottom: 0.6em;
  align-self: center;
  background-repeat: no-repeat;
  background-size: 103%;
}
body.fees .pricing-container .pricing .price-info h3 {
  color: #595959;
  font-size: 1.35em;
  line-height: 1.2;
  padding: 1.2em 0 1em 0;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 0;
}
body.fees .pricing-container .pricing .price-info h3 strong {
  font-weight: var(--font-base-strong-weight);
  text-transform: uppercase;
  color: #fff;
}
body.fees .pricing-container .pricing .price-info p.price {
  font-style: normal;
  font-weight: var(--font-base-strong-weight);
  font-size: 2em;
  padding: 0.65em 0 0 0;
  margin: 0;
}
body.fees .pricing-container .pricing .price-info p.footnote {
  color: #767676;
  max-width: 73%;
  margin: 0 auto;
  line-height: 1.25;
  font-size: 1em;
}
body.fees .pricing-container .pricing .price-info + .price-info {
  margin-left: 3.5em;
}
body.fees .pricing-container.pricing-center .textcontainer h2 {
  text-align: center;
}
body.fees .pricing-container.pricing-center .pricing {
  width: 100%;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
body.fees .pricing-container.pricing-center .ce_text {
  flex-basis: 100%;
  width: 100%;
  max-width: initial;
  margin-bottom: 3em;
}
body.fees .pricing-container.pricing-center .price-description {
  padding-top: 2em;
  width: 100%;
  display: flex;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  text-align: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
body.fees .pricing-container.pricing-center .price-description > div {
  width: 13em;
}
body.fees .pricing-container.pricing-center .price-description > div p {
  font-weight: var(--font-base-semibold-weight);
  color: #808080;
  margin-bottom: 0;
}
body.fees .pricing-container.pricing-center .price-description div + div {
  margin-left: 5.5em;
}
@media (max-width: 32em) {
  body.fees .pricing-container.pricing-center .price-description {
    display: none;
  }
}
@media (max-width: 67em) {
  body.fees .pricing-container .content-wrapper {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  body.fees .pricing-container .ce_text, body.fees .pricing-container .pricing {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  body.fees .pricing-container .ce_text {
    margin-bottom: 3em;
    text-align: center;
  }
  body.fees .pricing-container .ce_text .textcontainer ul li {
    text-align: left;
  }
  body.fees .pricing-container .pricing {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 32em) {
  body.fees .pricing-container .pricing {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  body.fees .pricing-container .pricing .price-info + .price-info {
    margin-left: 0;
    margin-top: 3em;
  }
}
div.map-explained {
  background-color: #f7f7f7;
  overflow: visible;
  margin: 22em auto 13em;
}
div.map-explained .ce_text {
  position: relative;
  overflow: visible;
}
div.map-explained .content-wrapper:before {
  content: "";
  display: table;
  clear: both;
}
div.map-explained ol {
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 0;
  width: 15em;
  font-size: 14px;
  counter-reset: my-awesome-counter;
}
div.map-explained ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 2px;
  color: #999;
}
div.map-explained ol li:before {
  content: counter(my-awesome-counter);
  color: var(--brand-color-1-variant);
  margin-right: 9px;
  width: 15px;
  text-align: right;
  display: inline-block;
}
div.map-explained ol li:last-of-type {
  margin-bottom: 0;
}
div.map-explained img {
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 0;
  width: auto;
  max-width: 24em;
}
div.map-explained h2 {
  padding: 3em 0;
  max-width: 26em;
  margin-bottom: 0;
  font-size: 1.2em;
  color: #595959;
}
div.map-explained h2 em {
  display: block;
}
div.map-explained h2 strong {
  color: var(--brand-color-1);
}
div.map-explained .region-details {
  position: fixed;
  width: 25.278vw;
  max-width: 364px;
  min-width: 234px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-color-1) 33.46%, var(--brand-color-1-variant) 85.27%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 0ms;
  transform: translate(-101%, -100%);
  cursor: pointer;
  z-index: 999;
}
div.map-explained .region-details p {
  font-size: 1.2em;
  margin-bottom: 0.3em;
  line-height: 1.4;
}
div.map-explained .region-details img {
  all: unset;
  width: 100%;
  height: auto;
}
div.map-explained .region-details .textcontainer {
  display: flex;
  flex-direction: column;
  padding: 1em 1.2em 1em;
  font-size: 13px;
}
div.map-explained .region-details p:first-child {
  display: flex;
  margin-bottom: 1em;
}
div.map-explained .tooltip-displayed {
  visibility: visible;
  opacity: 1;
}
div.map-explained svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  max-width: 42em;
  height: auto;
  margin-right: -4em;
  transform: translate(0, -50%);
}
div.map-explained .icomoon-close-icon {
  display: flex;
  justify-content: flex-end;
  font-size: 17px;
  color: #fff;
  margin-bottom: 0.8em;
  cursor: pointer;
}
@media (max-width: 1280px) {
  div.map-explained svg {
    margin-right: 0;
  }
}
@media (max-width: 1080px) {
  div.map-explained h2 {
    max-width: 25em;
  }
  div.map-explained svg {
    max-width: 38em;
  }
}
@media (max-width: 900px) {
  div.map-explained {
    text-align: center;
  }
  div.map-explained h2 {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2em;
    max-width: none;
  }
  div.map-explained img {
    top: auto;
    left: auto;
    right: auto;
    position: relative;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    max-width: 100%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  div.map-explained .region-details {
    transform: translate(-50%);
  }
  div.map-explained svg {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    max-width: 100%;
    transform: translate(0, 0);
  }
}
@media (max-width: 400px) {
  div.map-explained img {
    max-width: 90%;
  }
}
div.map-explained-list h3 {
  text-align: left;
}
@media (max-width: 940px) {
  div.map-explained-list.infographic-section .content-wrapper > .big-list:first-of-type {
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  div.map-explained-list.infographic-section .content-wrapper > .big-list {
    padding-top: 0.75em;
  }
  div.map-explained-list.infographic-section .content-wrapper > .big-list:first-of-type {
    padding-top: 0;
  }
}
@media (min-width: 2000px) {
  #tarifuebersicht {
    padding-top: 5em;
  }
}
.investoren-downloads {
  margin-bottom: 5em;
}
.investoren-downloads:after {
  content: "";
  display: block;
  clear: both;
}
.investoren-downloads h3 {
  font-size: 1.35em;
  line-height: 1.25;
  font-weight: var(--font-base-strong-weight);
}
.investoren-downloads .image_container {
  width: 40%;
}
.investoren-downloads .text-container, .investoren-downloads ul {
  float: right;
  width: 58%;
  background: #f7f7f7;
}
.investoren-downloads .text-container {
  padding: 1em 2em 1.5em 2em;
}
.investoren-downloads ul {
  padding: 0 2em 1.5em 2em;
}
.investoren-downloads li {
  padding: 0.65em 0;
  border-bottom: 1px solid #dadbdb;
  font-weight: var(--font-base-strong-weight);
}
.investoren-downloads li:first-of-type {
  border-top: 1px solid #dadbdb;
}
.investoren-downloads li a:before {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.investoren-downloads li a:hover:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.investoren-downloads li .size {
  font-weight: 400;
}
@media (max-width: 800px) {
  .investoren-downloads .image_container, .investoren-downloads .text-container, .investoren-downloads ul {
    float: none;
    width: 100%;
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
  }
}
.standard-infographic .content-wrapper {
  display: block;
}
.standard-infographic .content-wrapper:before {
  display: table;
  clear: both;
  content: "";
}
.standard-infographic .ce_image {
  width: 100%;
  float: left;
}
.standard-infographic h2 {
  font-size: 1.3em;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 2em;
}
.standard-infographic p {
  font-weight: var(--font-base-light-weight);
}
.standard-infographic .image_container {
  padding-bottom: 5em;
  margin-bottom: 5em;
  border-bottom: 2px solid #e0e1e0;
}
.standard-infographic.no-border-bottom .image_container {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.standard-infographic .one-half-text h2 {
  margin-bottom: 1em;
}
@media (max-width: 770px) {
  .standard-infographic .ce_image {
    text-align: center;
  }
  .standard-infographic.wide-image img {
    max-width: 100%;
  }
  .standard-infographic img {
    margin-left: auto;
    margin-right: auto;
    max-width: 23em;
  }
}
@media (max-width: 767px) {
  .standard-infographic .image_container {
    margin-bottom: 4em;
    padding-bottom: 4em;
  }
}
@media (max-width: 360px) {
  .standard-infographic .image_container {
    margin-bottom: 3em;
    padding-bottom: 3em;
  }
}
.grey-p {
  color: #969797;
}
.green-link, .green-light-link {
  color: var(--brand-color-1) !important;
}
.new-banner-text .zeag-header-image-text .innerbox {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  height: auto;
  max-width: 39em;
}
.new-banner-text .zeag-header-image-text .innerbox .textcontainer {
  position: relative;
  padding: 3em 3.25em;
}
.new-banner-text .wrapper {
  max-width: 78em;
}
.new-banner-text.left-space .zeag-header-image-text .innerbox {
  left: 3.5em;
  max-width: 35.5em;
}
.new-banner-text.full-height .zeag-header-image-text .innerbox {
  top: auto;
  transform: translateY(0);
  height: 100%;
}
.new-banner-text.full-height .textcontainer {
  position: absolute !important;
  bottom: 0;
}
.mobilitat-banner {
  background: #f7f7f7;
}
.mobilitat-banner .textcontainer {
  width: 64%;
  float: left;
  padding-right: 7em;
  padding: 5em 4em 5em 0;
}
.mobilitat-banner .textcontainer h2, .mobilitat-banner .textcontainer a {
  font-weight: var(--font-base-strong-weight);
}
.mobilitat-banner .textcontainer h2 {
  font-size: 1.15em;
}
.mobilitat-banner .textcontainer a {
  color: var(--brand-color-1);
}
.mobilitat-banner .textcontainer p:last-of-type {
  margin-bottom: 0;
}
.mobilitat-banner .img_containment {
  width: 36%;
  float: right;
  padding-top: 1.85em;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
}
.mobilitat-banner .img_containment img {
  max-width: 100%;
  max-height: 90%;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 860px) {
  .mobilitat-banner .textcontainer {
    padding-right: 5em;
    width: 57%;
  }
  .mobilitat-banner .img_containment {
    width: 43%;
  }
}
@media (min-width: 571px) {
  .mobilitat-banner .innerbox {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
}
@media (max-width: 570px) {
  .mobilitat-banner .img_containment, .mobilitat-banner .textcontainer {
    width: 100%;
  }
  .mobilitat-banner .textcontainer {
    padding-right: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .mobilitat-banner .img_containment {
    position: relative;
    text-align: center;
  }
  .mobilitat-banner .img_containment img {
    margin: auto;
    position: relative;
    width: 26em;
    max-width: 80%;
  }
}
.image-legend {
  background: #fff;
  clear: both;
  margin-top: 2em;
  width: 100%;
  float: left;
}
.image-legend ol {
  list-style-type: decimal;
  list-style-position: inside;
  font-weight: var(--font-base-light-weight);
  font-size: 14px;
}
.btn-center-wrap {
  text-align: center;
  overflow: visible;
}
.mod_newslist:not(.newslist-default) + .btn-center-wrap {
  margin-top: -5em;
}
.element-header {
  border-top: 1px solid #cdcecf;
  padding-top: 3em;
  margin-top: 2em;
}
.element-header .textcontainer {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.element-header h3 {
  color: #767676;
}
.element-header h3, .element-header p {
  font-weight: var(--font-base-strong-weight);
}
.element-header a {
  color: #34601d;
  transition: color 0.2s ease-in-out;
}
.element-header a:hover {
  color: #93979e;
}
.element-header p {
  margin-left: auto;
  margin-bottom: 0;
}
.element-header + .newslist-default {
  mask-type: 0.5em;
}
.speed-test-holder .testName {
  color: #3F7F2A;
}
.speed-test-holder #startStopBtn {
  background-color: initial;
  background-image: linear-gradient(to left, #295C1E, #3F7F2A);
}
.speed-test-holder #startStopBtn:hover {
  background-image: linear-gradient(to left, #3F7F2A, #295C1E);
  opacity: 1;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%2Fwww%2Fvirtual%2Fgu.abnahme-server.de%2Fhtdocs%2Fvendor%2Fmagmell-agentur%2Fzeag-quartiersentwicklung%2Fsrc%2FResources%2Fpublic%2Fcss%2Fblock-elements.scss%22%2C%22var%2Fwww%2Fvirtual%2Fgu.abnahme-server.de%2Fhtdocs%2Fvendor%2Fmagmell-agentur%2Fzeag-quartiersentwicklung%2Fsrc%2FResources%2Fpublic%2Fcss%2F_mixins.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC6SA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADrnBD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAKD%3BAAEE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAA4BC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcF%3BAAAA%3BAAAA%3BAAKD%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAEE%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAGG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAEE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAGG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAYD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMF%3BAAGE%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWH%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAYH%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAEE%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBc%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAUd%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQE%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAEE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYD%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKG%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACl1GD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD60GC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA2CD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%22%7D */