/* xHTML5reset.css */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  font-size: 100%;
  outline: 0;
  background: transparent;
}

fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  font-size: 100%;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  background: transparent;
  outline: none;
  border: none;
}

img {
  border: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
  color: #000;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  height: 1px;
  display: block;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

.invisible {
  width: 0px;
  height: 0px;
  left: -10000px;
  position: absolute;
  display: none;
  font-size: 0.1px;
  line-height: 0.1px;
}

.clear {
  clear: both;
}

nav, .nav {
  padding: 0;
  height: auto;
  width: auto;
  background: initial;
}

nav {
  background-color: transparent;
  height: auto;
  width: auto;
  padding: 0;
}

input[type=button],
input[type=submit],
input[type=reset],
button,
.button,
.button a {
  height: auto;
  border: none;
  letter-spacing: normal;
  text-transform: none;
}

.card {
  box-shadow: none;
  margin: 0;
}

.card-title {
  font-size: initial;
}

a:hover {
  text-decoration: none;
}

.vee-layout-wrapper > .vee-layout-container > .row {
  margin: 0;
}

/**
 * Usage:
 *   @include keyframes(slide-down) {
 *     0% { opacity: 1; }
 *     90% { opacity: 0; }
 *   }
 */
/**
 * Usage: @include animation('slide-down 5s 3');
 */
@-webkit-keyframes colorchange {
  0% {
    fill: red;
  }
  25% {
    fill: yellow;
  }
  50% {
    fill: blue;
  }
  75% {
    fill: green;
  }
  100% {
    fill: red;
  }
}
@-moz-keyframes colorchange {
  0% {
    fill: red;
  }
  25% {
    fill: yellow;
  }
  50% {
    fill: blue;
  }
  75% {
    fill: green;
  }
  100% {
    fill: red;
  }
}
@-ms-keyframes colorchange {
  0% {
    fill: red;
  }
  25% {
    fill: yellow;
  }
  50% {
    fill: blue;
  }
  75% {
    fill: green;
  }
  100% {
    fill: red;
  }
}
@-o-keyframes colorchange {
  0% {
    fill: red;
  }
  25% {
    fill: yellow;
  }
  50% {
    fill: blue;
  }
  75% {
    fill: green;
  }
  100% {
    fill: red;
  }
}
@keyframes colorchange {
  0% {
    fill: red;
  }
  25% {
    fill: yellow;
  }
  50% {
    fill: blue;
  }
  75% {
    fill: green;
  }
  100% {
    fill: red;
  }
}
/**
 * Usage:
 * input, textarea {
 *   @include input-placeholder {
 *       color: $grey;
 *   }
 * }
 */
/** CUSTOM COLOR PALETTE **/
/** GENERIC COLOR PALETTE **/
/* BUTTON COLORS */
/* FORM COLOR */
/* ROOT COLOR VARS - ALL SITES */
:root {
  --red: #bf503b;
  --green: #8f9547;
  --blue: #235460;
  --white: #ffffff;
  --black: #000000;
  --gray: #353535;
  --offwhite: #eee7e5;
  --light-green: #afc5bc;
  --tabs-blue: rgba( 35, 84, 96, 0.2);
}

/* ROOT FONT VARS - ALL SITES */
:root {
  --headline-text: proxima-nova, Helvetica, Arial, sans-serif;
  --body-text: proxima-nova, Helvetica, Arial, sans-serif;
}

.fade-in {
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  color: var(--black);
  font-size: 1rem;
  width: 100%;
  font-family: var(--body-text);
}

img {
  width: 100%;
  height: auto;
}

a,
button,
.button {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a {
  color: #235460;
}

a:focus, a:hover {
  opacity: 1;
}

iframe {
  width: 100%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p, li {
  margin: 0 0 1rem;
  line-height: 140%;
}

.maxWidth {
  max-width: 1500px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-family: var(--headline-text);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  line-height: 120%;
}

.hide {
  visibility: hidden !important;
  overflow: hidden !important;
  border: 0 hidden !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.image_container {
  line-height: 0;
}

span.italic {
  font-style: italic;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}

ul, ol, dl {
  list-style: initial;
  padding-left: 40px;
  margin-bottom: 0;
}

ul li,
ol li,
dl li {
  margin: 3px 0;
}

ul ul {
  list-style: circle inside;
}

.chzn-container {
  width: 100%;
}

.relative {
  position: relative;
}

@media screen and (min-width: 0px) {
  .vee-layout-wrapper {
    position: relative;
  }
  .vee-layout-wrapper > .vee-layout-container {
    padding: 0;
  }
  main > .vee-layout-main__inside {
    min-height: 50vh;
  }
  .fancybox-container {
    z-index: 9999999999;
  }
}
#spinner {
  z-index: 100000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
#spinner .spinnee,
#spinner .spinnee:after {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
#spinner .spinnee {
  top: 45%;
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.7s infinite linear;
  animation: load8 0.7s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#spinner.loading {
  display: block;
}

.animate__animated.animate__fadeOutDown,
.animate__animated.animate__fadeInUp {
  --animate-duration: 1s;
}

@media screen and (min-width: 0px) {
  footer.vee-layout-footer {
    background-color: #353535;
    position: relative;
    padding: 0 32px;
  }
  footer.vee-layout-footer:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../files/valleyfence/assets/img/footer-icon.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 90%;
    opacity: 0.05;
  }
  footer.vee-layout-footer a, footer.vee-layout-footer p {
    color: var(--white);
  }
  footer.vee-layout-footer .content-image.footerLogo {
    max-width: 300px;
  }
  footer.vee-layout-footer .content-text.addressPhone p a:before {
    content: "\f3c5";
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    padding-right: 12px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }
  footer.vee-layout-footer .content-text.addressPhone p:first-of-type {
    margin-bottom: 12px;
  }
  footer.vee-layout-footer .content-text.addressPhone p:last-of-type a:before {
    content: "\f2a0";
  }
  footer.vee-layout-footer .mod_rhyme_currenthours {
    text-align: left;
    padding: 0;
    font-size: 1rem;
  }
  footer.vee-layout-footer .socials {
    margin: 32px 0;
  }
  footer.vee-layout-footer .socials a {
    display: inline-block;
    margin-right: 12px;
    font-size: 2rem;
  }
  footer.vee-layout-footer .socials a span {
    display: none;
  }
  footer.vee-layout-footer .mod_rhyme_allstandardhours h3, footer.vee-layout-footer .mod_rhyme_allstandardhours dl {
    color: var(--white);
  }
  footer.vee-layout-footer .content-text.copyright {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 0px) {
  .content-text.rightAlign {
    text-align: right;
  }
  .content-text.centerAlign {
    text-align: center;
  }
}
@media screen and (min-width: 0px) {
  *[class*=vee-headline-],
  .ce_headline,
  .content-headline {
    line-height: 105%;
  }
  *[class*=vee-headline-] small.vee-subheadline,
  .ce_headline small.vee-subheadline,
  .content-headline small.vee-subheadline {
    display: block;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 50%;
    margin-bottom: 0.5rem;
    line-height: 100%;
  }
  .content-text h1[class*=vee-headline-],
  .content-text h2[class*=vee-headline-],
  .content-text h3[class*=vee-headline-],
  .content-text h4[class*=vee-headline-],
  .content-text h5[class*=vee-headline-],
  .content-text h6[class*=vee-headline-],
  h1[class*=vee-headline-],
  h2[class*=vee-headline-],
  h3[class*=vee-headline-],
  h4[class*=vee-headline-],
  h5[class*=vee-headline-],
  h6[class*=vee-headline-],
  h1.ce_headline,
  h2.ce_headline,
  h3.ce_headline,
  h4.ce_headline,
  h5.ce_headline,
  h6.ce_headline,
  h1.content-headline,
  h2.content-headline,
  h3.content-headline,
  h4.content-headline,
  h5.content-headline,
  h6.content-headline {
    font-size: 2rem;
  }
  .content-text h1[class*=vee-headline-].small,
  .content-text h2[class*=vee-headline-].small,
  .content-text h3[class*=vee-headline-].small,
  .content-text h4[class*=vee-headline-].small,
  .content-text h5[class*=vee-headline-].small,
  .content-text h6[class*=vee-headline-].small,
  h1[class*=vee-headline-].small,
  h2[class*=vee-headline-].small,
  h3[class*=vee-headline-].small,
  h4[class*=vee-headline-].small,
  h5[class*=vee-headline-].small,
  h6[class*=vee-headline-].small,
  h1.ce_headline.small,
  h2.ce_headline.small,
  h3.ce_headline.small,
  h4.ce_headline.small,
  h5.ce_headline.small,
  h6.ce_headline.small,
  h1.content-headline.small,
  h2.content-headline.small,
  h3.content-headline.small,
  h4.content-headline.small,
  h5.content-headline.small,
  h6.content-headline.small {
    font-size: 1.1rem;
  }
  .content-text h1[class*=vee-headline-].medium,
  .content-text h2[class*=vee-headline-].medium,
  .content-text h3[class*=vee-headline-].medium,
  .content-text h4[class*=vee-headline-].medium,
  .content-text h5[class*=vee-headline-].medium,
  .content-text h6[class*=vee-headline-].medium,
  h1[class*=vee-headline-].medium,
  h2[class*=vee-headline-].medium,
  h3[class*=vee-headline-].medium,
  h4[class*=vee-headline-].medium,
  h5[class*=vee-headline-].medium,
  h6[class*=vee-headline-].medium,
  h1.ce_headline.medium,
  h2.ce_headline.medium,
  h3.ce_headline.medium,
  h4.ce_headline.medium,
  h5.ce_headline.medium,
  h6.ce_headline.medium,
  h1.content-headline.medium,
  h2.content-headline.medium,
  h3.content-headline.medium,
  h4.content-headline.medium,
  h5.content-headline.medium,
  h6.content-headline.medium {
    font-size: 1.5rem;
  }
  .content-text h1[class*=vee-headline-].large,
  .content-text h2[class*=vee-headline-].large,
  .content-text h3[class*=vee-headline-].large,
  .content-text h4[class*=vee-headline-].large,
  .content-text h5[class*=vee-headline-].large,
  .content-text h6[class*=vee-headline-].large,
  h1[class*=vee-headline-].large,
  h2[class*=vee-headline-].large,
  h3[class*=vee-headline-].large,
  h4[class*=vee-headline-].large,
  h5[class*=vee-headline-].large,
  h6[class*=vee-headline-].large,
  h1.ce_headline.large,
  h2.ce_headline.large,
  h3.ce_headline.large,
  h4.ce_headline.large,
  h5.ce_headline.large,
  h6.ce_headline.large,
  h1.content-headline.large,
  h2.content-headline.large,
  h3.content-headline.large,
  h4.content-headline.large,
  h5.content-headline.large,
  h6.content-headline.large {
    font-size: 2rem;
  }
  .content-text h1[class*=vee-headline-].xlarge,
  .content-text h2[class*=vee-headline-].xlarge,
  .content-text h3[class*=vee-headline-].xlarge,
  .content-text h4[class*=vee-headline-].xlarge,
  .content-text h5[class*=vee-headline-].xlarge,
  .content-text h6[class*=vee-headline-].xlarge,
  h1[class*=vee-headline-].xlarge,
  h2[class*=vee-headline-].xlarge,
  h3[class*=vee-headline-].xlarge,
  h4[class*=vee-headline-].xlarge,
  h5[class*=vee-headline-].xlarge,
  h6[class*=vee-headline-].xlarge,
  h1.ce_headline.xlarge,
  h2.ce_headline.xlarge,
  h3.ce_headline.xlarge,
  h4.ce_headline.xlarge,
  h5.ce_headline.xlarge,
  h6.ce_headline.xlarge,
  h1.content-headline.xlarge,
  h2.content-headline.xlarge,
  h3.content-headline.xlarge,
  h4.content-headline.xlarge,
  h5.content-headline.xlarge,
  h6.content-headline.xlarge {
    font-size: 2.5rem;
  }
  .content-text h1[class*=vee-headline-].centerAlign,
  .content-text h2[class*=vee-headline-].centerAlign,
  .content-text h3[class*=vee-headline-].centerAlign,
  .content-text h4[class*=vee-headline-].centerAlign,
  .content-text h5[class*=vee-headline-].centerAlign,
  .content-text h6[class*=vee-headline-].centerAlign,
  h1[class*=vee-headline-].centerAlign,
  h2[class*=vee-headline-].centerAlign,
  h3[class*=vee-headline-].centerAlign,
  h4[class*=vee-headline-].centerAlign,
  h5[class*=vee-headline-].centerAlign,
  h6[class*=vee-headline-].centerAlign,
  h1.ce_headline.centerAlign,
  h2.ce_headline.centerAlign,
  h3.ce_headline.centerAlign,
  h4.ce_headline.centerAlign,
  h5.ce_headline.centerAlign,
  h6.ce_headline.centerAlign,
  h1.content-headline.centerAlign,
  h2.content-headline.centerAlign,
  h3.content-headline.centerAlign,
  h4.content-headline.centerAlign,
  h5.content-headline.centerAlign,
  h6.content-headline.centerAlign {
    text-align: center;
  }
  .content-text h1[class*=vee-headline-].leftAlign,
  .content-text h2[class*=vee-headline-].leftAlign,
  .content-text h3[class*=vee-headline-].leftAlign,
  .content-text h4[class*=vee-headline-].leftAlign,
  .content-text h5[class*=vee-headline-].leftAlign,
  .content-text h6[class*=vee-headline-].leftAlign,
  h1[class*=vee-headline-].leftAlign,
  h2[class*=vee-headline-].leftAlign,
  h3[class*=vee-headline-].leftAlign,
  h4[class*=vee-headline-].leftAlign,
  h5[class*=vee-headline-].leftAlign,
  h6[class*=vee-headline-].leftAlign,
  h1.ce_headline.leftAlign,
  h2.ce_headline.leftAlign,
  h3.ce_headline.leftAlign,
  h4.ce_headline.leftAlign,
  h5.ce_headline.leftAlign,
  h6.ce_headline.leftAlign,
  h1.content-headline.leftAlign,
  h2.content-headline.leftAlign,
  h3.content-headline.leftAlign,
  h4.content-headline.leftAlign,
  h5.content-headline.leftAlign,
  h6.content-headline.leftAlign {
    text-align: left;
  }
  .content-text h1[class*=vee-headline-].rightAlign,
  .content-text h2[class*=vee-headline-].rightAlign,
  .content-text h3[class*=vee-headline-].rightAlign,
  .content-text h4[class*=vee-headline-].rightAlign,
  .content-text h5[class*=vee-headline-].rightAlign,
  .content-text h6[class*=vee-headline-].rightAlign,
  h1[class*=vee-headline-].rightAlign,
  h2[class*=vee-headline-].rightAlign,
  h3[class*=vee-headline-].rightAlign,
  h4[class*=vee-headline-].rightAlign,
  h5[class*=vee-headline-].rightAlign,
  h6[class*=vee-headline-].rightAlign,
  h1.ce_headline.rightAlign,
  h2.ce_headline.rightAlign,
  h3.ce_headline.rightAlign,
  h4.ce_headline.rightAlign,
  h5.ce_headline.rightAlign,
  h6.ce_headline.rightAlign,
  h1.content-headline.rightAlign,
  h2.content-headline.rightAlign,
  h3.content-headline.rightAlign,
  h4.content-headline.rightAlign,
  h5.content-headline.rightAlign,
  h6.content-headline.rightAlign {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .content-text h1[class*=vee-headline-],
  .content-text h2[class*=vee-headline-],
  .content-text h3[class*=vee-headline-],
  .content-text h4[class*=vee-headline-],
  .content-text h5[class*=vee-headline-],
  .content-text h6[class*=vee-headline-],
  h1[class*=vee-headline-],
  h2[class*=vee-headline-],
  h3[class*=vee-headline-],
  h4[class*=vee-headline-],
  h5[class*=vee-headline-],
  h6[class*=vee-headline-],
  h1.ce_headline,
  h2.ce_headline,
  h3.ce_headline,
  h4.ce_headline,
  h5.ce_headline,
  h6.ce_headline,
  h1.content-headline,
  h2.content-headline,
  h3.content-headline,
  h4.content-headline,
  h5.content-headline,
  h6.content-headline {
    font-size: 2.5rem;
  }
  .content-text h1[class*=vee-headline-].small,
  .content-text h2[class*=vee-headline-].small,
  .content-text h3[class*=vee-headline-].small,
  .content-text h4[class*=vee-headline-].small,
  .content-text h5[class*=vee-headline-].small,
  .content-text h6[class*=vee-headline-].small,
  h1[class*=vee-headline-].small,
  h2[class*=vee-headline-].small,
  h3[class*=vee-headline-].small,
  h4[class*=vee-headline-].small,
  h5[class*=vee-headline-].small,
  h6[class*=vee-headline-].small,
  h1.ce_headline.small,
  h2.ce_headline.small,
  h3.ce_headline.small,
  h4.ce_headline.small,
  h5.ce_headline.small,
  h6.ce_headline.small,
  h1.content-headline.small,
  h2.content-headline.small,
  h3.content-headline.small,
  h4.content-headline.small,
  h5.content-headline.small,
  h6.content-headline.small {
    font-size: 1.25rem;
  }
  .content-text h1[class*=vee-headline-].medium,
  .content-text h2[class*=vee-headline-].medium,
  .content-text h3[class*=vee-headline-].medium,
  .content-text h4[class*=vee-headline-].medium,
  .content-text h5[class*=vee-headline-].medium,
  .content-text h6[class*=vee-headline-].medium,
  h1[class*=vee-headline-].medium,
  h2[class*=vee-headline-].medium,
  h3[class*=vee-headline-].medium,
  h4[class*=vee-headline-].medium,
  h5[class*=vee-headline-].medium,
  h6[class*=vee-headline-].medium,
  h1.ce_headline.medium,
  h2.ce_headline.medium,
  h3.ce_headline.medium,
  h4.ce_headline.medium,
  h5.ce_headline.medium,
  h6.ce_headline.medium,
  h1.content-headline.medium,
  h2.content-headline.medium,
  h3.content-headline.medium,
  h4.content-headline.medium,
  h5.content-headline.medium,
  h6.content-headline.medium {
    font-size: 1.75rem;
  }
  .content-text h1[class*=vee-headline-].large,
  .content-text h2[class*=vee-headline-].large,
  .content-text h3[class*=vee-headline-].large,
  .content-text h4[class*=vee-headline-].large,
  .content-text h5[class*=vee-headline-].large,
  .content-text h6[class*=vee-headline-].large,
  h1[class*=vee-headline-].large,
  h2[class*=vee-headline-].large,
  h3[class*=vee-headline-].large,
  h4[class*=vee-headline-].large,
  h5[class*=vee-headline-].large,
  h6[class*=vee-headline-].large,
  h1.ce_headline.large,
  h2.ce_headline.large,
  h3.ce_headline.large,
  h4.ce_headline.large,
  h5.ce_headline.large,
  h6.ce_headline.large,
  h1.content-headline.large,
  h2.content-headline.large,
  h3.content-headline.large,
  h4.content-headline.large,
  h5.content-headline.large,
  h6.content-headline.large {
    font-size: 2.25rem;
  }
  .content-text h1[class*=vee-headline-].xlarge,
  .content-text h2[class*=vee-headline-].xlarge,
  .content-text h3[class*=vee-headline-].xlarge,
  .content-text h4[class*=vee-headline-].xlarge,
  .content-text h5[class*=vee-headline-].xlarge,
  .content-text h6[class*=vee-headline-].xlarge,
  h1[class*=vee-headline-].xlarge,
  h2[class*=vee-headline-].xlarge,
  h3[class*=vee-headline-].xlarge,
  h4[class*=vee-headline-].xlarge,
  h5[class*=vee-headline-].xlarge,
  h6[class*=vee-headline-].xlarge,
  h1.ce_headline.xlarge,
  h2.ce_headline.xlarge,
  h3.ce_headline.xlarge,
  h4.ce_headline.xlarge,
  h5.ce_headline.xlarge,
  h6.ce_headline.xlarge,
  h1.content-headline.xlarge,
  h2.content-headline.xlarge,
  h3.content-headline.xlarge,
  h4.content-headline.xlarge,
  h5.content-headline.xlarge,
  h6.content-headline.xlarge {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1351px) {
  .content-text h1[class*=vee-headline-],
  .content-text h2[class*=vee-headline-],
  .content-text h3[class*=vee-headline-],
  .content-text h4[class*=vee-headline-],
  .content-text h5[class*=vee-headline-],
  .content-text h6[class*=vee-headline-],
  h1[class*=vee-headline-],
  h2[class*=vee-headline-],
  h3[class*=vee-headline-],
  h4[class*=vee-headline-],
  h5[class*=vee-headline-],
  h6[class*=vee-headline-],
  h1.ce_headline,
  h2.ce_headline,
  h3.ce_headline,
  h4.ce_headline,
  h5.ce_headline,
  h6.ce_headline,
  h1.content-headline,
  h2.content-headline,
  h3.content-headline,
  h4.content-headline,
  h5.content-headline,
  h6.content-headline {
    font-size: 2.5rem;
  }
  .content-text h1[class*=vee-headline-].large,
  .content-text h2[class*=vee-headline-].large,
  .content-text h3[class*=vee-headline-].large,
  .content-text h4[class*=vee-headline-].large,
  .content-text h5[class*=vee-headline-].large,
  .content-text h6[class*=vee-headline-].large,
  h1[class*=vee-headline-].large,
  h2[class*=vee-headline-].large,
  h3[class*=vee-headline-].large,
  h4[class*=vee-headline-].large,
  h5[class*=vee-headline-].large,
  h6[class*=vee-headline-].large,
  h1.ce_headline.large,
  h2.ce_headline.large,
  h3.ce_headline.large,
  h4.ce_headline.large,
  h5.ce_headline.large,
  h6.ce_headline.large,
  h1.content-headline.large,
  h2.content-headline.large,
  h3.content-headline.large,
  h4.content-headline.large,
  h5.content-headline.large,
  h6.content-headline.large {
    font-size: 2.5rem;
  }
  .content-text h1[class*=vee-headline-].xlarge,
  .content-text h2[class*=vee-headline-].xlarge,
  .content-text h3[class*=vee-headline-].xlarge,
  .content-text h4[class*=vee-headline-].xlarge,
  .content-text h5[class*=vee-headline-].xlarge,
  .content-text h6[class*=vee-headline-].xlarge,
  h1[class*=vee-headline-].xlarge,
  h2[class*=vee-headline-].xlarge,
  h3[class*=vee-headline-].xlarge,
  h4[class*=vee-headline-].xlarge,
  h5[class*=vee-headline-].xlarge,
  h6[class*=vee-headline-].xlarge,
  h1.ce_headline.xlarge,
  h2.ce_headline.xlarge,
  h3.ce_headline.xlarge,
  h4.ce_headline.xlarge,
  h5.ce_headline.xlarge,
  h6.ce_headline.xlarge,
  h1.content-headline.xlarge,
  h2.content-headline.xlarge,
  h3.content-headline.xlarge,
  h4.content-headline.xlarge,
  h5.content-headline.xlarge,
  h6.content-headline.xlarge {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 0px) {
  .content-image.redBorder,
  .ce_image.redBorder {
    border-bottom: 12px solid var(--red);
  }
  .content-image.blueBorder,
  .ce_image.blueBorder {
    border-bottom: 12px solid var(--blue);
  }
  .content-image.lightGreenBorder,
  .ce_image.lightGreenBorder {
    border-bottom: 12px solid var(--light-green);
  }
}
@media screen and (min-width: 1px) {
  .vee-button--style-sweep-to-right a:before,
  .vee-button--style-sweep-to-right button:before {
    opacity: 0.15;
  }
  .ce_rsce_vee_button .vee-button a {
    border-radius: 50px;
    background-color: var(--blue);
  }
  .ce_rsce_vee_button .vee-button a:before {
    background-color: var(--white);
  }
  .ce_rsce_vee_button.left .vee-button {
    justify-content: flex-start;
  }
  .ce_rsce_vee_button.right .vee-button {
    justify-content: flex-end;
  }
  .ce_rsce_vee_button.centered .vee-button {
    justify-content: center;
  }
  .ce_rsce_vee_button.red .vee-button a {
    background-color: var(--red);
  }
  .ce_rsce_vee_button.gray .vee-button a {
    background-color: var(--gray);
  }
  .ce_rsce_vee_button.green .vee-button a {
    background-color: var(--green);
  }
  .ce_rsce_vee_button.lightGreen .vee-button a {
    background-color: var(--light-green);
  }
  .ce_rsce_vee_button.white .vee-button a {
    background-color: var(--white);
    color: var(--white);
  }
  .ce_rsce_vee_button.outline .vee-button a {
    background-color: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
  }
  .ce_rsce_vee_button.outline .vee-button a:before {
    background-color: var(--gray);
  }
  .ce_rsce_vee_button.outline.red .vee-button a {
    color: var(--red);
    border: 2px solid var(--red);
  }
  .ce_rsce_vee_button.outline.gray .vee-button a {
    color: var(--gray);
    border: 2px solid var(--gray);
  }
  .ce_rsce_vee_button.outline.green .vee-button a {
    color: var(--green);
    border: 2px solid var(--green);
  }
  .ce_rsce_vee_button.outline.lightGreen .vee-button a {
    color: var(--light-green);
    border: 2px solid var(--light-green);
  }
  .ce_rsce_vee_button.outline.white .vee-button a {
    color: var(--white);
    border: 2px solid var(--white);
  }
  .ce_rsce_vee_button.outline.white .vee-button a:before {
    background-color: var(--white);
  }
}
@media screen and (min-width: 0px) {
  .content-link-with-shaded-background {
    position: relative;
    overflow: hidden;
  }
  .content-link-with-shaded-background:has(a.cta:hover) figure img {
    transform: scale(1.15);
  }
  .content-link-with-shaded-background figure {
    position: relative;
  }
  .content-link-with-shaded-background figure img {
    transition: transform 1s ease-out;
    transform: scale(1);
  }
  .content-link-with-shaded-background figure:before {
    position: absolute;
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--black);
    opacity: 0.75;
  }
  .content-link-with-shaded-background .text_link {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .content-link-with-shaded-background .text_link h2 {
    margin-bottom: 32px;
  }
  .content-link-with-shaded-background .text_link .ce_rsce_vee_button {
    margin-bottom: 0;
  }
  .content-link-with-shaded-background .text_link a {
    color: var(--white);
  }
}
@media screen and (min-width: 0px) {
  .mod_rhyme_allstandardhours {
    margin: 32px 0;
  }
  .mod_rhyme_allstandardhours h3, .mod_rhyme_allstandardhours dl {
    color: var(--black);
  }
  .mod_rhyme_allstandardhours h3 {
    font-size: 1.25rem;
  }
  .mod_rhyme_allstandardhours dl {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 130%;
    max-width: 248px;
  }
  .mod_rhyme_allstandardhours dl dt {
    width: 48px;
  }
  .mod_rhyme_allstandardhours dl dd {
    max-width: 200px;
    width: calc(100% - 48px);
  }
}
@media all and (min-width: 0px) {
  .content-available-space {
    margin: 64px 0;
  }
  .content-available-space.vee-section:not(.vee-section--boxed) {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .content-available-space .row.image-text {
    flex-direction: column-reverse;
  }
  .content-available-space .row.image-text .textContent, .content-available-space .row.image-text figure {
    padding: 32px 32px 16px 32px;
  }
}
@media all and (min-width: 768px) {
  .content-available-space .row.image-text {
    flex-direction: row-reverse;
  }
  .content-available-space:nth-child(2n+1) .row.image-text {
    flex-direction: row;
  }
}
@media screen and (min-width: 0px) {
  .image_container.vee-image-hover a {
    width: 100%;
    flex-grow: 1;
  }
}
@media screen and (min-width: 0px) {
  .tabs__list {
    margin: 0;
    padding: 0;
  }
  .tabs__item {
    display: block;
    list-style: none;
    margin-bottom: 5px;
  }
  .tabs__link {
    display: block;
    padding: 12px 24px;
    background: var(--blue);
    cursor: pointer;
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }
  .tabs__link:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  [aria-selected=true].tabs__link {
    color: var(--blue);
    background: var(--tabs-blue);
  }
  [aria-hidden=true].tabs__content {
    display: none;
  }
  .tabs__content {
    padding: 32px;
  }
}
@media screen and (min-width: 992px) {
  .tabs__list {
    margin: 0 24px;
  }
  .tabs__item {
    display: inline-block;
    margin: 0;
  }
  .tabs__link {
    display: inline-block;
    border-radius: 20px 20px 0 0;
    max-width: none;
  }
  .tabs__content {
    background: var(--tabs-blue);
    border-radius: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .tabs__link {
    padding: 18px 32px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1400px) {
  .tabs__link {
    padding: 18px 48px;
    font-size: 1.3rem;
  }
}
@keyframes border-dance {
  0% {
    background-position: left top, right bottom, left bottom, right top;
  }
  100% {
    background-position: left 10px top, right 10px bottom, left bottom 10px, right top 10px;
  }
}
@media screen and (min-width: 0px) {
  fieldset, legend {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    font-size: initial;
  }
  textarea {
    font-family: var(--body-text);
  }
  /* EXTEND TO ALL TEXT FORM INPUTS */
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=url],
  input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 100%;
    padding: 10px;
    line-height: 20px;
    font-size: 16px;
    font-weight: inherit;
    background: #eee7e5;
    border-radius: 5px;
    border: 1px solid #353535;
  }
  input[type=text]::placeholder,
  input[type=tel]::placeholder,
  input[type=email]::placeholder,
  input[type=url]::placeholder,
  input[type=number]::placeholder {
    color: #353535;
  }
  input[type=text]:focus,
  input[type=tel]:focus,
  input[type=email]:focus,
  input[type=url]:focus,
  input[type=number]:focus {
    outline: none;
    border-color: #ffffff;
  }
  input[type=text].invalid,
  input[type=tel].invalid,
  input[type=email].invalid,
  input[type=url].invalid,
  input[type=number].invalid {
    border-color: #bf503b;
  }
  input[type=text]:focus:invalid,
  input[type=password]:focus:invalid,
  input[type=email]:focus:invalid,
  select:focus:invalid,
  textarea:focus:invalid {
    border-color: #000000;
  }
  input[type=text]:focus:valid,
  input[type=password]:focus:valid,
  input[type=email]:focus:valid,
  select:focus:valid,
  textarea:focus:valid {
    border-color: #000000;
  }
  input[type=text],
  input[type=password],
  input[type=tel],
  input[type=email],
  input[type=url], select {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .widget {
    padding: 10px 0;
  }
  .widget .subLabel {
    font-size: 11px;
    font-style: normal;
    color: #323232;
  }
  .widget-text label,
  .widget-text fieldset legend,
  .widget-textarea label,
  .widget-textarea fieldset legend,
  .widget-radio label,
  .widget-radio fieldset legend,
  .widget-checkbox label,
  .widget-checkbox fieldset legend,
  .widget-password label,
  .widget-password fieldset legend,
  .widget-select label,
  .widget-select fieldset legend,
  .widget-dmuploader label,
  .widget-dmuploader fieldset legend {
    font-size: 12px;
    margin: 10px 0 5px;
    display: block;
    padding: 0;
    color: #000000;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod),
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) {
    padding-top: 10px;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) span,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) span {
    margin-right: 10px;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) label,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) label {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    color: #000000;
    background-color: #ffffff;
    padding: 0 12px 0 40px;
    border: 1px solid #000000;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 40px;
    margin-top: 0;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) label:before,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) label:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 10px;
    display: inline-block;
    height: 20px;
    width: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) label:after,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) label:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 14px;
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) input:checked + label,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) input:checked + label {
    background-color: #000000;
    color: #ffffff;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) input:checked + label:before,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) input:checked + label:before {
    background: #ffffff;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) input:checked + label:after,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) input:checked + label:after {
    opacity: 1;
  }
  .widget-radio fieldset:not(#ctrl_paymentmethod) input,
  .widget-checkbox fieldset:not(#ctrl_paymentmethod) input {
    display: none;
  }
  .widget-submit {
    padding: 10px 0;
    text-align: right;
  }
  span.mandatory {
    display: inline-block;
    margin-left: 2px;
    font-weight: 700;
    color: #bf503b;
    font-size: 115%;
  }
  .widget.w50 {
    width: 100%;
  }
  .grecaptcha-badge {
    display: none;
  }
  .widget-recaptcha-not-a-robot {
    margin-top: 20px;
  }
  .widget.tl_chosen .chzn-container-single .chzn-single {
    height: 40px;
    line-height: 40px;
    padding-left: 12px;
  }
  .widget.tl_chosen .chzn-container-single .chzn-single > span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .ce_form .formbody {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }
  .ce_form .formbody .widget.med-full {
    width: 100%;
  }
  .ce_form .formbody .widget.med-large {
    width: 75%;
  }
  .ce_form .formbody .widget.med-half {
    width: 48%;
  }
  .ce_form .formbody .widget.med-small {
    width: 30%;
  }
}
@media screen and (min-width: 961px) {
  .widget.w50 {
    width: 50%;
  }
  .widget.w50:nth-of-type(odd) {
    padding-right: 10px;
  }
  .widget.w50:nth-of-type(even) {
    padding-left: 10px;
  }
  .widget-dmuploader .card.dm-uploader {
    padding: 30px;
  }
  .widget-dmuploader .card.dm-uploader div.button-primary {
    font-size: 16px;
    padding: 15px 30px;
  }
}
@keyframes border-dance {
  0% {
    background-position: left top, right bottom, left bottom, right top;
  }
  100% {
    background-position: left 10px top, right 10px bottom, left bottom 10px, right top 10px;
  }
}
@media screen and (min-width: 0px) {
  .widget-dmuploader label,
  .widget-dmuploader fieldset legend {
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
  }
  .widget-dmuploader .row {
    margin-top: 0;
  }
  .widget-dmuploader h3.card-title {
    text-align: center;
    font-family: var(--headline-text);
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
  }
  .widget-dmuploader .card.dm-uploader {
    text-align: center;
    background-image: linear-gradient(90deg, #000000 50%, transparent 50%), linear-gradient(90deg, #000000 50%, transparent 50%), linear-gradient(0deg, #000000 50%, transparent 50%), linear-gradient(0deg, #000000 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 10px 5px, 10px 5px, 5px 10px, 5px 10px;
    background-position: left top, right bottom, left bottom, right top;
    padding: 20px 10px;
  }
  .widget-dmuploader .card.dm-uploader div.button-primary {
    background-color: #000000;
    font-weight: 700;
    font-size: 14px;
    padding: 15px;
  }
  .widget-dmuploader .card.filesList {
    background-color: #235460;
  }
  .widget-dmuploader .card.filesList ul, .widget-dmuploader .card.filesList li {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .widget-dmuploader .card.filesList li img {
    max-width: 100px;
  }
  .widget-dmuploader.active .card.dm-uploader {
    animation: border-dance 0.5s infinite linear;
  }
}
@media screen and (min-width: 961px) {
  .widget-dmuploader .card.dm-uploader {
    padding: 30px;
  }
  .widget-dmuploader .card.dm-uploader div.button-primary {
    font-size: 16px;
    padding: 15px 30px;
  }
}
@media screen and (min-width: 0px) {
  .specialSignup {
    padding: 40px;
    background-color: #ffffff;
    text-align: center;
    max-width: 768px;
    margin: 0 auto 50px;
    position: relative;
  }
  .specialSignup h3 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .specialSignup fieldset.med-full {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
  }
  .specialSignup .widget {
    padding: 0;
  }
  .specialSignup .widget ::placeholder {
    color: #353535;
    opacity: 1;
  }
  .specialSignup .widget :-ms-input-placeholder {
    color: #353535;
    opacity: 1;
  }
  .specialSignup .widget ::-ms-input-placeholder {
    color: #353535;
    opacity: 1;
  }
  .specialSignup .widget.widget-captcha {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
  }
  .specialSignup .widget.widget-text, .specialSignup .widget.widget-submit {
    display: inline-block;
    vertical-align: top;
    margin: 0;
  }
  .specialSignup .widget.widget-text {
    width: 48%;
  }
  .specialSignup .widget.widget-text input {
    border: 1px solid #000000;
    font-size: 16px;
    text-transform: lowercase;
    background-color: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
  }
  .specialSignup .widget.widget-submit {
    padding: 0;
    width: 33%;
  }
  .specialSignup .widget.widget-submit button {
    color: #000000;
    background-color: transparent;
    margin: 0;
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
    font-family: var(--body-text);
    border: solid 2px black;
    border-radius: 45px;
    padding: 5px;
  }
}
@media screen and (min-width: 641px) {
  .specialSignup .widget.widget-submit button {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1150px) {
  .specialSignup .widget.widget-submit {
    padding-top: 10px;
  }
}
@media screen and (min-width: 0px) {
  header.vee-layout-header {
    position: absolute;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
  }
}
@media screen and (min-width: 0px) {
  #topBar {
    background-color: var(--offwhite);
  }
  #topBar .inner {
    padding: 6px 48px 0;
  }
  #topBar .announcement {
    padding: 5px;
  }
  #topBar .announcement .content-text {
    margin: 0;
  }
  #topBar .announcement .content-text p, #topBar .announcement .content-text h1, #topBar .announcement .content-text h2, #topBar .announcement .content-text h3, #topBar .announcement .content-text h4 {
    text-align: center;
    font-size: 0.8rem;
    margin: 0;
  }
  #topBar .findUs {
    position: absolute;
    top: 5px;
    right: 9px;
  }
  #topBar .findUs .content-hyperlink {
    margin: 0;
  }
  #topBar .findUs a {
    border: none;
    margin: 0;
    text-decoration: none;
    text-transform: none;
    padding: 0;
  }
  #topBar .findUs a span {
    display: none;
  }
  #topBar .findUs a:before {
    font-size: 2rem;
    content: "\f3c5";
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    padding-right: 12px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }
}
@media screen and (min-width: 960px) {
  #topBar .inner {
    padding: 6px 32px;
    max-width: 1347px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #topBar .mod_rhyme_currenthours {
    min-width: 300px;
  }
  #topBar .announcement {
    flex-grow: 1;
    padding: 0 32px;
  }
  #topBar .findUs {
    position: relative;
    top: auto;
    right: auto;
    text-align: right;
    min-width: 200px;
  }
  #topBar .findUs a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #topBar .findUs a span {
    display: inline-block;
  }
}
@media screen and (min-width: 1400px) {
  #topBar .inner {
    padding: 6px 24px;
  }
}
@media screen and (min-width: 0px) {
  header.vee-layout-header .header_bottom {
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(238, 231, 229, 0.65);
    transition: all 0.5s ease;
  }
  header.vee-layout-header .header_bottom .header_logo {
    margin: 0;
    padding: 24px 0;
    width: 230px;
  }
  header.vee-layout-header .header_bottom .nav_wrapper {
    flex-grow: 1;
  }
  header.vee-layout-header .header_bottom .ce_vee_panel {
    margin: 0;
    padding: 24px 0;
  }
}
@media all and (min-width: 0px) {
  .vee-header__menu-trigger button {
    border-color: var(--black);
    border-width: 1px;
  }
  .vee-header__menu-trigger button .vee-burger__icon i {
    background-color: var(--black);
    width: 1.143em;
    height: 1px;
  }
}
@media all and (min-width: 0px) {
  html.scrolled header.vee-layout-header .header_bottom {
    position: fixed;
    background-color: var(--white);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 0px) {
  .mod_rhyme_currenthours {
    text-align: center;
    padding: 5px;
    font-size: 0.9rem;
    margin: 0;
  }
  .mod_rhyme_currenthours p {
    margin: 0;
  }
  .mod_rhyme_currenthours span.isOpen {
    font-weight: 700;
  }
}
@media screen and (min-width: 0px) {
  .modal {
    width: 100%;
    height: 100%;
    max-width: 960px;
    display: block;
    position: absolute;
    border-radius: 0;
    box-shadow: none;
    background-color: white;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }
  .modal > .inner {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
  }
  .modal .closeButton {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 10px;
    top: 10px;
    overflow: hidden;
    border: none;
    color: transparent;
    outline: none;
    z-index: 100000000000;
    -webkit-backface-visibility: visible; /* BW NOTE: I changed this to visible?? */
    background-color: transparent;
    cursor: pointer;
  }
  .modal .closeButton:hover {
    background-color: transparent;
  }
  .modal .closeButton:before {
    content: "\e59b";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    font-weight: 300;
    color: #000000;
    font-size: 40px;
    width: 50px;
    margin: -5px auto 0;
    left: 0;
    right: 0;
    font-family: "Font Awesome 6 Pro";
    -webkit-backface-visibility: visible; /* BW NOTE: I changed this to visible?? */
    cursor: pointer;
  }
  .modal .modal-body {
    padding: 75px 20px 20px;
    background-color: transparent;
    height: 100%;
  }
  .modal-mask {
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999999999;
  }
  body.modal-open {
    overflow-y: hidden !important;
    /*
    width: 100%;
    height: 100%;
    position: fixed;
    */
  }
}
@media screen and (min-width: 961px) {
  .modal {
    width: 700px;
    max-width: 90vw;
    min-height: 200px;
    height: auto;
  }
}
@media screen and (min-width: 0px) {
  .mod_rhyme_allstandardhours#hours-popup-module h2, .mod_rhyme_allstandardhours#hours-popup-module h3, .mod_rhyme_allstandardhours#hours-popup-module h4 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .mod_rhyme_allstandardhours#hours-popup-module dl dd, .mod_rhyme_allstandardhours#hours-popup-module dl dt {
    font-size: 1.3rem;
  }
  .mod_rhyme_allstandardhours#hours-popup-module dl dt {
    width: calc(50% - 125px);
  }
}
div .mc-banner {
  top: auto;
  bottom: 0;
}

button.mc-closeModal {
  right: -19px;
  top: 0;
  box-shadow: none;
  background-color: transparent;
}
button.mc-closeModal:before, button.mc-closeModal:after {
  height: 16px;
}

@media screen and (min-width: 0px) {
  #mainNav.mod_navigation.vee-navigation.vee-navigation--type-horizontal-simple {
    display: none;
    width: 100%;
    padding: 0 32px;
    max-width: 768px;
    margin: 0 auto;
  }
  #mainNav.mod_navigation.vee-navigation.vee-navigation--type-horizontal-simple ul {
    display: flex;
    justify-content: space-between;
  }
  #mainNav.mod_navigation.vee-navigation.vee-navigation--type-horizontal-simple ul li a {
    margin: 0;
    color: var(--black);
    font-weight: 600;
  }
  #mainNav.mod_navigation.vee-navigation.vee-navigation--type-horizontal-simple ul li.active a, #mainNav.mod_navigation.vee-navigation.vee-navigation--type-horizontal-simple ul li.active span {
    margin: 0;
    color: var(--red);
    font-weight: 700;
  }
}
@media screen and (min-width: 992px) {
  #mainNav.mod_navigation.vee-navigation.vee-navigation--type-horizontal-simple {
    display: block;
  }
}
@media screen and (min-width: 0px) {
  #offcanvasWrapper {
    overflow-x: hidden;
    overflow-y: scroll;
  }
  #offcanvasWrapper .ce_text {
    text-align: center;
  }
  #offcanvasWrapper .ce_text a {
    font-size: 1.4rem;
    line-height: 150%;
    font-weight: 700;
    display: block;
    color: var(--red);
    text-transform: lowercase;
    font-family: var(--headline-text);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  #offcanvasNav {
    padding: 40px 0 0;
    text-align: center;
  }
  #offcanvasNav ul, #offcanvasNav li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #offcanvasNav ul li {
    margin-bottom: 15px;
  }
  #offcanvasNav ul li a, #offcanvasNav ul li strong {
    font-size: 2rem;
    line-height: 150%;
    font-weight: 700;
    display: block;
    color: var(--red);
    text-transform: lowercase;
    font-family: var(--headline-text);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 0px) {
  .mod_newsreader h1.ce_rsce_vee_headline_extended {
    color: var(--white);
  }
  .mod_newsreader h1.ce_rsce_vee_headline_extended small {
    color: var(--white);
  }
  .mod_newsreader p.info {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
  }
  .mod_newsreader .vee-section.content-wrapper:not(.vee-section--boxed) {
    padding-top: 0;
  }
  .mod_newsreader .vee-section.content:not(.vee-section--boxed) {
    padding-top: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .mod_newsreader .content-text h3[class*=vee-headline-] {
    color: var(--blue);
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
  .mod_newsreader .content-text p, .mod_newsreader .content-text li {
    line-height: 155%;
  }
  .mod_newsreader .content-text.media--below figure {
    margin: 32px 0 64px;
  }
  .mod_newsreader .content-text.media--above figure {
    margin: 64px 0 32px;
  }
  .mod_newsreader .content-gallery.vee-gallery {
    --gallery-grid-gap: 32px;
  }
}
@media screen and (min-width: 960px) {
  .mod_newsreader .vee-section.content:not(.vee-section--boxed) {
    padding-left: 0;
    padding-right: 0;
  }
  .mod_newsreader .content-text p, .mod_newsreader .content-text li {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 0px) {
  .mod_newslist {
    margin-top: 64px;
  }
  .mod_newslist div.vee-listing-1 .vee-listing-block h3.vee-listing-headline {
    font-size: 2rem;
  }
}
/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 111111;
  background: rgba(35, 84, 96, 0.95);
}

/* Overlay closing cross */
.overlay button.overlay-close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  border: none;
  outline: none;
  z-index: 100;
  background-color: transparent;
  border-radius: 0;
  display: none;
}
.overlay button.overlay-close span {
  display: none;
}

.overlay .overlay-close:before {
  content: "\f057";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 25px;
  color: #353535;
}

/* Effects */
.overlay {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay #offcanvasWrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
  color: #ffffff;
}

.overlay nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.overlay.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}

@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }
  .overlay ul li {
    min-height: 34px;
  }
}
@media screen and (min-width: 0px) {
  #offcanvasWrapper .mod_rhyme_currenthours {
    padding-top: 100px;
    text-align: center;
  }
  #offcanvasWrapper .mod_rhyme_currenthours p {
    font-size: 1.2rem;
  }
  #offcanvasWrapper .mod_rhyme_currenthours span.top, #offcanvasWrapper .mod_rhyme_currenthours span.hours {
    display: block;
  }
  #offcanvasWrapper .mod_rhyme_allstandardhours {
    padding-top: 25px;
  }
}
@media screen and (min-width: 641px) {
  #offcanvasWrapper .mod_rhyme_currenthours {
    padding-top: 40px;
  }
}
@media screen and (min-width: 0px) {
  .mod_vee_panel a.vee-panel-trigger {
    z-index: 100000;
  }
}
@media screen and (min-width: 0px) {
  .logoSlider .vee-slider {
    background-color: var(--blue);
    padding: 20px 0;
  }
  .logoSlider .vee-slider .swiper-slide picture {
    padding: 5px;
    display: flex;
    justify-content: center;
  }
  .logoSlider .vee-slider .swiper-slide img {
    max-width: 150px;
  }
}
@media screen and (min-width: 0px) {
  .video_container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .video_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .ce_vimeo.padded {
    padding: 40px;
  }
  .ce_vimeo.maxWidth900 {
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .ce_vimeo.padded {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 0px) {
  .numberInputContainer {
    display: flex;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    -ms-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
  }
  .numberInputContainer.numberInputLoaded {
    opacity: 1;
  }
  .numberInputContainer label {
    display: none;
  }
  .numberInputContainer button {
    background-color: #000000;
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin: 0;
    box-sizing: border-box;
    border: none;
    padding: 0 10px;
    width: 40px;
  }
  .numberInputContainer button:hover {
    transform: none;
    border: none;
  }
  .numberInputContainer button.reduceQty {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  .numberInputContainer button.increaseQty {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .numberInputContainer input {
    border-radius: 0;
    width: 50px;
    text-align: center;
    height: 40px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
  }
  .numberInputContainer input::placeholder {
    text-align: center;
  }
}
@media screen and (min-width: 0px) {
  .vee-section.heroVideo .vee-section__container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .vee-section.heroVideo .content-text {
    margin: 0;
    padding: 24px;
  }
  .vee-section.heroVideo h1, .vee-section.heroVideo h2, .vee-section.heroVideo h3, .vee-section.heroVideo h4, .vee-section.heroVideo p {
    color: var(--white);
  }
  .vee-section.heroVideo h1, .vee-section.heroVideo h2, .vee-section.heroVideo h3, .vee-section.heroVideo h4 {
    line-height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .vee-section.heroVideo .content-text {
    padding: 48px;
  }
}
@media screen and (min-width: 0px) {
  .vee-section.interiorVideo .vee-section__container {
    min-height: 35vh;
    padding-top: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .vee-section.interiorVideo .content-text {
    margin: 0;
    padding: 24px;
  }
  .vee-section.interiorVideo h1, .vee-section.interiorVideo h2, .vee-section.interiorVideo h3, .vee-section.interiorVideo h4, .vee-section.interiorVideo p {
    color: var(--white);
  }
  .vee-section.interiorVideo h1, .vee-section.interiorVideo h2, .vee-section.interiorVideo h3, .vee-section.interiorVideo h4 {
    line-height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .vee-section.interiorVideo .content-text {
    padding: 48px;
  }
}
@media all and (min-width: 0px) {
  .vee-section.background-clamp {
    background-size: min(35%, 256px);
  }
  .vee-section.background-clamp .vee-section__overlay {
    opacity: 0.25;
  }
}
@media (max-width: 767.98px) {
  .vee-section.background-clamp .vee-section__overlay {
    border-bottom-right-radius: clamp(2rem, 6vw, 60px);
  }
  .vee-section.background-clamp.alternating:nth-child(2n+1) .vee-section__overlay {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: clamp(2rem, 6vw, 60px);
  }
}
@media (min-width: 768px) {
  .vee-section.background-clamp .vee-section__overlay {
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    width: 47.5vw;
    left: 0;
    right: auto;
  }
  .vee-section.background-clamp.alternating:nth-child(2n+1) .vee-section__overlay {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 0px) {
  #admissionsHours {
    margin-bottom: 10px;
    padding: 40px 0;
  }
  #admissionsHours .feesWrapper, #admissionsHours .hoursWrapper {
    padding: 0 20px;
  }
  #admissionsHours h2 {
    font-family: var(--headline-text);
    color: #000000;
    font-size: 26px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 15px;
  }
  #admissionsHours .ce_genblk_keyvalues {
    margin-bottom: 20px;
  }
  #admissionsHours dl {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    margin: 0;
  }
  #admissionsHours dl dt, #admissionsHours dl dd {
    padding: 5px 0;
  }
  #admissionsHours dl dt {
    width: 40%;
    font-weight: 700;
  }
  #admissionsHours dl dd {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  #admissionsHours {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  #admissionsHours .feesWrapper {
    width: 49.75%;
    padding-right: 25px;
    border-right: 5px solid #3b3c47;
  }
  #admissionsHours .hoursWrapper {
    width: 50%;
    padding-left: 25px;
  }
}
@media screen and (min-width: 961px) {
  #admissionsHours .feesWrapper {
    width: 39.75%;
  }
  #admissionsHours .hoursWrapper {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #admissionsHours .hoursWrapper > div {
    width: 50%;
  }
}
@media screen and (min-width: 1251px) {
  #admissionsHours .feesWrapper {
    padding-right: 45px;
  }
  #admissionsHours .hoursWrapper {
    padding-left: 45px;
  }
}
@media screen and (min-width: 0px) {
  #newsletterSignup {
    padding-top: 100px;
  }
  #newsletterSignup .container {
    --bs-gutter-x: 32px;
    padding-bottom: 32px;
  }
  #newsletterSignup h2, #newsletterSignup p {
    color: var(--white);
  }
  #newsletterSignup form label {
    display: none;
  }
  #newsletterSignup form input[type=text], #newsletterSignup form input[type=email] {
    background-color: rgba(255, 255, 255, 0.65);
    border: none;
  }
  #newsletterSignup form input[type=text]::placeholder, #newsletterSignup form input[type=email]::placeholder {
    color: rgba(53, 53, 53, 0.55);
  }
  #newsletterSignup form input[type=submit] {
    display: inline-flex !important;
    align-items: center;
    overflow: hidden;
    color: var(--black);
    line-height: 1;
    text-decoration: none !important;
    background: var(--light-green);
    border: 0 solid;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    padding: 1em 2em;
    transition: all 0.5s ease-in-out;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    position: relative;
    will-change: transform;
  }
  #newsletterSignup form input[type=submit]:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background-color: var(--green);
    will-change: transform;
    opacity: 0.15;
  }
  #newsletterSignup form input[type=submit]:hover #newsletterSignup form input[type=submit]:before {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 576px) {
  #newsletterSignup {
    padding-top: 132px;
  }
}
@media screen and (min-width: 960px) {
  #newsletterSignup h2 {
    font-size: 2.75rem;
  }
  #newsletterSignup .w50_wrapper {
    display: flex;
  }
}
@media screen and (min-width: 1350px) {
  #newsletterSignup h2 {
    font-size: 3rem;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22%22%2C%22sources%22%3A%5B%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FResets%5C%2F_HTML5Reset.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FResets%5C%2F_MobiScrollResets.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FResets%5C%2F_MustardUIResets.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FResets%5C%2F_VeeResets.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_Animation.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_ColorChangeAnimation.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_Placeholder.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FVariables%5C%2F_Colors.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FVariables%5C%2F_Fonts.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FAnimations%5C%2F_FadeIn.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FStyles%5C%2F_Default.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_Transition.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FStyles%5C%2F_Layout.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FStyles%5C%2F_Spinner.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FStyles%5C%2F_AnimateCSSOverrides.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FFooter%5C%2FStyles%5C%2F_Layout.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_Text.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_ExtendedHeadline.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_Image.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_Hyperlink-Buttons.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_LinkWithShadedBackground.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_StandardHours.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_AvailableSpace.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_Gallery.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FElements%5C%2FStyles%5C%2F_Tabs.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FForm%5C%2FStyles%5C%2F_Default.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_BorderRadius.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FForm%5C%2FStyles%5C%2F_DMUploader.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_Headlines.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FForm%5C%2FStyles%5C%2F_SpecialSignup.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FHeader%5C%2FStyles%5C%2F_Layout.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FHeader%5C%2FStyles%5C%2F_TopBar.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FHeader%5C%2FStyles%5C%2F_HeaderBottom.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FHeader%5C%2FStyles%5C%2F_Hamburger.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FHeader%5C%2FStyles%5C%2F_Scrolled.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FHeader%5C%2FStyles%5C%2F_Hours.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FModal%5C%2FStyles%5C%2F_Default.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_Transform.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FGlobal%5C%2FMixins%5C%2F_AlignMiddle.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FModal%5C%2FStyles%5C%2F_Hours.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FModal%5C%2FStyles%5C%2F_EmailCollection.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FNavigation%5C%2FStyles%5C%2F_MainNav.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FNavigation%5C%2FStyles%5C%2F_OffcanvasNav.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FNews%5C%2FStyles%5C%2F_Reader.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FNews%5C%2FStyles%5C%2F_ListerFull.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FOffCanvas%5C%2FStyles%5C%2F_Overlay.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FOffCanvas%5C%2FStyles%5C%2F_Hours.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FPanel%5C%2FStyles%5C%2F_Default.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FSlider%5C%2FStyles%5C%2F_LogoSlider.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FVideo%5C%2FStyles%5C%2F_Default.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FWidgets%5C%2FStyles%5C%2F_NumberInput.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FWrappers%5C%2FStyles%5C%2FSections%5C%2F_HeroVideo.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FWrappers%5C%2FStyles%5C%2FSections%5C%2F_InteriorVideo.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FFeatures%5C%2FWrappers%5C%2FStyles%5C%2FSections%5C%2F_BackgroundClamp.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FPages%5C%2FDefault%5C%2FStyles%5C%2F_AdmissionsHours.scss%22%2C%22file%3A%5C%2F%5C%2F%5C%2Fvar%5C%2Fwww%5C%2Fhtml%5C%2Fvalleyfencema.com%5C%2Freleases%5C%2F1.0.0%5C%2Fpublic_html%5C%2Fscss%5C%2Fsite%5C%2FPages%5C%2FDefault%5C%2FStyles%5C%2F_NewsletterSignup.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BAACA%3BEAAwK%3BEAAS%3BEAAU%3BEAAwB%3BEAAS%3BEAAe%3BEAAU%3B%3B%3BAAAuB%3BEAAuL%3BEAAS%3BEAAU%3BEAAwB%3BEAAS%3BEAAe%3BEAAU%3B%3B%3BAAAuB%3BEAAK%3B%3B%3BAAAc%3BEAA8E%3B%3B%3BAAAc%3BEAAO%3B%3B%3BAAAqB%3BEAAa%3B%3B%3BAAAY%3BEAAoD%3BEAAW%3B%3B%3BAAAa%3BEAAE%3BEAAS%3BEAAU%3BEAAwB%3BEAAe%3BEAAuB%3BEAAa%3B%3B%3BAAAY%3BEAAI%3B%3B%3BAAAY%3BEAAI%3BEAAsB%3BEAAqB%3B%3B%3BAAAW%3BEAAK%3BEAAsB%3BEAAiB%3BEAAkB%3B%3B%3BAAAW%3BEAAI%3B%3B%3BAAA6B%3BEAAuB%3BEAAyB%3B%3B%3BAAAY%3BEAAM%3BEAAyB%3B%3B%3BAAAiB%3BEAAG%3BEAAW%3BEAAc%3BEAAa%3BEAAU%3BEAAS%3B%3B%3BAAA6B%3BEAAa%3B%3B%3BAAAsB%3BEAAW%3BEAAU%3BEAAW%3BEAAc%3BEAAkB%3BEAAa%3BEAAe%3B%3B%3BAAAiB%3BEAAO%3B%3B%3BACDn5C%3BEACI%3BEACA%3BEACA%3BEACA%3B%3B%3BACJJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BEAMI%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BEACI%3BEACA%3B%3B%3BAAEJ%3BEACI%3B%3B%3BACrBJ%3BEACI%3B%3B%3BAAKI%3BEACI%3B%3B%3BACPZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAyBA%3BAAAA%3BAAAA%3BAAjBI%3BAAAA%2CECLA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BADIA%3BAAAA%2CECRA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BADOA%3BAAAA%2CECXA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BADUA%3BAAAA%2CECdA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BADaA%3BAAAA%2CECjBA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BACPJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACDA%3BAAWA%3BAAkBA%3BAAKA%3BAAOA%3BAACA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEAEA%3B%3B%3BACvCJ%3BAACA%3BEACI%3BEACA%3B%3B%3BAChBJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BAAAA%2CEACI%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%2CEACI%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%2CEACI%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%2CEACI%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%2CEACI%3BAAAA%3BAAAA%3BAAAA%2CEACA%3BAAAA%3BAAAA%3BAAAA%3BAC5BJ%3BEACI%3BEACA%3B%3B%3BAAEJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3B%3BAAGJ%3BEACI%3BEACA%3B%3B%3BAAEJ%3BAAAA%3BAAAA%3BECdI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BADeJ%3BEACI%2COHpBoB%3B%3B%3BAGsBxB%3BEACI%3B%3B%3BAAEJ%3BEACI%3B%3B%3BAAEJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BEACI%3BEACA%3B%3B%3BAAEJ%3BEACI%3BEACA%3B%3B%3BAAEJ%3BEACI%2COHxCoB%3BEGyCpB%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAEJ%3BEACI%3B%3B%3BAAEJ%3BEACI%3BEACA%2CaF1EsB%3B%3B%3BAE4E1B%3BEACI%3BEACA%3BEACA%3B%3B%3BAAEJ%3BAAAA%3BAAAA%3BEAGI%3B%3B%3BAAEJ%3BEACI%3B%3B%3BAAEJ%3BEACI%3B%3B%3BAAGJ%3BEACI%3B%3B%3BAE7FJ%3BEAEI%3BIACI%3B%3BEAEA%3BIACI%3B%3BEAIR%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAChBR%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEAEA%3B%3BAAEA%3BAAAA%3BEAEI%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAIR%3BAAAA%2CEACI%3BAAAA%2CIACI%3BAAAA%3BAAAA%2CEAEJ%3BAAAA%2CIACI%3BAAAA%3BAAAA%3BAAGR%3BAAAA%2CEACI%3BAAAA%2CIACI%3BAAAA%3BAAAA%2CEAEJ%3BAAAA%2CIACI%3BAAAA%3BAAAA%3BAAIR%3BEACI%3B%3B%3BACrDJ%3BAAAA%3BEAEI%3B%3B%3BACFJ%3BEAEI%3BIACI%2CkBRWgB%3BIQVhB%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAMI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAIR%3BIACI%3B%3BEAGA%3BIACI%3B%3BEAKZ%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAOR%3BIACI%3B%3BEAIR%3BIACI%3B%3B%3BAChFZ%3BEAGQ%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BACRZ%3BEAEI%3BAAAA%3BAAAA%3BIAGI%3B%3BEAEA%3BAAAA%3BAAAA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAIR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIAwBI%3B%3BEAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3B%3BAAMZ%3BEACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIAwBI%3B%3BEAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3B%3BAAMZ%3BEACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIAwBI%3B%3BEAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3BEAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3B%3B%3BACpJZ%3BEAKQ%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BIACI%3B%3B%3BACXZ%3BEAEI%3BAAAA%3BIAEI%3B%3BEAIA%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAIJ%3BIACI%3B%3BEAIJ%3BIACI%3B%3BEAIJ%3BIACI%3B%3BEAGR%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAIA%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAIR%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3B%3B%3BAClFpB%3BEAEI%3BIACI%3BIACA%3B%3BEAGI%3BIACI%3B%3BEAIR%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAIR%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BACjDhB%3BEACI%3BIACI%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3B%3BAC1BhB%3BEAEI%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAEA%3BIACI%3B%3B%3BAAMhB%3BEAGQ%3BIACI%3B%3BEAIA%3BIACI%3B%3B%3BAC7BhB%3BEAIQ%3BIACI%3BIACA%3B%3B%3BACNZ%3BEACI%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGR%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BAAIR%3BEAEI%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3B%3BAAIR%3BEACI%3BIACI%3BIACA%3B%3B%3BAAIR%3BEACI%3BIACI%3BIACA%3B%3B%3BACtER%3BAAAA%2CEACI%3BAAAA%2CIACI%3BAAAA%3BAAAA%2CEAEJ%3BAAAA%2CIACI%3BAAAA%3BAAAA%3BAAKR%3BEAEI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3B%3BAAGJ%3BEACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIAKI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%2CYlBpCgB%3BIkBqChB%3BIACA%3B%3BEAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%2COlB3BY%3B%3BEkB8BhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%3BIACA%2CclBnCY%3B%3BEkBsChB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%2CclB3CY%3B%3BEkBqDhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%2CclBjDY%3B%3BEkBmDhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIACI%2CclBpDY%3B%3BEkBwDpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIAKI%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3BIACA%2COlBhEY%3B%3BEkB0EhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BIAEI%3BIACA%3BIACA%3BIACA%3BIACA%2COlBtFY%3B%3BEkB4FhB%3BAAAA%3BIACI%3B%3BEAEA%3BAAAA%3BIACI%3B%3BEAEJ%3BAAAA%3BIACI%3BIACA%3BIACA%3BIACA%2COlBtGQ%3BIkBuGR%2CkBlBxGQ%3BIkByGR%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BId1HZ%3BIACA%3BIACA%3BIACA%3BIACA%3BIeLA%2CuBD6HmC%3BIC5HnC%2CoBD4HmC%3BIC3HnC%2CmBD2HmC%3BIC1HnC%2CeD0HmC%3B%3BEAEvB%3BAAAA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEJ%3BAAAA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%2CYlBtII%3BIkBuIJ%3BIACA%3BIACA%3BIACA%3B%3BEAGR%3BAAAA%3BIACI%2CkBlB9IQ%3BIkB%2BIR%2COlBhJQ%3B%3BEkBkJR%3BAAAA%3BIACI%2CYlBnJI%3B%3BEkBqJR%3BAAAA%3BIACI%3B%3BEAGR%3BAAAA%3BIACI%3B%3BEAIZ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3BIACA%2COlB1KgB%3BIkB2KhB%3B%3BEAGJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAGA%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3B%3BAAMhB%3BEAIQ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAII%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BAAOpB%3BEAEI%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3B%3B%3BAE1PZ%3BAAAA%2CEACI%3BAAAA%2CIACI%3BAAAA%3BAAAA%2CEAEJ%3BAAAA%2CIACI%3BAAAA%3BAAAA%3BAAKR%3BEAIQ%3BAAAA%3BIAEI%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAEJ%3BIACI%3BICvBR%3BIACA%2COrBUoB%3BIqBTpB%2CWDsBkC%3BICrBlC%3BIACA%2CaDoBwC%3B%3BEAEpC%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%2CkBpBxBQ%3BIoByBR%3BIACA%3BIACA%3B%3BEAGR%3BIACI%2CkBpB1CY%3B%3BEoB4CZ%3BIACI%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAIZ%3BIACI%3B%3B%3BAAIR%3BEACI%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3B%3B%3BAElEZ%3BEAEI%3BIACI%3BIACA%2CkBtBOgB%3BIsBNhB%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAEA%3BIACI%2COtBZQ%3BIsBaR%3B%3BEAEJ%3BIACI%2COtBhBQ%3BIsBiBR%3B%3BEAEJ%3BIACI%2COtBpBQ%3BIsBqBR%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAGJ%3BIAEI%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%2CkBtBhDI%3BImBXpB%2CuBG4DuC%3BIH3DvC%2CoBG2DuC%3BIH1DvC%2CmBG0DuC%3BIHzDvC%2CeGyDuC%3B%3BEAG%5C%2FB%3BIACI%3BIACA%3B%3BEAEA%3BIACI%2COtBxDI%3BIsByDJ%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAOpB%3BEAEQ%3BIACI%3B%3B%3BAAKZ%3BEAEQ%3BIACI%3B%3B%3BAChGZ%3BEAEI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BACNR%3BEAEI%3BIACI%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAEA%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3BEAKZ%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAQpB%3BEAGQ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3B%3BAAOpB%3BEAGQ%3BIACI%3B%3B%3BACxGZ%3BEAIQ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAGJ%3BIACI%3BIACA%3B%3B%3BACxBhB%3BEAEI%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3B%3BACTZ%3BEAIY%3BIACI%3BIACA%3BIACA%3B%3B%3BACPhB%3BEACI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BACZZ%3BEAEI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BICVJ%2CmBDWuB%3BICVvB%2CgBDUuB%3BICTvB%2CcDSuB%3BICRvB%2CeDQuB%3BICPvB%2CWDOuB%3B%3BEAEnB%3BIAEI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAEJ%3BIACI%3BIE7BZ%3BIACA%3BIDZA%2CmBCamB%3BIDZnB%2CgBCYmB%3BIDXnB%2CcCWmB%3BIDVnB%2CeCUmB%3BIDTnB%2CWCSmB%3BIF6BP%3BIACA%3BIACA%2CO7BhCQ%3BI6BiCR%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAGR%3BIACI%3BIACA%3BIACA%3B%3BEAOR%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3B%3BAAQR%3BEAEI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3B%3BAGtFR%3BEAGQ%3BIACI%3BIACA%3B%3BEAGA%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BACZhB%3BEACI%3BEACA%3B%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAEA%3BEACI%3B%3B%3BACXR%3BEAEI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3B%3BEAII%3BIACI%3BIACA%3BIACA%3B%3BEAIA%3BIACI%3BIACA%3BIACA%3B%3B%3BAASxB%3BEAEI%3BIACI%3B%3B%3BACrCR%3BEAEI%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BI%5C%2FBfZ%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BE%2BBgBA%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3BEAIA%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BI%5C%2FBzChB%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BAgCLJ%3BEAGQ%3BIACI%3B%3BEACA%3BIACI%3B%3BEAGR%3BIACI%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3B%3BEAKA%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAIA%3BIACI%3B%3BEAIJ%3BIACI%3B%3BEAKZ%3BIACI%3B%3B%3BAAMZ%3BEAGQ%3BIACI%3BIACA%3B%3BEAIA%3BIACI%3B%3B%3BAChEhB%3BEAEI%3BIACI%3B%3BEAIQ%3BIACI%3B%3B%3BACTpB%3BAACA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAGJ%3BAACA%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEA%3BEACI%3B%3B%3BAAGR%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2COtCpBoB%3B%3B%3BAsCuBxB%3BAACA%3BEACI%3BEACA%3BEACA%3BEACA%3B%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%2COtC9CoB%3B%3B%3BAsCiDxB%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3B%3B%3BAAGJ%3BEACI%3BEACA%3B%3B%3BAAGJ%3BEACI%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3B%3B%3BACrFR%3BEAEQ%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGJ%3BIACI%3B%3BEAGR%3BIACI%3B%3B%3BAAKZ%3BEAEQ%3BIACI%3B%3B%3BACvBZ%3BEAGQ%3BIACI%3B%3B%3BACJZ%3BEAEI%3BIACI%3BIACA%3B%3BEAGI%3BIACI%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3B%3BACdhB%3BEAEI%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAIJ%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3B%3B%3BAAKZ%3BEAEQ%3BIACI%3B%3B%3BAC7BZ%3BEAEI%3BIACI%3BIACA%3BIACA%3BIvCJJ%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEuCGI%3BIACI%3B%3BEAEJ%3BIACI%3B%3BEAGJ%3BIACI%2CkB3CJY%3BI2CKZ%2CO3CNY%3BI2COZ%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%2CO3CtCY%3B%3BE2CyChB%3BIACI%3B%3B%3BACtDZ%3BEAGQ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BAAKZ%3BEAEQ%3BIACI%3B%3B%3BACzBZ%3BEAGQ%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BAAKZ%3BEAEQ%3BIACI%3B%3B%3BACzBZ%3BEAGQ%3BIACI%3B%3BEAEA%3BIACI%3B%3B%3BAAOhB%3BEAIY%3BIACI%3B%3BEAKI%3BIACI%3BIACA%3B%3B%3BAAQxB%3BEAGY%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAKI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BACtDxB%3BEAEI%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAEJ%3BI1BRJ%3BIACA%2COrBUoB%3BIqBTpB%2CW0BOkC%3BI1BNlC%3BIACA%2Ca0BKwC%3BIAChC%3B%3BEAEJ%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEJ%3BIACI%3B%3B%3BAAMhB%3BEAEI%3BIACI%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3B%3BEAEJ%3BIACI%3BIACA%3B%3B%3BAAKZ%3BEAGQ%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3B%3B%3BAAMhB%3BEAGQ%3BIACI%3B%3BEAEJ%3BIACI%3B%3B%3BACjFZ%3BEAEI%3BIACI%3B%3BEAEA%3BIACI%3BIACA%3B%3BEAGJ%3BIACI%3B%3BEAIA%3BIACI%3B%3BEAEJ%3BIACI%3BIACA%3B%3BEAEA%3BIACI%3B%3BEAGR%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAEA%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEAGJ%3BIACI%3B%3B%3BAAUpB%3BEAEI%3BIACI%3B%3B%3BAAKR%3BEAIQ%3BIACI%3B%3BEAGJ%3BIACI%3B%3B%3BAAMZ%3BEAIQ%3BIACI%22%7D */