@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);
  }
}
#footer {
  background: #eeeeee;
  color: #333;
  position: relative;
  z-index: 498;
  transition: padding-bottom 0.3s ease-in-out;
}
#footer .inside {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding-left: 4em;
  padding-right: 4em;
  padding-top: 1px;
}
@media (max-width: 1300px) {
  #footer .inside {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 800px) {
  #footer .inside {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}
@media (max-width: 480px) {
  #footer .inside {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}
@media (max-width: 340px) {
  #footer .inside {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
#footer .section {
  float: none;
  padding: 2.5em 0;
}
#footer .section ul, #footer .section p {
  margin-bottom: 0;
}
#footer .section .innerform p {
  margin-bottom: 1em;
}
#footer .readmore {
  padding: 3.5em 0;
}
#footer .readmore h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-style: var(--font-heading-style);
  font-weight: 400;
  font-size: 1.25em;
  margin-bottom: 1.6667em;
  margin-bottom: 2.9167em;
  margin-top: 0;
}
@media screen and (min-width: 30em) {
  #footer .readmore h3 {
    padding: 0 2em;
  }
}
#footer .readmore ul {
  text-align: center;
}
#footer .readmore ul ul {
  display: none;
}
#footer .readmore ul li {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  margin: 0.75em 3em;
  font-size: 0.9em;
}
#footer .readmore ul li a {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  -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;
}
#footer .readmore ul li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: #eeeeee;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  background-size: contain;
}
#footer .readmore ul li a:hover {
  color: var(--brand-color-1);
}
#footer .readmore ul li a:hover:before {
  transform: scale(1.1);
  color: var(--brand-color-1);
}
#footer .readmore ul li a:hover > span {
  color: var(--brand-color-1);
}
#footer .readmore ul li a:hover > span:before {
  color: var(--brand-color-1);
}
#footer .readmore ul li.active a {
  color: #333;
  font-weight: bold;
  cursor: default;
}
#footer .readmore ul li.active a:before {
  opacity: 0.5;
  color: #333;
}
#footer .readmore ul li.active a:hover:before {
  transform: none;
}
#footer .readmore ul li .slider-container, #footer .readmore ul li .nav-wrapper {
  display: none;
}
#footer .readmore .only-energieeffizienz {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer .readmore ul {
    text-align: left;
  }
  #footer .readmore ul li {
    margin-left: 0;
    width: 35%;
    width: calc(50% - 3.5em);
  }
}
@media screen and (max-width: 479px) {
  #footer .readmore ul {
    text-align: left;
  }
  #footer .readmore ul li {
    margin-left: 4em;
    width: 60%;
  }
  #footer .readmore ul li a:before {
    display: inline-block;
  }
}
#footer .contact {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1.5em 0;
  margin-bottom: 1.5em;
}
#footer .contact .ce_text {
  overflow-x: visible;
  overflow-y: visible;
}
#footer .contact ul {
  text-align: center;
  font-size: 1.1764705882em;
}
#footer .contact li {
  display: inline-block;
  padding: 0.5em 2em;
  white-space: nowrap;
  vertical-align: middle;
  font-family: var(--font-heading);
  font-style: var(--font-heading-style);
  font-weight: 400;
}
#footer .contact li strong {
  font-weight: var(--font-base-strong-weight);
  font-style: var(--font-base-style);
  font-family: var(--font-base);
}
#footer .contact li a {
  font-style: normal;
}
#footer .contact li a.btn-default {
  font-size: 0.8em;
  font-family: var(--font-base);
  margin-left: 0.8em;
  white-space: nowrap;
}
#footer .contact li a.btn-default strong {
  font-weight: var(--font-base-strong-weight);
}
#footer .contact li a[href^="tel:"] {
  color: var(--brand-color-1);
}
#footer .contact li a[href^="tel:"]:hover {
  opacity: 0.7;
}
#footer .contact li:nth-child(1) > strong {
  margin-left: 0.5em;
  white-space: nowrap;
}
@media screen and (max-width: 920px) {
  #footer .contact li {
    white-space: normal;
  }
}
@media screen and (max-width: 480px) {
  #footer .contact li {
    white-space: normal;
    padding: 1em 0;
  }
  #footer .contact li strong {
    white-space: nowrap;
  }
  #footer .contact li a.btn-default {
    margin-top: 0.25em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 420px) {
  #footer .contact li strong a {
    display: block;
  }
}
#footer .contact:first-of-type {
  border-top: 0;
}
#footer .contact-emergency {
  margin-bottom: 0;
  border-bottom: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  margin-top: 3em;
}
#footer .contact-emergency li {
  padding-left: 0.25em;
  padding-right: 0.25em;
}
#footer .readmore + .contact-emergency {
  margin-top: 0;
}
#footer .copyright {
  font-size: 0.9em;
}
#footer .copyright .ce_text {
  width: 69%;
  float: left;
}
#footer .copyright .ce_text strong {
  font-weight: var(--font-base-strong-weight);
}
#footer .copyright .ce_text ul {
  display: block;
  margin-bottom: 0.4em;
}
#footer .copyright .ce_text li {
  display: inline;
  margin-right: 0.8em;
  white-space: nowrap;
}
#footer .copyright .ce_text li a {
  font-weight: var(--font-base-strong-weight);
  color: #595959;
}
#footer .copyright .ce_text li a[href^="tel:"] {
  color: #333;
}
#footer .copyright .ce_text li a:hover {
  opacity: 0.7;
}
#footer .copyright .co2neutral {
  width: 11%;
  float: left;
  text-align: center;
  display: block;
}
#footer .copyright .co2neutral img {
  max-width: 12em;
  margin-bottom: 1em;
}
#footer .copyright .mod_customnav {
  width: 20%;
  float: left;
  overflow: visible;
}
#footer .copyright .mod_customnav ul {
  text-align: right;
}
#footer .copyright .mod_customnav li {
  float: right;
  margin-left: 1em;
  border-radius: 50%;
  -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;
}
#footer .copyright .mod_customnav li:before {
  display: none;
}
#footer .copyright .mod_customnav .icon a {
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 3em;
  width: 3em;
  border-radius: 100%;
  position: relative;
}
#footer .copyright .mod_customnav .icon a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3em;
}
#footer .copyright .mod_customnav .icon a:hover {
  -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);
}
#footer .copyright:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1210px) {
  #footer .copyright .ce_text {
    width: 59%;
  }
  #footer .copyright .co2neutral {
    width: 11%;
    float: left;
  }
  #footer .copyright .mod_customnav {
    width: 30%;
  }
}
@media screen and (max-width: 820px) {
  #footer .copyright .co2neutral {
    width: 20%;
    float: left;
  }
  #footer .copyright .mod_customnav {
    width: 21%;
  }
  #footer .copyright .mod_customnav li {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 655px) {
  #footer .copyright .ce_text, #footer .copyright .co2neutral, #footer .copyright .mod_customnav {
    width: 100%;
    float: none;
  }
  #footer .copyright .ce_text ul, #footer .copyright .co2neutral ul, #footer .copyright .mod_customnav ul {
    text-align: center;
    margin-bottom: 0;
  }
  #footer .copyright .ce_text {
    margin-bottom: 2em;
  }
  #footer .copyright .ce_text li {
    margin: 0.4em;
  }
  #footer .copyright .co2neutral {
    margin-bottom: 1em;
  }
  #footer .copyright .mod_customnav .icon {
    float: none;
    display: inline-block;
  }
  #footer .copyright .mod_customnav .icon a {
    margin: 0 0.5em;
  }
}
#footer .nav-arrow {
  display: none;
}
#footer .mobile-show {
  display: none;
}
#footer.addSpace {
  padding-bottom: 120px;
}
@media (max-width: 850px) {
  #footer .mobile-hide {
    display: none;
  }
  #footer .mobile-show {
    display: inline-block;
  }
}
@media (max-width: 530px) {
  #footer .contact-emergency {
    padding-left: 0em;
    padding-right: 0em;
  }
  #footer .contact-emergency a[href^="tel:"] {
    display: block;
  }
}
#go-top {
  position: fixed;
  z-index: 499;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  right: 1.5em;
  width: 2.5em;
  height: 2.5em;
  background: rgba(0, 0, 0, 0.15);
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
#go-top div.inside {
  max-width: none;
  padding: 0;
}
#go-top svg {
  max-width: 60%;
  margin: 6px auto 0;
}
#go-top:hover {
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1120px) {
  #go-top {
    right: 1em;
    margin-bottom: -1em;
  }
}
@media (max-width: 768px) {
  #go-top {
    display: none !important;
  }
}
body.trident #go-top svg {
  height: 1.6em;
}
.contact-row:last-of-type {
  border-top: 1px solid #ccc;
  padding-top: 1.5em;
  margin-top: 1.5em;
}
a.icomoon-facebook:before {
  content: "";
  color: #bebebe;
}
a.icomoon-youtube:before {
  content: "";
  color: #bebebe;
}
#footer .readmore ul li a {
  color: #666;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
#footer .readmore ul li a:before {
  font-family: "zeag" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 4em;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  color: #999;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
#footer .readmore ul li a:hover {
  color: var(--brand-color-1);
}
#footer .readmore ul li a:hover:before {
  transform: scale(1);
  color: var(--brand-color-1);
}
#footer .readmore ul li.active a {
  color: #333;
}
#footer .readmore ul li.active a:before {
  opacity: 1;
  color: #333;
}
#footer .readmore a.partner:before {
  content: "";
}
#footer .readmore a.integrierte-planung:before {
  content: "";
}
#footer .readmore a.integrierte-versorgung:before {
  content: "";
}
#footer .readmore a.projektablauf:before {
  content: "";
}
#footer .readmore a.erneuerbare-energien:before {
  content: "";
}
#footer .readmore a.immobilien:before {
  content: "";
}
#footer .readmore a.nachhaltigkeit:before {
  content: "";
}
#footer .readmore a.bauen-modernisieren:before {
  content: "";
}
#footer .readmore a.internetpage:before {
  content: "";
}
#footer .readmore a.karriere:before {
  content: "";
}
#footer .readmore a.karriere-jobs:before {
  content: "";
}
#footer .readmore a.presse:before {
  content: "";
}
body.gebaeudeenergieausweis #footer .only-energieeffizienz, body.schimmelanalyse #footer .only-energieeffizienz, body.thermografie #footer .only-energieeffizienz, body.energieberatung-wohnhaus #footer .only-energieeffizienz, body.energieberatung-gewerbe #footer .only-energieeffizienz, body.heizungsanalyse #footer .only-energieeffizienz, body.energieaudit #footer .only-energieeffizienz, body.sanierungsfahrplaene #footer .only-energieeffizienz {
  display: block;
}
body.gebaeudeenergieausweis #footer .not-energieeffizienz, body.schimmelanalyse #footer .not-energieeffizienz, body.thermografie #footer .not-energieeffizienz, body.energieberatung-wohnhaus #footer .not-energieeffizienz, body.energieberatung-gewerbe #footer .not-energieeffizienz, body.heizungsanalyse #footer .not-energieeffizienz, body.energieaudit #footer .not-energieeffizienz, body.sanierungsfahrplaene #footer .not-energieeffizienz {
  display: none;
}
body.hide-footernav #footer .readmore, body.suche #footer .readmore, body.bausteine #footer .readmore, body.best-practice #footer .readmore {
  padding-bottom: 0;
}
body.hide-footernav #footer .readmore .mod_navigation, body.suche #footer .readmore .mod_navigation, body.bausteine #footer .readmore .mod_navigation, body.best-practice #footer .readmore .mod_navigation {
  display: none;
}
.cookiebar {
  z-index: 1000 !important;
}
.cookiebar__message, .cookiebar__text, .cookiebar__analytics-text {
  color: #fff;
}
/*# 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%2Ffooter.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%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACsOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD3OA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAASL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAKV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAACC%3BAAAA%3BAAAA%3BAAGS%3BAAAA%3BAAAA%3BAAAA%3BAAIT%3BAAAA%3BAAAA%3BAAAA%3BAAIK%3BAACL%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEa%3BAAAA%3BAAAA%3BAAAA%3BAAKd%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAIR%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAsBA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAASA%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%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAcD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%22%7D */