@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);
  }
}
body.suche h1 {
  font-size: 2em;
}
body.suche h1 + p {
  font-size: 1.25em;
}
body.suche #container {
  padding: 3em 0 2em;
}
body.suche .mod_article .formbody input[type="submit"], body.suche .mod_article .formbody button, body.suche .mod_article .formbody input[type="search"] {
  height: 2.2em;
  line-height: 2.2em;
  border-radius: 0;
}
body.suche .mod_article .formbody input[type="search"] {
  float: left;
  padding: 0 0.5em;
  width: 16em;
  border: 1px solid #ebebeb;
  -webkit-appearance: none;
}
body.suche .mod_article .formbody button, body.suche .mod_article .formbody input[type="submit"] {
  border: none;
  background-color: var(--brand-color-1);
  padding: 0 2.5em;
  color: #fff;
  font-weight: var(--font-base-strong-weight);
  text-transform: uppercase;
  background-color: var(--brand-color-1);
  background-image: -webkit-linear-gradient(right, var(--brand-color-1-variant), var(--brand-color-1));
  background-image: -moz-linear-gradient(right, var(--brand-color-1-variant), var(--brand-color-1));
  background-image: -o-linear-gradient(right, var(--brand-color-1-variant), var(--brand-color-1));
  background-image: -ms-linear-gradient(right, var(--brand-color-1-variant), var(--brand-color-1));
  background-image: linear-gradient(to left, var(--brand-color-1-variant), var(--brand-color-1));
  -webkit-box-shadow: 0 0.125em 1em 0.125em rgba(31, 30, 30, 0);
  -moz-box-shadow: 0 0.125em 1em 0.125em rgba(31, 30, 30, 0);
  box-shadow: 0 0.125em 1em 0.125em rgba(31, 30, 30, 0);
  cursor: pointer;
  margin-left: 0.5em;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border-radius: 0;
}
body.suche .mod_article .formbody button:hover, body.suche .mod_article .formbody input[type="submit"]: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);
  background-color: var(--brand-color-1-variant);
  background-image: -webkit-linear-gradient(right, var(--brand-color-1), var(--brand-color-1-variant));
  background-image: -moz-linear-gradient(right, var(--brand-color-1), var(--brand-color-1-variant));
  background-image: -o-linear-gradient(right, var(--brand-color-1), var(--brand-color-1-variant));
  background-image: -ms-linear-gradient(right, var(--brand-color-1), var(--brand-color-1-variant));
  background-image: linear-gradient(to left, var(--brand-color-1), var(--brand-color-1-variant));
}
@media (max-width: 450px) {
  body.suche .mod_article .formbody button, body.suche .mod_article .formbody input[type="submit"] {
    margin-left: 0;
  }
}
body.suche p.header {
  width: 100%;
  float: left;
  margin-top: 0.5em;
}
body.suche .mod_search.block > div {
  width: 100%;
  float: left;
}
body.suche .mod_search.block h3 {
  font-size: 1.3em;
}
body.suche .mod_search.block mark {
  background-color: var(--brand-color-1);
  padding: 0 0.2em;
}
@media (max-width: 850px) {
  body.suche h1 {
    margin-top: 1em;
  }
}
@media (max-width: 500px) {
  body.suche .search-results * {
    word-break: break-word;
  }
}
@media (max-width: 450px) {
  body.suche .mod_article .formbody input[type="search"], body.suche .mod_article .formbody button {
    float: none;
    margin: 0 auto 0.5em;
  }
  body.suche .mod_article .formbody input[type="search"] {
    width: 100%;
  }
}
body.suche #wrapper, .short-page #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+ */
  min-height: 100vh;
  flex-direction: column;
}
body.suche #container, .short-page #container {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.thank-you-page, .contact-page {
  overflow: visible;
}
.thank-you-page h1, .contact-page h1 {
  font-family: var(--font-heading);
  font-style: var(--font-heading-style);
  font-size: 1.85em;
  line-height: 1.3;
  margin-bottom: 1.8em;
}
.thank-you-page h1 strong, .contact-page h1 strong {
  font-style: normal;
  font-weight: var(--font-base-strong-weight);
  color: var(--brand-color-1);
  display: block;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .thank-you-page h1, .contact-page h1 {
    margin-top: 1.2em;
  }
}
.contact-page .ce_form {
  background: #f7f7f7;
  padding: 2.5em 2em 4.5em;
  margin-bottom: 5em;
}
.contact-page .ce_form .close-me {
  display: none;
}
.contact-page .block {
  overflow: visible;
}
.contact-page .fs-popup {
  visibility: visible;
  position: relative;
  z-index: 1;
}
.contact-page .fs-popup .innerform {
  top: auto;
  transform: none;
  padding: 0;
  max-width: 100%;
}
.contact-page .fs-popup .innerform form {
  visibility: visible;
}
@media (max-width: 420px) {
  .contact-page .ce_form {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
  .contact-page .ce_form .widget-explanation, .contact-page .ce_form .innerform .widget-textarea.message, .contact-page .ce_form .widget.one-half {
    padding: 0;
  }
}
.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 52vh;
}
.thank-you-page .ce_text {
  margin: 3em 0;
}
.thank-you-page .ce_text h1 {
  margin-bottom: 0;
}
.thank-you-page .icon {
  -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);
  padding: 6em 2em 6em;
  text-align: center;
}
.thank-you-page .icon .innerbox {
  display: inline-block;
  margin: auto;
}
.thank-you-page .icon .textcontainer {
  padding-left: 10em;
  position: relative;
  text-align: left;
}
.thank-you-page .icon .textcontainer:before {
  position: absolute;
  content: "";
  color: var(--brand-color-1);
  display: block;
  font-size: 8em;
  left: 0;
  top: -0.2em;
  background: none;
}
.thank-you-page .icon .textcontainer p {
  margin-bottom: 1em;
}
.thank-you-page .icon .textcontainer p strong {
  color: var(--brand-color-1);
}
.thank-you-page .icon .textcontainer p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .thank-you-page .icon {
    padding-top: 3em;
  }
  .thank-you-page .icon .textcontainer {
    padding-left: 0;
    padding-top: 8em;
    text-align: center;
  }
  .thank-you-page .icon .textcontainer:before {
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }
}
.contact-type-2 .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+ */
  align-items: center;
  justify-content: space-between;
  -moz-box-orient: vertical;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}
.contact-type-2 .ce_text {
  max-width: 50%;
  text-align: left;
}
.contact-type-2 .ce_text.contact-intro {
  max-width: 24em;
}
.contact-type-2 .ce_text:first-of-type {
  padding-right: 3em;
}
.contact-type-2 .ce_text:first-of-type.contact-intro {
  padding: 0;
}
.contact-type-2 .ce_text:last-of-type, .contact-type-2 .ce_member {
  padding-left: 2em;
}
.contact-type-2 .ce_text p:last-of-type {
  margin-bottom: 0;
}
.contact-type-2 h3, .contact-type-2 h4 {
  font-size: 1.2em;
  font-weight: var(--font-base-strong-weight);
  margin-bottom: 0.5em;
}
.contact-type-2 h4, .contact-type-2 .ce_member p {
  font-size: 1.1em;
  margin-bottom: 0;
}
.contact-type-2 .img_containment, .contact-type-2 .innerbox > .image_container {
  flex: 0 0 12em;
  padding: 1em;
  overflow: visible;
  margin-right: 2em;
}
.contact-type-2 .img_containment figure, .contact-type-2 .innerbox > .image_container figure {
  overflow: hidden;
  border-radius: 50%;
}
.contact-type-2 .ce_member img {
  border-radius: 50%;
  overflow: hidden;
}
.contact-type-2 a[href^="tel:"], .contact-type-2 a[href^="mailto:"] {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
}
.contact-type-2 a[href^="tel:"]:hover, .contact-type-2 a[href^="mailto:"]:hover {
  opacity: 0.7;
}
.contact-type-2 .ce_text:last-of-type .innerbox, .contact-type-2 .ce_member .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+ */
  align-items: center;
  -moz-box-orient: vertical;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}
@media (max-width: 1100px) {
  .contact-type-2 .content-wrapper {
    max-width: 100% !important;
  }
  .contact-type-2 .innerbox > .image_container {
    margin-right: 1em;
  }
  .contact-type-2 .img_containment, .contact-type-2 .innerbox > .image_container {
    flex: 0 0 10em;
    margin-right: 1em;
  }
  .contact-type-2.two-person .content-wrapper {
    display: block;
    text-align: center;
  }
  .contact-type-2.two-person .ce_text {
    display: inline-block;
  }
  .contact-type-2.two-person .ce_text.contact-intro {
    max-width: 80%;
    width: auto;
    margin-bottom: 3em;
  }
  .contact-type-2.two-person .ce_member {
    display: inline-block;
    text-align: left;
    padding-left: 0;
    padding-right: 2em;
  }
}
@media (max-width: 800px) {
  .contact-type-2 .ce_text:first-of-type {
    padding-right: 2em;
  }
  .contact-type-2 .ce_text:last-of-type {
    padding-left: 0em;
  }
  .contact-type-2 .img_containment {
    margin-right: 0.5em;
  }
}
@media (max-width: 869px) {
  .contact-type-2 {
    text-align: center;
  }
  .contact-type-2 .content-wrapper {
    flex-direction: column;
  }
  .contact-type-2 .img_containment, .contact-type-2 .innerbox > .image_container {
    padding-left: 0;
  }
  .contact-type-2 .ce_text {
    width: 85%;
    float: none;
    max-width: none;
    text-align: left;
    margin: 0 auto;
  }
  .contact-type-2 .ce_text:first-of-type, .contact-type-2 .ce_text:last-of-type {
    padding: 0;
  }
  .contact-type-2 .ce_text.first {
    margin-bottom: 3em;
    max-width: none;
  }
}
@media (max-width: 500px) {
  .contact-type-2 .ce_text {
    width: 100%;
  }
  .contact-type-2.two-person .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-type-2.two-person .ce_text.contact-intro {
    max-width: 100%;
  }
  .contact-type-2.two-person .ce_member {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .contact-type-2 .ce_text .contact-intro {
    width: 100%;
  }
  .contact-type-2 .img_containment, .contact-type-2 .innerbox > .image_container {
    flex: 0 0 7em;
  }
}
.contact-type-2.border-top .content-wrapper {
  padding-top: 3em;
  max-width: calc(81em - 3em) !important;
}
.contact-type-2.border-top .content-wrapper::after {
  content: "";
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 1190px) {
  .contact-type-2.border-top {
    padding: 3em;
    width: 100%;
  }
}
.support .contact-page {
  margin-top: 5em;
}
p.back {
  clear: both;
  margin-top: 4em;
}
p.back a {
  font-weight: var(--font-base-strong-weight);
  color: var(--brand-color-1);
  position: relative;
  transition: all 0.3s ease-in-out;
  padding-left: 1.5em;
  display: block;
}
p.back a:before {
  position: absolute;
  left: 0;
  content: "";
  font-family: "Zeag";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
p.back a:hover {
  color: #333;
}
/*# 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%2Foperating-pages.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%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWL%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%22%7D */