@charset "UTF-8";
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
    Strips the unit from a number.
    @param {Number (With Unit)} $value
    @example scss - Usage
      $dimension: strip-units(10em);
    @example css - CSS Output
      $dimension: 10;
    @return {Number (Unitless)}
    based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
  ==============================================================================*/
/*============================================================================
    Return a color based on the brightness of an existing color.
    Need to pass in brightness because it is calculated with Liquid.
    @param {Number} $brightness
    @param {String} $color
    @example scss - Usage
      $focusColor: adaptiveColor(#000, 0);
    @example css - CSS Output
      $focusColor: #404040;
    @return {String}
  ==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
    Prefix mixin for generating vendor prefixes.
    Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

    Usage:
      // Input:
      .element {
        @include prefix(transform, scale(1), ms webkit spec);
      }

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
  ==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
    Flexbox prefix mixins from Bourbon
      https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
  ==============================================================================*/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
    - Breakpoint pixel values are used in the window.theme.breakpoints object
==============================================================================*/
/*============================================================================
  #Grid
==============================================================================*/
@viewport {
  zoom: 1;
  width: extend-to-zoom;
}
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1;
}
html, body {
  height: 100%;
}
.pageWrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  /* the bottom margin is the negative value of the footer's height */
  margin-top: 0;
  margin-bottom: -200px;
}
.push {
  height: 200px;
}
.js .pagefade {
  display: none;
}
body {
  width: 100%;
  height: 100%;
  font-family: "Helvetica", sans-serif;
  orientation: portrait;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  white-space: normal;
}
.wrapper {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  /* z-index:55; */
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: normal;
  font-family: "Helvetica", sans-serif;
}
h1 b, h1 strong, h2 b, h2 strong, h3 b, h3 strong, h4 b, h4 strong, h5 b, h5 strong, h6 b, h6 strong, .h1 b, .h1 strong, .h2 b, .h2 strong, .h3 b, .h3 strong, .h4 b, .h4 strong, .h5 b, .h5 strong, .h6 b, .h6 strong {
  font-weight: 900;
}
a {
  color: #3db5e6;
}
a:hover, a:focus {
  text-decoration: none;
}
label {
  font-size: 14px;
  font-weight: normal;
}
label.error {
  background: none;
  margin-left: 10px;
  font-weight: 200;
  margin-bottom: 5px;
}
.cf {
  clear: both;
}
.center-vertically {
  top: 50%;
  position: relative;
  transform: perspective(1px) translateY(-50%);
}
.blue {
  color: #3db5e6;
}
.yellow {
  color: #ffe608;
}
.black {
  color: #222;
}
.white {
  color: #fff;
}
.grey {
  color: #aaa;
}
img {
  max-width: 100%;
  height: auto;
}
a:hover, a:focus {
  color: #E37B1A;
  /* text-decoration:underline; */
}
ul li {
  font-size: 18px;
}
input[type=search] {
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}
.blackbg {
  background: #000;
}
.blackbg h1 {
  color: #fff;
}
.darkbg {
  background: #333;
  color: #ccc;
}
.palebg {
  background: #f6f6f6;
}
.darkbg h2 {
  color: #3db5e6;
}
.caption {
  color: #444;
  text-align: center;
}
img.left {
  float: left;
  margin-right: 16px;
}
img.right {
  float: right;
  margin-left: 16px;
}
img.center {
  display: block;
  margin: 0 auto;
}
.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.center iframe {
  display: block;
  margin: 0 auto;
}
span.image {
  width: 100%;
  display: block;
  margin: 40px 0;
  padding: 0;
  box-shadow: 0 0 6px #c8c8c8;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}
span.image img {
  position: absolute;
  height: auto;
  width: 100%;
  margin: 0 !important;
}
span.image.middle img {
  top: 50%;
  transform: translateY(-50%);
}
span.image.bottom img {
  bottom: 0;
}
.light_sep {
  width: 30%;
  border-top: 1px dashed #cdcdcd;
  margin: 40px auto 10px;
}
.with-anchor {
  position: relative;
}
.with-anchor a.anchor {
  position: absolute;
  top: -150px;
}
.block-anchor {
  position: absolute;
  top: -150px;
}
.text-justify {
  text-align: justify;
}
.store-text-content > section:first-child {
  margin-top: 0;
  padding-top: 0;
}
/* font sizes */
@media only screen and (min-width: 967px) {
  .desktop-size-1 {
    font-size: 12px !important;
  }
  .desktop-size-2 {
    font-size: 18px !important;
  }
  .desktop-size-3 {
    font-size: 25px !important;
  }
  .desktop-size-4 {
    font-size: 40px !important;
  }
  .desktop-size-5 {
    font-size: 48px !important;
  }
  .desktop-size-6 {
    font-size: 56px !important;
  }
  .desktop-margin-top-none {
    margin-top: 0px !important;
  }
  .desktop-margin-top-half {
    margin-top: 10px !important;
  }
  .desktop-margin-top-one {
    margin-top: 20px !important;
  }
  .desktop-margin-top-onehalf {
    margin-top: 30px !important;
  }
  .desktop-margin-top-two {
    margin-top: 40px !important;
  }
  .desktop-margin-bottom-none {
    margin-bottom: 0px !important;
  }
  .desktop-margin-bottom-half {
    margin-bottom: 10px !important;
  }
  .desktop-margin-bottom-one {
    margin-bottom: 20px !important;
  }
  .desktop-margin-bottom-onehalf {
    margin-bottom: 30px !important;
  }
  .desktop-margin-bottom-two {
    margin-bottom: 40px !important;
  }
  .desktop-lh-50 {
    line-height: 50% !important;
  }
  .desktop-lh-75 {
    line-height: 75% !important;
  }
  .desktop-lh-100 {
    line-height: 100% !important;
  }
  .desktop-lh-125 {
    line-height: 125% !important;
  }
  .desktop-lh-150 {
    line-height: 150% !important;
  }
  .desktop-lh-200 {
    line-height: 200% !important;
  }
}
.mce-menu-item-preview .desktop-size-1, .typography .desktop-size-1 {
  font-size: 12px !important;
}
.mce-menu-item-preview .desktop-size-2, .typography .desktop-size-2 {
  font-size: 18px !important;
}
.mce-menu-item-preview .desktop-size-3, .typography .desktop-size-3 {
  font-size: 25px !important;
}
.mce-menu-item-preview .desktop-size-4, .typography .desktop-size-4 {
  font-size: 40px !important;
}
.mce-menu-item-preview .desktop-size-5, .typography .desktop-size-5 {
  font-size: 48px !important;
}
.mce-menu-item-preview .desktop-size-6, .typography .desktop-size-6 {
  font-size: 56px !important;
}
.mce-menu-item-preview .desktop-lh-50, .typography .desktop-lh-50 {
  line-height: 50% !important;
}
.mce-menu-item-preview .desktop-lh-75, .typography .desktop-lh-75 {
  line-height: 75% !important;
}
.mce-menu-item-preview .desktop-lh-100, .typography .desktop-lh-100 {
  line-height: 100% !important;
}
.mce-menu-item-preview .desktop-lh-125, .typography .desktop-lh-125 {
  line-height: 125% !important;
}
.mce-menu-item-preview .desktop-lh-150, .typography .desktop-lh-150 {
  line-height: 150% !important;
}
.mce-menu-item-preview .desktop-lh-200, .typography .desktop-lh-200 {
  line-height: 150% !important;
}
@media only screen and (max-width: 966px) {
  .mobile-size-1 {
    font-size: 18px !important;
    line-height: 18px;
  }
  .mobile-size-2 {
    font-size: 20px !important;
    line-height: 20px;
  }
  .mobile-size-3 {
    font-size: 30px !important;
    line-height: 30px;
  }
  .mobile-size-4 {
    font-size: 40px !important;
    line-height: 40px;
  }
  .mobile-size-5 {
    font-size: 48px !important;
    line-height: 48px;
  }
  .mobile-size-6 {
    font-size: 56px !important;
    line-height: 56px;
  }
  .mobile-margin-top-none {
    margin-top: 0px !important;
  }
  .mobile-margin-top-half {
    margin-top: 10px !important;
  }
  .mobile-margin-top-one {
    margin-top: 20px !important;
  }
  .mobile-margin-top-onehalf {
    margin-top: 30px !important;
  }
  .mobile-margin-top-two {
    margin-top: 40px !important;
  }
  .mobile-margin-bottom-none {
    margin-bottom: 0px !important;
  }
  .mobile-margin-bottom-half {
    margin-bottom: 10px !important;
  }
  .mobile-margin-bottom-one {
    margin-bottom: 20px !important;
  }
  .mobile-margin-bottom-onehalf {
    margin-bottom: 30px !important;
  }
  .mobile-margin-bottom-two {
    margin-bottom: 40px !important;
  }
  .mobile-lh-50 {
    line-height: 50% !important;
  }
  .mobile-lh-75 {
    line-height: 75% !important;
  }
  .mobile-lh-100 {
    line-height: 100% !important;
  }
  .mobile-lh-125 {
    line-height: 125% !important;
  }
  .mobile-lh-150 {
    line-height: 150% !important;
  }
  .mobile-lh-200 {
    line-height: 200% !important;
  }
}
.dealers-section .pageWrap {
  margin-bottom: -16px;
}
.dealers-section .push {
  display: none;
}
.sticky-scroller-tx, .sticky-scroller span, .back-scroller span {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  color: #E37B1A;
  font-size: 17px;
}
.sticky-scroller, .back-scroller {
  z-index: 200;
  background: rgba(243, 243, 243, 0.6);
  padding: 13px;
  border-radius: 10px;
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  white-space: nowrap;
}
.sticky-scroller:hover, .back-scroller:hover {
  background: rgba(243, 243, 243, 0.9);
}
@media only screen and (max-width: 766px) {
  .sticky-scroller, .back-scroller {
    bottom: 90px;
    padding: 7px;
  }
}
.sticky-scroller path, .back-scroller path {
  stroke: #E37B1A;
}
.back-scroller {
  line-height: 40px;
}
.back-scroller svg {
  float: left;
}
.back-scroller path {
  stroke: #E37B1A;
}
@media only screen and (max-width: 766px) {
  .back-scroller {
    padding: 7px 50px 7px 7px;
  }
}
.more-teaser {
  position: fixed;
  right: 20%;
  bottom: 45px;
  z-index: 300;
  width: 54px;
  display: flex;
  align-content: center;
  margin: 0 auto;
  justify-content: center;
  height: 54px;
  background-color: #fff;
  border: 4px solid;
  color: #E37B1A;
  border-radius: 54px;
}
@media only screen and (max-width: 766px) {
  .more-teaser {
    bottom: 90px;
    right: 16px;
  }
}
.more-teaser .arrow_container {
  display: flex;
  margin: 0 auto;
  align-items: center;
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}
.joshmens__elements__twocolumn__elements__elementtwocolumn {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .joshmens__elements__twocolumn__elements__elementtwocolumn {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .joshmens__elements__twocolumn__elements__elementtwocolumn {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .joshmens__elements__twocolumn__elements__elementtwocolumn {
    max-width: 1170px;
  }
}
.pool-scroll {
  display: flex;
  flex-direction: row;
  background: #292c2e;
  min-height: 400px;
}
@media only screen and (max-width: 766px) {
  .pool-scroll {
    flex-direction: column;
    margin-top: 40px;
  }
}
.pool-scroll-even {
  background: #505050;
}
.pool-scroll__banner {
  width: 300px;
  max-width: 30%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 766px) {
  .pool-scroll__banner {
    max-width: 100%;
    width: auto;
  }
}
.pool-scroll__banner:hover .pool-scroll__banner-overlay {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0.5;
}
.pool-scroll__banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pool-scroll__banner-title {
  font-size: 40px;
  font-weight: bold;
  padding: 20px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}
@media only screen and (min-width: 767px) {
  .pool-scroll__banner-title {
    transform: rotate(-90deg);
    transform-origin: 0 0;
    position: absolute;
    bottom: -40px;
    padding: 20px 0 0 0;
  }
}
.pool-scroll__subplate {
  position: relative;
  width: 100%;
  padding-left: 60px;
}
@media only screen and (min-width: 967px) {
  .pool-scroll__subplate {
    padding-right: 60px;
  }
}
.pool-scroll__plate {
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}
.pool-scroll__text-content {
  color: #fff;
  padding: 30px 60px 0 60px;
  overflow: hidden;
  width: 100%;
}
.pool-scroll__scroll-wrapper {
  overflow: hidden;
  position: relative;
}
.pool-scroll__ticks {
  position: absolute;
  left: 0;
  top: 60px;
  bottom: calc(15px + 30px + 25px + 60px);
  right: 0;
}
.pool-scroll__tick {
  width: 100%;
  border-bottom: dotted 1px silver;
  text-indent: 15px;
  color: lightblue;
  position: absolute;
  font-weight: bold;
  font-size: 13px;
}
.pool-scroll__content-wrapper {
  position: relative;
  z-index: 1;
  display: table;
  white-space: nowrap;
  margin-top: 60px;
  padding-bottom: 60px;
}
.pool-scroll__series {
  display: table-cell;
  vertical-align: bottom;
  padding-left: 8px;
  padding-right: 8px;
}
.pool-scroll__series-title {
  background-color: #86c6d0;
  color: #fff;
  padding: 0 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  display: block;
}
.pool-scroll__series-title:hover {
  background-color: #E37B1A !important;
  color: #fff;
}
.no-groups .pool-scroll__ticks {
  bottom: calc(15px + 25px + 60px);
}
.no-groups .pool-scroll__series-title {
  display: none;
}
.pool-scroll__series-content {
  display: flex;
  align-items: flex-end;
}
.pool-scroll__series-content:hover .pool-scroll__image-holder {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  transform: translateY(-10px);
}
.pool-scroll__image-holder {
  margin: 0 auto 15px auto;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pool-scroll__series-item {
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  width: 100%;
}
.pool-scroll__series-item img {
  max-width: none;
  display: block;
}
.pool-scroll__series-item span {
  display: block;
  height: 25px;
  font-size: 14px;
}
.pool-scroll .swiper-pagination-bullet-active {
  background: #428bca;
}
.imagecolumns_container {
  padding-left: 25px;
  padding-right: 25px;
}
.imagecolumns_container a:hover img {
  filter: brightness(0.8);
}
.imagecolumns_container img {
  width: 100%;
  margin-bottom: 20px;
}
.imagecolumns_container h1, .imagecolumns_container h2, .imagecolumns_container h3, .imagecolumns_container h4 {
  margin-top: 0px;
}
@media only screen and (max-width: 766px) {
  .imagecolumns_container .imagecolumns_item:first-child {
    padding-bottom: 5rem;
  }
}
.image__grid .image__grid-item {
  height: 600px;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}
.image__grid .image__grid-item .image__grid-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.image__grid .image__grid-item.split {
  height: 300px;
}
.image__grid .image__grid-item:hover .text-box {
  bottom: 0px;
}
.image__grid .image__grid-item .text-box {
  padding: 20px;
  left: 0px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: -100%;
  transition: all ease 0.4s;
}
.image__grid .image__grid-item .text-box .text-box-line {
  border-left: 2px solid #707070;
  padding-left: 20px;
}
.image__grid .image__grid-item .text-box .title {
  font-weight: bold;
  color: #414042;
}
.image__grid .image__grid-item .text-box .subtitle {
  color: #BAB2B2;
  font-size: 16px;
}
@media only screen and (max-width: 966px) {
  .image__grid .image__grid-item {
    height: 400px;
  }
  .image__grid .image__grid-item.split {
    height: 400px;
  }
  .image__grid .image__grid-item .text-box {
    bottom: 0px;
  }
}
@media only screen and (max-width: 766px) {
  .image__grid .image__grid-item {
    height: 300px;
  }
  .image__grid .image__grid-item.split {
    height: 300px;
  }
}
.colour-gallery .image__grid .image__grid-item .text-box-line {
  border: 0px;
  padding-left: 0px;
}
.colour-gallery .image__grid .image__grid-item .text-box-line .title {
  font-size: 12px;
}
@media only screen and (max-width: 966px) {
  .colour-gallery .image__grid .image__grid-item .text-box {
    padding: 10px;
    top: 0px;
    bottom: auto;
  }
  .colour-gallery .image__grid .image__grid-item:hover .text-box {
    bottom: auto;
  }
}
.hover {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.hover.up_10:hover {
  transform: translateY(-10px);
}
.hover.up_20:hover {
  transform: translateY(-20px);
}
.hover.left_10:hover {
  transform: translateX(-10px);
}
.hover.left_20:hover {
  transform: translateX(-20px);
}
.hover.down_10:hover {
  transform: translateY(10px);
}
.hover.down_20:hover {
  transform: translateY(20px);
}
.hover.right_10:hover {
  transform: translateX(10px);
}
.hover.right_20:hover {
  transform: translateX(20px);
}
.saps__models__block__photogallery .element__title {
  padding: 0px 10px;
}
.inline-quickenquiry #SlideContact {
  background: transparent;
  box-shadow: none;
}
.inline-quickenquiry #SlideContact label {
  font-size: 14px;
  color: #333;
}
.inline-quickenquiry #SlideContact .btn-onblack {
  border: 0px;
}
.hidden-anchor {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}
.featured-content__content {
  padding-bottom: 30px;
  max-width: 400px;
}
.staggered_row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.staggered__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.staggered__item .staggered__item-content {
  height: 100%;
  margin-top: 20px;
  padding: 0 20px;
  border-left: 2px solid #707070;
}
.staggered__item .staggered__item-content span {
  color: #333;
}
@media only screen and (min-width: 767px) {
  .staggered__item.reversed {
    flex-direction: column-reverse;
  }
  .staggered__item.reversed .staggered__item-content {
    margin-bottom: 20px;
    margin-top: 0px;
  }
}
.walkthrough-item {
  padding-bottom: 20px;
}
.walkthrough-item .spa-item-title {
  max-width: 100%;
  text-align: left;
  padding-top: 5px;
}
.small-col-padding {
  padding-left: 1.5px;
  padding-right: 1.5px;
}
.content section {
  border-bottom: 0px;
}
.disabled_swiper_button {
  display: none !important;
}
.communication-checkbox label {
  display: block;
  padding-bottom: 10px;
}
.modal {
  -webkit-overflow-scrolling: touch;
}
.modal-dialog {
  padding-top: 50px;
}
.modal-dialog .modal-lg {
  width: 90%;
  max-width: 1100px;
}
.modal-dialog.lg {
  width: 90%;
  max-width: 1100px;
}
.modal-body {
  padding: 5%;
}
.modal-body .dark {
  background: #333;
  color: #ccc;
}
.modal-content {
  background: #333333;
  color: #fff;
}
.modal-content .modal-title {
  font-size: 45px;
  font-weight: 200;
}
.modal-content .modal-title.modal-bighead {
  font-size: 45px;
  font-weight: normal;
  line-height: 1;
  margin: 19px 0;
}
@media only screen and (max-width: 766px) {
  .modal-content .modal-title.modal-bighead {
    font-size: 20px;
  }
}
.modal-content, .modal-content li {
  font-size: 15px;
  font-weight: 300;
  border-radius: 0;
}
.modal-content .close {
  color: #fff;
  opacity: 1;
  text-shadow: none;
}
.modal-content .close:hover {
  color: #3db5e6;
}
.modal-content.dark {
  background: #060606;
  color: #fff;
}
.modal-content.dark .close {
  color: #fff;
  text-shadow: none;
}
.modal-content.dark .modal-title {
  color: #fff;
  font-weight: 200;
  margin: 10px 10%;
}
.modal-content.dark .modal-header {
  border-color: #111;
  text-align: center;
  /* padding-left: 5%; */
  /* padding-right: 5%; */
}
.modal-content.dark .modal-footer {
  border-color: #111;
}
.modal-content.dark h4 {
  /* font-size: 3em; */
  font-weight: 200;
}
/***************************/
/*! Slideshow style rules  */
/***************************/
#slides {
  position: relative;
  top: 0;
  height: 750px;
  z-index: 10;
  height: 100%;
  overflow: hidden;
  text-shadow: 0 0 5px #000;
}
#slides > div {
  height: 100%;
}
#slides .banner_overlay {
  transition: opacity linear 200ms;
}
#slides:hover .banner_overlay {
  opacity: 0.1;
}
#slides a, #slides button {
  outline: none;
}
#slides .slide-header img {
  display: inline-block;
  transform: none;
  min-width: auto;
  min-height: auto;
  height: auto;
}
#slides .slick-dots {
  position: absolute;
  z-index: 35;
  bottom: 10px;
  text-align: center;
  width: 100%;
  padding-left: 0;
  line-height: 1;
}
#slides .slick-dots li {
  border-radius: 0px;
  width: 4px;
  width: 50px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  background: #fff;
  margin: 2px;
  overflow: hidden;
  text-indent: -100%;
  font-size: 0;
  height: 5px;
  line-height: 0px;
  display: inline-block;
  padding: 0;
  position: relative;
}
#slides .slick-dots li button {
  position: absolute;
  left: -50px;
  top: 0;
  background: #2ab8e8;
  height: 100%;
  border-radius: 0px;
  display: block;
  width: 100%;
  font-size: 0px;
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-highlight: none;
  /* animation-play-state: initial; */
  outline: 0;
}
#slides .slick-dots li.slick-active button {
  animation: slick_dots_li_button;
  animation-timing-function: linear;
  animation-duration: 7s;
  animation-play-state: running;
  animation-fill-mode: both;
}
#slides .slick-dots:hover li.slick-active button {
  animation-play-state: paused;
}
.banner-caption-image-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.banner-caption-image-holder.mobile {
  display: none;
}
@media only screen and (max-width: 966px) {
  .banner-caption-image-holder.mobile {
    display: block;
  }
}
@media only screen and (max-width: 966px) {
  .banner-caption-image-holder.desktop {
    display: none;
  }
}
.banner-caption-image {
  position: absolute;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .banner-caption-image {
    width: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .mobile-margin-bottom {
    margin-bottom: 40px;
  }
}
.slick-list, .slick-track, .slick-slide {
  height: 100%;
}
.slick-slide {
  position: relative;
}
@-webkit-keyframes slick_dots_li_button {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slick_dots_li_button {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.one-line-cards, .element__slideshow {
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 25px;
}
@media only screen and (min-width: 767px) {
  .one-line-cards, .element__slideshow {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0;
  }
}
.one-line-cards .slick-list, .element__slideshow .slick-list {
  padding: 15px 0 0 0;
}
@media only screen and (min-width: 767px) {
  .one-line-cards .slick-list, .element__slideshow .slick-list {
    margin-left: 50px;
    margin-right: 50px;
    padding: 25px 25px 50px 25px;
  }
}
.one-line-cards .slick-slide, .element__slideshow .slick-slide {
  opacity: 0;
  transition: opacity linear 200ms;
}
.one-line-cards .slick-slide.slick-active, .element__slideshow .slick-slide.slick-active {
  opacity: 1;
}
@media only screen and (min-width: 767px) {
  .one-line-cards .slick-slide, .element__slideshow .slick-slide {
    display: inline-block;
  }
}
.one-line-cards .slick-arrow, .element__slideshow .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  background: transparent;
  border: 0;
  line-height: 1;
  width: 50px;
  z-index: 20;
  -webkit-highlight: none;
  outline: 0;
}
.one-line-cards .slick-arrow.slick-disabled, .element__slideshow .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.3;
}
.one-line-cards .slick-next:after, .one-line-cards .slick-prev:after, .element__slideshow .slick-next:after, .element__slideshow .slick-prev:after {
  font-family: swiper-icons;
  font-size: 33pt;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  color: #428bca;
}
.one-line-cards .slick-next, .element__slideshow .slick-next {
  left: auto;
  right: 0;
}
.one-line-cards .slick-next:after, .element__slideshow .slick-next:after {
  content: 'next';
}
.one-line-cards .slick-prev, .element__slideshow .slick-prev {
  left: 0;
  right: auto;
}
.one-line-cards .slick-prev:after, .element__slideshow .slick-prev:after {
  content: 'prev';
}
.one-line-cards .slick-dots, .element__slideshow .slick-dots {
  position: absolute;
  z-index: 35;
  top: 0px;
  text-align: center;
  width: 100%;
  padding: 0;
  line-height: 1;
  margin: 0;
  bottom: auto;
}
.one-line-cards .slick-dots li, .element__slideshow .slick-dots li {
  border-radius: 0px;
  width: 4px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  background: #fff;
  margin: 2px;
  font-size: 0;
  height: 6px;
  line-height: 0px;
  display: inline-block;
  padding: 0;
  margin: 0 10px;
}
.one-line-cards .slick-dots li button, .element__slideshow .slick-dots li button {
  background: #3db5e6;
  border-radius: 3px;
  display: block;
  width: 6px;
  height: 6px;
  font-size: 0px;
  border: 0;
  padding: 0;
  line-height: 1px;
  -webkit-highlight: none;
  outline: 0;
}
.one-line-cards .slick-dots li.slick-active button, .element__slideshow .slick-dots li.slick-active button {
  background: #428bca;
}
.store-media {
  padding-left: 15px;
  padding-right: 15px;
}
.store-media .slick-dots {
  position: absolute;
  z-index: 35;
  top: 0px;
  text-align: center;
  width: 100%;
  padding: 0;
  line-height: 1;
  margin: 0;
}
.store-media .slick-dots li {
  border-radius: 0px;
  width: 4px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  background: #fff;
  margin: 2px;
  font-size: 0;
  height: 6px;
  line-height: 0px;
  display: inline-block;
  padding: 0;
  margin: 0 10px;
}
.store-media .slick-dots li button {
  background: #3db5e6;
  border-radius: 3px;
  display: block;
  width: 6px;
  height: 6px;
  font-size: 0px;
  border: 0;
  padding: 0;
  line-height: 1px;
  -webkit-highlight: none;
  outline: 0;
}
.store-media .slick-dots li.slick-active button {
  background: #428bca;
}
.store-media .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  background: transparent;
  border: 0;
  line-height: 1;
  width: 18px;
  z-index: 20;
  -webkit-highlight: none;
  outline: 0;
}
.store-media .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.3;
}
.store-media .slick-next:after, .store-media .slick-prev:after {
  font-family: swiper-icons;
  font-size: 14pt;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  color: #428bca;
}
.store-media .slick-next {
  left: auto;
  right: 0;
}
.store-media .slick-next:after {
  content: 'next';
}
.store-media .slick-prev {
  left: 0;
  right: auto;
}
.store-media .slick-prev:after {
  content: 'prev';
}
@media only screen and (min-width: 1400px) {
  .centered-swiper.slides-4 .swiper-wrapper {
    justify-content: center !important;
  }
}
@media only screen and (min-width: 1200px) {
  .centered-swiper.slides-3 .swiper-wrapper {
    justify-content: center !important;
  }
}
@media only screen and (min-width: 767px) {
  .centered-swiper.slides-2 .swiper-wrapper {
    justify-content: center !important;
  }
}
@media only screen and (min-width: 767px) {
  .filtered-items-block .filtered-items-divider {
    float: left;
  }
}
.filtered-items-block .one-line-cards .slick-arrow {
  top: calc(250px / 2 - 50px / 2);
  transform: none;
}
.saps__models__block__gallerypostpics, .dynamic__elements__blog__elements__elementblogposts {
  margin-top: 0px;
  padding-top: 5rem;
}
.saps__models__block__gallerypostpics .swiper-container, .dynamic__elements__blog__elements__elementblogposts .swiper-container {
  margin-top: 30px;
  padding-top: 0;
}
.saps__models__block__gallerypostpics h2.element__title, .dynamic__elements__blog__elements__elementblogposts h2.element__title {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 0px 10px;
}
.element__slideshow .slick-dots {
  position: relative;
}
.element__slideshow .slide__thumb {
  height: 200px;
  max-width: 200px;
  margin: auto;
}
.element__slideshow .slide__thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.element__slideshow .slide__img {
  height: 500px;
}
.element__slideshow .slide__img img {
  margin: auto;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 966px) {
  .swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 60px;
    margin-top: -60px;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0px;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0px;
  }
}
.btn, .btn-green, .btn-blue, .inline-quickenquiry #SlideContact .btn-onblack, .alt_design a, .video-overlay-content a, .alt_design_widgets a, .sliding-pics-plate .content a, .btn-orange, .btn-onblack, .btn-custom, [name="action_process"], .btn-grey, .btn-white, .post-summary-highlighted .post-image a.watch-video, .sapspage-gallery .sapspage-gallery-selected-holder .selected-title, .wizard-image-button span, .btn-black, .Security form input[type="submit"], .btn-gray {
  font-size: 15px;
  border-radius: 3px;
  padding: 10px 25px;
  line-height: 1.428571429;
  display: inline-block;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.btn-green {
  color: #fff;
  background-color: #7DBA00;
}
.btn-green:hover, .btn-green:active {
  background: #73ac00;
  color: #fff;
}
.btn-blue, .inline-quickenquiry #SlideContact .btn-onblack, .alt_design a, .video-overlay-content a, .alt_design_widgets a, .sliding-pics-plate .content a {
  color: #fff;
  background-color: #3db5e6;
}
.btn-blue:hover, .inline-quickenquiry #SlideContact .btn-onblack:hover, .alt_design a:hover, .video-overlay-content a:hover, .alt_design_widgets a:hover, .sliding-pics-plate .content a:hover, .btn-blue:active, .inline-quickenquiry #SlideContact .btn-onblack:active, .alt_design a:active, .video-overlay-content a:active, .alt_design_widgets a:active, .sliding-pics-plate .content a:active {
  background: #E37B1A !important;
  color: #fff;
}
.btn-orange {
  color: #fff;
  background-color: #E37B1A !important;
}
.btn-orange.white-bg {
  background-color: #fff !important;
  color: #000;
}
.btn-orange:hover {
  background-color: #3db5e6 !important;
  color: #fff !important;
}
.btn-orange:hover.white-bg {
  background-color: #fff !important;
  color: #000 !important;
}
.btn-onblack {
  color: white;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  width: 100%;
  margin-top: 6px;
  background: transparent;
  border: 1px solid white;
  /* text-transform: uppercase; */
}
.btn-onblack:hover {
  color: #fff;
  background: #3db5e6;
}
.btn-custom, [name="action_process"] {
  color: #fff;
  border: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  border-radius: 0;
  background-size: 5%;
  -ms-behavior: url(../js/assets/backgroundsize.min.htc);
  margin: 0 auto;
  min-width: 160px;
  background: #3db5e6;
  text-align: center;
}
.btn-custom.no-icon {
  color: #fff;
  padding: 10px 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  display: block;
  width: 100%;
  position: relative;
  background: #7dba00;
  border-radius: 3px;
  background-image: none;
  -ms-behavior: url(../js/assets/backgroundsize.min.htc);
  margin: 0 auto;
  width: 200px;
}
.btn-custom:hover, #searchnext:hover {
  background-color: #E37B1A;
  text-decoration: none;
  color: #fdfdfd;
}
.btn-grey {
  background: #eee;
  border: 1px solid #ddd;
}
.btn-grey:hover {
  background: #3db5e6;
}
a.bigButton {
  color: #fff;
  /* background: rgba(0, 0, 0, 0.2); */
  background: #3DB5E5;
  padding: 10px;
  border: 1px solid #fff;
  display: inline-block;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  font-weight: 200;
  font-size: 1.4em;
  margin-bottom: 20px;
}
a.bigButton:hover {
  text-decoration: none;
  background: #428bca;
}
.btn-white, .post-summary-highlighted .post-image a.watch-video, .sapspage-gallery .sapspage-gallery-selected-holder .selected-title, .wizard-image-button span {
  font-size: 15px;
  background: transparent;
  display: inline-block;
  color: #fff;
  line-height: 1.428571429;
  border: 2px solid #fff;
  padding: 10px 25px;
  font-weight: 700;
  text-shadow: 0 0 3px black;
}
.btn-white-hover, .sapspage-gallery .sapspage-gallery-selected-holder:hover .selected-title, .wizard-image-button:hover span, .btn-white:hover, .post-summary-highlighted .post-image a.watch-video:hover, .sapspage-gallery .sapspage-gallery-selected-holder .selected-title:hover, .wizard-image-button span:hover {
  background: #3db5e6;
  border-color: #3db5e6;
  color: #fff;
  text-shadow: none !important;
}
.btn-black, .Security form input[type="submit"] {
  font-size: 15px;
  display: inline-block;
  color: #000 !important;
  border: 1px solid #000;
  padding: 10px 25px;
  font-weight: 700;
}
.btn-black:hover, .Security form input[type="submit"]:hover {
  background: #3db5e6;
  border-color: #3db5e6;
  color: #fff !important;
  text-shadow: none !important;
}
.btn-gray {
  display: inline-block;
  color: #828282;
  border: 1px solid #828282;
  padding: 10px 25px;
  font-weight: 700;
}
.btn-gray:hover {
  background: #3db5e6;
  color: #fff;
  text-shadow: none !important;
}
.select-input, #gallery_category_select, #gallery_album_select, #blog_category_select {
  border: 1px silver solid;
  line-height: 32px;
  font-size: 15px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 0 40px 0 8px;
  position: relative;
  background: url(/_resources/themes/sapsdealers/img/select-arrow.png) no-repeat 100% center;
}
.btn-hoverblue:hover {
  border-color: #3db5e6 !important;
  background: #3db5e6 !important;
}
.btn-fullwidth {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  margin-bottom: 10px;
}
.btn-series:hover {
  color: #fff;
  background-color: #E37B1A !important;
}
.card-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px;
  padding: 5px 15px 15px 15px;
  min-height: 180px;
  background-color: #3db5e6;
  border-radius: 12px;
  box-shadow: 4px 4px 14px #505e7814;
  color: #fff;
}
.square-of-1 {
  width: 100%;
}
.square-of-2 {
  width: 50%;
}
.square-of-3 {
  width: 33.33%;
}
.square-of-4 {
  width: 25%;
}
.square-of-5 {
  width: 20%;
}
.square-of-6 {
  width: 16.66%;
}
.square-of-7 {
  width: 14.28%;
}
.square-of-8 {
  width: 12.5%;
}
.square-of-9 {
  width: 11.11%;
}
.square-of-10 {
  width: 10%;
}
.squares-line-container-of-1 {
  height: 100vw;
}
.squares-line-container-of-2 {
  height: 50vw;
}
.squares-line-container-of-3 {
  height: 33.33vw;
}
.squares-line-container-of-4 {
  height: 25vw;
}
.squares-line-container-of-5 {
  height: 20vw;
}
.squares-line-container-of-6 {
  height: 16.66vw;
}
.squares-line-container-of-7 {
  height: 14.28vw;
}
.squares-line-container-of-8 {
  height: 12.5vw;
}
.squares-line-container-of-9 {
  height: 11.11vw;
}
.squares-line-container-of-10 {
  height: 10vw;
}
.squares75-line-container-of-1 {
  height: 75vw;
}
.squares75-line-container-of-2 {
  height: 37.5vw;
}
.squares75-line-container-of-3 {
  height: 24.9975vw;
}
.squares75-line-container-of-4 {
  height: 18.75vw;
}
.squares75-line-container-of-5 {
  height: 15vw;
}
.squares75-line-container-of-6 {
  height: 12.495vw;
}
.squares75-line-container-of-7 {
  height: 10.71vw;
}
.squares75-line-container-of-8 {
  height: 9.375vw;
}
.squares75-line-container-of-9 {
  height: 8.3325vw;
}
.squares75-line-container-of-10 {
  height: 7.5vw;
}
.square, .square75 {
  position: relative;
  display: inline-block;
}
.square:after, .square75:after {
  content: "";
  display: block;
}
.square .square-content, .square75 .square-content {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.squares-container-2 .square, .squares-container-2 .square75 {
  width: 50%;
}
.squares-container-2 .square:nth-last-child(2):nth-child(odd), .squares-container-2 .square75:nth-last-child(2):nth-child(odd) {
  width: 100%;
}
.square:after {
  padding-bottom: 100%;
}
.square75:after {
  padding-bottom: 75%;
}
/************************************/
/*! Full screen Image Design */
/************************************/
.slide-container_alt {
  position: relative;
  height: 100%;
}
.slide-container-inner, .video-overlay-content-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  z-index: 100;
  text-align: center;
  bottom: 0;
  width: 100%;
  right: 0;
  padding: 0 10px;
}
.slide-container-inner.centered, .video-overlay-content-wrapper.centered {
  top: 76px;
  align-items: center;
}
.slide-container-inner.top, .video-overlay-content-wrapper.top {
  top: 100px;
}
@media only screen and (max-width: 966px) {
  .slide-container-inner.top, .slide-container-inner.centered, .video-overlay-content-wrapper.top, .video-overlay-content-wrapper.centered {
    top: 47px;
  }
}
.slide-container-inner.bottom, .video-overlay-content-wrapper.bottom {
  bottom: 50px;
}
@media only screen and (max-width: 966px) {
  .slide-container-inner.bottom, .video-overlay-content-wrapper.bottom {
    bottom: 0;
  }
}
.alt_design {
  height: 780px;
  width: 100%;
  margin-top: 60px;
  max-height: 85vh;
}
.alt_design.Halfling {
  height: 250px;
  width: 100%;
}
.alt_design.Mini {
  height: 300px;
  width: 100%;
}
.alt_design.Custom {
  height: 400px;
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .alt_design.StandardFlex {
    height: 900px;
  }
}
@media only screen and (max-width: 966px) {
  .alt_design {
    max-height: none;
    margin-top: 130px;
    height: 85vh;
  }
}
@media only screen and (max-width: 766px) {
  .alt_design {
    margin-top: 0px;
    height: 100vh;
  }
}
.alt_design .banner_overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.alt_design, .video-overlay-content {
  /* typography */
}
.alt_design p, .alt_design h1, .alt_design h2, .alt_design h3, .alt_design h4, .alt_design h5, .alt_design h6, .alt_design .slide-header, .video-overlay-content p, .video-overlay-content h1, .video-overlay-content h2, .video-overlay-content h3, .video-overlay-content h4, .video-overlay-content h5, .video-overlay-content h6, .video-overlay-content .slide-header {
  color: #fff;
  font-weight: normal;
}
.alt_design h1, .alt_design h2, .alt_design h3, .alt_design h4, .alt_design h5, .alt_design h6, .video-overlay-content h1, .video-overlay-content h2, .video-overlay-content h3, .video-overlay-content h4, .video-overlay-content h5, .video-overlay-content h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.alt_design h1, .alt_design .slide-header, .alt_design h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
  font-size: 40px;
  line-height: 1em;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1260px) {
  .alt_design h1, .alt_design .slide-header, .alt_design h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 967px) and (max-width: 1199px) {
  .alt_design h1, .alt_design .slide-header, .alt_design h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
    max-width: 970px;
  }
}
@media only screen and (max-width: 966px) {
  .alt_design h1, .alt_design .slide-header, .alt_design h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
    max-width: 750px;
  }
}
.alt_design h3, .video-overlay-content h3 {
  font-size: 25px;
}
@media only screen and (max-width: 966px) {
  .alt_design h3, .video-overlay-content h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 766px) {
  .alt_design h3, .video-overlay-content h3 {
    font-size: 17px;
  }
}
.alt_design h4, .alt_design h5, .alt_design h6, .alt_design p, .video-overlay-content h4, .video-overlay-content h5, .video-overlay-content h6, .video-overlay-content p {
  font-size: 18px;
}
@media only screen and (min-width: 767px) {
  .alt_design a, .video-overlay-content a {
    margin-top: 45px;
  }
}
.alt_design_widgets {
  height: 780px;
  width: 100%;
  padding-top: 78px;
  max-height: 85vh;
}
.alt_design_widgets.Halfling {
  height: 250px;
  width: 100%;
  padding-top: 78px;
}
.alt_design_widgets.Mini {
  height: 500px;
  width: 100%;
  padding-top: 40px;
}
@media only screen and (min-width: 1400px) {
  .alt_design_widgets.StandardFlex {
    height: 900px;
  }
}
@media only screen and (max-width: 966px) {
  .alt_design_widgets {
    max-height: none;
    height: 400px;
  }
}
.alt_design_widgets .banner_overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.alt_design_widgets, .video-overlay-content {
  /* typography */
}
.alt_design_widgets p, .alt_design_widgets h1, .alt_design_widgets h2, .alt_design_widgets h3, .alt_design_widgets h4, .alt_design_widgets h5, .alt_design_widgets h6, .alt_design_widgets .slide-header, .video-overlay-content p, .video-overlay-content h1, .video-overlay-content h2, .video-overlay-content h3, .video-overlay-content h4, .video-overlay-content h5, .video-overlay-content h6, .video-overlay-content .slide-header {
  color: #fff;
  font-weight: normal;
}
.alt_design_widgets h1, .alt_design_widgets h2, .alt_design_widgets h3, .alt_design_widgets h4, .alt_design_widgets h5, .alt_design_widgets h6, .video-overlay-content h1, .video-overlay-content h2, .video-overlay-content h3, .video-overlay-content h4, .video-overlay-content h5, .video-overlay-content h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.alt_design_widgets h1, .alt_design_widgets .slide-header, .alt_design_widgets h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
  font-size: 40px;
  line-height: 1em;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1260px) {
  .alt_design_widgets h1, .alt_design_widgets .slide-header, .alt_design_widgets h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 967px) and (max-width: 1199px) {
  .alt_design_widgets h1, .alt_design_widgets .slide-header, .alt_design_widgets h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
    max-width: 970px;
  }
}
@media only screen and (max-width: 966px) {
  .alt_design_widgets h1, .alt_design_widgets .slide-header, .alt_design_widgets h2, .video-overlay-content h1, .video-overlay-content .slide-header, .video-overlay-content h2 {
    max-width: 750px;
  }
}
.alt_design_widgets h3, .video-overlay-content h3 {
  font-size: 25px;
}
@media only screen and (max-width: 966px) {
  .alt_design_widgets h3, .video-overlay-content h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 766px) {
  .alt_design_widgets h3, .video-overlay-content h3 {
    font-size: 17px;
  }
}
.alt_design_widgets h4, .alt_design_widgets h5, .alt_design_widgets h6, .alt_design_widgets p, .video-overlay-content h4, .video-overlay-content h5, .video-overlay-content h6, .video-overlay-content p {
  font-size: 18px;
}
@media only screen and (min-width: 767px) {
  .alt_design_widgets a, .video-overlay-content a {
    margin-top: 45px;
  }
}
/*******************/
/*! Header Styles  */
/*******************/
header {
  position: relative;
  z-index: 400;
  width: 100%;
}
@media only screen and (max-width: 766px) {
  .header-top {
    display: none;
  }
}
.logo-phone {
  display: none;
}
@media only screen and (max-width: 766px) {
  .logo-phone {
    display: block;
    font-size: 30px;
    position: absolute;
    right: 0px;
    top: auto;
    color: white;
  }
}
.header-top-row {
  padding: 10px;
  padding-top: 0px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 966px) {
  .header-top-row {
    justify-content: center;
  }
}
.header-top-row .header-top-row__item {
  padding-top: 10px;
  padding-right: 10px;
}
.header-top-row a {
  color: white;
}
.header-top-row a:not(.btn-orange):hover {
  font-weight: bold;
}
.header-top-row-image {
  padding-top: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  position: absolute;
}
@media only screen and (max-width: 966px) {
  .header-top-row-image {
    position: relative;
    width: auto;
    padding-right: 10px;
    width: 100%;
    transform: none;
    left: 0px;
    top: 0px;
  }
}
.banner-spacer {
  height: 154px;
  clear: both;
}
@media only screen and (max-width: 966px) {
  .banner-spacer {
    height: 290px;
  }
}
@media only screen and (max-width: 966px) {
  .logo_block {
    display: flex;
    align-items: center;
  }
  .logo_block #menu-button {
    position: absolute;
    top: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 48px;
    left: -14px;
    padding-left: 14px;
    padding-right: 14px;
    z-index: 1;
  }
  .logo_block .mobile-header-icons {
    position: absolute;
    right: 0px;
  }
}
@media only screen and (max-width: 966px) {
  .logo_block p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 766px) {
  .logo_block p {
    line-height: 1.1;
  }
}
.navigation_head {
  width: 100%;
  background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.3));
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}
.navigation_head.sticky {
  position: fixed;
  top: 0;
}
.navigation_head.nav-open {
  box-shadow: none;
}
#contentArea.stickypadding {
  padding-top: 80px;
}
.mainlogo {
  background: url(/_resources/themes/sapsdealers/img/sapphire-spas-logo2-w.png) no-repeat;
  /* background: url(/_resources/themes/sapsdealers/img/sapphire-spas-logo2-w.png) no-repeat; */
  display: inline-block;
  height: 70px;
  width: 220px;
  background-size: 100%;
  -ms-behavior: url(/_resources/themes/sapsdealers/js/assets/backgroundsize.min.htc);
  text-indent: -9999px;
  /* margin:10px 0 0; */
  background-position: center;
  max-width: 110%;
}
@media only screen and (max-width: 766px) {
  .mainlogo {
    margin: 10px auto 0;
  }
}
.mainlogo h1 {
  margin: 0;
  padding: 0;
}
.mainlogo:hover {
  text-decoration: none;
}
.radio {
  margin-bottom: 0px;
}
.number {
  /* background:url(/_resources/themes/sapsdealers/img/phone.png) 0 no-repeat; */
  padding-right: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 200;
}
.number :hover {
  color: #3db6e5;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .number span {
    display: none;
  }
}
@media only screen and (max-width: 966px) {
  .number {
    text-decoration: none;
  }
}
#invoke_search {
  display: inline-block;
  text-decoration: none;
  font-weight: 200;
  padding-right: 8px;
}
#mainnav #invoke_search {
  padding: 0 0.7em;
  line-height: 67px;
  font-size: 17px;
}
#invoke_search:hover {
  color: #e37b1a;
}
#sticky-header-sticky-wrapper {
  height: auto !important;
}
#sticky-header {
  top: 0;
  z-index: 400;
  width: 100%;
  position: fixed;
}
@media (max-width: 767px) {
  #sticky-header, #sticky-header-sticky-wrapper {
    max-height: 100%;
    overflow: auto;
    /* border: 1px solid red; */
    top: 0;
  }
}
li[data-mega].open:after {
  display: block;
  width: 25px;
  height: 16px;
  z-index: 1;
  bottom: -1px;
  position: absolute;
  left: 50%;
  margin-left: -13px;
  background: url(/_resources/themes/sapsdealers/img/menuarr.png) no-repeat;
  content: " ";
}
.head_details {
  white-space: nowrap;
  /* margin-top: 6px; */
  text-align: center;
  color: #fff;
  /* min-height: 70px; */
  font-size: 1.2em;
  float: right;
}
.head_details.desktop-head_details {
  float: none;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  .head_details.two-lines {
    line-height: 36px;
  }
}
.head_details.two-lines .first-line {
  line-height: 100%;
  margin-top: 13px;
  font-size: 17px;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .head_details.two-lines .first-line {
    display: block;
  }
}
@media only screen and (max-width: 966px) {
  .head_details {
    margin-top: 0;
    line-height: 45px;
  }
  .head_details + .head_details {
    right: 50px;
  }
}
@media only screen and (min-width: 767px) {
  #mainnav .sm-main {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
#mainnav .sm-main li {
  text-transform: uppercase;
}
#mainnav .sm-main li a .link {
  font-weight: 500;
}
#mainnav .sm-main::after {
  content: none;
}
#mainnav .new-main-menu {
  list-style: none;
}
@media only screen and (min-width: 767px) {
  #mainnav .new-main-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
/*******************/
/*! Mega Menus  */
/*******************/
.megamenus {
  padding: 0;
  display: block;
  position: fixed;
  width: 100%;
  z-index: 350;
  text-align: center;
  top: 76px;
  background: #ebebeb;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.6);
}
.megamenus.sticky {
  position: fixed;
}
.megamenu, .megamenu-block {
  background: #ebebeb;
  position: absolute;
  width: 100%;
  z-index: 400;
  overflow: hidden;
  display: block;
  transition: 0.5s all ease;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.megamenu.open, .megamenu-block.open {
  visibility: visible;
  opacity: 1;
  transition: 0.5s all ease;
}
.megamenu .container, .megamenu-block .container {
  padding-top: 30px;
}
.megamenu a, .megamenu-block a {
  display: inline-block;
}
.megamenu a.close-btn, .megamenu-block a.close-btn {
  color: #333333;
  right: 0;
  font-size: 20px;
  position: absolute;
}
.megamenu a.close-btn:hover, .megamenu-block a.close-btn:hover {
  color: #2491bd;
}
.megamenu a .link-title, .megamenu-block a .link-title {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 19px;
  padding-bottom: 5px;
}
.megamenu a .link-tagline, .megamenu-block a .link-tagline {
  opacity: 0;
  text-align: left;
  font-size: 13px;
  line-height: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.8) 70%, transparent);
  padding: 15px 5px 5px 5px;
  transition: all 0.2s ease-out;
}
.megamenu .sublinks, .megamenu-block .sublinks {
  display: flex;
  flex-wrap: wrap;
}
.megamenu .sublinks:before, .megamenu-block .sublinks:before {
  content: '';
  display: none;
}
.megamenu .sublinks a, .megamenu .inlinelinks a, .megamenu-block .sublinks a, .megamenu-block .inlinelinks a {
  color: #333333;
  display: block;
  position: relative;
  min-height: 180px;
  box-shadow: 0px 3px 1px -3px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.megamenu .sublinks a:hover, .megamenu .inlinelinks a:hover, .megamenu-block .sublinks a:hover, .megamenu-block .inlinelinks a:hover {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
}
.megamenu .sublinks a:hover .link-tagline, .megamenu .inlinelinks a:hover .link-tagline, .megamenu-block .sublinks a:hover .link-tagline, .megamenu-block .inlinelinks a:hover .link-tagline {
  background: #fff;
  padding: 5px;
  opacity: 1;
}
.megamenu .sublinks a:hover .link-title, .megamenu .inlinelinks a:hover .link-title, .megamenu-block .sublinks a:hover .link-title, .megamenu-block .inlinelinks a:hover .link-title {
  padding-bottom: 0;
}
.megamenu .link-container, .megamenu-block .link-container {
  margin-bottom: 25px;
}
.megamenu .with-image-Left, .megamenu .with-image-Right, .megamenu-block .with-image-Left, .megamenu-block .with-image-Right {
  text-align: left;
}
.megamenu-block {
  height: auto;
  text-align: center;
  position: relative;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  background: transparent;
  box-shadow: none;
}
.mega-container a img {
  margin-bottom: 14px;
}
.mega-container .megamenu-image-Bottom, .mega-container .megamenu-image-Top {
  height: 180px;
  background-position: center center;
}
.mega-container .megamenu-image-Left {
  float: left;
  margin-right: 20px;
}
.mega-container .megamenu-image-Right {
  float: right;
  margin-left: 20px;
}
#megamenuranges .col-30-w {
  width: 30.33333333%;
}
#megamenuranges .col-53-w {
  width: 53%;
}
#megamenuranges-preview .flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#megamenuranges-preview .flex-row [class*='col-'] {
  display: flex;
  flex-direction: column;
}
#megamenuranges-preview .flex-row [class*='col-'] .previewpic {
  margin-bottom: 10px;
  max-width: 100px;
}
#megamenuranges-preview .flex-row [class*='col-'] .previewtext {
  margin-bottom: 10px;
  font-size: 12px;
}
#megamenuranges-preview .flex-row [class*='col-'] .previewlink {
  margin-top: auto;
}
.megamenu-title {
  position: relative;
  color: #333333;
  /* text-transform: uppercase; */
  font-size: 25px;
  margin-bottom: 20px;
}
.megamenu-title a:not(.close-btn) {
  border: 1px solid #000;
  padding: 0 16px;
}
.megamenu-title a:not(.close-btn).has-color {
  border: 1px solid transparent;
}
.megamenu-title a:not(.close-btn).has-color:hover {
  opacity: 0.9;
}
.megamenu-title a:hover {
  border-color: #2491bd;
}
#mega_menu_spacer {
  height: 0;
  width: 100%;
  overflow: hidden;
  transition: ease-out 400ms;
}
/***********************/
/*! Navigation styles  */
/***********************/
#menu-button {
  /* float: left; */
  display: block;
  /* margin-right: 25px; */
  font-size: 1.3em;
  line-height: 2.1em;
  text-decoration: none;
  /* margin-left: -5px; */
  color: black;
  top: 14px;
  left: 5px;
}
#menu-button:hover {
  color: black;
}
#menu-button:hover span {
  color: #3db6e5;
}
.mobile-menu.collapsed {
  display: none;
}
@media only screen and (min-width: 767px) {
  /* hide the button in desktop view */
  /* always show the menu in desktop view */
  #menu-button {
    display: none;
  }
  .mobile-menu.collapsed {
    display: flex;
  }
  .sm-main {
    display: flex;
  }
  .megamenu .sublinks a {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .megamenu .sublinks a:hover {
    transform: translateY(-10px);
  }
  .megamenu .sublinks a:hover .link-title {
    opacity: 1;
  }
  .flex-header {
    display: flex;
    margin-top: 30px;
    padding: 0 0.7em;
  }
}
.header-socials {
  display: flex;
  align-items: center;
}
.header-socials a {
  font-size: 45px;
  padding-left: 5px;
  color: #333333;
}
.header-socials a:hover {
  color: #3db6e5;
}
.made-in-aus {
  position: absolute;
  bottom: 30px;
}
.made-in-aus img {
  height: 100px;
}
.made-in-aus.right {
  right: 60px;
}
.made-in-aus.left {
  left: 30px;
}
.made-in-aus a {
  background: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
}
.made-in-aus a:hover {
  background: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
}
@media only screen and (max-width: 766px) {
  .made-in-aus {
    bottom: 10px;
  }
  .made-in-aus img {
    height: 50px;
  }
  .made-in-aus.right {
    right: 10px;
  }
  .made-in-aus.left {
    left: 10px;
  }
}
.announcement-bar_container {
  background: #3db5e6;
  padding: 15px 0px;
}
.announcement-bar_container .btn-orange:hover {
  background-color: white !important;
  color: #e37b1a !important;
}
.announcement-bar_container .announcement-bar {
  display: none;
}
.announcement-bar_container .announcement-bar a {
  color: white;
}
.announcement-bar_container .announcement-bar a:hover {
  text-decoration-line: underline;
}
.announcement-bar_container .announcement-bar .swiper-slide {
  text-align: left;
  font-size: 18px;
}
@media only screen and (max-width: 766px) {
  .announcement-bar_container .announcement-bar {
    padding-top: 10px;
  }
  .announcement-bar_container a.btn-orange span {
    display: none;
  }
}
.sm-main > li > a {
  min-height: 66px;
  padding-top: 0px;
  line-height: 76px;
}
.sm-main > li > a:hover .link {
  color: #3db5e6;
  font-weight: bold !important;
}
@media only screen and (max-width: 766px) {
  .sm-main > li > a {
    line-height: 40px;
    min-height: 40px;
  }
}
.sm-main > li > a .link {
  margin: 0px;
  margin-top: 3px;
  color: white;
}
.preview-pools-wrapper {
  display: flex;
  align-items: flex-end;
}
.sub-arrow {
  display: none !important;
}
.sm-main a.highlighted span.sub-arrow {
  display: block !important;
  right: 6px;
  left: auto;
  transform: rotate(45deg);
  background: none;
  width: 27px;
  height: 27px;
  font-size: 27px !important;
}
.page-banner-video {
  margin-top: 138px;
}
@media only screen and (max-width: 766px) {
  .page-banner-video {
    margin-top: 81px;
  }
}
.message:not(.validation):not(.required):not(.error) {
  padding: 20px;
  margin: 16px;
  border: 1px solid #000;
  background: #fff;
}
.message.validation, .message.required, .message.error {
  color: #DA4D0A;
}
.message.warning {
  border-color: maroon;
  background: #ffcccc;
}
label.error {
  border-color: maroon;
  background: #ffcccc;
  margin: 0;
  padding: 0 5px;
  display: block;
  border-width: 1px;
  border-style: solid;
}
.Security .otherlinks {
  text-align: center;
  margin-top: 30px;
  text-shadow: #000 0px 0px 3px;
}
.Security .otherlinks a {
  color: #fff;
}
.Security .logoholder {
  text-align: center;
  margin-bottom: 30px;
}
.Security .logoholder img {
  max-width: 400px;
}
.Security .container, .Security .security-message {
  width: 500px;
  padding: 10px;
}
@media (max-width: 767px) {
  .Security .container, .Security .security-message {
    width: auto;
    max-width: 100%;
  }
}
.Security .security-message p {
  padding: 10 !important;
  margin: 0 !important;
}
.Security form {
  padding: 20px;
  background: #fff;
  border: 1px solid #3db5e6;
}
.Security form .form-group input {
  width: 100%;
  border: 1px solid silver;
}
@media (min-width: 767px) {
  .Security form .form-group {
    display: flex;
  }
  .Security form .form-group input {
    width: 80%;
  }
}
.Security form .form-group label {
  flex: 1;
  padding-right: 16px;
  line-height: 28px;
  margin: 0;
}
.Security form .form-group label.left {
  white-space: nowrap;
}
.Security form .field, .Security form .btn-toolbar {
  text-align: center;
}
.Security form .field input[type="checkbox"] {
  float: none;
  display: inline-block;
}
.Security form input[type="submit"] {
  margin-top: 16px;
  margin-bottom: 16px;
}
.Security form .custom-checkbox label {
  display: inline-block;
  width: auto;
  position: relative;
  padding-left: 35px !important;
  margin-left: -35px;
  line-height: 35px;
}
.Security #ForgotPassword a {
  font-size: 12px;
}
.radio, .checkbox {
  display: block;
  min-height: auto;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: unset;
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  float: none;
  margin-left: 0;
}
.field.radio input[type="radio"], .field.radio-inline input[type="radio"], .field.checkbox input[type="checkbox"], .field.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.field.radio, .field.checkbox {
  display: block;
  min-height: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
}
/******************/
/*! Forms Styles  */
/******************/
#contact, #warranty, .form, .userform {
  display: block;
  width: 100%;
  border: 1px solid silver;
  position: relative;
  margin: 5px 0 30px;
  padding: 20px;
  font-size: 12px;
}
input:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  border-color: rgba(0, 0, 0, 0.35);
  outline: 0 none;
}
ul.optionset {
  list-style: none;
  padding-left: 0;
}
ul.optionset input[type="radio"] {
  display: inline !important;
}
.req {
  color: #DA4D0A;
}
.no-p-l {
  padding-left: 0;
}
.no-p-r {
  padding-right: 0;
}
.no-margin-lft {
  margin-left: 0;
}
.radio-inline {
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline > div.radio {
  display: block;
  float: left;
  margin-top: 0px;
}
div.radio input[type="radio"] {
  margin-top: 2px;
}
#contact label, #warranty label, #service_req label, .form label {
  font-size: 14px;
  color: #666;
  font-weight: 300;
}
.form a {
  color: #cf0000;
  font-size: 14px;
  font-weight: 300;
}
.confirmation-field {
  display: none;
}
input[type="radio"], input[type="checkbox"] {
  margin: 3px 0px 0px;
}
.form-control {
  border-radius: 0;
}
.form-group p {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}
.form-group > .form-group {
  margin-bottom: 0;
}
.userformsgroup {
  display: flex;
  padding: 0 !important;
  margin: 0 -15px !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.userformsgroup-row {
  flex: 1;
}
.userformsgroup-row > * {
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  form .col-md-6 {
    padding: 0 !important;
  }
}
@media (max-width: 480px) {
  div.form div.item, div.webform div.item {
    width: 100%;
    padding: 0 0 5px;
  }
}
.custom-checkbox {
  text-align: left;
  display: block;
  position: relative;
  padding-left: 35px !important;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid silver;
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
form[isSending="true"] input[type="submit"] {
  color: transparent;
  text-shadow: none;
  background: #fff url(/_resources/themes/sapsdealers/img/form-loading.gif) center center no-repeat;
  cursor: not-allowed;
}
#BannerContact {
  max-width: 800px;
  width: 100%;
}
#BannerContact .fieldset {
  display: flex;
  flex-flow: column;
}
@media (min-width: 767px) {
  #BannerContact .fieldset {
    flex-flow: row;
  }
}
#BannerContact .fieldset .form-group {
  flex: 1;
  width: auto;
  margin-bottom: 5px;
  padding: 0 5px;
}
#BannerContact .fieldset .form-group input, #BannerContact .fieldset .form-group select {
  height: 40px;
}
#BannerContact .fieldset .form-group select {
  border: 0;
  outline: 1px double #ccc;
  outline-offset: -1px;
}
#BannerContact .btn-toolbar {
  padding: 0 5px;
}
#BannerContact input[type="submit"] {
  display: block;
  width: 100%;
}
.video-section {
  height: 100vw;
  overflow: hidden;
  width: 100%;
  position: relative;
  /* z-index: -1; */
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 0;
}
.video-section.vs-content {
  height: 56.25vw;
}
@media only screen and (min-width: 767px) {
  .video-section {
    max-height: 780px;
  }
}
.video-section .video-overlay-content {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1260px) {
  .video-section .video-overlay-content {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 967px) and (max-width: 1199px) {
  .video-section .video-overlay-content {
    max-width: 970px;
  }
}
@media only screen and (max-width: 966px) {
  .video-section .video-overlay-content {
    max-width: 750px;
  }
}
.video-section .Darken {
  background-color: rgba(60, 60, 60, 0.4);
}
.video-section .pattern-overlay {
  position: relative;
  height: 100%;
}
.video-section .container {
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
}
.video-section h1, .video-section h2, .video-section h3, .video-section h4, .video-section h5, .video-section h6, .video-section p {
  text-align: center;
  color: #fff;
}
.video-section h1 {
  text-shadow: 1px 1px 1px #000;
  -webkit-text-shadow: 1px 1px 1px #000;
  -moz-text-shadow: 1px 1px 1px #000;
}
.video-section h3 {
  font-size: 25px;
  font-weight: lighter;
  margin: 0px auto 15px;
}
.video-section ul {
  text-align: left;
  display: inline-block;
  padding: 0;
}
.video-section .buttonBar {
  display: none;
}
.video-section .bigButton {
  margin-top: 300px;
}
#othertypes .controls {
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  background: black;
}
#othertypes .controls a {
  /* text-transform: uppercase; */
  color: #fff;
  display: inline-block;
  float: left;
  border-radius: 0;
  text-shadow: 0 0 5px #000;
}
#othertypes .controls a img {
  opacity: 0.7;
  transition: linear 200ms;
}
#othertypes .controls a:hover {
  text-decoration: none;
  color: #2491bd;
}
#othertypes .controls a:hover img {
  opacity: 0.5;
}
#othertypes .controls a .filter-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding-top: 9vw;
  text-align: center;
  font-size: 30px;
  transition: linear 200ms;
}
#othertypes .controls a p {
  font-weight: 200;
  font-size: 18px;
  padding-top: 8px;
}
@media only screen and (min-width: 767px) {
  #othertypes .controls a p {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.colourband {
  text-align: center;
}
.colourband .nameband {
  margin: 0;
  text-align: center;
  color: #fff;
  padding: 4px 15px 16px;
  font-size: 4em;
  font-weight: 100;
  line-height: 1;
  text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
  display: inline-block;
  vertical-align: middle;
}
.parameters_lrg {
  /* background: #333; */
  /* margin: 15px 0; */
  text-align: center;
  display: flex;
  vertical-align: middle;
}
.parameters_lrg .icon_inner {
  vertical-align: top;
  text-align: center !important;
  padding: 15px;
  display: inline-block;
  color: #999;
  flex: 1;
}
@media only screen and (max-width: 966px) {
  .parameters_lrg .icon_inner {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 766px) {
  .parameters_lrg .icon_inner {
    width: 48%;
    padding: 5px;
  }
}
.parameters_lrg .icon_inner span {
  display: block;
  line-height: 50px;
}
.parameters_lrg .icon_inner p {
  font-size: 12px;
  margin: 5px 0 0;
  padding: 0;
}
.parameters_lrg .icon_inner img {
  width: 36px;
  height: 36px;
}
.parameters_lrg .icon_inner .fa {
  font-size: 1.5em;
  color: #000;
}
.pool-sub-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 766px) {
  .pool-sub-banner.fallback {
    flex-flow: column;
  }
}
@media only screen and (min-width: 767px) {
  .pool-sub-banner {
    margin-bottom: 100px;
    height: 300px;
    flex-wrap: nowrap;
  }
}
.pool-sub-banner .pool-sub-banner__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}
.pool-sub-banner .pool-sub-banner__left {
  flex: 2;
}
@media only screen and (min-width: 767px) {
  .pool-sub-banner .pool-sub-banner__left .nav-tabs {
    float: right;
    top: 50%;
    position: relative;
    transform: perspective(1px) translateY(-50%);
  }
}
.pool-sub-banner .pool-sub-banner__center {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .pool-sub-banner .pool-sub-banner__center {
    margin-top: -100px;
    width: 500px;
    height: 500px;
  }
}
.pool-sub-banner .pool-sub-banner__center .tab-content {
  position: relative;
  z-index: 150;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
}
.pool-sub-banner .pool-sub-banner__center #spapic0 {
  position: relative;
}
.pool-sub-banner .pool-sub-banner__right {
  flex: 2;
}
@media only screen and (min-width: 767px) {
  .pool-sub-banner .pool-sub-banner__right .pool-sub-banner__right__content {
    top: 50%;
    position: relative;
    transform: perspective(1px) translateY(-50%);
    max-width: 300px;
    min-width: 210px;
  }
}
@media only screen and (max-width: 766px) {
  .pool-sub-banner .pool-sub-banner__right__content {
    display: flex;
  }
  .pool-sub-banner .parameters_lrg {
    display: flex;
    flex: 1;
  }
  .pool-sub-banner .parameters_lrg .icon_inner {
    width: auto;
    flex: 1;
  }
}
.pool-sub-banner .pool-sub-banner__specphotoholder {
  display: inline-block;
  padding: 20px 15px;
}
@media only screen and (min-width: 767px) {
  .pool-sub-banner .pool-sub-banner__specphotoholder {
    padding: 0;
  }
}
.pool-sub-banner .pool-sub-banner__specphotoholder:focus {
  outline: none;
}
.pool-sub-banner .pool-sub-banner__specphoto {
  max-height: 100vw;
}
@media only screen and (min-width: 767px) {
  .pool-sub-banner .pool-sub-banner__specphoto.rotate {
    transform: translate(-50%, -50%) rotate(-90deg);
    top: 50%;
    left: 50%;
    position: absolute;
    transform-origin: center;
    max-height: 52vw;
  }
}
@media only screen and (min-width: 1200px) {
  .pool-sub-banner .pool-sub-banner__specphoto.rotate {
    max-height: 63vw;
  }
}
html:not(.touchevents) .pool-sub-banner.wider .pool-sub-banner__center {
  width: 800px;
}
html:not(.touchevents) .pool-sub-banner.wider .parameters_lrg {
  flex-flow: column;
}
html:not(.touchevents) .pool-sub-banner.wider .parameters_lrg .icon_inner {
  display: flex;
  text-align: left !important;
}
html:not(.touchevents) .pool-sub-banner.wider .parameters_lrg .icon_inner p {
  margin: 0 0 0 20px;
}
html:not(.touchevents) .pool-sub-banner.wider .parameters_lrg .icon_inner .fa {
  width: 30px;
}
.descr-holder {
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (max-width: 966px) {
  .descr-holder {
    padding: 0 15px;
  }
}
.full-descr-img img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.specs-section-holder {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 1199px) {
  .specs-section-holder {
    flex-flow: column;
  }
}
.specs-section-table-wrapper {
  margin-left: 15px;
  margin-right: 15px;
  flex: 2;
}
.specs-section-table-wrapper .table {
  margin: 0;
}
.specs-section-misc-wrapper {
  margin-left: 15px;
  margin-right: 15px;
  flex: 1;
  text-align: center;
  position: relative;
  vertical-align: bottom;
  display: flex;
}
.specs-section-misc-wrapper > div {
  align-self: flex-end;
}
.share-icons {
  font-size: 2em;
  margin-bottom: 20px;
}
.share-icons a {
  margin: 0 10px;
}
table.speclist {
  width: 100%;
  font-size: 14px;
  color: #656565;
}
table.speclist tbody > tr:hover {
  background: #E37B1A;
  color: #fff;
}
table.speclist tbody > tr > td {
  padding: 13px 8px 0 8px;
  vertical-align: bottom;
  border-top: 1px solid #ddd;
  line-height: 1.428571429;
}
table.speclist th.specheading, table.speclist td.specdata {
  text-align: center;
  width: 20%;
  white-space: nowrap;
}
table.speclist thead tr th {
  padding: 13px 8px 0px 8px;
  height: 47px;
}
table.speclist.extreme {
  background: #111;
  color: #ccc;
}
table.speclist.extreme .spec-smartsaver, table.speclist.extreme .spec-extreme {
  display: table-cell !important;
}
table.speclist.extreme th {
  border-color: #333;
}
table.speclist.extreme td {
  border-color: #222;
  color: #aaa;
}
table.speclist.extreme .spec-smartsaver {
  background: #4c4c4c;
  border-color: #5d5d5d !important;
  color: #ffffff;
  text-shadow: none;
}
table.speclist.extreme .spec-extreme {
  background: #3DB5E6;
  border-color: #5bc1ea !important;
  color: #ffffff;
  text-shadow: none;
  font-weight: bold;
  /* white-space: nowrap; */
}
@media only screen and (max-width: 580px) {
  table.speclist {
    font-size: 12px;
  }
  table.speclist tbody td, table.speclist thead th {
    padding-left: 4px;
    padding-right: 4px;
  }
  table.speclist th.specheading, table.speclist td.specdata {
    white-space: normal;
  }
}
/**
    Best selling spas
**/
.best-selling {
  padding: 25px 0;
  background-color: #333333;
  color: #fff;
}
.best-selling * {
  color: #fff;
}
.best-selling .row > * {
  text-align: center;
}
.best-selling h4 {
  font-size: 25px;
  /* text-transform: uppercase; */
  font-weight: 200;
  margin: 0 0 25px 0;
}
.best-selling .type-title {
  /* text-transform:uppercase; */
  margin-bottom: 20px;
  font-size: 20px;
}
.best-selling .learn-more {
  background: #444444;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 19px;
  line-height: 40px;
  margin-top: 23px;
}
.best-selling a:hover .learn-more {
  background-color: #4bacea;
}
.best-selling a.spa-item {
  margin-bottom: 0;
}
/************************************/
/*! Spas for Sale Styles*/
/************************************/
.sale-filter {
  font-size: 18px;
}
.sale-filter .filter-anchor:not(:last-child)::after {
  content: ",";
  color: #000;
}
.sale-item-wrapper {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.sale-item-data h3 {
  margin-top: 0px;
  font-size: 13px;
  text-align: center;
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 6px 2px;
  background: #d1d1d1;
  font-weight: bold;
}
.sale-item-data p {
  font-size: 13px;
  font-weight: bold;
}
.sale-item-data small {
  font-size: 12px;
}
.sale-item-image img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.sale-item-savings p {
  color: #e63e3e;
}
.sale-item {
  /* border: 1px solid red; */
  margin-bottom: 30px;
  background: #eee;
  /* padding: 10px; */
  text-align: center;
}
.sale-item .pad {
  padding: 10px;
  position: relative;
}
.sale-item .spa-cover {
  padding: 10px;
  min-height: 0;
  /* background: #fff; */
  display: block;
  /* margin: 15px; */
}
.sale-item h3 {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 6px 2px;
  background: #BFBFBF;
  font-weight: bold;
}
.sale-item h3 .fa {
  color: #5D5D5D;
}
.sale-item .location {
  /* margin-bottom: 15px; */
  /* text-align: center; */
  /* background: #f8f8f8; */
  /* padding-bottom: 15px; */
  /* position: relative; */
  background: #5D5D5D;
  color: #E2E2E2;
}
.sale-item .photo {
  background: #fff;
  padding: 0;
  margin: 15px;
  position: relative;
}
.sale-item .photo a {
  display: block;
}
.sale-item .photo img {
  /* max-width: 100%; */
  width: 100%;
  /* position: absolute; */
  /* top: 0; */
  /* height: 100%; */
}
.sale-item .aux-pics {
  margin-bottom: 15px;
}
.sale-item .aux-pics a {
  display: inline-block;
  max-width: 30%;
  overflow: hidden;
}
.sale-item .spa-colour, .sale-item .cabinet-colour, .sale-item .spa-cover {
  font-size: 14px;
}
.sale-item .spa-colour img, .sale-item .spa-cover img, .sale-item .cabinet-colour img {
  width: 80px;
  border: 5px solid #fff;
}
.sale-item .left-col {
  float: left;
  width: 50%;
}
.sale-item .left-col.with-cabinet {
  width: 33.33%;
  margin-left: 0;
  float: left;
}
.sale-item .right-col {
  width: 50%;
  margin-left: 50%;
}
.sale-item .right-col.with-cabinet {
  width: 33.33%;
  margin-left: 0;
  float: left;
}
.sale-item .mid-col {
  width: 33.33%;
  margin-left: 0;
  float: left;
}
.sale-item .similar {
  font-size: 12px;
  color: #E37B1A;
}
.sale-item .similar span {
  font-size: 1.4em;
}
.sale-item div.save {
  margin: 10px;
  font-size: 30px;
  font-weight: 100;
}
.sale-item .sold {
  background: rgba(210, 210, 33, 0.85);
  color: #000;
  position: absolute;
  width: 80%;
  top: 50%;
  left: 10%;
  margin-top: -20px;
  font-size: 1.5em;
  /* transform: rotate(-5deg); */
  font-weight: 600;
}
.sale-item .photo .sold {
  width: 100%;
  left: 0;
}
.sale-title {
  background: #000;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  margin: 0 !important;
  line-height: 36px;
}
.sale-title span {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
p.saleprice {
  font-size: 1.6em;
  line-height: 100%;
  margin: 0;
}
p.save {
  color: #E37B1A;
  margin-bottom: 0;
}
.grid-item {
  margin-right: -1px;
}
@media (max-width: 767px) {
  .grid-item {
    width: 100%;
  }
  .sale-item {
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .sale-item .sale-item-image, .sale-item .sale-item-descr {
    width: 50%;
    float: left;
  }
  .sale-item .photo {
    height: auto;
  }
  .sale-item-wrapper {
    border: 1px solid #f0f0f0;
  }
}
@media (max-width: 480px) {
  .sale-item-wrapper {
    border: 1px solid #f0f0f0;
  }
  .sale-item .sale-item-image img {
    padding: 20px 40px;
  }
  .sale-item .sale-item-image, .sale-item .sale-item-descr {
    width: 100%;
    float: none;
  }
}
.spa_gallery_wrapper {
  padding: 0 0 25px 0;
  overflow: hidden;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#f7f7f7));
  background: linear-gradient(90deg, #fff 0%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f7f7f7",GradientType=1);
}
.spa_gallery_wrapper + .spa_gallery_wrapper {
  padding-top: 0px;
}
.spa_gallery_wrapper h1, .spa_gallery_wrapper h2, .spa_gallery_wrapper h3, .spa_gallery_wrapper h4, .spa_gallery_wrapper h5, .spa_gallery_wrapper h6 {
  text-align: center;
  margin-bottom: 20px;
}
.spa_gallery_wrapper .tns-ovh {
  overflow: visible;
}
.spa_gallery_wrapper .tns-controls {
  pointer-events: none;
  outline: none;
  width: 94%;
  position: absolute;
  z-index: 10;
  left: 3%;
  top: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 767px) {
  .spa_gallery_wrapper .tns-controls {
    width: 90%;
    left: 5%;
  }
}
@media only screen and (min-width: 1200px) {
  .spa_gallery_wrapper .tns-controls {
    left: 12%;
    width: 76%;
  }
}
.spa_gallery_wrapper .tns-controls button {
  pointer-events: all;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5em;
  outline: none;
  text-shadow: 0 0 10px black;
}
.spa_gallery_wrapper .tns-controls button[disabled] {
  opacity: 0.2;
}
.spa_gallery_wrapper .tns-controls .prev, .spa_gallery_wrapper .tns-controls .next {
  text-shadow: 1px 1px 2px rgba(70, 70, 70, 0.4), 0px 0px 12px rgba(70, 70, 70, 0.5);
}
.spa_gallery_wrapper .container {
  position: relative;
}
.spa_gallery_wrapper .spa_gallery_container {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 767px) and (max-width: 966px) {
  .spa_gallery_wrapper .spa_gallery_container {
    width: 520px;
  }
}
@media only screen and (min-width: 967px) {
  .spa_gallery_wrapper .spa_gallery_container {
    width: 945px;
  }
}
.spa_gallery_wrapper .swiper-button-disabled {
  display: none !important;
}
.himg-fill-square {
  height: 100%;
  width: auto;
  max-width: none;
}
#gallery_category_select {
  margin-bottom: 32px;
}
#gallery_album_select {
  margin-bottom: 32px;
  max-width: 200px;
}
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
}
.photo-gallery .photo-gallery-item-holder {
  padding: 2px;
  flex-grow: 1;
  width: 50%;
}
@media only screen and (min-width: 767px) and (max-width: 966px) {
  .photo-gallery .photo-gallery-item-holder {
    padding-bottom: 3px;
    padding-right: 1.5px;
    padding-left: 1.5px;
    flex-grow: 0;
    width: 33%;
  }
}
@media only screen and (min-width: 967px) {
  .photo-gallery .photo-gallery-item-holder {
    padding: 0px;
    padding-bottom: 3px;
    padding-right: 1.5px;
    padding-left: 1.5px;
    width: 33%;
    flex-grow: 0;
  }
}
.photo-gallery-item {
  display: block;
  background: silver;
  position: relative;
  overflow: hidden;
}
.photo-gallery-item .gal-idx {
  float: left;
  text-shadow: 0 0 5px black;
  color: #fff;
  font-size: 14px;
}
.photo-gallery-item .gal-pic-num {
  float: right;
  text-shadow: 0 0 5px black;
  color: #fff;
  font-size: 14px;
}
.photo-gallery-item .text-area {
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, black, transparent);
  color: #fff;
  left: 0;
  right: 0;
  padding: 30px 10px 10px 10px;
  line-height: 100%;
  margin: 0;
  font-weight: 400;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.photo-gallery-item .hints-area {
  position: absolute;
  top: 0;
  font-weight: 400;
  left: 0;
  right: 0;
  padding: 10px 10px 30px 10px;
  background: linear-gradient(180deg, black, transparent);
}
@media only screen and (min-width: 967px) {
  .photo-gallery-item .text-area {
    bottom: 0px;
  }
}
.photo-gallery-item .lazy {
  opacity: 0;
}
.photo-gallery-item .lazy:not(.initial) {
  transition: opacity 500ms;
}
.photo-gallery-item .lazy.initial, .photo-gallery-item .lazy.loaded, .photo-gallery-item .lazy.error {
  opacity: 1;
}
.photo-gallery-item .lazy:not([src]) {
  visibility: hidden;
}
.photo-gallery-item .slideover {
  background: rgba(25, 25, 25, 0.8);
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  position: absolute;
  z-index: 3;
  padding: 20px;
  font-size: 15px;
  text-align: center;
  color: #fff;
}
.photo-gallery-item .slideover h5 {
  color: inherit;
  font-weight: 100;
  font-size: 2em;
}
.photo-gallery-item:hover .slideover {
  top: 0;
}
.photo-gallery-item:hover .text-area {
  opacity: 1;
}
.photo-gallery-item .view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.photo-gallery-item .view-all span {
  color: #000;
  font-size: 1.6em;
}
.PhotoGalleryPage .photo-gallery-item .text-area, .PhotoGalleryPost .photo-gallery-item .text-area, .IllustratedLinksPage .photo-gallery-item .text-area {
  opacity: 1;
}
.IllustratedLinksPage .photo-gallery-item {
  margin-bottom: 15px;
}
.photo-gallery-plate {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 501;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-gallery-plate .pgic-media-holder {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: none;
}
.photo-gallery-plate .photo-gallery-close {
  text-align: right;
}
.photo-gallery-plate .photo-gallery-close a {
  color: #333;
}
@media only screen and (min-width: 967px) {
  .photo-gallery-plate .photo-gallery-close {
    display: none;
  }
}
.photo-gallery-plate .photo-gallery-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -2;
}
.photo-gallery-plate .photo-gallery-internal-prev, .photo-gallery-plate .photo-gallery-internal-next {
  position: absolute;
  z-index: 4;
  width: 40px;
  color: white;
  background: transparent;
  text-shadow: 0 0 3px #000;
  top: 0;
  bottom: 0;
  left: 0;
  align-content: middle;
  border: 0;
}
.photo-gallery-plate .photo-gallery-internal-next {
  left: auto;
  right: 0;
}
.photo-gallery-plate .photo-gallery-buttons {
  display: flex;
  border-top: 1px solid silver;
}
.photo-gallery-plate .photo-gallery-buttons button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0;
}
.photo-gallery-plate .photo-gallery-buttons button span {
  display: inline-block;
  line-height: 44px;
  padding: 0 10px;
}
.photo-gallery-plate .photo-gallery-buttons button i {
  vertical-align: bottom;
  font-weight: 900;
}
@media only screen and (min-width: 967px) {
  .photo-gallery-plate .photo-gallery-buttons {
    position: absolute;
    display: block;
    left: -50px;
    right: -50px;
    border: 0;
    top: 50%;
    margin-top: -25px;
  }
  .photo-gallery-plate .photo-gallery-buttons button {
    position: absolute;
    color: white;
    overflow: hidden;
    width: 50px;
    height: 50px;
  }
  .photo-gallery-plate .photo-gallery-buttons button:first-child {
    left: 0px;
  }
  .photo-gallery-plate .photo-gallery-buttons button:last-child {
    right: 0px;
  }
  .photo-gallery-plate .photo-gallery-buttons button span {
    display: none;
  }
}
.photo-gallery-plate .photo-gallery-display {
  position: relative;
  width: 1000px;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (min-width: 967px) {
  .photo-gallery-plate .photo-gallery-display {
    flex-direction: row;
    height: auto;
  }
}
@media only screen and (min-width: 967px) {
  .photo-gallery-plate .photo-gallery-display .photo-gallery-image-container {
    flex: 3;
  }
}
.photo-gallery-plate .photo-gallery-display .photo-gallery-image-container img {
  max-height: 100%;
}
.photo-gallery-plate .photo-gallery-display .photo-gallery-text-container {
  padding: 0 16px 16px 16px;
  flex: 1;
}
.photo-gallery-plate .photo-gallery-display .photo-gallery-text-container .photo-gallery-close {
  display: none;
}
@media only screen and (min-width: 967px) {
  .photo-gallery-plate .photo-gallery-display .photo-gallery-text-container .photo-gallery-close {
    display: block;
  }
}
.photo-gallery-plate .photo-gallery-display .photo-gallery-text-container .photo-gallery-item-title {
  font-size: 28px;
  line-height: 28px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 967px) {
  .photo-gallery-plate .photo-gallery-display .photo-gallery-text-container .photo-gallery-item-title {
    margin-top: 0;
  }
}
.swiper-container .slick-next {
  right: 25px;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.swiper-container .slick-prev {
  left: 25px;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.swiper-container .slick-next::before, .swiper-container .slick-prev::before {
  font-size: 40px;
  color: #3db5e6;
}
.swiper-container .photo-gallery-item {
  height: 100%;
}
.swiper-container .photo-gallery-item img {
  height: 100%;
}
.gallery-row h3 {
  text-align: left !important;
  /* text-transform: uppercase !important; */
  font-size: 14px !important;
  padding-bottom: 5px;
  border-bottom: 1px solid #e6e6e6;
}
.gallery-row li p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  text-align: center;
}
.gallery-row li hr {
  display: block;
  width: 60%;
}
.sliding-pics-plate {
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}
@media only screen and (max-width: 766px) {
  .sliding-pics-plate {
    padding: 80px 0px;
  }
}
.sliding-pics-plate .content {
  position: relative;
  padding: 132px 32px 32px 32px;
  z-index: 3;
  font-size: 18px;
  text-align: center;
  opacity: 0.5;
  transition: all 1s ease-out;
}
@media only screen and (min-width: 767px) {
  .sliding-pics-plate .content {
    width: 30%;
    margin: 0 auto;
  }
}
.sliding-pics-plate .content a {
  margin-top: 16px;
  text-shadow: none;
}
.sliding-pics-plate .content.in-viewport {
  opacity: 1;
  padding-top: 0;
}
.sliding-pics-plate .left-image-holder {
  z-index: 1;
  left: 50%;
}
@media only screen and (max-width: 766px) {
  .sliding-pics-plate .left-image-holder.in-viewport {
    animation: 1s ease-out 500ms 1 both running sliding_pic_left_sml;
  }
}
@media only screen and (min-width: 767px) {
  .sliding-pics-plate .left-image-holder.in-viewport {
    animation: 1s ease-out 500ms 1 both running sliding_pic_left;
  }
}
.sliding-pics-plate .right-image-holder {
  z-index: 2;
  right: 50%;
}
@media only screen and (max-width: 766px) {
  .sliding-pics-plate .right-image-holder.in-viewport {
    animation: 1s ease-out 500ms 1 both running sliding_pic_right_sml;
  }
}
@media only screen and (min-width: 767px) {
  .sliding-pics-plate .right-image-holder.in-viewport {
    animation: 1s ease-out 500ms 1 both running sliding_pic_right;
  }
}
.sliding-pics-plate .left-image-holder, .sliding-pics-plate .right-image-holder {
  position: absolute;
}
.sliding-pics-plate .left-image-holder img, .sliding-pics-plate .right-image-holder img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 766px) {
  .sliding-pics-plate .left-image-holder, .sliding-pics-plate .right-image-holder {
    width: 80%;
  }
}
@media only screen and (min-width: 767px) {
  .sliding-pics-plate .left-image-holder, .sliding-pics-plate .right-image-holder {
    height: 80%;
    transform: translateY(-50%);
    top: 50%;
    max-width: 20%;
  }
}
@media only screen and (max-width: 766px) {
  .sliding-pics-plate .left-image-holder {
    left: 100%;
    bottom: calc(100% - 80px);
  }
  .sliding-pics-plate .right-image-holder {
    right: 100%;
    top: calc(100% - 80px);
  }
}
@-webkit-keyframes sliding_pic_left {
  0% {
    left: 50%;
  }
  100% {
    left: 5%;
  }
}
@keyframes sliding_pic_left {
  0% {
    left: 50%;
  }
  100% {
    left: 5%;
  }
}
@-webkit-keyframes sliding_pic_right {
  0% {
    right: 50%;
  }
  100% {
    right: 5%;
  }
}
@keyframes sliding_pic_right {
  0% {
    right: 50%;
  }
  100% {
    right: 5%;
  }
}
@-webkit-keyframes sliding_pic_left_sml {
  0% {
    left: 100%;
  }
  100% {
    left: -40%;
  }
}
@keyframes sliding_pic_left_sml {
  0% {
    left: 100%;
  }
  100% {
    left: -40%;
  }
}
@-webkit-keyframes sliding_pic_right_sml {
  0% {
    right: 100%;
  }
  100% {
    right: -40%;
  }
}
@keyframes sliding_pic_right_sml {
  0% {
    right: 100%;
  }
  100% {
    right: -40%;
  }
}
/************************/
/*! USER MANUALS SYLES  */
/************************/
.literature-container {
  display: block;
  box-shadow: 0 0 2px #333;
  padding: 10px;
}
.literature-container a {
  color: #747474;
  text-decoration: none;
}
.literature-container a:hover {
  color: #919191;
  text-decoration: none;
}
.literature-container:hover {
  cursor: pointer;
}
.literature-container .icon {
  margin-right: 5px;
}
.manuals section {
  padding: 20px 0;
}
.support {
  text-align: center;
}
.internal-player {
  height: 100%;
  position: relative;
}
.internal-player video {
  background: transparent;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}
.internal-player video.halign-left {
  left: 0;
}
.internal-player video.halign-center {
  left: 50%;
  transform: translateX(-50%);
}
.internal-player video.halign-right {
  right: 0;
}
.internal-player video.valign-top {
  top: 0;
}
.internal-player video.valign-center {
  top: 50%;
  transform: translateY(-50%);
}
.internal-player video.valign-bottom {
  bottom: 0;
}
.internal-player video.valign-center.halign-center {
  transform: translate(-50%, -50%);
}
.video-iframe, .video iframe, .embed.center iframe, .embed.content-width iframe {
  max-height: 548px;
  height: 548px;
}
.blog-entry .video-iframe, .blog-entry .video iframe, .video .blog-entry iframe, .blog-entry .embed.center iframe, .embed.center .blog-entry iframe, .blog-entry .embed.content-width iframe, .embed.content-width .blog-entry iframe {
  max-height: 394px;
  height: 394px;
}
@media (max-width: 767px) {
  .video-iframe, .video iframe, .embed.center iframe, .embed.content-width iframe {
    max-height: 450px;
    height: 370px;
  }
}
@media (max-width: 480px) {
  .video-iframe, .video iframe, .embed.center iframe, .embed.content-width iframe {
    max-height: 450px;
    height: 215px;
  }
}
.video {
  margin: 40px 0 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .video {
    margin: 20px 0 30px;
  }
}
@media (max-width: 480px) {
  .video h3 {
    font-size: 20px;
  }
}
.video .icon img {
  margin-right: 10px;
  width: 38px;
}
@media (max-width: 580px) {
  .video .icon img {
    width: 28px;
    margin-top: -6px;
    height: 28px;
  }
}
.contentvideo {
  display: block;
  margin: 0 auto;
  width: 854px;
  max-width: 100%;
}
.embed {
  max-width: 100%;
}
.embed.center {
  min-width: 100%;
}
.embed iframe {
  width: 100%;
}
.embed.center iframe, .embed.content-width iframe {
  width: 100%;
}
.flex-video {
  position: relative;
  padding-top: 25px;
  padding-bottom: 67.5%;
  height: 0;
  margin-bottom: 16px;
  overflow: hidden;
  z-index: -1;
}
.flex-video iframe, .flex-video object, .flex-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-video.widescreen {
  padding-bottom: 57.25%;
}
.flex-video.vimeo {
  padding-top: 0;
}
@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .flex-video {
    padding-top: 0;
  }
}
.blocker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.player {
  font-size: 1px;
}
.phone-play {
  font-size: 3em;
}
.no-touchevents .phone-play {
  display: none;
}
.video-container .play-btn {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0.75);
  width: 80px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  border-radius: 8px;
  display: block;
  position: absolute;
}
.video-container .play-btn:before {
  content: "";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #fff;
  left: 32px;
  font-size: 26px;
  padding-right: 0.5em;
  position: absolute;
  top: 8px;
}
.play-overlay {
  position: relative;
}
.play-overlay:before {
  content: "";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #fff;
  left: 50%;
  font-size: 5rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 10px black;
  z-index: 1;
}
.saps__models__block__gallerypostpics .play-overlay:before, #salegrid .play-overlay:before {
  font-size: 3rem;
}
.hide-blueprint {
  opacity: 0;
}
.blueprint-dot {
  cursor: pointer;
}
.hidden-rectangle {
  opacity: 0;
  filter: drop-shadow(2px 0 5px grey);
}
/*
    subscription strip
*/
.saps__models__block__subscriptionstrip {
  padding: 25px 0;
  font-size: 15px;
}
.saps__models__block__subscriptionstrip .miniform .block_title {
  margin: 0 0 9px 0;
  font-size: 26px;
  font-weight: 200;
  line-height: 20px;
}
.saps__models__block__subscriptionstrip .miniform input, .saps__models__block__subscriptionstrip .miniform button {
  color: white;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  height: 40px;
  width: 100%;
  margin-top: 6px;
  background: transparent;
  border: 1px solid white;
}
.saps__models__block__subscriptionstrip .miniform input::placeholder {
  color: #666666;
}
.saps__models__block__subscriptionstrip .miniform input[type="text"], .saps__models__block__subscriptionstrip .miniform input[type="email"] {
  background: #222222;
  border: 2px solid transparent;
  padding-left: 10px;
}
.saps__models__block__subscriptionstrip .miniform button:hover {
  background: #fff;
  color: #000;
}
/*************************/
/*! Footer Style Rules   */
/*************************/
footer {
  position: relative;
  background: linear-gradient(#2a2a2a, #222222, #181818);
  color: #999999;
  min-height: 200px;
  padding-bottom: 20px;
  overflow: hidden;
}
footer .footer_container {
  /* width:1024px; */
  margin: 0 auto;
  padding: 20px;
  /* background:#333; */
  /* border-top:6px solid #fff; */
  position: relative;
  /* margin-top:-6px; */
}
footer a {
  padding: 4px 14px;
  font-size: 16px;
  color: #999999;
  display: inline-block;
  text-decoration: none;
  font-weight: 200;
}
footer a:hover, footer a:active {
  text-decoration: none;
  color: #c6c6c6;
}
footer ul {
  padding: 0;
  margin: 0;
  background: none;
  margin: 20px 0 30px;
  text-align: center;
}
footer ul li {
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1;
}
footer ul li:first-child {
  border-left: none;
}
footer ul li:first-child a {
  padding-left: 0;
}
footer ul li:last-child a {
  padding-right: 0;
}
footer .copyright {
  font-size: 11px;
  color: #999999;
  clear: both;
  text-align: center;
  padding: 0 50px 10px;
}
footer .copyright a {
  font-size: 11px;
  /* margin-right: 100px; */
  /* word-wrap: break-word; */
  padding: 0;
  margin: 0;
  display: inline-block;
}
#recaptchabadgeplaceholder {
  position: absolute;
  z-index: 20;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 200ms linear;
}
#recaptchabadgeplaceholder:hover {
  bottom: 0;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footer_container {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .footer_container {
    width: 100%;
    margin: 0 auto;
  }
  .footer_container {
    padding: 20px 25px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  footer ul {
    width: 100%;
  }
}
.socialicons {
  text-align: center;
  font-size: 1.6em;
}
.socialicons .icon {
  background-image: url(/_resources/themes/sapsdealers/img/icons/social-bw.png);
  width: 40px;
  height: 40px;
  display: inline-block;
  background-position-y: 40px;
}
.socialicons .icon.facebook {
  background-position-x: 0;
}
.socialicons .icon.youtube {
  background-position-x: -55px;
}
.socialicons .icon.instagram {
  background-position-x: -110px;
}
.socialicons .icon.twitter {
  background-position-x: -160px;
}
.socialicons .icon:hover {
  background-position-y: 0;
}
.socialicons img {
  vertical-align: unset;
  max-height: 40px;
}
.socialicons .custom-icon {
  display: inline-block;
  margin: 0 6px;
  padding: 0;
}
.socialicons a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.socialicons a:hover.custom-icon {
  opacity: 0.8;
}
/*********************/
/*! BLOG Page Styles  */
/*********************/
#blog_category_select {
  margin-bottom: 32px;
}
.blog-preview {
  margin-bottom: 20px;
}
.blog-preview h3 {
  margin-top: 0;
  padding-top: 0;
}
.publish-date {
  color: #999;
}
.post-summary {
  position: relative;
  max-width: 100%;
  margin: 0 auto 32px auto;
  overflow: hidden;
}
.post-summary a, .post-summary a *, .post-summary__a, .post-summary-highlighted a, .post-summary__a *, .post-summary-highlighted a * {
  color: #333;
}
.post-summary a:hover, .post-summary a:hover *, .post-summary__a:hover, .post-summary-highlighted a:hover, .post-summary__a:hover *, .post-summary-highlighted a:hover * {
  color: #2491bd;
}
.post-summary a.cat, .post-summary__a.cat, .post-summary-highlighted a.cat {
  font-weight: bold;
  color: #2491bd;
}
.post-summary h2, .post-summary__h2, .post-summary-highlighted h2 {
  font-size: 25px;
  margin-top: 0;
  padding-top: 0;
}
.post-summary .post-image {
  width: 100%;
}
.post-summary .post-image img {
  width: 100%;
}
.post-summary .post-teaser {
  z-index: 1;
  background: #f9f8f7;
  padding: 20px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 120px;
}
.post-summary .post-teaser h2 {
  font-size: 18px;
}
.post-summary .post-teaser span {
  font-size: 15px;
  color: #2491bd;
  font-weight: 600;
}
.post-summary .post-teaser .post-teaser__line {
  border-left: 2px solid #707070;
  padding-left: 20px;
}
.post-summary .post-teaser a:hover .post-teaser__line {
  border-color: #2491bd;
}
.post-summary .summary-text {
  display: block;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms ease-out;
}
.post-summary:hover .summary-text {
  padding-top: 16px;
  max-height: 200px;
}
.post-summary-highlighted {
  position: relative;
  border: silver 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 0 auto 32px auto;
  display: flex;
  flex-flow: column;
}
@media only screen and (min-width: 767px) {
  .post-summary-highlighted {
    flex-flow: row;
  }
}
.post-summary-highlighted .post-image {
  position: relative;
}
.post-summary-highlighted .post-image a {
  position: relative;
  display: block;
}
.post-summary-highlighted .post-image a.watch-video {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: perspective(1px) translate(-50%, -50%);
}
.post-summary-highlighted .post-image img {
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .post-summary-highlighted .post-image img {
    width: auto;
  }
}
.post-summary-highlighted .post-teaser {
  flex: 1;
  padding: 16px;
}
.post-summary-highlighted .summary-text {
  display: block;
}
.blog-entry {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.blog-entry article h1, .blog-entry article h2, .blog-entry article h3, .blog-entry article h4, .blog-entry article h5, .blog-entry article h6, .blog-entry article .publish-date {
  text-align: center;
}
.blog-entry article .publish-date {
  margin-bottom: 40px;
}
.blog-entry article .content p {
  font-size: 20px;
}
.blog-entry article .content {
  line-height: 2;
}
.blog-post__header {
  padding-top: 0px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 767px) {
  .blog-post__header {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.blog-post__header h1 {
  color: #707070;
  font-weight: bold;
}
.featured-image {
  height: 450px;
}
.featured-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}
.blog-sidebar-col {
  background: #f2f2f2;
  padding-bottom: 8px;
}
.blog-sidebar-col ul {
  padding: 0;
}
.blog-sidebar-col ul li {
  list-style: none;
  font-size: 14px;
}
.featured-post__banner {
  padding-top: 100px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  color: #fff;
}
.featured-post__banner a, .featured-post__banner .publish-date {
  color: #fff;
}
.featured-post__banner h2 {
  font-size: 35px;
}
.featured-post__banner p {
  font-size: 20px;
}
.featured-post__banner:before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
}
.featured-post__banner * {
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 767px) {
  .featured-post__banner {
    padding-top: 136px;
    padding-bottom: 136px;
  }
}
@media only screen and (min-width: 967px) {
  .featured-post__banner {
    padding-top: 236px;
    padding-bottom: 136px;
  }
}
.Slideform_trigger {
  position: absolute;
  display: block;
  width: 45px;
  height: 150px;
  padding: 0;
  background: #E37B1A;
  cursor: pointer;
  margin-bottom: 25px !important;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
  /* box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.3); */
}
.Slideform_trigger.open {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  right: 320px;
  z-index: 2000;
}
.Slideform_trigger .trigger_text {
  position: absolute;
  top: 57px;
  left: -28px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.Slideform {
  width: 320px;
  position: fixed;
  z-index: 402;
  right: -320px;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.Slideform.open {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  right: 0;
}
.Slideform .modal-content {
  border-radius: 0px;
}
.Slideform_form {
  float: left;
  position: relative;
  width: 320px;
}
#SlideContact {
  display: block;
  width: 100%;
  background: #333333;
  position: relative;
  margin: 5px 0 30px;
  padding: 20px;
  font-size: 12px;
  /* text-align: right; */
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 200;
}
#SlideContact label {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}
#SlideContact .communication-checkbox label {
  display: block;
  line-height: 14px;
  text-transform: none;
}
#SlideContact .form-group {
  margin-bottom: 5px;
  text-align: left;
}
#SlideContact .radio-inline {
  padding-left: 0px;
  margin-right: 5px;
}
#SlideContact form#SlideContact {
  margin-top: 0 !important;
}
.Slideform_trigger_footer {
  display: none;
}
.Slideform_close {
  display: inline-block;
  position: absolute;
  z-index: 210;
  right: 20px;
  font-size: 20px;
  top: 10px;
  cursor: pointer;
}
.Slideform_trigger_gen {
  display: none;
}
@media screen and (max-height: 800px) {
  /*.alt_design{
		height: 350px;
	}*/
  .Slideform.open {
    position: fixed;
  }
}
@media (max-width: 979px) {
  .Slideform {
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0px;
    display: none;
    margin-bottom: 0px;
    transform: none;
    -o-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .Slideform.open {
    display: block;
    width: 100%;
    z-index: 1050;
    top: 0px;
    margin: 0px auto;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
  }
  .Slideform_trigger_footer {
    background: #E37B1A;
    border: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px;
    margin-left: 10px;
    margin-top: 5px;
    display: none;
  }
  .Slideform_trigger {
    display: none !important;
  }
  .Slideform_trigger.open {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    top: inherit;
    position: absolute;
    right: auto;
    top: 0;
  }
  .Slideform_trigger .trigger_text {
    position: relative;
    top: 7px;
    right: auto;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .Slideform_trigger_gen {
    position: fixed;
    display: block;
    top: auto;
    z-index: 280;
    bottom: 0px;
    float: none;
    width: 100%;
    background: #E37B1A;
    text-align: center;
    cursor: pointer;
    color: #fff;
  }
  .Slideform_trigger_gen:hover {
    color: #fff;
    text-decoration: none;
  }
  .Slideform_trigger_gen span {
    line-height: 36px;
  }
  a.Slideform_close {
    display: block;
    width: 100%;
    /* background:#fff; */
    text-align: right;
    position: absolute;
    right: 20px;
    /* padding:10px; */
    top: 10px;
    z-index: 1070;
    width: 25px;
    height: 25px;
    cursor: pointer;
    color: #585858;
    font-size: 2em;
    text-decoration: none;
  }
  a.Slideform_close:hover {
    color: #DA4D0A;
  }
  #SlideContact {
    margin-bottom: 0px;
    padding: 40px 20px 20px 20px;
  }
  #SlideContact label {
    font-size: 12px;
  }
  .Slideform_form {
    float: none;
    margin-top: 0px;
    position: relative;
    width: 100%;
    font-size: 12px;
    height: 100%;
    z-index: 1060;
    overflow-y: scroll;
  }
}
.sapspage-gallery .sapspage-gallery-selected-holder {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 61%;
}
.sapspage-gallery .sapspage-gallery-selected-holder > a {
  position: absolute;
  top: 0;
  left: 0;
}
.sapspage-gallery .sapspage-gallery-selected-holder .selected-title {
  position: absolute;
  text-align: center;
  z-index: 100;
  top: 50%;
  pointer-events: none;
  left: 50%;
  transform: perspective(1px) translate(-50%, -50%);
}
.sapspage-gallery.short .sapspage-gallery-list {
  text-align: center;
}
.sapspage-gallery.short.short .sapspage-gallery-item {
  float: none;
}
.sapspage-gallery-list-holder {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.sapspage-gallery-list-holder .sapspage-gallery-list {
  display: block;
  min-width: 100%;
  height: 100px;
  position: relative;
  left: 0;
  transition: ease-out 250ms;
}
.sapspage-gallery-list-holder .sapspage-gallery-list .sapspage-gallery-item {
  cursor: pointer;
  position: relative;
  display: inline-block;
  float: left;
  border: solid transparent 2px;
}
.sapspage-gallery-list-holder .sapspage-gallery-list .sapspage-gallery-item.selected {
  border: solid #3db5e6 2px;
}
.sapspage-gallery-list-holder .sapspage-gallery-list .sapspage-gallery-item.selected:after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: silver;
  opacity: 0.4;
  content: " ";
}
.sapspage-gallery-footer {
  margin-top: 20px;
  text-align: center;
}
.sapspage-gallery-arrow-left, .sapspage-gallery-arrow-right {
  position: absolute;
  color: #fff;
  bottom: calc(50% - 12px);
  font-size: 30px;
  display: inline-block;
  z-index: 10;
  cursor: pointer;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 22px;
  border-radius: 50%;
  background: #000;
}
.sapspage-gallery-arrow-left:hover, .sapspage-gallery-arrow-right:hover {
  color: #3db5e6;
}
.sapspage-gallery.short .sapspage-gallery-arrow-left, .sapspage-gallery.short .sapspage-gallery-arrow-right {
  display: none;
}
.sapspage-gallery-arrow-left {
  left: 5px;
}
.sapspage-gallery-arrow-right {
  right: 5px;
}
.exploding-spa-items-holder {
  padding-top: 30px;
  padding-bottom: 50px;
}
.swiper-slide .exploding-spa-items-holder {
  padding-top: 30px 10px 50px 10px;
}
.spa-item {
  display: inline-block;
  position: relative;
  text-align: left;
  vertical-align: top;
  color: #333;
  margin: 0 15px 45px 15px;
  padding: 10px;
  font-weight: 200;
  padding: 0px;
}
.spa-item img {
  display: inline-block !important;
}
@media only screen and (max-width: 766px) {
  .spa-item .exploding {
    display: none;
  }
}
@media only screen and (max-width: 766px) {
  .spa-item {
    margin-bottom: 20px;
  }
}
.spa-item.lessmargin {
  margin: 0 10px 45px 10px;
}
.spa-item .main-link {
  color: #333;
  display: block;
}
.spa-item .learn-more {
  line-height: 40px;
  color: #fff;
  text-align: left;
  padding-left: 10px;
  display: none;
  margin-left: -10px;
  margin-right: -10px;
  color: #333;
  border-top: 1px solid white;
  position: relative;
}
.spa-item .learn-more.learn-see, .spa-item .learn-more.learn-wet-test {
  background-repeat: no-repeat;
  background-position: 11px center;
  padding-left: 50px;
}
.spa-item .learn-more.learn-see {
  background-image: url(/_resources/themes/sapsdealers/img/icons/see-icon-1.png);
}
.spa-item .learn-more.learn-wet-test {
  background-image: url(/_resources/themes/sapsdealers/img/icons/spa-test-1.png);
}
.spa-item .learn-more:hover {
  background-color: #4bacea;
  color: #fff;
}
.spa-item .learn-more.learn-wet-test:hover {
  background-image: url(/_resources/themes/sapsdealers/img/icons/spa-test.png);
}
.spa-item .learn-more.learn-see:hover {
  background-image: url(/_resources/themes/sapsdealers/img/icons/see-icon.png);
}
.spa-item a:hover .learn-more {
  background-color: #4bacea;
  color: #fff;
}
.spa-item a:hover .learn-more.learn-wet-test {
  background-image: url(/_resources/themes/sapsdealers/img/icons/spa-test.png);
}
.spa-item a:hover .learn-more.learn-see {
  background-image: url(/_resources/themes/sapsdealers/img/icons/see-icon.png);
}
.spa-item .spa-item-image-holder {
  display: flex;
  min-width: 180px;
}
.spa-item .spa-item-image-holder .stretch {
  width: 100%;
}
.spa-item .spa-item-image-holder table {
  height: 100%;
  width: 100%;
}
.spa-item .spa-item-image-holder table td {
  text-align: center;
  vertical-align: bottom;
}
@media only screen and (max-width: 766px) {
  .spa-item .spa-item-image-holder {
    text-align: center;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 767px) {
  .spa-item .spa-item-image-holder {
    min-height: 180px;
  }
}
.spa-item .spa-item-image-holder img.lazy:not(.loaded) {
  margin-top: 50px;
  margin-bottom: 50px;
}
.spa-item.PlungePool .spa-item-image-holder img.lazy:not(.loaded), .spa-item.SwimSpa .spa-item-image-holder img.lazy:not(.loaded) {
  margin-top: 200px;
  margin-bottom: 200px;
}
.spa-item.explode .spa-item-image-holder img {
  zoom: 1.1;
}
.spa-item.explode .exploding {
  background: #fff;
  z-index: 1;
  padding: 10px 10px 0 10px;
  position: absolute;
  left: -20px;
  right: -20px;
  top: -20px;
  box-shadow: 0px 0px 7px rgba(63, 63, 63, 0.4);
}
.spa-item.explode .learn-more {
  display: block;
}
.spa-item ul.specs {
  margin-bottom: 0;
}
.spa-item ul.specs li {
  font-size: 14px;
}
.spa-item .params {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.spa-item .params img {
  margin-top: -8px;
}
.spa-item .params span {
  padding-top: 3px;
}
.spa-item .params2 img {
  margin-top: -5px;
}
span.spa-item-title {
  display: block;
  font-size: 20px;
  text-align: center;
}
@media only screen and (min-width: 767px) {
  span.spa-item-title {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .explode span.spa-item-title {
    max-width: 200px;
  }
}
b.lighter {
  font-weight: 400;
}
html:not(.doc-xs) .spa-item.PlungePool .spa-item-image-holder img, html:not(.doc-xs) .spa-item.PlungePool.explode .spa-item-image-holder img, html:not(.doc-xs) .spa-item.SwimSpa .spa-item-image-holder img, html:not(.doc-xs) .spa-item.SwimSpa.explode .spa-item-image-holder img {
  max-height: none;
}
.flip-card-inner {
  display: none;
}
@media only screen and (max-width: 766px) {
  .flip-card-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
  }
}
/*
    flip card
*/
@media only screen and (max-width: 766px) {
  .flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    transition: height 0.6s;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
  }
  .flip-card .flip-card-front, .flip-card .flip-card-back {
    transition: transform 0.6s;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  .flip-card .flip-card-front {
    background-color: #ececec;
    transform: perspective(600px) rotateY(0deg);
  }
  .flip-card .flip-card-back {
    transform: perspective(600px) rotateY(180deg);
    background-color: #fff;
  }
  .flip-card.flip {
    height: 365px;
  }
  .flip-card.flip .flip-card-front {
    transform: perspective(600px) rotateY(-180deg);
    pointer-events: none;
  }
  .flip-card.flip .flip-card-back {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
  .flip-card.flip .learn-more {
    display: block;
    margin: 0;
  }
  .flip-card.flip .spa-item-image-holder {
    display: block;
    text-align: center;
  }
  .flip-card .folding-corner {
    opacity: 1;
    border-top: 45px solid #3c3c3c;
    border-right: 45px solid #fff;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    width: 0;
    height: 0;
    float: right;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .flip-card .folding-corner button {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    -webkit-transition: none;
    transition: none;
    border: 0;
    border-radius: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    position: absolute;
    outline: 0;
    padding: 0;
    bottom: 22px;
    font-size: 22px;
    width: 23px;
    height: 23px;
    display: inline-block;
    opacity: 1;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
  }
}
.bestselling {
  position: relative;
}
.bestselling::before {
  display: block;
  content: " ";
  width: 80px;
  height: 80px;
  background: right bottom no-repeat url(/_resources/themes/sapsdealers/img/bestselling.png);
  background-size: contain;
  z-index: 1;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
#wizardsteps {
  text-align: center;
}
#wizardoptions {
  margin-bottom: 50px;
}
[data-step] {
  display: none;
  padding: 15px 0;
  min-height: 100px;
}
.wizard-buttons {
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .wizard-buttons {
    flex-flow: column;
  }
}
.wizard-buttons .next-step, .wizard-button {
  flex: 1;
  border: 2px solid #3db5e6;
  line-height: 96px;
  text-align: center;
  font-size: 20px;
  margin-left: 15px;
  white-space: nowrap;
  padding: 0 20px;
}
.wizard-buttons .next-step:first-child, .wizard-button:first-child {
  margin-left: 0;
}
.wizard-buttons .next-step:hover, .wizard-button:hover {
  border: 2px solid #428bca;
}
@media only screen and (max-width: 1199px) {
  .wizard-buttons .next-step, .wizard-button {
    line-height: 50px;
    margin: 0 0 15px 0;
  }
}
#capacity-slider {
  margin: 34px 20px 20px 20px;
}
#capacity-slider .ui-slider-range {
  background: #3db5e6;
  border-color: #3db5e6;
}
#capacity-slider .ui-slider-handle {
  border-color: #3db5e6;
  border-radius: 0;
  background: white;
}
#slider-marks {
  display: flex;
  padding-top: 10px;
}
#slider-marks i {
  font-style: normal;
  flex: 2;
  text-align: center;
}
#slider-marks i:last-child {
  flex: 1;
  text-align: right;
}
#slider-marks i:first-child {
  flex: 1;
  text-align: left;
}
.wizard-image-button {
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-left: 15px;
}
.wizard-image-button:first-child {
  margin-left: 0;
}
.wizard-image-button img {
  height: 100%;
}
.wizard-image-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: perspective(1px) translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .wizard-image-button {
    margin: 0 0 15px 0;
    height: 150px;
  }
  .wizard-image-button span {
    font-size: 20px;
  }
}
.wizard-divider {
  position: absolute;
}
@media (max-width: 780px) {
  .wizard-divider {
    margin-left: 0 !important;
    margin-bottom: 20px !important;
    display: block !important;
    height: auto !important;
    writing-mode: inherit !important;
    position: relative !important;
  }
}
/*
    search bar
*/
#search_bar {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  z-index: 100000;
  background: black;
  padding: 15px 0 15px 0;
}
#search_bar.visible {
  display: block;
}
#search_bar .close-btn {
  color: white;
  float: right;
}
#search_bar .inputrow {
  display: flex;
}
#search_bar .inputrow > div {
  white-space: nowrap;
}
#search_bar .inputrow > div + div {
  margin-left: 20px;
}
#search_bar label {
  text-transform: uppercase;
}
#search_bar input[type="text"] {
  font-size: 14px;
  height: 37px;
  border-radius: 0;
}
#search_bar input[type="submit"], #search_bar button[data-toggle="dropdown"], #search_bar .option-switch {
  line-height: 35px;
  height: 37px;
  min-width: 37px;
  color: #fff;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 0 8px;
  border: 1px solid white;
  cursor: pointer;
  border-radius: 0;
}
#search_bar input[type="submit"]:hover, #search_bar button[data-toggle="dropdown"]:hover, #search_bar .option-switch.selected, #search_bar .option-switch:hover {
  background: #fff;
  color: #000;
}
#search_bar .caret {
  border-top: 4px solid #fff;
}
#search_bar button[data-toggle="dropdown"]:hover .caret {
  border-top: 4px solid #000;
}
#search_bar .dropdown-menu {
  margin-top: 0;
  left: auto;
  right: 0;
  border-radius: 0;
  min-width: 100px;
}
#search_bar .dropdown-menu li {
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
  cursor: pointer;
}
#search_bar .dropdown-menu li:hover {
  color: #fff;
  background: #2ab8e8;
}
@media (max-width: 580px) {
  #search_bar .inputrow {
    display: block;
  }
  #search_bar .inputrow > div + div {
    margin-left: 0px;
  }
  #invoke_search {
    padding: 0 10px;
  }
  #invoke_search i {
    font-size: inherit;
  }
}
.search-result {
  margin-top: 30px;
}
.search-result h3 {
  margin-top: 0;
}
.search-result .piclink {
  float: left;
  margin-right: 10px;
  height: 70px;
}
/*
    sidebumps
*/
#sidebumps {
  list-style: none;
  margin: 0;
  padding: 0;
  left: 100%;
  position: fixed;
  z-index: 401;
  display: block;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}
#sidebumps > li {
  position: relative;
  left: -45px;
  margin-bottom: 2px;
  display: block;
  width: 100%;
  white-space: nowrap;
  padding: 5px 30px 5px 2px;
  transition: ease-out 400ms;
  background: #E37B1A;
  color: white;
  line-height: 40px;
}
#sidebumps a {
  display: block;
  color: white;
  font-size: 16px;
}
#sidebumps a:hover {
  color: white;
}
#sidebumps B {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  text-align: center;
}
#sidebumps img {
  max-height: 27px;
  /* float: left; */
  max-width: 27px;
}
#sidebumps > li.sidebump:hover {
  left: -100%;
  background: #3db5e6;
}
@media (max-width: 979px) {
  #sidebumps {
    display: none;
    padding: 0;
    text-align: center;
    bottom: 36px;
    left: 0;
    transform: none;
    right: 0;
    top: auto;
    background: #484848;
  }
  #sidebumps a {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
  }
  #sidebumps b {
    margin: 0;
    width: auto;
    display: block;
    height: 30px;
  }
  #sidebumps img {
    height: 25px;
  }
  #sidebumps li {
    background: none;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    border-right: 1px solid #000;
    flex: 1;
    display: inline-block;
    margin: 0;
    position: static;
    white-space: normal;
  }
  #sidebumps li:last-child {
    border-right: 0;
  }
}
.ui-widget.ui-widget-content.ui-autocomplete {
  z-index: 2001;
}
.store-locator .locator-header {
  text-align: center;
  text-transform: uppercase;
  background: silver;
  margin: 8px 0;
  padding: 8px 16px;
}
.store-locator .locator-geo-request {
  text-align: center;
  background: #E37B1A;
  margin: 8px 0;
  padding: 8px 16px;
}
.store-locator .locator-geo-request a {
  color: #000;
  font-weight: bold;
}
.store-locator .locator-warning {
  padding: 0 16px;
  background: #fff;
  text-align: center;
  color: #E37B1A;
  height: 0;
  line-height: 0px;
  transition: all linear 200ms;
  overflow: hidden;
  flex-basis: 100%;
}
.store-locator .locator-warning.open {
  border: 1px solid #E37B1A;
  height: 50px;
  line-height: 50px;
}
.store-locator .store-locator-columns {
  display: flex;
}
@media only screen and (max-width: 966px) {
  .store-locator {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.store-locator .clear-input {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 40px;
  width: 40px;
  text-align: center;
  display: none;
}
@media only screen and (max-width: 766px) {
  .store-locator-orstate {
    border-top: 1px solid silver;
    background: #ececec;
    line-height: 40px;
    height: 40px;
    padding-left: 10px;
  }
}
.store-locator-input-wrapper {
  border: 1px solid silver;
  background: #ececec;
  line-height: 40px;
  position: relative;
}
.store-locator-input-wrapper label {
  white-space: nowrap;
}
.store-locator-input-wrapper .input-holder {
  flex: 1;
}
.store-locator-input-wrapper .select-input, .store-locator-input-wrapper #gallery_category_select, .store-locator-input-wrapper #gallery_album_select, .store-locator-input-wrapper #blog_category_select {
  border: 0;
}
.store-locator-input-wrapper input {
  border: 0;
  background: transparent;
  line-height: inherit;
  height: inherit;
  padding: 0 40px 0 10px;
  width: 100%;
}
.store-locator-input-wrapper input::placeholder {
  color: #666;
}
@media only screen and (min-width: 767px) {
  .store-locator > .store-locator-input-wrapper {
    display: none;
  }
}
.store-location-map-column > .store-locator-input-wrapper {
  height: 40px;
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 966px) {
  .store-location-map-column > .store-locator-input-wrapper {
    display: none;
  }
}
.xstore-location-stores-column .stores-list {
  display: flex;
  flex-wrap: wrap;
}
.xstore-location-stores-column .stores-list:before {
  display: none;
}
.store-location-stores-column, .store-location-map-column {
  position: relative;
  height: 500px;
  min-height: 300px;
}
@media only screen and (min-width: 767px) {
  .store-location-stores-column, .store-location-map-column {
    max-height: 50vh !important;
  }
}
.store-location-stores-column {
  flex: 2;
  overflow: auto;
  max-height: none;
}
@media only screen and (min-width: 767px) {
  .store-location-stores-column {
    padding: 10px 30px 10px 10px;
  }
}
.store-item {
  display: block;
  position: relative;
  border-bottom: 1px solid gray;
  margin: 0;
  padding-bottom: 16px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (min-width: 767px) {
  .store-item:after {
    content: '';
    width: 23px;
    height: 55px !important;
    top: 0 !important;
    bottom: 0 !important;
    display: block;
    right: -20px;
    left: auto !important;
    margin: auto;
    background-image: url(/_resources/themes/sapsdealers/img/triangle.svg) !important;
    background-size: 20px auto;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    position: absolute;
    opacity: 0;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  .store-item.current:after {
    right: -20px;
    opacity: 1;
  }
}
.store-item .store-item__buttons {
  display: flex;
}
.store-item .store-item__buttons > * {
  flex: 1;
  max-width: 30%;
}
@media only screen and (max-width: 766px) {
  .store-item .store-item__buttons > * {
    flex: 1;
    max-width: 50%;
  }
  .store-item .store-item__buttons a {
    display: block;
    margin: 0 10px;
  }
}
.store-item:hover {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  transform: translateY(-10px);
}
.store-location-map-column {
  flex: 4;
}
@media only screen and (max-width: 966px) {
  .store-location-map-column {
    display: none;
  }
}
.store-name {
  color: #3db5e6;
}
.store-name span {
  font-weight: 300;
}
.store-subtitle {
  color: #000;
  font-size: 18px;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 10px;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.overlay:hover .icon {
  color: #E37B1A;
}
.overlay .icon {
  color: white;
  font-size: 7.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
/*****************/
/*! Testimonial CSS  */
/*****************/
.testimonial {
  /* background: #eee; */
  border-radius: 10px;
  /* overflow: hidden; */
  margin-top: 20px;
  clear: both;
  position: relative;
  /* color: #282828; */
  text-align: left;
}
.testimonial img {
  width: 100%;
  height: auto;
  /* border-radius: 10%; */
  /* max-height: 100%; */
}
.testimonial .photo {
  float: left;
  width: 40%;
  display: inline-block;
  /* border-radius: 10px; */
  overflow: hidden;
  position: relative;
}
.testimonial .mainphoto {
  position: relative;
}
.testimonial .photo div, .testimonial .mainphoto div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.testimonial .photo a, .testimonial .mainphoto a {
  position: absolute;
  top: 50%;
  text-align: center;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 6em;
  margin-top: -70px;
}
.testimonial h3 {
  margin-top: 0 !important;
  font-size: 25px;
  font-weight: 300;
}
.testimonial .text {
  margin-left: 2%;
  padding: 10px 30px;
  font-size: 14px;
  text-align: left;
  float: left;
  width: 58%;
}
.testimonial:after {
  content: "";
  display: table;
  clear: both;
}
.testimonial.details .text {
  margin: 10px 0 0;
  float: none;
  width: auto;
}
.testimonial .name {
  font-size: 12px;
  font-weight: bold;
  color: #888;
  margin-top: 10px;
}
.testimonial .spaphoto {
  /* position: absolute; */
  /* bottom: -10px; */
  /* right: -10px; */
  float: right;
  text-align: center;
  padding: 5px;
  /* background: #f6f6f6; */
  border-radius: 15px;
  width: 30%;
  /* margin-top: 5%; */
}
.testimonial .spaphoto a {
  font-size: 14px;
}
@media (max-width: 680px) {
  .testimonial .photo {
    width: 100%;
    float: none;
    text-align: center;
    margin: 0;
  }
  .testimonial .text {
    margin-left: 0;
    width: 100%;
    float: none;
  }
  .testimonial .spaphoto {
    float: none;
    max-width: 90%;
    margin: 10px auto;
    width: auto;
  }
}
section.testimonials {
  padding: 50px 0;
  border-bottom: 2px solid #fff;
}
.dynamic__elements__elements__elementtestimonials {
  padding-top: 35px;
}
.dynamic__elements__elements__elementtestimonials .element__title {
  font-size: 24px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 35px;
  /* text-transform: uppercase; */
}
.testimonial-list {
  margin-bottom: 30px;
}
.testimonial-list-entry {
  display: inline-block;
  vertical-align: top;
}
.testimonial-list-entry img {
  margin-bottom: 30px;
}
.testimonial-list-entry-details {
  font-style: italic;
}
.testimonial-list-entry .blockquote-footer {
  font-weight: bold;
  font-style: normal;
  margin-top: 30px;
}
.testimonial-list-entry .blockquote-footer a {
  font-weight: normal;
}
.testimonial-horiz-scroll {
  width: 100%;
}
.testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight, .testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  top: -240px;
  background-image: none;
}
.testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: -50px;
}
.testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: -50px;
}
.testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight:before, .testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft:before {
  height: 40px;
  line-height: 37px;
  width: 37px;
  color: white;
  font-size: 36px;
  text-align: center;
  display: block;
}
.testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight:before {
  content: "";
  float: right;
}
.testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft:before {
  content: "";
}
.touchevents .testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight, .touchevents .testimonial-list .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  display: none !important;
}
/*  SPAFILTER */
#spafilter {
  margin: 0 0 40px 0;
  position: relative;
  z-index: 20;
  background: #FFFFFF;
  padding: 0;
  /* text-align: center; */
  max-width: 100%;
}
#spafilter .container {
  margin-top: 30px;
  margin-bottom: 50px;
  padding-left: 35px;
  padding-right: 0;
}
#spafilter .controls {
  /* display: table-row; */
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  background: black;
  margin-bottom: 30px;
}
#spafilter .controls a {
  color: #fff;
  display: inline-block;
  float: left;
  border-radius: 0;
  height: 20vw;
  text-shadow: 0 0 5px #000;
}
#spafilter .controls a img {
  opacity: 0.7;
  transition: linear 200ms;
  height: 20vw;
}
#spafilter .controls a:hover, #spafilter .controls a.selected {
  text-decoration: none;
  color: #2491bd;
}
#spafilter .controls a:hover img, #spafilter .controls a.selected img {
  opacity: 0.5;
}
#spafilter .controls a .filter-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding-top: 9vw;
  text-align: center;
  font-size: 30px;
  transition: linear 200ms;
}
#spafilter .controls a .filter-caption p {
  font-weight: 200;
  font-size: 18px;
  padding-top: 8px;
}
#spafilter .toggle-more-holder {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  #spafilter .toggle-more-holder {
    margin-left: -35px;
  }
}
#spafilter .toggleMore {
  border-top: solid 1px #000;
  border-bottom: solid 1px transparent;
  line-height: 36px;
  font-size: 17px;
  font-weight: 200;
  color: black;
  overflow: hidden;
  display: inline-block;
}
#spafilter .toggleMore .less {
  display: none;
}
#spafilter .toggleMore .fa {
  font-size: 34px;
}
#spafilter .toggleMore.less {
  border-top: solid 1px transparent;
  border-bottom: solid 1px #000;
}
#spafilter .toggleMore.less .less {
  display: block;
}
#spafilter .toggleMore.less .more {
  display: none;
}
#spafilter .sticky-wrapper.is-sticky .h-scroll-container {
  z-index: 100;
}
#spafilter .sticky-wrapper.is-sticky .controls a {
  transition: linear 200ms;
  height: 200px;
  overflow: hidden;
}
#spafilter .sticky-wrapper.is-sticky .controls a .filter-caption {
  padding-top: 4vw;
}
.doc-lg #spafilter .sticky-wrapper.is-sticky .controls a img, .doc-md #spafilter .sticky-wrapper.is-sticky .controls a img, .doc-sm #spafilter .sticky-wrapper.is-sticky .controls a img {
  margin-top: -20%;
}
.filtered-items-divider {
  /* DONT ENCLOSE INTO PARENTS - GLOBAL ELEMENT */
  display: inline-block;
  text-orientation: mixed;
  color: white;
  /* text-transform: uppercase; */
  padding: 0 5px;
  font-size: 18px;
  writing-mode: vertical-rl;
  height: 250px;
  text-align: center;
  /* letter-spacing: 4px; */
  margin-left: -35px;
}
@media (max-width: 979px) {
  #spafilter .controls {
    display: block;
  }
  #spafilter .controls a {
    display: block;
    height: 80px;
    overflow: hidden;
  }
  #spafilter .controls a img {
    height: 100px;
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  #spafilter .controls a .filter-caption {
    padding-top: 18px !important;
    font-size: 12px;
    line-height: normal;
  }
  #spafilter .controls a .filter-caption p {
    padding-top: 0;
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  #spafilter .container {
    text-align: center;
  }
  #spafilter .controls {
    margin-bottom: 0;
  }
  #spafilter .controls a .filter-caption {
    font-size: 19px;
    line-height: normal;
  }
  #spafilter .controls a .filter-caption p {
    padding-top: 0;
    font-size: 12px;
  }
  #spafilter .h-scroll-container {
    height: auto;
    overflow-x: auto;
  }
  #spafilter .h-scroll-container .controls {
    width: 200%;
  }
}
@media (max-width: 780px) {
  #spafilter .container {
    padding-left: 0;
  }
  #spafilter .filtered-items-divider {
    margin-left: 0;
    margin-bottom: 20px;
    display: block;
    height: auto;
    writing-mode: inherit;
    position: relative !important;
  }
}
/*  END SPAFILTER */
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-infobar, .fancybox-toolbar, .fancybox-caption, .fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption, .fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
  cursor: text;
}
.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--video .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-video, .fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--play svg:nth-child(2), .fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}
.fancybox-button--pause svg:nth-child(1), .fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}
/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}
/* Styling for Small-Screen Devices */
@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:visited, .fancybox-share__button:link {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}
/* Styling for Small-Screen Devices */
@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
#switch_country {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 30000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#switch_country .switch_country-content {
  background-color: white;
  border: gray 1px solid;
  padding: 32px;
  position: absolute;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  margin: 0 auto;
  color: black;
  text-align: center;
  display: inline-block;
}
.switch_country-notice {
  font-size: 23px;
  font-weight: bold;
}
.switch_country-name {
  display: block;
}
.switch_country-options {
  margin-top: 16px;
}
.switch_country-options .btn, .switch_country-options .btn-green, .switch_country-options .btn-blue, .switch_country-options .inline-quickenquiry #SlideContact .btn-onblack, .inline-quickenquiry #SlideContact .switch_country-options .btn-onblack, .switch_country-options .alt_design a, .alt_design .switch_country-options a, .switch_country-options .video-overlay-content a, .video-overlay-content .switch_country-options a, .switch_country-options .alt_design_widgets a, .alt_design_widgets .switch_country-options a, .switch_country-options .sliding-pics-plate .content a, .sliding-pics-plate .content .switch_country-options a, .switch_country-options .btn-orange, .switch_country-options .btn-onblack, .switch_country-options .btn-custom, .switch_country-options [name="action_process"], .switch_country-options .btn-grey, .switch_country-options .btn-white, .switch_country-options .post-summary-highlighted .post-image a.watch-video, .post-summary-highlighted .post-image .switch_country-options a.watch-video, .switch_country-options .sapspage-gallery .sapspage-gallery-selected-holder .selected-title, .sapspage-gallery .sapspage-gallery-selected-holder .switch_country-options .selected-title, .switch_country-options .wizard-image-button span, .wizard-image-button .switch_country-options span, .switch_country-options .btn-black, .switch_country-options .Security form input[type="submit"], .Security form .switch_country-options input[type="submit"], .switch_country-options .btn-gray {
  display: block;
}
.switch_country-options .btn:not(:last-child), .switch_country-options .btn-green:not(:last-child), .switch_country-options .btn-blue:not(:last-child), .switch_country-options .inline-quickenquiry #SlideContact .btn-onblack:not(:last-child), .inline-quickenquiry #SlideContact .switch_country-options .btn-onblack:not(:last-child), .switch_country-options .alt_design a:not(:last-child), .alt_design .switch_country-options a:not(:last-child), .switch_country-options .video-overlay-content a:not(:last-child), .video-overlay-content .switch_country-options a:not(:last-child), .switch_country-options .alt_design_widgets a:not(:last-child), .alt_design_widgets .switch_country-options a:not(:last-child), .switch_country-options .sliding-pics-plate .content a:not(:last-child), .sliding-pics-plate .content .switch_country-options a:not(:last-child), .switch_country-options .btn-orange:not(:last-child), .switch_country-options .btn-onblack:not(:last-child), .switch_country-options .btn-custom:not(:last-child), .switch_country-options [name="action_process"]:not(:last-child), .switch_country-options .btn-grey:not(:last-child), .switch_country-options .btn-white:not(:last-child), .switch_country-options .post-summary-highlighted .post-image a.watch-video:not(:last-child), .post-summary-highlighted .post-image .switch_country-options a.watch-video:not(:last-child), .switch_country-options .sapspage-gallery .sapspage-gallery-selected-holder .selected-title:not(:last-child), .sapspage-gallery .sapspage-gallery-selected-holder .switch_country-options .selected-title:not(:last-child), .switch_country-options .wizard-image-button span:not(:last-child), .wizard-image-button .switch_country-options span:not(:last-child), .switch_country-options .btn-black:not(:last-child), .switch_country-options .Security form input[type="submit"]:not(:last-child), .Security form .switch_country-options input[type="submit"]:not(:last-child), .switch_country-options .btn-gray:not(:last-child) {
  margin-bottom: 16px;
}
.kb-search-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 6.25rem 0;
  color: #fff;
  background-color: #ffb81c;
}
.kb-search-section.kb-search-section--narrow {
  padding: 9.75rem 0 2.5rem;
  display: none !important;
}
@media screen and (min-width: 768px) {
  .kb-search-section.kb-search-section--narrow {
    display: block !important;
  }
}
.header-is-sticky .kb-search-section--narrow {
  left: 50%;
  right: auto;
  width: 100%;
  transform: translateX(-50%);
  position: fixed;
  top: 0;
  z-index: 1;
  padding-top: calc(2.5rem + 60px);
  padding-bottom: 20px;
}
.kb-search-section--full .kb-search-section__content {
  max-width: 693px !important;
}
@media screen and (max-width: 768px) {
  .kb-search-section--full .kb-search-section__content .kb-search {
    display: none;
  }
}
.kb-mobile-search form, .kb-mobile-search__close, .kb-search__suggestions {
  display: none;
}
.kb-search {
  position: relative;
}
.kb-search form {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (min-width: 767px) {
  .kb-search {
    margin-top: 60px;
  }
}
.kb-search.open {
  z-index: 2000;
}
@media only screen and (max-width: 766px) {
  .kb-search.open {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
  }
  .kb-search.open .kb-search__box {
    bottom: 0;
    display: flex;
    flex-flow: column;
  }
}
input[type=text].kb-search__input {
  width: 100%;
  box-sizing: border-box;
  font-size: 1em;
  padding: 0.75em;
  border: 0;
  color: #7c98b6;
  transition: color 0.1s ease-in;
}
input[type=text].kb-search__input::placeholder {
  color: #666666;
}
.kb-search__close {
  margin-right: 15px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.kb-theme--tiles .kb-search {
  margin: 0 auto;
}
.kb-search-section--full .kb-search, .kb-search-section--full .kb-search-section__title {
  max-width: 693px;
}
.kb-search__placeholder {
  height: 50px;
  width: 100%;
}
.kb-search__box {
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border: 1px solid gray;
  box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.08);
}
.kb-search__bar {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.kb-search.open .kb-search__bar {
  border-bottom-width: 0px;
}
.kb-search__mag {
  margin-left: 15px;
}
.kb-search__suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .kb-search__suggestions {
    max-height: 450px;
  }
}
.kb-search__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
}
.kb-search__suggestions li:first-of-type {
  margin-top: 0.5em;
}
.kb-search__suggestions a {
  display: block;
  color: #33475b;
  padding: 0.6em 1em;
}
.kb-search__suggestions a:hover, .kb-search__suggestions a:focus {
  background-color: rgba(66, 91, 118, 0.1);
  outline: 0;
  text-decoration: none;
  opacity: 1;
}
.kb-search__suggestions__article-title {
  font-size: 16px;
  line-height: 30px;
}
.result-type-file .kb-search__suggestions__article-title::after {
  content: "(FILE)";
  margin-left: 10px;
  color: #E37B1A;
  font-weight: bold;
}
.result-ext-mov .kb-search__suggestions__article-title::after {
  content: "(MOV)";
}
.result-ext-mp4 .kb-search__suggestions__article-title::after {
  content: "(MP4)";
}
.result-ext-pdf .kb-search__suggestions__article-title::after {
  content: "(PDF)";
}
.result-ext-jpeg .kb-search__suggestions__article-title::after, .result-ext-jpg .kb-search__suggestions__article-title::after {
  content: "(JPG)";
}
.kb-search__suggestions__article-content {
  font-size: 13px;
  line-height: 22px;
}
.kb-theme--tiles .kb-search {
  margin: 0 auto;
}
.slim-tabset .nav-tabs-container {
  padding: 0px;
  margin: 0px;
  max-width: 100%;
}
.slim-tabset .nav-tabs-container .nav-tabs {
  text-align: center;
  display: table;
  margin: auto;
}
.slim-tabset .nav-tabs-container .nav-tabs > li {
  margin-bottom: 0px;
  display: inline-block;
}
.slim-tabset .nav-tabs-container .nav-tabs > li.active > a {
  border: 0px;
  background: #4cace9;
  color: white;
}
.slim-tabset .nav-tabs-container .nav-tabs > li.active > a:hover {
  background: #4cace9;
}
.slim-tabset .nav-tabs-container .nav-tabs > li > a {
  text-transform: uppercase;
  min-width: 170px;
  height: 48px;
  border: 2px solid #4cace9;
  border-bottom: 0px;
  background: white;
  color: #4cace9;
}
.slim-tabset .nav-tabs-container .nav-tabs > li > a.flip-color {
  background: #4cace9;
  border-color: #4cace9;
  color: white;
  border: 2px solid #4cace9;
}
.slim-tabset .nav-tabs-container .nav-tabs > li > a.flip-color:hover {
  background: #E37B1A;
  color: white;
  border: 2px solid #E37B1A;
}
.slim-tabset .nav-tabs-container .nav-tabs > li > a:hover {
  background: #E37B1A;
  border-color: #E37B1A;
  color: white;
}
.slim-tabset .nav-tabs-container .nav-tabs > li.pull-right > a {
  margin: 0px;
}
@media screen and (max-width: 991px) {
  .slim-tabset .nav-tabs-container .nav-tabs > li {
    float: none !important;
  }
  .slim-tabset .nav-tabs-container .nav-tabs > li > a {
    border-bottom: 2px solid;
    margin-top: 8px;
  }
}
@media screen and (max-width: 400px) {
  .slim-tabset .nav-tabs-container .nav-tabs > li {
    width: 100%;
  }
  .slim-tabset .nav-tabs-container .nav-tabs > li > a {
    margin-right: 0px;
  }
}
.slim-tabset .tab-content {
  border-top: 4px solid #4cace9;
}
@media screen and (max-width: 991px) {
  .slim-tabset .tab-content {
    margin-top: 10px;
  }
}
.panel-group {
  padding: 2.5rem 0 !important;
}
.panel-body-container {
  display: flex;
  flex-direction: row;
  min-height: 250px;
}
@media only screen and (max-width: 766px) {
  .panel-body-container {
    flex-direction: column;
    margin-top: 40px;
  }
}
.panel-body-container .panel-body-image {
  max-width: 30%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.panel-body-container .panel-body-content {
  width: 70%;
  padding: 50px;
  max-width: 1100px;
}
.panel-body-container .panel-body-content .panel-body-title {
  font-size: 25px;
  padding-top: 50px;
}
.panel-body-container .panel-body-content .panel-body-description {
  max-width: 800px;
  padding-top: 20px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 766px) {
  .panel-body-container .panel-body-content {
    width: 100%;
    padding: 15px;
  }
}
.panel-body-item-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.panel-body-item-wrapper .panel-body-item {
  display: block;
  padding: 20px;
  width: 50%;
}
@media only screen and (max-width: 966px) {
  .panel-body-item-wrapper .panel-body-item {
    width: 100%;
  }
}
@media only screen and (max-width: 680px) {
  .panel-body-item-wrapper .panel-body-item {
    flex-direction: column;
  }
}
.panel-body-item-wrapper .panel-body-item .panel-body-item-image {
  max-width: 40%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 680px) {
  .panel-body-item-wrapper .panel-body-item .panel-body-item-image {
    max-width: 200px;
    display: block;
    float: none;
    margin: auto;
    padding-bottom: 10px;
  }
}
.panel-body-item-wrapper .panel-body-item .panel-body-item-content {
  padding-left: 20px;
  width: 60%;
  float: left;
}
@media only screen and (max-width: 680px) {
  .panel-body-item-wrapper .panel-body-item .panel-body-item-content {
    width: 100%;
    padding-left: 0px;
  }
}
.blue-hr-line-short {
  display: block;
}
.blue-hr-line-short::after {
  content: '';
  padding-top: 20px;
  border-bottom: 2px solid #9fd6e0;
  max-width: 40px;
  display: block;
}
.spec-table {
  display: flex;
  background: #fff;
}
.spec-table .spec-table__column {
  border: 1px solid #e2e2e2;
  margin-left: -1px;
  min-width: 20%;
}
.spec-table .spec-table__column.first {
  margin-left: 0px;
  flex-grow: 1;
}
.spec-table .spec-table__column.spec-table__item {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.spec-table .spec-table__column.spec-table__item:hover {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  transform: translateY(-20px);
  box-shadow: 0 0 5px 5px #b9b9b9;
}
.spec-table .spec-table__column .spec-table__title {
  height: 100px;
  padding: 10px;
  background: #fff;
  display: flex;
}
.spec-table .spec-table__column .spec-table__title img {
  margin: auto;
  display: block;
}
.spec-table .spec-table__column .spec-table__list {
  list-style-type: none;
  padding: 0px;
}
.spec-table .spec-table__column .spec-table__list li {
  padding: 10px;
  font-size: 14px;
  height: 45px;
}
.spec-table .spec-table__column .spec-table__list li:nth-child(odd) {
  background: #e2e2e2;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%2Fthemes%2Fsapsdealers%2Fscss%2Fmain.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fgeneral.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2F_helpers.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fmodals.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fslider.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fbuttons.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fsquares.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fheader.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fsystem.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fforms.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fvideo-section.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fothertypes.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fspa-page.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fbest-selling.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fpage-sale.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fspa-gallery.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fphoto-gallery.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fsliding-pics.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fmanuals.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fvideo.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fblueprint.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fcontent%2Fsubscription-strip.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Ffooter.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fblog.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fslideform.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fsapspage-gallery.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fexplodingflipcard.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fwizardsearch.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fsearchbar.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fsidebumps.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fstore-locator.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Ftestimonials.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fspafilter.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Ffancybox.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fccswitch.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Fkbsearch.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Ftabs.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Faccordion.scss%22%2C%22%2Fthemes%2Fsapsdealers%2Fscss%2Ftable.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BADjPA%3BAEqHQ%3BADkJJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%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%3BAC3PI%3BADiQJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeI%3BAAAA%3BAAAA%3BAC7WI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD0XJ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BACrYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD8YR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC9YQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADmaJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC5fQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADogBJ%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACzgBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADqhBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC7iBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD2jBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC3jBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADmkBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAC7rBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADwsBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAC9uBJ%3BAAAA%3BAAAA%3BAAAA%3BADqvBI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BACxvBJ%3BAAAA%3BAAAA%3BAAAA%3BAD8vBI%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAC1wBR%3BAD%2BwBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAQpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BACr2BA%3BAAAA%3BAAAA%3BAAAA%3BAD42BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAEz%2FBA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADqFA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC3EJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAHlFJ%3BAAAA%3BAAAA%3BAIIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAFiBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAELR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEgBR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFhCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAE0CJ%3BAAAA%3BAAAA%3BAF1CI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEkDJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAFrDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAE4DJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAF7OA%3BAEoPA%3BAAAA%3BAAAA%3BAAAA%3BAFpPA%3BAEyPA%3BAAAA%3BAAAA%3BAAAA%3BAFzPA%3BAE8PA%3BAAAA%3BAAAA%3BAAAA%3BAF9PA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAE0QA%3BAAAA%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF%2FSA%3BAEyTJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BACtbJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC1NA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAN1DA%3BAAAA%3BAAAA%3BAOGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAL8FI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKtFJ%3BAAAA%3BAAAA%3BALsFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK9ER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BALiEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK9CJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL8BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKZJ%3BAAAA%3BAAAA%3BALYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKHJ%3BAAAA%3BAAAA%3BALGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKSR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALnBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKkCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALlDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKoEJ%3BAAAA%3BAAAA%3BALpEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK6EJ%3BAAAA%3BAAAA%3BAL7EI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFrHR%3BAAAA%3BAAAA%3BAOgNA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL3FQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKqGR%3BAAAA%3BAAAA%3BALrGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKgHR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALhHQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK2HJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALtIQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKuJR%3BAAAA%3BAAAA%3BAAAA%3BALvJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKkKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL%2FKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK8LR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALhNQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKgOJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALnPI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKkQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAL7TI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKsUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALtUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKyVA%3BAAAA%3BAAAA%3BAAAA%3BALzVA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKsWA%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BALlXI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFrHR%3BAAAA%3BAAAA%3BAOmfA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPhrBA%3BAAAA%3BAAAA%3BAO6rBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAL7lBQ%3BAAAA%3BAAAA%3BAKmmBN%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAOd%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALhqBA%3BAKwqBJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BALpsBA%3BAK4sBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BALztBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKmuBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAL1vBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMpHJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BACzGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATzBJ%3BAAAA%3BAAAA%3BASsCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAC3PJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BARmHI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAQzGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BARyGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAQ9EJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BACzEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAToFJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUpHR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAV6FI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAU7EA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVsDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUtCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAV6BI%3BAU1BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAVkBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUVA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAVGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAVtBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAU4BA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAVhCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUiDA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAQhB%3BAAAA%3BAAAA%3BAAAA%3BAVpEQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAU6ER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVnFQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAU4FR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAV7KA%3BAAAA%3BAAAA%3BAAAA%3BAU2LA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAZrTR%3BAAAA%3BAAAA%3BAaIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAbrCJ%3BAAAA%3BAAAA%3BAcIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACvOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAbmGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAa7EA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAbyDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAa9CJ%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC5EA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdwGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcjFR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdgDI%3BActCA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAdtDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAc%2BDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAdvGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcoHI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdzII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAc8JI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAdrKJ%3BAc0KQ%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAd9KJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAc4LJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BACzVR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfmHQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAezGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfyGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe5FA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAfiFI%3BAe7EI%3BAAAA%3BAAAA%3BAAAA%3BAf6EJ%3BAexEI%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAfmEI%3BAe%2FDI%3BAAAA%3BAAAA%3BAAAA%3BAf%2BDJ%3BAe1DI%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfmDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAelCA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQR%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%3BAAIJ%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%3BAjB%2FHJ%3BAAAA%3BAAAA%3BAkBGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAC%2FBA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BACnMJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BApBPA%3BAAAA%3BAAAA%3BAqBGA%3BAAAA%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BArBrCR%3BAAAA%3BAAAA%3BAsBGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAKJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAtB7IR%3BAAAA%3BAAAA%3BAuBIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArB8BQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAqBXJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BArBFA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAqBUJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BArBtCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAqB6CJ%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BArBnGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBrHR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAClQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAehB%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BACzGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAxBmGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBrFJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAxBiBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBCA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxB9DQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBuEA%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAUY%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAxB9FQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFrHR%3BAAAA%3BAAAA%3BAEqHQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwB0HA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BBZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACnUJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAzB0GQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBnGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAzBsFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyB5ER%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzB4BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBbA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA3BhHJ%3BAAAA%3BAAAA%3BA4BOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAEQ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5BxHA%3BAAAA%3BAAAA%3BA6BIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAC%2FFZ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BA5B2EI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BlEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5BkEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4B9CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BA5BsBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BbJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5BaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BGJ%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5BXQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BqBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5BrBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4B8BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5B9BQ%3BA4B2CA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BA5BvEA%3BA4B4EI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BA5B%2FFQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BqGR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA9BpPJ%3BAAAA%3BAAAA%3BA%2BBKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAKA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BA%2FBnNA%3BAgCCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAAA%3BAAAA%3BA9BsDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA8BhDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAACI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAShB%3BAAEQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAMZ%3BAAEQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhCtLR%3BAiCAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAsBA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjC%2FQA%3BAiC4RA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjC1SA%3BAiCoTA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjCvVA%3BAiC%2BVA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjC1XA%3BAiC4YA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAjC1aA%3BAiCibA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjCpcA%3BAiC4cA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAsBA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAjCzfA%3BAiCggBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAjClhBJ%3BAiCyhBA%3BAAAA%3BAAAA%3BAjCzhBA%3BAiC%2BhBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAjCziBA%3BAiCgjBA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAjCtjBA%3BAiC4jBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAjCtkBA%3BAiC6kBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjCzlBA%3BAiCimBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAjC3mBA%3BAiCknBA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAjC1nBA%3BAiC%2BnBA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjC9pBR%3BAiCsqBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjC3vBA%3BAiCywBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAjC72BA%3BAiCk3BA%3BAACI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAC33BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BACpCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjC0EI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiCjEJ%3BAAAA%3BAAAA%3BAjCiEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiCxDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASR%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAC%2FLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAEQ%3BAAAA%3BAAAA%3BAAAA%3BAAOpB%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACtER%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnCkHQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmC1GJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnC0FA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmC%2FER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnC2EI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmCjEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnCiEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmClDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnCkDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmCtCR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACjFJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%22%7D */