@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);
  }
}
svg text {
  font-family: var(--font-base);
}
.single-infographic-section {
  position: relative;
}
.single-infographic-section h2 {
  margin-bottom: 3em;
  font-size: 1.6em;
}
.single-infographic-section figure img {
  display: block;
  margin: auto;
  width: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .single-infographic-section {
    margin-top: 0;
  }
}
.infographic-section {
  position: relative;
  text-align: center;
}
.infographic-section.border-bottom {
  padding-bottom: 5em;
  border-bottom: 1px solid #dadada;
}
.infographic-section h2 {
  margin-bottom: 3em;
  font-size: 1.6em;
}
.infographic-section .content-wrapper {
  content: "";
  display: table;
  clear: both;
}
.infographic-section .content-wrapper > .big-list {
  padding-top: 0;
  border-top: none;
  padding-right: 2em;
}
.infographic-section .big-list {
  width: 50%;
  text-align: left;
  float: left;
  vertical-align: top;
  margin-bottom: 0;
}
.infographic-section .big-list:last-of-type {
  padding-right: 0;
  padding-left: 2em;
}
.infographic-section .big-list h3 {
  margin-bottom: 1.25em;
  font-size: 1.25em;
  font-weight: var(--font-base-strong-weight);
}
.infographic-section .big-list ul {
  padding-bottom: 0;
  margin-bottom: 0;
}
.infographic-section hr {
  display: none;
}
.infographic-section.border-top {
  padding-top: 0;
}
.infographic-section.border-top hr {
  margin-bottom: 5em;
  display: block;
  color: #dadada;
  border: none;
  background-color: #dadada;
  height: 1px;
}
@media (max-width: 940px) {
  .infographic-section .big-list {
    padding: 2em 2em 0.5em;
  }
}
@media (max-width: 640px) {
  .infographic-section .big-list {
    width: 100%;
  }
  .infographic-section .content-wrapper > .big-list {
    padding: 2.5em 0 0;
  }
  .infographic-section .content-wrapper > .big-list ul {
    padding-bottom: 0;
  }
}
@media (min-width: 751px) {
  .infographic-section.isotope-list .isotope-container {
    margin-left: -2em;
    margin-right: -2em;
  }
}
.infographic-section.isotope-list .big-list {
  width: 50%;
  padding: 0;
}
.infographic-section.isotope-list .big-list .innerbox {
  padding-left: 2em;
  padding-right: 2em;
}
@media (max-width: 750px) {
  .infographic-section.isotope-list .big-list {
    width: 100%;
  }
  .infographic-section.isotope-list .big-list .innerbox {
    padding-left: 0;
    padding-right: 0;
  }
}
.big-infographic {
  text-align: center;
}
.full-width-infographic {
  text-align: center;
}
.full-width-infographic .cta-section {
  text-align: left;
  margin-bottom: 0;
  margin-top: 5em;
}
.full-width-infographic h2 {
  margin-bottom: 3em;
  font-size: 1.4em;
}
.full-width-infographic img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: auto;
}
@media (max-width: 1000px) {
  .full-width-infographic .cta-section {
    text-align: center;
  }
}
.erschliessungstraeger-infographic {
  text-align: center;
}
.erschliessungstraeger-infographic h2 {
  margin-bottom: 1em;
  font-size: 1.4em;
}
.erschliessungstraeger-infographic p {
  max-width: 46em;
  margin: 0 auto 2em;
}
.erschliessungstraeger-infographic svg {
  max-width: 60em;
  margin: auto;
  display: block;
}
.erschliessungstraeger-infographic .e8cbc57a-542c-4cad-aecc-25e1afd6e34f {
  fill: #f4fbf2;
}
@media (max-width: 768px) {
  .erschliessungstraeger-infographic img {
    max-width: 500px;
  }
}
.grey-text-graphic {
  padding-top: 13em;
}
.grey-text-graphic.overflow-visible {
  overflow: visible;
}
.grey-text-graphic .svg-container, .grey-text-graphic .img_containment {
  right: 5em;
  top: -13em;
  position: absolute;
  width: 50%;
}
.grey-text-graphic .ce_text {
  overflow: visible;
}
.grey-text-graphic .textcontainer {
  background: #F9F9F9;
  padding: 8em 3em 2em;
}
.grey-text-graphic .svg-container {
  right: 5em;
  top: -13em;
  position: absolute;
  width: 50%;
  display: none;
}
.grey-text-graphic h2 {
  font-size: 1.6em;
  max-width: 50%;
  color: #595959;
}
.grey-text-graphic h2 strong {
  color: inherit;
}
.grey-text-graphic .energie-mobile-infographic {
  display: none;
}
@media (max-width: 1300px) {
  .grey-text-graphic {
    overflow: visible;
  }
  .grey-text-graphic .energie-mobile-infographic {
    display: block;
  }
  .grey-text-graphic .ce_text .img_containment {
    display: none !important;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .grey-text-graphic {
    padding-top: 10em;
  }
  .grey-text-graphic .energie-mobile-infographic {
    position: absolute;
    right: 5em;
    bottom: -5em;
  }
  .grey-text-graphic .energie-mobile-infographic img {
    height: 32em;
    width: auto;
  }
  .grey-text-graphic .textcontainer {
    padding: 6em 3em 4em;
  }
  .grey-text-graphic h2 {
    padding-right: 2em;
  }
}
@media (max-width: 1208px) {
  .grey-text-graphic {
    padding-top: 8em;
  }
}
@media (max-width: 899px) {
  .grey-text-graphic {
    padding-top: 0;
  }
  .grey-text-graphic .energie-mobile-infographic {
    position: relative;
    margin-bottom: -10.5em;
  }
  .grey-text-graphic .energie-mobile-infographic img {
    max-width: 44em;
    max-width: 80%;
    display: block;
    margin: auto;
  }
  .grey-text-graphic .textcontainer {
    padding-top: 11em;
  }
  .grey-text-graphic h2 {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .grey-text-graphic .energie-mobile-infographic img {
    max-width: 95%;
  }
  .grey-text-graphic .textcontainer {
    padding: 11em 2em 2em;
  }
  .grey-text-graphic .textcontainer h2 {
    font-size: 1.45em;
    margin-bottom: 0;
  }
}
.strommix-infographic {
  padding-bottom: 23em;
}
.strommix-infographic .textcontainer {
  background: #F9F9F9;
  padding: 4em 3em 3em;
}
.strommix-infographic h2 {
  max-width: 50%;
  color: #989898;
  font-size: 1.6em;
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: var(--font-heading-style);
}
.strommix-infographic h2 strong {
  text-transform: uppercase;
  color: inherit;
  font-weight: var(--font-base-strong-weight);
  font-style: normal;
}
.strommix-infographic .ce_image {
  display: none;
}
.strommix-infographic .img_containment {
  right: 5em;
  top: 4em;
  position: absolute;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .strommix-infographic {
    padding-bottom: 0;
    margin-bottom: 4em;
  }
  .strommix-infographic .textcontainer {
    padding-top: 11em;
  }
  .strommix-infographic .ce_image {
    display: block;
    position: relative;
    margin-bottom: -10.5em;
  }
  .strommix-infographic .ce_image img {
    max-width: 80%;
    display: block;
    margin: auto;
  }
  .strommix-infographic .img_containment {
    display: none !important;
  }
  .strommix-infographic h2 {
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .strommix-infographic {
    margin-bottom: 3em;
  }
  .strommix-infographic .ce_image img {
    max-width: 95%;
  }
  .strommix-infographic .textcontainer {
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
  }
  .strommix-infographic h2 {
    font-size: 1.45em;
    margin-bottom: 0;
  }
}
.svg .full-width-infographic .img_containment, .svg .full-width-infographic .ce_image, .svg .single-infographic-section .img_containment, .svg .single-infographic-section .ce_image, .svg .infographic .img_containment, .svg .infographic .ce_image, .svg .erschliessungstraeger-infographic .img_containment, .svg .erschliessungstraeger-infographic .ce_image {
  display: none;
}
.svg .full-width-infographic .mobile-only .img_containment, .svg .full-width-infographic .mobile-only .ce_image, .svg .single-infographic-section .mobile-only .img_containment, .svg .single-infographic-section .mobile-only .ce_image, .svg .infographic .mobile-only .img_containment, .svg .infographic .mobile-only .ce_image, .svg .erschliessungstraeger-infographic .mobile-only .img_containment, .svg .erschliessungstraeger-infographic .mobile-only .ce_image {
  display: block;
}
.no-svg .full-width-infographic .svg-container, .no-svg .full-width-infographic svg, .no-svg .single-infographic-section .svg-container, .no-svg .single-infographic-section svg, .no-svg .infographic .svg-container, .no-svg .infographic svg, .no-svg .erschliessungstraeger-infographic .svg-container, .no-svg .erschliessungstraeger-infographic svg {
  display: none;
}
.no-svg .full-width-infographic .img_containment, .no-svg .full-width-infographic .ce_image, .no-svg .single-infographic-section .img_containment, .no-svg .single-infographic-section .ce_image, .no-svg .infographic .img_containment, .no-svg .infographic .ce_image, .no-svg .erschliessungstraeger-infographic .img_containment, .no-svg .erschliessungstraeger-infographic .ce_image {
  display: block;
}
body.trident .hide-ie {
  display: none;
}
body.trident .full-width-infographic .img_containment {
  display: block !important;
}
@media (min-width: 768px) {
  .svg .infographic .textcontainer {
    width: 100%;
  }
  .svg .infographic .ce_text {
    width: 54%;
    float: left;
    padding-right: 4%;
  }
  .svg .infographic .ce_text .innerbox {
    display: block;
  }
  .svg .infographic .ce_text.textimage-left {
    float: right;
    padding-right: 0;
    padding-left: 4%;
  }
  .svg .infographic .ce_text.textimage-left + .svg-container {
    float: left;
  }
  .svg .infographic .svg-container {
    float: right;
    width: 46%;
    position: relative;
  }
  .svg .infographic .svg-container svg {
    width: 100%;
    top: 0;
    display: block;
    left: 0;
    margin: auto;
  }
  .svg .infographic .content-wrapper {
    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-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .svg .infographic .content-wrapper .textcontainer {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .infographic .svg-container {
    max-width: 30em;
    margin: auto;
    display: block;
    margin-bottom: 2em;
  }
}
#infographic1 text {
  font-size: 13px;
}
.big-i {
  float: right;
  width: 100%;
  height: 0;
  padding-top: 68%;
  position: relative;
}
.big-i svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.big-i.small-padding {
  padding-top: 45%;
}
@media (min-width: 1275px) {
  .big-i.desktop-only {
    display: block;
  }
}
@media (max-width: 1274px) {
  .big-i.desktop-only {
    display: none;
  }
  .big-i-mobile.mobile-only {
    display: block;
  }
}
.circle-desktop {
  float: right;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.circle-desktop svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.svg-arrow-shape {
  width: 100%;
  height: 0;
  padding-top: 22%;
  position: relative;
}
.svg-arrow-shape svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.tall-svg {
  float: right;
  width: 100%;
  position: relative;
  padding: 0 0 2em;
}
.tall-svg svg {
  max-width: 260px;
  margin: auto;
  display: block;
}
.carsharing-infographic-section {
  padding: 7em 0 4em;
}
.carsharing-infographic-section.mobility {
  padding-top: 0;
  padding-bottom: 5em;
}
.carsharing-infographic-section svg {
  display: none;
}
.carsharing-infographic-section .ce_text {
  width: 100%;
  float: left;
  overflow: visible;
  margin-bottom: 4em;
  position: relative;
  padding-bottom: 9em;
}
.carsharing-infographic-section .ce_text.one-half-text {
  text-align: center;
  margin-bottom: 0;
}
.carsharing-infographic-section .ce_text.one-half-text:before {
  content: none;
}
.carsharing-infographic-section .ce_text.one-half-text:last-of-type {
  float: right;
}
.carsharing-infographic-section .ce_text.one-half-text:last-of-type svg, .carsharing-infographic-section .ce_text.one-half-text:last-of-type .img_containment {
  margin-top: 1.9em;
}
.carsharing-infographic-section .ce_text.one-half-text p {
  float: none;
}
.carsharing-infographic-section .ce_text.one-half-text svg, .carsharing-infographic-section .ce_text.one-half-text .img_containment {
  position: relative;
  max-width: none;
  margin: auto auto 3em;
}
.carsharing-infographic-section .ce_text.one-half-text .innerbox {
  float: none;
  max-width: 75%;
  box-shadow: none;
  margin: auto;
}
.carsharing-infographic-section .ce_text.one-half-text h3 {
  font-style: var(--font-base-style);
  font-family: var(--font-base);
  font-weight: var(--font-base-strong-weight);
  font-size: 1.1em;
}
.carsharing-infographic-section .ce_text.one-half-text ul {
  float: none;
  clear: left;
  max-width: 17em;
  margin: auto;
}
.carsharing-infographic-section .ce_text.one-half-text li {
  padding-left: 0;
  color: #595959;
  font-weight: var(--font-base-light-weight);
  font-size: 1.1em;
  border-top: 1px solid #808080;
  padding-top: 0.75em;
  padding-bottom: 0.25em;
}
.carsharing-infographic-section .ce_text.one-half-text li:before {
  content: none;
}
.carsharing-infographic-section .ce_text.one-half-text li strong {
  color: #595959;
}
@media (min-width: 600px) {
  .carsharing-infographic-section .ce_text.one-half-text {
    width: 47%;
    padding-bottom: 2em;
  }
  .carsharing-infographic-section .ce_text.one-half-text .innerbox {
    margin: auto;
  }
  .carsharing-infographic-section .ce_text.one-half-text:first-of-type .innerbox {
    margin-right: 0;
  }
  .carsharing-infographic-section .ce_text.one-half-text:last-of-type .innerbox {
    margin-left: 0;
  }
}
.carsharing-infographic-section .ce_text:before {
  width: 100%;
  left: 0;
  height: 2px;
  background: #e0e0e0;
  position: absolute;
}
.carsharing-infographic-section .ce_text:first-of-type:before {
  top: -7em;
}
.carsharing-infographic-section .ce_text:not(:first-of-type):before {
  bottom: -5.5em;
}
.carsharing-infographic-section .innerbox {
  -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);
  max-width: 62%;
  padding: 3em 2.5em;
  float: left;
}
.carsharing-infographic-section h3 {
  font-size: 1.4em;
  margin-bottom: 1.6em;
  line-height: 1.4;
  color: #4d4d4d;
}
.carsharing-infographic-section h3, .carsharing-infographic-section p {
  width: 100%;
  float: left;
}
.carsharing-infographic-section p {
  font-size: 1em;
  color: #595959;
}
.carsharing-infographic-section p:last-of-type {
  margin-bottom: 0;
}
.carsharing-infographic-section ul {
  float: left;
  margin-right: 5em;
  margin-bottom: 0;
}
.carsharing-infographic-section ul li {
  position: relative;
  padding-left: 1em;
  color: #595959;
  font-size: 1.05em;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 0.5em;
}
.carsharing-infographic-section ul li:before {
  position: absolute;
  left: 0;
  top: -0.05em;
  content: "+";
  font-weight: var(--font-base-strong-weight);
  color: inherit;
}
.carsharing-infographic-section ul li:last-of-type {
  margin-bottom: 0;
}
.carsharing-infographic-section svg, .carsharing-infographic-section .img_containment {
  position: absolute;
  max-width: 44%;
  bottom: 0;
  right: 0;
}
@media (min-width: 801px) and (max-width: 1080px) {
  .carsharing-infographic-section .ce_text {
    padding-bottom: 3.5em;
  }
  .carsharing-infographic-section svg, .carsharing-infographic-section .img_containment {
    max-width: 42%;
  }
}
@media (max-width: 800px) {
  .carsharing-infographic-section {
    padding: 5em 0 3em;
  }
  .carsharing-infographic-section .ce_text:first-of-type:before {
    top: -5em;
  }
  .carsharing-infographic-section .innerbox {
    max-width: 600px;
    float: none;
    margin: 0 auto;
    clear: both;
    position: relative;
  }
  .carsharing-infographic-section .innerbox:after {
    display: table;
    content: "";
    clear: both;
  }
  .carsharing-infographic-section p:last-of-type {
    text-align: center;
  }
  .carsharing-infographic-section h3 br, .carsharing-infographic-section p br {
    display: none;
  }
  .carsharing-infographic-section svg, .carsharing-infographic-section .img_containment {
    position: relative;
    max-width: 380px;
    margin: 1.5em auto 0;
  }
  .carsharing-infographic-section .ce_text {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .carsharing-infographic-section ul {
    margin-bottom: 0.5em;
    margin-right: 2em;
  }
}
@-webkit-keyframes pulse-me {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85, 0.85) translate(4em, 4em);
  }
  50% {
    opacity: 0.7;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translate(0, 0);
  }
}
@keyframes pulse-me {
  0% {
    opacity: 0;
    transform: scale(0.85, 0.85) translate(4em, 4em);
  }
  50% {
    opacity: 0.7;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translate(0, 0);
  }
}
.chrome #container .carsharing-infographic-section svg {
  display: block;
}
.chrome #container .carsharing-infographic-section .img_containment {
  display: none;
}
@media (min-width: 800px) {
  .chrome #container .carsharing-infographic-section .move-vehicle {
    -moz-transition: all 0.45s ease-in 0.35s;
    -o-transition: all 0.45s ease-in 0.35s;
    -webkit-transition: all 0.45s ease-in 0.35s;
    transition: all 0.45s ease-in 0.35s;
    opacity: 0;
    position: relative;
    transform: scale(0.98, 0.98) translate(-12em, -4.5em);
  }
  .chrome #container .carsharing-infographic-section .img_containment {
    -moz-transition: all 0.45s ease-in 0.35s;
    -o-transition: all 0.45s ease-in 0.35s;
    -webkit-transition: all 0.45s ease-in 0.35s;
    transition: all 0.45s ease-in 0.35s;
    opacity: 0;
    transform: scale(0.98, 0.98) translate(-12em, -4.5em);
  }
  .chrome #container .carsharing-infographic-section .pump-object {
    opacity: 0;
    transform: translate(0, -4em);
    -moz-transition: all 0.45s ease-in 0.7s;
    -o-transition: all 0.45s ease-in 0.7s;
    -webkit-transition: all 0.45s ease-in 0.7s;
    transition: all 0.45s ease-in 0.7s;
  }
  .chrome #container .carsharing-infographic-section .v-base {
    opacity: 0;
    transform: scale(0.7, 0.7);
    -moz-transition: all 0.35s ease-in;
    -o-transition: all 0.35s ease-in;
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in;
  }
  .chrome #container .carsharing-infographic-section .shadow-problem {
    opacity: 0;
    -moz-transition: all 0.35s ease-in 1.2s;
    -o-transition: all 0.35s ease-in 1.2s;
    -webkit-transition: all 0.35s ease-in 1.2s;
    transition: all 0.35s ease-in 1.2s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small {
    opacity: 0;
    animation: pulse-me 4s linear infinite;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-1 {
    animation-delay: 0.3s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-2 {
    animation-delay: 0.6s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-3 {
    animation-delay: 0.9s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-4 {
    animation-delay: 1.2s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-5 {
    animation-delay: 1.75s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-6 {
    animation-delay: 2s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-7 {
    animation-delay: 3.4s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-8 {
    animation-delay: 2.44s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-9 {
    animation-delay: 3.2s;
  }
  .chrome #container .carsharing-infographic-section .smoke-small.smoke-10 {
    animation-delay: 1.4s;
  }
  .chrome #container .carsharing-infographic-section .ce_text.in-view .move-vehicle, .chrome #container .carsharing-infographic-section .ce_text.in-view .img_containment {
    transform: scale(1, 1) translate(0, 0);
    opacity: 1;
    left: auto;
    top: auto;
  }
  .chrome #container .carsharing-infographic-section .ce_text.in-view .pump-object {
    opacity: 1;
    transform: scale(1, 1) translate(0, 0);
  }
  .chrome #container .carsharing-infographic-section .ce_text.in-view .v-base {
    opacity: 1;
    transform: scale(1, 1);
  }
  .chrome #container .carsharing-infographic-section .ce_text.in-view .shadow-problem {
    opacity: 1;
  }
}
.centered-infographic {
  background: #f7f7f7;
  padding: 2em;
  margin-top: 30em;
}
.centered-infographic .img_containment {
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
  text-align: center;
}
.centered-infographic img {
  height: 35em;
  width: auto;
  margin: auto;
  display: block;
}
.centered-infographic h2 {
  margin-bottom: 0;
  font-size: 1.25em;
  color: #999;
}
.centered-infographic h2 strong {
  color: var(--brand-color-1);
}
@media (max-width: 900px) {
  .centered-infographic img {
    position: relative;
    right: -4em;
  }
}
@media (max-width: 550px) {
  .centered-infographic {
    margin-top: 0;
  }
  .centered-infographic .img_containment {
    position: relative;
    bottom: auto;
    margin-bottom: 2em;
    float: right;
  }
  .centered-infographic .textcontainer {
    width: 100%;
    float: left;
  }
  .centered-infographic img {
    right: auto;
    float: right;
    max-width: 90%;
    height: auto;
  }
  .centered-infographic h2 {
    text-align: center;
  }
}
.graphic-banner {
  background-color: #f7f7f7;
  padding: 3em 0;
}
.graphic-banner h2 {
  font-size: 1.65em;
}
@media (min-width: 760px) {
  .graphic-banner .textcontainer, .graphic-banner .img_containment {
    width: 50%;
  }
  .graphic-banner .textcontainer {
    padding-right: 4em;
  }
  .graphic-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;
  }
}
@media (max-width: 759px) {
  .graphic-banner h2 br {
    display: none;
  }
}
.one-half-icon-text {
  text-align: center;
}
.one-half-icon-text .ce_text:nth-child(1) h3:before {
  content: "";
}
.one-half-icon-text .ce_text:nth-child(2) h3:before {
  content: "";
}
.one-half-icon-text .ce_text:nth-child(3) h3:before {
  content: "";
}
.one-half-icon-text .ce_text:nth-child(4) h3:before {
  content: "";
}
.one-half-icon-text .ce_text:nth-child(5) h3:before {
  content: "";
}
.one-half-icon-text h3 {
  font-weight: var(--font-base-strong-weight);
  font-size: 1.15em;
  margin-bottom: 0.5em;
  padding-top: 5em;
  position: relative;
}
.one-half-icon-text h3:before {
  font-family: "Zeag";
  color: var(--brand-color-1);
  content: "";
  font-size: 3em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: 400;
}
.one-half-icon-text.number-icons .ce_text:nth-child(1) h3:before {
  content: "";
}
.one-half-icon-text.number-icons .ce_text:nth-child(2) h3:before {
  content: "";
}
.one-half-icon-text.number-icons .ce_text:nth-child(3) h3:before {
  content: "";
}
.one-half-icon-text.number-icons .ce_text:nth-child(4) h3:before {
  content: "";
}
.one-half-icon-text.number-icons .ce_text:nth-child(5) h3:before {
  content: "";
}
@media (min-width: 700px) {
  .one-half-icon-text .ce_text {
    width: 47.5%;
    float: left;
    margin-bottom: 2em;
  }
  .one-half-icon-text .ce_text:nth-child(2n + 1) {
    margin-right: 5%;
  }
  .one-half-icon-text .ce_text:nth-child(3) {
    clear: left;
  }
}
/*# 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%2Finfographics.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%3BADvnBF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQN%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMF%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAkBL%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAGA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%22%7D */