@charset "UTF-8";
.block {
  display: block;
}
.inline {
  display: inline;
}
.grid {
  display: grid;
  place-items: center;
}
.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.hidden {
  display: none !important;
}
.flex-row {
  flex-direction: row;
}
@media screen and (max-width: 959px) {
  .flex-row {
    flex-direction: column;
  }
}
.column {
  flex-direction: row;
  grid-auto-flow: column;
}
.row {
  flex-direction: column;
  grid-auto-flow: row;
}
@media screen and (max-width: 575px) {
  .sp-row {
    flex-direction: column;
    grid-auto-flow: row;
  }
}
@media screen and (max-width: 959px) {
  .tab-row {
    flex-direction: column;
    grid-auto-flow: row;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}
.space-between {
  justify-content: space-between;
}
.space-around {
  justify-content: space-around;
}
.flex-start {
  justify-content: start;
}
.align-end {
  align-items: flex-end;
}
.gap-25 {
  gap: 25px;
}
.vertical-center {
  align-items: center;
  vertical-align: middle;
}
.flex-1 {
  flex: 1;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.ma-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-auto {
  margin-right: auto;
}
.ml-30 {
  margin-left: 30px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-auto {
  margin-left: auto;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-auto {
  margin-top: auto;
}
.pa-5 {
  padding: 5px;
}
.pa-10 {
  padding: 10px;
}
.pa-20 {
  padding: 20px;
}
.pa-30 {
  padding: 30px;
}
.no-ma {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.no-mabo {
  margin-bottom: 0 !important;
}
.no-pa {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.no-pabo {
  padding-bottom: 0 !important;
}
.no-pato {
  padding-top: 0 !important;
}
.bora-5 {
  border-radius: 5px;
}
.bora-10 {
  border-radius: 10px;
}
.bora-20 {
  border-radius: 20px;
}
.bora-30 {
  border-radius: 30px;
}
.bora-100 {
  border-radius: 100%;
}
.op-5 {
  opacity: 0.5;
}
.op-6 {
  opacity: 0.6;
}
.op-7 {
  opacity: 0.7;
}
.op-8 {
  opacity: 0.8;
}
.op-9 {
  opacity: 0.9;
}
.op-10 {
  opacity: 1;
}
.bg-yellow {
  background-color: #f3ff4e;
}
.bg-yellow a:hover {
  color: #999999;
}
.bg-light-yellow {
  background-color: #f3ff4e;
}
.bg-light-yellow a:hover {
  color: #999999;
}
.bg-blue {
  background-color: #006ac4;
}
.bg-pink {
  background-color: #e54082;
}
.bg-gray {
  background-color: #999999;
}
.bg-dark-gray {
  background-color: #424242;
}
.bg-light-gray {
  background-color: #eeeeee;
}
.bg-white {
  background-color: white;
}
.bg-off-white {
  background-color: #fafafa;
}
.bg-black {
  background-color: #222222;
}
.bo-blue {
  border: #006ac4 solid 3px;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.small {
  font-size: 80%;
}
.large {
  font-size: 120%;
}
.larger {
  font-size: 150%;
}
.largest {
  font-size: 180%;
}
.yellow {
  color: #f3ff4e;
}
.blue {
  color: #006ac4;
}
.pink {
  color: #e54082;
}
.gray {
  color: #999999;
}
.light-gray {
  color: #eeeeee;
}
.dark-gray {
  color: #424242;
}
.black {
  color: #222222;
}
.white {
  color: white;
}
.lh-2 {
  line-height: 2em;
}
.sans-serif {
  font-family: sans-serif;
}
span.highlight, .highlight {
  background: linear-gradient(to bottom, transparent 50%, #f3ff4e 50%);
}
.bg-dark-gray span.highlight, .bg-dark-gray .highlight {
  background: linear-gradient(to bottom, transparent 85%, #f3ff4e 15%);
}
.highlight-white, .bg-yellow .highlight, .bg-light-yellow .highlight {
  background: linear-gradient(to bottom, transparent 50%, white 50%);
}
.center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.justify {
  text-align: justify;
}
.keep-all {
  word-break: keep-all;
}
.nowarp, .nowrap, u {
  white-space: nowrap;
  text-decoration: none;
}
.bo-so-1 {
  border: solid 1px #222222;
}
.bo-so-2 {
  border: solid 2px #222222;
}
.bg-image {
  background: no-repeat scroll center center/cover;
}
.bo-bo {
  border-bottom: 0.5rem solid #f3ff4e;
}
.full-width {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.ul-dot {
  list-style-type: square;
}
.ul-dot li {
  margin-left: 0.5em;
}
.box-shadow {
  box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.04), 0 0 0 1px rgba(176, 181, 193, 0.2);
}
.of-hidden {
  overflow: hidden;
}
.w-80 {
  width: 80px;
}
.w-100 {
  width: 100px;
}
.w-160 {
  width: 160px;
}
@media screen and (max-width: 575px) {
  .sp-w-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 959px) {
  .tab-w-100 {
    width: 100% !important;
  }
}
a.blue {
  text-decoration: underline;
}
.no-click {
  pointer-events: none;
}
.job-industry-list a {
  width: 45%;
}
@media screen and (max-width: 575px) {
  .job-industry-list a {
    width: 100%;
  }
}
.job-industry-list article {
  transition: all 0.2s ease;
}
.job-industry-list a:hover {
  color: #424242;
}
.job-industry-list a:hover article {
  background-color: #f3ff4e;
}
.job-industry-list .article-thumbnail img {
  width: 100%;
}
.grecaptcha-badge {
  visibility: hidden;
}
.yt_content {
  position: relative;
  z-index: 1;
  padding-block-start: 3rem;
  background-color: #f0eb50;
  width: 100%;
}
.yt_content .yt_wrapper {
  width: calc(100% - 2rem);
  max-width: 800px;
  margin: auto;
  height: auto;
  aspect-ratio: 1.7777777778;
}
.yt_content .yt_wrapper iframe {
  width: 100%;
  height: 100%;
}
#container-video {
  overflow: visible;
}
.embed_video_wrapper {
  position: relative;
  container: embed_video_wrapper / size;
  max-width: 1000px !important;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.embed_video_wrapper video.end + .end_cover {
  display: flex;
}
.embed_video_wrapper .end_cover {
  display: none;
  pointer-events: none;
}
.embed_video_wrapper .end_cover .inner {
  position: absolute;
  inset: 0;
  padding: 7cqh 10cqw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.embed_video_wrapper .end_cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
}
.embed_video_wrapper .end_cover .top-buttons, .embed_video_wrapper .end_cover .bottom-buttons {
  display: flex;
  justify-content: space-between;
  position: relative;
  pointer-events: all;
}
.embed_video_wrapper .end_cover .top-buttons a, .embed_video_wrapper .end_cover .bottom-buttons a {
  box-shadow: 0px 9px 12px -4px rgba(0, 0, 0, 0.3);
}
.embed_video_wrapper .end_cover .top-buttons img, .embed_video_wrapper .end_cover .bottom-buttons img {
  height: 100%;
  width: auto;
}
.embed_video_wrapper .end_cover .top-buttons {
  height: 15cqh;
}
.embed_video_wrapper .end_cover .bottom-buttons {
  height: 20cqh;
}
.embed_video_wrapper #PLAY_BUTTON {
  position: absolute;
  margin: auto;
  height: 20%;
  width: auto;
  inset: 0;
  pointer-events: none;
}
body.staff {
  font-size: 18px;
}
body.staff #container4 .container_box dl.box_trouble dd {
  font-size: 16px;
}
body.staff #container4 .container_box ul.box_solution li p {
  font-size: 16px;
}
body.staff #container4 .container_box ul.box_solution li::before {
  font-size: 20px;
}
@media screen and (width >= 1080px) {
  body.staff .mv_inner .mv_txt {
    width: 980px;
  }
}
@media screen and (width < 1080px) {
  body.staff .mv_inner p span.sub_txt {
    display: block;
    margin-top: 1.5em;
  }
}
body.staff #container7 ul.tag_box_list {
  width: 100%;
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 50px;
}
body.staff #container7 ul.tag_box_list > li {
  padding: 1em;
}
body.staff #container7 ul.tag_box_list > li.description {
  background-color: #f8f8ff;
  --color: #3b66a7;
}
body.staff #container7 ul.tag_box_list > li.workplace {
  background-color: #f7fbec;
  --color: #a7cc01;
}
body.staff #container7 ul.tag_box_list > li h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
body.staff #container7 ul.tag_box_list > li h2::after {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--color);
  margin-block: 0.5em 1em;
}
body.staff #container7 ul.tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
body.staff #container7 ul.tag_list::after {
  content: "など";
  padding: 0.2em 0.3em;
}
body.staff #container7 ul.tag_list > li {
  display: inline-block;
  background-color: white;
  padding: 0.2em 0.6em;
  border: 1px solid var(--color);
  border-radius: 0.5em;
}
body.staff #container8 {
  margin-bottom: 5rem;
}
body.staff #container8 ul {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3em;
  margin-bottom: 4rem;
}
body.staff #container8 ul li {
  background-color: #f8f8ff;
  padding: 1em;
}
body.staff #container8 ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  bottom: -1.9em;
  inset-inline: 50%;
}
body.staff #container8 ul li h2 {
  color: #3b66a7;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
body.staff #container8 ul li p {
  text-align: left;
}
body.staff #container8 .feature {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
  border: solid 5px #3b66a7;
  padding: 0.5em;
  font-size: 1.5em;
  font-weight: bold;
}
body.staff #container8 .feature .bg-green {
  display: inline-block;
  background: linear-gradient(transparent 60%, #cfed46 40%);
  margin-inline: 0.2em;
  padding-inline: 0.2em;
}
body.staff #container8 .feature .yokujitsu {
  font-size: 1.7em;
}
body.staff #container8 .feature .yokujitsu::before {
  content: "｢";
  margin-right: 0.15em;
}
body.staff #container8 .feature .yokujitsu::after {
  content: "｣";
  margin-left: 0.1em;
}
body.staff #container8 .feature .yokujitsu::before, body.staff #container8 .feature .yokujitsu::after {
  font-weight: normal;
}
body.elevatorrenewal #container9.led {
  margin-bottom: 100px;
  background-color: #f0eb50;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led {
    margin-block: 30px;
  }
}
body.elevatorrenewal #container9.led .container_inner {
  padding-block: 40px 50px;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led .container_inner {
    padding-block: 20px 30px;
  }
}
body.elevatorrenewal #container9.led h3 {
  position: relative;
  line-height: 1.4;
}
body.elevatorrenewal #container9.led h3::before {
  content: "限定!!";
  position: absolute;
  left: 0;
  font-size: 0.8em;
  display: grid;
  place-items: center;
  width: fit-content;
  height: auto;
  border-radius: 0.5em;
  padding: 0.3em 0.6em;
  color: white;
  background-color: #cc363b;
  border: solid 0.2em white;
  transform: rotate(-15deg);
}
@media screen and (max-width: 959px) {
  body.elevatorrenewal #container9.led h3::before {
    position: relative;
  }
}
body.elevatorrenewal #container9.led h3 .note {
  font-size: 0.6em;
  color: #222222;
  font-weight: 700;
}
body.elevatorrenewal #container9.led p {
  text-align: left;
}
body.elevatorrenewal #container9.led p.note {
  font-size: 0.8em;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led p.note {
    margin-top: 20px;
  }
}
body.elevatorrenewal #container9.led .hl-white {
  display: inline;
  box-sizing: border-box;
  padding: 0 0.2em;
  font-size: 1.3em;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fff 40%);
}
body.elevatorrenewal #container9.led .feature-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-inline: 2vw;
  align-items: center;
  background-color: white;
  padding: 2em;
  margin-inline: -2em;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led .feature-wrapper {
    flex-direction: column;
    padding: 2em 1em;
    gap: 30px;
    margin-inline: 0;
  }
}
body.elevatorrenewal #container9.led .feature-wrapper .feature-list {
  flex: 1 0 60%;
}
body.elevatorrenewal #container9.led .feature-wrapper .feature-title {
  font-size: 2em;
  font-weight: 800;
  color: #fafafa;
  margin-bottom: 0.5em;
  background-color: #01c2ba;
  width: fit-content;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led .feature-wrapper .feature-title {
    font-size: 1.7em;
  }
}
body.elevatorrenewal #container9.led .feature-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-size: 1.3em;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led .feature-wrapper ul {
    font-size: 1.1em;
  }
}
body.elevatorrenewal #container9.led .feature-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
}
body.elevatorrenewal #container9.led .feature-wrapper ul li::before {
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  content: '';
  font-weight: 900;
  color: #f0eb50;
  font-size: 1.4em;
}
body.elevatorrenewal #container9.led .feature-wrapper .img {
  flex: 1 1 40%;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.7em;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  body.elevatorrenewal #container9.led .feature-wrapper .img {
    order: -1;
    width: 80%;
  }
}
body.elevatorrenewal #container9.led .feature-wrapper .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2Fnuf.co.jp%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Fneve-child%2Fscss%2F_class.scss%22%2C%22wp-content%2Fthemes%2Fneve-child%2Fscss%2F_init.scss%22%2C%22wp-content%2Fthemes%2Fneve-child%2Fscss%2Flp-style.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAEA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BACKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADCF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BACVE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADqBF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAChXE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD0XF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BACzYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADgZA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAEzaJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUJ%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAWN%3BAAAA%3BAAAA%3BAAAA%3BADjPA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACwPE%3BAAAA%3BAAAA%3BADxPF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC%2BPE%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD7PJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACmRI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BADjSJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACwSE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADjTF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACiUI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADrUJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACgVI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADhVJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACyVM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADxWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACmXM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%22%7D */