.service-jumbotron {
  position: relative;
  width: 100vw;
  height: 100vh;

  -webkit-transition: width 0.4s, height 0.4s;

  transition: width 0.4s, height 0.4s;
}

.service-jumbotron__media-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1
}

.service-jumbotron__media-container img, .service-jumbotron__media-container video {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.service-jumbotron__content-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  width: 100%;
  max-width: 65rem;
  max-width: var(--width-xl);
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(0.625rem * 2);
  padding-right: var(--space-2);
  padding-left: calc(0.625rem * 2);
  padding-left: var(--space-2);
}

.service-jumbotron__lead-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  width: 100%;
  margin: 11rem 0 0 0;

  flex-grow: 1;
  flex-shrink: 0;
}

.service-jumbotron__lead {
  color: #fff;
  color: var(--color-white);

  margin-bottom: calc(0.625rem * 4);

  margin-bottom: var(--space-4);

  font-size: 2.625rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
}

.service-jumbotron__lead-sub {
  color: #fff;
  color: var(--color-white);

  font-size: 2rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
}

.service-jumbotron__nav-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  width: 100%;
  margin: calc(0.625rem * 3) 0;
  margin: var(--space-3) 0;

  flex-grow: 0;
  flex-shrink: 0;
}

.service-jumbotron__play-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;

  width: 100%;
  margin: calc(0.625rem * 2) 0;
  margin: var(--space-2) 0;

  flex-grow: 0;
  flex-shrink: 0;
}

.service-jumbotron-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  list-style: none;
}

.service-jumbotron-nav__item {
  display: block;

  margin: 0 0 calc(0.625rem * 3) 0;

  margin: 0 0 var(--space-3) 0;

  font-size: 1.25rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal)
}

.service-jumbotron-nav__item:last-of-type {
    margin: 0;
  }

.service-jumbotron-nav__item.service-jumbotron__nav-item--btn a:hover, .service-jumbotron-nav__item.service-jumbotron__nav-item--btn a:focus {
        opacity: 1;
      }

.service-jumbotron-nav__link {
  color: #fff;
  color: var(--color-white);
  text-decoration: none
}

.service-jumbotron-nav__link:hover, .service-jumbotron-nav__link:focus {
    color: #fff;
    color: var(--color-white);
    opacity: 0.75;
    text-decoration: none;
  }

.service-jumbotron-play {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  cursor: pointer
}

.service-jumbotron-play:hover, .service-jumbotron-play:focus {
    opacity: 0.75;
  }

.service-jumbotron-play__thumbnail {
  position: relative;
  width: 11.5rem;
  height: 7.25rem;
}

.service-jumbotron-play__image {
  position: absolute;
  width: 11.5rem;
  height: 7.25rem;
  top: 0;
  left: 0;

  background-image: url(/static/media/top-fv-play-image.29f64d92.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.service-jumbotron-play__icon {
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  top: calc(50% - 2.75rem / 2);
  left: calc(50% - 2.75rem / 2);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Icon-Play' width='44' height='44' viewBox='0 0 44 44'%3E %3Cdefs%3E %3Cstyle%3E .cls-1,.cls-2,.cls-4%7Bfill:none%7D.cls-1,.cls-2%7Bstroke:%23fff%7D.cls-2%7Bstroke-linecap:round;stroke-linejoin:round%7D.cls-3%7Bstroke:none%7D %3C/style%3E %3C/defs%3E %3Cg id='Ellipse_203' class='cls-1' data-name='Ellipse 203'%3E %3Ccircle cx='22' cy='22' r='22' class='cls-3'/%3E %3Ccircle cx='22' cy='22' r='21.5' class='cls-4'/%3E %3C/g%3E %3Cpath id='Icon-Arrow' d='M7.61 10L10 0 0 2.39z' class='cls-2' transform='rotate(45 -7.218 32.081)'/%3E %3C/svg%3E");
}

.service-jumbotron-play__message {
  display: inline-block;

  color: #fff;

  color: var(--color-white);

  font-size: 0.875rem;
}

.service-jumbotron-play__video {
  display: none;
}

.service-jumbotron__nav-area {
  display: none;
}

@media (max-width: 65rem) {
  .service-jumbotron__lead-area {
    margin: 5.5rem 0 0 0;
  }

  .service-jumbotron__lead {
    font-size: 2rem;
  }

  .service-jumbotron__lead-sub {
    font-size: 1.75rem;
  }

  .service-jumbotron__nav-area {
    display: flex;
  }

  .service-jumbotron-play {
    flex-direction: row;
  }

  .service-jumbotron-play__thumbnail {
    width: 2.75rem;
    height: 2.75rem;
  }

  .service-jumbotron-play__image {
    display: none;
  }

  .service-jumbotron-play__message {
    margin-left: 0.625rem;
    margin-left: var(--space-1);
  }
}

@media (max-width: 22rem) {
  .service-jumbotron__lead {
    font-size: 1.8rem;
    margin-bottom: calc(0.625rem * 2);
    margin-bottom: var(--space-2);
  }
}

@media (max-height: 35rem) {
  .service-jumbotron__lead {
    font-size: 1.8rem;
  }

  .service-jumbotron__nav-area  {
    margin: 0.625rem 0 0 0;
    margin: var(--space-1) 0 0 0;
  }

  .service-jumbotron-nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100%;
  }

  .service-jumbotron-nav__item {
    margin: 0 calc(0.625rem * 3) 0 0;
    margin: 0 var(--space-3) 0 0
  }

    .service-jumbotron-nav__item:last-of-type {
      margin: 0;
    }

  .service-jumbotron__play-area  {
    margin: 0 0 0.625rem 0;
    margin: 0 0 var(--space-1) 0;
  }
}

.recent-news {
  background-color: #f7f7f7;
  background-color: var(--color-gray-lighter);
  width: 100%;
  padding: calc(0.625rem * 4) 0;
  padding: var(--space-4) 0;
}

.recent-news-list {
  font-size: 0.875rem;
  list-style: none;
}

.recent-news-list__item {
  margin: 0 0 calc(0.625rem * 2) 0;
  margin: 0 0 var(--space-2) 0
}

.recent-news-list__item:last-of-type {
    margin: 0;
  }

.recent-news-list__item a {
    color: #000;
    color: var(--color-black);
  }

.recent-news-list__item-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}

.recent-news-list__date {
  width: 10rem;

  flex-grow: 0;
  flex-shrink: 0;
}

.recent-news-list__title {
  flex-grow: 1;
  flex-shrink: 0;
}

@media (max-width: 45rem) {
  .recent-news-list {
    font-size: 0.75rem;
  }

  .recent-news-list__item-inner {
    flex-direction: column;
  }

  .recent-news-list__date {
    width: 100%;
    margin-bottom: 0.625rem;
    margin-bottom: var(--space-1);
  }
}

.top-banner-area {
  padding: 7.5rem 0 0 0;
}

.top-banner-area__link {
  display: block;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto
}

.top-banner-area__link img {
    display: block;
    width: 100%;
    object-fit: contain;
  }

.top-banner-area__link:hover {
    opacity: 0.75;
  }

@media (max-width: 65rem) {
  .top-banner-area {
    padding: 5rem 0 0 0;
  }
}

.what-is-address {
  width: 100%;
  padding: 7.5rem 0 0 0;
}

.what-is-address__heading {
  margin-bottom: 6.25rem;

  font-size: 3.125rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
  text-align: center;
}

.what-is-address-section {
  position: relative;
  width: 100%;

  margin-bottom: 5rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.what-is-address-section__writing-area {
  width: 50%;
  margin-right: calc(0.625rem * 4);
  margin-right: var(--space-4);

  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

.what-is-address-section__paragraph {
  margin-bottom: calc(0.625rem * 2);
  margin-bottom: var(--space-2);

  text-align: center;
}

.what-is-address-section__heading {
  margin-bottom: calc(0.625rem * 2);
  margin-bottom: var(--space-2);

  font-size: 1rem;
}

.what-is-address-section__feature-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.what-is-address-section__feature-description {
  margin-bottom: 5rem;
  text-align: center;
}

.what-is-address-section__feature-description:last-child {
  margin-bottom: 0px;
}

@media (max-width: 65rem) {
  .what-is-address-section__feature-title {
    font-size: 1.3rem;
  }
}

.what-is-address__map-image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  margin-bottom: 3rem;
}

.what-is-address__map-image {
  width: 18.5rem;
  height: 18.5rem;
  margin: calc(0.625rem * 4) 0 0 0;
  margin: var(--space-4) 0 0 0;

  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='utf-8'?%3E %3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E %3Csvg version='1.1' id='Top-Image-Map' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 270 284' style='enable-background:new 0 0 270 284;' xml:space='preserve'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:%23B5B5B5;%7D .st1%7Bfill:%23FFFFFF;%7D .st2%7Bfill:none;stroke:%23000000;stroke-width:0.8;stroke-miterlimit:10;%7D %3C/style%3E %3Cg id='Group_2760' transform='translate(-222.5 -128.375)'%3E %3Cpath id='Rectangle_1900' class='st0' d='M228.5,409.6L228.5,409.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C227.1,410.2,227.8,409.6,228.5,409.6z'/%3E %3Cpath id='Rectangle_1901' class='st0' d='M223.9,409.6L223.9,409.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C222.5,410.2,223.1,409.6,223.9,409.6z'/%3E %3Cpath id='Rectangle_1902' class='st0' d='M242.4,404.8L242.4,404.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C241,405.5,241.6,404.8,242.4,404.8z'/%3E %3Cpath id='Rectangle_1903' class='st0' d='M306.8,390.7L306.8,390.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,391.3,306.1,390.7,306.8,390.7z'/%3E %3Cpath id='Rectangle_1904' class='st0' d='M223.9,390.7L223.9,390.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C222.5,391.3,223.1,390.7,223.9,390.7z'/%3E %3Cpath id='Rectangle_1905' class='st0' d='M270.2,386L270.2,386c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C268.8,386.6,269.4,386,270.2,386z'/%3E %3Cpath id='Rectangle_1906' class='st0' d='M265.6,386L265.6,386c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C264.2,386.6,264.8,386,265.6,386z'/%3E %3Cpath id='Rectangle_1907' class='st0' d='M274.8,381.3L274.8,381.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C273.4,381.9,274.1,381.3,274.8,381.3z'/%3E %3Cpath id='Rectangle_1908' class='st0' d='M270.2,381.3L270.2,381.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C268.8,381.9,269.4,381.3,270.2,381.3z'/%3E %3Cpath id='Rectangle_1909' class='st0' d='M274.8,376.6L274.8,376.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C273.4,377.2,274.1,376.6,274.8,376.6z'/%3E %3Cpath id='Rectangle_1910' class='st0' d='M270.2,376.6L270.2,376.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C268.8,377.2,269.4,376.6,270.2,376.6z'/%3E %3Cpath id='Rectangle_1911' class='st0' d='M279.2,371.9L279.2,371.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C277.8,372.5,278.4,371.9,279.2,371.9z'/%3E %3Cpath id='Rectangle_1912' class='st0' d='M293,362.5L293,362.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,363.1,292.2,362.5,293,362.5z'/%3E %3Cpath id='Rectangle_1913' class='st0' d='M283.8,362.5L283.8,362.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C282.4,363.1,283,362.5,283.8,362.5z'/%3E %3Cpath id='Rectangle_1914' class='st0' d='M288.4,357.8L288.4,357.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,358.4,287.6,357.8,288.4,357.8z'/%3E %3Cpath id='Rectangle_1915' class='st0' d='M288.4,344L288.4,344c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,344.6,287.6,344,288.4,344z'/%3E %3Cpath id='Rectangle_1916' class='st0' d='M293,339.3L293,339.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,339.9,292.2,339.3,293,339.3z'/%3E %3Cpath id='Rectangle_1917' class='st0' d='M302.2,334.6L302.2,334.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,335.3,301.4,334.6,302.2,334.6z'/%3E %3Cpath id='Rectangle_1918' class='st0' d='M297.6,334.6L297.6,334.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,335.3,296.8,334.6,297.6,334.6z'/%3E %3Cpath id='Rectangle_1919' class='st0' d='M302.2,330L302.2,330c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,330.6,301.4,330,302.2,330z'/%3E %3Cpath id='Rectangle_1920' class='st0' d='M297.6,330L297.6,330c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,330.6,296.8,330,297.6,330z'/%3E %3Cpath id='Rectangle_1921' class='st0' d='M293,330L293,330c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,330.6,292.2,330,293,330z'/%3E %3Cpath id='Rectangle_1922' class='st0' d='M302.2,325.3L302.2,325.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,325.9,301.4,325.3,302.2,325.3z'/%3E %3Cpath id='Rectangle_1923' class='st0' d='M297.6,325.3L297.6,325.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,325.9,296.8,325.3,297.6,325.3z'/%3E %3Cpath id='Rectangle_1924' class='st0' d='M306.8,320.6L306.8,320.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,321.2,306.1,320.6,306.8,320.6z'/%3E %3Cpath id='Rectangle_1925' class='st0' d='M306.8,325.3L306.8,325.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,325.9,306.1,325.3,306.8,325.3z'/%3E %3Cpath id='Rectangle_1926' class='st0' d='M302.2,320.6L302.2,320.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,321.2,301.4,320.6,302.2,320.6z'/%3E %3Cpath id='Rectangle_1927' class='st0' d='M297.6,320.6L297.6,320.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,321.2,296.8,320.6,297.6,320.6z'/%3E %3Cpath id='Rectangle_1928' class='st0' d='M293,325.3L293,325.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,325.9,292.2,325.3,293,325.3z'/%3E %3Cpath id='Rectangle_1929' class='st0' d='M293,320.6L293,320.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,321.2,292.2,320.6,293,320.6z'/%3E %3Cpath id='Rectangle_1930' class='st0' d='M288.4,320.6L288.4,320.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,321.2,287.6,320.6,288.4,320.6z'/%3E %3Cpath id='Rectangle_1931' class='st0' d='M302.2,315.9L302.2,315.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,316.5,301.4,315.9,302.2,315.9z'/%3E %3Cpath id='Rectangle_1932' class='st0' d='M297.6,315.9L297.6,315.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,316.5,296.8,315.9,297.6,315.9z'/%3E %3Cpath id='Rectangle_1933' class='st0' d='M293,315.9L293,315.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,316.5,292.2,315.9,293,315.9z'/%3E %3Cpath id='Rectangle_1934' class='st0' d='M288.4,315.9L288.4,315.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,316.5,287.6,315.9,288.4,315.9z'/%3E %3Cpath id='Rectangle_1935' class='st0' d='M306.8,311.2L306.8,311.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,311.9,306.1,311.2,306.8,311.2z'/%3E %3Cpath id='Rectangle_1936' class='st0' d='M302.2,311.2L302.2,311.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,311.9,301.4,311.2,302.2,311.2z'/%3E %3Cpath id='Rectangle_1937' class='st0' d='M297.6,311.2L297.6,311.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,311.9,296.8,311.2,297.6,311.2z'/%3E %3Cpath id='Rectangle_1938' class='st0' d='M293,311.2L293,311.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,311.9,292.2,311.2,293,311.2z'/%3E %3Cpath id='Rectangle_1939' class='st0' d='M325.2,306.6L325.2,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,307.2,324.5,306.6,325.2,306.6z'/%3E %3Cpath id='Rectangle_1940' class='st0' d='M320.6,306.6L320.6,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,307.2,319.9,306.6,320.6,306.6z'/%3E %3Cpath id='Rectangle_1941' class='st0' d='M316,306.6L316,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C314.6,307.2,315.3,306.6,316,306.6z'/%3E %3Cpath id='Rectangle_1942' class='st0' d='M306.8,306.6L306.8,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,307.2,306.1,306.6,306.8,306.6z'/%3E %3Cpath id='Rectangle_1943' class='st0' d='M302.2,306.6L302.2,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,307.2,301.4,306.6,302.2,306.6z'/%3E %3Cpath id='Rectangle_1944' class='st0' d='M297.6,306.6L297.6,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,307.2,296.8,306.6,297.6,306.6z'/%3E %3Cpath id='Rectangle_1945' class='st0' d='M293,306.6L293,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,307.2,292.2,306.6,293,306.6z'/%3E %3Cpath id='Rectangle_1946' class='st0' d='M288.4,306.6L288.4,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,307.2,287.6,306.6,288.4,306.6z'/%3E %3Cpath id='Rectangle_1947' class='st0' d='M283.8,306.6L283.8,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C282.4,307.2,283,306.6,283.8,306.6z'/%3E %3Cpath id='Rectangle_1948' class='st0' d='M279.2,306.6L279.2,306.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C277.8,307.2,278.4,306.6,279.2,306.6z'/%3E %3Cpath id='Rectangle_1949' class='st0' d='M325.2,301.9L325.2,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,302.5,324.5,301.9,325.2,301.9z'/%3E %3Cpath id='Rectangle_1950' class='st0' d='M320.6,301.9L320.6,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,302.5,319.9,301.9,320.6,301.9z'/%3E %3Cpath id='Rectangle_1951' class='st0' d='M316,301.9L316,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C314.6,302.5,315.3,301.9,316,301.9z'/%3E %3Cpath id='Rectangle_1952' class='st0' d='M302.2,301.9L302.2,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C300.8,302.5,301.4,301.9,302.2,301.9z'/%3E %3Cpath id='Rectangle_1953' class='st0' d='M297.6,301.9L297.6,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,302.5,296.8,301.9,297.6,301.9z'/%3E %3Cpath id='Rectangle_1954' class='st0' d='M293,301.9L293,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,302.5,292.2,301.9,293,301.9z'/%3E %3Cpath id='Rectangle_1955' class='st0' d='M288.4,301.9L288.4,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,302.5,287.6,301.9,288.4,301.9z'/%3E %3Cpath id='Rectangle_1956' class='st0' d='M283.8,301.9L283.8,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C282.4,302.5,283,301.9,283.8,301.9z'/%3E %3Cpath id='Rectangle_1957' class='st0' d='M357.5,297.2L357.5,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,297.8,356.7,297.2,357.5,297.2z'/%3E %3Cpath id='Rectangle_1958' class='st0' d='M352.9,297.2L352.9,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C351.5,297.8,352.1,297.2,352.9,297.2z'/%3E %3Cpath id='Rectangle_1959' class='st0' d='M339.1,297.2L339.1,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C337.7,297.8,338.3,297.2,339.1,297.2z'/%3E %3Cpath id='Rectangle_1960' class='st0' d='M334.5,297.2L334.5,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,297.8,333.7,297.2,334.5,297.2z'/%3E %3Cpath id='Rectangle_1961' class='st0' d='M329.9,297.2L329.9,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C328.5,297.8,329.1,297.2,329.9,297.2z'/%3E %3Cpath id='Rectangle_1962' class='st0' d='M329.9,301.9L329.9,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C328.5,302.5,329.1,301.9,329.9,301.9z'/%3E %3Cpath id='Rectangle_1963' class='st0' d='M334.5,301.9L334.5,301.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,302.5,333.7,301.9,334.5,301.9z'/%3E %3Cpath id='Rectangle_1964' class='st0' d='M325.2,297.2L325.2,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,297.8,324.5,297.2,325.2,297.2z'/%3E %3Cpath id='Rectangle_1965' class='st0' d='M320.6,297.2L320.6,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,297.8,319.9,297.2,320.6,297.2z'/%3E %3Cpath id='Rectangle_1966' class='st0' d='M311.4,297.2L311.4,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C310,297.8,310.7,297.2,311.4,297.2z'/%3E %3Cpath id='Rectangle_1967' class='st0' d='M306.8,297.2L306.8,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,297.8,306.1,297.2,306.8,297.2z'/%3E %3Cpath id='Rectangle_1968' class='st0' d='M297.6,297.2L297.6,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,297.8,296.8,297.2,297.6,297.2z'/%3E %3Cpath id='Rectangle_1969' class='st0' d='M293,297.2L293,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,297.8,292.2,297.2,293,297.2z'/%3E %3Cpath id='Rectangle_1970' class='st0' d='M288.4,297.2L288.4,297.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,297.8,287.6,297.2,288.4,297.2z'/%3E %3Cpath id='Rectangle_1971' class='st0' d='M357.5,292.5L357.5,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,293.1,356.7,292.5,357.5,292.5z'/%3E %3Cpath id='Rectangle_1972' class='st0' d='M352.9,292.5L352.9,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C351.5,293.1,352.1,292.5,352.9,292.5z'/%3E %3Cpath id='Rectangle_1973' class='st0' d='M348.3,292.5L348.3,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C346.9,293.1,347.5,292.5,348.3,292.5z'/%3E %3Cpath id='Rectangle_1974' class='st0' d='M339.1,292.5L339.1,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C337.7,293.1,338.3,292.5,339.1,292.5z'/%3E %3Cpath id='Rectangle_1975' class='st0' d='M334.5,292.5L334.5,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,293.1,333.7,292.5,334.5,292.5z'/%3E %3Cpath id='Rectangle_1976' class='st0' d='M334.5,287.8L334.5,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,288.4,333.7,287.8,334.5,287.8z'/%3E %3Cpath id='Rectangle_1977' class='st0' d='M329.9,292.5L329.9,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C328.5,293.1,329.1,292.5,329.9,292.5z'/%3E %3Cpath id='Rectangle_1978' class='st0' d='M325.2,292.5L325.2,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,293.1,324.5,292.5,325.2,292.5z'/%3E %3Cpath id='Rectangle_1979' class='st0' d='M311.4,292.5L311.4,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C310,293.1,310.7,292.5,311.4,292.5z'/%3E %3Cpath id='Rectangle_1980' class='st0' d='M306.8,292.5L306.8,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,293.1,306.1,292.5,306.8,292.5z'/%3E %3Cpath id='Rectangle_1981' class='st0' d='M297.6,292.5L297.6,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C296.2,293.1,296.8,292.5,297.6,292.5z'/%3E %3Cpath id='Rectangle_1982' class='st0' d='M293,292.5L293,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C291.6,293.1,292.2,292.5,293,292.5z'/%3E %3Cpath id='Rectangle_1983' class='st0' d='M399,283.1L399,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,283.8,398.2,283.1,399,283.1z'/%3E %3Cpath id='Rectangle_1984' class='st0' d='M362.1,287.8L362.1,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,288.4,361.3,287.8,362.1,287.8z'/%3E %3Cpath id='Rectangle_1985' class='st0' d='M357.5,287.8L357.5,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,288.4,356.7,287.8,357.5,287.8z'/%3E %3Cpath id='Rectangle_1986' class='st0' d='M352.9,287.8L352.9,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C351.5,288.4,352.1,287.8,352.9,287.8z'/%3E %3Cpath id='Rectangle_1987' class='st0' d='M348.3,287.8L348.3,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C346.9,288.4,347.5,287.8,348.3,287.8z'/%3E %3Cpath id='Rectangle_1988' class='st0' d='M320.6,287.8L320.6,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,288.4,319.9,287.8,320.6,287.8z'/%3E %3Cpath id='Rectangle_1989' class='st0' d='M316,287.8L316,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C314.6,288.4,315.3,287.8,316,287.8z'/%3E %3Cpath id='Rectangle_1990' class='st0' d='M316,292.5L316,292.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C314.6,293.1,315.3,292.5,316,292.5z'/%3E %3Cpath id='Rectangle_1991' class='st0' d='M311.4,287.8L311.4,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C310,288.4,310.7,287.8,311.4,287.8z'/%3E %3Cpath id='Rectangle_1992' class='st0' d='M306.8,287.8L306.8,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C305.4,288.4,306.1,287.8,306.8,287.8z'/%3E %3Cpath id='Rectangle_1993' class='st0' d='M283.8,287.8L283.8,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C282.4,288.4,283,287.8,283.8,287.8z'/%3E %3Cpath id='Rectangle_1994' class='st0' d='M371.3,283.1L371.3,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,283.8,370.6,283.1,371.3,283.1z'/%3E %3Cpath id='Rectangle_1995' class='st0' d='M362.1,283.1L362.1,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,283.8,361.3,283.1,362.1,283.1z'/%3E %3Cpath id='Rectangle_1996' class='st0' d='M357.5,283.1L357.5,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,283.8,356.7,283.1,357.5,283.1z'/%3E %3Cpath id='Rectangle_1997' class='st0' d='M352.9,283.1L352.9,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C351.5,283.8,352.1,283.1,352.9,283.1z'/%3E %3Cpath id='Rectangle_1998' class='st0' d='M348.3,283.1L348.3,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C346.9,283.8,347.5,283.1,348.3,283.1z'/%3E %3Cpath id='Rectangle_1999' class='st0' d='M343.7,283.1L343.7,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C342.3,283.8,342.9,283.1,343.7,283.1z'/%3E %3Cpath id='Rectangle_2000' class='st0' d='M343.7,287.8L343.7,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C342.3,288.4,342.9,287.8,343.7,287.8z'/%3E %3Cpath id='Rectangle_2001' class='st0' d='M339.1,283.1L339.1,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C337.7,283.8,338.3,283.1,339.1,283.1z'/%3E %3Cpath id='Rectangle_2002' class='st0' d='M334.5,283.1L334.5,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,283.8,333.7,283.1,334.5,283.1z'/%3E %3Cpath id='Rectangle_2003' class='st0' d='M329.9,283.1L329.9,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C328.5,283.8,329.1,283.1,329.9,283.1z'/%3E %3Cpath id='Rectangle_2004' class='st0' d='M325.2,283.1L325.2,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,283.8,324.5,283.1,325.2,283.1z'/%3E %3Cpath id='Rectangle_2005' class='st0' d='M325.2,287.8L325.2,287.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,288.4,324.5,287.8,325.2,287.8z'/%3E %3Cpath id='Rectangle_2006' class='st0' d='M320.6,283.1L320.6,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,283.8,319.9,283.1,320.6,283.1z'/%3E %3Cpath id='Rectangle_2007' class='st0' d='M316,283.1L316,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C314.6,283.8,315.3,283.1,316,283.1z'/%3E %3Cpath id='Rectangle_2008' class='st0' d='M311.4,283.1L311.4,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C310,283.8,310.7,283.1,311.4,283.1z'/%3E %3Cpath id='Rectangle_2009' class='st0' d='M288.4,283.1L288.4,283.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C287,283.8,287.6,283.1,288.4,283.1z'/%3E %3Cpath id='Rectangle_2010' class='st0' d='M399,278.5L399,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,279.1,398.2,278.5,399,278.5z'/%3E %3Cpath id='Rectangle_2011' class='st0' d='M403.6,278.5L403.6,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,279.1,402.8,278.5,403.6,278.5z'/%3E %3Cpath id='Rectangle_2012' class='st0' d='M375.9,278.5L375.9,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,279.1,375.2,278.5,375.9,278.5z'/%3E %3Cpath id='Rectangle_2013' class='st0' d='M371.3,278.5L371.3,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,279.1,370.6,278.5,371.3,278.5z'/%3E %3Cpath id='Rectangle_2014' class='st0' d='M366.7,278.5L366.7,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,279.1,365.9,278.5,366.7,278.5z'/%3E %3Cpath id='Rectangle_2015' class='st0' d='M362.1,278.5L362.1,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,279.1,361.3,278.5,362.1,278.5z'/%3E %3Cpath id='Rectangle_2016' class='st0' d='M348.3,278.5L348.3,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C346.9,279.1,347.5,278.5,348.3,278.5z'/%3E %3Cpath id='Rectangle_2017' class='st0' d='M343.7,278.5L343.7,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C342.3,279.1,342.9,278.5,343.7,278.5z'/%3E %3Cpath id='Rectangle_2018' class='st0' d='M339.1,278.5L339.1,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C337.7,279.1,338.3,278.5,339.1,278.5z'/%3E %3Cpath id='Rectangle_2019' class='st0' d='M334.5,278.5L334.5,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,279.1,333.7,278.5,334.5,278.5z'/%3E %3Cpath id='Rectangle_2020' class='st0' d='M329.9,278.5L329.9,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C328.5,279.1,329.1,278.5,329.9,278.5z'/%3E %3Cpath id='Rectangle_2021' class='st0' d='M325.2,278.5L325.2,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,279.1,324.5,278.5,325.2,278.5z'/%3E %3Cpath id='Rectangle_2022' class='st0' d='M320.6,278.5L320.6,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,279.1,319.9,278.5,320.6,278.5z'/%3E %3Cpath id='Rectangle_2023' class='st0' d='M316,278.5L316,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C314.6,279.1,315.3,278.5,316,278.5z'/%3E %3Cpath id='Rectangle_2024' class='st0' d='M403.6,273.8L403.6,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,274.4,402.8,273.8,403.6,273.8z'/%3E %3Cpath id='Rectangle_2025' class='st0' d='M399,273.8L399,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,274.4,398.2,273.8,399,273.8z'/%3E %3Cpath id='Rectangle_2026' class='st0' d='M394.4,273.8L394.4,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,274.4,393.6,273.8,394.4,273.8z'/%3E %3Cpath id='Rectangle_2027' class='st0' d='M385.1,273.8L385.1,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,274.4,384.4,273.8,385.1,273.8z'/%3E %3Cpath id='Rectangle_2028' class='st0' d='M380.5,273.8L380.5,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,274.4,379.8,273.8,380.5,273.8z'/%3E %3Cpath id='Rectangle_2029' class='st0' d='M375.9,273.8L375.9,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,274.4,375.2,273.8,375.9,273.8z'/%3E %3Cpath id='Rectangle_2030' class='st0' d='M371.3,273.8L371.3,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,274.4,370.6,273.8,371.3,273.8z'/%3E %3Cpath id='Rectangle_2031' class='st0' d='M366.7,273.8L366.7,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,274.4,365.9,273.8,366.7,273.8z'/%3E %3Cpath id='Rectangle_2032' class='st0' d='M362.1,273.8L362.1,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,274.4,361.3,273.8,362.1,273.8z'/%3E %3Cpath id='Rectangle_2033' class='st0' d='M357.5,273.8L357.5,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,274.4,356.7,273.8,357.5,273.8z'/%3E %3Cpath id='Rectangle_2034' class='st0' d='M352.9,273.8L352.9,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C351.5,274.4,352.1,273.8,352.9,273.8z'/%3E %3Cpath id='Rectangle_2035' class='st0' d='M352.9,278.5L352.9,278.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C351.5,279.1,352.1,278.5,352.9,278.5z'/%3E %3Cpath id='Rectangle_2036' class='st0' d='M348.3,273.8L348.3,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C346.9,274.4,347.5,273.8,348.3,273.8z'/%3E %3Cpath id='Rectangle_2037' class='st0' d='M343.7,273.8L343.7,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C342.3,274.4,342.9,273.8,343.7,273.8z'/%3E %3Cpath id='Rectangle_2038' class='st0' d='M339.1,273.8L339.1,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C337.7,274.4,338.3,273.8,339.1,273.8z'/%3E %3Cpath id='Rectangle_2039' class='st0' d='M334.5,273.8L334.5,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C333.1,274.4,333.7,273.8,334.5,273.8z'/%3E %3Cpath id='Rectangle_2040' class='st0' d='M329.9,273.8L329.9,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C328.5,274.4,329.1,273.8,329.9,273.8z'/%3E %3Cpath id='Rectangle_2041' class='st0' d='M325.2,273.8L325.2,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,274.4,324.5,273.8,325.2,273.8z'/%3E %3Cpath id='Rectangle_2042' class='st0' d='M320.6,273.8L320.6,273.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C319.3,274.4,319.9,273.8,320.6,273.8z'/%3E %3Cpath id='Rectangle_2043' class='st0' d='M408.2,269.1L408.2,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,269.7,407.4,269.1,408.2,269.1z'/%3E %3Cpath id='Rectangle_2044' class='st0' d='M403.6,269.1L403.6,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,269.7,402.8,269.1,403.6,269.1z'/%3E %3Cpath id='Rectangle_2045' class='st0' d='M399,269.1L399,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,269.7,398.2,269.1,399,269.1z'/%3E %3Cpath id='Rectangle_2046' class='st0' d='M394.4,269.1L394.4,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,269.7,393.6,269.1,394.4,269.1z'/%3E %3Cpath id='Rectangle_2047' class='st0' d='M389.8,269.1L389.8,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,269.7,389,269.1,389.8,269.1z'/%3E %3Cpath id='Rectangle_2048' class='st0' d='M385.1,269.1L385.1,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,269.7,384.4,269.1,385.1,269.1z'/%3E %3Cpath id='Rectangle_2049' class='st0' d='M380.5,269.1L380.5,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,269.7,379.8,269.1,380.5,269.1z'/%3E %3Cpath id='Rectangle_2050' class='st0' d='M375.9,269.1L375.9,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,269.7,375.2,269.1,375.9,269.1z'/%3E %3Cpath id='Rectangle_2051' class='st0' d='M371.3,269.1L371.3,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,269.7,370.6,269.1,371.3,269.1z'/%3E %3Cpath id='Rectangle_2052' class='st0' d='M366.7,269.1L366.7,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,269.7,365.9,269.1,366.7,269.1z'/%3E %3Cpath id='Rectangle_2053' class='st0' d='M362.1,269.1L362.1,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,269.7,361.3,269.1,362.1,269.1z'/%3E %3Cpath id='Rectangle_2054' class='st0' d='M357.5,269.1L357.5,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,269.7,356.7,269.1,357.5,269.1z'/%3E %3Cpath id='Rectangle_2055' class='st0' d='M348.3,269.1L348.3,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C346.9,269.7,347.5,269.1,348.3,269.1z'/%3E %3Cpath id='Rectangle_2056' class='st0' d='M343.7,269.1L343.7,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C342.3,269.7,342.9,269.1,343.7,269.1z'/%3E %3Cpath id='Rectangle_2057' class='st0' d='M339.1,269.1L339.1,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C337.7,269.7,338.3,269.1,339.1,269.1z'/%3E %3Cpath id='Rectangle_2058' class='st0' d='M325.2,269.1L325.2,269.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,269.7,324.5,269.1,325.2,269.1z'/%3E %3Cpath id='Rectangle_2059' class='st0' d='M403.6,264.4L403.6,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,265,402.8,264.4,403.6,264.4z'/%3E %3Cpath id='Rectangle_2060' class='st0' d='M399,264.4L399,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,265,398.2,264.4,399,264.4z'/%3E %3Cpath id='Rectangle_2061' class='st0' d='M394.4,264.4L394.4,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,265,393.6,264.4,394.4,264.4z'/%3E %3Cpath id='Rectangle_2062' class='st0' d='M389.8,264.4L389.8,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,265,389,264.4,389.8,264.4z'/%3E %3Cpath id='Rectangle_2063' class='st0' d='M385.1,264.4L385.1,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,265,384.4,264.4,385.1,264.4z'/%3E %3Cpath id='Rectangle_2064' class='st0' d='M380.5,264.4L380.5,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,265,379.8,264.4,380.5,264.4z'/%3E %3Cpath id='Rectangle_2065' class='st0' d='M375.9,264.4L375.9,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,265,375.2,264.4,375.9,264.4z'/%3E %3Cpath id='Rectangle_2066' class='st0' d='M371.3,264.4L371.3,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,265,370.6,264.4,371.3,264.4z'/%3E %3Cpath id='Rectangle_2067' class='st0' d='M366.7,264.4L366.7,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,265,365.9,264.4,366.7,264.4z'/%3E %3Cpath id='Rectangle_2068' class='st0' d='M362.1,264.4L362.1,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,265,361.3,264.4,362.1,264.4z'/%3E %3Cpath id='Rectangle_2069' class='st0' d='M357.5,264.4L357.5,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C356.1,265,356.7,264.4,357.5,264.4z'/%3E %3Cpath id='Rectangle_2070' class='st0' d='M325.2,264.4L325.2,264.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C323.9,265,324.5,264.4,325.2,264.4z'/%3E %3Cpath id='Rectangle_2071' class='st0' d='M403.6,259.7L403.6,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,260.4,402.8,259.7,403.6,259.7z'/%3E %3Cpath id='Rectangle_2072' class='st0' d='M399,259.7L399,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,260.4,398.2,259.7,399,259.7z'/%3E %3Cpath id='Rectangle_2073' class='st0' d='M394.4,259.7L394.4,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,260.4,393.6,259.7,394.4,259.7z'/%3E %3Cpath id='Rectangle_2074' class='st0' d='M389.8,259.7L389.8,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,260.4,389,259.7,389.8,259.7z'/%3E %3Cpath id='Rectangle_2075' class='st0' d='M385.1,259.7L385.1,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,260.4,384.4,259.7,385.1,259.7z'/%3E %3Cpath id='Rectangle_2076' class='st0' d='M380.5,259.7L380.5,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,260.4,379.8,259.7,380.5,259.7z'/%3E %3Cpath id='Rectangle_2077' class='st0' d='M375.9,259.7L375.9,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,260.4,375.2,259.7,375.9,259.7z'/%3E %3Cpath id='Rectangle_2078' class='st0' d='M371.3,259.7L371.3,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,260.4,370.6,259.7,371.3,259.7z'/%3E %3Cpath id='Rectangle_2079' class='st0' d='M366.7,259.7L366.7,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,260.4,365.9,259.7,366.7,259.7z'/%3E %3Cpath id='Rectangle_2080' class='st0' d='M362.1,259.7L362.1,259.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C360.7,260.4,361.3,259.7,362.1,259.7z'/%3E %3Cpath id='Rectangle_2081' class='st0' d='M408.2,255.1L408.2,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,255.7,407.4,255.1,408.2,255.1z'/%3E %3Cpath id='Rectangle_2082' class='st0' d='M403.6,255.1L403.6,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,255.7,402.8,255.1,403.6,255.1z'/%3E %3Cpath id='Rectangle_2083' class='st0' d='M399,255.1L399,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,255.7,398.2,255.1,399,255.1z'/%3E %3Cpath id='Rectangle_2084' class='st0' d='M394.4,255.1L394.4,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,255.7,393.6,255.1,394.4,255.1z'/%3E %3Cpath id='Rectangle_2085' class='st0' d='M389.8,255.1L389.8,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,255.7,389,255.1,389.8,255.1z'/%3E %3Cpath id='Rectangle_2086' class='st0' d='M385.1,255.1L385.1,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,255.7,384.4,255.1,385.1,255.1z'/%3E %3Cpath id='Rectangle_2087' class='st0' d='M380.5,255.1L380.5,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,255.7,379.8,255.1,380.5,255.1z'/%3E %3Cpath id='Rectangle_2088' class='st0' d='M375.9,255.1L375.9,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,255.7,375.2,255.1,375.9,255.1z'/%3E %3Cpath id='Rectangle_2089' class='st0' d='M371.3,255.1L371.3,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,255.7,370.6,255.1,371.3,255.1z'/%3E %3Cpath id='Rectangle_2090' class='st0' d='M366.7,255.1L366.7,255.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,255.7,365.9,255.1,366.7,255.1z'/%3E %3Cpath id='Rectangle_2091' class='st0' d='M408.2,250.4L408.2,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,251,407.4,250.4,408.2,250.4z'/%3E %3Cpath id='Rectangle_2092' class='st0' d='M403.6,250.4L403.6,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,251,402.8,250.4,403.6,250.4z'/%3E %3Cpath id='Rectangle_2093' class='st0' d='M399,250.4L399,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,251,398.2,250.4,399,250.4z'/%3E %3Cpath id='Rectangle_2094' class='st0' d='M394.4,250.4L394.4,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,251,393.6,250.4,394.4,250.4z'/%3E %3Cpath id='Rectangle_2095' class='st0' d='M389.8,250.4L389.8,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,251,389,250.4,389.8,250.4z'/%3E %3Cpath id='Rectangle_2096' class='st0' d='M385.1,250.4L385.1,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,251,384.4,250.4,385.1,250.4z'/%3E %3Cpath id='Rectangle_2097' class='st0' d='M380.5,250.4L380.5,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,251,379.8,250.4,380.5,250.4z'/%3E %3Cpath id='Rectangle_2098' class='st0' d='M375.9,250.4L375.9,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C374.5,251,375.2,250.4,375.9,250.4z'/%3E %3Cpath id='Rectangle_2099' class='st0' d='M366.7,250.4L366.7,250.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,251,365.9,250.4,366.7,250.4z'/%3E %3Cpath id='Rectangle_2100' class='st0' d='M408.2,245.7L408.2,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,246.3,407.4,245.7,408.2,245.7z'/%3E %3Cpath id='Rectangle_2101' class='st0' d='M403.6,245.7L403.6,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,246.3,402.8,245.7,403.6,245.7z'/%3E %3Cpath id='Rectangle_2102' class='st0' d='M399,245.7L399,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,246.3,398.2,245.7,399,245.7z'/%3E %3Cpath id='Rectangle_2103' class='st0' d='M394.4,245.7L394.4,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,246.3,393.6,245.7,394.4,245.7z'/%3E %3Cpath id='Rectangle_2104' class='st0' d='M389.8,245.7L389.8,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,246.3,389,245.7,389.8,245.7z'/%3E %3Cpath id='Rectangle_2105' class='st0' d='M385.1,245.7L385.1,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,246.3,384.4,245.7,385.1,245.7z'/%3E %3Cpath id='Rectangle_2106' class='st0' d='M371.3,245.7L371.3,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C369.9,246.3,370.6,245.7,371.3,245.7z'/%3E %3Cpath id='Rectangle_2107' class='st0' d='M366.7,245.7L366.7,245.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C365.3,246.3,365.9,245.7,366.7,245.7z'/%3E %3Cpath id='Rectangle_2108' class='st0' d='M408.2,241L408.2,241c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,241.6,407.4,241,408.2,241z'/%3E %3Cpath id='Rectangle_2109' class='st0' d='M403.6,241L403.6,241c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,241.6,402.8,241,403.6,241z'/%3E %3Cpath id='Rectangle_2110' class='st0' d='M399,241L399,241c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,241.6,398.2,241,399,241z'/%3E %3Cpath id='Rectangle_2111' class='st0' d='M394.4,241L394.4,241c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,241.6,393.6,241,394.4,241z'/%3E %3Cpath id='Rectangle_2112' class='st0' d='M389.8,241L389.8,241c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C388.4,241.6,389,241,389.8,241z'/%3E %3Cpath id='Rectangle_2113' class='st0' d='M380.5,241L380.5,241c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,241.6,379.8,241,380.5,241z'/%3E %3Cpath id='Rectangle_2114' class='st0' d='M408.2,236.3L408.2,236.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,236.9,407.4,236.3,408.2,236.3z'/%3E %3Cpath id='Rectangle_2115' class='st0' d='M403.6,236.3L403.6,236.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,236.9,402.8,236.3,403.6,236.3z'/%3E %3Cpath id='Rectangle_2116' class='st0' d='M399,236.3L399,236.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,236.9,398.2,236.3,399,236.3z'/%3E %3Cpath id='Rectangle_2117' class='st0' d='M394.4,236.3L394.4,236.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,236.9,393.6,236.3,394.4,236.3z'/%3E %3Cpath id='Rectangle_2118' class='st0' d='M385.1,236.3L385.1,236.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C383.8,236.9,384.4,236.3,385.1,236.3z'/%3E %3Cpath id='Rectangle_2119' class='st0' d='M380.5,236.3L380.5,236.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C379.1,236.9,379.8,236.3,380.5,236.3z'/%3E %3Cpath id='Rectangle_2120' class='st0' d='M412.8,231.6L412.8,231.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,232.3,412,231.6,412.8,231.6z'/%3E %3Cpath id='Rectangle_2121' class='st0' d='M408.2,231.6L408.2,231.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,232.3,407.4,231.6,408.2,231.6z'/%3E %3Cpath id='Rectangle_2122' class='st0' d='M403.6,231.6L403.6,231.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,232.3,402.8,231.6,403.6,231.6z'/%3E %3Cpath id='Rectangle_2123' class='st0' d='M399,231.6L399,231.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,232.3,398.2,231.6,399,231.6z'/%3E %3Cpath id='Rectangle_2124' class='st0' d='M394.4,231.6L394.4,231.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,232.3,393.6,231.6,394.4,231.6z'/%3E %3Cpath id='Rectangle_2125' class='st0' d='M417.4,227L417.4,227c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,227.6,416.6,227,417.4,227z'/%3E %3Cpath id='Rectangle_2126' class='st0' d='M412.8,227L412.8,227c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,227.6,412,227,412.8,227z'/%3E %3Cpath id='Rectangle_2127' class='st0' d='M408.2,227L408.2,227c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,227.6,407.4,227,408.2,227z'/%3E %3Cpath id='Rectangle_2128' class='st0' d='M403.6,227L403.6,227c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,227.6,402.8,227,403.6,227z'/%3E %3Cpath id='Rectangle_2129' class='st0' d='M399,227L399,227c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,227.6,398.2,227,399,227z'/%3E %3Cpath id='Rectangle_2130' class='st0' d='M417.4,222.3L417.4,222.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,222.9,416.6,222.3,417.4,222.3z'/%3E %3Cpath id='Rectangle_2131' class='st0' d='M412.8,222.3L412.8,222.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,222.9,412,222.3,412.8,222.3z'/%3E %3Cpath id='Rectangle_2132' class='st0' d='M408.2,222.3L408.2,222.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,222.9,407.4,222.3,408.2,222.3z'/%3E %3Cpath id='Rectangle_2133' class='st0' d='M403.6,222.3L403.6,222.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,222.9,402.8,222.3,403.6,222.3z'/%3E %3Cpath id='Rectangle_2134' class='st0' d='M399,222.3L399,222.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,222.9,398.2,222.3,399,222.3z'/%3E %3Cpath id='Rectangle_2135' class='st0' d='M394.4,222.3L394.4,222.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,222.9,393.6,222.3,394.4,222.3z'/%3E %3Cpath id='Rectangle_2136' class='st0' d='M422,217.6L422,217.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,218.2,421.2,217.6,422,217.6z'/%3E %3Cpath id='Rectangle_2137' class='st0' d='M417.4,217.6L417.4,217.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,218.2,416.6,217.6,417.4,217.6z'/%3E %3Cpath id='Rectangle_2138' class='st0' d='M412.8,217.6L412.8,217.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,218.2,412,217.6,412.8,217.6z'/%3E %3Cpath id='Rectangle_2139' class='st0' d='M408.2,217.6L408.2,217.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,218.2,407.4,217.6,408.2,217.6z'/%3E %3Cpath id='Rectangle_2140' class='st0' d='M403.6,217.6L403.6,217.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,218.2,402.8,217.6,403.6,217.6z'/%3E %3Cpath id='Rectangle_2141' class='st0' d='M399,217.6L399,217.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,218.2,398.2,217.6,399,217.6z'/%3E %3Cpath id='Rectangle_2142' class='st0' d='M417.4,212.9L417.4,212.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,213.5,416.6,212.9,417.4,212.9z'/%3E %3Cpath id='Rectangle_2143' class='st0' d='M412.8,212.9L412.8,212.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,213.5,412,212.9,412.8,212.9z'/%3E %3Cpath id='Rectangle_2144' class='st0' d='M408.2,212.9L408.2,212.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,213.5,407.4,212.9,408.2,212.9z'/%3E %3Cpath id='Rectangle_2145' class='st0' d='M403.6,212.9L403.6,212.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,213.5,402.8,212.9,403.6,212.9z'/%3E %3Cpath id='Rectangle_2146' class='st0' d='M399,212.9L399,212.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,213.5,398.2,212.9,399,212.9z'/%3E %3Cpath id='Rectangle_2147' class='st0' d='M417.4,208.2L417.4,208.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,208.9,416.6,208.2,417.4,208.2z'/%3E %3Cpath id='Rectangle_2148' class='st0' d='M412.8,208.2L412.8,208.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,208.9,412,208.2,412.8,208.2z'/%3E %3Cpath id='Rectangle_2149' class='st0' d='M408.2,208.2L408.2,208.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,208.9,407.4,208.2,408.2,208.2z'/%3E %3Cpath id='Rectangle_2150' class='st0' d='M403.6,208.2L403.6,208.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,208.9,402.8,208.2,403.6,208.2z'/%3E %3Cpath id='Rectangle_2151' class='st0' d='M399,208.2L399,208.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,208.9,398.2,208.2,399,208.2z'/%3E %3Cpath id='Rectangle_2152' class='st0' d='M417.4,203.6L417.4,203.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,204.2,416.6,203.6,417.4,203.6z'/%3E %3Cpath id='Rectangle_2153' class='st0' d='M412.8,203.6L412.8,203.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,204.2,412,203.6,412.8,203.6z'/%3E %3Cpath id='Rectangle_2154' class='st0' d='M408.2,203.6L408.2,203.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,204.2,407.4,203.6,408.2,203.6z'/%3E %3Cpath id='Rectangle_2155' class='st0' d='M403.6,203.6L403.6,203.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,204.2,402.8,203.6,403.6,203.6z'/%3E %3Cpath id='Rectangle_2156' class='st0' d='M399,203.6L399,203.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,204.2,398.2,203.6,399,203.6z'/%3E %3Cpath id='Rectangle_2157' class='st0' d='M412.8,198.9L412.8,198.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,199.5,412,198.9,412.8,198.9z'/%3E %3Cpath id='Rectangle_2158' class='st0' d='M408.2,198.9L408.2,198.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,199.5,407.4,198.9,408.2,198.9z'/%3E %3Cpath id='Rectangle_2159' class='st0' d='M403.6,198.9L403.6,198.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,199.5,402.8,198.9,403.6,198.9z'/%3E %3Cpath id='Rectangle_2160' class='st0' d='M412.8,194.2L412.8,194.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,194.8,412,194.2,412.8,194.2z'/%3E %3Cpath id='Rectangle_2161' class='st0' d='M408.2,194.2L408.2,194.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,194.8,407.4,194.2,408.2,194.2z'/%3E %3Cpath id='Rectangle_2162' class='st0' d='M403.6,194.2L403.6,194.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,194.8,402.8,194.2,403.6,194.2z'/%3E %3Cpath id='Rectangle_2163' class='st0' d='M403.6,189.5L403.6,189.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,190.1,402.8,189.5,403.6,189.5z'/%3E %3Cpath id='Rectangle_2164' class='st0' d='M399,189.5L399,189.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,190.1,398.2,189.5,399,189.5z'/%3E %3Cpath id='Rectangle_2165' class='st0' d='M412.8,189.5L412.8,189.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,190.1,412,189.5,412.8,189.5z'/%3E %3Cpath id='Rectangle_2166' class='st0' d='M431.2,180.4L431.2,180.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,181,430.4,180.4,431.2,180.4z'/%3E %3Cpath id='Rectangle_2167' class='st0' d='M426.6,180.4L426.6,180.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,181,425.8,180.4,426.6,180.4z'/%3E %3Cpath id='Rectangle_2168' class='st0' d='M403.6,180.4L403.6,180.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,181,402.8,180.4,403.6,180.4z'/%3E %3Cpath id='Rectangle_2169' class='st0' d='M399,180.4L399,180.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,181,398.2,180.4,399,180.4z'/%3E %3Cpath id='Rectangle_2170' class='st0' d='M394.4,180.4L394.4,180.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C393,181,393.6,180.4,394.4,180.4z'/%3E %3Cpath id='Rectangle_2171' class='st0' d='M435.8,175.7L435.8,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,176.3,435.1,175.7,435.8,175.7z'/%3E %3Cpath id='Rectangle_2172' class='st0' d='M431.2,175.7L431.2,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,176.3,430.4,175.7,431.2,175.7z'/%3E %3Cpath id='Rectangle_2173' class='st0' d='M426.6,175.7L426.6,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,176.3,425.8,175.7,426.6,175.7z'/%3E %3Cpath id='Rectangle_2174' class='st0' d='M422,175.7L422,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,176.3,421.2,175.7,422,175.7z'/%3E %3Cpath id='Rectangle_2175' class='st0' d='M408.2,175.7L408.2,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,176.3,407.4,175.7,408.2,175.7z'/%3E %3Cpath id='Rectangle_2176' class='st0' d='M403.6,175.7L403.6,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,176.3,402.8,175.7,403.6,175.7z'/%3E %3Cpath id='Rectangle_2177' class='st0' d='M399,175.7L399,175.7c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C397.6,176.3,398.2,175.7,399,175.7z'/%3E %3Cpath id='Rectangle_2178' class='st0' d='M449.4,171L449.4,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C448,171.6,448.7,171,449.4,171z'/%3E %3Cpath id='Rectangle_2179' class='st0' d='M440.2,171L440.2,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C438.8,171.6,439.4,171,440.2,171z'/%3E %3Cpath id='Rectangle_2180' class='st0' d='M435.8,171L435.8,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,171.6,435.1,171,435.8,171z'/%3E %3Cpath id='Rectangle_2181' class='st0' d='M431.2,171L431.2,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,171.6,430.4,171,431.2,171z'/%3E %3Cpath id='Rectangle_2182' class='st0' d='M426.6,171L426.6,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,171.6,425.8,171,426.6,171z'/%3E %3Cpath id='Rectangle_2183' class='st0' d='M422,171L422,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,171.6,421.2,171,422,171z'/%3E %3Cpath id='Rectangle_2184' class='st0' d='M417.4,171L417.4,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,171.6,416.6,171,417.4,171z'/%3E %3Cpath id='Rectangle_2185' class='st0' d='M412.8,171L412.8,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,171.6,412,171,412.8,171z'/%3E %3Cpath id='Rectangle_2186' class='st0' d='M408.2,171L408.2,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,171.6,407.4,171,408.2,171z'/%3E %3Cpath id='Rectangle_2187' class='st0' d='M403.6,171L403.6,171c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,171.6,402.8,171,403.6,171z'/%3E %3Cpath id='Rectangle_2188' class='st0' d='M458.7,166.3L458.7,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C457.3,166.9,457.9,166.3,458.7,166.3z'/%3E %3Cpath id='Rectangle_2189' class='st0' d='M454.1,166.3L454.1,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C452.7,166.9,453.3,166.3,454.1,166.3z'/%3E %3Cpath id='Rectangle_2190' class='st0' d='M449.4,166.3L449.4,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C448,166.9,448.7,166.3,449.4,166.3z'/%3E %3Cpath id='Rectangle_2191' class='st0' d='M444.8,166.3L444.8,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C443.4,166.9,444,166.3,444.8,166.3z'/%3E %3Cpath id='Rectangle_2192' class='st0' d='M440.2,166.3L440.2,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C438.8,166.9,439.4,166.3,440.2,166.3z'/%3E %3Cpath id='Rectangle_2193' class='st0' d='M435.8,166.3L435.8,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,166.9,435.1,166.3,435.8,166.3z'/%3E %3Cpath id='Rectangle_2194' class='st0' d='M431.2,166.3L431.2,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,166.9,430.4,166.3,431.2,166.3z'/%3E %3Cpath id='Rectangle_2195' class='st0' d='M426.6,166.3L426.6,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,166.9,425.8,166.3,426.6,166.3z'/%3E %3Cpath id='Rectangle_2196' class='st0' d='M422,166.3L422,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,166.9,421.2,166.3,422,166.3z'/%3E %3Cpath id='Rectangle_2197' class='st0' d='M417.4,166.3L417.4,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,166.9,416.6,166.3,417.4,166.3z'/%3E %3Cpath id='Rectangle_2198' class='st0' d='M412.8,166.3L412.8,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,166.9,412,166.3,412.8,166.3z'/%3E %3Cpath id='Rectangle_2199' class='st0' d='M408.2,166.3L408.2,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C406.8,166.9,407.4,166.3,408.2,166.3z'/%3E %3Cpath id='Rectangle_2200' class='st0' d='M403.6,166.3L403.6,166.3c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C402.2,166.9,402.8,166.3,403.6,166.3z'/%3E %3Cpath id='Rectangle_2201' class='st0' d='M463.3,161.6L463.3,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C461.9,162.2,462.6,161.6,463.3,161.6z'/%3E %3Cpath id='Rectangle_2202' class='st0' d='M454.1,161.6L454.1,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C452.7,162.2,453.3,161.6,454.1,161.6z'/%3E %3Cpath id='Rectangle_2203' class='st0' d='M449.4,161.6L449.4,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C448,162.2,448.7,161.6,449.4,161.6z'/%3E %3Cpath id='Rectangle_2204' class='st0' d='M444.8,161.6L444.8,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C443.4,162.2,444,161.6,444.8,161.6z'/%3E %3Cpath id='Rectangle_2205' class='st0' d='M440.2,161.6L440.2,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C438.8,162.2,439.4,161.6,440.2,161.6z'/%3E %3Cpath id='Rectangle_2206' class='st0' d='M435.8,161.6L435.8,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,162.2,435.1,161.6,435.8,161.6z'/%3E %3Cpath id='Rectangle_2207' class='st0' d='M431.2,161.6L431.2,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,162.2,430.4,161.6,431.2,161.6z'/%3E %3Cpath id='Rectangle_2208' class='st0' d='M426.6,161.6L426.6,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,162.2,425.8,161.6,426.6,161.6z'/%3E %3Cpath id='Rectangle_2209' class='st0' d='M422,161.6L422,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,162.2,421.2,161.6,422,161.6z'/%3E %3Cpath id='Rectangle_2210' class='st0' d='M417.4,161.6L417.4,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,162.2,416.6,161.6,417.4,161.6z'/%3E %3Cpath id='Rectangle_2211' class='st0' d='M412.8,161.6L412.8,161.6c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,162.2,412,161.6,412.8,161.6z'/%3E %3Cpath id='Rectangle_2212' class='st0' d='M472.6,156.9L472.6,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C471.2,157.5,471.8,156.9,472.6,156.9z'/%3E %3Cpath id='Rectangle_2213' class='st0' d='M458.7,156.9L458.7,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C457.3,157.5,457.9,156.9,458.7,156.9z'/%3E %3Cpath id='Rectangle_2214' class='st0' d='M454.1,156.9L454.1,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C452.7,157.5,453.3,156.9,454.1,156.9z'/%3E %3Cpath id='Rectangle_2215' class='st0' d='M449.4,156.9L449.4,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C448,157.5,448.7,156.9,449.4,156.9z'/%3E %3Cpath id='Rectangle_2216' class='st0' d='M444.8,156.9L444.8,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C443.4,157.5,444,156.9,444.8,156.9z'/%3E %3Cpath id='Rectangle_2217' class='st0' d='M440.2,156.9L440.2,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C438.8,157.5,439.4,156.9,440.2,156.9z'/%3E %3Cpath id='Rectangle_2218' class='st0' d='M435.8,156.9L435.8,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,157.5,435.1,156.9,435.8,156.9z'/%3E %3Cpath id='Rectangle_2219' class='st0' d='M431.2,156.9L431.2,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,157.5,430.4,156.9,431.2,156.9z'/%3E %3Cpath id='Rectangle_2220' class='st0' d='M426.6,156.9L426.6,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,157.5,425.8,156.9,426.6,156.9z'/%3E %3Cpath id='Rectangle_2221' class='st0' d='M422,156.9L422,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,157.5,421.2,156.9,422,156.9z'/%3E %3Cpath id='Rectangle_2222' class='st0' d='M417.4,156.9L417.4,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,157.5,416.6,156.9,417.4,156.9z'/%3E %3Cpath id='Rectangle_2223' class='st0' d='M412.8,156.9L412.8,156.9c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,157.5,412,156.9,412.8,156.9z'/%3E %3Cpath id='Rectangle_2224' class='st0' d='M463.3,152.2L463.3,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C461.9,152.8,462.6,152.2,463.3,152.2z'/%3E %3Cpath id='Rectangle_2225' class='st0' d='M454.1,152.2L454.1,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C452.7,152.8,453.3,152.2,454.1,152.2z'/%3E %3Cpath id='Rectangle_2226' class='st0' d='M444.8,152.2L444.8,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C443.4,152.8,444,152.2,444.8,152.2z'/%3E %3Cpath id='Rectangle_2227' class='st0' d='M440.2,152.2L440.2,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C438.8,152.8,439.4,152.2,440.2,152.2z'/%3E %3Cpath id='Rectangle_2228' class='st0' d='M435.8,152.2L435.8,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,152.8,435.1,152.2,435.8,152.2z'/%3E %3Cpath id='Rectangle_2229' class='st0' d='M431.2,152.2L431.2,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,152.8,430.4,152.2,431.2,152.2z'/%3E %3Cpath id='Rectangle_2230' class='st0' d='M426.6,152.2L426.6,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,152.8,425.8,152.2,426.6,152.2z'/%3E %3Cpath id='Rectangle_2231' class='st0' d='M422,152.2L422,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,152.8,421.2,152.2,422,152.2z'/%3E %3Cpath id='Rectangle_2232' class='st0' d='M417.4,152.2L417.4,152.2c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,152.8,416.6,152.2,417.4,152.2z'/%3E %3Cpath id='Rectangle_2233' class='st0' d='M472.6,147.5L472.6,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C471.2,148.1,471.8,147.5,472.6,147.5z'/%3E %3Cpath id='Rectangle_2234' class='st0' d='M468,147.5L468,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C466.6,148.1,467.2,147.5,468,147.5z'/%3E %3Cpath id='Rectangle_2235' class='st0' d='M463.3,147.5L463.3,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C461.9,148.1,462.6,147.5,463.3,147.5z'/%3E %3Cpath id='Rectangle_2236' class='st0' d='M435.8,147.5L435.8,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C434.4,148.1,435.1,147.5,435.8,147.5z'/%3E %3Cpath id='Rectangle_2237' class='st0' d='M431.2,147.5L431.2,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,148.1,430.4,147.5,431.2,147.5z'/%3E %3Cpath id='Rectangle_2238' class='st0' d='M426.6,147.5L426.6,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,148.1,425.8,147.5,426.6,147.5z'/%3E %3Cpath id='Rectangle_2239' class='st0' d='M422,147.5L422,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,148.1,421.2,147.5,422,147.5z'/%3E %3Cpath id='Rectangle_2240' class='st0' d='M417.4,147.5L417.4,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,148.1,416.6,147.5,417.4,147.5z'/%3E %3Cpath id='Rectangle_2241' class='st0' d='M412.8,147.5L412.8,147.5c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,148.1,412,147.5,412.8,147.5z'/%3E %3Cpath id='Rectangle_2242' class='st0' d='M477.2,142.8L477.2,142.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C475.8,143.4,476.5,142.8,477.2,142.8z'/%3E %3Cpath id='Rectangle_2243' class='st0' d='M431.2,142.8L431.2,142.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C429.8,143.4,430.4,142.8,431.2,142.8z'/%3E %3Cpath id='Rectangle_2244' class='st0' d='M426.6,142.8L426.6,142.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,143.4,425.8,142.8,426.6,142.8z'/%3E %3Cpath id='Rectangle_2245' class='st0' d='M422,142.8L422,142.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,143.4,421.2,142.8,422,142.8z'/%3E %3Cpath id='Rectangle_2246' class='st0' d='M417.4,142.8L417.4,142.8c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,143.4,416.6,142.8,417.4,142.8z'/%3E %3Cpath id='Rectangle_2247' class='st0' d='M486.5,138.1L486.5,138.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C485.1,138.7,485.7,138.1,486.5,138.1z'/%3E %3Cpath id='Rectangle_2248' class='st0' d='M481.8,138.1L481.8,138.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C480.5,138.7,481.1,138.1,481.8,138.1z'/%3E %3Cpath id='Rectangle_2249' class='st0' d='M426.6,138.1L426.6,138.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C425.2,138.7,425.8,138.1,426.6,138.1z'/%3E %3Cpath id='Rectangle_2250' class='st0' d='M422,138.1L422,138.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,138.7,421.2,138.1,422,138.1z'/%3E %3Cpath id='Rectangle_2251' class='st0' d='M417.4,138.1L417.4,138.1c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,138.7,416.6,138.1,417.4,138.1z'/%3E %3Cpath id='Rectangle_2252' class='st0' d='M491.1,133.4L491.1,133.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C489.7,134,490.3,133.4,491.1,133.4z'/%3E %3Cpath id='Rectangle_2253' class='st0' d='M486.5,133.4L486.5,133.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C485.1,134,485.7,133.4,486.5,133.4z'/%3E %3Cpath id='Rectangle_2254' class='st0' d='M422,133.4L422,133.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4l0,0 c-0.8,0-1.4-0.6-1.4-1.4v0C420.6,134,421.2,133.4,422,133.4z'/%3E %3Cpath id='Rectangle_2255' class='st0' d='M417.4,133.4L417.4,133.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,134,416.6,133.4,417.4,133.4z'/%3E %3Cpath id='Rectangle_2256' class='st0' d='M417.4,128.4L417.4,128.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C416,129,416.6,128.4,417.4,128.4z'/%3E %3Cpath id='Rectangle_2257' class='st0' d='M412.8,133.4L412.8,133.4c0.8,0,1.4,0.6,1.4,1.4v0c0,0.8-0.6,1.4-1.4,1.4h0 c-0.8,0-1.4-0.6-1.4-1.4v0C411.4,134,412,133.4,412.8,133.4z'/%3E %3C/g%3E %3Cg id='Component_82_3' transform='translate(137 107.436)'%3E %3Cg id='Path_1822'%3E %3Cpath class='st1' d='M13,25.6c-3.4,0-6.5-1.3-8.9-3.7c-2.4-2.4-3.7-5.6-3.7-8.9c0-3.4,1.3-6.5,3.7-8.9C6.4,1.7,9.6,0.4,13,0.4 c3.4,0,6.5,1.3,8.9,3.7c2.4,2.4,3.7,5.6,3.7,8.9c0,3.4-1.3,6.5-3.7,8.9C19.5,24.3,16.3,25.6,13,25.6z'/%3E %3Cpath d='M13,0.8c-3.2,0-6.3,1.3-8.6,3.6C2.1,6.6,0.8,9.8,0.8,13c0,3.3,1.3,6.3,3.6,8.6c2.3,2.3,5.4,3.6,8.6,3.6 c3.3,0,6.3-1.3,8.6-3.6c2.3-2.3,3.6-5.4,3.6-8.6c0-3.3-1.3-6.3-3.6-8.6C19.3,2.1,16.2,0.8,13,0.8 M13,0c7.2,0,13,5.8,13,13 c0,7.2-5.8,13-13,13S0,20.2,0,13C0,5.8,5.8,0,13,0L13,0z'/%3E %3C/g%3E %3Cg id='Group_2764' transform='translate(6.52 7.242)'%3E %3Cg id='Group_2712'%3E %3Cpath id='Path_1807' class='st2' d='M0,5.4L6.5,0L13,5.4'/%3E %3Cpath id='Path_1808' class='st2' d='M2.7,6.2v5.4h7.6V6.2'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3Cg id='Component_82_5' transform='translate(114 131.436)'%3E %3Cg id='Path_1822-2'%3E %3Cpath class='st1' d='M13,25.6c-3.4,0-6.5-1.3-8.9-3.7c-2.4-2.4-3.7-5.6-3.7-8.9c0-3.4,1.3-6.5,3.7-8.9C6.4,1.7,9.6,0.4,13,0.4 c3.4,0,6.5,1.3,8.9,3.7c2.4,2.4,3.7,5.6,3.7,8.9c0,3.4-1.3,6.5-3.7,8.9C19.5,24.3,16.3,25.6,13,25.6z'/%3E %3Cpath d='M13,0.8c-3.2,0-6.3,1.3-8.6,3.6C2.1,6.6,0.8,9.8,0.8,13c0,3.3,1.3,6.3,3.6,8.6c2.3,2.3,5.4,3.6,8.6,3.6 c3.3,0,6.3-1.3,8.6-3.6c2.3-2.3,3.6-5.4,3.6-8.6c0-3.3-1.3-6.3-3.6-8.6C19.3,2.1,16.2,0.8,13,0.8 M13,0c7.2,0,13,5.8,13,13 c0,7.2-5.8,13-13,13S0,20.2,0,13C0,5.8,5.8,0,13,0L13,0z'/%3E %3C/g%3E %3Cg id='Group_2764-2' transform='translate(6.52 7.242)'%3E %3Cg id='Group_2712-2'%3E %3Cpath id='Path_1807-2' class='st2' d='M0,5.4L6.5,0L13,5.4'/%3E %3Cpath id='Path_1808-2' class='st2' d='M2.7,6.2v5.4h7.6V6.2'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3Cg id='Component_82_7' transform='translate(97 166.436)'%3E %3Cg id='Path_1822-3'%3E %3Cpath class='st1' d='M13,25.6c-3.4,0-6.5-1.3-8.9-3.7c-2.4-2.4-3.7-5.6-3.7-8.9c0-3.4,1.3-6.5,3.7-8.9C6.4,1.7,9.6,0.4,13,0.4 c3.4,0,6.5,1.3,8.9,3.7c2.4,2.4,3.7,5.6,3.7,8.9c0,3.4-1.3,6.5-3.7,8.9C19.5,24.3,16.3,25.6,13,25.6z'/%3E %3Cpath d='M13,0.8c-3.2,0-6.3,1.3-8.6,3.6C2.1,6.6,0.8,9.8,0.8,13c0,3.3,1.3,6.3,3.6,8.6c2.3,2.3,5.4,3.6,8.6,3.6 c3.3,0,6.3-1.3,8.6-3.6c2.3-2.3,3.6-5.4,3.6-8.6c0-3.3-1.3-6.3-3.6-8.6C19.3,2.1,16.2,0.8,13,0.8 M13,0c7.2,0,13,5.8,13,13 c0,7.2-5.8,13-13,13S0,20.2,0,13C0,5.8,5.8,0,13,0L13,0z'/%3E %3C/g%3E %3Cg id='Group_2764-3' transform='translate(6.52 7.242)'%3E %3Cg id='Group_2712-3'%3E %3Cpath id='Path_1807-3' class='st2' d='M0,5.4L6.5,0L13,5.4'/%3E %3Cpath id='Path_1808-3' class='st2' d='M2.7,6.2v5.4h7.6V6.2'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3Cg id='Component_82_9' transform='translate(75 143.436)'%3E %3Cg id='Path_1822-4'%3E %3Cpath class='st1' d='M13,25.6c-3.4,0-6.5-1.3-8.9-3.7c-2.4-2.4-3.7-5.6-3.7-8.9c0-3.4,1.3-6.5,3.7-8.9C6.4,1.7,9.6,0.4,13,0.4 c3.4,0,6.5,1.3,8.9,3.7c2.4,2.4,3.7,5.6,3.7,8.9c0,3.4-1.3,6.5-3.7,8.9C19.5,24.3,16.3,25.6,13,25.6z'/%3E %3Cpath d='M13,0.8c-3.2,0-6.3,1.3-8.6,3.6C2.1,6.6,0.8,9.8,0.8,13c0,3.3,1.3,6.3,3.6,8.6c2.3,2.3,5.4,3.6,8.6,3.6 c3.3,0,6.3-1.3,8.6-3.6c2.3-2.3,3.6-5.4,3.6-8.6c0-3.3-1.3-6.3-3.6-8.6C19.3,2.1,16.2,0.8,13,0.8 M13,0c7.2,0,13,5.8,13,13 c0,7.2-5.8,13-13,13S0,20.2,0,13C0,5.8,5.8,0,13,0L13,0z'/%3E %3C/g%3E %3Cg id='Group_2764-4' transform='translate(6.52 7.242)'%3E %3Cg id='Group_2712-4'%3E %3Cpath id='Path_1807-4' class='st2' d='M0,5.4L6.5,0L13,5.4'/%3E %3Cpath id='Path_1808-4' class='st2' d='M2.7,6.2v5.4h7.6V6.2'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3Cg id='Component_82_11' transform='translate(62 181.436)'%3E %3Cg id='Path_1822-5'%3E %3Cpath class='st1' d='M13,25.6c-3.4,0-6.5-1.3-8.9-3.7c-2.4-2.4-3.7-5.6-3.7-8.9c0-3.4,1.3-6.5,3.7-8.9C6.4,1.7,9.6,0.4,13,0.4 c3.4,0,6.5,1.3,8.9,3.7c2.4,2.4,3.7,5.6,3.7,8.9c0,3.4-1.3,6.5-3.7,8.9C19.5,24.3,16.3,25.6,13,25.6z'/%3E %3Cpath d='M13,0.8c-3.2,0-6.3,1.3-8.6,3.6C2.1,6.6,0.8,9.8,0.8,13c0,3.3,1.3,6.3,3.6,8.6c2.3,2.3,5.4,3.6,8.6,3.6 c3.3,0,6.3-1.3,8.6-3.6c2.3-2.3,3.6-5.4,3.6-8.6c0-3.3-1.3-6.3-3.6-8.6C19.3,2.1,16.2,0.8,13,0.8 M13,0c7.2,0,13,5.8,13,13 c0,7.2-5.8,13-13,13S0,20.2,0,13C0,5.8,5.8,0,13,0L13,0z'/%3E %3C/g%3E %3Cg id='Group_2764-5' transform='translate(6.52 7.242)'%3E %3Cg id='Group_2712-5'%3E %3Cpath id='Path_1807-5' class='st2' d='M0,5.4L6.5,0L13,5.4'/%3E %3Cpath id='Path_1808-5' class='st2' d='M2.7,6.2v5.4h7.6V6.2'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3Cg id='Icon-House' transform='translate(160 126.436)'%3E %3Cg id='Path_1822-6'%3E %3Cpath class='st1' d='M18,35.6c-4.7,0-9.1-1.8-12.4-5.2C2.2,27.2,0.4,22.7,0.4,18c0-4.7,1.8-9.1,5.2-12.4C8.8,2.2,13.3,0.4,18,0.4 c4.7,0,9.1,1.8,12.4,5.2c3.3,3.3,5.2,7.8,5.2,12.4c0,4.7-1.8,9.1-5.2,12.4C27.2,33.8,22.7,35.6,18,35.6z'/%3E %3Cpath d='M18,0.8c-4.6,0-8.9,1.8-12.2,5c-3.2,3.2-5.1,7.6-5,12.2c0,4.6,1.8,8.9,5,12.2c3.2,3.2,7.6,5.1,12.2,5 c4.6,0,8.9-1.8,12.2-5c3.2-3.2,5.1-7.6,5-12.2c0-4.6-1.8-8.9-5-12.2C26.9,2.6,22.6,0.8,18,0.8 M18,0c9.9,0,18,8.1,18,18 s-8.1,18-18,18S0,27.9,0,18S8.1,0,18,0z'/%3E %3C/g%3E %3Cg id='Group_2804' transform='translate(9 10)'%3E %3Cg id='Group_2712-6'%3E %3Cpath id='Path_1807-6' class='st2' d='M0,7.4L9,0l9,7.4'/%3E %3Cpath id='Path_1808-6' class='st2' d='M3.7,8.6V16h10.6V8.6'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3Cg id='Component_82_1' transform='translate(178 16.436)'%3E %3Cg id='Path_1822-7'%3E %3Cpath class='st1' d='M13,25.6c-3.4,0-6.5-1.3-8.9-3.7c-2.4-2.4-3.7-5.6-3.7-8.9c0-3.4,1.3-6.5,3.7-8.9C6.4,1.7,9.6,0.4,13,0.4 c3.4,0,6.5,1.3,8.9,3.7c2.4,2.4,3.7,5.6,3.7,8.9c0,3.4-1.3,6.5-3.7,8.9C19.5,24.3,16.3,25.6,13,25.6z'/%3E %3Cpath d='M13,0.8c-3.2,0-6.3,1.3-8.6,3.6C2.1,6.6,0.8,9.8,0.8,13c0,3.3,1.3,6.3,3.6,8.6c2.3,2.3,5.4,3.6,8.6,3.6 c3.3,0,6.3-1.3,8.6-3.6c2.3-2.3,3.6-5.4,3.6-8.6c0-3.3-1.3-6.3-3.6-8.6C19.3,2.1,16.2,0.8,13,0.8 M13,0c7.2,0,13,5.8,13,13 c0,7.2-5.8,13-13,13S0,20.2,0,13C0,5.8,5.8,0,13,0L13,0z'/%3E %3C/g%3E %3Cg id='Group_2764-6' transform='translate(6.52 7.242)'%3E %3Cg id='Group_2712-7'%3E %3Cpath id='Path_1807-7' class='st2' d='M0,5.4L6.5,0L13,5.4'/%3E %3Cpath id='Path_1808-7' class='st2' d='M2.7,6.2v5.4h7.6V6.2'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.what-is-address-service-info {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;

  border: 1px solid #b5b5b5;

  border: 1px solid var(--color-gray-light);
  padding: calc(0.625rem * 3) 3.5rem;
  padding: var(--space-3) 3.5rem;
}

.what-is-address-service-info__heading {
  margin-bottom: calc(0.625rem * 3);
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
  text-align: center;
}

.what-is-address-service-info__paragraph {
  font-size: 0.875rem;
}

@media (max-width: 65rem) {
  .what-is-address {
    padding: 5rem 0 0 0;
  }

  .what-is-address__heading {
    margin-bottom: 5rem;

    font-size: 2.25rem;
  }
}

@media (max-width: 45rem) {
  .what-is-address-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .what-is-address-section__writing-area  {
    width: 100%;
    margin-right: 0;
  }

  .what-is-address__map-image-wrapper {
    width: 100%;
  }

  .what-is-address-service-info {
    padding: calc(0.625rem * 4) calc(0.625rem * 2);
    padding: var(--space-4) var(--space-2);
  }
}

.features-of-address {
  padding: 7.5rem 0 0 0;
}

.features-of-address__heading {
  font-size: 3.125rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
  text-align: center;

  margin-bottom: 6.25rem;
}

@media (max-width: 65rem) {
  .features-of-address__heading {
    font-size: 2.25rem;
  }
}

/* Slider */

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus
{
    outline: none;
}

.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}

.slick-track:after
{
    clear: both;
}

.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide
{
    float: right;
}

.slick-slide img
{
    display: block;
}

.slick-slide.slick-loading img
{
    display: none;
}

.slick-slide.dragging img
{
    pointer-events: none;
}

.slick-initialized .slick-slide
{
    display: block;
}

.slick-loading .slick-slide
{
    visibility: hidden;
}

.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.featured-houses {
  position: relative;
  width: 100%;
  padding: 0 0 6.25rem 0;
}

.featured-houses__heading-arae {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
}

.featured-houses__heading {
  margin-bottom: calc(0.625rem * 4);
  margin-bottom: var(--space-4);
  font-size: 2.25rem;
  text-align: center;
}

.featured-houses__paragraph {
  text-align: center;
}

.featured-houses__content-wrapper {
  position: relative;
}

.featured-houses__section-container {
  margin-left: calc((100vw - 65rem) / 2 + calc(0.625rem * 2));
  margin-left: calc((100vw - var(--width-xl)) / 2 + var(--space-2));
}

.featured-houses__carousel-nav-area {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;

  width: 56.25rem;
  top: calc(24.375rem + 0.625rem);
  top: calc(24.375rem + var(--space-1));
  margin-left: calc((100vw - 65rem) / 2 + calc(0.625rem * 2));
  margin-left: calc((100vw - var(--width-xl)) / 2 + var(--space-2));
}

.featured-houses__show-all-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;

  margin-top: 3.75rem;
}

.featured-houses-section {
  padding: 0 3.75rem 0 0;
}

.featured-houses-section__image-container {
  position: relative;

  width: 56.25rem;
  height: 24.375rem;
  margin: 0 0 calc(0.625rem * 2) 0;
  margin: 0 0 var(--space-2) 0
}

.featured-houses-section__image-container img {
    position: absolute;
    display: block
  }

.featured-houses-section__image-container img:nth-of-type(1) {
      width: calc(56.25rem * 2 / 3);
      height: 24.375rem;
      border-right: 1px solid #fff;
      border-right: 1px solid var(--color-white);
    }

.featured-houses-section__image-container img:nth-of-type(2) {
      width: calc(56.25rem / 3);
      height: calc(24.375rem / 2);
      top: 0;
      left: calc(56.25rem * 2 / 3);
    }

.featured-houses-section__image-container img:nth-of-type(3) {
      width: calc(56.25rem / 3);
      height: calc(24.375rem / 2);
      top: calc(24.375rem / 2);
      left: calc(56.25rem * 2 / 3);
      border-top: 1px solid #fff;
      border-top: 1px solid var(--color-white);
    }

.featured-houses-section__heading {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;

  margin-bottom: 0.625rem;

  margin-bottom: var(--space-1);

  -webkit-transition: opacity 0.4s;

  transition: opacity 0.4s;
}

.featured-houses-section__name {
  display: block;

  margin-right: 0.375rem;

  font-size: 1rem;
}

.featured-houses-section__city {
  display: block;

  font-size: 0.625rem;
}

.featured-house-show-all-link {
  color: #000;
  color: var(--color-black);
  font-size: .875rem;
}

.featured-houses-carousel-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.featured-houses-carousel-nav__item {
  display: block;
  margin: 0 calc(0.625rem * 2) 0 0;
  margin: 0 var(--space-2) 0 0
}

.featured-houses-carousel-nav__item:last-of-type {
    margin: 0;
  }

.featured-houses-carousel-nav__link {
  outline: none;
  display: block;

  width: 2.75rem;
  height: 2.75rem;

  cursor: pointer
}

.featured-houses-carousel-nav__link:hover, .featured-houses-carousel-nav__link:focus {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }

.featured-houses-carousel-nav__link.featured-houses-carousel-nav__link--prev {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8' standalone='no'?%3E %3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' preserveAspectRatio='xMidYMid meet' viewBox='0 0 44 44' width='44' height='44'%3E%3Cdefs%3E%3Cpath d='M22 0C9.85 0 0 9.85 0 22C0 34.15 9.85 44 22 44C34.15 44 44 34.15 44 22C44 9.85 34.15 0 22 0Z' id='d8MMzBhwTm'%3E%3C/path%3E%3Cpath d='M24.19 16.5L18.9 22.16L24.19 27.81' id='a1u4zCHBSX'%3E%3C/path%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cuse xlink:href='%23d8MMzBhwTm' opacity='1' fill='%23e09549' fill-opacity='1'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23d8MMzBhwTm' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1' stroke-opacity='0'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cuse xlink:href='%23a1u4zCHBSX' opacity='1' fill='%23000000' fill-opacity='0'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23a1u4zCHBSX' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1.5' stroke-opacity='1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

.featured-houses-carousel-nav__link.featured-houses-carousel-nav__link--next {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8' standalone='no'?%3E %3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' preserveAspectRatio='xMidYMid meet' viewBox='0 0 44 44' width='44' height='44'%3E%3Cdefs%3E%3Cpath d='M22 0C9.85 0 0 9.85 0 22C0 34.15 9.85 44 22 44C34.15 44 44 34.15 44 22C44 9.85 34.15 0 22 0Z' id='afpR2DbTL'%3E%3C/path%3E%3Cpath d='M19.9 16.5L25.19 22.16L19.9 27.81' id='bcY3tLd4W'%3E%3C/path%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cuse xlink:href='%23afpR2DbTL' opacity='1' fill='%23e09549' fill-opacity='1'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23afpR2DbTL' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1' stroke-opacity='0'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cuse xlink:href='%23bcY3tLd4W' opacity='1' fill='%23000000' fill-opacity='0'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23bcY3tLd4W' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1.5' stroke-opacity='1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

.featured-houses-carousel-nav__index {
  font-size: 0.875rem;
}

.featured-houses-section {
  opacity: 0.5;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.featured-houses-section__heading {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.featured-houses-section__lead {
  width: calc(56.25rem - 12.5rem);

  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.slick-current .featured-houses-section {
    opacity: 1;
  }

.slick-current .featured-houses-section__heading {
    opacity: 1;
    -webkit-transition: opacity 0.4s 0.4s;
    transition: opacity 0.4s 0.4s;
  }

.slick-current .featured-houses-section__lead {
    opacity: 1;
    -webkit-transition: opacity 0.4s 0.4s;
    transition: opacity 0.4s 0.4s;
  }

.featured-houses-carousel-nav__link.slick-disabled {
    opacity: 0.5;
    cursor: default
  }

.featured-houses-carousel-nav__link.slick-disabled:hover, .featured-houses-carousel-nav__link.slick-disabled:focus {
      -webkit-filter: brightness(1);
              filter: brightness(1);
    }

@media (max-width: 65rem)  {
  .featured-houses__heading {
    font-size: 1.5rem;
  }

  .featured-houses__section-container {
    margin-left: 1.25rem;
  }

  .featured-houses__carousel-nav-area {
    top: calc(24.375rem + 0.625rem);
    top: calc(24.375rem + var(--space-1));
    margin-left: 1.25rem;
  }
}

@media (max-width: 56.75rem) {
  .featured-houses__section-container {
    width: 100%;
    margin: 0;
    padding: 0 calc(0.625rem * 2);
    padding: 0 var(--space-2);
  }

  .featured-houses__carousel-nav-area {
    width: 100%;
    margin-left: 0;
    top: calc((100vw - calc(0.625rem * 2) * 2) * 24.375 / 56.25 + 0.625rem);
    top: calc((100vw - var(--space-2) * 2) * 24.375 / 56.25 + var(--space-1));
    padding: 0 calc(0.625rem * 2);
    padding: 0 var(--space-2);
  }

  .featured-houses-section__image-container {
    width: calc(100vw - calc(0.625rem * 2) * 2);
    width: calc(100vw - var(--space-2) * 2);
    height: calc((100vw - calc(0.625rem * 2) * 2) * 24.375 / 56.25);
    height: calc((100vw - var(--space-2) * 2) * 24.375 / 56.25)
  }
      .featured-houses-section__image-container img:nth-of-type(1) {
        width: calc((100vw - calc(0.625rem * 2) * 2) * 2 / 3);
        width: calc((100vw - var(--space-2) * 2) * 2 / 3);
        height: calc((100vw - calc(0.625rem * 2) * 2) * 24.375 / 56.25);
        height: calc((100vw - var(--space-2) * 2) * 24.375 / 56.25);
      }

      .featured-houses-section__image-container img:nth-of-type(2) {
        width: calc((100vw - calc(0.625rem * 2) * 2) / 3);
        width: calc((100vw - var(--space-2) * 2) / 3);
        height: calc((100vw - calc(0.625rem * 2) * 2) * 24.375 / 56.25 / 2);
        height: calc((100vw - var(--space-2) * 2) * 24.375 / 56.25 / 2);
        top: 0;
        left: calc((100vw - calc(0.625rem * 2) * 2) * 2 / 3);
        left: calc((100vw - var(--space-2) * 2) * 2 / 3);
      }

      .featured-houses-section__image-container img:nth-of-type(3) {
        width: calc((100vw - calc(0.625rem * 2) * 2) / 3);
        width: calc((100vw - var(--space-2) * 2) / 3);
        height: calc((100vw - calc(0.625rem * 2) * 2) * 24.375 / 56.25 / 2);
        height: calc((100vw - var(--space-2) * 2) * 24.375 / 56.25 / 2);
        top: calc((100vw - calc(0.625rem * 2) * 2) * 24.375 / 56.25 / 2);
        top: calc((100vw - var(--space-2) * 2) * 24.375 / 56.25 / 2);
        left: calc((100vw - calc(0.625rem * 2) * 2) * 2 / 3);
        left: calc((100vw - var(--space-2) * 2) * 2 / 3);
      }
}

@media (max-width: 45rem) {
  .featured-houses__carousel-nav-area {
    position: relative;

    margin-top: calc(0.625rem * 4);

    margin-top: var(--space-4);
    top: 0;
    justify-content: center;
  }

  .featured-houses-section__image-container {
    width: calc(100vw - calc(0.625rem * 2) * 2);
    width: calc(100vw - var(--space-2) * 2);
    height: calc((100vw - calc(0.625rem * 2) * 2) * 218 / 335 * 1.5);
    height: calc((100vw - var(--space-2) * 2) * 218 / 335 * 1.5)
  }

    .featured-houses-section__image-container img {
      position: absolute;
      display: block
    }

      .featured-houses-section__image-container img:nth-of-type(1) {
        width: calc(100vw - calc(0.625rem * 2) * 2);
        width: calc(100vw - var(--space-2) * 2);
        height: calc((100vw - calc(0.625rem * 2) * 2) * 218 / 335);
        height: calc((100vw - var(--space-2) * 2) * 218 / 335);
        border-right: 0;
      }

      .featured-houses-section__image-container img:nth-of-type(2) {
        width: calc((100vw - calc(0.625rem * 2) * 2) * 0.5);
        width: calc((100vw - var(--space-2) * 2) * 0.5);
        height: calc((100vw - calc(0.625rem * 2) * 2) * 218 / 335 * 0.5);
        height: calc((100vw - var(--space-2) * 2) * 218 / 335 * 0.5);
        top: calc((100vw - calc(0.625rem * 2) * 2) * 218 / 335);
        top: calc((100vw - var(--space-2) * 2) * 218 / 335);
        left: 0;
        border-top: 1px solid #fff;
        border-top: 1px solid var(--color-white);
        border-right: 1px solid #fff;
        border-right: 1px solid var(--color-white);
      }

      .featured-houses-section__image-container img:nth-of-type(3) {
        width: calc((100vw - calc(0.625rem * 2) * 2) * 0.5);
        width: calc((100vw - var(--space-2) * 2) * 0.5);
        height: calc((100vw - calc(0.625rem * 2) * 2) * 218 / 335 * 0.5);
        height: calc((100vw - var(--space-2) * 2) * 218 / 335 * 0.5);
        top: calc((100vw - calc(0.625rem * 2) * 2) * 218 / 335);
        top: calc((100vw - var(--space-2) * 2) * 218 / 335);
        left: calc((100vw - calc(0.625rem * 2) * 2) * 0.5);
        left: calc((100vw - var(--space-2) * 2) * 0.5);
      }
}

.yamori-overview {
  position: relative;
  width: 100%;
  padding: 0;
}

.yamori-overview__heading-arae {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6.25rem;
}

.yamori-overview__heading {
  margin-bottom: calc(0.625rem * 4);
  margin-bottom: var(--space-4);
  font-size: 2.25rem;
  text-align: center;
}

.yamori-overview__paragraph {
  text-align: center;
}

.yamori-overview__item-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.yamori-overview-item {
  width: 12.5rem;

  text-align: center;
}

.yamori-overview-item__image-wrapper {
  display: block;
  width: 12.5rem;
  height: 12.5rem;

  margin-right: auto;
  margin-left: auto;
  margin-bottom: calc(0.625rem * 3);
  margin-bottom: var(--space-3)
}

.yamori-overview-item__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

.yamori-overview-item__role {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  margin-bottom: var(--space-1);
}

.yamori-overview-item__description {
  margin-top: 20px;
  font-size: 14px;
}

.yamori-overview-item {
  margin: 0 25px;
}

@media (max-width: 65rem) {
  .yamori-overview-item__description {
    font-size: 16px;
  }

  .yamori-overview-item {
    margin: 0;
  }
}

.yamori-overview__carousel-nav-area {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  margin-top: calc(0.625rem * 4);

  margin-top: var(--space-4);
}

.yamori-overview-carousel-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.yamori-overview-carousel-nav__item {
  display: block;
  margin: 0 calc(0.625rem * 2) 0 0;
  margin: 0 var(--space-2) 0 0
}

.yamori-overview-carousel-nav__item:last-of-type {
    margin: 0;
  }

.yamori-overview-carousel-nav__link {
  outline: none;
  display: block;

  width: 2.75rem;
  height: 2.75rem;

  cursor: pointer
}

.yamori-overview-carousel-nav__link:hover, .yamori-overview-carousel-nav__link:focus {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }

.yamori-overview-carousel-nav__link.yamori-overview-carousel-nav__link--prev {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8' standalone='no'?%3E %3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' preserveAspectRatio='xMidYMid meet' viewBox='0 0 44 44' width='44' height='44'%3E%3Cdefs%3E%3Cpath d='M22 0C9.85 0 0 9.85 0 22C0 34.15 9.85 44 22 44C34.15 44 44 34.15 44 22C44 9.85 34.15 0 22 0Z' id='d8MMzBhwTm'%3E%3C/path%3E%3Cpath d='M24.19 16.5L18.9 22.16L24.19 27.81' id='a1u4zCHBSX'%3E%3C/path%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cuse xlink:href='%23d8MMzBhwTm' opacity='1' fill='%23e09549' fill-opacity='1'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23d8MMzBhwTm' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1' stroke-opacity='0'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cuse xlink:href='%23a1u4zCHBSX' opacity='1' fill='%23000000' fill-opacity='0'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23a1u4zCHBSX' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1.5' stroke-opacity='1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

.yamori-overview-carousel-nav__link.yamori-overview-carousel-nav__link--next {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8' standalone='no'?%3E %3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' preserveAspectRatio='xMidYMid meet' viewBox='0 0 44 44' width='44' height='44'%3E%3Cdefs%3E%3Cpath d='M22 0C9.85 0 0 9.85 0 22C0 34.15 9.85 44 22 44C34.15 44 44 34.15 44 22C44 9.85 34.15 0 22 0Z' id='afpR2DbTL'%3E%3C/path%3E%3Cpath d='M19.9 16.5L25.19 22.16L19.9 27.81' id='bcY3tLd4W'%3E%3C/path%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cuse xlink:href='%23afpR2DbTL' opacity='1' fill='%23e09549' fill-opacity='1'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23afpR2DbTL' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1' stroke-opacity='0'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cuse xlink:href='%23bcY3tLd4W' opacity='1' fill='%23000000' fill-opacity='0'%3E%3C/use%3E%3Cg%3E%3Cuse xlink:href='%23bcY3tLd4W' opacity='1' fill-opacity='0' stroke='%23000000' stroke-width='1.5' stroke-opacity='1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

.yamori-overview-carousel-nav__index {
  font-size: 0.875rem;;
}

.yamori-overview-carousel-nav__link.slick-disabled {
    opacity: 0.5;
    cursor: default
  }

.yamori-overview-carousel-nav__link.slick-disabled:hover, .yamori-overview-carousel-nav__link.slick-disabled:focus {
      -webkit-filter: brightness(1);
              filter: brightness(1);
    }

.yamori-overview__carousel-nav-area {
  display: none;
}

@media (max-width: 65rem) {
  .yamori-overview__heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 45rem) {
  .yamori-overview__item-container {
    display: block;
  }

  .yamori-overview__carousel-nav-area {
    display: flex;
  }

  .slick-slide {
    width: calc(100vw - calc(0.625rem * 2) * 2);
    width: calc(100vw - var(--space-2) * 2);
  }
}

.use-case {
  padding: 7.5rem 0 0 0;
}

.use-case__heading-area {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6.25rem;
}

.use-case__heading {
  font-size: 3.125rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
  text-align: center;

  margin-bottom: calc(0.625rem * 4);

  margin-bottom: var(--space-4);
}

.use-case__paragraph {
  text-align: center;
}

.use-case-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  margin-bottom: 6.25rem
}

.use-case-section:last-of-type {
    margin-bottom: 0;
  }

.use-case-section__label {
  display: inline-block;
  margin-bottom: 0.625rem;
  margin-bottom: var(--space-1);
  padding: 0.25rem 0.75rem;
  border: 1px solid #e09549;
  border: 1px solid var(--color-primary);
  font-size: 0.75rem;
}

.use-case-section__description {
  height: 120px;
}

.use-case-section__heading {
  font-size: 1.5rem;
  margin-bottom: calc(0.625rem * 2);
  margin-bottom: var(--space-2);
}

.use-case-section__paragraph {
  font-size: 0.875rem;
}

.use-case-section__writing-area {
  width: 30rem;
  padding: 0 7.5rem 0 0;

  flex-grow: 0;
  flex-shrink: 0;
}

.use-case-section__image-area img {
    display: block;
    width: calc(100vw - (100vw - 65rem - calc(0.625rem * 2)) / 2 - 30rem);
    width: calc(100vw - (100vw - var(--width-xl) - var(--space-2)) / 2 - 30rem);
  }

.use-case-overview-item {
  width: 19.5rem;

  text-align: center;
}

.use-case-overview-item__image-wrapper {
  display: block;
  width: 90%;
  height: 12.5rem;

  margin-right: auto;
  margin-left: auto;
  margin-bottom: calc(0.625rem * 3);
  margin-bottom: var(--space-3)
}

.use-case-overview-item__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 65rem) {
  .use-case__heading {
    font-size: 2.25rem;
  }

  .use-case-section__writing-area {
    width: 25rem;
    padding: 0 calc(0.625rem * 4) 0 0;
    padding: 0 var(--space-4) 0 0;
  }
    .use-case-section__image-area img {
      width: calc(100vw - calc(0.625rem * 2) - 25rem);
      width: calc(100vw - var(--space-2) - 25rem);
    }
}

@media (max-width: 45rem) {
  .use-case-section {
    flex-direction: column-reverse;
    margin-bottom: 5rem;
  }

  .use-case-section__writing-area {
    width: 100%;
    padding: 0;
  }

  .use-case-section__image-area {
    width: 100%;
    margin-bottom: calc(0.625rem * 4);
    margin-bottom: var(--space-4)
  }

    .use-case-section__image-area img {
      width: 100%;
    }
}

.use-step {
  width: 100%;
  padding: 7.5rem 0 0 0;
}

.use-step__heading {
  font-size:  3.125rem;
  font-weight: var(--font-weight-nromarl);
  font-weight: 400;
  text-align: center;

  margin-bottom: 6.25rem;
}

.user-step__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.user-step__title-head {
  color: var(--color-primary);
}

.user-step__description {
  text-align: center;
  margin-bottom: 3rem;
}

.user-step__image-content {
  text-align: center;
  margin-bottom: 4rem;
}

.user-step__image-content:last-child {
  margin-bottom: 0px;
}

.user-step__image {
  width: 70%;
}

@media (max-width: 65rem) {
  .use-step__heading {
    font-size: 2.25rem;
  }

  .user-step__title {
    font-size: 1.5rem;
  }

  .user-step__image {
    width: 100%;
  }
}

.cooperation-partner {
  width: 100%;
  padding-top: 7.5rem;
}

.cooperation-partner__heading {
  font-size:  3.125rem;
  font-weight: var(--font-weight-nromarl);
  font-weight: 400;
  text-align: center;

  margin-bottom: 6.25rem;
}

.cooperation-partner__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.cooperation-partner__image-content {
  text-align: center;
}

.cooperation-partner__image {
  width: 300px;
}

.cooperation-partner-description {
  text-align: center;
  margin-bottom: 3rem;
}

.cooperation-partner-description:last-child {
  margin-bottom: 0px;
}

@media (max-width: 65rem) {
  .cooperation-partner__heading {
    font-size: 2.25rem;
  }

  .cooperation-partner__title {
    font-size: 1.5rem;
  }

  .cooperation-partner__image {
    width: 70%;
  }
}

.media-coverage {
  width: 100%;
  padding-top: 7.5rem;
}

.media-coverage__heading {
  font-size:  3.125rem;
  font-weight: var(--font-weight-nromarl);
  font-weight: 400;
  text-align: center;

  margin-bottom: 6.25rem;
}

.media-coverage__image-content {
  text-align: center;
}

.media-coverage__image {
  width: 300px;
}

@media (max-width: 65rem) {
  .media-coverage__heading {
    font-size: 2.25rem;
  }

  .media-coverage__image {
    width: 70%;
  }
}

.usage-fee {
  width: 100%;
  padding: 7.5rem 0 6.25rem 0;
}

.usage-fee__heading {
  font-size:  3.125rem;
  font-weight: var(--font-weight-nromarl);
  text-align: center;

  margin-bottom: 6.25rem;
}

.usage-fee-section {
  position: relative;

  width: 43.75rem;
  margin-right: auto;
  margin-left: auto;
}

.usage-fee-section__inner {
  padding: calc(0.625rem * 4);
  padding: var(--space-4);
  border-color: #b5b5b5;
  border-color: var(--color-gray-light);
  border-style: solid;
  border-width: 1px;
}

.usage-fee-section__divider {
  width: 100%;
  height: 0;

  margin: calc(0.625rem * 4) 0;

  margin: var(--space-4) 0;
  border-top: 1px solid #b5b5b5;
  border-top: 1px solid var(--color-gray-light);
}

.usage-fee-addition {
  margin-bottom: calc(0.625rem * 4);
  margin-bottom: var(--space-4)
}

.usage-fee-addition__heading {
  margin-bottom: calc(0.625rem * 2);
  margin-bottom: var(--space-2);
}

.usage-fee-addition__list-notice {
  font-size: 0.75rem;
  padding-top: calc(0.625rem * 2);
  padding-top: var(--space-2);
  margin-left: calc(0rem - calc(0.625rem * 4));
  margin-left: calc(0rem - var(--space-4));
}

.usage-fee-section__name-and-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.usage-fee-section__name-area {
  margin: 0 0 calc(0.625rem * 4) 0;
  margin: 0 0 var(--space-4) 0;
  padding-left: 0.625rem;
  padding-left: var(--space-1);

  border-left: 0.25rem solid #e09549;

  border-left: 0.25rem solid var(--color-primary);
}

.usage-fee-section__name {
  margin-bottom: 0.3125rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal);
}

.usage-fee-section__price-area {
  text-align: right;
}

.usage-fee-section__price {
  margin-bottom: 0.3125rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-weight: var(--font-weight-normal)
}

.usage-fee-section__price small {
    color: #b5b5b5;
    color: var(--color-gray-light);
    font-size: 0.75rem;
  }

.usage-fee-detail-list {
  margin: 0;
  padding: 0 0 0 calc(0.625rem * 4);
  padding: 0 0 0 var(--space-4);
  list-style: none
}

.usage-fee-detail-list > li {
    margin-bottom: calc(0.625rem * 2);
    margin-bottom: var(--space-2);
    padding-top: 0.2rem;
    padding-bottom: 0.1rem;
    padding-left: calc(0.625rem * 4);
    padding-left: var(--space-4);

    font-size: 0.875rem;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Icon-Check' width='26' height='26' viewBox='0 0 26 26'%3E %3Cdefs%3E %3Cstyle%3E .cls-1,.cls-2%7Bfill:none%7D.cls-2%7Bstroke:%23e09549%7D.cls-3,.cls-4%7Bstroke:none%7D.cls-4%7Bfill:%23e09549%7D %3C/style%3E %3C/defs%3E %3Cg id='Group_1581' data-name='Group 1581'%3E %3Cg id='Path_956' class='cls-1' data-name='Path 956'%3E %3Cpath d='M13 0A13 13 0 1 1 0 13 13 13 0 0 1 13 0z' class='cls-3'/%3E %3Cpath d='M13 1a11.921 11.921 0 0 0-8.485 3.515A11.921 11.921 0 0 0 1 13c0 3.205 1.248 6.219 3.515 8.485A11.921 11.921 0 0 0 13 25c3.205 0 6.219-1.248 8.485-3.515A11.921 11.921 0 0 0 25 13c0-3.205-1.248-6.219-3.515-8.485A11.921 11.921 0 0 0 13 1m0-1c7.18 0 13 5.82 13 13s-5.82 13-13 13S0 20.18 0 13 5.82 0 13 0z' class='cls-4'/%3E %3C/g%3E %3C/g%3E %3Cpath id='Path_957' d='M3000.427 6005.03h-6v10' class='cls-2' data-name='Path 957' transform='rotate(-135 262.73 3628.647)'/%3E %3C/svg%3E");
    background-repeat: no-repeat
  }

.usage-fee-detail-list > li:last-of-type {
      margin-bottom: 0;
    }

.usage-fee__notice {
  font-size: 0.75rem;
  padding-top: calc(0.625rem * 2);
  padding-top: var(--space-2);
  padding-left: calc(0.625rem * 4);
  padding-left: var(--space-4);
}

@media (max-width: 65rem) {
  .usage-fee__heading {
    font-size: 2.25rem;
  }
}

@media (max-width: 45rem) {
  .usage-fee-section {
    width: 100%;
  }

  .usage-fee-section__inner {
    padding: calc(0.625rem * 4) calc(0.625rem * 2);
    padding: var(--space-4) var(--space-2);
  }

  .usage-fee-detail-list {
    padding: 0;
  }

  .usage-fee__notice {
    padding-left: 0;
  }
}

.experience-container {
  width: 100%;
  padding: 2.5rem 0;
  background: #AC854A;
}

.experience-information {
  text-align: center;
  margin-bottom: 2.5rem;
}

.experience-information-title {
  font-size:  3.125rem;
  font-weight: var(--font-weight-nromarl);
  text-align: center;
  margin-bottom: 2.5rem;
}

.experience-information__description {
  margin-bottom: 1.875rem;
}

.experience-information__sentence {
  font-size: 1.25rem;
}

@media (max-width: 65rem) {
  .experience-information-title {
    font-size: 2.25rem;
  }
}

.question-section {
  width: 43.75rem;
  margin-top: 6.25rem;
  margin-right: auto;
  margin-left: auto;
}

.question-section__head {
  font-size: 3.125rem;
  font-weight: var(--font-weight-nromarl);
  text-align: center;
  margin-bottom: 6.25rem;
}

.question-content {
  margin: 0 auto;

}
.question-content__answer {
  padding: 20px 20px;
  display: none;
}

.question-content__head {
  position: relative;
  background: #f7f7f7;
  padding: 20px;
}

.question-content__head:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #888;
  border-right: solid 2px #888;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.question-content__head.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

@media (max-width: 65rem) {
  .question-section {
    width: 100%;
  }
  .question-section__head {
    font-size: 2.25rem;
  }
  .question-content__head{
    padding-right: 50px;
  }
}

.news {
  width: 100%;
  padding: 7.5rem 0;
  background-color: #f7f7f7;
  background-color: var(--color-gray-lighter);
}

.news__heading {
  margin-bottom: 3.75rem;

  font-size: 3.125rem;
  text-align: center;
}

.news-list {
  list-style: none;
}

.news-list__item {
  width: 100%;
  padding: calc(0.625rem * 4) 0;
  padding: var(--space-4) 0;

  border-color: rgba(181, 181, 181, 0.4);

  border-color: var(--color-divider);
  border-style: solid;
  border-width: 0 0 1px 0
}

.news-list__item:last-of-type {
    border-width: 0;
  }

.news-list__item a {
    color: #000;
    color: var(--color-black);
  }

.news-list__item-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}

.news-list__date {
  width: 20rem;
  padding: 0 0 0 3.75rem;

  flex-grow: 0;
  flex-shrink: 0;
}

@media (max-width: 65rem) {
  .news__heading {
    font-size: 2.25rem;
  }

  .news-list {
    font-size: 0.875rem;
  }

  .news-list__date {
    width: 12rem;
  }
}

@media (max-width: 45rem) {
  .news {
    padding: 5rem 0 7.5rem 0;
  }

  .news-list {
    font-size: 0.75rem;
  }

  .news-list__item {
    padding: 0 0 calc(0.625rem * 4) 0;
    padding: 0 0 var(--space-4) 0;

    border-width: 0
  }

    .news-list__item:last-of-type {
      padding: 0;
    }

  .news-list__item-inner {
    flex-direction: column;
  }

  .news-list__date {
    width: 100%;
    margin: 0 0 0.625rem 0;
    margin: 0 0 var(--space-1) 0;
    padding: 0;
  }
}

body {
  overflow-x: hidden;
}

.register-fixed-content {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 100;
  width: 100%;
}

.register-fixed-content__button {
  transform: translate(-50%);
  margin-bottom: 10px;
}


/*# sourceMappingURL=top.b9480a12.css.map*/
