/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/*
 * 12-column grid system
 */
/* Grid units
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
.grid12-1,
.grid12-2,
.grid12-3,
.grid12-4,
.grid12-5,
.grid12-6,
.grid12-7,
.grid12-8,
.grid12-9,
.grid12-10,
.grid12-11,
.grid12-12,
.grid-full,
.grid-col2-sidebar,
.grid-col2-main {
  /*position:relative;*/
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
}
/* Basic grid units width */
.grid12-1 {
  width: 6.33%;
}
.grid12-2 {
  width: 14.66%;
}
.grid12-3 {
  width: 23%;
}
.grid12-4 {
  width: 31.33%;
}
.grid12-5 {
  width: 39.67%;
}
.grid12-6 {
  width: 48%;
}
.grid12-7 {
  width: 56.33%;
}
.grid12-8 {
  width: 64.67%;
}
.grid12-9 {
  width: 73%;
}
.grid12-10 {
  width: 81.33%;
}
.grid12-11 {
  width: 89.67%;
}
.grid12-12,
.grid-full {
  width: 98%;
}
/* Grid units without left gutter (margin) */
.no-left-gutter.grid12-1 {
  margin-left: 0;
  width: 7.33%;
}
.no-left-gutter.grid12-2 {
  margin-left: 0;
  width: 15.66%;
}
.no-left-gutter.grid12-3 {
  margin-left: 0;
  width: 24%;
}
.no-left-gutter.grid12-4 {
  margin-left: 0;
  width: 32.33%;
}
.no-left-gutter.grid12-5 {
  margin-left: 0;
  width: 40.67%;
}
.no-left-gutter.grid12-6 {
  margin-left: 0;
  width: 49%;
}
.no-left-gutter.grid12-7 {
  margin-left: 0;
  width: 57.33%;
}
.no-left-gutter.grid12-8 {
  margin-left: 0;
  width: 65.67%;
}
.no-left-gutter.grid12-9 {
  margin-left: 0;
  width: 74%;
}
.no-left-gutter.grid12-10 {
  margin-left: 0;
  width: 82.33%;
}
.no-left-gutter.grid12-11 {
  margin-left: 0;
  width: 90.67%;
}
.no-left-gutter.grid12-12,
.no-left-gutter.grid-full {
  margin-left: 0;
  width: 99%;
}
/* Grid units without right gutter (margin) */
.no-right-gutter.grid12-1 {
  margin-right: 0;
  width: 7.33%;
}
.no-right-gutter.grid12-2 {
  margin-right: 0;
  width: 15.66%;
}
.no-right-gutter.grid12-3 {
  margin-right: 0;
  width: 24%;
}
.no-right-gutter.grid12-4 {
  margin-right: 0;
  width: 32.33%;
}
.no-right-gutter.grid12-5 {
  margin-right: 0;
  width: 40.67%;
}
.no-right-gutter.grid12-6 {
  margin-right: 0;
  width: 49%;
}
.no-right-gutter.grid12-7 {
  margin-right: 0;
  width: 57.33%;
}
.no-right-gutter.grid12-8 {
  margin-right: 0;
  width: 65.67%;
}
.no-right-gutter.grid12-9 {
  margin-right: 0;
  width: 74%;
}
.no-right-gutter.grid12-10 {
  margin-right: 0;
  width: 82.33%;
}
.no-right-gutter.grid12-11 {
  margin-right: 0;
  width: 90.67%;
}
.no-right-gutter.grid12-12,
.no-right-gutter.grid-full {
  margin-right: 0;
  width: 99%;
}
/* Grid units without any gutter (margin) */
.no-gutter.grid12-1 {
  margin-left: 0;
  margin-right: 0;
  width: 8.33%;
}
.no-gutter.grid12-2 {
  margin-left: 0;
  margin-right: 0;
  width: 16.66%;
}
.no-gutter.grid12-3 {
  margin-left: 0;
  margin-right: 0;
  width: 25%;
}
.no-gutter.grid12-4 {
  margin-left: 0;
  margin-right: 0;
  width: 33.33%;
}
.no-gutter.grid12-5 {
  margin-left: 0;
  margin-right: 0;
  width: 41.67%;
}
.no-gutter.grid12-6 {
  margin-left: 0;
  margin-right: 0;
  width: 50%;
}
.no-gutter.grid12-7 {
  margin-left: 0;
  margin-right: 0;
  width: 58.33%;
}
.no-gutter.grid12-8 {
  margin-left: 0;
  margin-right: 0;
  width: 66.67%;
}
.no-gutter.grid12-9 {
  margin-left: 0;
  margin-right: 0;
  width: 75%;
}
.no-gutter.grid12-10 {
  margin-left: 0;
  margin-right: 0;
  width: 83.33%;
}
.no-gutter.grid12-11 {
  margin-left: 0;
  margin-right: 0;
  width: 91.67%;
}
.no-gutter.grid12-12,
.no-gutter.grid-full {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
/* Special grid units: basic structure of pages with 1 and 2 sidebars
-------------------------------------------------------------- */
/* 2 columns: fixed-width sidebar unit and fluid main unit.
   Sidebar unit has the same width for all screen sizes equal or greater than 1280px.
   Width of the main unit is fluid.
*/
.grid-col2-sidebar {
  width: 23%;
}
.grid-col2-main {
  width: 73%;
}
.no-gutter.grid-col2-sidebar {
  margin-left: 0;
  margin-right: 0;
  width: 25%;
}
.no-gutter.grid-col2-main {
  margin-left: 0;
  margin-right: 0;
  width: 75%;
}
/* Another 2 columns inside ".grid-col2-main": fixed-width sidebar unit and fluid main unit */
.grid-col3-sidebar {
  width: 31.52%;
}
.grid-col3-main {
  width: 65.90000000000001%;
}
.no-gutter.grid-col3-sidebar {
  margin-left: 0;
  margin-right: 0;
  width: 31.52%;
}
.no-gutter.grid-col3-main {
  margin-left: 0;
  margin-right: 0;
  width: 65.90000000000001%;
}
/* Vertically aligned grid
-------------------------------------------------------------- */
.v-grid-container {
  display: table;
  width: 100%;
}
.v-grid {
  float: none;
  display: table-cell;
  vertical-align: middle;
}
/* Utility classes
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Units with no gutter (margin): alpha - first unit in a row, omega - last unit in a row */
.alpha {
  margin-left: 0;
}
.omega {
  margin-right: 0;
}
/* Hide element if screen width is lower than the width specified in the class name */
.hide-below-1680 {
  display: none !important;
}
.hide-below-1440 {
  display: none !important;
}
.hide-below-1360 {
  display: none !important;
}
.hide-below-1280 {
  display: none !important;
}
/* Containers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Main container for page content.
   Max width of the page is applied to elements with this class.
-------------------------------------------------------------- */
.container {
  margin-left: auto;
  margin-right: auto;
}
.nested-container {
  width: 102%;
  margin-left: -1%;
}
/* Deprecated */
/* Inner container.
   Additional container, horizontal padding is applied to elements with this class.
-------------------------------------------------------------- */
.inner-container {
  padding-left: 15px;
  padding-right: 15px;
  /* Clear floats */
  *zoom: 1;
  clear: both;
}
/* Clear floats */
.inner-container:before,
.inner-container:after {
  display: table;
  line-height: 0;
  content: "";
}
.inner-container:after {
  clear: both;
}
/* Full width container
-------------------------------------------------------------- */
.container.full-width {
  width: 100%;
  max-width: none;
}
/* Expanded container (without inner side padding)
-------------------------------------------------------------- */
.container.no-side-padding > .inner-container {
  padding-left: 0;
  padding-right: 0;
}
/* Grid units containers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Grid units container:
   clears floats (place grid units inside "div" with this class)
-------------------------------------------------------------- */
.grid-container {
  *zoom: 1;
  clear: both;
}
.grid-container:before,
.grid-container:after {
  display: table;
  line-height: 0;
  content: "";
}
.grid-container:after {
  clear: both;
}
/* Grid unit container:
   clears floats and adds vertical margin between units
-------------------------------------------------------------- */
.grid-container-spaced {
  *zoom: 1;
  clear: both;
}
.grid-container-spaced:before,
.grid-container-spaced:after {
  display: table;
  line-height: 0;
  content: "";
}
.grid-container-spaced:after {
  clear: both;
}
.grid-container-spaced .grid12-1,
.grid-container-spaced .grid12-2,
.grid-container-spaced .grid12-3,
.grid-container-spaced .grid12-4,
.grid-container-spaced .grid12-5,
.grid-container-spaced .grid12-6,
.grid-container-spaced .grid12-7,
.grid-container-spaced .grid12-8,
.grid-container-spaced .grid12-9,
.grid-container-spaced .grid12-10,
.grid-container-spaced .grid12-11,
.grid-container-spaced .grid12-12,
.grid-container-spaced .grid-full {
  margin-bottom: 2%;
}
/* Grid presentation
-------------------------------------------------------------- */
.show-grid [class*="grid12-"] {
  background-color: #eee;
  text-align: center;
  min-height: 40px;
  line-height: 40px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.show-grid [class*="grid12-"]:hover {
  background-color: #F08080;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #333;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Medium.woff2') format('woff2'), url('../webfonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Regular.woff2') format('woff2'), url('../webfonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Light.woff2') format('woff2'), url('../webfonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-SemiBold.woff2') format('woff2'), url('../webfonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Black.woff2') format('woff2'), url('../webfonts/Montserrat-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Thin.woff2') format('woff2'), url('../webfonts/Montserrat-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Bold.woff2') format('woff2'), url('../webfonts/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-ExtraBold.woff2') format('woff2'), url('../webfonts/Montserrat-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*=================================== General Styles start =================================*/
h1 {
  margin: 0;
  margin-bottom: 0.7em !important;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px !important;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
.h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
h2 {
  margin-top: 12px;
  margin-bottom: 0.5em;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
.h2 {
  margin-top: 12px;
  margin-bottom: 0.5em;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
h3 {
  margin-top: 12px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.h3 {
  margin-top: 12px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h4 {
  color: #042656;
  padding-bottom: 5px;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeSpeed;
  border-bottom: solid 1px #dddddd;
  margin-bottom: 0;
  text-transform: capitalize;
}
.h4 {
  color: #042656;
  padding-bottom: 5px;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeSpeed;
  border-bottom: solid 1px #dddddd;
  margin-bottom: -12px;
  text-transform: capitalize;
}
h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #042656;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #042656;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #042656;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #042656;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.action.primary {
  background: #d22124 !important;
  border: 0 !important;
  border-radius: 0 !important;
  height: 44px;
  min-width: 140px;
  text-align: center;
  padding: 0 30px !important;
  font: 500 15px/44px 'Montserrat', sans-serif !important;
  text-transform: uppercase;
  display: table;
  margin: auto;
}
.action.primary:hover {
  background: #bd181b !important;
  border: 0 !important;
}
input[type="text"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type="password"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type="url"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type="tel"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type="search"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type="number"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type*="date"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
input[type="email"] {
  border-color: #b0b0b0;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
textarea {
  height: 95px;
  border-color: #b0b0b0;
  resize: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
select {
  font-family: 'Montserrat', sans-serif;
}
button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
}
/*=================================== General Styles end =================================*/
/*=================================== Header start =================================*/
.page-wrapper {
  background: #fff;
}
.page-wrapper > .widget {
  padding: 0 15px;
}
.page-wrapper > .page-bottom {
  padding: 0 15px;
}
.page-wrapper .navigation {
  padding: 0 15px;
  background: transparent;
}
.page-wrapper .navigation .level0 .submenu a {
  font-size: 15px;
  color: #042656;
}
.page-wrapper .navigation .level0 .submenu a:hover {
  color: #042656;
}
.breadcrumbs {
  padding: 0 15px;
}
.page-header {
  background: #f1f1f1;
}
.page-header .header.panel {
  padding: 0 15px;
}
.header.content {
  padding: 10px 15px 0 !important;
  background: transparent;
}
.footer.content {
  padding: 0 15px;
}
.block.category.event {
  padding: 0 15px;
}
.top-container {
  padding: 0 15px;
}
.page-main {
  padding: 0 15px;
}
.cms-home .page-main {
  max-width: 100% !important;
  padding: 0;
  margin-top: 0;
}
.header-toplink {
  background: #fff;
  padding: 10px 0;
}
.header-toplink ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.header-toplink ul li {
  margin: 0 15px;
}
.header-toplink ul li a {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
}
.page-wrapper .nav-sections-items {
  max-width: 1310px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}
.page-wrapper .nav-sections {
  padding: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  background: #051b52;
}
.page-wrapper .nav-sections .navigation {
  text-align: center;
}
.page-wrapper .nav-sections .navigation .level0 {
  margin-right: 20px;
}
.page-wrapper .nav-sections .navigation .level0 > .level-top {
  font: 400 17px/52px 'Montserrat', sans-serif;
  color: #fff;
  border: 0;
  padding-left: 20px;
}
.page-wrapper .nav-sections .navigation .level0 .submenu {
  font: 500 16px 'Montserrat', sans-serif;
  color: #042656;
  text-align: left;
}
.header.content .logo {
  margin: 0;
  padding: 0 0 18px;
  float: left;
  width: auto;
  mix-blend-mode: multiply;
}
.header.content .logo img {
  width: auto;
}
.phnmail {
  float: right;
  margin-top: 3.2%;
}
.phnmail a {
  font: 500 17px 'Montserrat', sans-serif;
  color: #1a1a1a;
  display: inline-block;
  vertical-align: top;
  margin-left: 50px;
}
.phnmail a:first-child {
  margin-left: 0;
}
.phnmail a .fa {
  font-size: 30px;
  vertical-align: middle;
  margin-right: 7px;
  color: #061f5c;
  margin-top: -4px;
}
.phnmail a:last-child .fa {
  font-size: 27px;
}
.header.content .block-search {
  float: left;
  margin-right: 0;
  margin-top: 2.5%;
  margin-left: 40px;
  padding-left: 0;
  width: calc(100% - 890px);
}
.header.content .block-search .action.search {
  right: 0;
  width: 50px;
  height: 100%;
  opacity: 1 !important;
  background: #d22124;
  border-radius: 0 3px 3px 0;
}
.header.content .block-search .action.search:before {
  font-size: 25px;
  font-weight: bold;
  line-height: 40px;
  color: #fff;
}
.header.content #search {
  width: 100%;
  height: 44px;
  padding-right: 60px;
  font-family: 'Montserrat', sans-serif;
  border-color: #dcdcdc;
  border-radius: 3px;
}
@media (min-width: 769px) {
  .navigation {
    max-width: 1310px !important;
  }
  .breadcrumbs {
    max-width: 1310px !important;
  }
  .page-header .header.panel {
    max-width: 1310px !important;
  }
  .header.content {
    max-width: 1310px !important;
  }
  .footer.content {
    max-width: 1310px !important;
  }
  .page-wrapper > .widget {
    max-width: 1310px !important;
  }
  .page-wrapper > .page-bottom {
    max-width: 1310px !important;
  }
  .block.category.event {
    max-width: 1310px !important;
  }
  .top-container {
    max-width: 1310px !important;
  }
  .page-main {
    max-width: 1310px !important;
  }
  .nav-sections {
    max-width: 100% !important;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
@media print {
  .navigation {
    max-width: 1310px !important;
  }
  .breadcrumbs {
    max-width: 1310px !important;
  }
  .page-header .header.panel {
    max-width: 1310px !important;
  }
  .header.content {
    max-width: 1310px !important;
  }
  .footer.content {
    max-width: 1310px !important;
  }
  .page-wrapper > .widget {
    max-width: 1310px !important;
  }
  .page-wrapper > .page-bottom {
    max-width: 1310px !important;
  }
  .block.category.event {
    max-width: 1310px !important;
  }
  .top-container {
    max-width: 1310px !important;
  }
  .page-main {
    max-width: 1310px !important;
  }
  .nav-sections {
    max-width: 100% !important;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
.page-header .panel.wrapper {
  display: none;
}
.page-main {
  background: transparent;
  padding: 0 30px;
  margin-top: 20px;
}
/*=================================== Header end =================================*/
/*=================================== Home Body Start =================================*/
.cms-home .page-layout-1column .column.main {
  padding-bottom: 0 !important;
}
.home-block:after {
  content: "";
  display: table;
  clear: both;
}
.custom-inner-container {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.custom-inner-container:after {
  content: "";
  display: table;
  clear: both;
}
.intro-text {
  max-width: 1310px;
  padding: 30px 15px 35px;
  margin: 0 auto;
  text-align: center;
}
.home-cat {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
  list-style: none;
}
.home-cat li {
  width: 20%;
  margin-bottom: 15px;
}
.home-featured {
  padding: 35px 0 21px;
  background: #051b52;
}
.home-featured h2 {
  color: #fff;
  text-align: center;
  margin: 0 0 30px;
}
.home-featured ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-featured ul li {
  width: auto;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}
.home-featured ul li a {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  display: block;
  text-decoration: none;
}
.home-featured ul li img {
  border-radius: 7px;
  background: #fff;
}
.home-featured ul li .home-cat-featured-info {
  margin-top: 7px;
  min-height: 50px;
  display: block;
}
.home-featured ul li .home-cat-featured-info span {
  display: block;
}
.home-featured .action.primary {
  display: table;
  margin: auto;
}
.home-featured .owl-carousel .owl-nav .owl-prev,
.home-featured .owl-carousel .owl-nav .owl-next {
  top: 40%;
  padding: 0;
  margin: 0;
}
.home-featured .fa-angle-left:before {
  color: #fff;
}
.home-featured .fa-angle-right:before {
  color: #fff;
}
.home-category {
  padding: 35px 0 45px;
}
.home-category h2 {
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 30px;
}
.home-category ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-category ul li {
  width: auto;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  min-height: 280px;
}
.home-category ul li img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.home-category ul li a {
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}
.home-category ul li a img {
  position: static;
  transform: none;
}
.home-category ul li .home-cat-featured-info {
  margin-bottom: 15px;
}
.home-category ul li .home-cat-featured-info span {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
  text-transform: uppercase;
}
.home-category .action.primary {
  margin-top: 60px;
}
.home-parallax {
  background-position: 0 bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 7%;
  position: relative;
}
.home-parallax:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-parallax .custom-inner-container {
  position: relative;
  z-index: 2;
}
.home-parallax h2 {
  color: #fff;
  margin: 0 0 40px;
}
.home-parallax p {
  color: #fff;
  margin-bottom: 18px;
  font-weight: 400;
}
.home-parallax p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1900px) {
  .home-parallax {
    background-color: #5289dd;
  }
}
.home-brand {
  text-align: center;
  background: #f1f1f1;
  padding: 40px 0 50px;
}
.home-brand .brand-widget {
  margin-bottom: 0 !important;
}
.home-brand h2 {
  margin: 0 0 35px;
}
.home-brand ul {
  display: flex;
  justify-content: center;
}
.home-brand ul li {
  margin: 0 18px;
}
.home-brand ul li img {
  border-radius: 8px;
}
.home-review {
  padding: 40px 0 0;
  text-align: center;
}
.home-review h2 {
  margin: 0 0 35px;
}
.home-review ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.home-review ul li {
  padding: 0 20px;
  width: 25%;
  box-sizing: border-box;
  margin: 0 0 30px;
  text-align: left;
}
.home-review ul li h3 {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 15px;
}
.home-review ul li .star-ratings {
  display: inline-block;
  width: 112px;
  height: 20px;
  background: url("../images/star-gray.png") 0 0 repeat-x;
  margin-bottom: 18px;
}
.home-review ul li .star-ratings .rating {
  width: 0;
  height: 20px;
  display: inline-block;
  background: url("../images/star-orange.png") 0 0 repeat-x;
}
.home-review ul li .star-ratings .rating.star1 {
  width: 20%;
}
.home-review ul li .star-ratings .rating.star2 {
  width: 40%;
}
.home-review ul li .star-ratings .rating.star3 {
  width: 60%;
}
.home-review ul li .star-ratings .rating.star4 {
  width: 80%;
}
.home-review ul li .star-ratings .rating.star5 {
  width: 100%;
}
/*=================================== Home Body End =================================*/
/*=================================== Footer Start =================================*/
.page-wrapper .page-footer {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  border-top: 3px solid #cfcfcf;
  background: #11224d;
  padding: 0 15px;
  box-sizing: border-box;
  border-top: 0;
  padding: 30px 0;
}
.page-wrapper .footer-container {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-wrapper .footer {
  display: flex;
  justify-content: space-between;
}
.page-wrapper .footer .links {
  color: #fff;
}
.page-wrapper .footer .links .block-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.page-wrapper .footer .links a {
  color: #fff;
}
.page-wrapper .footer .links .address div {
  padding-left: 38px;
  position: relative;
  margin-bottom: 20px;
}
.page-wrapper .footer .links .address img {
  position: absolute;
  left: 0;
  top: 5px;
}
.page-wrapper .footer .links .address .phone img {
  top: -5px;
}
.page-wrapper .footer .links .address .email img {
  top: 3px;
}
.page-wrapper .footer .links.mid .social-icons li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
}
.page-wrapper .footer .links.mid .social-icons li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}
.page-wrapper .footer .links.last ul li {
  padding-left: 38px;
  position: relative;
  margin-bottom: 15px;
}
.page-wrapper .footer .links.last ul li img {
  position: absolute;
  left: 0;
  top: 0;
}
.page-wrapper .footer .links.last ul li:before {
  content: "";
  width: 22px;
  height: 17px;
  background: url("../images/icon-sprite-latest.png") right 0 no-repeat;
  position: absolute;
  left: 0;
  top: 1px;
}
/*=================================== Footer End =================================*/
/*============================= Minicart start ============================*/
.header.content .minicart-wrapper {
  margin-top: 3%;
  margin-left: 45px !important;
}
.header.content .minicart-wrapper .block-minicart {
  z-index: 2000 !important;
}
.header.content .minicart-wrapper .action.showcart {
  font-size: 17px;
  color: #1a1a1a;
}
.header.content .minicart-wrapper .action.showcart .text {
  position: static;
  width: auto;
  height: auto;
}
.header.content .minicart-wrapper .action.showcart:before {
  content: "" !important;
  width: 26px;
  height: 28px;
  background: url("../images/icon-quotelist.svg") 0 0 no-repeat;
  background-size: auto 28px;
  margin-right: 5px;
}
.header.content .minicart-wrapper .action.showcart .counter-number {
  text-shadow: none;
}
.header.content .minicart-wrapper .action.showcart .counter.qty {
  font-size: 12px;
  font-weight: 700;
  background: #d22124;
  height: 18px;
  line-height: 18px;
  padding: 0;
  border-radius: 50%;
  position: absolute;
  right: -18px;
  top: -5px;
}
.header.content .minicart-wrapper .action.showcart.active:before {
  content: "";
  margin-right: 5px;
}
.header.content .minicart-items .product > .product-item-photo {
  border: 1px solid #ccc;
}
.header.content .minicart-items .product > .product-item-photo .product-image-container {
  width: 75px !important;
}
.header.content .minicart-items .product-item-name a {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}
.header.content .block-minicart .subtitle {
  display: none;
  padding-bottom: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.header.content .block-minicart .subtitle.empty {
  font-size: 14px;
  display: block;
}
.header.content .block-minicart .items-total {
  float: none;
}
.header.content .block-minicart .action.viewcart {
  background: #d22124;
  padding: 7px 15px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.header.content .block-minicart .action.viewcart:hover {
  background: #bd181b;
}
.header.content .block-minicart dl.product.options.list {
  margin-bottom: 0;
}
.header.content .minicart-items-wrapper {
  width: 100%;
  margin: 0;
}
/*============================= Minicart end ============================*/
/*============================= Breadcrumb start ============================*/
.breadcrumbs {
  margin-top: 20px;
  margin-bottom: 0;
}
.breadcrumbs .items {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}
.breadcrumbs strong {
  font-weight: 500;
}
.breadcrumbs a {
  color: #333 !important;
}
.breadcrumbs .item:not(:last-child):after {
  content: "/";
  font-size: 20px;
  margin: 0 5px;
}
/*============================= Breadcrumb end ============================*/
/*============================= Desktop Menu Start ============================*/
@media (min-width: 769px) {
  .nav-sections-item-content .desktop-menu {
    display: block;
  }
}
.desktop-menu {
  position: relative;
}
.desktop-menu ul {
  display: flex;
  justify-content: center;
}
.desktop-menu ul li {
  margin-bottom: 0;
  margin-right: 15px;
}
.desktop-menu ul li a {
  font: 400 17px/52px 'Montserrat', sans-serif;
  color: #fff;
  border: 0;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: block;
  position: relative;
}
.desktop-menu ul li .display-area-single {
  display: none;
}
.desktop-menu ul li .display-area-single ul li {
  margin: 0;
  padding: 0 10px;
  text-align: center;
}
.desktop-menu ul li .display-area-single ul li a {
  color: #717171;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding: 0;
  line-height: 1.2;
  display: inline-block;
}
.desktop-menu ul li .display-area-single ul li a:hover {
  color: #121212;
}
.desktop-menu ul li .display-area {
  display: none;
}
.desktop-menu ul li .display-area ul {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.desktop-menu ul li .display-area ul li {
  width: 14%;
  padding: 0 20px;
  margin: 0 0 20px;
  box-sizing: border-box;
  text-align: center;
}
.desktop-menu ul li .display-area ul li a {
  color: #717171;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding: 0;
  line-height: 1.2;
  display: inline-block;
}
.desktop-menu ul li .display-area ul li a:after {
  display: none;
}
.desktop-menu ul li .display-area ul li:hover a {
  color: #121212;
}
.desktop-menu ul li .display-area ul li img {
  width: 100%;
}
.desktop-menu ul li:hover .display-area {
  display: block;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 52px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 300;
  padding: 20px 0 0;
}
.desktop-menu ul li.parent-cat a:after {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  content: '\e622';
  font-family: 'luma-icons';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-47%);
}
.desktop-menu ul li.self-cat {
  position: relative;
  padding-right: 20px;
}
.desktop-menu ul li.self-cat a {
  padding-right: 0;
}
.desktop-menu ul li.self-cat:hover .display-area-single {
  display: block;
  position: absolute;
  left: 0;
  width: 155px;
  top: 52px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 300;
  padding: 20px 0;
}
.desktop-menu ul li.self-cat:after {
  font-size: 12px;
  line-height: 20px;
  color: inherit;
  content: '\e622';
  font-family: 'luma-icons';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
/*============================= Desktop Menu End ============================*/
/*========================== New Mobile Menu Start =============================*/
@media (max-width: 991px) {
  .page-wrapper .nav-sections {
    position: static !important;
    width: 100%;
    margin-bottom: 0 !important;
  }
  .page-wrapper .header.links {
    display: none !important;
  }
  .nav-sections-items {
    position: static !important;
  }
  .cms-home .page-wrapper .nav-sections {
    margin-top: 0;
    margin-bottom: 0 !important;
  }
  .nav.mobile {
    display: none;
  }
  .nav.mobile.show-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .nav-sections-item-content .hamburger-menu {
    display: none !important;
  }
}
.hamburger-menu {
  display: block !important;
  width: 30px;
  position: absolute;
  left: 15px;
  top: 32px;
}
.hamburger-menu:before {
  content: "";
  display: block;
  width: 30px;
  height: 22px;
  background: url("../images/menu_icon.png") 0 0 no-repeat;
  background-size: 100% auto;
}
.hamburger-menu.active {
  top: 48px;
}
.hamburger-menu.active:before {
  background: url("../images/icon-close.svg") 0 0 no-repeat;
  height: 30px;
  background-size: 100% auto;
}
.nav__list li {
  margin-bottom: 0;
}
.nav__list li.mob-contact label {
  border-bottom: 0;
}
.nav__list li.mob-contact .group-list {
  max-height: inherit;
}
.nav__list li.mob-contact .group-list li {
  border-bottom: 0;
}
.nav__list li.mob-contact .group-list li a {
  height: 40px;
}
.nav__list li.mob-contact .group-list li a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #3190c4;
}
.nav__list li > label {
  border-bottom: 1px solid #c3c3c3;
}
.nav__list li .group-list label {
  border-bottom: 0;
}
.nav a {
  display: block;
  padding: 15px;
  color: #fff;
  background-color: #ee7002;
  box-shadow: inset 0 -1px #fff;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  font: 400 18px 'Roboto', sans-serif;
  position: relative;
}
.nav a:focus {
  background: #ee7002;
  text-decoration: none;
}
.nav a:hover {
  background: #ee7002;
  text-decoration: none;
}
.nav label {
  display: block;
  padding: 15px;
  color: #121212;
  background-color: #fff;
  box-shadow: inset 0 -1px #fff;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  font: 500 18px 'Roboto', sans-serif;
  position: relative;
  cursor: pointer;
}
.nav label:focus {
  background: #fff;
  text-decoration: none;
}
.nav label:hover {
  background: #fff;
  text-decoration: none;
}
.nav label .fa {
  font-size: 22px;
  position: absolute;
  right: 15px;
  top: 16px;
}
.nav ul > li:last-child label {
  box-shadow: none;
}
.nav ul > li ul li:last-child label {
  box-shadow: inset 0 -1px #fff;
}
.group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.group-list li {
  border-bottom: 1px solid #c3c3c3;
}
.group-list a {
  padding-left: 15px;
  background: #fff;
  color: #121212;
  box-shadow: inset 0 -1px #fff;
  padding: 0 15px;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
}
.group-list a:focus {
  background: #fff;
}
.group-list a:hover {
  background: #fff;
}
.group-list label {
  padding-left: 15px;
  background: #fff;
  box-shadow: inset 0 -1px #fff;
  padding: 0 15px;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  color: #121212;
}
.group-list label img {
  display: inline-block;
  vertical-align: middle;
  height: 42px;
  margin-right: 10px;
}
.group-list label:focus {
  background: #fff;
}
.group-list label:hover {
  background: #fff;
}
.group-list label a {
  padding: 0;
}
.sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.sub-group-list li {
  border-bottom: 1px solid #c3c3c3;
}
.sub-group-list li:last-child {
  border-bottom: 0;
}
.sub-group-list li:first-child {
  border-top: 1px solid #c3c3c3;
}
.sub-group-list a {
  padding-left: 30px;
  background: #fff;
  box-shadow: inset 0 -1px #fff;
  color: #121212;
}
.sub-group-list a:focus {
  background: #fff;
}
.sub-group-list a:hover {
  background: #fff;
}
.sub-group-list label {
  padding-left: 15px;
  background: #f0f0f0;
  box-shadow: inset 0 -1px #fff;
  color: #5a5a5a;
  font-weight: 500;
}
.sub-group-list label:focus {
  background: #fff;
}
.sub-group-list label:hover {
  background: #fff;
}
.sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.sub-sub-group-list a {
  padding-left: 6rem;
  background: #454545;
  box-shadow: inset 0 -1px #575757;
}
.sub-sub-group-list a:focus {
  background: #fff;
}
.sub-sub-group-list a:hover {
  background: #fff;
}
.sub-sub-group-list label {
  padding-left: 6rem;
  background: #454545;
  box-shadow: inset 0 -1px #575757;
}
.sub-sub-group-list label:focus {
  background: #333333;
}
.sub-sub-group-list label:hover {
  background: #333333;
}
.nav__list input[type=checkbox]:checked + label + ul {
  max-height: 1000px;
  overflow-y: scroll;
}
.nav__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
label > span {
  float: right;
  -webkit-transition: -webkit-transform 0.65s ease;
  transition: transform 0.65s ease;
}
/*========================== New Mobile Menu End =============================*/
.page-layout-1column .toolbar-products {
  position: static !important;
}
/*======================== Owl Carousel start =========================*/
.owl-carousel .owl-nav {
  margin: 0;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  margin: 0;
}
.owl-carousel .owl-nav button.owl-prev:hover {
  background: transparent;
}
.owl-carousel .owl-nav button.owl-prev:hover:before {
  color: #d22124;
}
.owl-carousel .owl-nav button.owl-prev:before {
  content: "\f104";
  font: bold 38px/1 FontAwesome;
  color: #051b52;
  transition: all 0.5s;
  display: none;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  margin: 0;
}
.owl-carousel .owl-nav button.owl-next:hover {
  background: transparent;
}
.owl-carousel .owl-nav button.owl-next:hover:before {
  color: #d22124;
}
.owl-carousel .owl-nav button.owl-next:before {
  content: "\f105";
  font: bold 38px/1 FontAwesome;
  color: #051b52;
  transition: all 0.5s;
  display: none;
}
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  margin: 0;
  padding: 0;
}
.owl-carousel .owl-nav .owl-prev:hover {
  background: transparent;
}
.owl-carousel .owl-nav .owl-prev:hover:before {
  color: #d22124;
}
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  margin: 0;
  padding: 0;
}
.owl-carousel .owl-nav .owl-next:hover {
  background: transparent;
}
.owl-carousel .owl-nav .owl-next:hover:before {
  color: #d22124;
}
.owl-carousel button.owl-dot {
  background: transparent;
  margin: 0;
}
.home-herobanner .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  top: 0;
  transform: none;
  height: 100%;
  width: 40px;
  z-index: 200;
}
.home-herobanner .owl-carousel .owl-nav button.owl-prev:before {
  display: block;
}
.home-herobanner .owl-carousel .owl-nav button.owl-next {
  right: 0;
  top: 0;
  transform: none;
  height: 100%;
  width: 40px;
  z-index: 200;
}
.home-herobanner .owl-carousel .owl-nav button.owl-next:before {
  display: block;
}
.owl-theme .owl-dots .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: #051b52 !important;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #d22124 !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #d22124 !important;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: transparent;
}
.owl-theme .owl-nav [class*='owl-']:hover .fa-angle-left:before {
  color: #d22124;
}
.owl-theme .owl-nav [class*='owl-']:hover .fa-angle-right:before {
  color: #d22124;
}
.fa-angle-left:before {
  font: bold 38px/1 FontAwesome;
  color: #051b52;
  transition: all 0.5s;
}
.fa-angle-right:before {
  font: bold 38px/1 FontAwesome;
  color: #051b52;
  transition: all 0.5s;
}
.mp-banner-slider .owl-nav button span {
  display: none;
}
.mp-banner-slider .owl-dots {
  top: 88%;
}
@media (max-width: 768px) {
  .mp-banner-slider .owl-dots {
    top: 88%;
    left: 49%;
  }
}
/*======================== Owl Carousel end =========================*/
.cms-page-view .page-main ul li {
  list-style: disc;
  margin-left: 20px;
}
.cms-page-view .page-main ol {
  padding-left: 0;
  margin-left: 20px;
}
.cms-page-view .page-main ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
/*=========================== Quote Form start ==============================*/
body:not(.catalog-category-view) .quote-form {
  display: none;
}
.catalog-category-view .page-main {
  max-width: 100% !important;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}
.catalog-category-view .category-view {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.catalog-category-view .columns {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.quote-form-container .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.quote-form {
  position: absolute;
  right: -370px;
  top: 0;
  background: #fff;
  padding: 15px 15px 20px;
  width: 370px;
  box-sizing: border-box;
  z-index: 2000000;
  transition: all 0.5s;
}
.quote-form .heading {
  background: #051b52;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
  line-height: normal;
  width: 210px;
  transform: rotate(-90deg);
  position: absolute;
  left: -129px;
  top: 82px;
  cursor: pointer;
}
.quote-form .block-title {
  text-align: center;
  font-weight: normal;
  margin-bottom: 15px;
}
.quote-form .block-title strong {
  font-weight: 500;
}
.quote-form .fieldset {
  margin-bottom: 25px;
}
@media (min-width: 1500px) {
  .quote-form {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
}
.quote-form-container.open .quote-form {
  right: 0;
}
.quote-form-container.open .overlay {
  opacity: 1;
  pointer-events: auto;
}
#customQuoteForm .form-list > li {
  margin-bottom: 5px;
}
#customQuoteForm .form-list > li .control {
  font-size: 0;
}
#customQuoteForm .form-list > li label {
  color: #242424;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
#customQuoteForm .form-list > li label em {
  color: #d22124;
  font-style: normal;
}
#customQuoteForm .form-list > li .logo-attchment {
  position: relative;
  margin-bottom: 12px;
}
#customQuoteForm .form-list > li .logo-attchment:before {
  content: "Browse";
  background: #0a1828;
  height: 35px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 10px;
  color: #fff;
  line-height: 35px;
  cursor: pointer;
  z-index: 3;
}
#customQuoteForm .form-list > li .logo-attchment input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
}
#customQuoteForm .form-list > li .logo-attchment .uploaded-file-name {
  width: 100%;
  border: 1px solid #b0b0b0;
  border-radius: 0;
  height: 35px;
  line-height: 32px;
  padding: 0 70px 0 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
#customQuoteForm .form-list > li .logo-attchment .uploaded-file-name.file_uploaded {
  background: #fff;
}
#customQuoteForm .form-list > li .logo-attchment .default-text {
  position: absolute;
  left: 12px;
  top: 50%;
  color: #6d6d6d;
  font-size: 15px;
  font-weight: normal;
  z-index: 1;
  transform: translateY(-50%);
}
#customQuoteForm p.required {
  color: #d22124;
  float: right;
  font-size: 14px;
}
#customQuoteForm .form-list > li input:-moz-placeholder {
  color: #6d6d6d;
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li input::placeholder {
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li input::-webkit-input-placeholder {
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li input::-moz-placeholder {
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li input:-ms-input-placeholder {
  color: #6d6d6d !important;
  font: normal 14p 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li textarea:-moz-placeholder {
  color: #6d6d6d;
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li textarea::placeholder {
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li textarea::-webkit-input-placeholder {
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .form-list > li textarea::-moz-placeholder {
  color: #6d6d6d !important;
  font: normal 14px 'Montserrat', sans-serif;
  opacity: 1;
}
#customQuoteForm .buttons-set {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
}
#customQuoteForm .send-enq,
#customQuoteForm .add-to-list-btn {
  background: #d22124;
  border: 0;
  border-radius: 0 !important;
  height: 44px;
  min-width: 135px;
  text-align: center;
  padding: 0;
  font: 600 15px/44px 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  margin: 0 5px 10px;
}
#customQuoteForm .send-enq:hover,
#customQuoteForm .add-to-list-btn:hover {
  background: #bd181b;
  border: 0;
}
.catalog-category-view #customQuoteForm .send-enq {
  min-width: 140px;
  padding: 0 30px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .quote-form-container .quote-form {
    position: fixed;
  }
  .quote-form-container.open .quote-form {
    right: 15px;
    width: calc(100% - 35px);
    top: 55px;
  }
  .quote-form-container.open .quote-form .heading {
    width: 45px;
    left: 0;
    top: -47px;
    cursor: pointer;
    font-size: 0;
    transform: none;
    border-radius: 10px 10px 0 0;
  }
  .quote-form-container.open .quote-form .heading:before {
    content: "X";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
  }
}
/*=========================== Quote Form end ==============================*/
/*============================ Category start ==============================*/
.page-layout-1column .filter.block {
  display: none !important;
}
.modes {
  display: none !important;
}
.toolbar-amount {
  font-size: 13px;
  font-weight: 400;
  float: left !important;
}
.page-products .columns {
  position: static !important;
}
.page-products .sorter {
  font-size: 13px;
  font-weight: 400;
  position: static !important;
}
.page-products .product-item-info {
  width: 100%;
}
.toolbar-products.toolbar select {
  height: 26px;
  background-color: #fff;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400;
}
.category-view {
  text-align: center;
}
.products-grid .product-item {
  width: 33.33% !important;
  padding: 0 15px !important;
  margin: 0 0 45px !important;
  text-align: center;
}
.products-grid .product-item .product-item-info {
  width: 100%;
}
.products-grid .product-item .product-item-info .product-item-description {
  margin: 15px 0 35px;
  padding: 0 15px;
  min-height: 60px;
}
.products-grid .product-item .product-item-info .product-item-inner {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  margin: 0 !important;
  display: block !important;
  box-shadow: none;
  border: 0;
  padding: 0;
}
.products-grid .product-item .product-item-info .product-item-inner .action.more {
  background: #d22124;
  height: 44px;
  min-width: 140px;
  text-align: center;
  padding: 0 30px !important;
  font: 500 15px/44px 'Montserrat', sans-serif;
  color: #fff;
  text-transform: uppercase;
  display: table;
  margin: auto;
  text-decoration: none;
}
.products-grid .product-item .product-item-info .product-item-inner .action.more:hover {
  background: #bd181b;
}
.products-grid .product-item .price-box .price {
  font-size: 16px;
  color: #051b52;
}
.products-grid .product-item-info:hover {
  border: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.products-grid + .toolbar-products {
  display: none;
}
.catalogsearch-result-index .products-grid .product-item .product-item-info .product-item-description {
  min-height: 90px;
}
.product-item-name {
  font-weight: 600;
  font-size: 18px;
  color: #051b52;
}
.product.name a {
  font-weight: 600;
  font-size: 18px;
  color: #051b52;
}
.product-image-container {
  width: 100% !important;
}
.product-image-wrapper {
  height: auto !important;
  padding-bottom: 0 !important;
}
.product-image-photo {
  position: static !important;
  margin: 0 auto !important;
  width: auto !important;
}
@media (max-width: 768px) {
  .products-grid .product-item {
    width: 50% !important;
  }
  .products-grid .product-item .product-item-info .product-item-description {
    min-height: auto;
    margin: 35px 0 0;
  }
  .products-grid .product-item .product-item-info .product-item-description p {
    font-size: 0;
    line-height: 0;
    margin: 0;
  }
}
@media (max-width: 399px) {
  .products-grid .product-item {
    width: 100% !important;
  }
}
/*============================ Category end ==============================*/
/*============================== Amasty Search start ===============================*/
.header.content .amsearch-wrapper-block {
  float: left;
  margin-right: 0;
  margin-top: 2.5%;
  margin-left: 40px;
  padding-left: 0;
  width: calc(100% - 890px);
}
.header.content .amsearch-wrapper-block .amsearch-button {
  right: 0;
  width: 50px;
  height: 100%;
  opacity: 1 !important;
  background: #d22124;
  border-radius: 0 3px 3px 0;
}
.header.content .amsearch-input-wrapper .amsearch-button.-loupe {
  background-color: #d22124;
  background-image: url("../images/icon-search-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  left: auto;
  right: 0;
  margin: 0;
  height: 100%;
  opacity: 1;
  border-radius: 0 3px 3px 0;
}
.header.content .amsearch-input-wrapper .amsearch-button.-close {
  background-color: #d22124;
  background-image: url("../images/icon-search-close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px auto;
  right: 0;
  margin: 0;
  height: 100%;
  opacity: 1;
  border-radius: 0 3px 3px 0;
}
.header.content .amsearch-input-wrapper .amsearch-input {
  height: 44px;
  padding-right: 60px;
  font-family: 'Montserrat', sans-serif;
  border-color: #dcdcdc;
  border-radius: 3px;
}
.amsearch-form-block {
  width: 100%;
  display: block;
}
.amsearch-item-container .amsearch-item .amsearch-link {
  color: #333 !important;
  font-weight: 500 !important;
}
.amsearch-item-container .amsearch-item .amsearch-link:hover {
  background: #f1f1f1;
  color: #333;
}
.amsearch-highlight {
  color: #051b52 !important;
}
.amsearch-item-container.-page a.amsearch-link {
  color: #333 !important;
}
.amsearch-products-section .amsearch-link {
  color: #333 !important;
}
.amsearch-products-section .amsearch-item:hover {
  background: #f1f1f1;
}
.amsearch-products-section .action.tocart {
  font-size: 12px !important;
  height: 35px;
  line-height: 35px !important;
  padding: 0 !important;
}
.amsearch-products-section .product-item .price-box {
  display: none;
}
.amsearch-products-section.-grid:not(.-slider) .amsearch-item {
  max-width: 33.33% !important;
  padding: 10px 15px;
}
@media (max-width: 1239px) {
  .amsearch-form-block.-opened {
    width: 100% !important;
  }
  .amsearch-result-section:not(.-small) {
    flex-wrap: wrap !important;
  }
  .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: 50% !important;
  }
}
@media (max-width: 1199px) {
  .header.content .amsearch-wrapper-block {
    width: calc(100% - 810px);
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .page-header:not(.-amsearch-full-width) .amsearch-input-wrapper.-dynamic-width {
    min-width: auto;
  }
}
@media (max-width: 1023px) {
  .header.content .amsearch-wrapper-block {
    width: calc(100% - 520px);
    margin-top: 35px;
  }
  .header.content .minicart-wrapper {
    margin-top: 40px;
  }
  .header.content .minicart-wrapper .action.showcart .text {
    font-size: 0;
  }
  .header.content .minicart-wrapper .action.showcart .counter.qty {
    right: -11px;
  }
}
@media (max-width: 768px) {
  .header.content .amsearch-wrapper-block {
    width: 100%;
    margin: 0 !important;
    padding: 0 0 10px;
  }
  .header.content .amsearch-wrapper-block:before {
    display: none;
  }
  .header.content .amsearch-image .product-image-wrapper {
    height: auto;
  }
  .header.content .amsearch-image .product-image-wrapper .product-image-photo {
    position: static;
  }
  .header.content .minicart-wrapper {
    margin-top: 23px;
  }
  .mp-banner-slider .owl-dots {
    top: 80% !important;
  }
  .catalogsearch-result-index.page-products .columns {
    padding-top: 0;
  }
  .catalogsearch-result-index.page-products .columns .column.main {
    padding-bottom: 0;
    order: 1;
  }
  .catalogsearch-result-index.page-products .columns .sidebar {
    order: 2;
  }
}
@media (max-width: 600px) {
  .mp-banner-slider .owl-dots {
    top: 88% !important;
  }
}
/*============================== Amasty Search end ===============================*/
/*================================== Desktop - Mobile Banner Show/Hide ===========================*/
@media (min-width: 601px) {
  .mp-banner-slider.home-herobanner .owl-carousel .owl-item .item-image img.mobile-image {
    display: none;
  }
}
@media (max-width: 600px) {
  .mp-banner-slider.home-herobanner .owl-carousel .owl-item .item-image .img-responsive {
    display: none;
  }
  .mp-banner-slider.home-herobanner .owl-carousel .owl-item .item-image .img-responsive.mobile-image {
    display: block;
  }
}
/*============================== Home Brand start =============================*/
.brand-widget .owl-carousel {
  margin-left: 0;
  margin-right: 0;
}
.brand-widget .owl-carousel .owl-item {
  padding-left: 0;
  padding-right: 0;
}
/*============================== Home Brand end =============================*/
/*============================== Category start =============================*/
.home-category-slider .owl-carousel .owl-nav .owl-prev {
  left: -20px;
}
.home-category-slider .owl-carousel .owl-nav .owl-next {
  right: -20px;
}
.home-category-slider.owl-carousel .owl-item img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.catalog-category-view.page-layout-1column .column.main {
  padding-bottom: 0 !important;
}
.page-wrapper > .page-bottom {
  margin-bottom: 50px;
}
/*============================== Category end =============================*/
/*============================== Product start =============================*/
.block.block-wishlist {
  display: none;
}
.page-layout-2columns-right .sidebar {
  margin-bottom: 40px;
}
.block-pricing-info {
  margin-bottom: 30px !important;
}
.block-pricing-info .titlebar strong {
  background: #051b52;
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  line-height: 43px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px 10px 0 0;
}
.block-pricing-info .block-content {
  padding: 10px 15px 15px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 0;
}
.block-pricing-info .block-content .as_low_as {
  font-size: 20px;
}
.block-pricing-info .block-content .as_low_as .price {
  color: #d22124;
  font-weight: 600;
}
.block-pricing-info .block-content .spcl-serv_heading {
  margin-bottom: 5px;
  display: block;
}
.block-pricing-info .block-content p {
  font-size: 14px;
}
body:not(.catalog-category-view) .form-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 18px;
}
body.catalog-category-view .quick-question .form-title,
body.catalog-category-view .quick-question .form-text {
  display: none;
}
.quick-question .form-title {
  background: #051b52;
  border-radius: 10px 10px 0 0;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 9px 20px;
  display: inline-block;
}
.quick-question .form-text {
  text-align: center;
  margin-bottom: 15px;
  line-height: normal;
}
@media (min-width: 769px) {
  .page-layout-2columns-right .column.main {
    width: 73% !important;
  }
  .page-layout-2columns-right .sidebar {
    width: 27% !important;
  }
  .page-layout-2columns-right .product-info-main {
    float: left !important;
  }
  .page-layout-2columns-right .product.media {
    float: right !important;
  }
}
.fotorama__stage {
  border: 1px solid #ccc;
}
.fotorama__nav-wrap {
  margin: 15px 0 0;
  text-align: center;
}
.fotorama__thumb-border {
  display: none;
}
.fotorama__nav--thumbs .fotorama__nav__frame {
  padding: 0 !important;
  border: 1px solid #ccc;
  margin-right: 5px;
}
.fotorama__nav-wrap .fotorama__nav--dots .fotorama__nav__frame {
  width: 22px;
}
.fotorama__nav-wrap .fotorama__dot {
  background: #051b52;
  width: 12px;
  height: 12px;
  border: 0;
}
.fotorama__nav-wrap .fotorama__active .fotorama__dot {
  background: #d22124;
}
.product.attribute.overview ul li {
  list-style: disc;
  margin-left: 20px;
}
.product.info.detailed {
  padding-top: 30px;
}
.product.info.detailed .product.data.items > .item.title {
  margin: 0 15px 0 0;
}
.product.info.detailed .product.data.items > .item.title > .switch {
  font-weight: 600;
  line-height: 42px;
  font-size: 15px;
  color: #333;
  background: #f1f1f1;
  border: 0;
  border-bottom: none;
  height: 45px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
.product.info.detailed .product.data.items > .item.title > .switch:hover {
  background: #051b52;
  color: #fff;
}
.product.info.detailed .product.data.items > .item.content {
  border: 0;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 20;
  padding: 30px;
  margin-top: 45px;
}
.product.info.detailed .product.data.items > .item.content ul li {
  list-style: disc;
  margin-left: 17px;
}
.product.info.detailed .product.data.items > .item.title.active > .switch {
  background: #051b52;
  color: #fff;
}
.product.info.detailed .product.data.items > .item.title.active > .switch:focus {
  background: #051b52;
  color: #fff;
}
.product.info.detailed .product.data.items > .item.title.active > .switch:hover {
  background: #051b52;
  color: #fff;
}
.page-wrapper .product-info-main .product-info-price {
  color: #242424;
  border-bottom: 0;
  margin-bottom: 0;
}
.page-wrapper .product-info-main .product-info-stock-sku {
  float: none;
  padding-left: 0;
  padding-bottom: 0;
  text-align: left;
}
.page-wrapper .product-info-main .product.attribute.sku .type {
  font-weight: 500;
}
.page-wrapper .page-main .product.media + .price-container,
.page-wrapper .page-main .product-info-main + .price-container {
  margin-top: 20px;
  clear: left;
  float: left;
  width: 48%;
}
.page-wrapper .page-main .product.media + .price-container .price,
.page-wrapper .page-main .product-info-main + .price-container .price {
  font-size: 24px;
  font-weight: 600;
  color: #242424;
}
.tier-price-wrap {
  margin-top: 25px;
  margin-bottom: 30px;
  float: left;
  clear: left;
  width: 48%;
  word-break: break-word;
  white-space: normal;
}
.tier-price-wrap h4 {
  margin: 0;
  color: #242424;
  font-size: 15px;
  border-bottom: 0;
  padding: 0;
  margin-bottom: 10px;
}
.tier-price-wrap .tierprice-table {
  border: 1px solid #ccc;
  font-size: 13px;
  color: #4a4a4a;
}
.tier-price-wrap .tierprice-table thead tr th {
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
.tier-price-wrap .tierprice-table thead tr th:first-child {
  font-weight: 700;
}
.tier-price-wrap .tierprice-table thead tr th:nth-child(odd) {
  background: #ffffff;
}
.tier-price-wrap .tierprice-table thead tr th:nth-child(even) {
  background: #f1f1f1;
}
.tier-price-wrap .tierprice-table thead tr th:not(:first-child) {
  text-align: center;
}
.tier-price-wrap .tierprice-table tbody tr td {
  font-weight: 500;
  padding-top: 25px;
  padding-bottom: 25px;
}
.tier-price-wrap .tierprice-table tbody tr td:nth-child(odd) {
  background: #ffffff;
}
.tier-price-wrap .tierprice-table tbody tr td:nth-child(even) {
  background: #f1f1f1;
}
.tier-price-wrap .tierprice-table tbody tr td:not(:first-child) {
  text-align: center;
}
.tier-price-wrap .tierprice-table tbody tr td:first-child {
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-wrapper .price-container {
    width: 100%;
  }
  .tier-price-wrap {
    width: 100%;
  }
}
.white-popup {
  position: relative;
  background: #fff;
  padding: 35px 20px 20px !important;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}
.white-popup .quote_suc_prod_name {
  font-size: 16px !important;
  font-weight: 600;
}
.white-popup .quote_suc_msg span {
  display: block;
  text-align: center;
  font-size: 14px;
}
.white-popup .quote_suc_btn {
  margin: 15px 0 0;
  text-align: center;
}
.white-popup .quote_suc_btn .go_quote_list_link {
  background: #051b52;
  font: 16px 'Montserrat', sans-serif;
  padding: 0 15px;
  height: 36px;
  color: #fff;
  display: inline-block;
  line-height: 36px;
  text-decoration: none;
  margin-bottom: 6px;
}
.white-popup .quote_suc_btn .go_quote_list_link:hover {
  background: #bd181b;
}
.white-popup .quote_suc_btn .continue_browsing_link {
  background: #051b52;
  font: 16px 'Montserrat', sans-serif;
  padding: 0 15px;
  height: 36px;
  color: #fff;
  display: inline-block;
  line-height: 36px;
  text-decoration: none;
  text-transform: uppercase;
}
.white-popup .quote_suc_btn .continue_browsing_link:hover {
  background: #bd181b;
}
.product-info-main .product-add-form {
  display: none;
}
.block.related .field.choice {
  display: none;
}
.block.related .related-available .product-item-name {
  margin-left: 0;
}
@media (max-width: 768px) {
  .block.related .related-available .product-item-name {
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #customQuoteForm .buttons-set {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  #customQuoteForm .buttons-set {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .catalog-product-view .column.main {
    padding-bottom: 0 !important;
  }
  .catalog-product-view .product.media {
    margin-bottom: 25px;
  }
  .product.info.detailed .product.data.items {
    margin-left: 0;
    margin-right: 0;
  }
  .product.info.detailed .product.data.items > .item.content {
    margin-top: 0;
    padding: 15px;
  }
  .product.info.detailed .product.data.items > .item.content iframe {
    width: 100%;
  }
  .product.info.detailed .product.data.items > .item.title {
    margin-bottom: 1px;
  }
  .product.info.detailed .product.data.items > .item.title a:after {
    color: #333;
  }
  .product.info.detailed .product.data.items > .item.title.active a:after {
    color: #fff;
  }
}
@media (max-width: 639px) {
  .page-wrapper .product-info-main .product-info-price {
    margin: 0;
    width: 100% !important;
  }
}
.amrelated-grid-wrapper {
  margin-bottom: 0 !important;
}
.amrelated-grid-wrapper .block-title {
  text-align: center;
}
.amrelated-grid-wrapper .block-title strong {
  font-size: 28px;
  font-weight: 600;
}
.amrelated-grid-wrapper .products-grid .product-item .product-item-inner {
  box-shadow: none !important;
  margin-top: 30px !important;
}
/*============================== Product end =============================*/
/*====================== Quote Popup start ==============================*/
.white-popup {
  padding: 35px 20px 20px !important;
  max-width: 300px !important;
  box-sizing: border-box;
}
.mfp-close-btn-in .white-popup .mfp-close {
  width: 90px;
  font-weight: normal;
}
.mfp-close-btn-in .white-popup .mfp-close:before {
  content: "CLOSE";
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  vertical-align: top;
  margin-right: 5px;
  font-weight: 600;
}
.mfp-close-btn-in .white-popup .quote_suc_msg span {
  display: block;
  text-align: center;
  font-size: 14px;
}
.mfp-close-btn-in .white-popup .quote_suc_prod_name {
  font-size: 16px !important;
  font-weight: 600;
}
.mfp-close-btn-in .white-popup .quote_suc_btn {
  margin: 15px 0 0;
  text-align: center;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link {
  background: #051b52;
  font: 16px 'Montserrat', sans-serif;
  padding: 0 15px;
  height: 36px;
  color: #fff;
  display: inline-block;
  line-height: 36px;
  text-decoration: none;
  margin-bottom: 6px;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link:hover {
  background: #bd181b;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link .fa {
  width: 18px;
  height: 22px;
  background: url("../images/icon-quotelist-1.svg") 0 0 no-repeat;
  background-size: auto 100%;
  vertical-align: top;
  margin-right: 24px;
  margin-top: 6px;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link .fa:before {
  content: "";
}
.mfp-close-btn-in .white-popup .quote_suc_btn .continue_browsing_link {
  background: #051b52;
  font: 16px 'Montserrat', sans-serif;
  padding: 0 15px;
  height: 36px;
  color: #fff;
  display: inline-block;
  line-height: 36px;
  text-decoration: none;
  text-transform: uppercase;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .continue_browsing_link:hover {
  background: #bd181b;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .continue_browsing_link .fa {
  font-size: 22px;
  margin-right: 12px;
  margin-top: 6px;
  vertical-align: top;
}
/*====================== Quote Popup end ==============================*/
/*========================= Quote page start ===================*/
@media (min-width: 769px) {
  .page-wrapper .cart-container .form-cart {
    width: 100%;
    padding-right: 0;
  }
  .cart-summary {
    display: none;
  }
}
@media print {
  .page-wrapper .cart-container .form-cart {
    width: 100%;
    padding-right: 0;
  }
  .cart-summary {
    display: none;
  }
}
.cart-container .cart.table-wrapper .product-item-photo {
  display: inline-block;
  width: 150px;
}
.cart-container .cart.table-wrapper .product-item-photo .product-image-photo {
  border: 1px solid #ccc;
}
.cart-container .cart.table-wrapper .product-item-details {
  display: inline-block;
  width: auto;
}
.cart-container .cart.table-wrapper .product-item-name {
  font-size: 1.5rem;
}
.cart-container .cart.table-wrapper .col.qty .input-text {
  margin-top: 0 !important;
}
.cart-container .form-cart .action.btn-proceed-quote {
  float: right;
  border: 0;
  padding: 0 15px;
  margin: 0 0 0 10px;
  background: #11224d;
  cursor: pointer;
  vertical-align: middle;
  height: 35px;
  border-radius: 0;
  color: #fff;
  font: 14px 'Montserrat', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.btn-proceed-quote:before {
  content: "\f00c";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  font-family: FontAwesome;
}
.cart-container .form-cart .action.update {
  float: right !important;
  margin-left: 10px !important;
  margin-right: 0 !important;
  border: 0;
  padding: 0 15px;
  margin: 0;
  background: #11224d;
  cursor: pointer;
  vertical-align: middle;
  height: 35px;
  border-radius: 0;
  color: #fff;
  font: 14px 'Montserrat', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.update:before {
  content: "\f021";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  font-family: FontAwesome;
}
.cart-container .form-cart .custom-empty-cart {
  float: left !important;
  margin-left: 0 !important;
  border: 0;
  padding: 0 15px;
  margin: 0;
  background: #d22124;
  cursor: pointer;
  vertical-align: middle;
  height: 35px;
  border-radius: 0;
  color: #fff;
  font: 14px/35px 'Montserrat', sans-serif;
  text-transform: uppercase;
  box-sizing: border-box;
}
.cart-container .form-cart .custom-empty-cart:before {
  content: "\f00d";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  font-family: FontAwesome;
}
.checkout-cart-index #customQuoteForm .send-enq {
  min-width: 185px;
}
.checkout-cart-index #customQuoteForm .send-enq .fa {
  display: none;
}
@media (max-width: 768px) {
  .cart.table-wrapper .item .col.item {
    width: calc(100% - 90px);
    float: left;
    min-height: 95px !important;
  }
  .cart.table-wrapper .col.qty[data-th]:before {
    display: none !important;
  }
  .cart .table.items .col.qty {
    width: 90px;
    float: left;
  }
  .cart-summary {
    display: none;
  }
  .cart-container .form-cart .actions.main {
    padding: 0 10px;
  }
  .cart-container .form-cart .action.btn-proceed-quote {
    margin: 0 0 10px !important;
    width: 100%;
  }
  .cart-container .form-cart .action.update {
    margin: 0 0 10px !important;
    width: 100%;
  }
  .cart-container .form-cart .continue {
    margin: 0 0 10px !important;
    width: 100%;
  }
  .cart-container .form-cart .custom-empty-cart {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
/*========================= Quote page stop ===================*/
/*=========================== Pantone Color Chart start ============================*/
.pantone-colorchart-table table {
  width: 75px;
}
.pantone-colorchart-table table tr td span {
  min-height: 40px;
  display: block;
}
@media (max-width: 768px) {
  .make-responsive {
    overflow-x: auto;
  }
}
/*=========================== Pantone Color Chart end ============================*/
/*============================= Sticky Menu =========================*/
@media (min-width: 769px) {
  .page-wrapper .nav-sections.sticky {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 200;
    transition: all 0.5s;
  }
}
/*============================ Contact Start ===========================*/
.contact-index-index .page-main .contact-right ul li {
  list-style: disc;
  margin-left: 20px;
}
.contact-index-index .page-main .contact-right ol {
  padding-left: 0;
}
.contact-index-index .page-main .contact-right ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
.contact-index-index.page-layout-2columns-left .column.main {
  width: 70% !important;
}
.contact-index-index.page-layout-2columns-left .sidebar-main {
  width: 30% !important;
}
.contact-right .contact-info {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  margin-bottom: 15px;
}
.contact-right .contact-info a {
  color: #0a1828;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
}
.contact-right .contact-info.email {
  margin-right: 0;
}
.contact-right .contact-info.email:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/icon-sprite-new.png") 0 -45px no-repeat;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.contact-right .contact-info.phone:before {
  content: "";
  width: 41px;
  height: 44px;
  background: url("../images/icon-sprite-new.png") -130px 0 no-repeat;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.contact-right .map-container {
  width: 49%;
  float: right;
  margin-top: 15px;
}
.contact-right .map-container iframe {
  width: 100%;
}
.contact-right .right-contacts {
  float: left;
  width: 49%;
  background: #fbfbfb;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  height: 310px;
  margin-top: 15px;
}
.contact-right .right-contacts .title {
  font-size: 16px;
  background: #d22124;
  color: #fff;
  padding: 10px 20px;
  margin: -20px -20px 10px -20px;
}
.contact-right .right-contacts strong {
  font-weight: normal;
}
.contact-right .pre-contacts-wrapper {
  overflow: hidden;
}
.contact-right .left-dates-contacts {
  width: 35%;
  float: left;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 24px;
}
.contact-right .right-dates-contacts {
  float: right;
  width: 65%;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-right .mon-fri {
  display: block;
  height: 122px;
  text-align: center;
  background: #e0f5e0;
  padding: 48px 0;
}
.contact-right .sat-sun {
  background: #f5e2e0;
  height: 47px;
  display: block;
  padding: 13px 0;
  text-align: center;
}
.contact-right h2 {
  padding-bottom: 0;
}
.contact-index-index #customQuoteForm .send-enq {
  min-width: 180px;
}
@media (max-width: 991px) {
  .contact-right .right-contacts {
    width: 100%;
  }
  .contact-right .map-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-index-index.page-layout-2columns-left .sidebar-main {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .contact-index-index .columns {
    position: relative;
    padding-top: 50px;
  }
  .page-title-wrapper.contact {
    position: absolute;
    left: 0;
    top: 0;
  }
}
/*============================ Contact End ===========================*/
.stt-button {
  display: none !important;
}
body:not(.catalog-product-view) #customQuoteForm .send-enq {
  min-width: 180px;
}
/*================================= Carousel Static Image before slider load ================================*/
.homepage-banner.no-banner .banner-image {
  font-size: 0;
}
.homepage-banner.no-banner .banner-image img {
  width: 100%;
}
@media (min-width: 601px) {
  .homepage-banner.no-banner.mobile {
    display: none;
  }
}
@media (max-width: 600px) {
  .homepage-banner.no-banner {
    display: none;
  }
  .homepage-banner.no-banner.mobile {
    display: block;
  }
}
.data-item-content ul li {
  list-style: disc;
  margin-left: 17px;
}
.quote-subscribe-btn {
  background: #d22124;
  height: 44px;
  min-width: 140px;
  text-align: center;
  padding: 0 30px !important;
  font: 500 15px/44px 'Montserrat', sans-serif;
  color: #fff !important;
  text-transform: uppercase;
  display: inline-block;
  margin: 10px 0 0;
  text-decoration: none !important;
}
.quote-subscribe-btn:hover {
  background: #bd181b;
}
@media (max-width: 768px) {
  .cms-privacy-policy-cookie-restriction-mode .page-main {
    padding-top: 0 !important;
  }
}
/*============================ Blog Start =============================*/
.amblog-index-index .column.main ul li,
.amblog-index-post .column.main ul li,
.amblog-index-category .column.main ul li {
  list-style: disc;
  margin-left: 20px;
}
.amblog-index-index .column.main ol,
.amblog-index-post .column.main ol,
.amblog-index-category .column.main ol {
  padding-left: 0;
}
.amblog-index-index .column.main ol li,
.amblog-index-post .column.main ol li,
.amblog-index-category .column.main ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
.amblog-index-index .column.main .amblog-footer ul li,
.amblog-index-post .column.main .amblog-footer ul li,
.amblog-index-category .column.main .amblog-footer ul li {
  list-style: none;
  margin-left: 0;
}
.amblog-index-index .column.main .amblog-footer ol,
.amblog-index-post .column.main .amblog-footer ol,
.amblog-index-category .column.main .amblog-footer ol {
  padding-left: 0;
}
.amblog-index-index .column.main .amblog-footer ol li,
.amblog-index-post .column.main .amblog-footer ol li,
.amblog-index-category .column.main .amblog-footer ol li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
/*============================ Blog End =============================*/
/*==================== Product page quote and contact button in mobile view =========================*/
.mobileproduct-button-set {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.mobileproduct-button-set a {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 10px 0;
  max-width: 250px;
  width: 100%;
  text-decoration: none;
  margin: 0 0 15px;
}
.mobileproduct-button-set a .fa {
  margin-right: 17px;
  font-size: 22px;
}
.mobileproduct-button-set a.quote-btn {
  background: #d22124;
}
.mobileproduct-button-set a.phone-btn {
  background: #051b52;
  margin-bottom: 0;
  padding: 8px 0;
}
.mobileproduct-button-set a.phone-btn .fa {
  font-size: 25px;
  margin-right: 8px;
}
.product.info.detailed .mobileproduct-button-set {
  display: none;
}
@media (min-width: 768px) {
  .mobileproduct-button-set {
    display: none;
  }
}
@media (max-width: 767px) {
  .catalog-product-view .product.media {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
  }
}
html {
  scroll-behavior: smooth;
}
@media (min-width: 769px) {
  .page-layout-1column.page-with-filter .column.main {
    position: static !important;
    padding-top: 0 !important;
  }
}
@media print {
  .page-layout-1column.page-with-filter .column.main {
    position: static !important;
    padding-top: 0 !important;
  }
}
.grecaptcha-badge {
  bottom: 155px !important;
  z-index: 2000 !important;
}
@media (max-width: 768px) {
  .grecaptcha-badge {
    bottom: 15px !important;
  }
}
/*============================ Responsive ===========================*/
@media (max-width: 1199px) {
  .header.content .block-search {
    width: calc(100% - 820px);
  }
  .header.content .minicart-wrapper {
    margin-left: 20px !important;
  }
  .header.content .phnmail a:not(:first-child) {
    margin-left: 20px;
  }
  .desktop-menu ul li a {
    font-size: 15px;
    padding-left: 14px;
  }
}
@media (max-width: 1023px) {
  .phnmail {
    margin-top: 45px;
  }
  .phnmail a {
    font-size: 0;
  }
  .minicart-wrapper {
    font-size: 0;
    margin-top: 40px;
  }
  .minicart-wrapper .action.showcart {
    font-size: 0;
  }
  .header-toplink ul li {
    margin: 0 10px;
  }
  .header-toplink ul li a {
    font-size: 15px;
  }
  .header.content .block-search {
    width: calc(100% - 460px);
    margin-top: 34px;
  }
}
@media (max-width: 991px) {
  .header-toplink {
    display: none;
  }
  .header.content .logo {
    margin-left: 60px;
  }
  .header.content .block-search {
    width: calc(100% - 530px);
  }
  .nav-sections-item-content .desktop-menu {
    display: none;
  }
  .hamburger-menu {
    top: 53px;
  }
  .page-wrapper .nav-sections-items {
    padding: 0;
  }
  .home-featured ul {
    justify-content: space-evenly;
  }
  .home-review ul li {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cms-home .page-header {
    margin-bottom: -1px;
    border-bottom: 0;
  }
  .page-wrapper .nav-toggle {
    display: none;
  }
  .page-wrapper .nav-sections-item-title {
    display: none;
  }
  .page-wrapper .nav-sections-item-content {
    margin-top: 0;
    padding: 0;
  }
  .page-wrapper .header.content .block-search {
    width: 100%;
    margin: 0;
  }
  .page-wrapper .header.content .logo {
    float: none;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-wrapper .block-search .label {
    position: absolute;
    top: 35px;
    right: 60px;
  }
  .page-wrapper .block-search .label:before {
    font-size: 25px;
    font-weight: bold;
    color: #061f5c;
    margin-right: 0;
  }
  .page-wrapper .logo img {
    width: 180px;
  }
  .page-wrapper .hamburger-menu {
    top: 40px;
  }
  .page-wrapper .hamburger-menu.active {
    top: 34px;
  }
  .page-wrapper .phnmail {
    display: none;
  }
  .page-wrapper .minicart-wrapper {
    margin-top: 23px;
  }
  .page-wrapper .footer {
    flex-direction: column;
    align-items: center;
  }
  .page-wrapper .footer .links {
    max-width: 250px;
    width: 100%;
    margin-bottom: 20px;
  }
  .page-wrapper .footer .links.last {
    margin-bottom: 0;
  }
  /*========================= Moving Product Title at the top of Product Image =============================*/
  .catalog-product-view .column.main {
    position: relative;
    padding-top: 80px;
  }
  .product-info-main .page-title-wrapper.product {
    position: absolute;
    top: 0;
  }
}
@media (max-width: 600px) {
  .home-parallax {
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .home-review ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
  .header.content .minicart-wrapper {
    margin-left: 10px !important;
  }
  .header.content .phnmail a:not(:first-child) {
    margin-left: 10px;
  }
}
/*========================= Sub Category Section ===========================*/
.subcat-listing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 0;
  margin-bottom: 50px;
}
.subcat-listing:after {
  content: "";
  display: table;
  clear: both;
}
.subcat-listing li {
  width: calc((100% - (30px * 3)) / 4);
  margin: 0 30px 30px 0;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.subcat-listing li a {
  font-weight: 600;
  font-size: 18px;
  color: #051b52;
  display: block;
}
.subcat-listing li a .home-cat-featured-info span {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 1099px) {
  .subcat-listing li:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1098px) {
  .subcat-listing li {
    width: calc((100% - (30px * 2)) / 3);
  }
  .subcat-listing li:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .subcat-listing li {
    width: calc((100% - 30px) / 2);
  }
  .subcat-listing li:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .page-products .columns {
    padding-top: 20px !important;
  }
  .subcat-listing {
    margin-top: -20px;
  }
}
@media (max-width: 568px) {
  .subcat-listing li {
    width: 100%;
    margin-right: 0;
  }
}
/**
 * Copyright 2014 Adobe
 * All Rights Reserved.
 */
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}
.am-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.am-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
@-webkit-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
*/
@media only screen and (min-device-width: 320px) and (max-device-width: 780px) and (orientation: landscape) {
  .product-video {
    height: 100%;
    width: 81%;
  }
}
/**
 * @codingStandardsIgnoreStart
 */
/**
 * @codingStandardsIgnoreStart
 */
@media only screen and (max-width: 768px) {
  .field-tooltip .field-tooltip-content {
    left: auto;
    right: -10px;
    top: 40px;
  }
  .field-tooltip .field-tooltip-content::before,
  .field-tooltip .field-tooltip-content::after {
    border: 10px solid transparent;
    height: 0;
    left: auto;
    margin-top: -21px;
    right: 10px;
    top: 0;
    width: 0;
  }
  .field-tooltip .field-tooltip-content::before {
    border-bottom-color: #999;
  }
  .field-tooltip .field-tooltip-content::after {
    border-bottom-color: #f4f4f4;
    top: 1px;
  }
}
@media only screen and (max-width: 768px) {
  .opc-block-summary .product-item .product-item-inner {
    display: block;
  }
  .opc-block-summary .product-item .product-item-name-block {
    display: block;
    text-align: left;
  }
  .opc-block-summary .product-item .subtotal {
    display: block;
    text-align: left;
  }
}
#registrant-options .item .control table .col.qty .input-qty {
  display: none;
}
@media all and (min-width: 768px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .abs-product-options-list-desktop dt:after,
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .abs-discount-block-desktop .block,
  .column .block-addbysku .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .form-address-edit > .fieldset,
  .form-edit-account .fieldset,
  .storecredit .block,
  .paypal-review-discount .block,
  .cart-discount .block {
    width: 48%;
  }
  .abs-blocks-2columns:nth-child(1),
  .abs-discount-block-desktop .block:nth-child(1),
  .column .block-addbysku .block-content .box:nth-child(1),
  .login-container .block:nth-child(1),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(1),
  .form-address-edit > .fieldset:nth-child(1),
  .form-edit-account .fieldset:nth-child(1),
  .storecredit .block:nth-child(1),
  .paypal-review-discount .block:nth-child(1),
  .cart-discount .block:nth-child(1) {
    clear: left;
    float: left;
  }
  .abs-blocks-2columns:nth-child(2),
  .abs-discount-block-desktop .block:nth-child(2),
  .column .block-addbysku .block-content .box:nth-child(2),
  .login-container .block:nth-child(2),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2),
  .form-address-edit > .fieldset:nth-child(2),
  .form-edit-account .fieldset:nth-child(2),
  .storecredit .block:nth-child(2),
  .paypal-review-discount .block:nth-child(2),
  .cart-discount .block:nth-child(2) {
    float: right;
  }
  .abs-blocks-2columns:nth-child(2) + *,
  .abs-discount-block-desktop .block:nth-child(2) + *,
  .column .block-addbysku .block-content .box:nth-child(2) + *,
  .login-container .block:nth-child(2) + *,
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2) + *,
  .form-address-edit > .fieldset:nth-child(2) + *,
  .form-edit-account .fieldset:nth-child(2) + *,
  .storecredit .block:nth-child(2) + *,
  .paypal-review-discount .block:nth-child(2) + *,
  .cart-discount .block:nth-child(2) + * {
    clear: both;
  }
  .abs-margin-for-blocks-and-widgets-desktop,
  .page-main .block,
  .customer-review .product-details {
    margin-bottom: 50px;
  }
  .abs-reset-left-margin-desktop,
  .column.main .paypal-review .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 90%;
  }
  .abs-add-fields-desktop .fieldset .field .control,
  .form-giftregistry-share .fieldset .field .control,
  .form-giftregistry-edit .fieldset .field .control,
  .form-create-return .fieldset .field .control,
  .form.send.friend .fieldset .field .control {
    width: auto;
  }
  .abs-margin-for-forms-desktop {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .block-collapsible-nav .title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .paypal-review-discount:before,
  .paypal-review-discount:after,
  .order-review-form:before,
  .order-review-form:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .login-container:before,
  .login-container:after,
  .account .page-title-wrapper:before,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:before,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:before,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:before,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:before,
  .order-links:after,
  .account .column.main .block.block-order-details-view:before,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:before,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:before,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .header.content:before,
  .header.content:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:after,
  .paypal-review-discount:after,
  .order-review-form:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:after,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:after,
  .header.content:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .abs-shopping-cart-items-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional,
  .bundle-options-container .block-bundle-summary,
  .block.crosssell,
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(:first-child):last-of-type,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-form-field-column-2 .fieldset .field,
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field,
  .form-create-return .fieldset .field,
  .form.send.friend .fieldset .field {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .abs-form-field-column-2 .fieldset .field + .fieldset,
  .form-giftregistry-share .fieldset .field + .fieldset,
  .form-giftregistry-edit .fieldset .field + .fieldset,
  .form-create-return .fieldset .field + .fieldset,
  .form.send.friend .fieldset .field + .fieldset {
    clear: both;
  }
  .abs-form-field-column-2 .fieldset .field:nth-last-child(1),
  .abs-form-field-column-2 .fieldset .field:nth-last-child(2),
  .form-giftregistry-share .fieldset .field:nth-last-child(1),
  .form-giftregistry-share .fieldset .field:nth-last-child(2),
  .form-giftregistry-edit .fieldset .field:nth-last-child(1),
  .form-giftregistry-edit .fieldset .field:nth-last-child(2),
  .form-create-return .fieldset .field:nth-last-child(1),
  .form-create-return .fieldset .field:nth-last-child(2),
  .form.send.friend .fieldset .field:nth-last-child(1),
  .form.send.friend .fieldset .field:nth-last-child(2) {
    margin-bottom: 0;
  }
  .abs-form-field-column-2 .fieldset .field .field,
  .form-giftregistry-share .fieldset .field .field,
  .form-giftregistry-edit .fieldset .field .field,
  .form-create-return .fieldset .field .field,
  .form.send.friend .fieldset .field .field {
    padding: 0;
    width: 100%;
  }
  .abs-form-field-revert-column-1 {
    width: 100%;
  }
  .abs-forms-general-desktop,
  .form.search.advanced,
  .form-giftcard-redeem,
  .form-giftregistry-create {
    max-width: 500px;
  }
  .abs-forms-general-desktop .legend,
  .form.search.advanced .legend,
  .form-giftcard-redeem .legend,
  .form-giftregistry-create .legend {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-forms-general-desktop .legend + br,
  .form.search.advanced .legend + br,
  .form-giftcard-redeem .legend + br,
  .form-giftregistry-create .legend + br {
    display: none;
  }
  .abs-revert-side-paddings,
  .checkout-cart-index .page-title-wrapper,
  .cart-summary .block .content,
  .cart-empty {
    padding-left: 0;
    padding-right: 0;
  }
  .abs-account-block-font-size,
  .block-addresses-list address,
  .box-billing-address .box-content,
  .box-shipping-address .box-content,
  .box-address-billing .box-content,
  .box-address-shipping .box-content,
  .box-information .box-content,
  .block-balance-giftcard .block-content,
  .block-reviews-dashboard .product-name {
    font-size: 1.6rem;
  }
  .abs-account-table-margin-desktop,
  .table-wrapper.balance-history,
  .table-wrapper.reward-history,
  .table-wrapper.orders-recent {
    margin-top: -25px;
  }
  .abs-action-print,
  .order-actions-toolbar .action.print {
    display: inline-block;
    text-decoration: none;
  }
  .abs-action-print:before,
  .order-actions-toolbar .action.print:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 16px;
    color: inherit;
    content: '\e624';
    font-family: 'luma-icons';
    margin: 0 4px 0 0;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .abs-action-print:hover,
  .order-actions-toolbar .action.print:hover {
    text-decoration: underline;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-status-desktop,
  .return-status,
  .order-status {
    margin-top: 6px;
    padding: 5px 10px;
  }
  .abs-title-orders-desktop .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-returns .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-view .page-main .page-title-wrapper .order-date,
  .account .page-main .page-title-wrapper .order-date,
  [class^='sales-guest-'] .page-main .page-title-wrapper .order-date,
  .sales-guest-view .page-main .page-title-wrapper .order-date {
    margin: -14px 0 18px;
  }
  .abs-table-bordered-desktop {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > tbody > tr > th,
  .abs-table-bordered-desktop > tfoot > tr > th,
  .abs-table-bordered-desktop > thead > tr > td,
  .abs-table-bordered-desktop > tbody > tr > td,
  .abs-table-bordered-desktop > tfoot > tr > td {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > thead > tr > td {
    border-bottom: 1px solid #ccc;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    position: relative;
  }
  .abs-pager-toolbar .toolbar-amount,
  .abs-pager-toolbar .limiter,
  .account .toolbar .toolbar-amount,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .toolbar-amount,
  .toolbar-wishlist-results .limiter {
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .limiter,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter {
    display: inline-block;
    float: right;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    line-height: 30px;
    padding: 0;
  }
  .abs-pager-toolbar .pages,
  .account .toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 4%;
    position: relative;
  }
  .abs-discount-block-desktop .block > .title,
  .paypal-review-discount .block > .title,
  .cart-discount .block > .title {
    border: 0;
    padding: 0 0 10px;
  }
  .abs-discount-block-desktop .block > .title strong,
  .paypal-review-discount .block > .title strong,
  .cart-discount .block > .title strong {
    font-size: 1.6rem;
  }
  .abs-discount-block-desktop .block .content,
  .paypal-review-discount .block .content,
  .cart-discount .block .content {
    padding: 0 0 20px;
  }
  .abs-discount-block-desktop .actions-toolbar .secondary,
  .paypal-review-discount .actions-toolbar .secondary,
  .cart-discount .actions-toolbar .secondary {
    bottom: -30px;
    left: 0;
    position: absolute;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .navigation,
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 58.33333333%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 79.16666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 79.16666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #f0f0f0;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #575757;
    line-height: 47px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #333;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 3px;
    color: #333;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 400;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #fff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #fff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #ccc;
    color: #ccc;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #e8e8e8;
    color: #333;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 0 3px;
    color: #333;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e608';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .legend {
    border-bottom: 1px solid #c5c5c5;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
    border-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 -1px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 400;
    line-height: 40px;
    font-size: 1.4rem;
    color: #6d6d6d;
    text-decoration: none;
    background: #f6f6f6;
    border: 1px solid #ccc;
    border-bottom: none;
    height: 40px;
    padding: 1px 35px 1px 35px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #6d6d6d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #6d6d6d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #333;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: #ffffff;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: #ffffff;
    color: #333;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 2px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 43px;
    padding: 35px 35px 35px 35px;
    border: 1px solid #ccc;
  }
  .product.data.items .item.title a:after {
    display: none;
  }
  .actions-toolbar {
    text-align: left;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 15px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .popup-content .fieldset .actions-toolbar .secondary {
    display: inline-block;
    float: none;
  }
  .popup-content .fieldset .actions-toolbar .action.cancel {
    margin-top: 6px;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
  .amrelated-cart-bundle {
    padding: 0;
    width: 73%;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper {
    position: unset;
    flex-wrap: nowrap;
    margin-top: 15px;
    padding-top: 0;
    background: #fff;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-pack-item:not(:last-child) {
    border-bottom: none;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-photo-container .amrelated-discount {
    font-size: 12px;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-photo-container .amrelated-discount .price {
    font-weight: 400;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-plus,
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-equal {
    display: flex;
    padding: 10px 5px;
    text-align: center;
    font-size: 50px;
    line-height: 100px;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-plus {
    color: #1979c3;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-equal {
    color: #e9f6ff;
  }
  .amrelated-pack-wrapper .amrelated-title:after {
    content: none !important;
  }
  .amrelated-content-wrapper .amrelated-pack-list {
    max-width: 79%;
    width: unset;
  }
  .amrelated-content-wrapper .amrelated-pack-list .amrelated-pack-item.-main {
    display: block;
  }
  .amrelated-pack-list.-wide {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items {
    flex-wrap: nowrap;
    justify-content: space-around;
  }
  .amrelated-pack-list.-narrow .amrelated-plus,
  .amrelated-pack-list.-narrow + .amrelated-equal {
    display: block;
    line-height: 100px;
  }
  .amrelated-equal.-second-row {
    align-self: center;
    margin-bottom: 18px;
  }
  .amrelated-pack-list.-second-row {
    border-right: 3px solid #e9f6ff;
  }
  .amrelated-pack-item .amrelated-details {
    display: block;
  }
  .amrelated-pack-item.-wide,
  .amrelated-pack-item.-narrow {
    padding: 10px;
    min-width: 120px;
    width: 14%;
    text-align: center;
  }
  .amrelated-pack-item.-wide .amrelated-info,
  .amrelated-pack-item.-narrow .amrelated-info {
    display: block;
  }
  .amrelated-pack-item.-wide .amrelated-details,
  .amrelated-pack-item.-narrow .amrelated-details {
    margin-left: 0;
  }
  .amrelated-pack-item.-wide .amrelated-photo-container,
  .amrelated-pack-item.-narrow .amrelated-photo-container {
    margin: 0 auto 10px;
  }
  .amrelated-pack-item.-main {
    background: transparent;
  }
  .amrelated-content-wrapper .amrelated-summary-content {
    position: relative;
    display: block;
    margin-top: 16px;
    padding: 0;
    width: 180px;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-discount {
    right: unset;
    padding: 5px;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-price-wrapper {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    height: 95px;
    border: 3px dashed #e9f6ff;
    border-bottom: none;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-tocart-wrapper {
    margin-right: 0;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-tocart-wrapper .action {
    width: 100%;
  }
  .amrelated-summary-content.-second-row {
    align-self: center;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items {
    position: relative;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 0;
    height: 100%;
    background: #e9f6ff;
    box-shadow: 0 20px 0 -10px #f9f9f9;
    opacity: 1;
    transition: all 0.3s ease;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-background.rtl {
    right: 0;
    left: unset;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-info,
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-plus,
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-pack-item {
    z-index: 2;
  }
  .amrelated-pack-item.-wide {
    padding: 30px 0;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items.-selected .amrelated-background {
    width: 100%;
    opacity: 1;
  }
  .amrelated-popup-container .amrelated-bundle-popup {
    max-width: initial;
    min-width: 700px;
  }
  .amrelated-popup-container .amrelated-bundle-popup .amrelated-product-info {
    margin-top: 60px;
    min-height: 450px;
  }
  .amrelated-product-info .amrelated-info.-top {
    float: right;
    margin: 0;
    width: 50%;
  }
  .amrelated-product-info .amrelated-info.-bottom {
    clear: both;
    float: right;
    margin-bottom: 20px;
    width: 50%;
  }
  .amrelated-product-info .amrelated-info.-top,
  .amrelated-product-info .amrelated-info.-bottom {
    box-sizing: border-box;
    padding: 0 20px 0 0;
  }
  .amrelated-info.-top .amrelated-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .amrelated-info.-top .product-reviews-summary {
    margin-bottom: 10px;
  }
  .amrelated-info.-top .product-reviews-summary .action {
    margin-left: 10px;
  }
  .amrelated-info.-bottom .amrelated-description {
    font-size: 14px;
    margin: 5px 0 0;
  }
  .amrelated-info.-bottom .product-add-form {
    margin: 0;
    padding: 0;
  }
  .amrelated-product-info .amrelated-image-container {
    border: 0;
    box-sizing: border-box;
    left: 0;
    margin: 0;
    padding: 0 25px;
    position: absolute;
    width: 50%;
  }
  .amrelated-product-info .amrelated-image-container > .product-item-photo {
    border: 0;
    width: 100%;
  }
  .amrelated-product-info .amrelated-image-container .product-image-container {
    border: 1px solid #b2b2b2;
  }
  .amrelated-products-block {
    margin-left: 27px;
    margin-right: 27px;
  }
  .action.compare {
    padding: 0 10px;
  }
  .amsearch-wrapper-block {
    order: initial;
    width: auto;
  }
  .page-header .amsearch-wrapper-block {
    float: right;
    margin: 0;
    padding: 0;
    width: auto;
  }
  .page-header .amsearch-wrapper-block:before {
    content: none;
  }
  .amsearch-loader-block {
    right: 30px;
  }
  .amsearch-emptysearch-cms {
    padding: 40px;
  }
  .amsearch-emptysearch-cms .amsearch-content > .amsearch-title {
    font-size: 54px;
  }
  .amsearch-emptysearch-cms .amsearch-text {
    font-size: 22px;
  }
  .amsearch-button.-close:hover,
  .amsearch-button.-close:hover {
    filter: brightness(0%);
  }
  .amsearch-slider-section {
    max-width: 575px;
  }
  .amsearch-slider-section.slick-slider {
    padding: 0 40px;
  }
  .amsearch-products-section {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
  }
  .amsearch-products-section:not(:first-child) {
    border-color: var(--amsearch-color-border, #ccc);
    border-left: 1px solid;
  }
  .amsearch-products-section .amsearch-description {
    width: auto;
  }
  .amsearch-products-section.-list .amsearch-image {
    max-width: 125px;
  }
  .amsearch-products-section.-list .product-item-actions {
    align-content: flex-start;
    display: flex;
  }
  .amsearch-products-section.-list .amsearch-description {
    padding-left: 20px;
  }
  .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(100% / 3);
  }
  .amsearch-result-tabs .title:hover:before,
  .amsearch-result-tabs .title.active:before {
    background: #fff;
    bottom: -1px;
    content: '';
    height: 2px;
    left: 1px;
    position: absolute;
    width: calc(100% - 2px);
  }
  .amsearch-result-tabs.product.data.items .item.title.active .switch {
    padding-bottom: 1px;
  }
  .amsearch-result-section {
    min-width: 100%;
    width: inherit;
  }
  .amsearch-result-section:not(.-small) {
    flex-wrap: nowrap;
  }
  .amsearch-result-block.-preload {
    flex-wrap: nowrap;
  }
  .amsearch-result-block.-preload .amsearch-products-list:not(:first-child) {
    border-left: 1px solid #ccc;
    width: calc(100% - 283px);
  }
  .page-header:not(.amsearch-full-width) .amsearch-input-wrapper.-dynamic-width {
    width: 100%;
  }
  .page-header .amsearch-input-wrapper {
    min-width: 283px;
    width: auto;
  }
  .amsearch-item-container {
    padding: 0 0 25px;
  }
  .amsearch-item-container .amsearch-link {
    padding: 5px 20px;
  }
  .amsearch-items-section {
    padding: 25px 0;
  }
  .amsearch-items-section:not(:first-child:last-child) {
    max-width: 283px;
    width: 100%;
  }
  .amsearch-full_width-title {
    display: none;
  }
  .page-header.amsearch-full-width.-opened .ammenu-logo,
  .page-header.amsearch-full-width.-opened .logo {
    margin: 0 auto 0 4vw;
    z-index: 11;
  }
  .page-header.amsearch-full-width.-opened .amsearch-wrapper-block {
    z-index: 10;
  }
  .page-header.amsearch-full-width.-opened .amsearch-button.-full-close {
    right: 4vw;
  }
  .page-header.amsearch-full-width .amsearch-input-wrapper {
    flex-grow: initial;
  }
  .page-header.amsearch-full-width .amsearch-button.-search {
    flex-grow: initial;
  }
  .page-header.amsearch-full-width .amsearch-wrapper-block {
    background: #fff;
    display: inline-block;
  }
  .page-header.amsearch-full-width:not(.-opened) .amsearch-wrapper-block {
    position: static;
    width: auto;
  }
  .page-header.amsearch-full-width .amsearch-form-block {
    height: 100%;
    justify-content: center;
    padding: 0;
  }
  .page-header.amsearch-full-width .amsearch-result-section {
    padding: 0 calc(4vw - 15px);
  }
  .page-header.amsearch-full-width .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(100% / 4);
  }
  .page-header.amsearch-full-width .amsearch-products-section.-list .amsearch-item {
    width: 50%;
  }
  .page-header.amsearch-full-width .amsearch-button.-full-close {
    margin: auto;
  }
  .page-header .amsearch-button.-loupe-trigger {
    display: none;
  }
  .amsearch-search-page.page-products .columns {
    z-index: 0;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #ccc;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .table-paypal-review-items .col.price,
  .paypal-review .table-paypal-review-items .col.qty {
    text-align: center;
  }
  .paypal-review .table-paypal-review-items .col.item {
    width: 60%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .paypal-review-discount {
    border-top: 1px solid #ccc;
  }
  .paypal-review-discount .block {
    margin-bottom: 15px;
  }
  .paypal-review-discount .block.giftcard.active {
    padding-bottom: 40px;
  }
  .paypal-review-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .paypal-review-discount .block .content {
    padding-bottom: 0;
  }
  .order-review-form .actions-toolbar > .primary {
    float: right;
  }
  .order-review-form .action.primary {
    margin-right: 0;
  }
  .block-cart-failed .secondary .action {
    margin: 0;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-actions .action.primary.customize {
    width: auto;
  }
  .bundle-options-container .legend.title {
    font-size: 40px;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    margin-top: 66px;
    padding: 10px 20px;
    position: relative;
    width: 40%;
  }
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper,
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper > .price {
    color: #575757;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee {
    color: #575757;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee .price {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .bundle-options-container .block-bundle-summary .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .bundle-options-container .block-bundle-summary .box-tocart .action.primary {
    margin-right: 1%;
    width: auto;
  }
  .bundle-options-container .block-bundle-summary .product-addto-links {
    text-align: left;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  .page-products .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 4%) / 3);
  }
  .page-products .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    width: 25%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    width: 50%;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .toolbar-amount {
    display: block;
    float: left;
    position: static;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
    margin-bottom: 0;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    background-color: #f0f0f0;
    box-shadow: inset 0 1px 0 0 #ffffff, inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    color: #5e5e5e;
    border: 1px solid #ccc;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-label + .modes-mode {
    border-radius: 3px 0 0 3px;
  }
  .modes-mode:hover {
    color: #5e5e5e;
    background: #ebebeb;
  }
  .modes-mode:last-child {
    border-radius: 0 3px 3px 0;
    border-right: 1px solid #ccc;
  }
  .modes-mode.active {
    box-shadow: inset 0 1px 0 0 rgba(204, 204, 204, 0.8), inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    background: #dedede;
    color: #9e9e9e;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .page-products .sorter {
    position: static;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: right;
  }
  .product-info-main .page-title-wrapper h1 {
    margin-bottom: 15px;
  }
  .product-info-main .product-add-form {
    padding-top: 20px;
  }
  .box-tocart .action.tocart {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .product-social-links {
    text-align: left;
  }
  .product-options-bottom .price-box .price-container,
  .product-info-price .price-box .price-container {
    font-size: 21px;
  }
  .product-options-bottom .price-box .price-container .price,
  .product-info-price .price-box .price-container .price {
    font-size: 36px;
    line-height: 36px;
  }
  .product-options-bottom .price-box .price-including-tax + .price-excluding-tax .price,
  .product-info-price .price-box .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 25px;
  }
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column .product.media {
    width: 57%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .product-add-form .product-options-wrapper .field .control {
    width: 80%;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .catalog-category-view.page-layout-1column .column.main {
    min-height: inherit;
  }
  .compare.wrapper {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none none;
  }
  .compare.wrapper .action.compare {
    line-height: 32px;
    color: #333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:visited {
    color: #333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:hover {
    color: #333;
    text-decoration: underline;
  }
  .compare.wrapper .action.compare:active {
    color: #333;
    text-decoration: underline;
  }
  .compare.wrapper .counter.qty {
    color: #7d7d7d;
  }
  .compare.wrapper .counter.qty:before {
    content: '(';
  }
  .compare.wrapper .counter.qty:after {
    content: ')';
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #575757;
  }
  .block-search input:-moz-placeholder {
    color: #575757;
  }
  .block-search input::-moz-placeholder {
    color: #575757;
  }
  .block-search input:-ms-input-placeholder {
    color: #575757;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 32px;
    color: #757575;
    content: '\e615';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: #333;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:focus:before {
    color: #333;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .checkout-cart-index .page-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cart-container .form-cart .actions.main {
    text-align: right;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    width: 25%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 1px 20px 25px;
    position: relative;
  }
  .cart-summary > .title {
    display: block;
  }
  .cart-summary .fieldset .actions-toolbar {
    margin-left: 0;
  }
  .cart-summary .fieldset .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block > .title {
    padding-left: 0;
  }
  .cart-summary .block > .title:after {
    right: 3px;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart-summary .checkout-methods-items {
    padding: 0;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper tbody td {
    padding-top: 20px;
  }
  .cart.table-wrapper .item .col.item {
    padding: 20px 8px 20px 0;
  }
  .cart.table-wrapper .item-actions td {
    padding: 0;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    padding-bottom: 35px;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart-products-toolbar {
    margin: 2px 0 0;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .cart-discount {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    border: 0;
    box-sizing: border-box;
    padding-right: 4%;
  }
  .cart-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .cart-discount .block.discount {
    width: auto;
  }
  .cart-discount .block .actions-toolbar {
    width: auto;
  }
  .block.crosssell {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding: 0 4% 0 0;
  }
  .block.crosssell .products-grid .product-item {
    width: 25%;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    width: 390px;
  }
  .minilist .action.delete:before,
  .minicart-wrapper .action.edit:before {
    font-size: 16px;
    line-height: inherit;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 23px 0 0;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 500px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 20px;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .checkout-shipping-method .actions-toolbar .action.primary.button {
    margin-top: 2px;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 500px;
  }
  .opc-wrapper .form-login {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 33.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #fff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear 0.1s, visibility 0s linear 0.1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear 0.1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 33.33333333%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 2.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 768px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .login-container .block.login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block.login .actions-toolbar > .secondary {
    float: left;
  }
  .login-container .fieldset > .field > .control {
    width: 80%;
  }
  .form-create-account .fieldset-fullname .fields {
    display: table;
    width: 100%;
  }
  .form-create-account .fieldset-fullname .fields .field {
    display: table-cell;
  }
  .form-create-account .fieldset-fullname .fields .field + .field {
    padding-left: 10px;
  }
  .form-create-account .fieldset-fullname .field-name-prefix,
  .form-create-account .fieldset-fullname .field-name-suffix {
    width: 50px;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .account.page-layout-2columns-left .sidebar-main .block {
    margin-bottom: 0;
  }
  .account .data.table {
    margin-bottom: 0;
  }
  .account .data.table .col.actions {
    white-space: nowrap;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 4%;
  }
  .form-edit-account .fieldset .fieldset {
    margin-bottom: 20px;
    width: 100%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .storecredit .block-balance-history {
    width: 100%;
  }
  .table-balance-history .col {
    width: 25%;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final {
    font-size: 21px;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final .price {
    font-size: 36px;
    line-height: 36px;
  }
  .page-product-giftcard .product-info-main .product-info-stock-sku {
    padding-bottom: 0;
  }
  .page-product-giftcard .product-info-main .product-reviews-summary {
    float: none;
  }
  .page-product-giftcard .product-add-form {
    margin-top: -20px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) {
    margin: 0 0 20px;
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .page-product-giftcard .product-add-form .field:not(.text):last-child {
    margin-bottom: 0;
  }
  .page-product-giftcard .product-add-form .field:not(.text) + .fieldset {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    font-weight: 600;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label + br {
    display: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .choice input {
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:before,
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    content: '';
    display: table;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group .field {
    box-sizing: border-box;
    float: left;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-2 .field {
    width: 50% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-3 .field {
    width: 33.3% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-4 .field {
    width: 25% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-5 .field {
    width: 20% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    width: 100%;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon textarea,
  .page-product-giftcard .product-add-form .field:not(.text) .addon select,
  .page-product-giftcard .product-add-form .field:not(.text) .addon input {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    display: inline-block;
    margin: 0;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #c2c2c2;
    border-radius: 1px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    height: 32px;
    line-height: 1.42857143;
    padding: 0 9px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:disabled,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:disabled {
    opacity: 0.5;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-moz-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-moz-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-webkit-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-webkit-input-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:-ms-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:-ms-input-placeholder {
    color: #575757;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore {
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .additional {
    margin-top: 10px;
  }
  .page-product-giftcard .product-add-form .field:not(.text).required > .label:after,
  .page-product-giftcard .product-add-form .field:not(.text)._required > .label:after {
    content: '*';
    color: #e02b27;
    font-size: 1.2rem;
    margin: 0 0 0 5px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note {
    font-size: 1.2rem;
    margin: 3px 0 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: 12px;
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(odd) {
    padding-right: 25px;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(even) {
    padding-right: 0;
  }
  .page-product-giftcard .product-add-form .product-options-wrapper .field:not(.date) > .control {
    width: auto;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
    margin-right: 0;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .gift-item-block .title {
    font-size: 1.6rem;
    padding: 20px 0;
  }
  .item-gift td {
    padding-left: 0;
    padding-right: 0;
  }
  .cart.table-wrapper .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .cart .action-gift {
    float: left;
  }
  .cart-container .cart-gift-item {
    margin-bottom: 20px;
  }
  .cart-container .cart-gift-item .gift-options,
  .cart-container .cart-gift-item .gift-summary {
    padding-bottom: 20px;
  }
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field {
    width: 45%;
  }
  .form-giftregistry-edit .fieldset.shipping_address .fieldset {
    margin-top: 20px;
  }
  .table-giftregistry .col.create {
    white-space: nowrap;
  }
  .table-giftregistry .col.message {
    width: 40%;
  }
  .table-giftregistry .col.actions {
    width: 30%;
  }
  .table-giftregistry-items .col.note {
    width: 30%;
  }
  .account .data.table.table-giftregistry-items > thead > tr > th,
  .account .data.table.table-giftregistry-items > tbody > tr > th,
  .account .data.table.table-giftregistry-items > tfoot > tr > th,
  .account .data.table.table-giftregistry-items > thead > tr > td,
  .account .data.table.table-giftregistry-items > tbody > tr > td,
  .account .data.table.table-giftregistry-items > tfoot > tr > td {
    border-top: 1px solid #ccc;
  }
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > th,
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > td {
    border-top: 0;
  }
  .account .data.table.table-giftregistry-items > tbody + tbody {
    border-top: 1px solid #ccc;
  }
  .account .data.table.table-giftregistry-items th {
    border-bottom: 0;
  }
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > td,
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > th {
    background: none;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset .field.name,
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
    margin-bottom: auto;
  }
  .form-giftregistry-search .fieldset .field.name + .fieldset,
  .form-giftregistry-search .fieldset .field.lastname + .fieldset {
    clear: both;
  }
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0;
  }
  .block-giftregistry-shared-items .item {
    border-bottom: 1px solid #ccc;
    border-top: 0;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .gift-options-cart-item .gift-summary .regular-price,
  .cart-gift-item .gift-summary .regular-price {
    white-space: nowrap;
  }
  .gift-options-cart-item .gift-wrapping-name,
  .cart-gift-item .gift-wrapping-name {
    padding-right: 20px;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .page-product-grouped .product-info-price {
    float: none;
  }
  .page-product-grouped .minimal-price {
    margin-top: -8px;
  }
  .box-tocart .action.instant-purchase {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .table-invitations .col {
    width: 50%;
  }
  .filter.block {
    margin-bottom: 40px;
  }
  .filter-title {
    display: none;
  }
  .filter-content .item {
    margin: 10px 0;
  }
  .filter-actions {
    margin-bottom: 30px;
  }
  .filter.active .filter-options,
  .filter-options {
    background: transparent;
    clear: both;
    display: block;
    overflow: initial;
    position: static;
  }
  .filter-subtitle {
    display: block;
    position: static;
  }
  .page-layout-1column .toolbar-products {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .page-layout-1column .products ~ .toolbar-products {
    position: static;
  }
  .page-layout-1column.page-with-filter .column.main {
    padding-top: 45px;
    position: relative;
    z-index: 1;
  }
  .page-layout-1column .filter.block {
    border-top: 1px solid #ccc;
  }
  .page-layout-1column .filter-content {
    margin-top: 10px;
  }
  .page-layout-1column .filter-subtitle {
    display: none;
  }
  .page-layout-1column .filter-options-item {
    border: 0;
    display: inline-block;
    margin-right: 25px;
    position: relative;
  }
  .page-layout-1column .filter-options-item.active {
    z-index: 2;
  }
  .page-layout-1column .filter-options-item.active .filter-options-content {
    visibility: visible;
  }
  .page-layout-1column .filter-options-item.active:hover {
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after,
  .page-layout-1column .filter-options-item.active:before {
    border: 8px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #000;
    bottom: -1px;
    content: '';
    display: block;
    left: 5px;
    position: absolute;
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after {
    border-bottom-color: #fff;
    margin-top: 2px;
    z-index: 4;
  }
  .page-layout-1column .filter-options-title {
    padding: 0 20px 0 0;
  }
  .page-layout-1column .filter-options-title:after {
    right: 2px;
    top: 3px;
    z-index: 3;
  }
  .page-layout-1column .filter-options-content {
    background: #fff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -ms-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    border: 1px solid #ccc;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 180px;
    z-index: 2;
  }
  .page-layout-1column .filter-options-content .item {
    margin: 0;
    padding: 5px;
  }
  .page-layout-1column .filter-options-content .item a {
    margin-left: 0;
  }
  .page-layout-1column .filter-options-content .item:hover {
    background-color: #e8e8e8;
  }
  .page-layout-1column .filter-current {
    display: inline;
    line-height: 35px;
  }
  .page-layout-1column .filter-current-subtitle {
    color: #7d7d7d;
    display: inline;
    font-size: 14px;
    font-weight: normal;
    padding: 0;
  }
  .page-layout-1column .filter-current-subtitle:after {
    content: ':';
  }
  .page-layout-1column .filter-current .item,
  .page-layout-1column .filter-current .items {
    display: inline;
  }
  .page-layout-1column .filter-current .item {
    margin-right: 25px;
    white-space: nowrap;
  }
  .page-layout-1column .filter-current .action.remove {
    line-height: normal;
  }
  .page-layout-1column .filter-actions {
    display: inline;
    white-space: nowrap;
  }
  .page-layout-1column .filter-actions ~ .filter-options {
    margin-top: 25px;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #ff5501;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .form.subscribe > .field,
  .block.newsletter .form.subscribe > .actions {
    float: left;
  }
  .product-reviews-summary {
    margin-bottom: 15px;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .product-reviews-summary .reviews-actions {
    font-size: 14px;
    margin-top: 3px;
  }
  .form-create-return .fieldset .field {
    width: 45%;
  }
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .order-links .item {
    float: left;
    margin: 0 -1px 0 0;
  }
  .order-links .item a {
    padding: 1px 20px;
  }
  .order-links .item strong {
    border-bottom: 0;
    margin-bottom: -1px;
    padding: 1px 20px 2px 20px;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-order-details-comments {
    margin: 0 0 60px;
  }
  .block-order-details-comments .comment-date {
    clear: left;
    float: left;
    margin-right: 50px;
    max-width: 90px;
  }
  .block-order-details-comments .comment-content {
    overflow: hidden;
  }
  .order-details-items {
    margin-top: -1px;
    padding: 25px;
  }
  .order-details-items .col.price {
    text-align: center;
  }
  .order-details-items .col.subtotal {
    text-align: right;
  }
  .order-details-items tbody td {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .order-details-items tfoot .amount,
  .order-details-items tfoot .mark {
    text-align: right;
  }
  .order-details-items.ordered .order-title {
    display: none;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .toolbar-amount {
    position: relative;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .table-order-items tbody .col.label,
  .table-order-items tbody .col.value {
    padding-left: 0;
  }
  .table-order-items.invoice .col.qty,
  .table-order-items.shipment .col.qty {
    text-align: center;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .form.send.friend {
    width: 60%;
  }
  .form.send.friend .fieldset .field {
    width: 45%;
  }
  .form.send.friend .fieldset .field.text {
    width: 90%;
  }
  html,
  body {
    height: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper {
    border-bottom: 1px solid #e8e8e8;
    background-color: #6e716e;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    float: right;
    margin-left: 15px;
    margin-right: -6px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .customer-welcome {
    display: inline-block;
    position: relative;
  }
  .customer-welcome:before,
  .customer-welcome:after {
    content: '';
    display: table;
  }
  .customer-welcome:after {
    clear: both;
  }
  .customer-welcome .action.switch {
    padding: 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch:active:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active {
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch.active > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch.active:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e621';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch.active:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active:active:after {
    color: inherit;
  }
  .customer-welcome ul {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #fff;
    border: 1px solid #bbb;
    margin-top: 4px;
    min-width: 100%;
    z-index: 101;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  }
  .customer-welcome ul li {
    margin: 0;
    padding: 0;
  }
  .customer-welcome ul li:hover {
    background: #e8e8e8;
    cursor: pointer;
  }
  .customer-welcome ul:before,
  .customer-welcome ul:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }
  .customer-welcome ul:before {
    border: 6px solid;
    border-color: transparent transparent #fff transparent;
    z-index: 99;
  }
  .customer-welcome ul:after {
    border: 7px solid;
    border-color: transparent transparent #bbb transparent;
    z-index: 98;
  }
  .customer-welcome ul:before {
    right: 10px;
    top: -12px;
  }
  .customer-welcome ul:after {
    right: 9px;
    top: -14px;
  }
  .customer-welcome.active {
    overflow: visible;
  }
  .customer-welcome.active ul {
    display: block;
  }
  .customer-welcome li a {
    color: #333;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    padding: 8px;
  }
  .customer-welcome li a:visited {
    color: #333;
    text-decoration: none;
  }
  .customer-welcome li a:hover {
    color: #333;
    text-decoration: none;
  }
  .customer-welcome li a:active {
    color: #333;
    text-decoration: none;
  }
  .customer-welcome .customer-name {
    cursor: pointer;
  }
  .customer-welcome .customer-menu {
    display: none;
  }
  .customer-welcome .action.switch {
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    color: #fff;
  }
  .customer-welcome .action.switch:focus,
  .customer-welcome .action.switch:active {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch:hover {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch.disabled,
  .customer-welcome .action.switch[disabled],
  fieldset[disabled] .customer-welcome .action.switch {
    pointer-events: none;
    opacity: 0.5;
  }
  .customer-welcome .header.links {
    min-width: 175px;
    z-index: 1000;
  }
  .customer-welcome.active .action.switch:after {
    content: '\e621';
  }
  .customer-welcome.active .customer-menu {
    display: block;
  }
  .customer-welcome .greet {
    display: none;
  }
  .header.panel > .header.links {
    margin: 0;
    padding: 0;
    list-style: none none;
    float: right;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li > a {
    display: inline-block;
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    color: #fff;
    padding-left: 5px;
  }
  .header.panel > .header.links > .authorization-link:after {
    content: attr(data-label);
    display: inline-block;
    margin: 0 -5px 0 5px;
  }
  .header.panel > .header.links > .authorization-link:last-child:after {
    display: none;
  }
  .header.panel > .header.links > .customer-welcome + .authorization-link {
    display: none;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .logo {
    margin: -8px auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .page-wrapper {
    margin: 0;
    position: relative;
    transition: margin 0.3s ease-out 0s;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .page-footer {
    background: #f4f4f4;
    margin-top: auto;
    padding-bottom: 25px;
  }
  .page-footer .switcher .options ul.dropdown {
    bottom: -10px;
    left: 100%;
    margin: 0 0 0 20px;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before,
  .page-footer .switcher .options ul.dropdown:after {
    bottom: 13px;
    left: auto;
    right: 100%;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before {
    border-color: transparent #fff transparent transparent;
  }
  .page-footer .switcher .options ul.dropdown:after {
    border-color: transparent #bbb transparent transparent;
    margin: 0 0 -1px -1px;
  }
  .footer.content {
    border-top: none;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content ul {
    padding-right: 50px;
  }
  .footer.content .switcher.store {
    display: block;
    margin: 0;
  }
  .footer.content .links {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .footer.content .links li {
    background: transparent;
    border: none;
    font-size: 14px;
    margin: 0 0 8px;
    padding: 0;
  }
  .footer.content .links a,
  .footer.content .links strong {
    display: inline;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .products-grid.wishlist .product-item-info:hover .product-item-inner {
    display: block;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item-actions > * {
    display: inline-block;
    margin-bottom: 7px;
    margin-top: 7px;
  }
  .products-grid.wishlist .product-item .fieldset {
    display: table;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty,
  .products-grid.wishlist .product-item .fieldset .product-item-actions {
    display: table-cell;
    vertical-align: bottom;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .products-grid.wishlist .product-item .tocart {
    width: auto;
  }
  .wishlist-index-index .product-item-info {
    width: auto;
  }
  .wishlist-index-index .product-item-inner {
    background: #fff;
    border: 1px solid #bbb;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.3);
    border-top: none;
    left: 0;
    margin: 9px 0 0 -1px;
    padding: 0 9px 9px;
    position: absolute;
    right: -1px;
    z-index: 2;
  }
  .wishlist-index-index .product-item-inner .comment-box {
    margin-top: -18px;
  }
  .block.widget .products-grid .product-item {
    width: 33.33333333%;
  }
  .sidebar .block.widget .products-grid .product-item {
    margin-left: 0;
    width: 100%;
  }
  .sidebar .block.widget .products-grid .product-item .actions-secondary {
    display: block;
    padding: 10px 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 6%) / 4);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
}
@media all and (max-width: 1023px), print {
  .field-tooltip .field-tooltip-content {
    right: -10px;
    top: 40px;
    left: auto;
  }
}
@media all and (min-width: 1440px), print {
  .amrelated-pack-list.-wide .amrelated-pack-item.-main {
    display: flex;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items {
    position: relative;
    flex-wrap: nowrap;
    max-width: 66%;
    width: unset;
  }
  .amrelated-pack-list.-wide .amrelated-plus,
  .amrelated-pack-list.-wide .amrelated-equal {
    line-height: unset;
  }
  .amrelated-pack-item.-wide {
    padding: 30px;
    width: 270px;
  }
  .amrelated-pack-item.-wide.-main {
    padding-left: 0;
    width: 270px;
  }
  .amrelated-pack-item.-wide .amrelated-info {
    display: flex;
    text-align: left;
  }
  .amrelated-pack-item.-wide .amrelated-details {
    margin-left: 20px;
  }
  .amrelated-pack-item.-wide .amrelated-photo-container {
    margin: 0;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: none;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .sidebar .product-items .product-item-details {
    margin-left: 85px;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_grid12.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Base%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_slick-theme.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Mostviewed%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_animations.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_ProductVideo%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_tooltip.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_utilities.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_order-summary.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Rma%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_responsive.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_extends.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_GiftRegistry%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_AdvancedCheckout%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Customer%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_CustomerBalance%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Paypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_review.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_cart.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Review%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_SendFriend%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_toolbar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_CatalogSearch%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_collapsible_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_GiftWrapping%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_MultipleWishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Sales%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Bundle%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_GiftMessage%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_checkout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_forms.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_GiftCardAccount%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Reward%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_icons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_variables.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_theme.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_estimated-total.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2F_widgets.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_tables.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2Fvariables%5C%2F_icons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_forms.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_sections.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_sections.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_actions-toolbar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_actions-toolbar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_popups.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Fcomponents%5C%2F_modals_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Mostviewed%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Mostviewed%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_pack.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Mostviewed%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_popup.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_buttons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_product-slider.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_product-list.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_tab-item.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_results.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_preload.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_search-input.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_category-item.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ftypes%5C%2F_full-width.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FAmasty_Xsearch%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fpages%5C%2F_search-page.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_CatalogEvent%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Contact%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_listings.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_buttons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_minicart.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_modals.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_shipping.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_sidebar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_authentication.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_payments.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_payment-options.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Downloadable%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_GiftCard%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_GroupedProduct%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_InstantPurchase%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Invitation%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_LayeredNavigation%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Newsletter%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_dropdowns.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Vault%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Feventdisplay%5C%2Fen_CA%5C%2FMagento_Wishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BAASA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAACA%3BAAGA%3BAACA%3B%3BEAGC%2CeAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3B%3BAAID%3BEAAY%2CYAAA%3B%3BAACZ%3BEAAY%2CaAAA%3B%3BAACZ%3BEAAY%2CUAAA%3B%3BAACZ%3BEAAY%2CaAAA%3B%3BAACZ%3BEAAY%2CaAAA%3B%3BAACZ%3BEAAY%2CUAAA%3B%3BAACZ%3BEAAY%2CaAAA%3B%3BAACZ%3BEAAY%2CaAAA%3B%3BAACZ%3BEAAY%2CUAAA%3B%3BAACZ%3BEAAa%2CaAAA%3B%3BAACb%3BEAAa%2CaAAA%3B%3BAACb%3BAACA%3BEAAa%2CUAAA%3B%3B%3BAAGb%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CYAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CUAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CUAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC1C%2CeAAe%3BEAAY%2CcAAA%3BEAAe%2CUAAA%3B%3BAAC1C%2CeAAe%3BEAAa%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC3C%2CeAAe%3BEAAa%2CcAAA%3BEAAe%2CaAAA%3B%3BAAC3C%2CeAAe%3BAACf%2CeAAe%3BEAAa%2CcAAA%3BEAAe%2CUAAA%3B%3B%3BAAG3C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CYAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CUAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CUAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC5C%2CgBAAgB%3BEAAY%2CeAAA%3BEAAgB%2CUAAA%3B%3BAAC5C%2CgBAAgB%3BEAAa%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC7C%2CgBAAgB%3BEAAa%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC7C%2CgBAAgB%3BAAChB%2CgBAAgB%3BEAAa%2CeAAA%3BEAAgB%2CUAAA%3B%3B%3BAAG7C%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CYAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CUAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CUAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CUAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAACtD%2CUAAU%3BAACV%2CUAAU%3BEAAa%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CWAAA%3B%3B%3B%3B%3B%3B%3B%3BAAQtD%3BEAAqB%2CUAAA%3B%3BAACrB%3BEAAmB%2CUAAA%3B%3BAAEnB%2CUAAU%3BEAAqB%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CUAAA%3B%3BAAC9D%2CUAAU%3BEAAmB%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CUAAA%3B%3B%3BAAG5D%3BEAAqB%2CaAAA%3B%3BAACrB%3BEAAmB%2CyBAAA%3B%3BAAEnB%2CUAAU%3BEAAqB%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CaAAA%3B%3BAAC9D%2CUAAU%3BEAAmB%2CcAAA%3BEAAe%2CeAAA%3BEAAgB%2CyBAAA%3B%3B%3B%3BAAI5D%3BEACC%2CcAAA%3BEACA%2CWAAA%3B%3BAAED%3BEACC%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3B%3B%3B%3B%3BAAQD%3BEAAS%2CcAAA%3B%3BAACT%3BEAAS%2CeAAA%3B%3B%3BAAGT%3BEAAmB%2CwBAAA%3B%3BAACnB%3BEAAmB%2CwBAAA%3B%3BAACnB%3BEAAmB%2CwBAAA%3B%3BAACnB%3BEAAmB%2CwBAAA%3B%3B%3B%3B%3B%3B%3B%3BAASnB%3BEACC%2CiBAAA%3BEACA%2CkBAAA%3B%3BAAED%3BEAAoB%2CWAAA%3BEAAY%2CgBAAA%3B%3B%3B%3B%3B%3BAAKhC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3B%3BEAGA%2CQAAA%3BEACA%2CWAAA%3B%3B%3BAAGD%2CgBAAgB%3BAAChB%2CgBAAgB%3BEAAS%2CcAAA%3BEAAgB%2CcAAA%3BEAAgB%2CSAAS%2CEAAT%3B%3BAACzD%2CgBAAgB%3BEAAS%2CWAAA%3B%3B%3B%3BAAIzB%2CUAAU%3BEACT%2CWAAA%3BEACA%2CeAAA%3B%3B%3B%3BAAKD%2CUAAU%2CgBAAmB%3BEAE5B%2CeAAA%3BEACA%2CgBAAA%3B%3B%3B%3B%3B%3B%3B%3BAAUD%3BEAAkB%2CQAAA%3BEAAU%2CWAAA%3B%3BAAC5B%2CeAAe%3BAACf%2CeAAe%3BEAAS%2CcAAA%3BEAAgB%2CcAAA%3BEAAgB%2CSAAS%2CEAAT%3B%3BAACxD%2CeAAe%3BEAAS%2CWAAA%3B%3B%3B%3B%3BAAKxB%3BEAAyB%2CQAAA%3BEAAU%2CWAAA%3B%3BAACnC%2CsBAAsB%3BAACtB%2CsBAAsB%3BEAAS%2CcAAA%3BEAAgB%2CcAAA%3BEAAgB%2CSAAS%2CEAAT%3B%3BAAC%5C%2FD%2CsBAAsB%3BEAAS%2CWAAA%3B%3BAAC%5C%2FB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BAACvB%2CsBAAuB%3BEAEtB%2CiBAAA%3B%3B%3B%3BAAKD%2CUAAW%3BEACV%2CsBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CiCAAA%3BEACA%2CsCAAA%3BEACA%2CyCAAA%3BEACA%2CoCAAA%3B%3BAAED%2CUAAW%2CmBAAkB%3BEAC5B%2CyBAAA%3B%3BACvOD%3BEACC%2CaAAa%2CwBAAb%3BEACA%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3B%3BAAID%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CuCAA8C%2COAAO%2CcACtD%2CsCAA6C%2COAAO%2COAD5D%3BEAEA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CwCAA%2BC%2COAAO%2CcACvD%2CuCAA8C%2COAAO%2COAD7D%3BEAEA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CsCAA6C%2COAAO%2CcACrD%2CqCAA4C%2COAAO%2COAD3D%3BEAEA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CyCAAgD%2COAAO%2CcACxD%2CwCAA%2BC%2COAAO%2COAD9D%3BEAEA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CsCAA6C%2COAAO%2CcACrD%2CqCAA4C%2COAAO%2COAD3D%3BEAEA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CqCAA4C%2COAAO%2CcACpD%2CoCAA2C%2COAAO%2COAD1D%3BEAEA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2CqCAA4C%2COAAO%2CcACpD%2CoCAA2C%2COAAO%2COAD1D%3BEAEA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CYAAb%3BEACA%2CSAAS%2C0CAAiD%2COAAO%2CcACzD%2CyCAAgD%2COAAO%2COAD%5C%2FD%3BEAEA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3B%3BAAKJ%3BEACC%2CSAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2C0BAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3B%3BAAED%3BEACC%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3B%3BAAED%3BEACC%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3B%3BAAED%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAED%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAED%3BEACC%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2C6BAAA%3BEACA%2CgCAAA%3BEACA%2CgBAAA%3BEACA%2C0BAAA%3B%3BAAED%3BEACC%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2C6BAAA%3BEACA%2CgCAAA%3BEACA%2CoBAAA%3BEACA%2C0BAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoCAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoCAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoCAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoCAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3B%3BAAED%3BEACC%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3B%3BAAED%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3B%3BAAED%2COAAO%3BEACN%2CmBAAA%3BEACA%2CoBAAA%3BEACA%2C2BAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2C0BAAA%3BEACA%2CoBAAoB%2CwBAApB%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CYAAA%3B%3BAACA%2COAZM%2CQAYL%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3B%3BAAIF%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%2CKAAK%3BEACJ%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAED%3BEACC%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3B%3BAAGD%3BEACC%2CaAAa%2CwBAAb%3B%3BAAGD%3BEACC%2CaAAa%2CwBAAb%3BEACA%2CiBAAA%3B%3B%3B%3BAAOD%3BEACC%2CgBAAA%3B%3BAADD%2CaAEE%3BEACA%2CeAAA%3B%3BAAHF%2CaAKE%3BEACA%2CeAAA%3B%3BAAGF%2CaACC%3BEACC%2CeAAA%3BEACA%2CuBAAA%3B%3BAAHF%2CaACC%2CYAGC%2CQACC%2CSACC%3BEACC%2CeAAA%3BEACA%2CcAAA%3B%3BAACA%2CaARJ%2CYAGC%2CQACC%2CSACC%2CEAGE%3BEACA%2CcAAA%3B%3BAAON%3BEACC%2CeAAA%3B%3BAAED%3BEACC%2CmBAAA%3B%3BAADD%2CYAEC%2CQAAO%3BEACN%2CeAAA%3B%3BAAGF%2COAAO%3BEACN%2C%2BBAAA%3BEACA%2CuBAAA%3B%3BAAED%2COAAO%3BEACN%2CeAAA%3B%3BAAED%2CMAAM%2CSAAS%3BEACd%2CeAAA%3B%3BAAED%3BEACC%2CeAAA%3B%3BAAED%3BEACC%2CeAAA%3B%3BAAED%2CSACC%3BEACC%2C0BAAA%3BEACA%2CUAAA%3BEACA%2CaAAA%3B%3BAAGF%3BEACC%2CgBAAA%3BEACA%2CeAAA%3B%3BAAFD%2CeAGC%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CuBAAA%3B%3BAANF%2CeAGC%2CGAIC%3BEACC%2CcAAA%3B%3BAARH%2CeAGC%2CGAIC%2CGAEC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAKJ%2CaACC%3BEACC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CcAAA%3B%3BAALF%2CaAOC%3BEACC%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3B%3BAAXF%2CaAOC%2CcAKC%3BEACC%2CkBAAA%3B%3BAAbH%2CaAOC%2CcAKC%2CYAEC%3BEACC%2CkBAAA%3B%3BAAfJ%2CaAOC%2CcAKC%2CYAEC%2CQAEE%3BEACA%2CoBAAoB%2CwBAApB%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CkBAAA%3B%3BAApBL%2CaAOC%2CcAKC%2CYAEC%2CQAQC%3BEACC%2CeAAe%2CwBAAf%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAML%2COAAO%2CQACN%3BEACC%2CSAAA%3BEACA%2CiBAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3BEACA%2CwBAAA%3B%3BAANF%2COAAO%2CQACN%2CMAMC%3BEACC%2CWAAA%3B%3BAAIH%3BEACC%2CYAAA%3BEACA%2CgBAAA%3B%3BAAFD%2CQAGC%3BEACC%2CeAAe%2CwBAAf%3BEAEA%2CcAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3B%3BAACA%2CQAPD%2CEAOE%3BEACA%2CcAAA%3B%3BAAXH%2CQAGC%2CEAUC%3BEACC%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAED%2CQAjBD%2CEAiBE%2CWACA%3BEACC%2CeAAA%3B%3BAAKJ%2COAAO%2CQACN%3BEACC%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CyBAAA%3B%3BAAPF%2COAAO%2CQACN%2CcAOC%2CQAAO%3BEACN%2CQAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2C0BAAA%3B%3BAACA%2COAfI%2CQACN%2CcAOC%2CQAAO%2COAOL%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CiBAAA%3BEACA%2CWAAA%3B%3BAAnBJ%2COAAO%2CQAuBN%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAA8CF%2CQA1C0B%3BEACzB%3BIACC%2C4BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAED%2CYACC%2CQAAO%3BIACN%2C4BAAA%3B%3BEAGF%2COAAO%3BIACN%2C4BAAA%3B%3BEAED%2COAAO%3BIACN%2C4BAAA%3B%3BEAED%2CaACE%3BIACA%2C4BAAA%3B%3BEAFF%2CaAIE%3BIACA%2C4BAAA%3B%3BEAGF%2CMAAM%2CSAAS%3BIACd%2C4BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAED%3BIACC%2C0BAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3BIACA%2CcAAA%3B%3B%3BAA8CF%3BEA1CC%3BIACC%2C4BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAED%2CYACC%2CQAAO%3BIACN%2C4BAAA%3B%3BEAGF%2COAAO%3BIACN%2C4BAAA%3B%3BEAED%2COAAO%3BIACN%2C4BAAA%3B%3BEAED%2CaACE%3BIACA%2C4BAAA%3B%3BEAFF%2CaAIE%3BIACA%2C4BAAA%3B%3BEAGF%2CMAAM%2CSAAS%3BIACd%2C4BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAED%3BIACC%2C0BAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3BIACA%2CcAAA%3B%3B%3BAAIF%2CYACC%2COAAM%3BEACL%2CaAAA%3B%3BAAGF%3BEACC%2CuBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3B%3B%3BAASD%2CSACC%2CqBACC%2CQAAO%3BEACN%2C4BAAA%3B%3BAAKF%2CWAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAGF%3BEACC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAACA%2CuBAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAGF%3BEACC%2CiBAAA%3BEACA%2CuBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3B%3BAAED%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CuBAAA%3BEACA%2CgBAAA%3B%3BAAPD%2CSAQC%3BEACC%2CUAAA%3BEACA%2CmBAAA%3B%3BAAKF%3BEACC%2CoBAAA%3BEACA%2CmBAAA%3B%3BAAFD%2CcAGC%3BEACC%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAANF%2CcAQC%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2C8BAAA%3B%3BAAZF%2CcAQC%2CGAKC%3BEACC%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3B%3BAAlBH%2CcAQC%2CGAKC%2CGAMC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAAxBJ%2CcAQC%2CGAKC%2CGAaC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3B%3BAA5BJ%2CcAQC%2CGAKC%2CGAiBC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAjCJ%2CcAQC%2CGAKC%2CGAiBC%2CwBAIC%3BEACC%2CcAAA%3B%3BAAnCL%2CcAwCC%2CQAAO%3BEACN%2CcAAA%3BEACA%2CYAAA%3B%3BAA1CF%2CcA6CC%2CcACC%2CSACC%3BAA%5C%2FCH%2CcA6CC%2CcACC%2CSACY%3BEACV%2CQAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3B%3BAAMF%2CcADD%2CeACE%3BEACA%2CWAAA%3B%3BAAKD%2CcADD%2CgBACE%3BEACA%2CWAAA%3B%3BAAIH%3BEACC%2CoBAAA%3B%3BAADD%2CcAEC%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAALF%2CcAOC%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2C8BAAA%3B%3BAAXF%2CcAOC%2CGAKC%3BEACC%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CiBAAA%3B%3BAAnBH%2CcAOC%2CGAKC%2CGAQC%3BEACC%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CUAAA%3B%3BAAxBJ%2CcAOC%2CGAKC%2CGAcC%3BEACC%2CqBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CwBAAA%3B%3BAA%5C%2FBJ%2CcAOC%2CGAKC%2CGAcC%2CEAMC%3BEACC%2CgBAAA%3BEACA%2CeAAA%3B%3BAAlCL%2CcAOC%2CGAKC%2CGAyBC%3BEACC%2CmBAAA%3B%3BAAtCJ%2CcAOC%2CGAKC%2CGAyBC%2CwBAEC%3BEACC%2CeAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3B%3BAA3CL%2CcAgDC%2CQAAO%3BEACN%2CgBAAA%3B%3BAAGF%3BEACC%2C6BAAA%3BEACA%2C4BAAA%3BEACA%2CsBAAA%3BEACA%2C4BAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CcAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2C8BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3B%3BAAlBF%2CcAoBC%3BEACC%2CkBAAA%3BEACA%2CUAAA%3B%3BAAtBF%2CcAwBC%3BEACC%2CWAAA%3BEACA%2CgBAAA%3B%3BAA1BF%2CcA4BC%3BEACC%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CcAJD%2CEAIE%3BEACA%2CgBAAA%3B%3BAAWH%2CQAN2B%3BEAC1B%3BIACC%2CyBAAA%3B%3B%3BAAIF%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3B%3BAAHD%2CWAIC%3BEACC%2C2BAAA%3B%3BAALF%2CWAOC%3BEACC%2CgBAAA%3B%3BAARF%2CWAUC%3BEACC%2CaAAA%3BEACA%2CuBAAA%3B%3BAAZF%2CWAUC%2CGAGC%3BEACC%2CcAAA%3B%3BAAdH%2CWAUC%2CGAGC%2CGAEC%3BEACC%2CkBAAA%3B%3BAAKJ%3BEACC%2CiBAAA%3BEACA%2CkBAAA%3B%3BAAFD%2CYAGC%3BEACC%2CgBAAA%3B%3BAAJF%2CYAMC%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAATF%2CYAMC%2CGAIC%3BEACC%2CeAAA%3BEACA%2CUAAA%3BEACA%2CsBAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3B%3BAAfH%2CYAMC%2CGAIC%2CGAMC%3BEACC%2CeAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3B%3BAAnBJ%2CYAMC%2CGAIC%2CGAWC%3BEACC%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CuCAAhB%3BEACA%2CmBAAA%3B%3BAA1BJ%2CYAMC%2CGAIC%2CGAWC%2CcAMC%3BEACC%2CQAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAgB%2CyCAAhB%3B%3BAACA%2CYA1BJ%2CGAIC%2CGAWC%2CcAMC%2CQAKE%3BEACA%2CUAAA%3B%3BAAED%2CYA7BJ%2CGAIC%2CGAWC%2CcAMC%2CQAQE%3BEACA%2CUAAA%3B%3BAAED%2CYAhCJ%2CGAIC%2CGAWC%2CcAMC%2CQAWE%3BEACA%2CUAAA%3B%3BAAED%2CYAnCJ%2CGAIC%2CGAWC%2CcAMC%2CQAcE%3BEACA%2CUAAA%3B%3BAAED%2CYAtCJ%2CGAIC%2CGAWC%2CcAMC%2CQAiBE%3BEACA%2CWAAA%3B%3B%3B%3BAAaN%2CaACC%3BEACC%2CeAAA%3BEACA%2CWAAA%3BEACA%2CcAAA%3BEACA%2C6BAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CaAAA%3BEACA%2CeAAA%3B%3BAAVF%2CaAYC%3BEACC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3B%3BAAhBF%2CaAkBC%3BEACC%2CaAAA%3BEACA%2C8BAAA%3B%3BAApBF%2CaAkBC%2CQAGC%3BEAOC%2CWAAA%3B%3BAA5BH%2CaAkBC%2CQAGC%2COACC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3B%3BAA1BJ%2CaAkBC%2CQAGC%2COAQC%3BEACC%2CWAAA%3B%3BAA9BJ%2CaAkBC%2CQAGC%2COAWC%2CSACC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAApCL%2CaAkBC%2CQAGC%2COAWC%2CSAMC%3BEACC%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAAzCL%2CaAkBC%2CQAGC%2COAWC%2CSAWC%2COACC%3BEACC%2CSAAA%3B%3BAA7CN%2CaAkBC%2CQAGC%2COAWC%2CSAgBC%2COACC%3BEACC%2CQAAA%3B%3BAAlDN%2CaAkBC%2CQAqCC%2COAAM%2CIACL%2CcACC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CaA3CJ%2CQAqCC%2COAAM%2CIACL%2CcACC%2CGAIE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3B%3BAArEN%2CaAkBC%2CQAwDC%2COAAM%2CKACL%2CGACC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAA%5C%2FEL%2CaAkBC%2CQAwDC%2COAAM%2CKACL%2CGACC%2CGAIC%3BEACC%2CkBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3B%3BAAED%2CaAnEJ%2CQAwDC%2COAAM%2CKACL%2CGACC%2CGASE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CqDAAhB%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3B%3B%3BAAYN%2COAAO%2CQACN%3BEACC%2CcAAA%3BEACA%2C4BAAA%3B%3BAAHF%2COAAO%2CQACN%2CkBAGC%3BEACC%2CwBAAA%3B%3BAALH%2COAAO%2CQACN%2CkBAMC%2CQAAO%3BEACN%2CeAAA%3BEACA%2CcAAA%3B%3BAATH%2COAAO%2CQACN%2CkBAMC%2CQAAO%2CSAGN%3BEACC%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAAED%2COAfI%2CQACN%2CkBAMC%2CQAAO%2CSAQL%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2C6CAAhB%3BEACA%2C0BAAA%3BEACA%2CiBAAA%3B%3BAArBJ%2COAAO%2CQACN%2CkBAMC%2CQAAO%2CSAgBN%3BEACC%2CiBAAA%3B%3BAAxBJ%2COAAO%2CQACN%2CkBAMC%2CQAAO%2CSAmBN%2CSAAQ%3BEACP%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3B%3BAAID%2COAxCI%2CQACN%2CkBAsCC%2CQAAO%2CSAAS%2COACd%3BEACA%2CSAAS%2CEAAT%3BEACA%2CiBAAA%3B%3BAA1CJ%2COAAO%2CQA%2BCN%2CgBACC%2CSACE%3BEACA%2CsBAAA%3B%3BAAlDJ%2COAAO%2CQA%2BCN%2CgBACC%2CSACE%2CsBAEA%3BEACC%2CsBAAA%3B%3BAApDL%2COAAO%2CQA%2BCN%2CgBASC%2CmBACC%3BEACC%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3BAA5DJ%2COAAO%2CQAiEN%2CgBACC%3BEACC%2CaAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3BAACA%2COAxEI%2CQAiEN%2CgBACC%2CUAME%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAA1EJ%2COAAO%2CQAiEN%2CgBAYC%3BEACC%2CWAAA%3B%3BAA9EH%2COAAO%2CQAiEN%2CgBAeC%2CQAAO%3BEACN%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3B%3BAACA%2COAtFI%2CQAiEN%2CgBAeC%2CQAAO%2CSAML%3BEACA%2CmBAAA%3B%3BAAMC%2COA7FE%2CQAiEN%2CgBAyBC%2CGACE%2CQACC%2CQACC%3BEACA%2CgBAAA%3B%3BAA9FN%2COAAO%2CQAqGN%3BEACC%2CWAAA%3BEACA%2CSAAA%3B%3B%3B%3BAASF%3BEACC%2CgBAAA%3BEACA%2CgBAAA%3B%3BAAFD%2CYAGC%3BEACC%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3BAANF%2CYAQC%3BEACC%2CgBAAA%3B%3BAATF%2CYAWC%3BEACC%2CWAAA%3B%3BAAIC%2CYAFF%2CMACE%2CIAAI%2CaACH%3BEACA%2CSAAS%2CGAAT%3BEACA%2CeAAA%3BEACA%2CaAAA%3B%3B%3B%3BAAkBJ%2CQAP0B%3BEACzB%2C0BACC%3BIACC%2CcAAA%3B%3B%3BAAIH%3BEACC%2CkBAAA%3B%3BAADD%2CaAEC%3BEACC%2CaAAA%3BEACA%2CuBAAA%3B%3BAAJF%2CaAEC%2CGAGC%3BEACC%2CgBAAA%3BEACA%2CkBAAA%3B%3BAAPH%2CaAEC%2CGAGC%2CGAGC%3BEACC%2CoBAAoB%2CwBAApB%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3B%3BAAhBJ%2CaAEC%2CGAGC%2CGAaC%3BEACC%2CaAAA%3B%3BAAnBJ%2CaAEC%2CGAGC%2CGAaC%2CqBAEC%2CGACC%3BEACC%2CSAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3B%3BAAxBN%2CaAEC%2CGAGC%2CGAaC%2CqBAEC%2CGACC%2CGAIC%3BEACC%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3B%3BAACA%2CaAhCN%2CGAGC%2CGAaC%2CqBAEC%2CGACC%2CGAIC%2CEASE%3BEACA%2CcAAA%3B%3BAAnCR%2CaAEC%2CGAGC%2CGAoCC%3BEACC%2CaAAA%3B%3BAA1CJ%2CaAEC%2CGAGC%2CGAoCC%2CcAEC%3BEACC%2C2BAAA%3BEACA%2CeAAA%3B%3BAA7CL%2CaAEC%2CGAGC%2CGAoCC%2CcAEC%2CGAGC%3BEACC%2CUAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3B%3BAAnDN%2CaAEC%2CGAGC%2CGAoCC%2CcAEC%2CGAGC%2CGAMC%3BEACC%2CcAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3B%3BAACA%2CaA3DN%2CGAGC%2CGAoCC%2CcAEC%2CGAGC%2CGAMC%2CEASE%3BEACA%2CaAAA%3B%3BAAGF%2CaA%5C%2FDL%2CGAGC%2CGAoCC%2CcAEC%2CGAGC%2CGAmBE%2CMACA%3BEACC%2CcAAA%3B%3BAAnER%2CaAEC%2CGAGC%2CGAoCC%2CcAEC%2CGAGC%2CGAwBC%3BEACC%2CWAAA%3B%3BAAKJ%2CaA1EF%2CGAGC%2CGAuEE%2CMACA%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CuCAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3B%3BAAMD%2CaA1FH%2CGAwFC%2CGAAE%2CWACD%2CEACE%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CWAAA%3BEACA%2CSAAS%2COAAT%3BEACA%2CaAAa%2CYAAb%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAtGL%2CaAEC%2CGAwGC%2CGAAE%3BEACD%2CkBAAA%3BEACA%2CmBAAA%3B%3BAA5GH%2CaAEC%2CGAwGC%2CGAAE%2CSAGD%3BEACC%2CgBAAA%3B%3BAAED%2CaA9GF%2CGAwGC%2CGAAE%2CSAMA%2CMACA%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CuCAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3B%3BAAGF%2CaA3HF%2CGAwGC%2CGAAE%2CSAmBA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CcAAA%3BEACA%2CSAAS%2COAAT%3BEACA%2CaAAa%2CYAAb%3BEACA%2CsBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CWAAA%3B%3B%3B%3BAA4CJ%2CQAhC0B%3BEACzB%2CaACC%3BIACC%2C2BAAA%3BIACA%2CWAAA%3BIACA%2C2BAAA%3B%3BEAJF%2CaAMC%2CQAAO%3BIACN%2CwBAAA%3B%3BEAGF%3BIACC%2C2BAAA%3B%3BEAED%2CSACC%2CcACC%3BIACC%2CaAAA%3BIACA%2C2BAAA%3B%3BEAKH%2CIAAI%3BIACH%2CaAAA%3B%3BEACA%2CIAFG%2COAEF%3BIACA%2CcAAA%3B%3B%3BAAaH%2CQAP0B%3BEACzB%2C0BACC%3BIACC%2CwBAAA%3B%3B%3BAAIH%3BEACC%2CyBAAA%3BEACG%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3B%3BAACH%2CeAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CwCAAhB%3BEACA%2C0BAAA%3B%3BAAED%2CeAAC%3BEACA%2CSAAA%3B%3BAACA%2CeAFA%2COAEC%3BEACA%2CgBAAgB%2CyCAAhB%3BEACA%2CYAAA%3BEACA%2C0BAAA%3B%3BAAMH%2CUACC%3BEACC%2CgBAAA%3B%3BAACA%2CUAFD%2CGAEE%2CYACA%3BEACC%2CgBAAA%3B%3BAAFF%2CUAFD%2CGAEE%2CYAIA%3BEACC%2CmBAAA%3B%3BAALF%2CUAFD%2CGAEE%2CYAIA%2CYAEC%3BEACC%2CgBAAA%3B%3BAAPH%2CUAFD%2CGAEE%2CYAIA%2CYAEC%2CGAEC%3BEACC%2CYAAA%3B%3BAATJ%2CUAFD%2CGAEE%2CYAIA%2CYAEC%2CGAEC%2CEAEE%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3BEACA%2CcAAA%3B%3BAAjBP%2CUACC%2CGAsBG%3BEACD%2CgCAAA%3B%3BAAxBH%2CUACC%2CGAyBC%2CYACC%3BEACC%2CgBAAA%3B%3BAAKJ%2CIACC%3BEACC%2CcAAA%3BEACA%2CaAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2C6BAAA%3BEACA%2CqCAAA%3BEACA%2C6BAAA%3BEACA%2CeAAe%2CoBAAf%3BEACA%2CkBAAA%3B%3BAACA%2CIAVD%2CEAUE%3BEACA%2CmBAAA%3BEACA%2CqBAAA%3B%3BAAED%2CIAdD%2CEAcE%3BEACA%2CmBAAA%3BEACA%2CqBAAA%3B%3BAAjBH%2CIAoBC%3BEACC%2CcAAA%3BEACA%2CaAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3BEACA%2C6BAAA%3BEACA%2CqCAAA%3BEACA%2C6BAAA%3BEACA%2CeAAe%2CoBAAf%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAACA%2CIAXD%2CMAWE%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3B%3BAAED%2CIAfD%2CMAeE%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3B%3BAArCH%2CIAoBC%2CMAmBC%3BEACC%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3B%3BAAKA%2CIAFF%2CGACE%2CKACC%2CWACA%3BEACC%2CgBAAA%3B%3BAAKA%2CIATJ%2CGACE%2CKAMA%2CGACC%2CGACE%2CWACA%3BEACC%2C6BAAA%3B%3BAAQP%3BEA%2BCC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAApDD%2CWACC%3BEACC%2CgCAAA%3B%3BAAFF%2CWAIC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2C6BAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CWAVD%2CEAUE%3BEACA%2CgBAAA%3B%3BAAED%2CWAbD%2CEAaE%3BEACA%2CgBAAA%3B%3BAAlBH%2CWAqBC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3B%3BAA9BF%2CWAqBC%2CMAUC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3B%3BAAED%2CWAhBD%2CMAgBE%3BEACA%2CgBAAA%3B%3BAAED%2CWAnBD%2CMAmBE%3BEACA%2CgBAAA%3B%3BAAzCH%2CWAqBC%2CMAsBC%3BEACC%2CUAAA%3B%3BAAUH%3BEAmCC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAAxCD%2CeACC%3BEACC%2CgCAAA%3B%3BAACA%2CeAFD%2CGAEE%3BEACA%2CgBAAA%3B%3BAAED%2CeALD%2CGAKE%3BEACA%2C6BAAA%3B%3BAAPH%2CeAUC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CcAAA%3B%3BAACA%2CeALD%2CEAKE%3BEACA%2CgBAAA%3B%3BAAED%2CeARD%2CEAQE%3BEACA%2CgBAAA%3B%3BAAnBH%2CeAsBC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2C6BAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAACA%2CeAND%2CMAME%3BEACA%2CgBAAA%3B%3BAAED%2CeATD%2CMASE%3BEACA%2CgBAAA%3B%3BAAWH%3BEAuBC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAA5BD%2CmBACC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CgCAAA%3B%3BAACA%2CmBAJD%2CEAIE%3BEACA%2CgBAAA%3B%3BAAED%2CmBAPD%2CEAOE%3BEACA%2CgBAAA%3B%3BAATH%2CmBAYC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CgCAAA%3B%3BAACA%2CmBAJD%2CMAIE%3BEACA%2CmBAAA%3B%3BAAED%2CmBAPD%2CMAOE%3BEACA%2CmBAAA%3B%3BAAcC%2CUAHH%2CMAAK%2CeACH%2CQACE%2CQACC%3BEACD%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAHF%2CUAFF%2CMAAK%2CeACH%2CQACE%2CQAKA%3BEACA%2CmBAAmB%2CcAAnB%3BEACA%2CeAAe%2CcAAf%3BEACA%2CWAAW%2CcAAX%3B%3BAAML%2CKACE%3BEACA%2CYAAA%3BEACA%2CgDAAA%3BEACA%2CgCAAA%3B%3B%3BAAMF%2CoBACC%3BEACC%2C2BAAA%3B%3B%3BAAMF%2CaACC%3BEACC%2CSAAA%3B%3BAAFF%2CaACC%2CSAEC%2COAAM%3BEACL%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CuBAAA%3BEACA%2CSAAA%3B%3BAACA%2CaATF%2CSAEC%2COAAM%2CSAOJ%3BEACA%2CuBAAA%3B%3BAACA%2CaAXH%2CSAEC%2COAAM%2CSAOJ%2CMAEC%3BEACA%2CcAAA%3B%3BAAGF%2CaAfF%2CSAEC%2COAAM%2CSAaJ%3BEACA%2CSAAS%2COAAT%3BEACA%2C6BAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3BEACA%2CaAAA%3B%3BAArBJ%2CaACC%2CSAuBC%2COAAM%3BEACL%2CkBAAA%3BEACA%2CYAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CuBAAA%3BEACA%2CSAAA%3B%3BAACA%2CaA9BF%2CSAuBC%2COAAM%2CSAOJ%3BEACA%2CuBAAA%3B%3BAACA%2CaAhCH%2CSAuBC%2COAAM%2CSAOJ%2CMAEC%3BEACA%2CcAAA%3B%3BAAGF%2CaApCF%2CSAuBC%2COAAM%2CSAaJ%3BEACA%2CSAAS%2COAAT%3BEACA%2C6BAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3BEACA%2CaAAA%3B%3BAA1CJ%2CaACC%2CSA6CC%3BEACC%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CkCAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3B%3BAACA%2CaArDF%2CSA6CC%2CUAQE%3BEACA%2CuBAAA%3B%3BAACA%2CaAvDH%2CSA6CC%2CUAQE%2CMAEC%3BEACA%2CcAAA%3B%3BAAzDL%2CaACC%2CSA4DC%3BEACC%2CkBAAA%3BEACA%2CYAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CkCAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3B%3BAACA%2CaApEF%2CSA4DC%2CUAQE%3BEACA%2CuBAAA%3B%3BAACA%2CaAtEH%2CSA4DC%2CUAQE%2CMAEC%3BEACA%2CcAAA%3B%3BAAxEL%2CaA6EC%2COAAM%3BEACL%2CuBAAA%3BEACA%2CSAAA%3B%3BAAIF%2CgBACC%2CcACC%2CSACC%2COAAM%3BEACL%2COAAA%3BEACA%2CMAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAACA%2CgBATH%2CcACC%2CSACC%2COAAM%2CSAOJ%3BEACA%2CcAAA%3B%3BAAXL%2CgBACC%2CcACC%2CSAaC%2COAAM%3BEACL%2CQAAA%3BEACA%2CMAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAACA%2CgBArBH%2CcACC%2CSAaC%2COAAM%2CSAOJ%3BEACA%2CcAAA%3B%3BAAOL%2CUACC%2CUACC%2CSACC%3BEACC%2CsBAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAAID%2CUATF%2CUAQC%2CSACE%2COACA%3BEACC%2CmBAAA%3B%3BAAMF%2CUAjBF%2CUAgBC%2CSACE%2CMACA%3BEACC%2CmBAAA%3B%3BAAQF%2CUAFF%2CSACC%2CgBACE%3BEACA%2CuBAAA%3B%3BAAEC%2CUALJ%2CSACC%2CgBACE%2CMAEA%2CeACE%3BEACA%2CcAAA%3B%3BAAID%2CUAVJ%2CSACC%2CgBACE%2CMAOA%2CgBACE%3BEACA%2CcAAA%3B%3BAASL%2CcAAC%3BEACA%2C6BAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3B%3BAAID%2CeAAC%3BEACA%2C6BAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3B%3BAAIF%2CiBACC%2CSACC%2COACC%3BEACC%2CaAAA%3B%3BAAJJ%2CiBAQC%3BEACC%2CQAAA%3B%3BAAeF%2CQAX0B%3BEACzB%2CiBACC%3BIACC%2CQAAA%3BIACA%2CSAAA%3B%3B%3B%3BAAOH%2CcACC%2CWACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAALJ%2CcACC%2CWAOC%3BEACC%2CeAAA%3BEACA%2CiBAAA%3B%3BAAVH%2CcACC%2CWAOC%2CGAGC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3B%3BAAUH%2CIAAC%2CIAAI%2CwBACJ%3BEACC%2CaAAA%3B%3BAAIH%2CsBACC%3BEACC%2C0BAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAALF%2CsBAOC%3BEACC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAVF%2CsBAYC%3BEACC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAGF%2CqBACC%3BEACC%2CeAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2C8BAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3BEACA%2CoBAAA%3BEACA%2CoBAAA%3B%3BAAGF%3BEACC%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CMAAA%3BEACA%2CgBAAA%3BEACA%2CuBAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3B%3BAATD%2CWAUC%3BEACC%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CkBAAA%3BEACA%2C4BAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CWAAW%2CcAAX%3BEACA%2CkBAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3B%3BAAzBF%2CWA2BC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CmBAAA%3B%3BAA9BF%2CWA2BC%2CaAIC%3BEACC%2CgBAAA%3B%3BAAhCH%2CWAmCC%3BEACC%2CmBAAA%3B%3BAAYF%2CQAR2B%3BEAC1B%3BIACC%2CeAAA%3BIACA%2CQAAA%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIF%2CqBAAqB%2CKACpB%3BEACC%2CQAAA%3B%3BAAFF%2CqBAAqB%2CKAIpB%3BEACC%2CUAAA%3BEACA%2CoBAAA%3B%3BAAGF%2CgBACC%2CWACE%3BEACA%2CkBAAA%3B%3BAAHH%2CgBACC%2CWACE%2CKAEA%3BEACC%2CYAAA%3B%3BAALJ%2CgBACC%2CWACE%2CKAKA%3BEACC%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3B%3BAAXJ%2CgBACC%2CWACE%2CKAKA%2CMAKC%3BEACC%2CcAAA%3BEACA%2CkBAAA%3B%3BAAdL%2CgBACC%2CWACE%2CKAeA%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CgBAnBH%2CWACE%2CKAeA%2CgBAGE%3BEACA%2CSAAS%2CQAAT%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CMAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CUAAA%3B%3BAA%5C%2FBL%2CgBACC%2CWACE%2CKAeA%2CgBAgBC%2CMAAK%3BEACJ%2CkBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CUAAA%3BEACA%2CUAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3B%3BAA1CL%2CgBACC%2CWACE%2CKAeA%2CgBA2BC%3BEACC%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CsBAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CsBAAA%3B%3BAAxDL%2CgBACC%2CWACE%2CKAeA%2CgBAyCC%2CoBAAmB%3BEAClB%2CgBAAA%3B%3BAA3DL%2CgBACC%2CWACE%2CKAeA%2CgBA4CC%3BEACC%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CQAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CUAAA%3BEACA%2CWAAW%2CgBAAX%3B%3BAArEL%2CgBA0EC%2CEAAC%3BEACA%2CcAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3B%3BAASE%2CgBAHH%2CWACE%2CKACA%2CMACE%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBATH%2CWACE%2CKACA%2CMAOE%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBAdH%2CWACE%2CKACA%2CMAYE%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBAnBH%2CWACE%2CKACA%2CMAiBE%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBAxBH%2CWACE%2CKACA%2CMAsBE%3BEACA%2CcAAA%3BEACA%2CiBAAiB%2CwBAAjB%3BEACA%2CUAAA%3B%3BAAID%2CgBA%5C%2FBH%2CWACE%2CKA6BA%2CSACE%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBArCH%2CWACE%2CKA6BA%2CSAOE%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBA1CH%2CWACE%2CKA6BA%2CSAYE%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAED%2CgBA%5C%2FCH%2CWACE%2CKA6BA%2CSAiBE%3BEACA%2CcAAA%3BEACA%2CkBAAkB%2CwBAAlB%3BEACA%2CUAAA%3B%3BAAML%2CgBACC%3BEACC%2CkBAAA%3BEACA%2CaAAA%3BEACA%2C6BAAA%3B%3BAAJF%2CgBAMC%3BAAND%2CgBAMY%3BEACV%2CmBAAA%3BEACA%2CSAAA%3BEACA%2C2BAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CoBAAoB%2CwBAApB%3BEACA%2CyBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CgBAbD%2CUAaE%3BAAAD%2CgBAbU%2CiBAaT%3BEACA%2CmBAAA%3BEACA%2CSAAA%3B%3BAAKH%2CsBACC%2CiBACC%3BEACC%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3BAA0CH%2CQArC0B%3BEACzB%2CqBACC%3BIACC%2CeAAA%3B%3BEAED%2CqBAAC%2CKACA%3BIACC%2CWAAA%3BIACA%2CwBAAA%3BIACA%2CSAAA%3B%3BEAJF%2CqBAAC%2CKACA%2CYAIC%3BIACC%2CWAAA%3BIACA%2COAAA%3BIACA%2CUAAA%3BIACA%2CeAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3BIACA%2C4BAAA%3B%3BEACA%2CqBAbF%2CKACA%2CYAIC%2CSAQE%3BIACA%2CSAAS%2CGAAT%3BIACA%2CWAAA%3BIACA%2CaAAa%2CwBAAb%3BIACA%2CeAAA%3B%3B%3B%3B%3BAAeN%2CoBACC%2CQAAO%3BEACN%2CwBAAA%3B%3BAAIF%3BEACC%2CwBAAA%3B%3BAAED%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3B%3BAAED%2CcACC%3BEACC%2C2BAAA%3B%3BAAFF%2CcAIC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2C2BAAA%3B%3BAAPF%2CcASC%3BEACC%2CWAAA%3B%3BAAID%2CiBAAC%2CQACA%3BEACC%2CYAAA%3BEACA%2CsBAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAIH%3BEACC%2CkBAAA%3B%3BAAED%2CcACC%3BEACC%2CaAAA%3BEACA%2C0BAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3B%3BAALF%2CcACC%2CcAKC%3BEACC%2CWAAA%3B%3BAAPH%2CcACC%2CcAKC%2CmBAEC%3BEACC%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3BAAXJ%2CcACC%2CcAKC%2CmBAOC%3BEACC%2C2BAAA%3BEACA%2CsBAAA%3BEACA%2CuBAAA%3BEACA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3B%3BAAtBJ%2CcACC%2CcAKC%2CmBAOC%2CoBAUC%2CQAAO%3BEACN%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2C0BAAA%3BEACA%2CoBAAoB%2CwBAApB%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3B%3BAACA%2CcAlCJ%2CcAKC%2CmBAOC%2CoBAUC%2CQAAO%2CKAYL%3BEACA%2CmBAAA%3B%3BAApCN%2CcACC%2CcAyCC%2CWACC%3BEACC%2CeAAA%3BEACA%2CcAAA%3B%3BAAKF%2CcADD%2CmBACE%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3B%3BAAGF%2CcAAE%3BEACD%2CaAAA%3B%3BAAKF%2C2BACC%2CeACC%2CcACC%2CmBACC%3BEACC%2CgBAAA%3B%3BAAOL%3BEACC%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAED%2CQAAQ%2CKACP%3BEACC%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAGF%3BEACC%2CsBAAA%3B%3BAAED%3BEACC%2CuBAAA%3BEACA%2C4BAAA%3B%3BAAED%3BEACC%2C2BAAA%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3B%3BAAsBD%2CQAnB0B%3BEACzB%2CcACC%3BIACC%2CqBAAA%3B%3BEAFF%2CcACC%2CcAEC%2CmBACC%3BIACC%2CgBAAA%3BIACA%2CgBAAA%3B%3BEANJ%2CcACC%2CcAEC%2CmBACC%2C0BAGC%3BIACC%2CYAAA%3BIACA%2CcAAA%3BIACA%2CSAAA%3B%3B%3BAAqBN%2CQAb0B%3BEACzB%2CcACC%3BIACC%2CsBAAA%3B%3B%3B%3B%3BAAUH%2COAAO%2CQACN%3BEACC%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CyBAAA%3B%3BAAPF%2COAAO%2CQACN%2CwBAOC%3BEACC%2CQAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2C0BAAA%3B%3BAAdH%2COAAO%2CQAiBN%2CwBACC%2CiBAAgB%3BEACf%2CyBAAA%3BEACA%2CsBAAsB%2CkCAAtB%3BEACA%2C4BAAA%3BEACA%2CkCAAA%3BEACA%2C0BAAA%3BEACA%2CUAAA%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3BEACA%2C0BAAA%3B%3BAA7BH%2COAAO%2CQAiBN%2CwBAcC%2CiBAAgB%3BEACf%2CyBAAA%3BEACA%2CsBAAsB%2CkCAAtB%3BEACA%2C4BAAA%3BEACA%2CkCAAA%3BEACA%2C0BAAA%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3BEACA%2C0BAAA%3B%3BAAzCH%2COAAO%2CQAiBN%2CwBA0BC%3BEACC%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAAIH%3BEACC%2CWAAA%3BEACA%2CcAAA%3B%3BAAED%2CwBACC%2CeACC%3BEAKC%2CWAAA%3BEACA%2C2BAAA%3B%3BAALA%2CwBAFF%2CeACC%2CeACE%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAOJ%3BEACC%2CcAAA%3B%3BAAED%2CwBAAwB%2CMACvB%2CEAAC%3BEACA%2CWAAA%3B%3BAAGF%2C0BACC%3BEACC%2CWAAA%3B%3BAAGA%2C0BADD%2CeACE%3BEACA%2CmBAAA%3B%3BAANH%2C0BASC%2CQAAO%3BEACN%2C0BAAA%3BEACA%2CYAAA%3BEACA%2C4BAAA%3BEACA%2CqBAAA%3B%3BAAbF%2C0BAeC%2CcACC%3BEACC%2CaAAA%3B%3BAAKF%2C0BADyB%2CMACxB%2CIAAI%2CUACJ%3BEACC%2CiBAAA%3BEACA%2CkBAAA%3B%3BAA2BH%2CQAtB2B%3BEAEzB%2CoBAAC%3BIACA%2CsBAAA%3B%3BEAKD%2CwBAAC%2CIAAI%3BIACJ%2C0BAAA%3B%3BEAKD%2C0BADyB%2CMACxB%2CIAAI%2CUACJ%3BIACC%2CyBAAA%3B%3B%3BAAcJ%2CQAR2B%3BEAC1B%2COAAO%2CQACN%3BIACC%2CyBAAA%3B%3B%3BAAiBH%2CQAZ2B%2CwBAAwB%3BEAI%5C%2FC%2CYAFD%2CIAAI%2CuBACJ%2CwBACE%3BIACA%2CeAAA%3B%3B%3BAA6BL%2CQAtB2B%3BEAC1B%2COAAO%2CQACN%3BIACC%2CyBAAA%3BIACA%2CgBAAA%3B%3BEAHF%2COAAO%2CQAKN%3BIACC%2CgBAAA%3B%3BEANF%2COAAO%2CQAKN%2CkBAEC%2CQAAO%2CSAAU%3BIAChB%2CYAAA%3B%3BEARH%2COAAO%2CQAKN%2CkBAKC%2CQAAO%2CSACN%2CSAAQ%3BIACP%2CYAAA%3B%3B%3BAAwDL%2CQA%5C%2FC0B%3BEACzB%2COAAO%2CQACN%3BIACC%2CWAAA%3BIACA%2CoBAAA%3BIACA%2CiBAAA%3B%3BEACA%2COALK%2CQACN%2CwBAIE%3BIACA%2CaAAA%3B%3BEANH%2COAAO%2CQAUN%2CgBACC%3BIACC%2CYAAA%3B%3BEAZH%2COAAO%2CQAUN%2CgBACC%2CuBAEC%3BIACC%2CgBAAA%3B%3BEAdJ%2COAAO%2CQAkBN%3BIACC%2CgBAAA%3B%3BEAIF%2CiBACC%3BIACC%2CmBAAA%3B%3BEAKD%2C2BAAC%2CcACA%3BIACC%2CcAAA%3B%3BEAFF%2C2BAAC%2CcACA%2CSAEC%2CQAAO%3BIACN%2CiBAAA%3BIACA%2CQAAA%3B%3BEALH%2C2BAAC%2CcACA%2CSAMC%3BIACC%2CQAAA%3B%3B%3BAAsBL%2CQAd0B%3BEACzB%2CiBACC%3BIACC%2CmBAAA%3B%3B%3B%3B%3BAA2BH%2CQAhB0B%3BEAExB%2CiBAAC%2CgBACA%2CcACC%2CUACC%2CYACC%2CIAAG%3BIACF%2CaAAA%3B%3B%3BAA8BP%2CQArB0B%3BEAExB%2CiBAAC%2CgBACA%2CcACC%2CUACC%2CYACC%3BIACC%2CaAAA%3B%3BEACA%2CiBANJ%2CgBACA%2CcACC%2CUACC%2CYACC%2CgBAEE%3BIACA%2CcAAA%3B%3B%3B%3BAAYR%2CaACC%3BEACC%2CcAAA%3BEACA%2CeAAA%3B%3BAAHF%2CaACC%2CcAGC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3B%3B%3B%3BAAUH%2CqBACC%2CcACC%2CSACC%3BEACC%2CWAAA%3B%3BAAJJ%2CqBACC%2CcACC%2CSAIC%3BEACC%2CYAAA%3B%3BAAKJ%2CqBAAqB%2CaACpB%2CUACC%3BEACC%2CWAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAIH%2CsBAAsB%2CoBACrB%2CQAAO%3BEACN%2C4BAAA%3B%3BAAGF%2CaACE%3BEACA%2CmBAAA%3B%3B%3B%3BAAUF%2CMAAM%3BEACL%2CaAAA%3B%3BAAED%2C2BACC%3BEACC%2CmBAAA%3B%3BAAGF%3BEACC%2C8BAAA%3B%3BAADD%2CmBAEC%2CUACC%3BEACC%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAa%2CwBAAb%3BEACA%2C4BAAA%3B%3BAAbH%2CmBAgBC%3BEACC%2CuBAAA%3BEACA%2CgBAAA%3BEACA%2CuCAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3B%3BAArBF%2CmBAgBC%2CeAMC%3BEACC%2CeAAA%3B%3BAAvBH%2CmBAgBC%2CeAMC%2CWAEC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3B%3BAA1BJ%2CmBAgBC%2CeAaC%3BEACC%2CkBAAA%3BEACA%2CcAAA%3B%3BAA%5C%2FBH%2CmBAgBC%2CeAiBC%3BEACC%2CeAAA%3B%3BAAKF%2CIAAC%2CIAAI%2CwBACJ%3BEACC%2CuCAAA%3BEACA%2CaAAA%3B%3BAAGF%2CIAAC%2CsBACA%2CgBACC%3BAAFF%2CIAAC%2CsBACA%2CgBACc%3BEACZ%2CaAAA%3B%3BAAMJ%2CeACC%3BEACC%2CmBAAA%3BEACA%2C4BAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3B%3BAATF%2CeAWC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CmBAAA%3B%3BAAsBF%2CQAlB0B%3BEACzB%2C2BACC%2CQAAO%3BIACN%2CqBAAA%3B%3BEAFF%2C2BAIC%3BIACC%2CqBAAA%3B%3BEALF%2C2BAOC%3BIACC%2CsBAAA%3B%3BEARF%2C2BAUC%2CSAAQ%3BIACP%2CuBAAA%3B%3B%3BAAMH%3BEACC%2CsBAAA%3B%3BAAED%3BEACC%2CgBAAA%3BEACA%2CkBAAA%3B%3BAAED%3BEACC%2CaAAA%3B%3BAAED%2CsBACC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3B%3BAAIF%2CmBACC%2CqBACC%3BEACC%2CWAAA%3B%3BAAHH%2CmBAOC%3BEACC%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3B%3BAAXF%2CmBAcC%2CkBACC%3BEACC%2CmBAAA%3B%3BAAKH%2CQAAQ%2CUAAU%2CSACjB%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAAIH%2CQAAQ%2CKAAK%3BEACZ%2CiBAAA%3B%3BAADD%2CQAAQ%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMACX%2CQAAK%3BEACL%2CkBAAA%3B%3BAAJH%2CQAAQ%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMACX%2CQAAK%2CMAEJ%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CsCAAA%3B%3BAACA%2CQAfI%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMACX%2CQAAK%2CMAEJ%2CUAUC%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAjBL%2CQAAQ%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMAmBX%2CQAAK%3BEACL%2CSAAA%3BEACA%2CsCAAA%3BEACA%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3B%3BAA3BH%2CQAAQ%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMAmBX%2CQAAK%2CQAOL%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAA%5C%2FBL%2CQAAQ%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMAiCX%2CQAAK%2CMAAM%2COACV%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAACA%2CQAvCI%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMAiCX%2CQAAK%2CMAAM%2COACV%2CUAGC%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAED%2CQA3CI%2CKAAK%2CSAEZ%2CSAAQ%2CKAAK%2CMAiCX%2CQAAK%2CMAAM%2COACV%2CUAOC%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAOL%2CaACC%2CmBACC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3B%3BAALH%2CaACC%2CmBAMC%3BEACC%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAXH%2CaACC%2CmBAYC%2CSAAQ%2CUAAU%2CIACjB%3BEACC%2CgBAAA%3B%3BAAMD%2CaAFF%2CWACC%2CSAAQ%2CMACL%3BAAAF%2CaAFF%2CWACiB%2CmBACb%3BEACD%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3BEACA%2CUAAA%3B%3BAAJD%2CaAFF%2CWACC%2CSAAQ%2CMACL%2CmBAKD%3BAALD%2CaAFF%2CWACiB%2CmBACb%2CmBAKD%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAML%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACG%2CWAAA%3BEACA%2CUAAA%3BEACH%2CsBAAA%3BEACG%2CmBAAA%3B%3BAAPJ%2CgBAQC%3BEACC%2CSAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CmBAAA%3B%3BAAdF%2CgBAgBC%3BEACC%2CsBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAnBF%2CgBAgBC%2CiBAIC%2CMACC%2CGACC%3BEACC%2C6BAAA%3BEACA%2CgBAAA%3B%3BAACA%2CgBATJ%2CiBAIC%2CMACC%2CGACC%2CGAGE%3BEACA%2CgBAAA%3B%3BAAED%2CgBAZJ%2CiBAIC%2CMACC%2CGACC%2CGAME%2CUAAU%3BEACV%2CmBAAA%3B%3BAAED%2CgBAfJ%2CiBAIC%2CMACC%2CGACC%2CGASE%2CUAAU%3BEACV%2CmBAAA%3B%3BAAED%2CgBAlBJ%2CiBAIC%2CMACC%2CGACC%2CGAYE%2CIAAI%3BEACJ%2CkBAAA%3B%3BAAnCN%2CgBAgBC%2CiBAwBC%2CMACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CoBAAA%3B%3BAACA%2CgBA9BJ%2CiBAwBC%2CMACC%2CGACC%2CGAIE%2CUAAU%3BEACV%2CmBAAA%3B%3BAAED%2CgBAjCJ%2CiBAwBC%2CMACC%2CGACC%2CGAOE%2CUAAU%3BEACV%2CmBAAA%3B%3BAAED%2CgBApCJ%2CiBAwBC%2CMACC%2CGACC%2CGAUE%2CIAAI%3BEACJ%2CkBAAA%3B%3BAAED%2CgBAvCJ%2CiBAwBC%2CMACC%2CGACC%2CGAaE%3BEACA%2CgBAAA%3B%3BAAoBN%2CQAZ0B%3BEACzB%2CaACC%3BIACC%2CWAAA%3B%3BEAGF%3BIACC%2CWAAA%3B%3B%3BAAKF%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3B%3BAAND%2CYAOC%3BEACC%2C0BAAA%3BEACA%2CgBAAA%3B%3BAATF%2CYAWC%2CeACC%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAAfH%2CYAkBC%3BEACC%2CgBAAA%3BEACA%2CkBAAA%3B%3BAApBF%2CYAkBC%2CeAGC%3BEACC%2CmBAAA%3BEACA%2CWAAW%2CwBAAX%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CYAbF%2CeAGC%2CoBAUE%3BEACA%2CmBAAA%3B%3BAAhCJ%2CYAkBC%2CeAiBC%3BEACC%2CmBAAA%3BEACA%2CWAAW%2CwBAAX%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CyBAAA%3B%3BAACA%2CYA3BF%2CeAiBC%2CwBAUE%3BEACA%2CmBAAA%3B%3BAAMJ%2CkBACC%3BEACC%2CaAAA%3B%3BAAIF%2CMAAM%2CQACL%2COAAM%3BEACL%2CaAAA%3B%3BAAFF%2CMAAM%2CQAIL%2CmBACC%3BEACC%2CcAAA%3B%3BAAgBH%2CQAX0B%3BEACzB%2CMAAM%2CQACL%2CmBACC%3BIACC%2CyBAAA%3B%3B%3BAAeJ%2CQAR0B%2CuBAAwB%3BEACjD%2CgBACC%3BIACC%2CsBAAA%3B%3B%3BAAcH%2CQAT0B%3BEACzB%2CgBACC%3BIACC%2CmBAAA%3BIACA%2CuBAAA%3B%3B%3BAA8CH%2CQAzC0B%3BEACzB%2CqBACC%2CQAAO%3BIACN%2C4BAAA%3B%3BEAFF%2CqBAIC%2CSAAQ%3BIACP%2CmBAAA%3B%3BEAIF%2CQAAQ%2CKAAK%2CSACZ%2CSAAQ%2CKAAK%3BIACZ%2CcAAA%3BIACA%2CeAAA%3B%3BEAHF%2CQAAQ%2CKAAK%2CSACZ%2CSAAQ%2CKAAK%2CMAGX%2CQAAK%3BIACL%2CaAAA%3BIACA%2CaAAA%3B%3BEANH%2CQAAQ%2CKAAK%2CSACZ%2CSAAQ%2CKAAK%2CMAGX%2CQAAK%2CQAGL%3BIACC%2CWAAA%3B%3BEARJ%2CQAAQ%2CKAAK%2CSACZ%2CSAAQ%2CKAAK%2CMAUX%2CQAAK%3BIACL%2CkBAAA%3B%3BEAEC%2CQAdI%2CKAAK%2CSACZ%2CSAAQ%2CKAAK%2CMAUX%2CQAAK%2CMAEL%2CEACE%3BIACA%2CWAAA%3B%3BEAKA%2CQApBG%2CKAAK%2CSACZ%2CSAAQ%2CKAAK%2CMAUX%2CQAAK%2CMAOJ%2COACA%2CEACE%3BIACA%2CWAAA%3B%3B%3BAAsBP%2CQAZ0B%3BEACzB%2CaACC%2CmBACC%3BIACC%2CSAAA%3BIACA%2CsBAAA%3B%3B%3BAAOJ%3BEACC%2C2BAAA%3B%3BAADD%2CuBAEC%3BEACC%2CkBAAA%3B%3BAAHF%2CuBAEC%2CaAEC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3B%3BAANH%2CuBASC%2CeACC%2CcACC%3BEACC%2C2BAAA%3BEACA%2C2BAAA%3B%3B%3B%3BAAYJ%3BEACC%2CkCAAA%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAED%2CiBACC%2CaACC%3BEACC%2CWAAA%3BEACA%2CmBAAA%3B%3BAACA%2CiBAJF%2CaACC%2CWAGE%3BEACA%2CSAAS%2COAAT%3BEACA%2CaAAa%2CwBAAb%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAXJ%2CiBACC%2CaAaC%2CeACC%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAAlBJ%2CiBACC%2CaAoBC%3BEACC%2C0BAAA%3BEACA%2CgBAAA%3B%3BAAvBH%2CiBACC%2CaAwBC%3BEACC%2CgBAAA%3BEACA%2CkBAAA%3B%3BAA3BH%2CiBACC%2CaAwBC%2CeAGC%3BEAEC%2CmBAAA%3BEACA%2CWAAW%2CwBAAX%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CiBAtCH%2CaAwBC%2CeAGC%2CoBAWE%3BEACA%2CmBAAA%3B%3BAAxCL%2CiBACC%2CaAwBC%2CeAGC%2CoBAcC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2C%2BCAAhB%3BEACA%2C0BAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAACA%2CiBAjDJ%2CaAwBC%2CeAGC%2CoBAcC%2CIAQE%3BEACA%2CSAAS%2CEAAT%3B%3BAAnDN%2CiBACC%2CaAwBC%2CeA8BC%3BEACC%2CmBAAA%3BEACA%2CWAAW%2CwBAAX%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CyBAAA%3B%3BAACA%2CiBAhEH%2CaAwBC%2CeA8BC%2CwBAUE%3BEACA%2CmBAAA%3B%3BAAlEL%2CiBACC%2CaAwBC%2CeA8BC%2CwBAaC%3BEACC%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3B%3B%3BAA0BL%2CQAb0B%3BEACzB%2CaACC%2CgBACC%3BIACC%2CWAAA%3BIACA%2CgBAAA%3B%3BEAIH%3BIACC%2CaAAA%3B%3B%3BAAiBF%3BEAbC%2CaACC%2CgBACC%3BIACC%2CWAAA%3BIACA%2CgBAAA%3B%3BEAIH%3BIACC%2CaAAA%3B%3B%3BAAIF%2CeACC%2CMAAK%2CcACJ%3BEACC%2CqBAAA%3BEACA%2CYAAA%3B%3BAAJH%2CeACC%2CMAAK%2CcACJ%2CoBAGC%3BEACC%2CsBAAA%3B%3BAANJ%2CeACC%2CMAAK%2CcAQJ%3BEACC%2CqBAAA%3BEACA%2CWAAA%3B%3BAAXH%2CeACC%2CMAAK%2CcAYJ%3BEACC%2CiBAAA%3B%3BAAdH%2CeACC%2CMAAK%2CcAeJ%2CKAAI%2CIACH%3BEACC%2CwBAAA%3B%3BAAlBJ%2CeAuBC%2CWACC%2CQAAO%3BEACN%2CYAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CWAAW%2CwBAAX%3BEACA%2CyBAAA%3B%3BAACA%2CeAdF%2CWACC%2CQAAO%2CkBAaL%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAA7CJ%2CeAuBC%2CWAyBC%2CQAAO%3BEACN%2CuBAAA%3BEACA%2C4BAAA%3BEACA%2C0BAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CWAAW%2CwBAAX%3BEACA%2CyBAAA%3B%3BAACA%2CeAxCF%2CWAyBC%2CQAAO%2COAeL%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAAvEJ%2CeAuBC%2CWAmDC%3BEACC%2CsBAAA%3BEACA%2CyBAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CgBAAgB%2CwBAAhB%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CeAlEF%2CWAmDC%2CmBAeE%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAAMJ%2CoBACC%2CiBACC%3BEACC%2CgBAAA%3B%3BAAHH%2CoBACC%2CiBACC%2CUAEC%3BEACC%2CaAAA%3B%3BAAqEJ%2CQA%5C%2FD0B%3BEAExB%2CKAAC%2CcACA%2CMACC%2CKAAI%3BIACH%2CwBAAA%3BIACA%2CWAAA%3BIACA%2C2BAAA%3B%3BEAID%2CKATD%2CcAQA%2CKAAI%2CIAAI%2CSACN%3BIACA%2CwBAAA%3B%3BEAMJ%2CKACC%2COAAM%2CMACL%2CKAAI%3BIACH%2CWAAA%3BIACA%2CWAAA%3B%3BEAKH%3BIACC%2CaAAA%3B%3BEAGD%2CeACC%2CWACC%2CSAAQ%3BIACP%2CeAAA%3B%3BEAHH%2CeACC%2CWAIC%2CQAAO%3BIACN%2C2BAAA%3BIACA%2CWAAA%3B%3BEAPH%2CeACC%2CWAQC%2CQAAO%3BIACN%2C2BAAA%3BIACA%2CWAAA%3B%3BEAXH%2CeACC%2CWAYC%3BIACC%2C2BAAA%3BIACA%2CWAAA%3B%3BEAfH%2CeACC%2CWAgBC%3BIACC%2CSAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3B%3B%3B%3BAAYJ%2CyBACC%3BEACC%2CWAAA%3B%3BAAFF%2CyBACC%2CMAEC%2CGACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3B%3BAAkBL%2CQAX0B%3BEACzB%3BIACC%2CgBAAA%3B%3B%3B%3B%3BAA0BF%2CQAjB0B%3BEAGvB%2CaADD%2CcACE%3BIACA%2CgBAAA%3BIACA%2COAAA%3BIACA%2CMAAA%3BIACA%2CYAAA%3BIACA%2CoBAAA%3B%3B%3B%3BAASJ%2CoBACC%2CWACC%2CeACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAANL%2CoBACC%2CWACC%2CeAOC%3BEACC%2CeAAA%3B%3BAAVJ%2CoBACC%2CWACC%2CeAOC%2CGAEC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAOL%2CoBAAoB%2C0BACnB%2CQAAO%3BEACN%2CqBAAA%3B%3BAAFF%2CoBAAoB%2C0BAInB%3BEACC%2CqBAAA%3B%3BAAGF%2CcACC%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAALF%2CcACC%2CcAKC%3BEACC%2CcAAA%3BEACA%2CsBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3B%3BAAVH%2CcAaC%2CcAAa%3BEACZ%2CeAAA%3B%3BAACA%2CcAFD%2CcAAa%2CMAEX%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CkDAAhB%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3B%3BAAID%2CcADD%2CcAAa%2CMACX%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CmDAAhB%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3B%3BAAjCH%2CcAoCC%3BEACC%2CUAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3B%3BAAvCF%2CcAoCC%2CeAIC%3BEACC%2CWAAA%3B%3BAAzCH%2CcA4CC%3BEACC%2CWAAA%3BEACA%2CUAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3B%3BAApDF%2CcA4CC%2CgBASC%3BEACC%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2C8BAAA%3B%3BAA1DH%2CcA4CC%2CgBAgBC%3BEACC%2CmBAAA%3B%3BAA7DH%2CcAgEC%3BEACC%2CgBAAA%3B%3BAAjEF%2CcAmEC%3BEACC%2CUAAA%3BEACA%2CWAAA%3BEACA%2CiBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3B%3BAAzEF%2CcA2EC%3BEACC%2CYAAA%3BEACA%2CUAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAA%5C%2FEF%2CcAiFC%3BEACC%2CcAAA%3BEACA%2CaAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAAtFF%2CcAwFC%3BEACC%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3B%3BAA7FF%2CcA%2BFC%3BEACC%2CiBAAA%3B%3BAAGF%2CoBACC%2CiBACC%3BEACC%2CgBAAA%3B%3BAAcH%2CQAV0B%3BEACzB%2CcACC%3BIACC%2CWAAA%3B%3BEAFF%2CcAIC%3BIACC%2CWAAA%3B%3B%3BAAYH%2CQAR0B%3BEACzB%2CoBAAoB%2C0BACnB%3BIACC%2CoBAAA%3B%3B%3BAAwBH%2CQAnB0B%3BEACzB%2CoBACC%3BIACC%2CkBAAA%3BIACA%2CiBAAA%3B%3BEAID%2CmBAAC%3BIACA%2CkBAAA%3BIACA%2COAAA%3BIACA%2CMAAA%3B%3B%3B%3BAAQH%3BEACC%2CwBAAA%3B%3BAAIA%2CIAAC%2CIAAI%2CuBACJ%2CiBACC%3BEACC%2CgBAAA%3B%3B%3BAAUH%2CgBAAC%2CUACA%3BEACC%2CYAAA%3B%3BAAFF%2CgBAAC%2CUACA%2CcAEC%3BEACC%2CWAAA%3B%3BAAeJ%2CQAV0B%3BEAGvB%2CgBADA%2CUACC%3BIACA%2CaAAA%3B%3B%3BAAiBJ%2CQAX0B%3BEAExB%2CgBAAC%3BIACA%2CaAAA%3B%3BEACA%2CgBAFA%2CUAEC%3BIACA%2CcAAA%3B%3B%3BAAMJ%2CkBACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAAMH%3BEACC%2CmBAAA%3BEACG%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2C0BAAA%3BEACA%2CoBAAoB%2CwBAApB%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CgCAAA%3B%3BAACH%2CoBAAC%3BEACA%2CmBAAA%3B%3BAAeF%2CQAX0B%3BEACzB%2C2CACC%3BIACC%2CyBAAA%3B%3B%3B%3BAAQH%2CmBACC%2CQAAO%2CKACN%2CGACC%3BAAHkB%2CkBACpB%2CQAAO%2CKACN%2CGACC%3BAAHsC%2CsBACxC%2CQAAO%2CKACN%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAALJ%2CmBACC%2CQAAO%2CKAON%3BAARmB%2CkBACpB%2CQAAO%2CKAON%3BAARuC%2CsBACxC%2CQAAO%2CKAON%3BEACC%2CeAAA%3B%3BAATH%2CmBACC%2CQAAO%2CKAON%2CGAEC%3BAAVkB%2CkBACpB%2CQAAO%2CKAON%2CGAEC%3BAAVsC%2CsBACxC%2CQAAO%2CKAON%2CGAEC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAbJ%2CmBACC%2CQAAO%2CKAgBN%2CeACC%2CGACC%3BAAnBiB%2CkBACpB%2CQAAO%2CKAgBN%2CeACC%2CGACC%3BAAnBqC%2CsBACxC%2CQAAO%2CKAgBN%2CeACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3B%3BAArBL%2CmBACC%2CQAAO%2CKAgBN%2CeAOC%3BAAxBkB%2CkBACpB%2CQAAO%2CKAgBN%2CeAOC%3BAAxBsC%2CsBACxC%2CQAAO%2CKAgBN%2CeAOC%3BEACC%2CeAAA%3B%3BAAzBJ%2CmBACC%2CQAAO%2CKAgBN%2CeAOC%2CGAEC%3BAA1BiB%2CkBACpB%2CQAAO%2CKAgBN%2CeAOC%2CGAEC%3BAA1BqC%2CsBACxC%2CQAAO%2CKAgBN%2CeAOC%2CGAEC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3B%3B%3B%3BAAWL%3BEACE%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3BAAEF%2CyBAA0B%3BEACxB%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3B%3BAAEF%2CyBAA0B%2CEAAE%3BEAC1B%2CkBAAA%3BEACA%2CeAAA%3B%3BAAEF%2CyBAA0B%2CEAAC%3BEACzB%2CmBAAA%3B%3BAAEF%2CyBAA0B%2CEAAC%3BEACzB%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAEF%2CyBAA0B%2CEAAC%2CUAAW%3BEACpC%2CeAAA%3BEACA%2CiBAAA%3B%3BAAGF%2CQAAQ%2CKAAK%2CSAAU%3BEACnB%2CaAAA%3B%3BAAQJ%2CQAL0B%3BEACxB%3BIACE%2CaAAA%3B%3B%3BAAYJ%2CQAT0B%3BEACxB%2CqBAAsB%2CSAAQ%3BIAC5B%2CcAAA%3BIACA%2CWAAA%3BIACA%2CcAAA%3B%3B%3BAAKJ%3BEACE%2CuBAAA%3B%3BAAcF%2CQAX0B%3BEAExB%2CoBAAC%2CiBACA%2CQAAO%3BIACN%2C2BAAA%3BIACA%2CyBAAA%3B%3B%3BAAiBJ%3BEATE%2CoBAAC%2CiBACA%2CQAAO%3BIACN%2C2BAAA%3BIACA%2CyBAAA%3B%3B%3BAAMJ%3BEACI%2CwBAAA%3BEACA%2CwBAAA%3B%3BAAYJ%2CQAT0B%3BEACzB%3BIACC%2CuBAAA%3B%3B%3B%3BAAoCF%2CQA7B2B%3BEAC1B%2COAAO%2CQACN%3BIACC%2CyBAAA%3B%3BEAFF%2COAAO%2CQAIN%3BIACC%2C4BAAA%3B%3BEAIC%2COATI%2CQAON%2CSACC%2CEACE%2CIAAI%3BIACJ%2CiBAAA%3B%3BEAKJ%2CaACC%2CGACC%2CGACC%3BIACC%2CeAAA%3BIACA%2CkBAAA%3B%3B%3BAA0CL%2CQAlC2B%3BEAC1B%3BIACC%2CgBAAA%3B%3BEADD%2CQAEC%3BIACC%2CYAAA%3B%3BEAGF%3BIACC%2CYAAA%3BIACA%2CgBAAA%3B%3BEAFD%2CiBAGC%2CQAAO%3BIACN%2CYAAA%3B%3BEAGF%2CeACC%2CGACC%3BIACC%2CcAAA%3B%3BEAHH%2CeACC%2CGACC%2CGAEC%3BIACC%2CeAAA%3B%3BEAKJ%2COAAO%2CQACN%3BIACC%2CyBAAA%3BIACA%2CgBAAA%3B%3B%3BAAkDH%2CQA3C0B%3BEAEzB%3BIACC%2CaAAA%3B%3BEAED%2COAAO%2CQAEN%3BIACC%2CiBAAA%3B%3BEAHF%2COAAO%2CQAKN%3BIACC%2CyBAAA%3B%3BEAGF%2C0BACC%3BIACC%2CaAAA%3B%3BEAGF%3BIACC%2CSAAA%3B%3BEAED%2CaACC%3BIACC%2CUAAA%3B%3BEAGF%2CcACC%3BIACC%2C6BAAA%3B%3BEAGF%2CYACC%2CGACC%3BIACC%2CUAAA%3B%3B%3BAA4GJ%2CQApG0B%3BEACzB%2CSACC%3BIACC%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAGF%2CaACC%3BIACC%2CaAAA%3B%3BEAFF%2CaAKC%3BIACC%2CaAAA%3B%3BEANF%2CaAQC%3BIACC%2CaAAA%3BIACA%2CUAAA%3B%3BEAVF%2CaAYC%2CQAAO%2CQACN%3BIACC%2CWAAA%3BIACA%2CSAAA%3B%3BEAfH%2CaAYC%2CQAAO%2CQAKN%3BIACC%2CWAAA%3BIACA%2CcAAA%3BIACA%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CSAAA%3BIACA%2CWAAW%2CgBAAX%3B%3BEAvBH%2CaA0BC%2CcACC%3BIACC%2CkBAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3B%3BEACA%2CaALF%2CcACC%2COAIE%3BIACA%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3B%3BEAnCJ%2CaAuCC%2CMACC%3BIACC%2CYAAA%3B%3BEAzCH%2CaA4CC%3BIACC%2CSAAA%3B%3BEA7CF%2CaA%2BCC%2CgBAAe%3BIACd%2CSAAA%3B%3BEAhDF%2CaAkDC%3BIACC%2CaAAA%3B%3BEAnDF%2CaAqDC%3BIACC%2CgBAAA%3B%3BEAtDF%2CaAyDC%3BIACC%2CsBAAA%3BIACA%2CmBAAA%3B%3BEA3DF%2CaAyDC%2CQAGC%3BIACC%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CmBAAA%3B%3BEA%5C%2FDH%2CaAyDC%2CQAQC%2COAAM%3BIACL%2CgBAAA%3B%3B%3BEAQH%2CqBACC%2CQAAO%3BIACN%2CkBAAA%3BIACA%2CiBAAA%3B%3BEAMA%2CkBADD%2CoBACE%3BIACA%2CkBAAA%3BIACA%2CMAAA%3B%3B%3BAAsCJ%2CQA9B0B%3BEACzB%3BIACC%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CoBAAA%3B%3BEAED%2CYACC%2CGACC%3BIACC%2CWAAA%3BIACA%2CUAAA%3BIACA%2CmBAAA%3B%3BEAKH%2COAAO%2CQACN%3BIACC%2C4BAAA%3B%3BEAIC%2COANI%2CQAIN%2CSACC%2CEACE%2CIAAI%3BIACJ%2CiBAAA%3B%3B%3B%3BAAaL%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAACA%2CeAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAATF%2CeAWC%3BEACC%2CoCAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CuCAAA%3B%3BAAfF%2CeAWC%2CGAKC%3BEACC%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CcAAA%3B%3BAApBH%2CeAWC%2CGAKC%2CEAKC%2CwBACC%3BEACC%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CoBAAA%3B%3BAAeL%2CQAT2B%3BEAGxB%2CeADD%2CGACE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAeJ%2CQAV0B%2CuBAAwB%3BEACjD%2CeACC%3BIACC%2CoCAAA%3B%3BEACA%2CeAFD%2CGAEE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAgBJ%2CQAX0B%3BEACzB%2CeACC%3BIACC%2C8BAAA%3B%3BEACA%2CeAFD%2CGAEE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAiBJ%2CQAX0B%3BEACzB%2CcACC%3BIACC%2C4BAAA%3B%3BEAGF%3BIACC%2CiBAAA%3B%3B%3BAAeF%2CQAX0B%3BEACzB%2CeACC%3BIACC%2CWAAA%3BIACA%2CeAAA%3B%3B%3B%3B%3B%3B%3BAC9iIH%3BEACI%3BIACI%2CWAAW%2CsBAAqB%2CSAAhC%3B%3BEAGJ%3BIACI%2CWAAW%2CsBAAqB%2CgBAAhC%3B%3B%3BACNR%3BEAEQ%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BAC0CR%3BEAEQ%2CsBAAA%3BEACA%2CqBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BAAKJ%3BEClFA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BADiFJ%3BECtFA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BADqFJ%3BEC1FA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BADyFJ%3BEC9FA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BAD6FJ%3BEClGA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3B%3B%3B%3B%3BACiGR%2CwBAPA%2C8BACA%2C8BAA6B%3BEACzB%3BIACI%2CYAAA%3BIACA%2CUAAA%3B%3B%3B%3B%3B%3B%3B%3B%3BACkFR%2CwBAxB%2BC%3BEAC3C%2CcAAe%3BIACX%2CUAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3B%3BEAEJ%2CcAAe%2CuBAAsB%3BEACrC%2CcAAe%2CuBAAsB%3BIACjC%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CiBAAA%3BIACA%2CWAAA%3BIACA%2CMAAA%3BIACA%2CQAAA%3B%3BEAEJ%2CcAAe%2CuBAAsB%3BICwHrC%2CyBAAA%3B%3BEDrHA%2CcAAe%2CuBAAsB%3BICqHrC%2C4BAAA%3BIDnHI%2CQAAA%3B%3B%3BAEgER%2CwBAnB%2BC%3BEAC3C%2CkBACI%2CcACI%3BIACI%2CcAAA%3B%3BEAHZ%2CkBACI%2CcAKI%3BIACI%2CcAAA%3BIACA%2CgBAAA%3B%3BEARZ%2CkBACI%2CcAUI%3BIACI%2CcAAA%3BIACA%2CgBAAA%3B%3B%3BAC7ChB%2CmBACI%2CMACI%2CSACI%2CMACI%2CKAAI%2CIACA%3BEACI%2CaAAA%3B%3BACzIpB%2CgBALsC%3BECoFtC%2CiCA7BA%3BECsOA%2C0BACI%2CcDvOJ%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CoBAAA%3B%3BEAEA%2CiCALJ%2CGAKK%3BECiOL%2C0BACI%2CcDvOJ%2CGAKK%3BIACG%2CSAAS%2CIAAT%3B%3BEAuBR%2CiCAnBA%3BEC4NA%2C0BACI%2CcD7NJ%3BIACI%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CqBAAA%3B%3BEA%2BBJ%3BIACI%2CWAAA%3B%3BEA0BJ%3BEA6sDA%2C2BACI%3BEEjtDJ%2COACI%2CgBACI%2CeAGI%3BECkLZ%2CgBAGI%3BEA2EJ%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BEAwDhB%2CkBACM%3BEAKN%2CkBACI%3BEC1eJ%2CYACI%3BEC2IJ%2CuBLiuDI%3BEMhsCJ%2CcNgsCI%3BIA%5C%2FtDJ%2CUAAA%3B%3BEAEA%2CoBAAC%2CUAAU%3BEA4tDX%2C2BACI%2COA7tDH%2CUAAU%3BEEYX%2COACI%2CgBACI%2CeAGI%2CKFjBX%2CUAAU%3BEGmMX%2CgBAGI%2COHtMH%2CUAAU%3BEGiRX%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKH3Rf%2CUAAU%3BEGmVX%2CkBACM%2CYHpVL%2CUAAU%3BEGyVX%2CkBACI%2CUH1VH%2CUAAU%3BEIhJX%2CYACI%2COJ%2BIH%2CUAAU%3BEKJX%2CuBLiuDI%2COA7tDH%2CUAAU%3BEM6hBX%2CcNgsCI%2COA7tDH%2CUAAU%3BIACP%2CWAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CoBAAC%2CUAAU%3BEAutDX%2C2BACI%2COAxtDH%2CUAAU%3BEEOX%2COACI%2CgBACI%2CeAGI%2CKFZX%2CUAAU%3BEG8LX%2CgBAGI%2COHjMH%2CUAAU%3BEG4QX%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKHtRf%2CUAAU%3BEG8UX%2CkBACM%2CYH%5C%2FUL%2CUAAU%3BEGoVX%2CkBACI%2CUHrVH%2CUAAU%3BEIrJX%2CYACI%2COJoJH%2CUAAU%3BEKTX%2CuBLiuDI%2COAxtDH%2CUAAU%3BEMwhBX%2CcNgsCI%2COAxtDH%2CUAAU%3BIACP%2CYAAA%3B%3BEAEA%2CoBAHH%2CUAAU%2CGAGH%3BEAotDR%2C2BACI%2COAxtDH%2CUAAU%2CGAGH%3BEEIR%2COACI%2CgBACI%2CeAGI%2CKFZX%2CUAAU%2CGAGH%3BEG2LR%2CgBAGI%2COHjMH%2CUAAU%2CGAGH%3BEGyQR%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKHtRf%2CUAAU%2CGAGH%3BEG2UR%2CkBACM%2CYH%5C%2FUL%2CUAAU%2CGAGH%3BEGiVR%2CkBACI%2CUHrVH%2CUAAU%2CGAGH%3BEIxJR%2CYACI%2COJoJH%2CUAAU%2CGAGH%3BEKZR%2CuBLiuDI%2COAxtDH%2CUAAU%2CGAGH%3BEMqhBR%2CcNgsCI%2COAxtDH%2CUAAU%2CGAGH%3BIACA%2CWAAA%3B%3BEA6GR%3BEGuNA%2CUACI%3BEIVJ%2CgBACI%3BIP9MA%2CmBAAA%3B%3BEAsEJ%3BEK5NI%2COAAO%2CKAAM%2CeACT%3BEJmNJ%2COAAO%2CKAAM%2CiCACT%3BIDHR%2CcAAA%3B%3BEAyCA%3BEAyEgB%2CuBATZ%2CUAOI%2CYACI%2CQACK%3BECxMjB%2CwBD%2BLI%2CUAOI%2CYACI%2CQACK%3BECvMjB%2CuBD8LI%2CUAOI%2CYACI%2CQACK%3BEFzTjB%2CmBEgTI%2CUAOI%2CYACI%2CQACK%3BEQ9ajB%2CKAAK%2CKAAK%2CORqaN%2CUAOI%2CYACI%2CQACK%3BIAxEb%2CgBAAA%3B%3BEA8DJ%2CuBACI%2CUACI%2COACI%3BECjMZ%2CwBD%2BLI%2CUACI%2COACI%3BEChMZ%2CuBD8LI%2CUACI%2COACI%3BEFlTZ%2CmBEgTI%2CUACI%2COACI%3BEQvaZ%2CKAAK%2CKAAK%2CORqaN%2CUACI%2COACI%3BIACI%2CWAAA%3B%3BEAoBhB%3BIJtLA%2CkBAAA%3B%3BEI0OA%3BES%5C%2FVA%3BEC4CA%2CaAOI%3BECtJJ%2CsBACI%3BIfrDJ%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAiBA%2CyBAAC%3BEACD%2CyBAAC%3BESiED%2CcAKI%2CeTvEH%3BESkED%2CcAKI%2CeTtEH%3BESkHD%2CuBTnHC%3BESmHD%2CuBTlHC%3BES8ID%2CkBT%5C%2FIC%3BES%2BID%2CkBT9IC%3BEMgHD%2CkBAaI%2CeN9HH%3BEMiHD%2CkBAaI%2CeN7HH%3BEMkID%2COACI%2CgBACI%2CeNrIP%3BEMmID%2COACI%2CgBACI%2CeNpIP%3BEU8fD%2CeV%5C%2FfC%3BEU%2BfD%2CeV9fC%3BEOyTD%2CgBP1TC%3BEO0TD%2CgBPzTC%3BEOuYD%2CQACI%2CoBPzYH%3BEOwYD%2CQACI%2CoBPxYH%3BEOuYD%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeP%5C%2FYX%3BEOwYD%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeP9YX%3BEOuaD%2CqBACI%2COAAM%2CUPzaT%3BEOwaD%2CqBACI%2COAAM%2CUPxaT%3BEKmSD%2C0BACI%2CcLrSH%3BEKoSD%2C0BACI%2CcLpSH%3BEgByND%2CKAAK%2CMACD%2CeACI%2CQhB5NP%3BEgB0ND%2CKAAK%2CMACD%2CeACI%2CQhB3NP%3BEgByND%2CKAAK%2CMACD%2CeAEI%2CShB7NP%3BEgB0ND%2CKAAK%2CMACD%2CeAEI%2CShB5NP%3BEiBoaD%2C0BjBraC%3BEiBqaD%2C0BjBpaC%3BEEmHD%2C0BACI%2CQAAO%2CKAAM%2COAAM%2CyBFrHtB%3BEEoHD%2C0BACI%2CQAAO%2CKAAM%2COAAM%2CyBFpHtB%3BEkBugBD%2CYlBxgBC%3BEkBwgBD%2CYlBvgBC%3BEkBiiBD%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBlBtiBtB%3BEkBkiBD%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBlBriBtB%3BEkBkiBD%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBlBtiBtB%3BEkBmiBD%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBlBriBtB%3BEkBmiBD%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBlBtiBtB%3BEkBoiBD%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBlBriBtB%3BEmBocD%2CYASI%2CQAAO%2CMnB9cV%3BEmBqcD%2CYASI%2CQAAO%2CMnB7cV%3BEmBylBG%2COAAC%2CQnB1lBJ%3BEmB0lBG%2COAAC%2CQnBzlBJ%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CyBAAC%3BES4DD%2CcAKI%2CeTjEH%3BES6GD%2CuBT7GC%3BESyID%2CkBTzIC%3BEM2GD%2CkBAaI%2CeNxHH%3BEM6HD%2COACI%2CgBACI%2CeN%5C%2FHP%3BEUyfD%2CeVzfC%3BEOoTD%2CgBPpTC%3BEOkYD%2CQACI%2CoBPnYH%3BEOkYD%2CQAKI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CePzYX%3BEOkaD%2CqBACI%2COAAM%2CUPnaT%3BEK8RD%2C0BACI%2CcL%5C%2FRH%3BEgBoND%2CKAAK%2CMACD%2CeACI%2CQhBtNP%3BEgBoND%2CKAAK%2CMACD%2CeAEI%2CShBvNP%3BEiB%2BZD%2C0BjB%5C%2FZC%3BEE8GD%2C0BACI%2CQAAO%2CKAAM%2COAAM%2CyBF%5C%2FGtB%3BEkBkgBD%2CYlBlgBC%3BEkB4hBD%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBlBhiBtB%3BEkB6hBD%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBlBhiBtB%3BEkB8hBD%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBlBhiBtB%3BEmB%2BbD%2CYASI%2CQAAO%2CMnBxcV%3BEmBolBG%2COAAC%2CQnBplBJ%3BIACG%2CWAAA%3B%3BEI2hBJ%3BEA69BA%3BEgB%5C%2F8CA%2COAAO%3BEAMP%3BEAWA%3BECuFA%2CyBAWI%3BEXkhBA%2CMAAC%3BERjkBL%2C0BACI%2CQAAO%2CKAAM%2COAAM%2CyBAGf%2CeAAc%2CIAAI%2CSAAU%3BEgB0apC%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEALpC%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEAJpC%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEZvbpC%3BEI8YA%2CeAEI%3BEYnJJ%2CeACI%3BIlByKJ%2CsBAAA%3B%3BEAsBA%3BEmB9dA%3BInBwcA%2CsBAAA%3B%3BEAgCA%2C8BACI%2CUACM%3BEAFV%2C8BACI%2CUAEI%2CQAAU%3BIJvUlB%2CgBAAA%3B%3BEwBulBA%2C8BpBlRI%2CUACM%2CSoBiRT%2CIAAI%2CSACC%3BEADN%2C8BpBlRI%2CUAEI%2CQAAU%2CSoBgRjB%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2C8BpBlRI%2CUACM%2CSoBiRT%2CIAAI%2CSAeC%3BEAfN%2C8BpBlRI%2CUAEI%2CQAAU%2CSoBgRjB%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEpBpSR%2C8BACI%2CUACM%2CSoB8KR%3BEpBhLF%2C8BACI%2CUAEI%2CQAAU%2CSoB6KhB%3BIxBpfF%2CeAAA%3BIwBwfI%2CqBAAA%3B%3BEA6HA%2C8BpBhTA%2CUACM%2CSoB6ST%2COAEI%3BEAAD%2C8BpBhTA%2CUAEI%2CQAAU%2CSoB4SjB%2COAEI%3BEAAD%2C8BpBhTA%2CUACM%2CSoB8ST%2CSACI%3BEAAD%2C8BpBhTA%2CUAEI%2CQAAU%2CSoB6SjB%2CSACI%3BIACG%2CaAAA%3B%3BEpB5SI%2C8BALR%2CUACM%2CSAIG%2CIAAI%2CcAAc%3BEAAnB%2C8BALR%2CUAEI%2CQAAU%2CSAGL%2CIAAI%2CcAAc%3BIACf%2CgBAAA%3B%3BEAkEhB%2CwBAlBA%2CUACI%3BEC5ZJ%2CwBD2ZA%2CUACI%3BEC3ZJ%2CuBD0ZA%2CUACI%3BEF7gBJ%2CmBE4gBA%2CUACI%3BEQloBJ%2CKAAK%2CKAAK%2CORioBV%2CUACI%3BIJ5XJ%2CmBAAA%3BIwB%2BpBA%2CsBAAA%3BIACA%2CqBAAA%3BIxBhqBA%2CUAAA%3BIwBmqBA%2CmBAAA%3B%3BEAEA%2CwBpB1SA%2CUACI%2COoBySA%3BEnBrsBJ%2CwBD2ZA%2CUACI%2COoBySA%3BEnBpsBJ%2CuBD0ZA%2CUACI%2COoBySA%3BEtBtzBJ%2CmBE4gBA%2CUACI%2COoBySA%3BEZ36BJ%2CKAAK%2CKAAK%2CORioBV%2CUACI%2COoBySA%3BIACA%2CWAAA%3B%3BEpBvSI%2CwBAJR%2CUACI%2COAGK%2CeAAe%3BEAChB%2CwBALR%2CUACI%2COAIK%2CeAAe%3BEChaxB%2CwBD2ZA%2CUACI%2COAGK%2CeAAe%3BEC%5C%2FZxB%2CwBD2ZA%2CUACI%2COAIK%2CeAAe%3BEC%5C%2FZxB%2CuBD0ZA%2CUACI%2COAGK%2CeAAe%3BEC9ZxB%2CuBD0ZA%2CUACI%2COAIK%2CeAAe%3BEFjhBxB%2CmBE4gBA%2CUACI%2COAGK%2CeAAe%3BEFhhBxB%2CmBE4gBA%2CUACI%2COAIK%2CeAAe%3BEQtoBxB%2CKAAK%2CKAAK%2CORioBV%2CUACI%2COAGK%2CeAAe%3BEQroBxB%2CKAAK%2CKAAK%2CORioBV%2CUACI%2COAIK%2CeAAe%3BIACZ%2CgBAAA%3B%3BEAYZ%2CwBAlBA%2CUACI%2COAQI%3BECpaR%2CwBD2ZA%2CUACI%2COAQI%3BECnaR%2CuBD0ZA%2CUACI%2COAQI%3BEFrhBR%2CmBE4gBA%2CUACI%2COAQI%3BEQ1oBR%2CKAAK%2CKAAK%2CORioBV%2CUACI%2COAQI%3BIACI%2CUAAA%3BIACA%2CWAAA%3B%3BEA2BZ%3BIJjaA%2CWAAA%3B%3BEIqhBA%3BEU1iBA%2CKAAK%2COAAO%3BEW%5C%2FNZ%3BEpBqOA%3BIDqiBI%2CgBAAA%3B%3BEADJ%2C0BAGI%3BEU7iBJ%2CKAAK%2COAAO%2CSV6iBR%3BEqB5wBJ%2CqBrB4wBI%3BECviBJ%2CyBDuiBI%3BIJpyBJ%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEI0xBA%2C0BAOI%2CQAAU%3BEUjjBd%2CKAAK%2COAAO%2CSVijBR%2CQAAU%3BEqBhxBd%2CqBrBgxBI%2CQAAU%3BEC3iBd%2CyBD2iBI%2CQAAU%3BIACN%2CaAAA%3B%3BEAUR%3BEMxSA%2CoBAMI%3BEAyBJ%2CaAmBI%2COASI%3BEAiIR%3BIN6GI%2CeAAA%3BIACA%2CgBAAA%3B%3BEAmMJ%3BEGxjBA%2CqBAuBI%3BEA4BJ%2CoBAKI%3BEAJJ%2CqBAII%3BEAHJ%2CoBAGI%3BEAFJ%2CqBAEI%3BEADJ%2CgBACI%3BEkB5dJ%2CuBACI%3BEdyVJ%2CwBACI%3BIX3GJ%2CiBAAA%3B%3BEIqwBA%3BEIlgCA%2CcAAc%3BEkBCd%2CcAAc%3BER4gBd%2CcAAc%3BIlBhRd%2CiBAAA%3B%3BEIqzBA%3BEc%5C%2FgBA%2CsBACI%2CQAAO%3BIlBvSX%2CqBAAA%3BI2B9QA%2CqBAAA%3B%3BEAMA%2CiBAAC%3BET8iBD%2CsBACI%2CQAAO%2CMS%5C%2FiBV%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CS4B%5C%2FQS%2CO5B%2BQT%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CiBAAA%3BIAAA%2CsBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEvBsuBA%2CiBAAC%3BEczgBD%2CsBACI%2CQAAO%2CMdwgBV%3BIACG%2C0BAAA%3B%3BEAwQJ%3BE0B5yCA%3BEC4FA%2CQAAS%2COAAM%2COAAQ%2COACnB%2CMAAK%2CIAAI%2CkBAAkB%2CIAAI%3BI3B%2BrCnC%2CaAAA%3B%3BEAsCA%3BEFvtCA%3BEgBscA%3BIdkxBI%2CeAAA%3BIACA%2CiBAAA%3B%3BEA%2BCJ%2CyBACI%2CWACI%2CoBACI%3BEFvwCZ%2C4BEqwCI%2CWACI%2CoBACI%3BEFtwCZ%2CyBEowCI%2CWACI%2CoBACI%3BEcp1BZ%2CQdk1BI%2CWACI%2CoBACI%3BEcn1BZ%2CuBdi1BI%2CWACI%2CoBACI%3BEcl1BZ%2CiBdg1BI%2CWACI%2CoBACI%3BIAEI%2CoBAAA%3B%3BEAmChB%3BI4B3tCA%2CYAAA%3B%3BE5B2tCA%2C2B4BztCE%2CQAGI%2CKACI%3BE5BqtCV%2C2B4BxtCE%2CQAEI%2CKACI%3BE5BqtCV%2C2B4BvtCE%2CQACI%2CKACI%3BE5BqtCV%2C2B4BztCE%2CQAGI%2CKAEI%3BE5BotCV%2C2B4BxtCE%2CQAEI%2CKAEI%3BE5BotCV%2C2B4BvtCE%2CQACI%2CKAEI%3BIACE%2CYAAA%3B%3BE5BmtCZ%2C2B4B9sCE%2CQACI%2CKACI%3BE5B4sCV%2C2B4B9sCE%2CQACI%2CKAEI%3BIhCoCV%2C6BAAA%3B%3BEIorCA%3BEGhiCA%2CQA2BI%3BEFnIJ%3BEYiOA%3BIbw6BI%2CkBAAA%3B%3BEADJ%2CkBAGI%3BEAHJ%2CkBAII%3BEGpiCJ%2CQA2BI%2CSHwgCA%3BEGniCJ%2CQA2BI%2CSHygCA%3BEC5oCJ%2C6BD2oCI%3BEC3oCJ%2C6BD4oCI%3BEa36BJ%2CyBb06BI%3BEa16BJ%2CyBb26BI%3BIACI%2CkBAAA%3BIACA%2CUAAA%3B%3BEANR%2CkBAQI%3BEGxiCJ%2CQA2BI%2CSH6gCA%3BEChpCJ%2C6BDgpCI%3BEa%5C%2F6BJ%2CyBb%2B6BI%3BIACI%2CqBAAA%3BIACA%2CYAAA%3B%3BEAVR%2CkBAaI%3BEG7iCJ%2CQA2BI%2CSHkhCA%3BECrpCJ%2C6BDqpCI%3BEap7BJ%2CyBbo7BI%3BIJjsCJ%2CiBAAA%3BIImsCQ%2CUAAA%3B%3BEAfR%2CkBAkBI%3BEGljCJ%2CQA2BI%2CSHuhCA%3BEC1pCJ%2C6BD0pCI%3BEaz7BJ%2CyBby7BI%3BIACI%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAkER%3BEE94CA%3BEI8YA%2CeAEI%3BEYnJJ%2CeACI%3BItB3HJ%2CUAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BII4mCL%2CiBAAA%3BIACA%2CkBAAA%3B%3BEAgVJ%2C2BACI%2COAGM%3BEKpuDV%2CuBLiuDI%2COAGM%3BEMnsCV%2CcNgsCI%2COAGM%3BIACE%2CSAAA%3BIACA%2CiBAAA%3B%3BEANZ%2C2BACI%2COAGM%2CSAIE%3BEKxuDZ%2CuBLiuDI%2COAGM%2CSAIE%3BEMvsCZ%2CcNgsCI%2COAGM%2CSAIE%3BIJvmDZ%2CiBAAA%3B%3BEI%2BlDA%2C2BACI%2COAYI%3BEK7uDR%2CuBLiuDI%2COAYI%3BEM5sCR%2CcNgsCI%2COAYI%3BIJ5mDR%2CiBAAA%3B%3BEI%2BlDA%2C2BAkBI%2CiBACI%3BEKnvDR%2CuBLkvDI%2CiBACI%3BEMltCR%2CcNitCI%2CiBACI%3BIACI%2CaAAA%3BIACA%2COAAA%3BIACA%2CkBAAA%3B%3BE8B%5C%2F2DZ%3BIlC0PA%2CeAAA%3BIAAA%2CmBAAA%3B%3BEoB%5C%2FNA%3BEACA%3BEACA%2CYAAa%2CQAAO%3BEACpB%2COAAO%3BEACP%2COAAO%3BEACP%2CaAAgB%3BEAChB%2CaAAgB%3BEAChB%2CMAAM%2CSAAS%3BEACf%3BEACA%3BIACI%2CsBAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3B%3BEAGJ%3BIACI%2CWAAA%3B%3BEAGJ%3BIACI%2CcAAA%3B%3BEAGJ%2COAAO%3BIAGH%2CiBAAA%3B%3BEarDA%2CCAAC%2CmBAAwB%2CQbkDtB%3BIpBoMP%2CWAAA%3BIAgKA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiCrZL%2CCAAC%2CoBAAyB%2CQb%2BCvB%3BIpBoMP%2CmBAAA%3BIiC9KA%2CqBAAA%3BIjC8UA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiClZL%2CCAAC%2CyBAA%2BB%2CQb4C7B%3BIpBoMP%2CmBAAA%3BIiClLA%2CYAAA%3BIjCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiC%5C%2FYL%2CCAAC%2C0BAAgC%2CQbyC9B%3BIpBoMP%2CmBAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEoBhWT%3BIAEI%2CiBAAA%3B%3BEa3CA%2CCAAC%2CoBAAyB%3BIjCuO9B%2CmBAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiCtYL%2CCAAC%2CyBAA%2BB%3BIjCoOpC%2CmBAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiCnYL%2CCAAC%2C0BAAgC%3BIjCiOrC%2CmBAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEoB1VT%2C2BAA4B%3BIACxB%2CgBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%3BIAEI%2CYAAA%3BIACA%2CgBAAA%3B%3BEa3CA%2CCAAC%2CoBAAyB%3BIjC2N9B%2CmBAAA%3BIiClLA%2CYAAA%3BIjCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiC1XL%2CCAAC%2CyBAA%2BB%3BIjCwNpC%2CmBAAA%3BIiClLA%2CYAAA%3BIjCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEiCvXL%2CCAAC%2C0BAAgC%3BIjCqNrC%2CmBAAA%3BIiClLA%2CYAAA%3BIjCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEoB9UT%2C0BACI%3BIACI%2CgBAAA%3B%3BEAFR%2C0BAKI%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAIR%2CMAAM%3BIACF%2CkBAAA%3B%3BEe6IJ%3BIACI%2CaAAA%3B%3BEAGJ%3BInCiJA%2CsBAAA%3BIACQ%2CcAAA%3BIAMR%2CwBAAA%3BIACQ%2CgBAAA%3BImCtJJ%2CmBAAA%3B%3BEAGJ%3BIACI%2CaAAA%3B%3BEAGJ%2C0BAA6B%3BIACzB%2CaAAA%3B%3BEAGJ%2C0BACM%3BIACE%2CcAAA%3B%3BECXR%3BIpCSA%2CmBAAA%3BIAAA%2CgBAAA%3BIoCJI%2CeAAA%3BIACA%2CUAAA%3BIACA%2CiBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAEA%2CWAAC%3BIACG%2CaAAA%3B%3BEAfR%2CWAkBI%3BIACI%2CaAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3B%3BEAtBR%2CWAyBI%2CGAAE%3BIpChBN%2CgBAAA%3B%3BEoCTA%2CWA6BI%2CGAAE%3BIACE%2CkBAAA%3B%3BEA9BR%2CWAiCI%3BIpCxBJ%2CkBAAA%3BIoC0BQ%2CqBAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CWALJ%2CQAKK%3BIACG%2CeAAA%3BIACA%2CgBAAA%3B%3BEAIA%2CWAXR%2CQAUK%2CMACI%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CQAAQ%2CgBAAR%3BIACA%2CUAAA%3B%3BEApDhB%2CWAiCI%2CQAuBM%3BIpC%5C%2FCV%2CcAAA%3BIAAA%2CiBAAA%3BIAAA%2CeAAA%3BIAAA%2CqBAAA%3BIoCsDY%2CsBAAA%3BIACA%2CkBAAA%3BIACA%2CqBAAA%3B%3BEAEA%2CWAlCR%2CQAuBM%2CaAWG%3BEAAQ%2CWAlCjB%2CQAuBM%2CaAWY%3BIpC1DtB%2CWAAA%3BIAAA%2CqBAAA%3B%3BEoCkEQ%2CWA1CJ%2CQA0CK%2COAEK%3BEADN%2CWA3CJ%2CQA2CK%2CWACK%3BIpCpEd%2CqBAAA%3BIAAA%2CmBAAA%3BIAAA%2CqBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3BIoC2EgB%2CqBAAA%3B%3BEAIR%2CWAvDJ%2CQAuDK%2COAAO%2CMAAS%3BIACb%2C4BAAA%3B%3BEAGJ%2CWA3DJ%2CQA2DK%2COACK%3BIACE%2CmBAAA%3B%3BEAFR%2CWA3DJ%2CQA2DK%2COACK%2CaAGI%3BIACE%2CkBAAA%3BIACA%2CQAAA%3BIpCzFpB%2CqBAAA%3BI2BhOA%2CqBAAA%3B%3BESmTQ%2CWA3DJ%2CQA2DK%2COACK%2CaAGI%2CgBTnGhB%3BI3BhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE2B2CA%2CWSkPI%2CQA2DK%2COACK%2CaAGI%2CgBTjTjB%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqC9NQ%2COrC8NR%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CsBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BESlFA%2CWAiCI%2CQA8EI%3BIpCtGR%2CgBAAA%3BIAAA%2CsBAAA%3BIAAA%2CyCAAA%3BIAAA%2CgBAAA%3BIAAA%2CgBAAA%3BIAAA%2CUAAA%3BIoC8GY%2CaAAA%3BIACA%2COAAA%3BIACA%2CoBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIpClHZ%2CgBAAA%3B%3BEoCTA%2CWAiCI%2CQA8EI%2CSAyIF%3BIpC%5C%2FON%2CgBAAA%3B%3BEoCkPQ%2CWA1NJ%2CQA8EI%2CSAyIF%2CKAGG%3BEACD%2CWA3NJ%2CQA8EI%2CSAyIF%2CKAIG%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAGJ%2CWAlOJ%2CQA8EI%2CSAyIF%2CKAWG%3BIpC1PT%2CWAAA%3BIAAA%2CUAAA%3BIAAA%2CUAAA%3BIA8CA%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIAhDA%2CyBAAA%3BIoC%2BPY%2CUAAA%3B%3BEAGJ%2CWA1OJ%2CQA8EI%2CSAyIF%2CKAmBG%3BIpCpNT%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIAhDA%2CyBAAA%3BIAAA%2CWAAA%3BIAAA%2CUAAA%3BIAAA%2CUAAA%3BIoCuQY%2CUAAA%3B%3BEA3IA%2CWApGR%2CQA8EI%2CSAsBK%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3B%3BEA7IhB%2CWAiCI%2CQA8EI%2CSAiCI%3BIACI%2CcAAA%3BIACA%2CoBAAA%3BIpCzIhB%2CcAAA%3BIAAA%2CiBAAA%3B%3BEoCgJgB%2CWAxHZ%2CQA8EI%2CSAiCI%2CEASK%3BEACD%2CWAzHZ%2CQA8EI%2CSAiCI%2CEAUK%3BIpCjJjB%2CmBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3B%3BEoCTA%2CWAiCI%2CQA8EI%2CSAmDI%2CQAAU%3BIpCzJtB%2CqBAAA%3BIAAA%2CmBAAA%3BIAAA%2CuBAAA%3BIAAA%2CWAAA%3B%3BEoCTA%2CWAiCI%2CQA8EI%2CSA4DI%3BIACI%2CSAAA%3BIACA%2CqBAAA%3B%3BEA7KhB%2CWAiCI%2CQA8EI%2CSAiEI%3BIACI%2CqBAAA%3BIACA%2CWAAA%3B%3BEAlLhB%2CWAiCI%2CQA8EI%2CSAsEI%3BIACI%2CSAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CWAxJZ%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%3BIACE%2CkBAAA%3BIACA%2CUAAA%3BIpCpL5B%2CqBAAA%3BI2BhOA%2CqBAAA%3B%3BESgZgB%2CWAxJZ%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%2CgBT9LxB%3BI3BhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE2B2CA%2CWSkPI%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%2CgBT5YzB%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqCxPQ%2COrCwPR%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CsBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BES0HQ%2CWA3KJ%2CQA2KK%3BIACG%2CkBAAA%3BIpCpMZ%2CqBAAA%3BI2BhOA%2CqBAAA%3B%3BEAMA%2CWSkPI%2CQA2KK%2CKT7ZR%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CoBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqCzPgB%2COrCyPhB%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CsBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BESkIY%2CWAnLR%2CQA2KK%2CKAQI%3BIACG%2CaAAA%3B%3BEAGJ%2CWAvLR%2CQA2KK%2CKAYI%3BIACG%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAGJ%2CWA9LR%2CQA2KK%2CKAmBI%2CMAAS%3BIACN%2C4BAAA%3B%3BEApBR%2CWA3KJ%2CQA2KK%2CKAuBG%3BIACI%2CcAAA%3B%3BEDnNhB%2CMAAM%2COACF%3BEADJ%2CMAAM%2COAEF%3BIACI%2CqBAAA%3B%3BEGpGR%3BItCyFA%2CgCAAA%3B%3BEuC1OA%2CQAAQ%2CKAAK%3BICrDb%2CkBAAA%3BIACA%2CUAAA%3BIDsDI%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3B%3BEvCdJ%2CQuCUQ%2CKAAK%2CMvCVZ%3BEACD%2CQuCSQ%2CKAAK%2CMvCTZ%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQuCIQ%2CKAAK%2CMvCJZ%3BIACG%2CWAAA%3B%3BEuCGJ%2CQAAQ%2CKAAK%2CMClDX%2CQAAK%3BIACH%2CWAAA%3BIACA%2CWAAA%3B%3BEDgDJ%2CQAAQ%2CKAAK%2CMClDX%2CQAAK%2CMAID%3BIxCwRN%2CYAAA%3BIwCtRQ%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BED0CR%2CQAAQ%2CKAAK%2CMCtCX%2CQAAK%3BIxCgRP%2CgBAAA%3BIwC7QI%2CsBAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3B%3BExCsBJ%2CQuCUQ%2CKAAK%2CMCtCX%2CQAAK%2CQxC4BN%3BEACD%2CQuCSQ%2CKAAK%2CMCtCX%2CQAAK%2CQxC6BN%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQuCIQ%2CKAAK%2CMCtCX%2CQAAK%2CQxCkCN%3BIACG%2CWAAA%3B%3BEwC3BA%2CQD8BI%2CKAAK%2CMCtCX%2CQAAK%2CQAQF%3BIACG%2CcAAA%3B%3BED6BR%2CQAAQ%2CKAAK%2CMCoBX%2CQAAK%3BIxCsNP%2CkBAAA%3B%3BEuC1OA%2CQAAQ%2CKAAK%2CMCoBX%2CQAAK%2CMAED%3BIxCoNN%2CgBAAA%3BIAAA%2CiBAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3BIAAA%2CmBAAA%3BIAAA%2CsBAAA%3BIwC%5C%2FLQ%2CmBAAA%3BIxC%2BLR%2CYAAA%3BIAAA%2C0BAAA%3B%3BEyCjJA%2CQFzFQ%2CKAAK%2CMCoBX%2CQAAK%2CMAED%2CUCmEL%3BIzCiJD%2CcAAA%3BIAAA%2CqBAAA%3B%3BEyC5IA%2CQF9FQ%2CKAAK%2CMCoBX%2CQAAK%2CMAED%2CUCwEL%3BIzC4ID%2CcAAA%3BIAAA%2CqBAAA%3B%3BEyCvIA%2CQFnGQ%2CKAAK%2CMCoBX%2CQAAK%2CMAED%2CUC6EL%3BIzCuID%2CWAAA%3BIAAA%2CqBAAA%3B%3BEwC1LI%2CQDhDI%2CKAAK%2CMCoBX%2CQAAK%2CMA4BF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDjDI%2CKAAK%2CMCoBX%2CQAAK%2CMA6BF%2CIAAI%2CWAAc%2CUAAO%3BIxCyL9B%2CmBAAA%3B%3BEwCrLI%2CQDrDI%2CKAAK%2CMCoBX%2CQAAK%2CMAiCF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDtDI%2CKAAK%2CMCoBX%2CQAAK%2CMAkCF%2COAAU%3BEACX%2CQDvDI%2CKAAK%2CMCoBX%2CQAAK%2CMAmCF%2COAAU%2CUAAO%3BEAClB%2CQDxDI%2CKAAK%2CMCoBX%2CQAAK%2CMAoCF%2COAAU%2CUAAO%3BIxCkLtB%2CmBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3B%3BEwC5KI%2CQD9DI%2CKAAK%2CMCoBX%2CQAAK%2CMA0CF%2COAAU%3BEACX%2CQD%5C%2FDI%2CKAAK%2CMCoBX%2CQAAK%2CMA2CF%2COAAU%2CUAAO%3BEAClB%2CQDhEI%2CKAAK%2CMCoBX%2CQAAK%2CMA4CF%2COAAU%2CUAAO%3BIxC0KtB%2CmBAAA%3B%3BEuC1OA%2CQAAQ%2CKAAK%2CMCqEX%2CQAAK%3BIxCqKP%2CmBAAA%3BIwCnKI%2CgBAAA%3BIACA%2C4BAAA%3BIxCkKJ%2CsBAAA%3B%3BEuCnOQ%2CQAPA%2CKAAK%2CMAMT%2CMAAK%2CMAAO%2CEACP%3BIACG%2CaAAA%3B%3BEG5BZ%3BI1C8PA%2CgBAAA%3B%3BEApPA%2CgBAAC%3BEACD%2CgBAAC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CgBAAC%3BIACG%2CWAAA%3B%3BE0CjBJ%2CgBCmEA%3BIACI%2CWAAA%3B%3BEDpEJ%2CgBClBA%3BEDkBA%2CgBCjBA%3BIACI%2CqBAAA%3B%3BEDgBJ%2CgBClBA%2CSAQI%2CEAAC%3BEDUL%2CgBCjBA%2CWAOI%2CEAAC%3BIACG%2CqBAAA%3B%3BEDSR%2CgBCJA%2CSACI%3BI3CiQJ%2CkBAAA%3B%3BE0C9PA%2CgBCMA%2CWAKI%2CEAAC%3BI3CmPL%2CeAAA%3B%3BE0C9PA%2CgBAGM%3BEAHN%2CgBAIM%3BIACE%2CgBAAA%3B%3BEALR%2CgBAGM%2CWAIE%3BEAPR%2CgBAIM%2CaAGE%3BIACI%2CgBAAA%3BIACA%2CWAAA%3B%3BEE8BZ%2CcACI%2CUACI%2CiBACI%3BIACI%2CqBAAA%3BIACA%2CWAAA%3B%3BEAIA%2CcARZ%2CUACI%2CiBAMI%2CQACK%3BIACG%2CeAAA%3B%3BEC2FhB%2CYAAC%2CYACG%3BI7CiHR%2C6BAAA%3BI6C%5C%2FGY%2CiBAAA%3B%3BEC%5C%2FBZ%3BIACI%2CUAAA%3BIACA%2CUAAA%3B%3BEC0QJ%2CuBAAwB%3BIAEhB%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3BEANR%2CuBAAwB%2C2BASpB%2CqBAAoB%2CIAAI%3BIACpB%2CmBAAA%3B%3BEAVR%2CuBAAwB%2C2BAapB%2C2BAA2B%3BIAEnB%2CeAAA%3B%3BEAfZ%2CuBAAwB%2C2BAapB%2C2BAA2B%2CoBAKvB%3BIACI%2CgBAAA%3B%3BEAnBZ%2CuBAAwB%2C2BAuBpB%3BEAvBJ%2CuBAAwB%2C2BAwBpB%3BIpDtbA%2CaAAA%3BIoDybI%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3BIACA%2CkBAAA%3B%3BEA9BR%2CuBAAwB%2C2BAiCpB%3BIACI%2CcAAA%3B%3BEAlCR%2CuBAAwB%2C2BAqCpB%3BIACI%2CcAAA%3B%3BEAIR%2CuBAAwB%2CiBAAgB%3BIACpC%2CwBAAA%3B%3BEAGJ%2C0BAA2B%3BIAEnB%2CcAAA%3BIACA%2CYAAA%3B%3BEAHR%2C0BAA2B%2CqBAMvB%2CqBAAoB%3BIAChB%2CcAAA%3B%3BEAIR%2CoBAAoB%3BIAEZ%2CiBAAA%3BIACA%2C8BAAA%3B%3BEAHR%2CoBAAoB%2CMAMhB%3BIACI%2CiBAAA%3BIACA%2C6BAAA%3B%3BEAIR%2CoBAAoB%2CQAAS%3BEAC7B%2CoBAAoB%2CQAAW%3BIAC3B%2CcAAA%3BIACA%2CkBAAA%3B%3BEAGJ%2CgBAAgB%3BIACZ%2CkBAAA%3BIACA%2CmBAAA%3B%3BEAGJ%2CoBAAoB%3BIAChB%2C%2BBAAA%3B%3BEAGJ%2CoBAAqB%3BIACjB%2CcAAA%3B%3BEAGJ%2CoBAAoB%3BEACpB%2CoBAAoB%3BIAEZ%2CaAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3B%3BEANR%2CoBAAoB%2CMAShB%3BEARJ%2CoBAAoB%2CQAQhB%3BIACI%2CcAAA%3B%3BEAVR%2CoBAAoB%2CMAahB%3BEAZJ%2CoBAAoB%2CQAYhB%3BIACI%2CcAAA%3B%3BEAdR%2CoBAAoB%2CMAiBhB%3BEAhBJ%2CoBAAoB%2CQAgBhB%3BIACI%2CmBAAA%3B%3BEAIR%2CoBAAoB%3BIAChB%2CuBAAA%3B%3BEAGJ%2C0BAA2B%3BIAEnB%2CkBAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3B%3BEANR%2C0BAA2B%2C2BASvB%3BIACI%2CYAAA%3BIACA%2CYAAA%3B%3BEAXR%2C0BAA2B%2C2BAcvB%3BIACI%2CsBAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3B%3BEApBR%2C0BAA2B%2C2BAuBvB%3BIACI%2CeAAA%3B%3BEAxBR%2C0BAA2B%2C2BA2BvB%2C0BAA0B%3BIACtB%2CWAAA%3B%3BEAIR%2C0BAA0B%3BIACtB%2CkBAAA%3B%3BEAGJ%2CoBAAoB%2CMAAO%3BIAEnB%2CkBAAA%3B%3BEAFR%2CoBAAoB%2CMAAO%2CsBAKvB%3BIACI%2CkBAAA%3BIACA%2CMAAA%3BIACA%2COAAA%3BIACA%2CUAAA%3BIACA%2CcAAA%3BIACA%2CQAAA%3BIACA%2CYAAA%3BIACA%2CmBAAA%3BIACA%2CkCAAA%3BIACA%2CUAAA%3BIACA%2CyBAAA%3B%3BEAhBR%2CoBAAoB%2CMAAO%2CsBAmBvB%2CsBAAqB%3BIACjB%2CQAAA%3BIACA%2CWAAA%3B%3BEArBR%2CoBAAoB%2CMAAO%2CsBAwBvB%3BEAxBJ%2CoBAAoB%2CMAAO%2CsBAyBvB%3BEAzBJ%2CoBAAoB%2CMAAO%2CsBA0BvB%3BIACI%2CUAAA%3B%3BEAIR%2CoBAAoB%3BIAChB%2CeAAA%3B%3BEAGJ%2CoBAAoB%2CMAAO%2CsBAAqB%2CUAAW%3BIACvD%2CWAAA%3BIACA%2CUAAA%3B%3BECzQJ%2C0BAA2B%3BIAEnB%2CkBAAA%3BIACA%2CgBAAA%3B%3BEAHR%2C0BAA2B%2CwBAMvB%3BIACI%2CgBAAA%3BIACA%2CiBAAA%3B%3BEAIR%2CuBACI%2CgBAAe%3BIACX%2CYAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3B%3BEAJR%2CuBAOI%2CgBAAe%3BIACX%2CWAAA%3BIACA%2CYAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAXR%2CuBAcI%2CgBAAe%3BEAdnB%2CuBAeI%2CgBAAe%3BIACX%2CsBAAA%3BIACA%2CmBAAA%3B%3BEAIR%2CeAAe%2CKACX%3BIACI%2CeAAA%3BIACA%2CmBAAA%3B%3BEAHR%2CeAAe%2CKAMX%3BIACI%2CmBAAA%3B%3BEAPR%2CeAAe%2CKAUX%2CyBAAyB%3BIACrB%2CiBAAA%3B%3BEAIR%2CeAAe%2CQACX%3BIACI%2CeAAA%3BIACA%2CeAAA%3B%3BEAHR%2CeAAe%2CQAMX%3BIACI%2CSAAA%3BIACA%2CUAAA%3B%3BEAIR%2CuBAAwB%3BIAEhB%2CSAAA%3BIACA%2CsBAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CeAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEARR%2CuBAAwB%2C2BAWlB%3BIACE%2CSAAA%3BIACA%2CWAAA%3B%3BEAbR%2CuBAAwB%2C2BAgBpB%3BIhD5HJ%2CyBAAA%3B%3BEgDiIA%3BIACI%2CiBAAA%3BIACA%2CkBAAA%3B%3BEC%5C%2FPJ%2COAAO%3BIACH%2CeAAA%3B%3BEAGJ%3BIACI%2CcAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CYAAa%3BIAEL%2CYAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CYARS%2CwBAQR%3BIACG%2CaAAA%3B%3BEAIR%3BIACI%2CWAAA%3B%3BEAGJ%3BIAEQ%2CaAAA%3B%3BEAFR%2CyBAKI%2CkBAAoB%3BIAChB%2CeAAA%3B%3BEANR%2CyBASI%3BIACI%2CeAAA%3B%3BEC7CJ%2CgBAAC%2COAAO%3BEACR%2CgBAAC%2COAAO%3BIACJ%2CQAAQ%2CcAAR%3B%3BECvDR%3BIAEQ%2CgBAAA%3B%3BEAGJ%2CwBAAC%3BIACG%2CeAAA%3B%3BECoFR%3BIAEQ%2CgBAAA%3BIACA%2CaAAA%3BIACA%2CeAAA%3B%3BEAGJ%2C0BAAC%2CIAAI%3BIACD%2CcAAc%2CkCAAd%3BIACA%2CsBAAA%3B%3BEATR%2C0BAYI%3BIACI%2CWAAA%3B%3BEAIR%2C0BAA0B%2CMACtB%3BIACI%2CgBAAA%3B%3BEAFR%2C0BAA0B%2CMAKtB%3BIACI%2CyBAAA%3BIACA%2CaAAA%3B%3BEAPR%2C0BAA0B%2CMAUtB%3BIACI%2CkBAAA%3B%3BEAIR%2C0BAA0B%2CMAAM%2CIAAI%2CUAAW%3BIAC3C%2CWAAW%2CcAAX%3B%3BECtJA%2CqBAFkB%2COAAM%2CMAEvB%3BEAAD%2CqBADkB%2COAAM%2COACvB%3BIACG%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CuBAAA%3B%3BEAIR%2CqBAAqB%2CQAAQ%2CKAAK%2CMAC9B%2CMAAK%2CMAAM%2COACP%3BIACI%2CmBAAA%3B%3BECnCZ%3BIAEQ%2CeAAA%3BIACA%2CcAAA%3B%3BEAGJ%2CwBAAC%2CIAAI%3BIACD%2CiBAAA%3B%3BEC9BR%2CsBAAsB%3BIAEd%2CiBAAA%3B%3BEAFR%2CsBAAsB%2CSAKlB%2CwBAAuB%2CIAAI%3BIACvB%2C2BAAA%3BIACA%2CyBAAA%3B%3BECoCR%2CYAAY%2CIAAI%2CsBAAuB%2CwBAAuB%3BIAC1D%2CWAAA%3B%3BEAGJ%2CYAAa%3BIACT%2CgBAAA%3BIACA%2CWAAA%3B%3BEC6CJ%3BIAEQ%2CiBAAA%3B%3BEAFR%2CwBAKI%3BIACI%2CiBAAA%3B%3BEAIR%3BIAEQ%2CeAAA%3B%3BEAGJ%2CuBAAC%2CIAAI%3BIACD%2CgBAAA%3BIACA%2CWAAA%3B%3BECTR%3BIACI%2CaAAA%3B%3BEAGJ%2CYAAY%2CoBAAoB%2CQAC5B%3BEADJ%2CYAAY%2CoBAAoB%2CQAE5B%3BIACI%2CoBAAA%3BIACA%2CWAAA%3B%3BEAJR%2CYAAY%2CoBAAoB%2CQAO5B%3BIACI%2CWAAA%3B%3BEARR%2CYAAY%2CoBAAoB%2CQAW5B%2CiBAAgB%3BIACZ%2CUAAA%3B%3BEAIR%2CYAAY%2CoBACR%3BIACI%2CkBAAA%3B%3BEAFR%2CYAAY%2CoBAKR%2CiBAAgB%3BIACZ%2CkBAAA%3B%3BEANR%2CYAAY%2CoBASR%3BIACI%2CgBAAA%3BIACA%2CqBAAA%3B%3BEAGJ%2CYAdQ%2CoBAcP%2CIAAI%2CUAAW%3BIACZ%2CgBAAA%3BIACA%2CWAAA%3B%3BEAhBR%2CYAAY%2CoBAmBR%3BIACI%2CYAAA%3BIACA%2CuBAAA%3BIACA%2CUAAA%3B%3BEAtBR%2CYAAY%2CoBAyBR%3BIACI%2C2BAAA%3B%3BEA1BR%2CYAAY%2CoBA6BR%2C2BAA0B%2CMAAM%2CIAAI%2CUAAW%3BIAC3C%2CWAAW%2CcAAX%3B%3BEA9BR%2CYAAY%2CoBAiCR%2C2BAA0B%2CMAAO%3BIAC7B%2CUAAA%3B%3BEAlCR%2CYAAY%2CoBAqCR%2CiBAAgB%3BIACZ%2CYAAA%3B%3BEAIR%2CYAAa%2CiBAAgB%3BIACzB%2CaAAA%3B%3BECrMJ%2CqBAAqB%2CcAAe%3BIAChC%2CUAAA%3B%3BECwFA%2CqBAAC%2CMAAM%3BIACH%2CmBAAA%3BIACA%2CoBAAA%3B%3BEAHR%2CqBAMI%3BIACI%2CSAAA%3B%3BEAPR%2CqBAMI%2CaAGI%3BI5DgMR%2CiBAAA%3B%3BE4DzMA%2CqBAcI%2CQACI%3BIACI%2CaAAA%3BIACA%2CcAAA%3B%3BEAjBZ%2CqBAcI%2CQAMI%3BI5DqLR%2CeAAA%3B%3BE4DzMA%2CqBAcI%2CQAUI%3BI5DiLR%2CiBAAA%3BI4D%5C%2FKY%2CoBAAA%3B%3BEA1BZ%2CqBA8BI%2COACI%3BI5D0KR%2CeAAA%3B%3BE4DzMA%2CqBA8BI%2COAKI%3BIACI%2CmBAAA%3B%3BEAEA%2CqBARR%2COAKI%2COAGK%3BI5DmKb%2CeAAA%3BI4DjKgB%2CWAAA%3B%3BEC7GhB%2CoBAAqB%2CQAAO%2CIAAI%2CqBAAsB%2CMAAK%3BIACvD%2CgBAAA%3B%3BEpD2FJ%2CcACI%3BIACI%2C6BAAA%3B%3BEAFR%2CcAKI%2CeAGI%3BEARR%2CcAKI%2CeAII%3BEATR%2CcAKI%2CeAKI%2C2BAA6B%3BIACzB%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAbZ%2CcAKI%2CeAWI%3BIACI%2CaAAA%3BIACA%2CUAAA%3B%3BEAYA%2CcAFR%2C2BACI%2CKACK%3BEACD%2CcAHR%2C2BACI%2CKAEK%3BIACG%2CkBAAA%3B%3BEAGJ%2CcAPR%2C2BACI%2CKAMK%3BIACG%2CUAAA%3B%3BEApChB%2CcAyCI%2CKAAI%3BEAzCR%2CcA0CI%3BEA1CJ%2CcA2CI%3BIACI%2CiBAAA%3B%3BEAKR%3BIAGI%2C0BAAA%3B%3BEAHJ%2CuBAKI%3BIT4HJ%2CmBAAA%3B%3BESxHY%2CuBAJR%2COAGK%2CSACI%3BITwHb%2CoBAAA%3B%3BESlHY%2CuBAVR%2COASI%2COACK%3BIACG%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3B%3BEAlBhB%2CuBAKI%2COAiBI%3BIACI%2CiBAAA%3B%3BEAKZ%2CkBAGI%2CiBACM%3BIACE%2CYAAA%3B%3BEAKJ%2CkBADJ%2CQACK%3BIACG%2CeAAA%3B%3BEHzCZ%2CkBAGI%2CWACI%3BIACI%2CSAAA%3B%3BEALZ%2CkBASI%2CSAAQ%3BIACJ%2CYAAA%3B%3BEeuBR%2CeACI%2CQAAO%2CQAAQ%3BIACX%2CWAAA%3B%3BEAIR%2CyBACI%2CQAAO%3BIACH%2CeAAA%3B%3BEAFR%2CyBAKI%3BEALJ%2CyBAMI%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEARR%2CyBAWI%3BIAEI%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAjBR%2CyBAWI%2CsBAQI%2CWACI%3BEApBZ%2CyBAWI%2CsBAQI%2CWAEI%2CeAAiB%3BIrBuE7B%2CcAAA%3BIqBrEgB%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CiBAAA%3B%3BEAzBhB%2CyBAWI%2CsBAkBI%2CiBACI%3BIrB8DZ%2CcAAA%3B%3BEqB5FA%2CyBAWI%2CsBAkBI%2CiBACI%2CMAGI%3BIrB2DhB%2CiBAAA%3BIqBzDoB%2CgBAAA%3B%3BEAnCpB%2CyBAWI%2CsBA6BI%2CqBAAuB%2CuBACnB%3BIrBmDZ%2CiBAAA%3BIqBjDgB%2CiBAAA%3B%3BEA3ChB%2CyBAWI%2CsBAoCI%2CYACI%2CQAAO%3BIACH%2CgBAAA%3BIACA%2CWAAA%3B%3BEAlDhB%2CyBAWI%2CsBA2CI%3BIACI%2CgBAAA%3B%3BEAMJ%2C0BAA2B%2C0BAF%5C%2FB%3BEAEI%2C0BAA2B%2C0BAD%5C%2FB%3BEAEI%2C2BAA4B%2C0BAHhC%3BEAGI%2C2BAA4B%2C0BAFhC%3BEAGI%2CqBAAsB%2C0BAJ1B%3BEAII%2CqBAAsB%2C0BAH1B%3BIAIQ%2CUAAA%3B%3BEyCsKZ%2CcACI%2CeACI%3BIACI%2CeAAA%3BIACA%2COAAO%2CqBAAP%3B%3BEAEA%2CcALR%2CeACI%2CcAIK%2CUAAU%3BIACP%2CcAAA%3B%3BEAMhB%2CcAAc%2CoBACV%2CeACI%3BIACI%2CUAAA%3B%3BEAKZ%2CcAAc%2CqBACV%2CeACI%3BIACI%2CUAAA%3B%3BEjDtTZ%2CcACI%3BIACI%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAIR%3BIACI%2CcAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3B%3BEAIA%2CSAAS%2CQAAW%2CWAAE%3BIAClB%2CWAAA%3BIACA%2CgBAAA%3B%3BEAIR%3BIACI%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CSAAS%2CQAAW%2CWAAS%3BIACzB%2CaAAA%3B%3BEAQR%3BIbiHA%2CyBAAA%3BIAAA%2C8EAAA%3BIAAA%2CcAAA%3BIa7GI%2CsBAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIbuGJ%2CqBAAA%3BI2B9QA%2CqBAAA%3B%3BEdyKI%2CYAAe%3BIACX%2C0BAAA%3B%3BEAGJ%2CWAAC%3BIbiGL%2CcAAA%3BIa%5C%2FFQ%2CmBAAA%3B%3BEAGJ%2CWAAC%3BIACG%2C0BAAA%3BIACA%2C4BAAA%3B%3BEAGJ%2CWAAC%3BIbuFL%2C%2BFAAA%3BIarFQ%2CmBAAA%3BIACA%2CcAAA%3B%3BEA7BR%2CWcqGE%3BI3BhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE2BHA%2CWAAC%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CoBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqCnPQ%2COrCmPR%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CsBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEApUI%2CWADH%2CMACI%3BI3B2PL%2CcAAA%3B%3BEavEI%2CcAAe%3BIACX%2CgBAAA%3B%3BEAKJ%2CUAAC%3BIACG%2CSwBrLA%2COxBqLA%3B%3BEAKJ%2CSAAS%2CQAAW%2CWAAE%3BIAClB%2CcAAA%3BIACA%2CYAAA%3B%3BEkD0YR%2CkBACI%2CoBACI%3BI%5C%2FDnVR%2CmBAAA%3B%3BE%2BDiVA%2CkBAOI%3BIACI%2CiBAAA%3B%3BEAIR%2CWACI%2CQAAO%3BIACH%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3B%3BEAIR%3BIACI%2CgBAAA%3B%3BEAGJ%2CuBAEI%2CWACI%3BEAFR%2CmBACI%2CWACI%3BIACI%2CeAAA%3B%3BEAJZ%2CuBAEI%2CWACI%2CiBAGI%3BEALZ%2CmBACI%2CWACI%2CiBAGI%3BIACI%2CeAAA%3BIACA%2CiBAAA%3B%3BEARhB%2CuBAEI%2CWAUI%2CqBAAuB%2CuBACnB%3BEAZZ%2CmBACI%2CWAUI%2CqBAAuB%2CuBACnB%3BI%5C%2FDtXZ%2CiBAAA%3BI%2BDwXgB%2CiBAAA%3B%3BEAUhB%3BIACI%2CYAAA%3B%3BEAGJ%2CQAAQ%3BIACJ%2CWAAA%3BIACA%2CmBAAA%3B%3BEAGJ%2CoBACI%3BIACI%2CUAAA%3B%3BEAFR%2CoBAKI%2CSAAQ%3BIACJ%2CUAAA%3B%3BEAIR%2C0BAGI%3BEAFJ%2C2BAEI%3BEADJ%2CqBACI%3BIACI%2CUAAA%3B%3BEAJR%2C0BAOI%2CSAAQ%3BEANZ%2C2BAMI%2CSAAQ%3BEALZ%2CqBAKI%2CSAAQ%3BIACJ%2CUAAA%3B%3BEAIR%2CiBACI%2CyBACI%2COACI%3BIACI%2CUAAA%3B%3BEAMhB%2CQACI%2CeACI%2CmBACI%3BIACI%2CWAAA%3BIACA%2CUAAA%3BIACA%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CSAAA%3B%3BEARhB%2CQACI%2CeAWI%3BIACI%2CSAAA%3B%3BEAbZ%2CQACI%2CeAeI%3BIACI%2CWAAA%3B%3BEASZ%2CsBAAsB%2CoBAClB%2CQAAO%3BIACH%2CmBAAA%3B%3BEA6QR%2CQAAQ%3BIACJ%2CYAAA%3BI%5C%2FDrtBJ%2CSAAA%3BIAAA%2CUAAA%3BIyC1KA%2CqBAAA%3B%3BEsB83BA%2CQAAQ%2CQAIJ%2CQAAO%3BIACH%2CiBAAA%3BI%5C%2FDztBR%2CWAAA%3BIAAA%2CqBAAA%3B%3BEyCjJA%2CQsBq2BQ%2CQAIJ%2CQAAO%2CQtBz2BV%3BIzCiJD%2CWAAA%3BIAAA%2CqBAAA%3B%3BEyC5IA%2CQsBg2BQ%2CQAIJ%2CQAAO%2CQtBp2BV%3BIzC4ID%2CWAAA%3BIAAA%2C0BAAA%3B%3BEyCvIA%2CQsB21BQ%2CQAIJ%2CQAAO%2CQtB%5C%2F1BV%3BIzCuID%2CWAAA%3BIAAA%2C0BAAA%3B%3BE%2BDotBA%2CQAAQ%2CQASJ%2CSAAQ%3BI%5C%2FD7tBZ%2CcAAA%3B%3BE%2BDguBQ%2CQAZA%2CQASJ%2CSAAQ%2CIAGH%3BIACG%2CSAAS%2CGAAT%3B%3BEAGJ%2CQAhBA%2CQASJ%2CSAAQ%2CIAOH%3BIACG%2CSAAS%2CGAAT%3B%3BEjD9yBZ%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CUAAA%3B%3BEALJ%2CaAWI%3BIACI%2CaAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3B%3BEAdR%2CaAiBI%3BIAEI%2CSAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3B%3BEd4IR%2CachJI%2CMdgJH%3BIAxFD%2CcAAA%3B%3BEA6FA%2CacrJI%2CMdqJH%3BIA7FD%2CcAAA%3B%3BEAkGA%2Cac1JI%2CMd0JH%3BIAlGD%2CcAAA%3B%3BEAuGA%2Cac%5C%2FJI%2CMd%2BJH%3BIAvGD%2CcAAA%3B%3BEczEA%2CaAwBI%2CQAAO%3BIdiDX%2CqBAAA%3BIgEzDA%2CsBAAA%3BIACA%2CgBAAA%3BIACA%2C4BAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2CoBAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CqBAAA%3BIACA%2CiBAAA%3BIhEgDA%2CgBAAA%3BIctCQ%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CMAAA%3BIACA%2CUAAA%3B%3BEAtCR%2CaAwBI%2CQAAO%2COaqCT%3BI3BhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE2BHA%2CabuNI%2CQAAO%2COavNV%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqC3OU%2COrC2OV%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEApUI%2Cab0MA%2CQAAO%2COa3MV%2CMACI%3BI3B2PL%2CWAAA%3B%3BE2BrPI%2CaboMA%2CQAAO%2COarMV%2COACI%3BI3BqPL%2CcAAA%3B%3BEgE7CA%2CalDJI%2CQAAO%2COkDIV%3BEACD%2CalDLI%2CQAAO%2COkDKV%3BIACG%2CgBAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CalDVI%2CQAAO%2COkDUV%3BIACG%2CgBAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CalDfI%2CQAAO%2COkDeV%3BEACD%2CalDhBI%2CQAAO%2COkDgBV%3BEACD%2CQAAQ%2CUAAW%2CclDjBf%2CQAAO%3BIkDkBP%2CoBAAA%3BIhE%2BBJ%2CYAAA%3B%3BEchCY%2CaAjBR%2CQAAO%2COAgBF%2CMACI%3BIdgCb%2CWAAA%3B%3BEczBA%3BIACI%2CaAAA%3B%3BEJuRJ%2CoBACI%3BIACI%2CkBAAA%3BIACA%2CmBAAA%3B%3BEASR%2CeAEI%2CWAEI%2CSAAQ%3BIACJ%2CiBAAA%3B%3BEALZ%2CeASI%3BIACI%2CWAAA%3B%3BEAEA%2CeAHJ%2CQAGK%3BIACG%2CmBAAA%3B%3BEAMZ%3BIV9RA%2CUAAA%3BIiClLA%2CYAAA%3BIjCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BIU8HL%2CsBAAA%3BIACA%2CkBAAA%3B%3BEAHJ%2CaAKM%3BIACE%2CcAAA%3B%3BEANR%2CaASI%2CUACI%3BIACI%2CcAAA%3B%3BEAXZ%2CaASI%2CUACI%2CiBAGM%3BIACE%2CWAAA%3B%3BEAdhB%2CaAmBI%2COACM%3BIACE%2CeAAA%3B%3BEAEA%2CaAJR%2COACM%2CSAGG%3BIACG%2CUAAA%3B%3BEAxBhB%2CaAmBI%2COAaI%2CUACI%3BIV%5C%2FTZ%2CgBAAA%3BIUiUgB%2CgBAAA%3B%3BEcsRhB%2CadtSI%2COAaI%2CUACI%2COcwRX%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2CadtSI%2COAaI%2CUACI%2COcwRX%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEd1UR%2CaAmBI%2COAaI%2CUACI%2COcqLV%3BIxBpfF%2CeAAA%3BIwBwfI%2CqBAAA%3B%3BEA6HA%2CadpUA%2COAaI%2CUACI%2COcoTX%2COAEI%3BEAAD%2CadpUA%2COAaI%2CUACI%2COcqTX%2CSACI%3BIACG%2CaAAA%3B%3BEdxVR%2CaAwCI%3BIACI%2CUAAA%3B%3BEAMJ%2CKAAC%2CcACG%3BIACI%2CeAAA%3BIACA%2CWAAA%3B%3BEAHR%2CKAAC%2CcAMG%2CMAAM%3BIACF%2CiBAAA%3B%3BEAPR%2CKAAC%2CcAUG%2CMACI%2CKAAI%3BIACA%2CwBAAA%3B%3BEAZZ%2CKAAC%2CcAgBG%2CcAAc%3BIACV%2CUAAA%3B%3BEAIA%2CKArBP%2CcAoBG%2CSACK%3BIACG%2CmBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2CSAAA%3B%3BEAGJ%2CKA9BP%2CcAoBG%2CSAUK%3BIACG%2CmBAAA%3BIACA%2CoBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAOhB%3BIACI%2CeAAA%3B%3BEADJ%2CsBAGI%3BIACI%2CiBAAA%3BIACA%2CSAAA%3B%3BEALR%2CsBAQI%3BIACI%2CYAAA%3B%3BEAGI%2CsBAJR%2COAGI%2CMACK%3BIACG%2CeAAA%3B%3BEAMhB%2CKAAK%2CcACD%2CuBACM%2CQACE%2CMACI%2CGACI%2CGAAE%3BIACE%2CoBAAA%3BIACA%2CiBAAA%3B%3BEAPxB%2CKAAK%2CcAcD%2CMACM%3BIACE%2CgBAAA%3B%3BEAMZ%3BIVhaA%2CUAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BIUiQL%2CSAAA%3BIACA%2CsBAAA%3BIACA%2CiBAAA%3B%3BEAIQ%2CcAFR%2COACI%2COACK%3BIACG%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3B%3BEAIR%2CcATJ%2COASK%3BIACG%2CWAAA%3B%3BEAjBZ%2CcAOI%2COAaI%3BIACI%2CWAAA%3B%3BEAYR%2CMAAC%3BIVjcL%2CUAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BIUkSD%2CiBAAA%3B%3BEAHJ%2CMAAC%2CUAKG%2CeAAe%3BIACX%2CUAAA%3B%3BEuDnTZ%3BIACI%2CiBAAA%3B%3BEADJ%2CiBAGI%3BIACI%2CYAAA%3B%3BEtCpVR%2CSsCuVU%2CQAAO%2COtCvVhB%3BEAAD%2CiBsCwVkB%2CQAAO%2CKtCxVxB%3BI3B4LD%2CeAAA%3BIAAA%2CoBAAA%3B%3BEuBpKA%3BIvBoKA%2CmBAAA%3BIiCtLA%2CWAAA%3BIjCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BIuBnUL%2CmBAAA%3B%3BEAGJ%2CyBACI%3BIACI%2CcAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3B%3BE2C7ER%2CqBACI%2CaACI%3BIlEqOR%2CgBAAA%3B%3BEkEvOA%2CqBACI%2CaAKI%2CcACI%3BIACI%2CYAAA%3BIACA%2CkBAAA%3B%3BECqNhB%2CyBACI%2CiBACM%3BIACE%2CYAAA%3B%3BEAIA%2CyBANR%2CiBAKI%2CQACK%3BIACG%2CSAAA%3B%3BEACA%2CyBARZ%2CiBAKI%2CQACK%2CQAEI%3BIACG%2CeAAA%3B%3BEAOpB%2CYACI%3BEADJ%2CYAEI%3BInEVJ%2CgBAAA%3B%3BEmEQA%2CYAMI%3BInEdJ%2C6BAAA%3BImEgBQ%2CoBAAA%3B%3BEAIR%3BIACI%2CWAAA%3B%3BEC7SJ%3BIpEwRA%2CmBAAA%3BIAAA%2CmBAAA%3BIiClLA%2CYAAA%3BIjCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BECrPT%2CoBACI%2CcACI%3BIACI%2CaAAA%3B%3BEoE3FZ%3BIrE2KA%2CsBAAA%3BIAAA%2CyBAAA%3BIqExKI%2CmBAAmB%2CWAAnB%3BIACA%2C6BAAA%3BIACA%2C4EAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CSAAA%3BIACA%2CWAAW%2CWAAX%3BIACA%2CqBAAA%3BIACA%2C4DAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3B%3BEAEA%2CwBAAC%3BIrE4JL%2CYAAA%3BIqE1JQ%2CmBAAmB%2CWAAnB%3BIACA%2C0EAAA%3BIACA%2CWAAW%2CWAAX%3BIACA%2C0DAAA%3BIACA%2CmBAAA%3B%3BEAIR%3BIrEkJA%2CmBAAA%3BIqEhJI%2CiBAAA%3B%3BEAGJ%2CqBACI%3BIrE4IJ%2CiBAAA%3BIqE1IQ%2CgBAAA%3BIACA%2CmBAAA%3B%3BEAJR%2CqBAOI%2CiBACM%3BIACE%2CeAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3B%3BEAXZ%2CqBAOI%2CiBACM%2CWAIE%3BIACI%2CeAAA%3B%3BEAbhB%2CqBAOI%2CiBAUM%3BIACE%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CiBAAA%3B%3BEAKZ%2CqBACI%3BIACI%2CgBAAA%3BIACA%2CUAAA%3B%3BEAHR%2CqBAMI%3BIrEkOJ%2CqBAAA%3BIACA%2CoBAAA%3BIACA%2CaAAA%3BIAkCA%2C2BAAA%3BIACI%2CuBAAA%3BIACI%2CmBAAA%3BIqErQA%2C6BAAA%3B%3BEATR%2CqBAYI%2COAAM%3BEAZV%2CqBAaI%3BEAbJ%2CqBAcI%3BEAdJ%2CqBAeI%3BIrEyNJ%2CqBAAA%3BIACA%2CoBAAA%3BIACA%2CaAAA%3BIAkCA%2C8BAAA%3BIACI%2C0BAAA%3BIACI%2CsBAAA%3BIA9BR%2CoBAAA%3BIACQ%2CYAAA%3B%3BEqEjPR%2CqBAqBI%2COAAM%3BIACF%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CsBAAA%3BIACA%2CUAAA%3B%3BEAEA%2CqBANJ%2COAAM%2COAME%3BIACA%2C8BAAA%3BIACA%2CaAAA%3BIACA%2CSAAA%3BIACA%2CsBAAA%3B%3BEAEA%2CqBAZR%2COAAM%2COAME%2CSAMC%3BIACG%2COAAA%3BIACA%2CQAAA%3B%3BEAnChB%2CqBAwCI%3BIACI%2CgBAAA%3BIACA%2CgBAAA%3B%3BECbR%2CwBACI%2CiBACI%3BIACI%2CYAAA%3BIACA%2CSAAA%3B%3BEAJZ%2CwBAQI%2CUACM%2CwBACI%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEAMhB%2CyBACI%3BIACI%2CYAAA%3B%3BEAFR%2CyBAKI%2CiBACI%3BIACI%2CoBAAA%3B%3BECzBZ%2CwBACI%3BIvEsFJ%2CkBAAA%3B%3BEuEvFA%2CwBAKI%2CwBACI%2CsBACM%3BIACE%2CcAAA%3B%3BEhE0JR%2CgBAFJ%2COAEK%2CMACG%2CiBACM%3BIACE%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAJZ%2CgBAFJ%2COAEK%2CMACG%2CiBAMM%3BIACE%2CWAAA%3B%3BEAbpB%2CgBAmBI%2CUACM%2CSACI%3BIACE%2CUAAA%3B%3BEAMhB%2CoBACI%2CmBACI%3BIACI%2CcAAA%3BIACA%2CWAAA%3B%3BEAJZ%2CoBACI%2CmBACI%2CQAII%3BIACI%2CmBAAA%3B%3BEAPhB%2CoBACI%2CmBACI%2CQAII%2COAGM%3BIACE%2CkBAAA%3B%3BEAVpB%2CoBACI%2CmBAcI%3BEAfR%2CoBACI%2CmBAeI%3BIACI%2CWAAA%3B%3BEAKZ%2CKAAK%2CSAAS%3BEACd%2CKAAK%2CKAAK%3BEACV%2CKAAK%2CSAAS%3BEACd%2CKAAK%2COAAO%3BEACZ%2CKAAK%2COAAO%3BEACZ%2CKAAK%3BIACD%2CgBAAA%3BIACA%2CUAAA%3B%3BEAIJ%2CQAAQ%2C0BACJ%3BEADJ%2CQAAQ%2C0BAEJ%3BIACI%2CYAAA%3B%3BEAHR%2CQAAQ%2C0BAMJ%2CQAAO%3BIACH%2CYAAA%3B%3BEAPR%2CQAAQ%2C0BAUJ%2CcACI%3BIACI%2CgBAAA%3B%3BEAKZ%2CQAiBI%2CMAAK%3BIACD%2CgBAAA%3B%3BEAGI%2CQAJR%2CMAAK%2CMAGD%2CKACK%3BIACG%2CmBAAA%3B%3BEAUhB%2CqBACI%2COAAM%3BIAEF%2CYAAA%3B%3BEAHR%2CqBACI%2COAAM%2CUAIA%3BIACE%2CqBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEA%2CqBAXR%2COAAM%2CUAIA%2CQAOG%2CeAAe%3BEAChB%2CqBAZR%2COAAM%2CUAIA%2CQAQG%2CeAAe%3BIACZ%2CgBAAA%3B%3BEAGJ%2CqBAhBR%2COAAM%2CUAIA%2CQAYG%2CUAAU%3BIACP%2CeAAA%3B%3BEAsBhB%2CkBACI%2CUAGI%3BIACI%2CmBAAA%3BIACA%2CWAAA%3B%3BEAeZ%2CQAAQ%2CcACJ%3BIACI%2CqBAAA%3B%3BEChgBR%2CYAKI%3BIACI%2CWAAA%3B%3BEAIR%2CsBACI%3BIACI%2CUAAA%3B%3BEgEyIR%2C0BACI%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEAHR%2C0BAMI%3BIACI%2CYAAA%3BIACA%2CUAAA%3B%3BEC1CQ%2CsBAHZ%2CmBACI%2CWACI%2CiBACK%3BIACG%2CeAAA%3B%3BEADJ%2CsBAHZ%2CmBACI%2CWACI%2CiBACK%2CYAGG%3BIACI%2CeAAA%3BIACA%2CiBAAA%3B%3BEATxB%2CsBACI%2CmBAcI%3BIACI%2CiBAAA%3B%3BEAhBZ%2CsBACI%2CmBAkBI%3BIACI%2CWAAA%3B%3BEApBZ%2CsBAwBI%3BIACI%2CiBAAA%3B%3BEAzBR%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%3BIzEmIlB%2CgBAAA%3BIAAA%2CmBAAA%3BIwB%2BpBA%2CsBAAA%3BIACA%2CqBAAA%3BIxBhqBA%2CUAAA%3BIwBmqBA%2CmBAAA%3B%3BEiDj0BA%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjDunBhB%3BIxBpfF%2CeAAA%3BIwBwfI%2CqBAAA%3B%3BEAtOJ%2CsBiDxZI%2CkBAGI%2COAAM%2CIAAI%2COjDqZjB%3BIACG%2CgBAAA%3B%3BEAkZJ%2CsBiD3yBI%2CkBAGI%2COAAM%2CIAAI%2COjDwyBd%3BIACA%2CWAAA%3B%3BEiDp0BJ%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD%2BZhB%3BIxB5RF%2CgBAAA%3B%3BEwBqSI%2CsBiD3aA%2CkBAGI%2COAAM%2CIAAI%2COjD%2BZhB%2CSASM%3BIACA%2CaAAA%3B%3BEiDpcR%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD6alB%2CQACI%3BIACI%2CmBAAA%3B%3BExBhiBR%2CsByE8GI%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMxBpiBN%3BEACD%2CsByE6GI%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMxBniBN%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CsByEwGI%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMxB9hBN%3BIACG%2CWAAA%3B%3BEyE%2BEJ%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMAEH%3BIACI%2CsBAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CsBiD7bA%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMAOF%2CQAAS%3BIACN%2CqBAAA%3B%3BEAGJ%2CsBiDjcA%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMAWF%2CQAAS%3BIACN%2CYAAA%3B%3BEAGJ%2CsBiDrcA%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMAeF%2CQAAS%3BIACN%2CqBAAA%3B%3BEAGJ%2CsBiDzcA%2CkBAGI%2COAAM%2CIAAI%2COjDmblB%2CQAAO%2CMAmBF%2CQAAS%3BIACN%2CqBAAA%3B%3BEiDleR%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%3BIxBpNA%2C4BAAA%3BIACA%2C2BAAA%3BIACA%2CoBAAA%3BIA2BA%2CyBAAA%3BIACQ%2CiBAAA%3BIwByLJ%2CUAAA%3BIACA%2CWAAA%3B%3BEiD1eJ%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAMI%3BEiD5eJ%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAOI%3BEiD7eJ%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAQI%3BIxBhLJ%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BIAxBT%2CwBAAA%3BIACQ%2CgBAAA%3BIwBwMA%2CqBAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3B%3BEiDnfR%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAgBI%3BEiDtfJ%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAiBI%3BIxBzVJ%2CgBAAA%3BIAAA%2C4BAAA%3BIAAA%2CyBAAA%3BIAAA%2CkBAAA%3BIAAA%2CwEAAA%3BIAAA%2CeAAA%3BIAAA%2CYAAA%3BIAAA%2CuBAAA%3BIAAA%2CcAAA%3BIAAA%2CwBAAA%3BIAAA%2CWAAA%3BIwBjPA%2CsBAAA%3BIxBiZA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BIwB0LD%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3B%3BEAzPR%2CsBiD5OI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAgBI%2CWAlPH%3BEAAD%2CsBiD5OI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAiBI%2CUAnPH%3BIxBtGD%2CYAAA%3B%3BEwBqHA%2CsBiD3PI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAgBI%2CWAnOH%3BEAAD%2CsBiD3PI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAiBI%2CUApOH%3BIxBrHD%2CcAAA%3B%3BEwB0HA%2CsBiDhQI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAgBI%2CWA9NH%3BEAAD%2CsBiDhQI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAiBI%2CUA%5C%2FNH%3BIxB1HD%2CcAAA%3B%3BEwB%2BHA%2CsBiDrQI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAgBI%2CWAzNH%3BEAAD%2CsBiDrQI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COAiBI%2CUA1NH%3BIxB%5C%2FHD%2CcAAA%3B%3BEyE9JA%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2clB%2COA0BI%3BIACI%2CWAAA%3BIxBnMR%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEyEhUT%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD2elB%3BIxBxWA%2CgBAAA%3B%3BEwBugBI%2CsBiD7oBA%2CkBAGI%2COAAM%2CIAAI%2COjDwoBjB%2CSAAY%2CSAER%3BEAAD%2CsBiD7oBA%2CkBAGI%2COAAM%2CIAAI%2COjDyoBjB%2CUAAa%2CSACT%3BIACG%2CSAAS%2CGAAT%3BIxBxgBR%2CcAAA%3BIAAA%2CiBAAA%3BIAAA%2CiBAAA%3B%3BEyE9JA%2CsBAwBI%2CkBAGI%2COAAM%2CIAAI%2COjD%2BqBlB%3BIxB5iBA%2CiBAAA%3BIAAA%2CeAAA%3BIAAA%2CUAAA%3BIAAA%2CqBAAA%3BI2B9QA%2CqBAAA%3B%3BEAMA%2CsB8CkII%2CkBAGI%2COAAM%2CIAAI%2COjD%2BqBlB%2CMGpzBC%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CsBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BE8CtMY%2CsBATR%2CkBAGI%2COAAM%2CIAAI%2COAML%2CUAAU%3BIACP%2CmBAAA%3B%3BEAGJ%2CsBAbR%2CkBAGI%2COAAM%2CIAAI%2COAUL%2CUAAU%3BIACP%2CgBAAA%3B%3BEAtChB%2CsBAwBI%2CkBAkBI%2CyBACI%2COAAM%2CIAAI%2COAAU%3BIAChB%2CWAAA%3B%3BEnD4JhB%3BIACI%2CkBAAA%3BIACA%2CUAAA%3B%3BEAFJ%2CaAII%3BIACI%2CWAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3B%3BEAPR%2CaAII%2CiBAKI%3BIACI%2CYAAA%3B%3BEAVZ%2CaAII%2CiBAKI%2CWAGI%3BIACI%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CeAAA%3B%3BEAfhB%2CaAII%2CiBAKI%2CWASI%3BIACI%2CcAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAKJ%2CaAtBR%2CiBAqBK%2CUAAU%2CGACN%3BItBpEb%2C8BAAA%3BIsBsEgB%2CYAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CQAAA%3B%3BEAMhB%3BItBnFA%2CgBAAA%3BIAAA%2CiBAAA%3B%3BEsBwFA%2CgBACI%3BIACI%2CiBAAA%3BIACA%2CeAAA%3B%3BEAIR%2CUACI%3BIACI%2CeAAA%3BIACA%2CgBAAA%3B%3BEASJ%2CKAAC%2CcACG%2CcACI%3BIACI%2CWAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3B%3BEANhB%2CKAWI%3BIACI%2CWAAA%3B%3BEAIR%2CeACI%3BIAEI%2CmBAAA%3B%3BEAHR%2CeACI%2CgBAII%3BEALR%2CeACI%2CgBAKI%3BIACI%2CoBAAA%3B%3BEjBjKZ%2CwBAII%2CUAAU%3BEAHd%2CuBAGI%2CUAAU%3BIACN%2CUAAA%3B%3BEAIR%2CuBACI%2CUAAS%2CiBACL%3BIACI%2CgBAAA%3B%3BEASZ%2CmBACI%2CKAAI%3BIACA%2CmBAAA%3B%3BEAFR%2CmBAKI%2CKAAI%3BIACA%2CUAAA%3B%3BEANR%2CmBASI%2CKAAI%3BIACA%2CUAAA%3B%3BEAIR%2CyBACI%2CKAAI%3BIACA%2CUAAA%3B%3BEAGJ%2CQAAS%2CMAAK%2CMAAM%2CyB2BtItB%2CQAGI%2CKACI%3BE3BkIN%2CQAAS%2CMAAK%2CMAAM%2CyB2BrItB%2CQAEI%2CKACI%3BE3BkIN%2CQAAS%2CMAAK%2CMAAM%2CyB2BpItB%2CQACI%2CKACI%3BE3BkIN%2CQAAS%2CMAAK%2CMAAM%2CyB2BtItB%2CQAGI%2CKAEI%3BE3BiIN%2CQAAS%2CMAAK%2CMAAM%2CyB2BrItB%2CQAEI%2CKAEI%3BE3BiIN%2CQAAS%2CMAAK%2CMAAM%2CyB2BpItB%2CQACI%2CKAEI%3BIhCyHV%2C0BAAA%3B%3BEKQI%2CQAAS%2CMAAK%2CMAAM%2CyB2B3HtB%2CUAAU%2CQAGN%2CKAAE%2CYACE%3BE3BuHN%2CQAAS%2CMAAK%2CMAAM%2CyB2B1HtB%2CWAAW%2CQAEP%2CKAAE%2CYACE%3BE3BuHN%2CQAAS%2CMAAK%2CMAAM%2CyB2BzHtB%2CQAAK%2CYACD%2CKAAE%2CYACE%3BE3BuHN%2CQAAS%2CMAAK%2CMAAM%2CyB2B3HtB%2CUAAU%2CQAGN%2CKAAE%2CYAEE%3BE3BsHN%2CQAAS%2CMAAK%2CMAAM%2CyB2B1HtB%2CWAAW%2CQAEP%2CKAAE%2CYAEE%3BE3BsHN%2CQAAS%2CMAAK%2CMAAM%2CyB2BzHtB%2CQAAK%2CYACD%2CKAAE%2CYAEE%3BIACE%2CaAAA%3B%3BE3BqHR%2CQAAS%2CMAAK%2CMAAM%2CyB2BhHtB%2CQAAQ%3BIhCwGV%2C0BAAA%3B%3BEKQI%2CQAAS%2CMAAK%2CMAAM%2CyBAKhB%3BIACI%2CgBAAA%3B%3BEANR%2CQAAS%2CMAAK%2CMAAM%2CyBASd%2CQAAQ%2CKAAE%2CUAAU%2CMAChB%3BEAVV%2CQAAS%2CMAAK%2CMAAM%2CyBASd%2CQAAQ%2CKAAE%2CUAAU%2CMAEhB%3BIACE%2CgBAAA%3B%3BEAMhB%2CyBACI%3BIACI%2CmBAAA%3B%3BEAGI%2CyBAJR%2CUAGI%2COACK%3BEACD%2CyBALR%2CUAGI%2COAEK%3BILhCb%2CmBAAA%3BIwB%2BpBA%2CsBAAA%3BIACA%2CqBAAA%3BIxBhqBA%2CUAAA%3BIwBmqBA%2CmBAAA%3BInBjoBgB%2CmBAAA%3B%3BEmBmoBhB%2CyBnB1oBI%2CUAGI%2COACK%2CKmBsoBT%3BEAAJ%2CyBnB1oBI%2CUAGI%2COAEK%2CSmBqoBT%3BIACA%2CWAAA%3B%3BEnBjoBQ%2CyBAVR%2CUAGI%2COAOK%3BIACG%2CUAAA%3B%3BEAiBhB%2CgCAOI%3BIACI%2C6BAAA%3BIACA%2CaAAA%3B%3BEAIA%2CgCADJ%2CSACK%3BIACG%2CmBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CSAAA%3B%3BEAGJ%2CgCATJ%2CSASK%3BIACG%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3B%3BEAKJ%2CgCADJ%2CKACK%3BIACG%2CUAAA%3B%3BEAGJ%2CgCALJ%2CKAKK%2CIAAI%3BIACD%2CkBAAA%3B%3BEAGJ%2CgCATJ%2CKASK%3BIACG%2CiBAAA%3B%3BEAKJ%2CgCADJ%2CYACK%3BIACG%2CgBAAA%3B%3BEW%5C%2FGZ%2CuBAEI%3BEADJ%2CeACI%3BIACI%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEA%2CuBANJ%2CeAMQ%3BEAAJ%2CeANJ%2CeAMQ%3BIhBGZ%2C8BAAA%3BIgBDY%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CoBAAA%3BIACA%2CUAAA%3B%3BEAbZ%2CuBAiBI%2CcACI%3BEAjBR%2CeAgBI%2CcACI%3BIACI%2CmBAAA%3B%3BEAnBZ%2CuBAuBI%3BEAtBJ%2CeAsBI%3BIACI%2CmBAAA%3B%3BEAQR%2CcAEI%3BEADJ%2CmBACI%3BIACI%2CcAAA%3B%3BE0DnKR%2CqBACI%3BIACI%2CWAAA%3B%3BEAFR%2CqBAKI%3BIACI%2CgBAAA%3B%3BEC5IR%2CWACI%2CQAAO%3BIACH%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3B%3BEC6CR%2CkBACI%3BIACI%2CUAAA%3B%3BEC2TJ%2COAAC%3BIACG%2CmBAAA%3B%3BEAGJ%2COAAC%3BIACG%2CaAAA%3B%3BEAGJ%2COAAC%2CQACG%3BIACI%2CcAAA%3B%3BEAIR%2COAAC%3BIACG%2CmBAAA%3B%3BEAGJ%2COAAC%2COAAQ%2CQAAC%3BEACV%2COAAC%3BIACG%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CcAAA%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2COAAC%3BIACG%2CcAAA%3BIACA%2CgBAAA%3B%3BEAIR%2CoBACI%3BIACI%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CWAAA%3B%3BEAJR%2CoBAOI%2CUAAY%3BIACR%2CgBAAA%3B%3BEAGJ%2CoBAAC%2CiBAAkB%2CQAAO%3BIACtB%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAIA%2CoBADJ%2CQACK%3BIACG%2C0BAAA%3B%3BEAGJ%2CoBALJ%2CQAKK%3BIACG%2CgBAAA%3B%3BEAGJ%2CoBATJ%2CQASK%3BIACG%2CaAAA%3B%3BEAIA%2CoBAdR%2CQAaK%2CQACI%3BIACG%2CSAAA%3BIACA%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CoBApBZ%2CQAaK%2CQACI%2CKAMI%3BIACG%2CUAAA%3B%3BEADJ%2CoBApBZ%2CQAaK%2CQACI%2CKAMI%2COAGG%3BIACI%2CmBAAA%3B%3BEAGJ%2CoBA3BhB%2CQAaK%2CQACI%2CKAMI%2COAOI%3BIACG%2CUAAA%3B%3BEAGJ%2CoBA%5C%2FBhB%2CQAaK%2CQACI%2CKAMI%2COAWI%3BEACD%2CoBAhChB%2CQAaK%2CQACI%2CKAMI%2COAYI%3BI7EjIrB%2C6BAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIAhDA%2CyBAAA%3BI6EiLwB%2CYAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAGJ%2CoBA1ChB%2CQAaK%2CQACI%2CKAMI%2COAsBI%3BI7EzLrB%2CyBAAA%3BI6E2LwB%2CeAAA%3BIACA%2CUAAA%3B%3BEAKZ%2CoBAlDR%2CQAaK%2CQAqCI%3BIACG%2CmBAAA%3B%3BEAEA%2CoBArDZ%2CQAaK%2CQAqCI%2CMAGI%3BIACG%2CUAAA%3BIACA%2CQAAA%3BIACA%2CUAAA%3B%3BEAIR%2CoBA5DR%2CQAaK%2CQA%2BCI%3BI7E3Mb%2CgBAAA%3BIAhBF%2CsDAAA%3BIACK%2CmDAAA%3BIACC%2CkDAAA%3BIAcJ%2C8CAAA%3BI6EgNgB%2CsBAAA%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CUAAA%3B%3BEAXJ%2CoBA5DR%2CQAaK%2CQA%2BCI%2CQAaG%3BIACI%2CSAAA%3BIACA%2CYAAA%3B%3BEAfR%2CoBA5DR%2CQAaK%2CQA%2BCI%2CQAaG%2CMAII%3BIACI%2CcAAA%3B%3BEAGJ%2CoBAjFhB%2CQAaK%2CQA%2BCI%2CQAaG%2CMAQK%3BIACG%2CyBAAA%3B%3BEAMhB%2CoBAxFJ%2CQAwFK%3BIACG%2CeAAA%3BIACA%2CiBAAA%3B%3BEAEA%2CoBA5FR%2CQAwFK%2CQAII%3BI7E3Ob%2CcAAA%3BI6E6OgB%2CeAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEA%2CoBAnGZ%2CQAwFK%2CQAII%2CSAOI%3BIACG%2CSAAS%2CGAAT%3B%3BEAZZ%2CoBAxFJ%2CQAwFK%2CQAgBG%3BEAhBJ%2CoBAxFJ%2CQAwFK%2CQAiBG%3BIACI%2CeAAA%3B%3BEAlBR%2CoBAxFJ%2CQAwFK%2CQAqBG%3BIACI%2CkBAAA%3BIACA%2CmBAAA%3B%3BEAvBR%2CoBAxFJ%2CQAwFK%2CQA0BG%2CQAAO%3BIACH%2CmBAAA%3B%3BEAIR%2CoBAvHJ%2CQAuHK%3BIACG%2CeAAA%3BIACA%2CmBAAA%3B%3BEAEA%2CoBA3HR%2CQAuHK%2CQAIO%3BIACA%2CgBAAA%3B%3BE5DpGZ%2CSAAC%2COAAO%3BIACJ%2CYAAA%3BIjBxKR%2CQAAA%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BIAAA%2CYAAA%3BIiB6KQ%2CWAAA%3B%3BEAIR%3BIAEI%2CmBAAA%3B%3BEAII%2C0BAFJ%2CUAEK%3BIACG%2CgCAAA%3BIACA%2CcAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3B%3BEAJJ%2C0BAFJ%2CUAEK%2COAMG%3BIACI%2CmBAAA%3BIACA%2CkBAAA%3BIACA%2CsBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CSAAA%3B%3BEAGJ%2C0BAjBR%2CUAEK%2COAeI%3BIACG%2CmBAAA%3BIACA%2CoBAAA%3BIACA%2CmBAAA%3B%3BEAHJ%2C0BAjBR%2CUAEK%2COAeI%2CMAKG%3BIACI%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CsBAAA%3B%3BEAEA%2C0BA3BhB%2CUAEK%2COAeI%2CMAKG%2CMAKK%3BIACG%2CeAAA%3B%3BEAXZ%2C0BAjBR%2CUAEK%2COAeI%2CMAeG%3BIACI%2CgCAAA%3BIACA%2CgBAAA%3B%3BEAhCZ%2C0BAFJ%2CUAEK%2COAoCG%3BIACI%2CaAAA%3B%3BEAIR%2C0BA3CJ%2CUA2CK%2CIAAI%3BIACD%2CkBAAA%3BIACA%2CQAAA%3BIACA%2CMAAA%3B%3BEAIJ%2C0BAlDJ%2CUAkDK%2CMACG%3BIjBxOZ%2CeAAA%3B%3BEiB8OQ%2C0BAzDJ%2CUAyDK%3BIACG%2CWAAA%3B%3BEAIJ%2C0BA9DJ%2CUA8DK%3BIACG%2CYAAA%3B%3BEAKZ%2C0BACI%3BIACI%2CcAAA%3B%3BEAOI%2CcAHE%2CSACV%2CSACK%2CKACI%3BIACG%2CWAAA%3B%3BEADJ%2CcAHE%2CSACV%2CSACK%2CKACI%2CSAGK%3BIACE%2CiBAAA%3B%3BE6DhepB%2CMAAM%3BIACF%2CcAAA%3BIACA%2CkBAAA%3B%3BEAFJ%2CMAAM%2CWAIF%2COAAM%3BIACF%2CgBAAA%3B%3BEALR%2CMAAM%2CWAQF%2CMAAK%2CUACC%3BEATV%2CMAAM%2CWAQF%2CMAAK%2CUAEC%3BIACE%2CWAAA%3B%3BEnEmOZ%3BIACI%2CmBAAA%3B%3BEAEA%2CSAAS%2CQAAQ%2CKAAM%3BIACnB%2CSAAA%3B%3BEAJR%2CwBAOI%3BIACI%2CeAAA%3BIACA%2CeAAA%3B%3BET9KR%2CmBAGI%2CUAAU%3BIACN%2CUAAA%3B%3BEAaR%2C0BACI%2CQAAO%2CKAAM%2COAAM%2CyBAGf%2CeAAc%2CIAAI%2CSAAU%3BIAExB%2CWAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAKZ%2CuBACI%2CaACI%3BIACI%2CkBAAA%3B%3BEAHZ%2CuBACI%2CaAKI%3BIACI%2CYAAA%3BIACA%2CgBAAA%3B%3BEgB%2BXZ%2CYAEI%3BIACI%2CWAAA%3BIACA%2CkBAAA%3B%3BEAJR%2CYAEI%2CMAII%3BIACI%2CiBAAA%3B%3BEAPZ%2CYAEI%2CMAQI%3BIACI%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2C0BAAA%3B%3BEAKZ%2CsBACI%2CQAAO%3BIAEH%2CcAAA%3BIACA%2CYAAA%3B%3BEAIR%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEALpC%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEAJpC%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BIAExB%2CWAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEASZ%3BIACI%2CgBAAA%3B%3BEADJ%2C6BAGI%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3B%3BEAPR%2C6BAUI%3BIACI%2CgBAAA%3B%3BEAIR%3BIACI%2CgBAAA%3BIACA%2CaAAA%3B%3BEAGI%2CoBADJ%2CKACK%3BIACG%2CkBAAA%3B%3BEAGJ%2CoBALJ%2CKAKK%3BIACG%2CiBAAA%3B%3BEAVZ%2CoBAcI%2CMAAM%3BIACF%2CoBAAA%3BIACA%2CiBAAA%3B%3BEAhBR%2CoBAmBI%2CMACI%3BEApBR%2CoBAmBI%2CMAEI%3BIACI%2CiBAAA%3B%3BEAIR%2CoBAAC%2CQACG%3BIACI%2CaAAA%3B%3BEAKZ%2CoBACI%3BIACI%2CeAAA%3BIACA%2CgBAAA%3B%3BEAHR%2CoBAMI%3BIACI%2CkBAAA%3B%3BEAPR%2CoBAUI%3BIACI%2CYAAA%3B%3BEAOI%2CkBAFR%2CMACI%2CKACK%3BEACD%2CkBAHR%2CMACI%2CKAEK%3BIACG%2CeAAA%3B%3BEAKZ%2CkBAAC%2CQAEG%2CKAAI%3BEADR%2CkBAAC%2CSACG%2CKAAI%3BIACA%2CkBAAA%3B%3BEAMA%2CkBAFP%2CWACG%2CKACK%3BEACD%2CkBAHP%2CWACG%2CKAEK%3BEACD%2CkBAJP%2CWACG%2CKAGK%3BIACG%2CkBAAA%3B%3BEAGJ%2CkBARP%2CWACG%2CKAOK%3BIACG%2CiBAAA%3B%3BENhqBhB%2CKAAK%2CKAAK%3BIACN%2CUAAA%3B%3BEADJ%2CKAAK%2CKAAK%2COAMN%2CUACI%3BIACI%2CUAAA%3B%3BEARZ%2CKAAK%2CKAAK%2COAMN%2CUAKI%2COAAM%3BIAEF%2CUAAA%3B%3BEOicZ%3BEACA%3BIACI%2CYAAA%3B%3BEAGJ%2CWAAY%3BIACR%2CcAAA%3B%3BEAGJ%3BIACI%2CSAAA%3BIACA%2CgBAAA%3B%3BEAFJ%2CYAII%2COAAM%3BIACF%2CgCAAA%3BInBtNR%2CyBAAA%3B%3BEmBiNA%2CYASI%2CQAAO%3BIACH%2CoBAAA%3BIACA%2CiBAAA%3B%3BEAXR%2CYAcI%3BIACI%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BInBlER%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEmBqET%2CUACM%2CsBACE%3BIACI%2CqBAAA%3B%3BEAHZ%2CUACM%2CsBAKE%2CYAAc%3BIACV%2CYAAA%3BIACA%2CgBAAA%3B%3BEAKZ%3BI4DveA%2CqBAAA%3BIACA%2CkBAAA%3B%3BE%5C%2FEFA%2CiBAAC%3BEACD%2CiBAAC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CiBAAC%3BIACG%2CWAAA%3B%3BEmBieJ%2CiB4DpeA%3BI%5C%2FEgPA%2CUAAA%3BI%2BE9OI%2CeAAA%3BI%5C%2FE8OJ%2CqBAAA%3BI2BhOA%2CqBAAA%3B%3BERodA%2CiB4DpeA%2CepDoOE%3BI3BhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE2B2CA%2CiBoDtBA%2CepDsBC%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqC9NQ%2COrC8NR%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAtRI%2CiBoDnCJ%2CepDkCC%2CMACI%3BI3B6ML%2CcAAA%3B%3BE2BvMI%2CiBoDzCJ%2CepDwCC%2COACI%3BI3BuML%2CcAAA%3B%3BE%2BEqEA%2CiBArTA%2CeAqTC%3BI%5C%2FErED%2CqBAAA%3BI2BhOA%2CqBAAA%3B%3BEoDqSA%2CiBArTA%2CeAqTC%2COpDjFC%3BI3BhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE2B2CA%2CiBoDtBA%2CeAqTC%2COpD%5C%2FRA%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI3B9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSqC%5C%2FNM%2COrC%2BNN%3BIAAA%2Ca6BvRe%2CY7BuRf%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI2BqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAtRI%2CiBoDnCJ%2CeAqTC%2COpDnRA%2CMACI%3BI3B6ML%2CcAAA%3B%3BE2BvMI%2CiBoDzCJ%2CeAqTC%2COpD7QA%2COACI%3BI3BuML%2CcAAA%3B%3BEmBoPA%2CiB4D7SA%3BI%5C%2FEyDA%2CSAAA%3BIAAA%2CUAAA%3BIyC1KA%2CqBAAA%3BIzC0KA%2CgBAAA%3BIAAA%2CsBAAA%3BIAAA%2CeAAA%3BIAAA%2CeAAA%3BIAAA%2CYAAA%3BI%2BEhDI%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BI%5C%2FE8CJ%2CSAAA%3BIAAA%2CQAAA%3BIAAA%2CyCAAA%3B%3BEmBoPA%2CiB4D7SA%2CGAsBI%3BI%5C%2FEmCJ%2CSAAA%3BIAAA%2CUAAA%3B%3BE%2BE3BQ%2CiBA9BR%2CGAsBI%2CGAQK%3BI%5C%2FE2BT%2CmBAAA%3BI%2BEzBY%2CeAAA%3B%3BEAuTZ%2CiBAvVA%2CGAuVC%3BEACD%2CiBAxVA%2CGAwVC%3BIACG%2C0BAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CQAAA%3B%3BEAGJ%2CiBAjWA%2CGAiWC%3BIACG%2CiBAAA%3BI%5C%2FEzSJ%2CsDAAA%3BI%2BE2SI%2CWAAA%3B%3BEAGJ%2CiBAvWA%2CGAuWC%3BIACG%2CiBAAA%3BI%5C%2FE%5C%2FSJ%2CsDAAA%3BI%2BEiTI%2CWAAA%3B%3BEAlCJ%2CiBAxUA%2CGAwUC%3BI%5C%2FE%5C%2FQD%2CWAAA%3BIAAA%2CUAAA%3B%3BE%2BEoRA%2CiBA7UA%2CGA6UC%3BI%5C%2FEpRD%2CUAAA%3BIAAA%2CUAAA%3B%3BE%2BEZA%2CiBAAC%3BIACG%2CiBAAA%3B%3BEADJ%2CiBAAC%2COAGG%3BIACI%2CcAAA%3B%3BE5D4PR%2CiBAgBI%2CGACI%3BInBrQR%2CWAAA%3BIAAA%2CqBAAA%3BImBgRY%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CYAAA%3B%3BEsBnaZ%2CiBtBqZI%2CGACI%2CEsBtZP%3BIzCiJD%2CWAAA%3BIAAA%2CqBAAA%3B%3BEyC5IA%2CiBtBgZI%2CGACI%2CEsBjZP%3BIzC4ID%2CWAAA%3BIAAA%2CqBAAA%3B%3BEyCvIA%2CiBtB2YI%2CGACI%2CEsB5YP%3BIzCuID%2CWAAA%3BIAAA%2CqBAAA%3B%3BEmBoPA%2CiBAkCI%3BIACI%2CeAAA%3B%3BEAnCR%2CiBAsCI%3BIACI%2CaAAA%3B%3BEAvCR%2CiBA0CI%2CQAAO%3BI6CvVX%2CsBAAA%3BIACA%2CgBAAA%3BIACA%2C4BAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2CoBAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CqBAAA%3BIACA%2CiBAAA%3BIhEgDA%2CgBAAA%3BIAAA%2CWAAA%3B%3BEgE7CA%2CiB7C2UI%2CQAAO%2CO6C3UV%3BEACD%2CiB7C0UI%2CQAAO%2CO6C1UV%3BIACG%2CgBAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CiB7CqUI%2CQAAO%2CO6CrUV%3BIACG%2CgBAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CiB7CgUI%2CQAAO%2CO6ChUV%3BEACD%2CiB7C%2BTI%2CQAAO%2CO6C%5C%2FTV%3BEACD%2CQAAQ%2CUAAW%2CkB7C8Tf%2CQAAO%3BI6C7TP%2CoBAAA%3BIhE%2BBJ%2CYAAA%3B%3BEmBoPA%2CiBA%2BCI%2CQAAO%3BIACH%2CgBAAA%3BIACA%2CaAAA%3B%3BEQrcR%2CiBRwcK%2COACG%2CQAAO%2COQzcd%3BI3BgKD%2CSqC%5C%2FNM%2COrC%2BNN%3B%3BEmBwSI%2CiBAAC%2COAQG%3BIACI%2CcAAA%3B%3BEA7DZ%2CiBAiEI%3BIACI%2CaAAA%3B%3BEAKJ%2COAAC%2CMACK%2CUAAO%3BInB5TjB%2CSAAA%3BIAAA%2CUAAA%3BIyC1KA%2CqBAAA%3BItBweY%2CYAAA%3BIACA%2CiBAAA%3B%3BEAJR%2COAAC%2CMACK%2CUAAO%2CMsBhef%3BIACE%2CqBAAA%3BIACA%2CmBAAA%3B%3BEtB6dA%2COAAC%2CMACK%2CUAAO%2CMAKH%3BIACE%2CkBAAA%3B%3BEAEA%2COATX%2CMACK%2CUAAO%2CMAKH%2CKAGG%3BEATb%2COAAC%2CMACK%2CUAAO%2CMAKH%2CKAII%3BIACE%2CqBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2COAfX%2CMACK%2CUAAO%2CMAKH%2CKASG%2CQACG%3BInB3UpB%2CWAAA%3BIAAA%2CiBAAA%3B%3BEmBmVgB%2COAxBX%2CMACK%2CUAAO%2CMAsBH%2CsBACG%3BIACG%2CSAAS%2CgBAAT%3BIACA%2CqBAAA%3BIACA%2CoBAAA%3B%3BEAIA%2COA%5C%2FBf%2CMACK%2CUAAO%2CMAsBH%2CsBAOG%2CWACI%3BIACG%2CaAAA%3B%3BEAhCpB%2COAAC%2CMACK%2CUAAO%2CMAoCH%2CoBAAoB%3BIAClB%2CaAAA%3B%3BEAKZ%2COAAC%3BIACG%2CoBAAA%3B%3BEAIR%3BIACI%2CwBAAA%3B%3BEADJ%2CKAGI%3BIACI%2CmBAAA%3B%3BEAIR%3BIACI%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CmCAAA%3B%3BEAHJ%2CaAKM%3BEALN%2CaAMM%3BEANN%2CaAOM%3BIACE%2CsBAAA%3BIACA%2CWAAA%3B%3BEAIR%3BInBhYA%2CmBAAA%3BImBkYI%2CgBAAA%3BIACA%2CoBAAA%3B%3BEAHJ%2CYAKI%2CUACI%2CSACI%2CGAAE%3BIACE%2CaAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CSAAA%3B%3BEAEA%2CYARZ%2CUACI%2CSACI%2CGAAE%2CSAMG%3BEACD%2CYATZ%2CUACI%2CSACI%2CGAAE%2CSAOG%3BIACG%2CYAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3B%3BEAGJ%2CYAhBZ%2CUACI%2CSACI%2CGAAE%2CSAcG%3BInBrZjB%2CsDAAA%3B%3BEmByZgB%2CYApBZ%2CUACI%2CSACI%2CGAAE%2CSAkBG%3BInBzZjB%2CsDAAA%3BImB2ZoB%2CqBAAA%3B%3BEAQhB%2COAAC%3BIACG%2CgBAAA%3B%3BEADJ%2COAAC%2CQAGG%3BIACI%2CYAAA%3B%3BEAJR%2COAAC%2CQAOG%3BIACI%2CmBAAA%3B%3BEARR%2COAAC%2CQAWG%2CUAAS%3BIACL%2CcAAA%3BIACA%2CSAAA%3B%3BEAbR%2COAAC%2CQAgBG%3BIACI%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3B%3BEAnBR%2COAAC%2CQAgBG%2COAKI%3BIACI%2CuBAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3BIACA%2CeAAA%3BIACA%2CUAAA%3B%3BEA1BZ%2COAAC%2CQAgBG%2COAaI%3BEA7BR%2COAAC%2CQAgBG%2COAcI%3BIACI%2CeAAA%3B%3BE6DzqBhB%2CgBACI%2CWACI%3BIACI%2CcAAA%3B%3BECuRI%2CcAJF%2CSACV%2CSACK%2CKACI%2CKACI%2CMACG%3BIACI%2CcAAA%3B%3BEAKZ%2CcAXE%2CSACV%2CSACK%2CKASI%3BIACG%2CqBAAA%3B%3BEAGJ%2CcAfE%2CSACV%2CSACK%2CKAaI%3BIACG%2CgBAAA%3B%3BEADJ%2CcAfE%2CSACV%2CSACK%2CKAaI%2CQAGK%3BIACE%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3B%3BEAnBZ%2CcAFM%2CSACV%2CSACK%2CKAuBG%3BIACI%2CcAAA%3B%3BEAxBR%2CcAFM%2CSACV%2CSACK%2CKAuBG%2CUAGI%2COAAM%3BEA1Bd%2CcAFM%2CSACV%2CSACK%2CKAuBG%2CUAII%3BIACI%2CmBAAA%3BIACA%2CsBAAA%3B%3BEA7BZ%2CcAFM%2CSACV%2CSACK%2CKAuBG%2CUASI%2COAAM%3BIACF%2CmBAAA%3B%3BEAjCZ%2CcAFM%2CSACV%2CSACK%2CKAqCG%2CYACI%3BIACI%2CSAAA%3B%3BEAvCZ%2CcAFM%2CSACV%2CSACK%2CKAqCG%2CYAKI%3BIACI%2CgBAAA%3B%3BEA3CZ%2CcAFM%2CSACV%2CSACK%2CKA%2BCG%3BIACI%2CWAAA%3B%3BEAMhB%2CqBACI%3BIACI%2CWAAA%3B%3BEAIR%2CqBACI%3BIjF9GJ%2CgBAAA%3BIAAA%2CsBAAA%3BIAAA%2C4CAAA%3BIiFoHQ%2CgBAAA%3BIACA%2COAAA%3BIACA%2CoBAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAbR%2CqBACI%2CoBAcI%3BIACI%2CiBAAA%3B%3BElDpTZ%2CMAAM%2COAAQ%2CeAAe%3BIACzB%2CmBAAA%3B%3BEAEA%2CQAAS%2COAHP%2COAAQ%2CeAAe%3BIAIrB%2CcAAA%3BIACA%2CWAAA%3B%3BEAFJ%2CQAAS%2COAHP%2COAAQ%2CeAAe%2CcAOrB%3BIACI%2CcAAA%3BIACA%2CeAAA%3B%3BEAKZ%2CoBAAqB%2COAAM%2COAAQ%2CeAAe%3BIAC9C%2CeAAA%3BIACA%2COAAO%2CqBAAP%3B%3BEAEA%2CoBAJiB%2COAAM%2COAAQ%2CeAAe%2CcAI7C%2CUAAU%3BIACP%2CeAAA%3B%3BEAGJ%2CoBARiB%2COAAM%2COAAQ%2CeAAe%2CcAQ7C%2CUAAU%3BIACP%2CcAAA%3B%3BEAIR%2CqBAAsB%2COAAM%2COAAQ%2CeAAe%3BIAC%5C%2FC%2CUAAA%3B%3BEAGJ%2CQAAS%2COAAM%2COAAQ%2COAKnB%3BIACI%2CUAAA%3B%3BEANR%2CQAAS%2COAAM%2COAAQ%2COAKnB%2CiBAGI%3BIACI%2CSAAA%3B%3B%3BA5B%5C%2FEZ%2CgBAL4C%3BEJ6E5C%2CcACI%3BICqJJ%2CYAAA%3BIAAA%2CSAAA%3BIDlJQ%2CUAAA%3B%3B%3BAIxEZ%2CgBAJ2C%3BE4CkjBvC%2CoBAAoB%2CMAChB%2CqBAAoB%3BIpDrnBpB%2CaAAA%3B%3BEoDonBJ%2CoBAAoB%2CMAKhB%3BIACI%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CcAAA%3BIACA%2CYAAA%3B%3BEATR%2CoBAAoB%2CMAYhB%3BEAZJ%2CoBAAoB%2CMAahB%3BIACI%2CkBAAA%3B%3BEAIR%2CoBAAoB%3BIAEZ%2CaAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CoBANgB%2CMAMf%3BIACG%2CeAAA%3BIACA%2CYAAA%3B%3BEARR%2CoBAAoB%2CMAWhB%3BIpDjpBA%2CaAAA%3BIoDopBI%2CgBAAA%3B%3BEAdR%2CoBAAoB%2CMAiBhB%3BIACI%2CiBAAA%3B%3BEAlBR%2CoBAAoB%2CMAqBhB%3BIACI%2CSAAA%3B%3BEgBqFR%2CQACI%2CeACI%2CmBACI%3BIACI%2CWAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3B%3BEARhB%2CQACI%2CeAWI%3BIACI%2CiBAAA%22%7D */