/**
 * 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;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Black.eot');
  src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Black.woff2') format('woff2'), url('../fonts/Roboto-Black.woff') format('woff'), url('../fonts/Roboto-Black.ttf') format('truetype'), url('../fonts/Roboto-Black.svg#Roboto-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.eot');
  src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff'), url('../fonts/Roboto-Light.ttf') format('truetype'), url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.eot');
  src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('truetype'), url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.eot');
  src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff'), url('../fonts/Roboto-Medium.ttf') format('truetype'), url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.eot');
  src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Thin.eot');
  src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Thin.woff2') format('woff2'), url('../fonts/Roboto-Thin.woff') format('woff'), url('../fonts/Roboto-Thin.ttf') format('truetype'), url('../fonts/Roboto-Thin.svg#Roboto-Thin') format('svg');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #121212;
}
h1,
.h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
h2,
.h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
h3,
.h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h4,
.h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h5,
.h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h6,
.h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
a,
.alink {
  color: #e53d46;
  text-decoration: none;
}
a:visited,
.alink:visited {
  color: #e53d46;
  text-decoration: none;
}
a:hover,
.alink:hover {
  color: #2e8ab8;
  text-decoration: underline;
}
ul,
ol {
  padding-left: 0;
  list-style: none;
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF;
  font-size: 15px;
  border: 1px solid #524a48;
  border-radius: 0;
  height: 32px;
  padding: 0 12px;
  font-family: 'Roboto', sans-serif;
}
textarea {
  overflow: none;
  vertical-align: top;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: normal;
}
::-webkit-input-placeholder {
  color: #a0a0a0 !important;
}
input:-moz-placeholder {
  color: #a0a0a0 !important;
  opacity: 1;
}
input[type=number] {
  -moz-appearance: textfield;
}
._keyfocus *:focus {
  box-shadow: none;
}
input:not([disabled]):focus {
  box-shadow: none;
}
textarea:not([disabled]):focus {
  box-shadow: none;
}
select:not([disabled]):focus {
  box-shadow: none;
}
.cms-page-view .column.main p {
  color: #121212;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 10px;
}
.cms-page-view .page-main ul {
  padding-left: 0;
}
.cms-page-view .page-main ul li {
  list-style: disc;
  margin-left: 20px;
}
.cms-page-view .page-main ol {
  padding-left: 0;
  list-style: decimal;
}
.cms-page-view .page-main ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main,
  .cust-inner-container {
    max-width: 1280px !important;
    margin: 0 auto;
  }
  .cms-home .page-main {
    max-width: 100% !important;
  }
  .breadcrumbs {
    max-width: 1280px !important;
  }
  .navigation {
    max-width: 1310px !important;
  }
}
@media print {
  .navigation,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main,
  .cust-inner-container {
    max-width: 1280px !important;
    margin: 0 auto;
  }
  .cms-home .page-main {
    max-width: 100% !important;
  }
  .breadcrumbs {
    max-width: 1280px !important;
  }
  .navigation {
    max-width: 1310px !important;
  }
}
.navigation,
.page-header .header.panel,
.header.content,
.footer.content,
.page-wrapper > .widget,
.page-wrapper > .page-bottom,
.block.category.event,
.top-container,
.page-main,
.cust-inner-container {
  padding: 0 15px !important;
  box-sizing: border-box;
}
.header.panel > .header.links {
  display: block !important;
  font-size: 12px !important;
  float: none !important;
}
.header.panel > .header.links > li {
  display: none !important;
}
.page-header .panel.wrapper {
  padding: 4px 0 !important;
  background: #E8ECEE;
  border-bottom: 0 !important;
}
.header-top-left {
  float: right;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.header-top-left li {
  float: left;
  margin-right: 11px;
  margin-bottom: 0;
  line-height: 22px !important;
}
.header-top-left li:first-child:before {
  content: "\f03e";
  font-size: 20px;
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  margin-top: 2px;
}
.header-top-left li:last-child {
  margin-right: 0;
}
.header-top-left li:last-child:after {
  display: none;
}
.header-top-left li:after {
  content: "";
  width: 1px;
  height: 13px;
  background: #112743;
  display: inline-block;
  vertical-align: middle;
  margin-left: 11px;
}
.header-top-left li a {
  font: 13px 'Roboto', arial, helvetica, sans-serif;
  font-weight: 400;
  color: #112743;
  text-transform: none;
  transition: all 0.5s;
  vertical-align: middle;
}
.header-top-left li a:hover {
  color: #e53d46;
  text-decoration: none;
}
.header-top-left li .fa {
  font-size: 20px;
  vertical-align: top;
  margin-right: 5px;
  margin-top: 2px;
}
.header-top-right {
  float: left;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.header-top-right li {
  float: left;
  margin-left: 22px !important;
  margin-bottom: 0;
  line-height: 22px !important;
}
.header-top-right li a {
  font: 13px 'Roboto', arial, helvetica, sans-serif;
  font-weight: 400;
  color: #112743;
  text-transform: none;
  transition: all 0.5s;
}
.header-top-right li a:hover {
  color: #e53d46;
  text-decoration: none;
}
.header-top-right li .fa {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.breadcrumbs {
  overflow: hidden;
  margin-bottom: 15px;
  padding: 5px 15px !important;
  border-bottom: 1px solid #e8ecee;
}
.breadcrumbs .items > li {
  line-height: normal;
}
.breadcrumbs .item:not(:last-child):after {
  width: 9px;
  text-indent: -7px;
}
.breadcrumbs a {
  float: left;
  color: #121212;
  font: 13px 'Roboto', sans-serif;
  text-transform: none;
}
.breadcrumbs a:hover {
  color: #3399cc;
}
.breadcrumbs strong {
  color: #3190c4;
  font: 13px 'Roboto', sans-serif;
  text-transform: none;
}
.page-main > .page-title-wrapper .page-title {
  font-size: 24px;
  font-weight: 400;
  color: #121212;
  margin-bottom: 15px;
}
.nav-sections {
  margin-bottom: 0 !important;
  background: #232830;
  /** background: #dc6e92; OCT**/
  /** background: #e53d46; XMAS**/
}
.page-header-container .navigation .level0.active > a:not(.ui-state-active) {
  border-left: 0;
  border-bottom: 1px solid #cccccc;
}
.page-header-container .navigation .level0.active > a:not(.ui-state-active) span:not(.ui-menu-icon) {
  margin-left: 0;
}
.page-header-container .navigation .level0.has-active > a:not(.ui-state-active) {
  border-left: 0;
  border-bottom: 1px solid #cccccc;
}
.page-header-container .navigation .level0.has-active > a:not(.ui-state-active) span:not(.ui-menu-icon) {
  margin-left: 0;
}
/*============================= Navigation Start ==================================*/
@media (min-width: 768px) {
  .nav-sections-item-content .page-header-container {
    position: relative;
    max-width: 1310px !important;
    margin: 0 auto;
    padding: 0 !important;
    background: transparent;
  }
  .nav-sections-item-content .page-header-container .menuLinksTrigger {
    display: none;
  }
  .nav-sections-item-content #desktop_nav {
    display: block;
  }
  .nav-sections-item-content .cats .navigation {
    display: none;
  }
  .nav-sections-item-content .page-header.menu-bar {
    display: block;
  }
}
@media print {
  .nav-sections-item-content .page-header-container {
    position: relative;
    max-width: 1310px !important;
    margin: 0 auto;
    padding: 0 !important;
    background: transparent;
  }
  .nav-sections-item-content .page-header-container .menuLinksTrigger {
    display: none;
  }
  .nav-sections-item-content #desktop_nav {
    display: block;
  }
  .nav-sections-item-content .cats .navigation {
    display: none;
  }
  .nav-sections-item-content .page-header.menu-bar {
    display: block;
  }
}
.navigation .cats {
  float: left;
}
.navigation .browse-prod {
  background: #3190c4;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  padding: 0 0 0 15px;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  width: 182px;
  white-space: nowrap;
  text-align: left;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.navigation .browse-prod:hover {
  background: #e53d46;
  /** background: #7cb642; XMAS**/
}
.navigation .browse-prod .fa {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
}
.navigation .menuLinks {
  float: right;
  margin: 0;
  width: calc(100% - 210px);
  text-align: left;
}
.navigation .menuLinks a {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin-left: calc((100% - 700px) / 4);
  line-height: 44px;
  font-weight: normal;
}
.navigation .menuLinks a:hover {
  color: #7CB642;
  text-decoration: none;
}
.navigation .menuLinks a:first-child {
  margin-left: 0;
}
#catDiv {
  position: absolute;
  left: 15px;
  top: 44px;
  z-index: 200;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  width: 230px;
}
.nav-primary {
  padding: 0;
}
.nav-primary li {
  display: block !important;
  width: 100%;
  margin: 0;
}
.nav-primary li:hover a {
  color: #7cb642;
}
.nav-primary li a {
  font: 14px 'Roboto', sans-serif;
  color: #121212;
  padding: 10px 10px !important;
  border-bottom: 1px solid #e8ecee;
  display: block !important;
  text-transform: none;
  text-decoration: none;
  position: relative;
}
.nav-primary li a:hover {
  color: #e53d46;
}
.nav-primary li ul.level0 {
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  padding: 0;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  font-size: 0;
  border: 0;
}
.nav-primary li ul.level0 li {
  float: none;
  width: 50%;
  display: inline-block !important;
  vertical-align: top;
}
.nav-primary li ul.level0 li:nth-child(even) {
  float: right;
  border-left: 2px solid #fff;
}
.nav-primary li.browse_all_cat {
  width: 100%;
}
.nav-primary li.browse_all_cat .mega-menu {
  height: 720px !important;
  background: #232830 !important;
}
.nav-primary li.browse_all_cat .mega-menu ul {
  padding-left: 0 !important;
  padding-right: 0 !important;
  column-count: auto !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner {
  padding-top: 0 !important;
  padding-left: 15px;
  padding-right: 15px;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li {
  padding: 0 0 0 10px;
  position: relative;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li a {
  border: 0 !important;
  padding: 5.5px 10px !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li a:hover {
  color: #7cb642;
  background: transparent;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li a:after {
  display: none;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner div.start {
  width: 100%;
  display: block !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner div.start a {
  color: #3190c4 !important;
  border: 0 !important;
  padding-left: 0 !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li.nodisplay {
  visibility: hidden !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li.nodisplay:before {
  visibility: hidden !important;
}
.nav-primary li.level0 .mob-arrow {
  display: none;
}
.nav-primary li.parent a:after {
  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  color: #434444;
  vertical-align: middle;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-primary li.parent.browse_all_cat a:after {
  color: #e7e7e7;
}
.nav-primary li.parent.browse_all_cat .mega-menu-inner a:after {
  display: none;
}
.nav-primary li.browse_all_cat a {
  background: #232830;
  color: #fff;
}
.nav-primary li.browse_all_cat:hover a {
  background: #232830;
}
@media (min-width: 992px) {
  .nav-primary li.browse_all_cat .mega-menu ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(24, 1fr);
    grid-auto-columns: max-content;
    justify-content: space-between;
  }
  .nav-primary li.browse_all_cat .mega-menu ul li a {
    background: transparent !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-primary li.browse_all_cat .mega-menu {
    height: auto !important;
    padding-bottom: 20px;
  }
  .nav-primary li.browse_all_cat .mega-menu ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(40, 1fr);
    grid-auto-columns: max-content;
    justify-content: space-between;
  }
  .nav-primary li.browse_all_cat .mega-menu ul li a {
    background: transparent !important;
  }
}
/*============================== Mega Menu ==================================*/
@media only screen and (min-width: 1367px) {
  .nav-primary .mega-menu {
    width: 1050px;
  }
  .nav-primary .mega-menu .mega-menu-inner {
    min-height: 298px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .nav-primary .mega-menu {
    width: 77vw;
  }
}
@media only screen and (min-width: 768px) {
  #catDiv #nav {
    display: none;
  }
  .nav-primary .mega-menu {
    position: absolute;
    left: 230px;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
  }
  .nav-primary .mega-menu .mega-menu-inner:after {
    content: "";
    display: table;
    clear: both;
  }
  .nav-primary li.level0 {
    position: static;
  }
  .nav-primary li.level0 .mob-arrow {
    display: none;
  }
  .nav-primary li.level0 ul {
    display: block;
    width: 25%;
    float: left;
    padding-left: 25px;
    position: static;
    border: 0;
    background: transparent;
    box-sizing: border-box;
  }
  .nav-primary li.level0:hover .mega-menu {
    display: block;
  }
}
.nav-primary {
  margin-bottom: 0 !important;
}
.nav-primary .mega-menu .mega-menu-inner {
  padding-top: 12px;
  padding-bottom: 37px;
  height: 367px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 {
  margin-bottom: 10px;
  float: left;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 a {
  border: 0;
  padding: 0 !important;
  font-size: 16px;
  color: #3190c4;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 a:hover {
  color: #7cb642;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 a:after {
  display: none;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1:hover a {
  color: #7cb642;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul {
  width: 100%;
  padding: 0;
  padding-left: 15px;
  margin: 8px 0 0;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 {
  margin-bottom: 3px;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 a {
  font-size: 14px;
  color: #121212;
  line-height: normal;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 a:hover {
  color: #e53d46;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat {
  float: left;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 240px;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat a {
  background: #e8ecee;
  color: #121212;
  text-align: center;
  border-bottom: 0;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat a:hover {
  background: #e53d46;
  color: #fff;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat a:after {
  display: none;
}
.nav-primary .mega-menu .mega-menu-bottom {
  border-bottom: 0;
  height: 240px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 !important;
}
.nav-primary .mega-menu .mega-menu-bottom a {
  padding: 0 !important;
  font-size: 0;
  border-bottom: 0;
}
.nav-primary .mega-menu .mega-menu-bottom a img {
  width: 100%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
.nav-primary .mega-menu .mega-menu-bottom a:after {
  display: none;
}
.nav-primary .mega-menu .mega-menu-bottom img {
  width: 100%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1199px) {
  .nav-primary .mega-menu {
    width: 74vw;
  }
  .nav-primary .mega-menu .mega-menu-bottom img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .nav-primary .mega-menu .mega-menu-bottom a img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .nav-primary .mega-menu .mega-menu-inner ul li.level1 a {
    font-size: 14px;
  }
  .nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #catDiv {
    width: 185px;
  }
  .nav-primary .mega-menu {
    width: 72vw;
    left: 185px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-sections-item-content .page-header-container #nav {
    display: block;
  }
  .nav-primary .mega-menu {
    width: auto;
  }
  .nav-primary li {
    float: left;
  }
  .nav-primary ul.level0 {
    position: relative !important;
    left: 0 !important;
    float: left !important;
    width: 100% !important;
    padding-bottom: 40px !important;
  }
  .nav-primary ul.level0 li.level1 a {
    padding: 7px 10px 7px 20px !important;
    border-bottom: 0;
  }
  .nav-primary ul.level0 li.level1 ul.level1 li.level2 a {
    padding: 3px 10px 3px 30px !important;
    border-bottom: 0;
    font-size: 13px;
    color: #666;
  }
  .nav-primary ul.level0 li.level1 ul.level1 li.level2.view-all {
    display: none !important;
  }
  .nav-primary ul.level0 li.level1.view-all {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 200;
  }
  .nav-primary ul.level0 li.level1.view-all a {
    background: #e8ecee;
    color: #121212;
    text-align: center;
    padding-left: 10px;
  }
  .nav-primary ul.level0 li.level1.view-all a:hover {
    background: #e53d46;
    color: #ffffff;
  }
  #catDiv #desktop_nav {
    display: none;
  }
  .cats .navigation .level0 {
    border-top: 0;
  }
  .cats .navigation .level0 > .level-top {
    line-height: normal;
    font: 14px 'Roboto', sans-serif;
    color: #121212;
    border-bottom: 1px solid #cccccc;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: none;
  }
  .cats .navigation .level0 > .level-top:hover {
    background: transparent;
    color: #e53d46;
  }
  .cats .navigation .level0.has-active a {
    border-left: 0 !important;
    border-bottom: 1px solid #ccc !important;
  }
  .cats .navigation .level0.has-active a span {
    margin: 0 !important;
  }
  .cats .navigation .level0:first-child .submenu {
    padding-bottom: 0 !important;
  }
  .cats .navigation .level0:first-child .submenu .all-category {
    display: none;
  }
  .cats .navigation .parent .level-top:after {
    top: 50%;
    right: 10px;
    margin-top: -8px;
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
  }
  .cats .navigation .parent .level-top.ui-state-active:after {
    content: "\f078";
  }
  .cats .navigation .submenu {
    background: #fff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    padding-left: 0 !important;
    padding-bottom: 40px !important;
  }
  .cats .navigation .submenu a {
    padding: 7px 10px 7px 20px;
    font: 14px 'Roboto', sans-serif;
    color: #121212;
  }
  .cats .navigation .submenu li.all-category {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
  }
  .cats .navigation .submenu li.all-category a {
    background: #e8ecee;
    color: #121212;
    text-align: center;
  }
  .cats .navigation .submenu li.all-category a:hover {
    background: #e53d46;
    color: #fff;
  }
  .cats .navigation .submenu li.level1 a {
    padding-left: 25px !important;
    position: relative;
    border-bottom: 0 !important;
  }
  .cats .navigation .submenu li.level1 a:hover {
    color: #e53d46;
  }
  .cats .navigation .submenu li.level1:not(.parent) a {
    point-events: none;
  }
  .cats .navigation .submenu li.level1 .submenu {
    display: none;
    box-shadow: none;
  }
  .cats .navigation .submenu li.level1 .submenu li a {
    border-bottom: 0 !important;
    padding: 3px 10px 3px 30px !important;
    font-size: 13px;
    color: #666 !important;
  }
  .cats .navigation .submenu li.level1 .submenu li a:hover {
    background: #f4f4f4;
    color: #e53d46;
  }
  .cats .navigation .submenu li.level1 .submenu.expanded {
    padding-bottom: 0 !important;
  }
}
/*============================= Navigation End ==================================*/
.minicart-wrapper {
  float: right;
  margin: 11px 0 0 !important;
}
.minicart-wrapper .block-minicart {
  padding: 10px;
  width: 320px !important;
  border-color: #ccc !important;
  margin-top: 0;
}
.minicart-wrapper .block-minicart .subtitle.empty {
  padding: 0;
  font-weight: normal;
  text-transform: none !important;
  line-height: normal !important;
  padding: 0 15px !important;
  margin-bottom: 0 !important;
}
.minicart-wrapper .block-minicart:before,
.minicart-wrapper .block-minicart:after {
  display: none;
}
.minicart-wrapper .action.showcart {
  display: inline-block;
  vertical-align: middle;
  padding: 18px 5px;
  width: 100px;
  white-space: normal;
  border-radius: 8px;
  margin-left: 21px;
  text-align: center;
  text-decoration: none;
  color: #121212;
  line-height: normal;
  font-size: 14px;
  transition: all 0.5s;
  box-sizing: border-box;
  position: relative;
}
.minicart-wrapper .action.showcart:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.minicart-wrapper .action.showcart:before {
  content: "";
  width: 21px;
  height: 28px;
  background: url("../images/icon-quotelist.svg") 0 0 no-repeat;
  background-size: auto 100%;
  vertical-align: middle;
  margin-right: 3px;
}
.minicart-wrapper .action.showcart .text {
  position: static;
  clip: auto;
  width: 40px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.minicart-wrapper .action.showcart.active:before {
  content: "";
  margin-right: 3px;
}
.minicart-wrapper .action.showcart .counter.qty {
  color: #fff;
  position: absolute;
  left: 9px;
  top: 11px;
  background: #e53d46;
  width: 13px;
  height: 13px;
  min-width: 0;
  border-radius: 50%;
  text-align: center;
  line-height: 13px;
  transform: translateY(-50%);
  padding: 0;
  font-size: 0;
}
.minicart-wrapper .action.close:before {
  font-weight: bold !important;
  color: #636363 !important;
}
.skip-links {
  float: right;
  margin-top: 11px;
}
.skip-links .header-tab {
  display: inline-block;
  vertical-align: middle;
  padding: 15px 5px;
  width: 100px;
  white-space: nowrap;
  border-radius: 8px;
  margin-left: 21px;
  text-align: center;
  text-decoration: none;
  color: #121212;
  line-height: normal;
  font-size: 14px;
  transition: all 0.5s;
  box-sizing: border-box;
}
.skip-links .header-tab:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.skip-links .header-tab.livechat_button {
  margin-left: 0;
}
.skip-links .header-tab.livechat_button img {
  display: inline-block;
  vertical-align: top;
  visibility: visible !important;
  width: 72px;
  height: auto;
  max-width: none;
}
.skip-links .header-tab .fa {
  display: inline-block;
  font-size: 32px;
  margin-right: 7px;
  vertical-align: middle;
}
.skip-links .header-tab .fa.fa-envelope {
  color: #7cb642;
}
.skip-links .header-tab .fa.fa-home {
  color: #434446;
  font-size: 34px;
}
.skip-links .header-tab span {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: normal;
}
.header-callus {
  float: right;
  text-align: center;
  margin: 25px 1.5% 0 0;
}
.header-callus .fa {
  font-size: 29.8px;
  color: #7cb642;
  vertical-align: middle;
}
.header-callus .call-left {
  display: inline-block;
  vertical-align: middle;
  margin-top: 2px;
}
.header-callus .call-left a {
  display: inline-block;
  margin: 0 5px;
  font-size: 23.8px;
  color: #121212;
  text-decoration: none;
}
.header-callus .call-left a:hover {
  color: #e53d46;
}
.page-main {
  padding: 0 15px 30px !important;
}
.cms-home .page-main {
  padding: 0 !important;
}
.logo {
  max-width: 182px;
  padding: 15px 9px 10px;
  margin: 0 !important;
  width: 100%;
}
.logo img {
  width: 100% !important;
}
.block-search {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 983px) !important;
  height: 36px;
  padding: 0 !important;
  margin: 24px 0 0 4.4%;
  float: none !important;
}
.block-search .control {
  padding-bottom: 0 !important;
}
.block-search input {
  width: 100%;
  height: 36px;
  padding-left: 55px;
  padding-right: 12px !important;
  font-family: 'Roboto', sans-serif;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.block-search input:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.block-search .action.search {
  left: 0;
  width: 40px;
  height: 100%;
  border: 0;
  background: #e53d46 !important;
  border-radius: 8px 0 0 8px;
  padding: 0 !important;
  line-height: 39px !important;
  opacity: 1 !important;
}
.block-search .action.search:before {
  font-size: 28px !important;
  font-weight: bold !important;
  line-height: 36px !important;
  color: #fff !important;
}
.homepage-banner {
  position: relative;
  overflow: hidden;
  background: #000;
}
.homepage-banner.no-banner .banner-image {
  height: 400px;
}
.homepage-banner.no-banner .banner-image img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.homepage-banner .owl-item {
  margin-left: 0;
}
.homepage-banner .owl-item .banner-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: block;
}
.homepage-banner .owl-item .banner-image img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.homepage-banner .owl-item .banner-image img.mobile-banner {
  display: none !important;
}
.homepage-banner .owl-nav {
  margin: 0 !important;
}
.homepage-banner .owl-nav .owl-prev {
  font: 30px FontAwesome;
  color: #121212 !important;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  left: -25px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.homepage-banner .owl-nav .owl-prev span {
  display: none;
}
.homepage-banner .owl-nav .owl-prev:hover {
  color: #3190C4 !important;
  background: transparent;
}
.homepage-banner .owl-nav .owl-prev:focus {
  outline: 0;
}
.homepage-banner .owl-nav .owl-prev:before {
  content: "\f053";
}
.homepage-banner .owl-nav .owl-next {
  font: 30px FontAwesome;
  color: #121212 !important;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  right: -25px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.homepage-banner .owl-nav .owl-next span {
  display: none;
}
.homepage-banner .owl-nav .owl-next:hover {
  color: #3190C4 !important;
  background: transparent;
}
.homepage-banner .owl-nav .owl-next:focus {
  outline: 0;
}
.homepage-banner .owl-nav .owl-next:before {
  content: "\f054";
}
.homepage-banner:hover .owl-nav .owl-prev {
  left: 0;
  height: 100%;
  width: 50px;
  display: table;
}
.homepage-banner:hover .owl-nav .owl-prev:before {
  display: table-cell;
  vertical-align: middle;
}
.homepage-banner:hover .owl-nav .owl-next {
  right: 0;
  height: 100%;
  width: 50px;
  display: table;
}
.homepage-banner:hover .owl-nav .owl-next:before {
  display: table-cell;
  vertical-align: middle;
}
.homepage-banner.owl-theme .owl-nav.disabled + .owl-dots {
  display: none;
}
.homepage-banner + p {
  margin: 0;
}
.homepage-banner + script + p {
  margin: 0;
}
@media (min-width: 600px) {
  .homepage-banner.no-banner.mobile {
    display: none;
  }
}
@media (max-width: 599px) {
  .homepage-banner.no-banner {
    display: none;
  }
  .homepage-banner.no-banner.mobile {
    display: block;
  }
  .homepage-banner.no-banner.mobile .banner-image {
    height: auto;
    font-size: 0;
  }
  .homepage-banner.no-banner.mobile .banner-image img {
    position: static;
    height: auto;
    width: 100%;
    transform: none;
  }
}
@media only screen and (min-width: 1367px) {
  .homepage-banner .owl-item .banner-image {
    height: auto;
  }
  .homepage-banner .owl-item .banner-image img {
    width: 100%;
    height: auto;
    position: static;
    left: auto;
    transform: none;
  }
  .homepage-banner.no-banner .banner-image {
    height: auto;
    font-size: 0;
  }
  .homepage-banner.no-banner .banner-image img {
    width: 100%;
    height: auto;
    position: static;
    left: auto;
    transform: none;
  }
}
@media only screen and (max-width: 1280px) {
  .homepage-banner .owl-item .banner-image {
    height: 29.28vw;
  }
}
@media only screen and (max-width: 599px) {
  .homepage-banner .owl-item .banner-image {
    height: auto;
  }
  .homepage-banner .owl-item .banner-image img.desktop-banner {
    display: none !important;
  }
  .homepage-banner .owl-item .banner-image img.mobile-banner {
    display: block !important;
    position: static;
    transform: none;
    width: 100%;
  }
}
.home-block {
  padding: 35px 0 15px;
}
.home-block h2 {
  margin-bottom: 15px;
  text-align: center;
}
.home-block.welcome-sec {
  text-align: center;
  background-color: #e8ecee;
  padding-top: 0;
  padding-bottom: 15px;
}
.home-block.welcome-sec h1 {
  font-size: 24px;
  text-align: center;
  background: #e8ecee;
  padding-top: 4px;
  margin-bottom: 12px;
}
.home-block.home-now-trending {
  background: #FFFFFF;
  padding-bottom: 0;
  position: relative;
}
.home-block.home-our-designteam {
  background: #E8ECEE;
  padding: 25px 0 0;
  text-align: left;
}
.home-block.home-our-designteam:after {
  content: "";
  display: table;
  clear: both;
}
.home-block.home-our-designteam h2 {
  text-align: left;
  margin-bottom: 30px;
}
.home-block.home-our-designteam img {
  float: left;
  margin: 0 25px 25px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.home-top-banner {
  font-size: 24px;
  text-align: center;
  background: #e8ecee;
  padding-top: 15px;
  margin: 0;
}
.home-accordion .cust-accordion {
  padding: 0;
}
.home-accordion .cust-accordion > li {
  list-style: none !important;
  padding: 0;
  margin: 0 0 1px 0;
  position: relative;
}
.home-accordion .cust-accordion > li .tab-toggle {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 20px;
  color: #e53d46;
  cursor: pointer;
  pointer-events: none;
}
.home-accordion .cust-accordion > li h3 {
  background: #E8ECEE;
  padding: 10px 50px 10px 15px;
  text-align: left;
  margin: 0;
  cursor: pointer;
}
.home-accordion .cust-accordion > li .tab-content {
  display: none;
  border: 1px solid #eaedf2;
  border-top: 0;
  padding: 12px;
}
.home-accordion .cust-accordion > li .tab-content ul {
  padding-left: 0;
}
.home-accordion .cust-accordion > li:first-child .tab-content {
  display: block;
}
.home-we-are-right {
  padding: 25px 0 0;
  text-align: left;
}
.home-we-are-right:after {
  content: "";
  display: table;
  clear: both;
}
.home-we-are-right h2 {
  text-align: left;
  margin-bottom: 30px;
}
.home-we-are-right iframe {
  float: left;
  margin: 0 25px 25px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.what-people-say {
  text-align: center;
  background: #E8ECEE;
}
.home_review_sec {
  background: #fff;
  margin: 0;
  padding: 25px 0 10px;
}
.home_review_sec:after {
  content: "";
  display: table;
  clear: both;
}
.home_review_sec h2 {
  font-weight: 400;
  color: #111111;
  font-size: 26px;
  margin-bottom: 20px;
}
.home-review {
  max-width: 1295px;
  margin: 0 auto;
  padding: 0 15px;
}
.home-review ul {
  margin: 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.home-review ul:after {
  content: "";
  display: table;
  clear: both;
}
.home-review ul li {
  list-style: none;
  float: left;
  width: calc((100% - (26px * 3)) / 4);
  margin: 0 26px 26px 0;
  padding: 15px 10px;
  margin-bottom: 28px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  text-align: left;
  box-sizing: border-box;
}
.home-review ul li p {
  margin: 10px 0 0;
  line-height: normal;
  font-size: 14px;
}
.home-review .review-starbox a {
  display: inline-block;
  text-decoration: none;
}
.home-review .review-starbox span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.home-review .review-starbox span.icon {
  float: right;
  margin-right: 0;
}
@media only screen and (min-width: 992px) {
  .home-review ul li:nth-child(4n) {
    margin-right: 0;
  }
}
/*========================== Home Now Tranding with slider start =========================*/
.home-now-trending {
  background: #FFFFFF;
  padding-bottom: 0;
}
.home-now-trending:after {
  content: "";
  display: table;
  clear: both;
}
.home-now-trending .dummy {
  display: flex;
  padding-top: 10px;
}
.home-now-trending ul li {
  list-style: none;
  margin: 0 20px 20px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.home-now-trending ul li a {
  position: relative;
  padding-bottom: 52px;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.home-now-trending ul li a img {
  height: auto;
  width: auto !important;
}
.home-now-trending ul li a .home-cat-featured-info {
  background: #3190c4;
  position: absolute;
  left: 0;
  display: table;
  bottom: 0;
  padding: 0 8px;
  transition: all 0.3s;
  width: 100%;
  height: 52px;
  box-sizing: border-box;
}
.home-now-trending ul li a .home-cat-featured-info span {
  font: 300 15px 'Montserrat', arial, helvetica, sans-serif;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}
.home-now-trending .owl-carousel .owl-stage-outer {
  padding-top: 10px;
}
.home-now-trending .owl-carousel .owl-nav {
  margin: 0 !important;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev {
  font: 30px FontAwesome !important;
  color: #121212;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  left: -10px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev span {
  display: none;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev:hover {
  color: #3190C4;
  background: transparent;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev:focus {
  outline: 0;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev:before {
  content: "\f053";
}
.home-now-trending .owl-carousel .owl-nav .owl-next {
  font: 30px FontAwesome !important;
  color: #121212;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  right: -10px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.home-now-trending .owl-carousel .owl-nav .owl-next span {
  display: none;
}
.home-now-trending .owl-carousel .owl-nav .owl-next:hover {
  color: #3190C4;
  background: transparent;
}
.home-now-trending .owl-carousel .owl-nav .owl-next:focus {
  outline: 0;
}
.home-now-trending .owl-carousel .owl-nav .owl-next:before {
  content: "\f054";
}
@media (max-width: 1023px) {
  .home-now-trending .dummy {
    display: block;
    white-space: nowrap;
    overflow: hidden;
  }
  .home-now-trending .dummy li {
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-now-trending .dummy li {
    width: calc((100% - (20px * 2)) / 5);
    white-space: normal;
  }
}
@media (min-width: 399px) and (max-width: 767px) {
  .home-now-trending .dummy li {
    width: calc((100% - (40px * 2)) / 2);
    white-space: normal;
  }
}
@media (max-width: 398px) {
  .home-now-trending .dummy li {
    width: calc(100% - (20px * 2));
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .home-now-trending ul li a img {
    width: 100% !important;
  }
}
/*========================== Home Now Tranding with slider end =========================*/
/*========================== Home Now Tranding without slider start =========================*/
/*========================== Home Now Tranding without slider end =========================*/
.home-cat-sect ul {
  margin: 0;
  font-size: 0;
  text-align: center;
}
.home-cat-sect ul:after {
  content: "";
  display: table;
  clear: both;
}
.home-cat-sect ul li {
  position: relative;
  list-style: none;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 250px;
  margin: 0 40px 40px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
  height: 260px;
  border-radius: 1mm;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  z-index: 190;
}
.home-cat-sect ul li a {
  display: block;
  overflow: hidden;
  font-size: 0;
}
.home-cat-sect ul li a img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  max-width: 150%;
}
.home-cat-sect ul li a:before {
  opacity: 0;
  transition: all 0.5s;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 70px inset rgba(0, 0, 0, 0.7);
}
.home-cat-sect ul li:hover a:before {
  opacity: 1;
}
.home-cat-sect ul li:hover .home-cat-featured-info a {
  color: #3190c4;
  text-shadow: 0 0 5px #FFF, 0 0 12px #FFF, 0 0 8px #FFF, 0 0 20px #fff, 0 0 3px #fff, 0 0 11px #fff, 0 0 7px #fff, 0 0 5px #fff, 2px 2px 15px #ffffff;
  overflow: visible;
}
.home-cat-sect ul li .home-cat-featured-info {
  padding: 4px 8px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  min-height: 50px;
  box-sizing: border-box;
  display: table;
  width: 100%;
}
.home-cat-sect ul li .home-cat-featured-info a {
  font: 600 18px 'Roboto', arial, helvetica, sans-serif;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  height: auto;
  border-radius: 0;
  display: table-cell;
  vertical-align: middle;
}
.home-cat-sect ul li .home-cat-featured-info a:before {
  display: none;
}
@media only screen and (min-width: 1150px) {
  .home-cat-sect ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1149px) {
  .home-cat-sect ul li {
    width: calc((100% - (40px * 3)) / 4);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .home-cat-sect ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-cat-sect ul li {
    width: calc((100% - (25px * 2)) / 3);
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .home-cat-sect ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-cat-sect ul li {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .home-cat-sect ul li:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .home-cat-sect ul li {
    width: 100%;
    margin-right: 0;
  }
}
/*====================== CMS Pages =========================*/
.cms-page-view .column.main ul {
  margin-bottom: 15px;
  padding: 0;
}
.cms-page-view .column.main ul li {
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  position: relative;
}
.cms-page-view .home-accordion .cust-accordion {
  padding-left: 0 !important;
}
.cms-page-view .home-accordion .cust-accordion li:before {
  display: none !important;
}
.data-table {
  width: 100%;
}
.data-table td {
  padding: 10px;
  vertical-align: top;
}
.data-table th {
  padding: 10px;
  vertical-align: top;
  background: #f4f4f4;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: normal;
}
.data-table thead th {
  border-bottom: 1px solid silver;
}
.data-table tbody td {
  border-bottom: 1px solid silver;
  font-family: 'Roboto', sans-serif;
  line-height: normal;
}
.data-table tbody td .item-options {
  margin-left: 0;
  margin-top: 10px;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}
.data-table tfoot td {
  font-family: 'Roboto', sans-serif;
}
.data-table tfoot tr {
  background: #f4f4f4;
}
.cms-home .columns .column.main {
  padding-bottom: 0;
}
.page-footer {
  padding: 0px;
  background: #232830;
}
.footer.content {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  border-top: 0;
}
.footer.content .block.newsletter {
  float: none;
  max-width: none;
  width: 90%;
  padding-top: 7px;
  margin-bottom: 30px;
}
.footer.content .block.newsletter .form.subscribe {
  padding-top: 7px;
}
.footer.content .block.newsletter .field {
  margin-right: 0 !important;
  max-width: 100%;
}
.footer.content .block.newsletter .field .control:before {
  display: none;
}
.footer.content .block.newsletter .field .mage-error {
  float: left !important;
}
.footer.content .block.newsletter input {
  float: left;
  border: 0;
  height: 40px;
  font-size: 15px;
  border-radius: 8px 0 0 8px;
  padding: 0 8px;
  margin: 0;
}
.footer.content .block.newsletter .action.subscribe {
  max-width: none !important;
  height: 40px;
  line-height: 17px;
  float: left;
  background: #e53d46;
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  padding: 0 !important;
  margin: 0 !important;
  border: 0;
  font-weight: normal;
  text-transform: uppercase;
  min-width: 90px;
  font-family: 'Roboto', sans-serif;
}
.footer.content .links {
  font: 13px 'Roboto', sans-serif;
  color: #fff;
  width: 22%;
  padding-right: 30px !important;
  box-sizing: border-box;
}
.footer.content .links h2,
.footer.content .links h3 {
  font-weight: normal;
  font-size: 21px;
  text-transform: none;
  color: #fff;
  margin-bottom: 0.5em;
}
.footer.content .links.col-1 {
  width: 33%;
}
.footer.content .links.col-4 {
  width: auto;
  float: right;
  padding-right: 0 !important;
}
.footer.content .links.col-4 img {
  margin-top: 8px;
}
.footer.content .links.col-2 span {
  display: inline-block;
  margin: 0 0 20px;
  color: #fff;
  position: relative;
  padding: 0 0 0 30px;
}
.footer.content .links.col-2 a {
  display: inline-block;
  margin: 0 0 20px;
  color: #fff;
  position: relative;
  padding: 0 0 0 30px;
}
.footer.content .links.col-2 .fa {
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.footer.content .links.col-2 p {
  margin-bottom: 0;
}
.footer.content .links a {
  color: #fff;
}
.footer.content .links a:hover {
  color: #e53d46;
  text-decoration: none;
}
.footer.content .links li {
  padding: 0 0 0 17px;
  margin: 0 0 1px;
  position: relative;
  line-height: 1.4;
  color: #fff;
}
.footer.content .links li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 5px;
}
.footer.content .links .social li {
  padding: 0;
  float: left;
  margin-right: 22px;
  list-style: none;
}
.footer.content .links .social li:before {
  display: none;
}
.footer.content .links .social li a {
  width: 41px;
  height: 40px;
  display: block;
}
.footer.content .links .social li.insta a {
  background: url("../images/instagram-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.twt a {
  background: url("../images/twitter-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.gpl a {
  background: url("../images/icon-sprite-new.png") -93px 0 no-repeat;
}
.footer.content .links .social li.fbk a {
  background: url("../images/facebook-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.pint a {
  background: url("../images/pinterest-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.yout a {
  background: url("../images/youtube-icon-round-rect.svg") 0 0 no-repeat;
}
.footer .copyright {
  display: none;
}
.to-top {
  display: inline-block;
  height: 5em;
  position: fixed;
  bottom: 0.25em;
  left: 0.125em;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("..//images/new_top_arrow.png") no-repeat center 50%;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 2;
  opacity: 0.5;
}
.to-top:hover {
  opacity: 1;
}
/*============================ Category and Product list page =============================*/
@media (min-width: 768px) {
  .page-layout-2columns-right .column.main {
    width: calc(100% - 320px) !important;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 256px !important;
    float: right !important;
    padding-left: 10px !important;
    padding-top: 35px;
  }
  .page-products .columns {
    padding-top: 45px !important;
  }
  .category-page-left {
    width: 100%;
    float: left;
  }
  .catalog-category-view .columns {
    float: right;
    padding-top: 0 !important;
    width: 100%;
  }
}
@media print {
  .page-layout-2columns-right .column.main {
    width: calc(100% - 320px) !important;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 256px !important;
    float: right !important;
    padding-left: 10px !important;
    padding-top: 35px;
  }
  .page-products .columns {
    padding-top: 45px !important;
  }
  .category-page-left {
    width: 100%;
    float: left;
  }
  .catalog-category-view .columns {
    float: right;
    padding-top: 0 !important;
    width: 100%;
  }
}
.form-list {
  list-style: none;
  padding: 0;
}
.category-total {
  padding-top: 45px;
}
.category-total:after {
  content: "";
  display: table;
  clear: both;
}
.category-description {
  margin-top: 5px !important;
}
.column.main .category-description {
  padding: 15px;
  border: 1px solid #cccccc;
  text-align: left;
}
.column.main .category-description p {
  margin-bottom: 1em;
}
.subcat-listing {
  font-size: 0;
  padding: 0;
  margin-bottom: 0;
}
.subcat-listing li {
  position: relative;
  list-style: none;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 280px;
  margin: 0 40px 40px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
  height: auto;
  padding-bottom: 54px;
  border-radius: 1mm;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
.subcat-listing li a {
  display: block;
  overflow: hidden;
  font-size: 0;
  position: static !important;
}
.subcat-listing li a img {
  position: static;
  left: 0;
  top: 0;
  transform: none;
  max-width: 100%;
  width: 100%;
}
.subcat-listing li a .home-cat-featured-info {
  display: block;
  padding: 4px 8px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-height: 54px;
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.subcat-listing li a .home-cat-featured-info span {
  font: 600 18px 'Roboto', arial, helvetica, sans-serif;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  height: auto;
  border-radius: 0;
  display: table-cell;
  vertical-align: middle;
}
.subcat-listing li a:before {
  opacity: 0;
  transition: all 0.5s;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 70px inset rgba(0, 0, 0, 0.7);
}
.subcat-listing li:hover .home-cat-featured-info span {
  color: #3190c4;
  text-shadow: 0 0 5px #FFF, 0 0 12px #FFF, 0 0 8px #FFF, 0 0 20px #fff, 0 0 3px #fff, 0 0 11px #fff, 0 0 7px #fff, 0 0 5px #fff, 2px 2px 15px #ffffff;
  overflow: visible;
}
.subcat-listing li:hover a:before {
  opacity: 1;
}
@media only screen and (min-width: 1300px) {
  .subcat-listing li {
    width: calc((100% - (40px * 2)) / 3);
  }
  .subcat-listing li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .subcat-listing li {
    width: calc((100% - (40px * 2)) / 3);
  }
  .subcat-listing li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .subcat-listing li {
    width: calc((100% - 40px) / 2);
  }
  .subcat-listing li:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .subcat-listing li {
    width: 100%;
    margin-right: 0;
  }
}
.category-description {
  margin-top: 20px;
  margin-bottom: 1.5em;
  text-align: center;
}
.category-description:after {
  content: "";
  display: table;
  clear: both;
}
.category-description h1 {
  margin-bottom: 5px !important;
}
.category-description p {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .category-description h1 {
    font-size: 32px;
  }
  .category-description .cat_des_readmore {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .category-description {
    margin-top: -10px;
    position: relative;
    overflow: hidden;
  }
  .category-description:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 30%, #ffffff 100%);
    z-index: 200;
  }
  .category-description h1 {
    margin-bottom: 10px;
  }
  .category-description p {
    height: 10px;
    overflow: hidden;
    position: relative;
  }
  .category-description .cat_des_readmore {
    color: #3190c4;
  }
  .category-description.cat-text-open:before {
    display: none;
  }
  .category-description.cat-text-open p {
    height: auto;
  }
  .category-description.cat-text-open .cat_des_readmore {
    display: none;
  }
  .column.main .category-description p {
    height: auto;
  }
  .column.main .category-description p:after {
    display: none;
  }
}
.products-grid .product-item {
  transition: all 0.5s;
  text-align: center;
  position: relative;
  padding-bottom: 80px !important;
}
.products-grid .product-item .product-item-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  z-index: 100;
}
.products-grid .product-item .price-box {
  margin-bottom: 0;
}
.products-grid .product-item:hover {
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}
.products-grid .product-item .price-box .price {
  color: #3eaf29;
  font-weight: 400;
}
.products-grid .product-item-actions {
  margin: 0 !important;
}
.products-grid .product-item-name,
.products-grid .product.name a {
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.products-grid .product-item-name:hover,
.products-grid .product.name a:hover {
  color: #E53D46;
}
.sidebar .fieldset > .field:not(.choice):not(:last-child) {
  margin: 0 0 3px;
}
.sidebar .fieldset .fields > .field:not(:last-child) {
  margin: 0 0 3px;
}
.page-layout-2columns-right .sidebar .block-title {
  text-align: center;
  border-top: 0;
  padding: 0;
}
.page-layout-2columns-right .sidebar .block-title strong {
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
}
.quick-question {
  margin-bottom: 20px;
}
.quick-question .titlebar {
  background: #3190c4;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.quick-question .titlebar .fa {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 22px;
  margin-top: 11px;
}
.quick-question .titlebar .fa.ques-toggle {
  margin: 15px 4px 0 0;
  float: right;
  font-size: 14px;
}
.quick-question .titlebar .fa.fa-envelope {
  display: none;
}
.quick-question .titlebar span {
  display: inline-block;
  vertical-align: top;
}
.quick-question .form-content {
  padding: 10px 8px 10px;
  background: #fff;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  text-align: left;
}
.quick-question .form-content p {
  color: #121212;
  margin-bottom: 12px;
  text-align: center;
}
.quick-question .form-content ul li {
  margin: 0 0 3px;
}
.quick-question .form-content ul li label {
  font: 13px 'Roboto', sans-serif;
  color: #121212;
  margin: 0 0 3px;
}
.quick-question .form-content ul li label em {
  color: #e53d46;
}
.quick-question .form-content ul li .input-text {
  max-width: 100%;
  width: 100%;
  border: 1px solid #524a48;
  border-radius: 0;
  height: 32px;
  padding: 0 12px;
}
.quick-question .form-content ul li textarea.input-text {
  height: 77px;
  padding-top: 7px;
  padding-bottom: 7px;
  resize: none;
}
.quick-question .form-content .buttons-set {
  border: 0;
  padding-top: 0;
  margin-top: 3px;
  text-align: center;
  font-size: 0;
}
.quick-question .form-content .buttons-set .send-enq {
  margin: 0;
  float: none;
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  color: #fff;
  border: 0;
  border-radius: 0;
  min-width: 140px;
  padding: 0 12px;
  margin-right: 10px;
  margin-bottom: 8px;
}
.quick-question .form-content .buttons-set .send-enq span {
  display: inline-block;
  vertical-align: middle;
}
.quick-question .form-content .buttons-set .send-enq .fa {
  font-size: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.quick-question .form-content .buttons-set .send-enq:hover {
  background: #e53d46;
}
.quick-question .form-content .buttons-set .add-to-list {
  margin: 0;
  float: none;
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quick-question .form-content .buttons-set .add-to-list .fa {
  font-size: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.quick-question .form-content .buttons-set .add-to-list:hover {
  background: #e53d46;
}
.quick-question .form-content .action.primary {
  margin: 12px 0 0 10px;
  float: none;
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
}
.quick-question .form-content .action.primary:hover {
  background: #e53d46;
}
#customQuoteForm .form-list li .logo-attchment {
  position: relative;
  margin-bottom: 12px;
}
#customQuoteForm .form-list li .logo-attchment:before {
  content: "Browse";
  background: #3190c4;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 10px;
  color: #fff;
  line-height: 32px;
  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 #524a48;
  border-radius: 0;
  height: 32px;
  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: #aaa;
  font-size: 15px;
  z-index: 1;
  transform: translateY(-50%);
}
#customQuoteForm .form-list li .uploaded-file-size {
  display: block;
  text-align: center;
  margin: 0 0 15px;
  color: #e53d46;
  font-weight: bold;
}
#customQuoteForm .form-list li .g-recaptcha {
  text-align: center;
}
#customQuoteForm .form-list li .g-recaptcha > div {
  display: inline-block;
}
.sidebar .block.block-cart {
  margin-bottom: 18px;
}
.sidebar .block.block-cart .block-title {
  background: #3190c4;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
  border-top: 0;
}
.sidebar .block.block-cart .block-title strong {
  font: 16px 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: none;
  color: #fff;
}
.sidebar .block.block-cart .block-title .fa.fa-shopping-cart {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 22px;
  margin-top: 11px;
  display: none;
}
.sidebar .block.block-cart .block-title .fa.block-cart-toggle {
  margin: 15px 4px 0 0;
  float: right;
  font-size: 14px;
}
.sidebar .block.block-cart .block-content {
  padding: 6px 8px 12px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 2px 5px;
  margin-top: 0;
  height: 330px;
  overflow-y: auto;
}
.sidebar .block.block-cart .block-content p {
  text-align: center;
}
.shpoing-cart-msg-suc {
  display: none;
}
@media only screen and (min-width: 769px) {
  .catalog-category-view.page-layout-2columns-right .sidebar-main {
    position: sticky;
    right: 0;
    top: 0;
    padding-top: 15px;
  }
  .catalogsearch-result-index.page-layout-2columns-right .sidebar-main {
    position: sticky;
    right: 0;
    top: 0;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 1600px) and (min-width: 921px) {
  #customQuoteForm .form-list li .input-text {
    height: 22px;
  }
  #customQuoteForm .form-list li textarea.input-text {
    height: 50px;
  }
  #customQuoteForm .form-list li .logo-attchment:before {
    height: 22px;
    line-height: 22px;
  }
  #customQuoteForm .form-list li .logo-attchment .uploaded-file-name {
    height: 22px;
    line-height: 22px;
  }
}
.ias-spinner em {
  display: block;
  margin: auto;
  font-weight: 400;
  font-style: normal;
  padding: 10px;
  font-size: 16px;
  width: 250px;
  background-color: #cccccc;
  color: #111111;
  box-sizing: border-box;
}
.ias-trigger a {
  display: block;
  margin: auto;
  font-weight: 400;
  font-style: normal;
  padding: 10px;
  font-size: 16px;
  width: 250px;
  background-color: #cccccc;
  color: #111111;
  box-sizing: border-box;
  text-decoration: none;
}
.ias-trigger a:hover {
  background: #e53d46;
  color: #fff;
}
.product-image-wrapper {
  padding-bottom: 0 !important;
  height: auto !important;
}
.product-image-photo {
  position: static !important;
}
.page-layout-2columns-right.catalog-category-view .column.main {
  padding-bottom: 0 !important;
}
.page-wrapper > .page-bottom {
  width: 100% !important;
  margin-bottom: 50px !important;
}
.catalog-category-view .quick-question .form-content .buttons-set .send-enq {
  margin-right: 0;
}
.catalog-category-view .quick-question .form-content .form-list {
  margin-bottom: 0 !important;
}
/*============================ Product page =============================*/
@media (min-width: 768px) {
  .page-layout-2columns-right.catalog-product-view .column.main {
    width: calc(100% - 345px) !important;
    padding-right: 10px;
  }
  .page-layout-2columns-right.catalog-product-view .sidebar-additional {
    width: 345px !important;
    float: right !important;
    padding-left: 10px !important;
    margin: 0 0 20px !important;
  }
  .product-info-main {
    float: left !important;
  }
  .product.media {
    float: right !important;
  }
}
@media print {
  .page-layout-2columns-right.catalog-product-view .column.main {
    width: calc(100% - 345px) !important;
    padding-right: 10px;
  }
  .page-layout-2columns-right.catalog-product-view .sidebar-additional {
    width: 345px !important;
    float: right !important;
    padding-left: 10px !important;
    margin: 0 0 20px !important;
  }
  .product-info-main {
    float: left !important;
  }
  .product.media {
    float: right !important;
  }
}
.catalog-product-view .prod_rightside .block-pricing-info {
  display: block;
  margin-bottom: 20px;
}
.catalog-product-view .prod_rightside .block-pricing-info .titlebar {
  background: #e8ecee;
  padding: 0;
  text-align: center;
  border-top: 0;
}
.catalog-product-view .prod_rightside .block-pricing-info .titlebar strong {
  font-size: 20px;
  font-weight: normal;
  color: #000;
  text-transform: none;
  line-height: 43px;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content {
  padding: 10px 8px;
  background: #fff;
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin: 0;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content .as_low_as {
  font-size: 20px;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content .as_low_as .price {
  color: #7cb642;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content .spcl-serv_heading {
  font-size: 20px;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content p {
  font-size: 13px;
  margin-top: 5px;
}
.fotorama-item.fotorama--fullscreen {
  z-index: 10000 !important;
}
.fotorama__stage {
  border: 1px solid #dddee3;
  box-sizing: border-box;
}
.fotorama__stage__shaft {
  border: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}
.fotorama__thumb-border {
  display: none;
}
.fotorama__nav-wrap {
  margin-top: 6px;
}
.fotorama__nav-wrap .fotorama_horizontal_ratio .fotorama__img {
  max-width: 95% !important;
}
.fotorama__nav--thumbs {
  text-align: center;
}
.fotorama__nav--thumbs .fotorama__nav__frame {
  padding: 0 !important;
}
.fotorama__thumb {
  width: auto !important;
  border: 1px solid #dcdee3;
  margin: 0 1.5px 3px;
  background: transparent;
  padding: 3px;
  box-sizing: border-box;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  opacity: 1;
}
.spcl-serv-box {
  float: left;
  width: 100%;
  margin: 0 0 20px;
  line-height: normal;
}
.spcl-serv-box li {
  padding-left: 50px;
  position: relative;
  margin: 0 0 8px;
}
.spcl-serv-box li .fa {
  position: absolute;
  left: 4px;
  top: 0;
  font-size: 30px;
  color: #7cb642;
}
.spcl-serv-box li .fa.fa-clock {
  left: 10px;
}
.spcl-serv-box li .spcl-serv_heading {
  font-size: 21px;
}
.spcl-serv-box li p {
  font-size: 14px;
}
.spcl-serv-box li .fa.fa-trophy:before {
  background: url("../images/competitive.svg") center -5px no-repeat;
  content: "";
  width: 40px;
  height: 67px;
  display: inline-block;
  background-size: auto 100%;
}
.spcl-serv-box li .fa.fa-truck:before {
  background: url("../images/artwork.svg") center -5px no-repeat;
  content: "";
  width: 40px;
  height: 67px;
  display: inline-block;
  background-size: auto 100%;
}
.spcl-serv-box li:last-child .fa.fa-truck:before {
  background: url("../images/turnaround.svg") center -5px no-repeat;
  content: "";
  width: 40px;
  height: 67px;
  display: inline-block;
  background-size: auto 100%;
}
.product-info-main .product.attribute.overview {
  margin-top: 0;
}
.product-info-main .product.attribute.overview .short-description img {
  margin-left: 0 !important;
}
.product-info-main .product.attribute.overview .short-description h2,
.product-info-main .product.attribute.overview .short-description h3 {
  border-bottom: 1px solid #e8ecee;
  padding-bottom: 6px;
  display: inline-block;
  width: 100%;
}
.product-info-main .product.attribute.overview .short-description ul {
  line-height: normal;
}
.product-info-main .product.attribute.overview .short-description ul li {
  list-style: none;
  margin: 0 0 15px;
  padding-left: 40px;
  position: relative;
}
.product-info-main .product.attribute.overview .short-description ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #231f20;
  border-radius: 50%;
  position: absolute;
  left: 14px;
  top: 3px;
}
.product-info-main .product-add-form {
  display: none;
}
.product.data.items {
  background: #e8ecee;
}
.product.data.items > .item.title {
  margin-right: 0 !important;
}
.product.data.items > .item.title > .switch {
  font: 18px 'Roboto', sans-serif !important;
  color: #121212 !important;
  height: 45px !important;
  line-height: 45px !important;
  padding: 0 20px !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
}
.product.data.items > .item.title > .switch:hover {
  background: #3190c4 !important;
  color: #fff !important;
}
.product.data.items > .item.title.active > .switch {
  border: 0 !important;
  border-top: 5px solid #e53d46 !important;
  padding: 0 20px !important;
  height: 40px !important;
  font: 18px/35px 'Roboto', sans-serif !important;
  background: #fff !important;
}
.product.data.items > .item.title.active > .switch:hover {
  background: #fff !important;
  color: #121212 !important;
}
.product.data.items > .item.content {
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 21px 17px !important;
  border-top: 0 !important;
  margin-top: 45px !important;
  margin-bottom: 0 !important;
}
.fotorama__dot {
  width: 10px !important;
  height: 10px !important;
}
.fotorama__active .fotorama__dot {
  background: #e53d46 !important;
  border-color: #e53d46 !important;
}
.product-social-links {
  display: none !important;
}
.product.info.detailed .product.data.items .short-description > h2 {
  display: none;
}
.product.info.detailed .product.data.items .short-description .value h3 {
  display: block;
}
.product.info.detailed .product.data.items .short-description ul li {
  padding-left: 25px;
  position: relative;
}
.product.info.detailed .product.data.items .short-description ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #231f20;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
.product.info.detailed .product.data.items .short-description ol {
  list-style: decimal;
  margin-left: 20px;
}
.product.info.detailed .product.data.items ul li {
  padding-left: 25px;
  position: relative;
}
.product.info.detailed .product.data.items ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #231f20;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
.product.info.detailed .product.data.items ol {
  list-style: decimal;
  margin-left: 20px;
}
/*============================= Contact Us =============================*/
.contact-index-index .page-main .left-contacts ul {
  padding-left: 0;
}
.contact-index-index .page-main .left-contacts ul li {
  list-style: disc;
  margin-left: 20px;
}
.contact-index-index .page-main .left-contacts ol {
  padding-left: 0;
  list-style: decimal;
}
.contact-index-index .page-main .left-contacts ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
.contact-index-index .page-main {
  margin-top: 15px;
}
.contact-index-index .left-contacts {
  float: left;
  width: 50%;
  border: 1px solid #dfe1e5;
  padding: 20px;
  box-sizing: border-box;
}
.contact-index-index .left-contacts strong {
  font-weight: normal;
}
.contact-index-index .right-contacts {
  float: right;
  background: #fbfbfb;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  width: 47%;
  box-sizing: border-box;
}
.contact-index-index .right-contacts .title {
  font-size: 16px;
  background: #3190c4;
  color: #fff;
  padding: 10px 20px;
  margin: -20px -20px 10px -20px;
}
.contact-index-index .right-contacts strong {
  font-weight: normal;
}
.contact-index-index .pre-contacts-wrapper {
  overflow: hidden;
}
.contact-index-index .left-dates-contacts {
  width: 35%;
  float: left;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 24px;
}
.contact-index-index .right-dates-contacts {
  float: right;
  width: 65%;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-index-index .mon-fri {
  display: block;
  height: 122px;
  text-align: center;
  background: #e0f5e0;
  padding: 48px 0;
  box-sizing: border-box;
}
.contact-index-index .sat-sun {
  background: #f5e2e0;
  height: 47px;
  display: block;
  padding: 13px 0;
  text-align: center;
  box-sizing: border-box;
}
.contact-index-index h2 {
  padding-bottom: 0;
}
.contact-index-index .contactForm {
  float: right;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 10px 20px 10px;
  margin-bottom: 40px;
  width: 37%;
  float: left;
  text-align: center;
  box-sizing: border-box;
}
.contact-index-index .contactForm .quote_request_red {
  padding: 10px 0;
  background: #3190c4;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: -10px -10px 15px -10px;
  font-size: 18px;
  color: #fff;
}
.contact-index-index .contactForm .quote_img_btm_text {
  padding: 0 10px 10px 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.contact-index-index .contactForm button {
  display: block;
  margin: 0 auto;
}
.contact-index-index .contactForm .top_quote_text_sec {
  background: #fff;
  padding: 10px;
  margin-bottom: 20px;
}
.contact-index-index .contactForm .top_quotesmall_text {
  margin-bottom: 0;
}
.contact-index-index .contactForm:after {
  content: "";
  display: table;
  clear: both;
}
.contact-index-index .contactForm .block-title {
  display: none;
}
.contact-index-index .contactForm .quick-question {
  margin-bottom: 0;
}
.contact-index-index .contactForm .quick-question .titlebar {
  display: none;
}
.contact-index-index .contactForm .quick-question .form-content {
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
  text-align: left;
  padding-bottom: 0;
}
.contact-index-index .contactForm .block.block-cart,
.contact-index-index .contactForm .fb-root,
.contact-index-index .contactForm .fb-page {
  display: none;
}
.contact-index-index .contactForm .form-content .fieldset {
  margin-bottom: 0;
}
.contact-index-index .contactForm .form-content .fieldset .form-list {
  margin-bottom: 20px;
}
.contact-index-index .contactMap {
  width: 60%;
  margin: 0;
  float: right;
}
.contact-index-index .contactMap iframe {
  width: 100%;
}
.contact-index-index .contactMap:after {
  content: "";
  display: table;
  clear: both;
}
.contact-index-index .page-title-wrapper {
  display: none;
}
.page-title-wrapper.contact {
  display: block !important;
}
.page-title-wrapper.contact .page-title {
  font-size: 24px;
  margin-bottom: 15px;
}
/*============================== Blog ============================*/
#mpblog-list-container a.mp-read-more {
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  background: #232830;
  color: #fff !important;
  text-decoration: none;
}
#mpblog-list-container a.mp-read-more:hover {
  background: #bf1e2e;
}
.post-list-item {
  padding: 0 !important;
}
.post-list-item .post-item-wraper {
  position: relative;
  clear: both;
  border: 0 !important;
  border-top: 1px solid #ccc !important;
  box-sizing: border-box;
  padding: 0 !important;
}
.post-list-item .post-item-wraper:hover {
  box-shadow: none !important;
}
.post-image img {
  border: 1px solid #c7c7c7 !important;
}
.list-post-tabs .post-left {
  display: none;
}
.list-post-tabs .post-right {
  padding-left: 15px !important;
  position: relative;
  width: 100% !important;
}
.list-post-tabs .post-right:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #242227;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.list-post-tabs .post-right span {
  white-space: normal !important;
}
.list-post-tabs a {
  display: block !important;
  background: transparent !important;
}
.list-post-tabs a:hover {
  text-decoration: underline;
}
.list-post-tabs:hover {
  background: transparent !important;
}
.mp-sidebar.product.info .product.data.items {
  background: transparent !important;
}
.mp-sidebar.product.info .product.data.items > .item.content {
  padding-top: 10px !important;
  padding-bottom: 0 !important;
  box-shadow: none;
  border-top: 1px solid #ccc !important;
}
.mp-sidebar.product.info .product.data.items > .item.title > .switch {
  font-size: 20px !important;
  font-weight: normal !important;
  color: #999 !important;
  text-align: left !important;
  border: 0 !important;
  background: transparent !important;
}
.mp-sidebar.product.info .product.data.items > .item.title > .switch div {
  width: auto !important;
  line-height: 40px !important;
}
.mp-sidebar.product.info .product.data.items > .item.title.active > .switch {
  color: #000 !important;
}
.sidebar-main .mp-sidebar .data.item.title .data.switch {
  padding: 0 20px !important;
}
.product.info.detailed {
  margin-bottom: 5px !important;
}
.product.data.items {
  margin-bottom: 0 !important;
}
.block-mp-sidebar-heading {
  font-size: 20px !important;
  font-weight: normal !important;
  color: #000 !important;
  text-align: left;
}
ul.menu-categories li.category-item {
  padding-left: 15px;
  position: relative;
}
ul.menu-categories li.category-item:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #242227;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
ul.menu-categories li.category-item a.list-categories {
  margin-left: 0 !important;
}
ul.menu-categories li.category-item a.list-categories .fa {
  display: none;
}
ul.menu-categories li.category-item a.list-categories:hover {
  text-decoration: underline;
}
.mp-post-info {
  font-size: 13px !important;
}
.mp-post-info .mp-blog-icon {
  display: none;
}
.mp-post-info .fa {
  display: none;
}
.pager .toolbar-amount {
  float: left;
  padding: 0;
}
.pager .toolbar-amount span.toolbar-number {
  display: inline-block;
}
.pages {
  float: right;
}
.pages .item {
  width: 25px;
  height: 25px;
  line-height: 25px !important;
  border: 1px solid transparent;
  margin: 0;
  vertical-align: middle;
}
.pages .item a {
  color: #0e1a5b !important;
  font-weight: normal !important;
  font-size: 14px !important;
}
.pages .item:hover a {
  text-decoration: underline !important;
}
.pages .item.current {
  border: 1px solid #cccccc;
}
.pages strong.page {
  line-height: 25px !important;
  font-size: 14px !important;
  font-weight: normal !important;
}
.pages .action.next {
  margin-left: 0;
  width: 100%;
  height: 25px;
  line-height: 25px;
  padding: 0;
  text-align: center;
  font-size: 0 !important;
  border: 1px solid transparent;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.next:before {
  content: "" !important;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent !important;
  border-bottom: 4px solid transparent !important;
  border-left: 4px solid #0e1a5b !important;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.next:hover {
  border-color: #0e1a5b !important;
}
.pages .action.previous {
  margin-left: 0;
  width: 100%;
  height: 25px;
  line-height: 25px;
  padding: 0;
  text-align: center;
  font-size: 0 !important;
  border: 1px solid transparent;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.previous:before {
  content: "" !important;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent !important;
  border-bottom: 4px solid transparent !important;
  border-right: 4px solid #0e1a5b !important;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.previous:hover {
  border-color: #0e1a5b !important;
}
.limiter {
  float: right;
  margin-right: 15px;
}
.limiter-options {
  padding: 0 10px !important;
  height: 26px !important;
}
.toolbar-products .limiter .label {
  display: inline-block;
  vertical-align: middle;
}
.post-list-body + .pager {
  border-top: 1px solid #ccc;
  padding-top: 25px;
}
@media (min-width: 768px) {
  .mpblog-post-index.page-layout-2columns-right .sidebar-main,
  .mpblog-category-view.page-layout-2columns-right .sidebar-main,
  .mpblog-post-view.page-layout-2columns-right .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-index.page-layout-2columns-right .column.main,
  .mpblog-category-view.page-layout-2columns-right .column.main,
  .mpblog-post-view.page-layout-2columns-right .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
  .mpblog-post-view.page-layout-2columns-left .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-view.page-layout-2columns-left .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
}
@media print {
  .mpblog-post-index.page-layout-2columns-right .sidebar-main,
  .mpblog-category-view.page-layout-2columns-right .sidebar-main,
  .mpblog-post-view.page-layout-2columns-right .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-index.page-layout-2columns-right .column.main,
  .mpblog-category-view.page-layout-2columns-right .column.main,
  .mpblog-post-view.page-layout-2columns-right .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
  .mpblog-post-view.page-layout-2columns-left .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-view.page-layout-2columns-left .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
}
.mpblog-search,
.mp-blog-rss {
  display: none;
}
.default-cmt__content button.default-cmt__content__cmt-block__cmt-box__cmt-btn__btn-submit {
  background: #3399cc !important;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0;
}
.default-cmt__content button.default-cmt__content__cmt-block__cmt-box__cmt-btn__btn-submit:hover {
  background: #2e8ab8 !important;
}
.default-cmt__cmt-login {
  display: none !important;
}
.block-blog-related .related-content-container {
  padding: 0 !important;
}
.block-blog-related .related-content-container .col-mp {
  padding: 0 !important;
}
.block-blog-related .related-content-container .default-cmt__content__cmt-block .col-mp {
  width: 100% !important;
}
.block-blog-related .related-content-container .default-cmt__content__cmt-block .col-mp label {
  font-weight: 600;
}
textarea.default-cmt__content__cmt-block__cmt-box__cmt-input {
  border-radius: 0 !important;
  border-color: #000 !important;
}
.default-cmt__content__cmt-block__cmt-box__cmt-btn {
  float: left !important;
}
@media (max-width: 991px) {
  .limiter {
    clear: right;
    margin: 15px 0 0;
  }
}
@media (min-width: 768px) {
  .block-blog-related .related-content-container .default-cmt__content__cmt-block {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .mp-sidebar.product.info .product.data.items {
    border-top: 1px solid #ccc !important;
  }
  .mp-sidebar.product.info .product.data.items > .item.content {
    border: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #d1d1d1 !important;
  }
  .mp-sidebar.product.info .item.title .switch,
  .mp-sidebar.product.info .item.title.active .switch {
    height: 40px !important;
    line-height: 40px !important;
    padding-left: 24px !important;
  }
}
@media (max-width: 480px) {
  .toolbar-amount,
  .pages,
  .limiter {
    width: 100%;
  }
  .pages {
    margin: 10px 0 0;
  }
  .post-list-item .post-item-wraper {
    padding-top: 25px !important;
  }
}
.amblog-index-index .column.main ul li,
.amblog-index-post .column.main ul li,
.amblog-index-category .column.main ul li,
.amblog-post-preview .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,
.amblog-post-preview .column.main ol {
  padding-left: 0;
  list-style: decimal;
}
.amblog-index-index .column.main ol li,
.amblog-index-post .column.main ol li,
.amblog-index-category .column.main ol li,
.amblog-post-preview .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,
.amblog-post-preview .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,
.amblog-post-preview .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,
.amblog-post-preview .column.main .amblog-footer ol li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
/*================================= Quote section ================================*/
.block-minicart .items-total,
.block-minicart .subtotal {
  display: none;
}
.block-minicart .block-content > .actions {
  margin-top: 0;
}
.block-minicart .block-content > .actions .checkout {
  display: none !important;
}
.block-minicart .block-content > .actions .viewcart {
  line-height: normal;
  text-transform: uppercase;
  font-size: 14px;
  background: #3190c4;
  color: #fff;
  padding: 10px 0;
  width: 120px;
  display: inline-block;
  text-decoration: none;
}
.block-minicart .block-content > .actions .viewcart:hover {
  background: #e53d46;
}
.block-minicart .block-content > .actions .primary {
  margin: 0 !important;
}
.block-minicart .subtitle {
  display: block !important;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.block-minicart .product > .product-item-photo {
  width: 50px;
  border: 1px solid #ccc;
  font-size: 0;
}
.block-minicart .product-item-details {
  padding-left: 64px;
}
.block-minicart .product-item-name a {
  color: #121212;
  text-decoration: none;
}
.block-minicart .minicart-items-wrapper {
  margin: 0 0 10px;
  border: 0;
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #ccc;
  height: auto !important;
}
.block-minicart li {
  padding-bottom: 0 !important;
}
.block-minicart .product.options .subtitle {
  display: none !important;
}
.block-minicart .product.options dl.product.options {
  margin-bottom: 0;
}
.checkout-cart-index .page-main {
  padding-top: 10px !important;
}
.cart-summary {
  display: none;
}
.form-cart {
  width: 100% !important;
}
.cart.table-wrapper table thead tr th {
  padding-top: 10px !important;
  padding-bottom: 8px !important;
  background: #f4f4f4;
  font-weight: normal;
  text-transform: uppercase;
}
.cart.table-wrapper .items > .item {
  border-color: #c0c0c0 !important;
}
.cart.table-wrapper .col.qty {
  text-align: center;
}
.cart.table-wrapper .item .col {
  padding-top: 10px !important;
}
.cart.table-wrapper .item .col.item {
  padding-top: 10px !important;
  padding-left: 0 !important;
}
.cart.table-wrapper .item .col.qty .input-text {
  margin-top: 0 !important;
  padding: 0;
  width: 3.2em;
  height: 30px;
  border-color: silver;
}
.cart.table-wrapper .price-including-tax .price,
.cart.table-wrapper .price-excluding-tax .price {
  font-size: 1.4rem !important;
}
.cart.table-wrapper .item-actions td {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.cart.table-wrapper .item-actions .actions-toolbar {
  text-align: right !important;
}
.cart.table-wrapper .item-actions .actions-toolbar .action-edit {
  box-shadow: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: 0;
  display: none;
  vertical-align: middle;
}
.cart.table-wrapper .item-actions .actions-toolbar .action-edit:before {
  content: "\f040";
  transform: rotate(-90deg);
  color: #3190c4;
  font-size: 20px;
  display: inline-block;
  margin: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  vertical-align: middle;
}
.cart.table-wrapper .item-actions .actions-toolbar .action-delete {
  box-shadow: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url("../images/icon_sprite.png") 4px -648px no-repeat;
}
.cart.table-wrapper .product-item-photo {
  display: inline-block !important;
  width: 20% !important;
  box-sizing: border-box;
}
.cart.table-wrapper .product-image-container {
  width: 100% !important;
}
.cart.table-wrapper .product-image-photo {
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.cart.table-wrapper .product-item-details {
  display: inline-block !important;
  width: 70% !important;
}
.table-wrapper {
  margin-bottom: 10px !important;
}
.cart.main.actions {
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 10px;
}
.cart.main.actions:after {
  content: "";
  display: table;
  clear: both;
}
.cart-container .form-cart .action.continue {
  float: right !important;
  margin-left: 0 !important;
  border: 0;
  padding: 0 10px;
  margin: 0;
  background: #3190c4;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px/30px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.continue:hover {
  background: #333;
  border: 0;
  color: #fff;
}
.cart-container .form-cart .action.continue:before {
  content: "\f002";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  font-family: FontAwesome;
}
.cart-container .form-cart .custom-empty-cart {
  float: left !important;
  margin-left: 0 !important;
  border: 0;
  padding: 0 10px;
  margin: 0;
  background: #e53d46;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px/30px 'Roboto', sans-serif;
  text-transform: uppercase;
  box-sizing: border-box;
}
.cart-container .form-cart .custom-empty-cart:hover {
  background: #333;
}
.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;
}
.cart-container .form-cart .action.update {
  float: right !important;
  margin-left: 10px !important;
  margin-right: 0 !important;
  border: 0;
  padding: 0 10px;
  margin: 0;
  background: #3190c4;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.update:hover {
  background: #333;
}
.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 .action.btn-proceed-quote {
  float: right;
  margin-right: 10px;
  border: 0;
  padding: 0 10px;
  margin: 0 0 0 10px;
  background: #7cb642;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.btn-proceed-quote:hover {
  background: #333;
}
.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;
}
.minicart-items .item-qty {
  padding: 0;
  width: 3.2em;
  height: 30px;
}
.minicart-items .item-qty:focus {
  border-color: #3399cc;
}
.minicart-items .update-cart-item {
  background: #3190c4;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
.minicart-items .action.delete {
  margin-top: -3px;
}
.minicart-items .action.delete:before {
  background: url("../images/icon_sprite.png") 4px -648px no-repeat;
  content: "";
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.minicart-items .action.edit {
  display: none !important;
}
.minicart-items .action.edit:before {
  color: #3190c4 !important;
}
.minicart-items .product-item-pricing .price-container {
  display: none;
}
.minicart-items .product-item:first-child {
  margin-top: 0;
}
.minicart-items .product-item {
  margin: 8px 0 0 !important;
  padding-top: 8px;
}
.checkout-cart-index .white-popup {
  max-width: 500px !important;
}
.checkout-cart-index .fieldset {
  margin-bottom: 0 !important;
}
.checkout-cart-index .form-list {
  margin-bottom: 10px !important;
}
.checkout-cart-index .form-list li.fields {
  margin-bottom: 0 !important;
}
.checkout-cart-index .form-list li.fields .field {
  margin-bottom: 1rem;
}
.checkout-cart-index .form-list li textarea.input-text {
  height: 77px !important;
  padding-top: 7px;
  padding-bottom: 7px;
  resize: none;
  border-color: #524a48;
}
.checkout-cart-index #customQuoteForm .form-list li .input-text {
  height: 32px;
}
.checkout-cart-index #customQuoteForm .form-list li .logo-attchment:before {
  height: 32px;
  line-height: 32px;
}
.checkout-cart-index #customQuoteForm .form-list li .logo-attchment .uploaded-file-name {
  height: 32px;
  line-height: 32px;
}
.checkout-cart-index #customQuoteForm .form-list li label {
  font-weight: bold;
}
.checkout-cart-index #customQuoteForm .form-list li label em {
  color: #df280a;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-style: normal;
  margin-left: 3px;
}
.checkout-cart-index #customQuoteForm .buttons-set {
  text-align: center;
}
.checkout-cart-index #customQuoteForm .buttons-set .send-enq {
  background: #7cb642;
  margin: 0;
  float: none;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  color: #fff;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  padding: 7px 0;
  min-width: 170px;
}
.checkout-cart-index #customQuoteForm .buttons-set .send-enq .fa {
  font-size: 19px;
  display: inline-block;
  vertical-align: top;
  margin-right: 4px;
}
.checkout-cart-index #customQuoteForm .buttons-set .send-enq:hover {
  background: #3190c4;
}
/*=========================== Search Module design =========================*/
.amsearch-form-container .input-text:focus {
  border: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.amsearch-item-container.recent_searches .amsearch-item {
  border-color: transparent !important;
  background: #3190c4 !important;
  color: #fff;
  word-break: break-word;
}
.amsearch-item-container.recent_searches .amsearch-item:hover {
  background: #e53d46 !important;
}
.amsearch-item-container:not(.recent_searches) .amsearch-highlight {
  color: #7cb642 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
}
.amsearch-item-container.page a.item-name {
  color: #7cb642 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
}
.amsearch-item-container.-large .amsearch-wrapper-content > .amsearch-item:hover {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3) !important;
  background: #fff !important;
}
.amasty-xsearch-block-header {
  font-weight: 500;
  text-transform: none;
  font-size: 16px;
}
.amsearch-products .amsearch-highlight {
  background-color: #7cb642 !important;
}
.amsearch-item .action.primary {
  display: none;
}
@media (min-width: 768px) {
  .amsearch-form-container.-opened .amsearch-wrapper-input {
    left: 0 !important;
    right: auto !important;
  }
  .search-autocomplete.amsearch-clone-position {
    left: 0 !important;
    right: auto !important;
  }
}
/*========================= Related Products ============================*/
.catalog-product-view .page-bottom {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper {
  width: 100%;
  float: left;
  background: #E8ECEE;
  padding: 15px 0 15px;
  margin: 0;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-title {
  text-align: center;
  margin: 0 0 20px;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-title strong {
  font-size: 24px;
  font-weight: 400;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-content {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-content .products-grid {
  margin: 0;
}
.block.widget.amrelated-grid-wrapper .products-grid .product-item {
  width: calc((100% - (44px * 4)) / 5);
  margin-right: 44px;
  margin-left: 0 !important;
  background: #fff;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  padding-bottom: 105px !important;
}
.block.widget.amrelated-grid-wrapper .products-grid .product-item .price-box {
  margin-top: 7px;
}
.block.widget.amrelated-grid-wrapper .products-grid .product-item-name {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  background: #E8ECEE;
  padding: 13px 12px;
  margin-bottom: 0;
  margin-top: 0;
}
.block.widget.amrelated-grid-wrapper .products-grid .product.name a {
  font-size: 16px;
}
@media (min-width: 992px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item:nth-child(5n) {
    margin-right: 0;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item {
    width: calc((100% - (44px * 2)) / 3);
    margin-bottom: 20px;
  }
  .block.widget.amrelated-grid-wrapper .products-grid .product-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item .product-image-wrapper {
    height: auto;
  }
  .block.widget.amrelated-grid-wrapper .products-grid .product-item .product-image-photo {
    position: static;
  }
  .breadcrumbs {
    display: none;
  }
}
@media (max-width: 639px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item {
    width: calc((100% - 44px) / 2);
    margin-bottom: 20px;
  }
  .block.widget.amrelated-grid-wrapper .products-grid .product-item:nth-child(even) {
    margin-right: 0;
  }
  .minicart-wrapper .product .actions {
    float: right !important;
    margin-top: 0 !important;
  }
  .page-products .product-item-info {
    width: 100%;
  }
  .products-grid .product-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 399px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item {
    width: 100%;
    margin-right: 0;
  }
}
/*========================= Upsell Product =====================*/
.block.upsell {
  margin-top: 25px;
}
.block.upsell .block-title {
  text-align: center;
}
.block.upsell .block-title strong {
  font-size: 24px !important;
  font-weight: 400 !important;
}
.block.upsell .product-item-info {
  width: 100% !important;
}
@media (min-width: 1024px) {
  .block.upsell .products-grid .product-item {
    width: 23.5% !important;
  }
  .block.upsell .products-grid .product-item:nth-child(2n + 1) {
    margin-left: 2%;
  }
  .block.upsell .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
}
print .block.upsell .products-grid .product-item {
  width: 23.5% !important;
}
print .block.upsell .products-grid .product-item:nth-child(2n + 1) {
  margin-left: 2%;
}
print .block.upsell .products-grid .product-item:nth-child(4n + 1) {
  margin-left: 0;
}
/*====================== Quote Popup ==============================*/
.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-size: 12px;
  vertical-align: top;
  margin-right: 5px;
  font-weight: 700;
}
.mfp-close-btn-in .white-popup .quote_suc_msg span {
  display: block;
  text-align: center;
  font-size: 12px;
}
.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: #3190c4;
  font: 16px 'Roboto', sans-serif;
  padding: 0 35px 0 13px;
  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: #e53d46;
}
.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: #3190c4;
  font: 16px 'Roboto', sans-serif;
  padding: 0 12px;
  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: #e53d46;
}
.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;
}
.cms-thanks.page-layout-1column .column.main h1 {
  margin-bottom: 10px !important;
  font-size: 25px !important;
}
.cms-thanks.page-layout-1column .column.main form input.button {
  max-width: 50%;
  background: #3190c4;
  font: 15px 'Roboto', sans-serif;
  border: 0;
  text-transform: uppercase;
  color: #fff;
  min-width: 170px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0.4em !important;
}
.cms-thanks.page-layout-1column .column.main form input.button:hover {
  background: #e53d46;
}
.short-desc-belowbox {
  margin-bottom: 30px;
}
.short-desc-belowbox div {
  background: #ececec;
  padding: 5px 10px;
  line-height: normal;
  border-bottom: 1px solid #ccc;
}
.short-desc-belowbox div strong {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
}
.short-desc-belowbox div:last-child {
  margin-top: 15px;
  background: transparent;
  border-bottom: 0;
  padding: 0;
}
.short-desc-belowbox div:last-child p strong {
  width: auto;
}
.short-desc-belowbox div:last-child p strong:last-child {
  display: block;
  margin-top: 12px;
}
.product.data.items > .item.content .short-desc-belowbox {
  display: none;
}
/*============================ Customer Account and Dashboard ==========================*/
.customer-account-login .page-main {
  margin-top: 20px;
}
.customer-account-login .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.customer-account-create .page-main {
  margin-top: 20px;
}
.customer-account-create .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.customer-account-forgotpassword .page-main {
  margin-top: 20px;
}
.customer-account-forgotpassword .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.account .page-main {
  margin-top: 20px;
}
.account .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.login-container .fieldset > .field {
  margin-bottom: 10px;
}
.login-container .fieldset > .field > .control {
  width: 100% !important;
}
.login-container .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.login-container .fieldset > .actions-toolbar {
  margin-left: 0 !important;
}
.login-container .fieldset:after {
  margin-left: 0 !important;
}
.login-container a {
  color: #121212;
}
.login-container a:hover {
  color: #1979c3;
}
.form.create.account {
  min-width: none !important;
  width: 100% !important;
}
.form-create-account:after {
  content: "";
  display: table;
  clear: both;
}
.form-create-account .fieldset legend {
  margin-left: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
.form-create-account .fieldset > .field {
  margin-bottom: 10px;
}
.form-create-account .fieldset > .field > .control {
  width: 100% !important;
}
.form-create-account .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.form-create-account .fieldset:after {
  margin-left: 0 !important;
}
.form-create-account .actions-toolbar {
  margin-left: 0 !important;
  width: 100%;
  float: left;
}
.form-create-account a {
  color: #121212;
}
.form-create-account a:hover {
  color: #1979c3;
}
.form.password .fieldset legend {
  margin-left: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
.form.password .fieldset > .field {
  margin-bottom: 10px;
}
.form.password .fieldset > .field > .control {
  width: 100% !important;
}
.form.password .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.form.password .fieldset:after {
  margin-left: 0 !important;
}
.form.password .actions-toolbar {
  margin-left: 0 !important;
  width: 100%;
  float: left;
}
.form.password a {
  color: #121212;
}
.form.password a:hover {
  color: #1979c3;
}
.account .page-main a {
  color: #121212;
}
.account .page-main a:hover {
  color: #1979c3;
}
.account .page-main .fieldset legend {
  margin-left: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
.account .page-main .fieldset > .field {
  margin-bottom: 10px;
}
.account .page-main .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.account .page-main .fieldset > .field > .control {
  width: 100% !important;
}
.account .page-main .fieldset > .field.choice:before {
  display: none;
}
.account .page-main .actions-toolbar {
  margin-left: 0 !important;
}
.customer-account-login .page-main .action.primary,
.customer-account-create .page-main .action.primary,
.customer-account-forgotpassword .page-main .action.primary,
.account .page-main .action.primary {
  background: #3190c4;
  font: 500 16px 'Roboto', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 0 !important;
  border: 0;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
.customer-account-login .page-main .action.primary:hover,
.customer-account-create .page-main .action.primary:hover,
.customer-account-forgotpassword .page-main .action.primary:hover,
.account .page-main .action.primary:hover {
  background: #e53d46;
  border: 0;
}
@media (min-width: 768px) {
  .form-create-account .fieldset.create.info {
    float: left !important;
    width: 48%;
  }
  .form-create-account .fieldset.create.account {
    float: right !important;
    width: 48%;
  }
  .form-create-account .fieldset > .field.choice:before {
    display: none;
  }
}
.amlabel-position-wrapper {
  z-index: 1 !important;
  height: auto !important;
}
.amlabel-position-wrapper .amasty-label-container {
  height: auto !important;
}
.catalog-product-view .product.media .amlabel-position-wrapper {
  bottom: 120px !important;
  pointer-events: none;
}
@media (max-width: 767px) {
  .catalog-product-view .product.media .amlabel-position-wrapper {
    bottom: 37px !important;
  }
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding-right: 3rem !important;
  text-align: left;
  font-size: 15px;
}
.modal-popup .modal-footer {
  text-align: right;
}
.modal-popup .modal-footer button {
  line-height: normal;
  text-transform: uppercase;
  font-size: 14px;
  background: #2e71ea;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  border-color: #2e71ea;
  border-radius: 3px;
  font-weight: normal;
  margin: 0 5px;
}
.modal-popup .modal-footer button.action-dismiss {
  float: right;
  border-color: #ccc;
  background: #fff;
  color: #121212;
}
.modal-popup .modal-footer button.action-dismiss:hover {
  color: #fff;
}
.modal-popup .modal-footer button:hover {
  background: #e53d46;
  border-color: #e53d46;
}
.modal-popup.confirm .modal-inner-wrap {
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
}
.modals-overlay {
  background-color: rgba(51, 51, 51, 0);
}
@media (min-width: 601px) {
  .mobile-cat-banner {
    display: none !important;
  }
}
/* ============================== Home promo banner and tab section ============================*/
.promo-section-content {
  padding-bottom: 0;
  padding-top: 15px;
}
.promo-section-content .promo-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 0;
}
.promo-section-content .promo-section .l-banner {
  width: 48.5%;
  text-align: center;
}
.promo-section-content .promo-section .l-banner p {
  margin-bottom: 0;
}
.promo-section-content .promo-section .l-banner p img {
  height: auto;
}
.promo-section-content .promo-section .r-banner {
  width: 48.5%;
}
.promo-section-content .promo-section .r-banner .myslider {
  padding-top: 40px;
  font-size: 0;
}
.promo-section-content .promo-section .r-banner .myslider.owl-carousel .owl-item .item {
  text-align: center;
  padding: 0;
}
.promo-section-content .promo-section .r-banner .myslider.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}
.promo-section-content .promo-section .r-banner .myslider .owl-nav {
  display: none;
}
.promo-section-content .promo-section .r-banner .owl-dots {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin-top: 0 !important;
  border-bottom: 2px solid #3190c4;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
}
.promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
  font: 16px 'Roboto', sans-serif;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #3190c4;
  box-shadow: none;
  padding: 0 9px;
  line-height: 1;
  height: 38px;
}
.promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button {
  color: #e53d46;
  position: relative;
}
.promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button:after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #3190c4;
  width: 0;
  height: 0;
  line-height: normal;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media (min-width: 992px) {
  .promo-section-content .promo-section .l-banner {
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 991px) {
  .promo-section-content {
    padding-top: 0;
  }
  .promo-section-content .promo-section {
    flex-direction: column;
  }
  .promo-section-content .promo-section .l-banner,
  .promo-section-content .promo-section .r-banner {
    width: 100%;
  }
  .promo-section-content .promo-section .r-banner {
    max-width: 620px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .promo-section-content .promo-section .r-banner .myslider {
    padding-top: 35px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots {
    height: 35px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
    font-size: 12px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button:after {
    bottom: 3px;
  }
}
@media (max-width: 499px) {
  .promo-section-content .promo-section .r-banner .myslider {
    padding-top: 31px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots {
    height: 31px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
    padding-left: 4px;
    padding-right: 4px;
    height: 37px;
    line-height: 1;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button:after {
    bottom: 4px;
  }
}
.grecaptcha-badge {
  bottom: 155px !important;
  z-index: 2000 !important;
}
/*==================== 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: #3190c4;
}
.mobileproduct-button-set a.phone-btn {
  background: #7cb642;
  margin-bottom: 0;
  padding: 8px 0;
}
.mobileproduct-button-set a.phone-btn .fa {
  font-size: 25px;
  margin-right: 8px;
}
@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;
  }
  .product.info.detailed .mobileproduct-button-set {
    display: none;
  }
}
/** .page-wrapper {
  background: url("@{baseDir}images/snowflake_backdrop.jpg") center 0 repeat;
} XMAS**/
/*============================== New Header Search Start ===================================*/
.page-header .amsearch-wrapper-block {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 773px) !important;
  height: 36px;
  padding: 0 !important;
  margin: 24px 0 0 4.4% !important;
  float: none !important;
}
.page-header .amsearch-input-wrapper {
  min-width: 0 !important;
  width: 100% !important;
}
.page-header .amsearch-result-section {
  left: 0;
  right: auto;
}
.amsearch-input-wrapper .amsearch-input {
  width: 100%;
  height: 36px;
  padding-left: 55px;
  padding-right: 12px !important;
  font-family: roboto, sans-serif;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.amsearch-input-wrapper .amsearch-input:focus {
  border: 0;
}
.amsearch-input-wrapper .amsearch-button {
  left: 0 !important;
  right: auto !important;
  width: 40px;
  height: 100%;
  border: 0;
  background: #e53d46 !important;
  border-radius: 8px 0 0 8px;
  padding: 0 !important;
  line-height: 39px !important;
  opacity: 1 !important;
}
.amsearch-input-wrapper .amsearch-button:before {
  content: "\e615";
  font-family: 'icons-blank-theme';
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
}
.amsearch-input-wrapper.-typed .amsearch-input {
  padding-left: 55px;
}
.amsearch-item-container .amsearch-item .amsearch-link {
  color: #121212;
}
.amsearch-item-container .amsearch-item .amsearch-link:hover {
  color: #121212;
}
.amsearch-item-container .amsearch-item .amsearch-link:focus {
  color: #121212;
}
.amsearch-item-container:not(.recent_searches) .amsearch-highlight {
  color: #3190c4 !important;
}
.amsearch-products-section.-grid:not(.-slider) .amsearch-item {
  max-width: 33.33% !important;
  padding: 15px !important;
}
.amsearch-products-section .amsearch-link {
  color: #121212;
  font-weight: bold;
}
.amsearch-products-section .amsearch-link:hover {
  color: #121212;
  font-weight: bold;
}
.amsearch-products-section .product-item-description {
  color: #121212;
  font-size: 1.4rem;
}
.amsearch-products-section .actions-secondary {
  display: none;
}
.amsearch-products-section .product-item .price-box .price {
  font-size: 16px;
}
.amsearch-products-section .product-item .minimal-price-link .price-label {
  font-weight: normal;
}
.amsearch-products-section .product-item .price-wrapper {
  font-weight: normal;
  font-size: 14px;
}
.amsearch-highlight {
  color: #3190c4;
}
.amsearch-item-container.-page a.amsearch-link {
  color: #3190c4;
}
.amsearch-item-container.-recent_searches .amsearch-item {
  background: #3190c4;
  border: 0;
}
.amsearch-item-container.-recent_searches .amsearch-item .amsearch-link {
  color: #fff;
}
.amsearch-item-container.-recent_searches .amsearch-item .amsearch-link:hover {
  background: #e53d46;
}
.amsearch-item-container.-recent_searches .amsearch-item.-match {
  background-color: #3190c4;
}
.amsearch-item-container.-recent_searches .amsearch-highlight {
  color: #9cd365 !important;
}
.amsearch-form-block.-opened {
  max-width: 75vw;
}
.amsearch-result-section {
  width: 100% !important;
}
@media (max-width: 1199px) {
  .page-header .amsearch-wrapper-block {
    width: calc(100% - 740px) !important;
    margin-left: 30px !important;
  }
}
@media (max-width: 991px) {
  .page-header .amsearch-wrapper-block {
    width: calc(100% - 670px) !important;
  }
}
@media (max-width: 767px) {
  .page-header .amsearch-wrapper-block {
    display: none;
  }
  .amsearch-overlay-block {
    display: none !important;
  }
}
/*============================== New Header Search End ===================================*/
.cms-artwork.cms-page-view .column.main img {
  width: 360px;
}
.product.media .amasty-label-image {
  width: 96px !important;
}
.catalog-product-view .product.media .amlabel-position-wrapper {
  bottom: 0 !important;
}
.amsearch-related-terms {
  display: none !important;
}
.amsearch-related-terms > .amsearch-title {
  font-size: 18px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .amsearch-related-terms {
    display: none !important;
  }
}
.footer-subscribe-btn {
  width: 280px;
  display: block;
  text-align: center;
  background: #3190c4;
  font: 21px 'Roboto', sans-serif;
  color: #fff;
  padding: 0.5em 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.footer-subscribe-btn:hover {
  background: #e53d46;
  color: #fff !important;
}
.cms-thanks.page-layout-1column .column.main .quote-subscribe-btn {
  width: 280px;
  display: inline-block;
  text-align: center;
  background: #3190c4;
  font: 21px 'Roboto', sans-serif;
  color: #fff;
  padding: 0.5em 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.cms-thanks.page-layout-1column .column.main .quote-subscribe-btn:hover {
  background: #e53d46;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer-subscribe-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 639px) {
  .footer.content .links.col-4 p {
    text-align: center;
  }
}
/*============================== Product page brand ============================*/
#sm_menu_ham {
  box-sizing: content-box;
}
.product-brands {
  float: left;
  width: 100%;
  text-align: center;
}
.product-brands .brand-item {
  display: inline-block;
  vertical-align: middle;
  width: 65px;
  padding-left: 6px;
  padding-right: 6px;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}
@media (max-width: 499px) {
  .product-brands .brand-item {
    width: 32%;
  }
  .product-brands .brand-item:nth-child(3n) [data-tooltip]:before {
    right: 0;
    left: auto;
  }
  .product-brands .brand-item [data-tooltip]:before {
    bottom: 135px;
  }
  .product-brands .brand-item [data-tooltip]:after {
    bottom: 130px;
  }
}
.product.data.items > .item.title.active > .switch {
  height: 45px !important;
}
a:hover {
  text-decoration: none;
}
.tooltip {
  margin: 4em 0;
  text-align: center;
}
.tooltip p {
  margin: 4em 0;
  text-align: center;
}
[data-tooltip] {
  position: relative;
  z-index: auto;
  cursor: pointer;
}
[data-tooltip]:before {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 75px;
  left: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 7px;
  width: 120px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
  z-index: 200;
}
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 70px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid rgba(51, 51, 51, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  z-index: 100;
}
[data-tooltip]:hover:before {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
.customer-account-logoutsuccess .page-title-wrapper {
  margin-top: 20px;
}
.product-highlight-top {
  font-size: medium;
  line-height: 1.5;
}
.product-highlight-mid {
  float: left;
}
/*================================ Notice CSS ===============================*/
.page-header .header.panel {
  max-width: 100% !important;
  padding: 0 !important;
}
.header-top-linksec {
  max-width: 1280px;
  margin: 0 auto;
}
.notice {
  text-align: center;
  padding: 5px 0;
  margin-bottom: 5px;
  background: #dddddd;
  margin-top: -5px;
}
.notice h3,
.notice p {
  margin: 0;
}
@media (min-width: 768px) {
  .notice-mob {
    display: none;
  }
}
@media (max-width: 767px) {
  .notice {
    display: none;
  }
  .notice-mob {
    display: block;
    margin-bottom: 0;
  }
}
/*===================================== Category Listing bottom button link start ================================*/
.link-block {
  margin-bottom: 50px;
  text-align: center;
}
.link-block a {
  font: 16px 'Roboto', sans-serif;
  display: inline-block;
  text-align: center;
  text-transform: none;
  vertical-align: middle;
  color: #fff;
  border: 0;
  border-radius: 25px;
  padding: 10px 17px;
}
@media (min-width: 769px) {
  .link-block {
    width: calc(100% - 320px);
    float: left;
  }
  .sidebar.sidebar-main .link-block {
    display: none;
  }
}
@media (max-width: 768px) {
  .catalog-category-view .page-main .products {
    margin-bottom: 0;
  }
  .link-block {
    display: none;
  }
  .sidebar.sidebar-main .link-block {
    display: block;
    margin-bottom: 30px;
  }
}
/*===================================== Category Listing bottom button link end ================================*/
/*=============================== Amasty Blog start ===================================*/
@media (min-width: 768px) {
  .amblog-index-index .column.main,
  .amblog-index-post .column.main,
  .amblog-index-category .column.main,
  .amblog-post-preview .column.main {
    width: 75% !important;
    padding-left: 0 !important;
  }
  .amblog-index-index .sidebar,
  .amblog-index-post .sidebar,
  .amblog-index-category .sidebar,
  .amblog-post-preview .sidebar {
    width: 25% !important;
  }
}
.amblog-index-index,
.amblog-index-post,
.amblog-index-category,
.amblog-post-preview {
  background: #fff !important;
}
.amblog-index-index .page-title-wrapper,
.amblog-index-post .page-title-wrapper,
.amblog-index-category .page-title-wrapper,
.amblog-post-preview .page-title-wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-direction: column;
  align-items: flex-start !important;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left,
.amblog-index-post .page-title-wrapper .amblog-aside-left,
.amblog-index-category .page-title-wrapper .amblog-aside-left,
.amblog-post-preview .page-title-wrapper .amblog-aside-left {
  display: block;
  position: static;
  width: 100%;
  box-shadow: none;
  background: transparent !important;
  padding-top: 0;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left .aside-title,
.amblog-index-post .page-title-wrapper .amblog-aside-left .aside-title,
.amblog-index-category .page-title-wrapper .amblog-aside-left .aside-title,
.amblog-post-preview .page-title-wrapper .amblog-aside-left .aside-title {
  margin-top: 0;
  margin-bottom: 0;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left .aside-title .amblog-close,
.amblog-index-post .page-title-wrapper .amblog-aside-left .aside-title .amblog-close,
.amblog-index-category .page-title-wrapper .amblog-aside-left .aside-title .amblog-close,
.amblog-post-preview .page-title-wrapper .amblog-aside-left .aside-title .amblog-close {
  display: none;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block,
.amblog-index-post .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block,
.amblog-index-category .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block,
.amblog-post-preview .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.amblog-index-index .page-title-wrapper .amblog-swipe,
.amblog-index-post .page-title-wrapper .amblog-swipe,
.amblog-index-category .page-title-wrapper .amblog-swipe,
.amblog-post-preview .page-title-wrapper .amblog-swipe {
  display: none;
}
.amblog-index-index .sidebar .amblog-widget-container,
.amblog-index-post .sidebar .amblog-widget-container,
.amblog-index-category .sidebar .amblog-widget-container,
.amblog-post-preview .sidebar .amblog-widget-container {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-index-index .sidebar .amblog-title,
.amblog-index-post .sidebar .amblog-title,
.amblog-index-category .sidebar .amblog-title,
.amblog-post-preview .sidebar .amblog-title,
.amblog-index-index .sidebar .amblog-list,
.amblog-index-post .sidebar .amblog-list,
.amblog-index-category .sidebar .amblog-list,
.amblog-post-preview .sidebar .amblog-list {
  padding: 0;
}
.amblog-title {
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}
.amblog-post-container {
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-block;
  border-top: 1px solid #ccc;
  padding-top: 25px;
}
.amblog-post-container.-post-page {
  padding-top: 0;
  border-top: 0;
}
.amblog-post-container .post-image {
  width: 250px;
  float: left;
}
.amblog-post-container .post-image img {
  border: 0 !important;
}
.amblog-post-container .amblog-date {
  margin-bottom: 0 !important;
}
.amblog-post-container .amblog-content {
  padding: 0 !important;
  width: calc(100% - 270px);
  float: right;
}
.amblog-post-container .amblog-footer {
  width: calc(100% - 270px);
  float: right;
  padding: 0;
  flex-direction: column;
  align-items: start;
}
.amblog-post-container .amblog-footer .amblog-wrap {
  margin-bottom: 10px;
}
.amblog-post-container .amblog-footer .amblog-wrap .amblog-posted-in {
  color: #999999;
}
.amblog-post-container .amblog-footer .amblog-wrap .amblog-ref {
  font-weight: 400;
  color: #333333;
}
.amblog-post-container .amblog-footer .amblog-wrap .amblog-ref:hover {
  text-decoration: underline;
}
.amblog-post-container .amblog-footer .amblog-read {
  padding: 7px 15px;
  border: 0;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  background: #232830;
  font-weight: 400;
  margin: 7px 0 0;
}
.amblog-post-container .amblog-footer .amblog-read:hover {
  background: #bf1e2e;
}
.amblog-post-container.-post-page .amblog-footer {
  float: none;
  width: 100%;
  margin: 0 auto;
}
.amblog-index-post .amblog-post-container .amblog-content,
.amblog-post-preview .amblog-post-container .amblog-content {
  width: 100%;
}
.amblog-post-list .post-title {
  color: #000;
  font-weight: 400;
}
.amblog-post-list .post-title:hover {
  color: #000 !important;
  text-decoration: underline;
}
.amblog-post-list .post-item-info:not(:last-of-type) {
  margin-bottom: 0 !important;
}
.amblog-post-list .post-image {
  margin-bottom: 10px;
  width: 60px;
  float: left;
}
.amblog-post-list .post-image img {
  border: 0 !important;
}
.amblog-post-list .post-item-details {
  padding-left: 0;
  float: right;
  width: calc(100% - 70px);
}
.amblog-post-list .post-item-details .post-title {
  display: inline-block !important;
}
.amblog-post-title {
  margin-bottom: 10px;
}
.amblog-post-title .post-title {
  color: #000 !important;
  font-weight: 400;
  font-size: 21px;
}
.amblog-post-title .post-title:hover {
  color: #bf1e2e !important;
}
.post-item:after {
  content: "";
  display: table;
  clear: both;
}
.amblog-element-block .amblog-categories li {
  position: relative;
  padding-left: 15px;
}
.amblog-element-block .amblog-categories li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #242227;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.amblog-element-block .amblog-categories .amblog-link {
  font-weight: 400 !important;
  color: #000;
  display: inline-block;
}
.amblog-element-block .amblog-categories .amblog-link:hover {
  text-decoration: underline;
  color: #000;
}
.amblog-comments-wrapper {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-comments-wrapper .amblog-title {
  padding: 0 0 15px;
}
.amblog-comments-wrapper .amblog-comments-action {
  margin: 0;
}
.amblog-element-block .amblog-widget-container {
  padding-bottom: 15px;
  margin-bottom: 15px !important;
  border-bottom: 1px solid #ccc;
}
.amblog-element-block .amblog-widget-container .amblog-title {
  font-size: 2rem !important;
  font-weight: 400 !important;
  color: #000 !important;
}
.amblog-aside-left {
  height: 100% !important;
}
.amblog-aside-left .aside-title {
  font-size: 0;
  margin-top: 0 !important;
}
.amblog-comments-action .amblog-form-comment .amblog-btn {
  background: #39c;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: roboto, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0;
  width: auto;
}
.amblog-comments-action .amblog-form-comment .amblog-btn:hover {
  background: #2e8ab8;
}
.featured-block {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-post-list.featured {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-pager-container .amblog-link {
  background: #3190c4;
}
.amblog-pager-container .amblog-link:hover {
  background: #e53d46;
}
.alignright {
  float: right;
  margin: 0 0 15px 15px;
}
.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
.amblog-post-preview .page-title {
  line-height: 4.8rem;
}
.am-powered-by {
  display: none !important;
}
@media (min-width: 992px) {
  .amblog-index-index .page-title-wrapper .amblog-aside-left,
  .amblog-index-post .page-title-wrapper .amblog-aside-left,
  .amblog-index-category .page-title-wrapper .amblog-aside-left,
  .amblog-post-preview .page-title-wrapper .amblog-aside-left {
    display: none;
  }
}
@media (max-width: 991px) {
  .amblog-index-index .column.main,
  .amblog-index-post .column.main,
  .amblog-index-category .column.main,
  .amblog-post-preview .column.main {
    width: 100% !important;
    padding-left: 0 !important;
    order: 2 !important;
  }
  .amblog-index-index .sidebar,
  .amblog-index-post .sidebar,
  .amblog-index-category .sidebar,
  .amblog-post-preview .sidebar {
    width: 100% !important;
    padding-right: 0 !important;
    order: 1 !important;
  }
  .amblog-post-container:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .amblog-post-preview h3.amblog-title:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuODc2NTYgMC40NTQxMDNMMC45MDkwNTggOC44MDA1NkwyLjM0ODc5IDEwLjI1NzNMOS44NzY1NiAzLjI0OTM4TDE3LjY1MTEgMTAuNDU0MUwxOS4wOTA5IDkuMDM2NzhMMTAuNDExMyAwLjkyNjU0NEw5Ljg3NjU2IDAuNDU0MTAzWiIgZmlsbD0iI0M3QzdDNyIvPgo8L3N2Zz4K);
    content: '';
    cursor: pointer;
    display: block;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    width: 20px;
  }
}
@media (max-width: 767px) {
  .amblog-element-block {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .amblog-element-block .amblog-widget-container {
    border-bottom: 1px solid #ccc;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  .amblog-element-block .amblog-widget-container .amblog-title {
    padding: 0;
  }
  .amblog-element-block .amblog-list {
    padding: 0;
    margin-top: 20px;
  }
  .amblog-element-block .amblog-list .post-title {
    font-weight: 400;
  }
}
@media (max-width: 599px) {
  .amblog-post-container .post-image {
    width: 100%;
    text-align: center;
  }
  .amblog-post-container .amblog-content,
  .amblog-post-container .amblog-footer {
    width: 100%;
  }
}
/*=============================== Amasty Blog end ===============================*/
.header.links .notice {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 10px;
}
.notice-mob {
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 5px 10px;
}
.search_loader {
  display: none;
  width: 100%;
  height: 40px;
  text-align: center;
  background: url("../images/three-bar-loader.gif") center center no-repeat;
  background-size: 150px auto;
  font-size: 0;
}
/*===================== Dashboard Left Menu =======================*/
.account .nav a {
  background: transparent !important;
  font-size: 1.4rem !important;
}
@media (min-width: 1025px) {
  .header .ammenu-button {
    display: none !important;
  }
}
/*=============================== Amasty Sitemap ===============================*/
.amsitemap-index-index .page-main .page-title-wrapper {
  margin-top: 20px;
}
.sitemapSection ul {
  padding-left: 0;
  margin-right: 20px;
}
.sitemapSection ul li {
  margin-left: 0 !important;
}
.sitemapSection ul li a {
  color: #1979c3;
  font-weight: 500;
}
.sitemapSection ul li a:hover {
  color: #7cb642;
}
.am-sitemap-cell {
  padding-right: 15px !important;
}
.am-sitemap-cell > li a {
  color: #1979c3;
}
.am-sitemap-cell > li a:hover {
  color: #7cb642;
}
.am-sitemap-cell li.lavel-2 {
  background: #E8ECEE;
  padding: 8px 10px !important;
  margin-bottom: 10px;
  margin-top: 10px;
}
.am-sitemap-cell li.lavel-2 a {
  color: #000;
  font-weight: 500;
}
.am-sitemap-cell > li.lavel-2 a:hover {
  color: #7cb642;
}
.am-sitemap-cell li.lavel-3 {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 8px;
  margin-top: 8px;
}
.am-sitemap-cell li.lavel-3 a {
  font-weight: 500;
}
.am-sitemap-cell li.lavel-4 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.am-sitemap-cell li.lavel-4 a {
  color: #000;
}
.am-sitemap-cell > li.lavel-4 a:hover {
  color: #7cb642;
}
.am-sitemap-cell li.lavel-5 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.am-sitemap-cell li.lavel-5 a {
  color: #000;
}
.am-sitemap-cell > li.lavel-5 a:hover {
  color: #7cb642;
}
.am-sitemap-list dl dt {
  background: #E8ECEE;
  padding: 8px 10px !important;
  margin-bottom: 10px;
  margin-top: 10px;
}
/*============================ Header Fixed Sidebanner start ===============================*/
.header-fixed-banner-outer {
  position: absolute;
  display: inline-flex;
  max-width: 100%;
  width: 100%;
  height: auto;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  z-index: 2000 !important;
}
.header-fixed-banner-outer .header-fixed-banner {
  display: none;
}
.header-fixed-banner-outer .header-fixed-banner.right {
  width: calc((100% - 1340px) / 2);
  height: 60px;
  position: absolute;
  top: 40px;
  right: 30px;
}
.header-fixed-banner-outer .header-fixed-banner img {
  width: 100%;
}
@media (min-width: 1600px) {
  .header-fixed-banner-outer {
    display: flex;
  }
  .header-fixed-banner-outer .header-fixed-banner {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1600px) and (max-width: 1916px) {
  .header-fixed-banner-outer .header-fixed-banner img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1917px) {
  .header-fixed-banner-outer .header-fixed-banner img {
    width: auto;
    height: 100%;
  }
}
@media (min-width: 2360px) {
  .header-fixed-banner-outer .header-fixed-banner.right {
    align-items: normal;
  }
}
/*============================ Header Fixed Sidebanner end ===============================*/
.message.success {
  font-size: 21px;
  line-height: 1.5;
}
.message.error {
  font-size: 21px;
  line-height: 1.5;
}
.message.error > *:first-child:before {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
.message.success > *:first-child:before {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
/*============================== Category Page Quote Form Popup ================================*/
.page-products.catalog-category-view {
  overflow-x: hidden;
  position: relative;
}
.page-products.catalog-category-view .columns {
  position: static;
}
.quote-form-container .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.quote-form {
  position: absolute;
  right: -371px;
  top: 200px;
  background: #fff;
  padding: 0;
  width: 370px;
  box-sizing: border-box;
  z-index: 2000000;
  transition: all 0.5s;
}
.quote-form .heading {
  background: #e53d46;
  font-size: 23px;
  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: 10px;
  display: none;
}
.quote-form .block-title strong {
  font-weight: normal;
}
.quote-form .form-content .block-title {
  display: block;
}
.quote-form .fieldset {
  margin-bottom: 25px;
}
.quote-form .quick-question .form-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0;
  box-shadow: none;
}
.quote-form .quick-question .titlebar {
  pointer-events: none;
}
.quote-form .quick-question .titlebar .fa.ques-toggle {
  display: none;
}
.quote-form-container.open .quote-form {
  right: 0;
}
.quote-form-container.open .overlay {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1500px) {
  .quote-form {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1499px) {
  .quote-form-container .quote-form {
    position: fixed;
    top: 120px;
  }
}
@media (max-width: 767px) {
  .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;
  }
}
.sorter-action.sort-desc:before,
.sorter-action.sort-asc:before {
  color: #3190c4;
}
.sorter-action.sort-desc:hover:before,
.sorter-action.sort-asc:hover:before {
  color: #e53d46;
}
/*============================ Category Page Modified Grid ============================*/
.page-products.catalog-category-view .product-item-info {
  width: 294px;
}
@media (min-width: 1024px) {
  .catalog-category-view .products-grid .product-item {
    width: calc((100% - 6%) / 4) !important;
    margin-left: 2% !important;
  }
  .catalog-category-view .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0 !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .catalog-category-view .products-grid .product-item {
    width: calc((100% - 4%) / 3) !important;
    margin-left: 2% !important;
  }
  .catalog-category-view .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0 !important;
  }
}
@media (max-width: 539px) {
  .catalog-category-view .products-grid .product-item {
    width: calc((100% - 2%) / 2) !important;
    margin-left: 2% !important;
  }
  .catalog-category-view .products-grid .product-item:nth-child(2n + 1) {
    margin-left: 0 !important;
  }
}
/*=================================== Upsell Products =====================================*/
.page-wrapper .block.upsell {
  background: #E8ECEE;
  padding: 20px 0;
  margin: 0 0 40px;
}
.page-wrapper .block.upsell .products-grid .owl-carousel .owl-stage-outer {
  padding: 8px 0;
  box-sizing: border-box;
}
.page-wrapper .block.upsell .products-grid .product-item {
  background: #fff;
  width: calc(100% - (22px * 2)) !important;
  margin: 0 22px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  padding-bottom: 105px;
}
.page-wrapper .block.upsell .products-grid .product-item-name {
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  background: transparent;
  padding: 0 12px;
  margin-bottom: 0;
  margin-top: 0;
  line-height: normal;
}
.page-wrapper .block.upsell .products-grid .product-item-name a {
  font-size: 15px;
}
.page-wrapper .block.upsell .block-content {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.page-wrapper .block.upsell .owl-carousel .owl-nav .owl-prev {
  font: 30px FontAwesome !important;
  color: #121212;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  left: -10px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.page-wrapper .block.upsell .owl-carousel .owl-nav .owl-prev:before {
  content: "\f053";
}
.page-wrapper .block.upsell .owl-carousel .owl-nav .owl-prev:hover {
  color: #3190C4;
}
.page-wrapper .block.upsell .owl-carousel .owl-nav .owl-next {
  font: 30px FontAwesome !important;
  color: #121212;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  right: -10px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.page-wrapper .block.upsell .owl-carousel .owl-nav .owl-next:before {
  content: "\f054";
}
.page-wrapper .block.upsell .owl-carousel .owl-nav .owl-next:hover {
  color: #3190C4;
}
/*======================== category page sidebar =============================*/
@media (min-width: 768px) {
  .catalog-category-view.page-layout-2columns-left .page-wrapper .sidebar-main {
    padding-right: 0;
  }
}
@media print {
  .catalog-category-view.page-layout-2columns-left .page-wrapper .sidebar-main {
    padding-right: 0;
  }
}
.block.filter {
  padding-top: 49px;
}
.block.filter .filter-title {
  background: #3190c4;
  text-align: center;
  color: #fff;
  margin-bottom: 0 !important;
}
.block.filter .filter-title strong {
  font-size: 20px;
  font-weight: normal;
  line-height: 43px;
  padding: 0 10px;
}
.block-content.filter-content {
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 10px 8px;
}
.block-content.filter-content .block-subtitle {
  color: #3190c4;
  font-weight: 600;
  font-size: 16px;
}
.block-content.filter-content .block-subtitle.filter-subtitle {
  display: none !important;
}
.filter-options .range.amshopby_currency_rate {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.amshopby-fromto-wrap .am-fromto-widget > .delimiter {
  text-align: center;
}
.amshopby-fromto-wrap .am-fromto-widget > .am-filter-go {
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  border-radius: 0;
  border: 0;
  text-transform: uppercase;
}
.amshopby-fromto-wrap .am-fromto-widget > .am-filter-go:hover {
  background: #e53d46;
}
.amshopby-filter-current .amshopby-items {
  padding-left: 0 !important;
}
.amshopby-filter-current .amshopby-item.item {
  padding: 0 20px 0 0 !important;
}
.amshopby-filter-current .amshopby-remove {
  left: auto !important;
  right: 0 !important;
}
.amshopby-filter-current .amshopby-remove:after {
  background-color: #e53d46 !important;
  height: 2px !important;
}
.amshopby-filter-current .amshopby-remove:before {
  background-color: #e53d46 !important;
  height: 2px !important;
}
.amasty-catalog-topnav .block.filter {
  display: none;
}
.swatch-option {
  margin-right: 0;
  min-width: 100% !important;
  height: 30px !important;
  box-sizing: border-box;
  background-position: 0 0 !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}
.amshopby-filter-value .swatch-option.image {
  background-position: 0 0 !important;
  background-repeat: no-repeat !important;
  outline: 2px solid #ff5501;
  border: 1px solid #fff;
  min-width: 32px !important;
}
.amshopby-filter-value .swatch-option.color {
  outline: 2px solid #ff5501;
  border: 1px solid #fff;
  min-width: 32px !important;
}
.am-filter-items-base_colours {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-column-gap: 10px;
}
.filter-options-content .am-swatch-wrapper {
  width: calc((100% - (10px * 4)) / 5);
}
@media (max-width: 1023px) {
  .filter-options-content .am-swatch-wrapper {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-layout-2columns-left .page-wrapper .column.main {
    width: 100%;
    padding-left: 0;
  }
  .page-layout-2columns-left .page-wrapper .sidebar-main {
    width: 100%;
  }
  .page-layout-2columns-left.catalog-category-view .columns {
    display: flex;
    flex-direction: column;
  }
  .block.filter {
    padding-top: 0;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .page-products.catalog-category-view .columns {
    flex-direction: column-reverse;
  }
  .catalog-category-view.page-layout-2columns-left .columns .column.main {
    padding-bottom: 0;
  }
  .block.filter {
    padding-top: 0;
    margin-bottom: 0 !important;
  }
}
.product.data.items > .item.content .product.attribute.tab_colors ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-row-gap: 15px;
  list-style: none;
  grid-column-gap: 15px;
}
.product.data.items > .item.content .product.attribute.tab_colors ul li {
  list-style: none;
  padding: 0 !important;
}
.product.data.items > .item.content .product.attribute.tab_colors ul li .product_swatch-option {
  width: 90px;
  height: 90px;
  display: block;
}
.product.data.items > .item.content .product.attribute.tab_colors ul li:before {
  display: none !important;
}
/*==================================== Responsive ==================================*/
@media (max-width: 1199px) {
  .logo {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .logo img {
    max-width: 90%;
    display: inline-block;
  }
  .skip-links .header-tab {
    margin-left: 0;
  }
  .minicart-wrapper .action.showcart {
    margin-left: 0;
  }
  .block-search {
    width: calc(100% - 740px) !important;
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .block-search {
    width: calc(100% - 670px) !important;
  }
  .header-callus {
    margin-top: 30px;
  }
  .header-callus .fa {
    font-size: 27px;
  }
  .header-callus a {
    font-size: 20px !important;
  }
  .minicart-wrapper .action.showcart {
    width: auto;
  }
  .minicart-wrapper .action.showcart .text {
    width: 40px;
    white-space: normal;
  }
  .skip-links .header-tab {
    width: auto;
  }
  .skip-links .header-tab.email-team span,
  .skip-links .header-tab.visit-office span {
    width: auto;
  }
  .home-review ul {
    margin: 0;
  }
  .home-review ul li {
    width: calc((100% - 26px) / 2);
  }
  .home-review ul li:nth-child(even) {
    margin-right: 0;
  }
  .footer.content .links {
    width: 33%;
    float: left;
  }
  .footer.content .links.col-1 {
    width: 100%;
    text-align: center;
    padding-right: 0 !important;
    padding-bottom: 20px;
    margin: 0 auto;
  }
  .footer.content .links.col-4 {
    width: 33%;
    padding-right: 0 !important;
  }
  .footer.content .links .social {
    display: inline-block;
  }
  .footer.content .links .social li:last-child {
    margin-right: 0;
  }
  .footer.content .block.newsletter {
    margin: 0 auto 30px;
    max-width: 500px;
  }
  .navigation .menuLinks a {
    margin-left: 17px;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .top-lnk-toggle {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-wrapper .sidebar.sidebar-main.-amshopby-sticky {
    position: static;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding-bottom: 12px;
  }
  .logo {
    clear: left;
    padding: 0;
    margin-left: 35px !important;
    margin-top: 17px !important;
    max-width: 170px !important;
  }
  .logo img {
    display: inline-block !important;
  }
  .minicart-wrapper .action.showcart:before {
    content: "" !important;
  }
  .top-lnk-toggle {
    display: block;
    font: 14px 'Roboto', arial, helvetica, sans-serif;
    color: #112743;
    text-transform: none;
    padding: 5px 14px;
  }
  .top-lnk-toggle:before {
    content: "";
    border-left: 12px solid #112743;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
  .top-lnk-toggle.open:before {
    transform: rotate(90deg);
  }
  .header-top-linksec .custom-inner-box {
    display: none;
  }
  .header-top-linksec .custom-inner-box.open {
    display: block;
    position: absolute;
    padding: 0;
    left: 0;
    right: 0;
    top: 27px;
    z-index: 3000;
    background: #e8ecee;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
  }
  .header-top-left,
  .header-top-right {
    float: none;
  }
  .header-top-left li,
  .header-top-right li {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-left: 0 !important;
  }
  .header-top-left li a,
  .header-top-right li a {
    display: block;
    padding: 6px 10px;
    border-top: 1px solid #d3d6dc;
  }
  .header-top-left li:after {
    display: none;
  }
  .header-top-left li .fa {
    vertical-align: middle;
  }
  .header-top-left li:first-child {
    position: relative;
  }
  .header-top-left li:first-child .fa {
    position: absolute;
    left: 10px;
    top: 5px;
    margin: 0;
  }
  .header-top-left li:first-child a {
    padding-left: 40px;
  }
  .page-header {
    position: relative;
    margin-bottom: 5px !important;
    border-bottom: 0 !important;
  }
  .page-header:after {
    content: "";
    width: 100%;
    height: 40px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .page-header .panel.wrapper {
    padding: 0 !important;
  }
  .page-header .header.panel {
    padding: 0 !important;
  }
  .header.panel > .header.links {
    margin-bottom: 0;
  }
  .block-search .control {
    position: absolute !important;
    margin: 0 !important;
    left: 0;
    right: 0;
    bottom: -111px;
    box-sizing: border-box;
    z-index: 200;
    border-top: 0 !important;
    background: #EDEDED;
  }
  .block-search .form.minisearch.active .action.search {
    display: block;
    position: absolute;
    left: 14px;
    bottom: -96px;
    z-index: 201;
    height: 36px;
    font-size: 0;
  }
  .block-search .form.minisearch.active .action.search:before {
    content: '\e615';
    font-family: 'icons-blank-theme';
  }
  .block-search .label:before {
    color: #434446 !important;
    font-weight: bold !important;
  }
  .footer .copyright {
    display: none !important;
  }
  .footer.content {
    border-top: 0 !important;
    margin-top: 0 !important;
  }
  .header.content {
    padding-top: 70px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    z-index: 2000 !important;
  }
  .logo {
    position: absolute !important;
    left: 10px;
    top: 0;
    margin-left: 0 !important;
    margin-top: 12px !important;
    text-align: left;
  }
  .minicart-wrapper {
    width: 28%;
    text-align: center;
    margin-top: 0 !important;
    line-height: 30px;
  }
  .minicart-wrapper .action.showcart {
    padding: 16px 5px;
    width: 100px;
  }
  .minicart-wrapper .action.showcart:hover {
    background: #fff;
  }
  .skip-links {
    float: right;
    width: 60%;
    margin-top: 0;
    text-align: center;
    font-size: 0;
    display: flex;
    justify-content: space-around;
  }
  .skip-links .header-tab {
    width: 100px;
    padding: 14px 5px;
    text-align: center;
  }
  .skip-links .header-tab:hover {
    background: #fff;
  }
  .block-search {
    width: 12% !important;
    float: left !important;
    margin: 0;
    text-align: center;
    padding: 13px 0 !important;
  }
  .block-search .label {
    float: none !important;
  }
  .header-callus {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 18px;
  }
  .nav-toggle {
    display: none !important;
  }
  .nav-toggle:before {
    color: #434446 !important;
    font-weight: bold !important;
  }
  .contact-index-index .left-contacts,
  .contact-index-index .right-contacts,
  .contact-index-index .contactForm,
  .contact-index-index .contactMap {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-index-index .contactMap {
    margin-bottom: 0;
  }
  .nav-open .nav-sections {
    z-index: 10000 !important;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-sections-item-content:last-child {
    display: none;
  }
  .nav-sections-item-content .page-header {
    border-bottom: 0;
  }
  .navigation {
    background: transparent !important;
    padding: 0 !important;
  }
  .navigation .menuLinksTrigger {
    display: inline-block;
    float: right;
    font-size: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin: 14px 12px 0 0;
    height: 0;
  }
  .navigation .menuLinksTrigger.open {
    border-top: 12px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin: 17px 12px 0 0;
  }
  .navigation .menuLinks {
    display: none;
    width: 100%;
    margin: 0;
    background: #fff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  }
  .navigation .menuLinks.open {
    display: block;
  }
  .navigation .menuLinks a {
    font-size: 14px;
    color: #121212;
    display: block;
    padding: 7px 12px;
    border-bottom: 1px solid #ccc;
    margin-left: 0;
    text-align: left;
    line-height: normal;
  }
  #catDiv {
    width: 100%;
    left: 0;
  }
  .nav-sections-item-content .page-header-container #nav ol li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    color: #121212;
    line-height: normal;
    text-decoration: none;
  }
  .nav-sections-item-content .page-header-container #nav ol li a:hover {
    color: #e53d46;
  }
  .nav-sections-item-content .page-header-container #nav ol li ul {
    column-count: auto !important;
  }
  .nav-sections-item-content .page-header-container #nav ol li ul li a {
    padding: 7px 10px 7px 20px;
    color: #121212;
    line-height: normal;
    border-bottom: 0;
  }
  .nav-sections-item-content .page-header-container #nav ol li ul li a:hover {
    color: #e53d46;
  }
  .product.data.items > .item.title {
    margin-bottom: 0 !important;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .product.data.items > .item.title > .switch {
    position: relative;
    padding-left: 24px !important;
  }
  .product.data.items > .item.title > .switch:before {
    content: "" !important;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -6px;
    width: 0;
    height: 0;
    display: block !important;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #121212;
    border-right: none;
  }
  .product.data.items > .item.title.active > .switch {
    padding-left: 24px !important;
  }
  .product.data.items > .item.title.active > .switch:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    margin-top: -4px;
    width: 0;
    height: 0;
    display: block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #121212;
  }
  .product.data.items > .item.content {
    margin-top: 0 !important;
    box-shadow: none;
    border: 1px solid #ccc !important;
    border-top: 0 !important;
  }
  .product.data.items .data.item iframe {
    width: 100% !important;
  }
  .cart.table-wrapper table thead {
    display: none;
  }
  .cart.table-wrapper .product-item-photo {
    max-width: 100% !important;
    width: 100px !important;
  }
  .cart.table-wrapper .product-item-details {
    float: right;
    text-align: left;
    width: calc(100% - 115px) !important;
  }
  .minicart-wrapper .action.showcart .counter.qty {
    color: #fff !important;
    position: absolute;
    left: -15px;
    top: 0;
    background: #e53d46 !important;
    width: 13px;
    height: 13px !important;
    min-width: 0 !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 13px !important;
    transform: translateY(-50%);
    padding: 0 !important;
    font-size: 0;
  }
  .minicart-wrapper .block-minicart {
    padding: 10px !important;
  }
  .minicart-items .product-item-details {
    padding-left: 64px !important;
    text-align: left !important;
  }
  .minicart-items .product-item-name {
    line-height: normal !important;
  }
  .minicart-items .product-item-name a {
    color: #121212 !important;
  }
  .minicart-items .action.delete:before {
    content: "" !important;
  }
  .form .search-autocomplete {
    width: 100% !important;
    text-align: left;
    margin: 0 !important;
  }
  .amsearch-autocomplete-image .product-image-wrapper {
    height: auto !important;
  }
  .amsearch-autocomplete-image .product-image-photo {
    position: static !important;
  }
  .cart.table-wrapper .product-item-photo {
    position: static !important;
  }
  .cart.main.actions {
    padding-bottom: 0;
  }
  .mfp-bg {
    z-index: 20000 !important;
  }
  .mfp-wrap {
    z-index: 20001 !important;
  }
  .minicart-wrapper .product .actions {
    line-height: normal !important;
  }
  .minicart-items .product-item {
    padding: 8px 0 0!important;
    margin: 8px 0 0 !important;
  }
  .sidebar .fieldset .fields > .field:not(:last-child) {
    margin-bottom: 3px !important;
  }
  .modal-popup._show {
    z-index: 10000 !important;
  }
  .modals-overlay {
    z-index: 9999 !important;
  }
  .page-with-filter .columns .sidebar-main {
    order: 2 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
  }
  .to-top {
    display: none;
  }
  .grecaptcha-badge {
    bottom: 15px !important;
  }
}
@media (max-width: 699px) {
  .home-block.home-our-designteam img {
    float: none;
    margin-right: 0;
  }
  .home-we-are-right iframe {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 639px) {
  .home-review ul li {
    width: 100%;
    margin-right: 0;
  }
  .footer .links,
  .footer .links.col-4 {
    width: 220px !important;
    clear: both;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 20px calc((100% - 220px) / 2) 0;
    padding-right: 0 !important;
  }
  .footer .links.col-1 {
    width: 100% !important;
  }
  .block-search {
    margin-top: 0 !important;
  }
  .minicart-wrapper .product .actions {
    margin-top: -24px !important;
  }
}
@media (max-width: 600px) {
  .desktop-cat-banner {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .cart.main.actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .cart-container .form-cart .action.btn-proceed-quote {
    order: 4;
    margin-left: 0;
    width: 100%;
    margin-right: 0;
  }
  .cart-container .form-cart .action.continue {
    order: 2;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .cart-container .form-cart .custom-empty-cart {
    order: 1;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .cart-container .form-cart .action.update {
    order: 3;
    margin-right: 0;
    margin-left: 0 !important;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .cms-page-view .data-table th {
    white-space: normal;
    word-break: break-word;
  }
  .cart-container .form-cart .action.continue,
  .cart-container .form-cart .custom-empty-cart,
  .cart-container .form-cart .action.update {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/*========================= Customized Menu ========================*/
@media (min-width: 768px) {
  .nav-sections-item-content > .navigation.mobile-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .logo {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .navigation .browse-prod {
    display: none;
  }
}
@media (min-width: 768px) {
  .sm_menu_outer {
    display: none;
  }
  #sm_menu_ham {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav-toggle {
    display: none !important;
  }
  .header-top-linksec {
    display: none;
  }
  .skip-links,
  .header-callus,
  .block.block-search {
    display: none !important;
  }
  .minicart-wrapper {
    display: inline-block !important;
    margin: -67px 12px 0 0 !important;
    width: auto;
    padding: 12px 5px;
  }
  .minicart-wrapper .block-minicart:before {
    right: 12px !important;
  }
  .minicart-wrapper .block-minicart:after {
    right: 11px !important;
  }
  .minicart-wrapper .action.showcart {
    width: auto;
    padding: 0;
  }
  .minicart-wrapper .action.showcart:hover {
    box-shadow: none;
  }
  .minicart-wrapper .action.showcart:before {
    width: 30px;
    height: 40px;
  }
  .minicart-wrapper .action.showcart .text {
    display: none;
  }
  .logo {
    left: 70px;
  }
  .logo img {
    max-width: 100%;
  }
  .sm_menu_outer .block-search {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    height: auto;
    position: relative;
  }
  .sm_menu_outer .block-search .control {
    position: static !important;
    background: transparent;
  }
  .sm_menu_outer .block-search input {
    position: static;
    padding-left: 15px;
    padding-right: 55px !important;
  }
  .sm_menu_outer .block-search .actions {
    position: absolute;
    right: 15px;
    left: auto;
    top: 15px;
  }
  .sm_menu_outer .block-search .actions .action.search {
    display: block;
    background: #e53d46 !important;
    border-radius: 0 8px 8px 0;
    height: 36px;
    font-size: 0;
  }
  .sm_menu_outer .block-search .actions .action.search:before {
    content: '\e615';
    font-size: 28px !important;
    font-weight: bold !important;
    line-height: 36px !important;
    color: #fff !important;
    font-family: 'icons-blank-theme';
  }
  .sm_menu_outer .minicart-wrapper {
    float: none;
    width: auto;
    padding: 10px 15px;
    line-height: normal;
    font-size: 16px;
    font-weight: 500;
  }
  .sm_menu_outer .block-minicart li {
    border-bottom: 0 !important;
  }
  .sm_menu_outer .block-minicart .no-product {
    padding: 15px 15px 0;
    text-align: center;
  }
  .sm_menu_outer .block-minicart .product {
    padding: 12px 15px 15px;
    border-bottom: 0.5px solid #d4d4d4;
  }
  .sm_menu_outer .block-minicart .product:after {
    content: "";
    display: table;
    clear: both;
  }
  .sm_menu_outer .block-minicart .product .actions {
    float: left;
    padding: 0;
    width: auto;
    margin-top: 0;
    text-align: left;
    border-bottom: 0;
  }
  .sm_menu_outer .block-minicart .product-item-photo {
    padding: 0;
    float: left;
  }
  .sm_menu_outer .block-minicart .product-item-name a {
    padding: 0;
  }
  .sm_menu_outer .block-minicart .product-item-pricing {
    float: left;
  }
  .sm_menu_outer .block-minicart .product-item-pricing .label {
    display: inline-block;
  }
  .sm_menu_outer .block-minicart .product-item-pricing .cart-item-qty {
    display: inline-block;
    width: 3.2em;
  }
  .sm_menu_outer .block-minicart .action.delete {
    font-size: 0;
    padding: 0;
  }
  .sm_menu_outer .block-minicart .action.delete:before {
    display: inline-block;
    background: url("../images/icon_sprite.png") 4px -648px no-repeat;
    content: "";
    width: 20px;
    height: 20px;
    vertical-align: middle;
  }
  .sm_menu_outer .block-minicart .actions {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
  .sm_menu_outer .block-minicart .actions .viewcart {
    line-height: normal;
    text-transform: uppercase;
    font-size: 14px;
    background: #3190c4;
    color: #fff;
    padding: 10px 0;
    width: 120px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }
  .sm_menu_outer .mobile-contact h2 {
    padding: 10px 15px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }
  .sm_menu_outer .mobile-contact p:not(:last-child) {
    margin-bottom: 0;
  }
  .sm_menu_outer .mobile-contact a {
    font-weight: normal !important;
    padding-bottom: 0 !important;
  }
  .sm_menu_outer .mobile-contact span {
    color: #3190c4;
    display: inline-block;
    margin-right: 5px;
  }
}
body.mmactive {
  overflow: hidden;
}
/*========================== New Mobile Menu Start =============================*/
@media (max-width: 768px) {
  .nav-sections-item-content .page-header {
    display: none;
  }
  .page-header {
    z-index: 100;
  }
  .page-wrapper .nav-sections {
    position: relative;
    width: 100%;
    left: auto;
    z-index: 200;
    overflow: visible;
  }
  .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;
  }
  .minicart-wrapper {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu {
  display: block;
  width: 30px;
  position: absolute;
  left: 15px;
  top: -56px;
}
.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: -60px;
}
.hamburger-menu.active:before {
  background: url("../images/icon-close.svg") 0 0 no-repeat;
  height: 30px;
  background-size: 100% auto;
}
.nav__list {
  margin-bottom: 0;
  border-top: 1px solid #c3c3c3;
}
.nav__list li {
  margin-bottom: 0;
  float: left;
  width: 100%;
}
.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 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 #c3c3c3;
  -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: 30px !important;
  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-left: 0 !important;
}
.group-list.top a {
  padding-left: 15px !important;
}
.group-list.top label a {
  padding-left: 0 !important;
}
.group-list.top .group-list a {
  padding-left: 30px !important;
}
.group-list.top .group-list label a {
  padding-left: 15px !important;
}
.group-list.top .sub-group-list a {
  padding-left: 45px !important;
}
.group-list.top .sub-group-list label a {
  padding-left: 30px !important;
}
.group-list.top .sub-sub-group-list a {
  padding-left: 60px !important;
}
.group-list.top .sub-sub-group-list label a {
  padding-left: 45px !important;
}
.group-list.top .sub-4thsub-group-list a {
  padding-left: 130px !important;
}
.group-list.top .sub-4thsub-group-list label a {
  padding-left: 115px !important;
}
.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: 45px !important;
  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: #fff;
  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-group-list label a {
  padding-left: 0 !important;
}
.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 !important;
  background: #fff;
  color: #121212;
}
.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: #fff;
}
.sub-sub-group-list label:focus {
  background: #fff;
}
.sub-sub-group-list label:hover {
  background: #fff;
}
.sub-sub-group-list label a {
  padding-left: 0 !important;
}
.sub-4thsub-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-4thsub-group-list a {
  padding-left: 7.5rem !important;
  background: #fff;
  color: #121212;
}
.sub-4thsub-group-list a:focus {
  background: #fff;
}
.sub-4thsub-group-list a:hover {
  background: #fff;
}
.sub-4thsub-group-list label {
  padding-left: 6rem;
  background: #fff;
}
.sub-4thsub-group-list label:focus {
  background: #fff;
}
.sub-4thsub-group-list label:hover {
  background: #fff;
}
.sub-4thsub-group-list label a {
  padding-left: 0 !important;
}
.nav__list input[type=checkbox]:checked + label + ul {
  max-height: 1000px;
  overflow-y: scroll;
}
.nav__list input[type=checkbox]:checked + label + ul.group-list {
  border-top: 0;
}
.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;
}
.nav__list .block-search {
  width: 100% !important;
  height: auto;
  padding: 0 !important;
  position: relative;
  border-bottom: 1px solid #c3c3c3;
}
.nav__list .block-search .control {
  position: static !important;
  background: #fff;
}
.nav__list .block-search input {
  position: static;
}
.nav__list .block-search .action.search {
  display: block;
  position: absolute;
  left: 15px;
  top: 15px;
  height: 36px;
  font-size: 0;
}
.nav__list .block-search .action.search:after {
  content: "\e615";
  font-family: 'icons-blank-theme';
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
/*========================== New Mobile Menu End =============================*/
/*=========================== Sidebar Fixed Banner ==========================*/
.cms-home .fixed-banner {
  top: 140px !important;
}
.fixed-banner {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 280px;
  align-items: center;
  justify-content: space-between;
  z-index: 200 !important;
}
.fixed-banner.left-fixed-banner {
  left: 0;
  margin-left: 0;
  width: 10%;
}
.fixed-banner.right-fixed-banner {
  right: 0;
  margin-right: 0;
  width: 10%;
}
.fixed-banner img {
  width: 100%;
}
@media (min-width: 1600px) {
  .fixed-banner {
    display: inline-block;
  }
}
@media (min-width: 1700px) {
  .fixed-banner.left-fixed-banner,
  .fixed-banner.right-fixed-banner {
    width: 12%;
  }
}
@media (min-width: 1800px) {
  .fixed-banner.left-fixed-banner,
  .fixed-banner.right-fixed-banner {
    width: 13%;
  }
}
@media (min-width: 1900px) {
  .cms-home .fixed-banner-outer {
    top: 140px !important;
  }
  .fixed-banner-outer {
    position: absolute;
    display: inline-flex;
    max-width: 1280px;
    width: 100%;
    height: auto;
    left: 50%;
    top: 280px;
    transform: translateX(-50%);
    align-items: center;
    justify-content: space-between;
    z-index: 200 !important;
    pointer-events: none;
  }
  .fixed-banner-outer .fixed-banner {
    position: static;
    transform: none;
    pointer-events: auto;
  }
  .fixed-banner-outer .fixed-banner.left-fixed-banner {
    margin-left: -180px;
  }
  .fixed-banner-outer .fixed-banner.right-fixed-banner {
    margin-right: -180px;
  }
}
/*=========================== Mobile Search bar ==========================*/
@media (max-width: 767px) {
  .page-header:after {
    background: transparent;
  }
  .page-header .amsearch-wrapper-block {
    display: block;
    width: calc(100% - (15px * 2)) !important;
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .page-header .amsearch-wrapper-block:before {
    background: transparent !important;
  }
  .page-wrapper .amsearch-form-block.-opened {
    max-width: 100% !important;
  }
  .page-wrapper .amsearch-input-wrapper .amsearch-button.-loupe {
    margin: 0;
    height: 100%;
    width: 40px;
  }
  .page-wrapper .amsearch-input-wrapper .amsearch-input {
    padding-left: 50px;
    display: block !important;
  }
  .page-wrapper .amsearch-input-wrapper.-typed .amsearch-input {
    padding-left: 50px;
  }
  .page-wrapper .nav-sections {
    z-index: 101;
  }
  .page-wrapper .hamburger-menu {
    top: -110px !important;
  }
  .page-wrapper .hamburger-menu.active {
    top: -114px !important;
  }
  .page-wrapper .amsearch-item-container .amsearch-item .amsearch-link {
    color: #121212;
  }
  .page-wrapper .amsearch-item-container .amsearch-item .amsearch-link:hover {
    color: #121212;
  }
  .page-wrapper .amsearch-item-container .amsearch-item .amsearch-link:focus {
    color: #121212;
  }
  .page-wrapper .amsearch-item-container:not(.recent_searches) .amsearch-highlight {
    color: #3190c4 !important;
  }
  .page-wrapper .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: 50% !important;
    padding: 15px !important;
  }
  .page-wrapper .amsearch-products-section .amsearch-link {
    color: #121212;
    font-weight: bold;
  }
  .page-wrapper .amsearch-products-section .amsearch-link:hover {
    color: #121212;
    font-weight: bold;
  }
  .page-wrapper .amsearch-products-section .product-item-description {
    color: #121212;
    font-size: 1.4rem;
  }
  .page-wrapper .amsearch-products-section .actions-secondary {
    display: none;
  }
  .page-wrapper .amsearch-products-section .product-item .price-box .price {
    font-size: 16px;
  }
  .page-wrapper .amsearch-products-section .product-item .minimal-price-link .price-label {
    font-weight: normal;
  }
  .page-wrapper .amsearch-products-section .product-item .price-wrapper {
    font-weight: normal;
    font-size: 14px;
  }
  .page-wrapper .amsearch-highlight {
    color: #3190c4;
  }
  .page-wrapper .amsearch-item-container.-page a.amsearch-link {
    color: #3190c4;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item {
    background: #3190c4;
    border: 0;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item .amsearch-link {
    color: #fff;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item .amsearch-link:hover {
    background: #e53d46;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item.-match {
    background-color: #3190c4;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-highlight {
    color: #9cd365 !important;
  }
  .page-wrapper .amsearch-form-block.-opened {
    max-width: 75vw;
  }
  .page-wrapper .amsearch-result-section {
    width: 100% !important;
  }
  .-amsearch-overlay-opened .amsearch-overlay-block {
    display: block !important;
  }
}
/*============================= New Amasty Mega Menu  module css start ==============================*/
.page-wrapper .ammenu-header-container .header.content {
  display: block;
}
.page-wrapper .ammenu-menu-wrapper {
  margin-bottom: 0 !important;
}
.page-wrapper .ammenu-nav-sections.-sidebar.-left-menu .ammenu-submenu-wrapper.-full {
  background: #fff;
}
.page-wrapper .ammenu-tabs-list {
  display: none;
}
.page-wrapper .ammenu-button.-hamburger {
  color: #3191c4;
  border-width: 3px;
  height: 17px;
}
.page-wrapper .ammenu-button.-hamburger:before {
  color: #3191c4;
  border-width: 3px;
}
@media (min-width: 1366px) {
  .ammenu-nav-sections.-sidebar.-left-menu {
    max-width: 380px;
  }
  .ammenu-nav-sections.-sidebar.-left-menu .ammenu-submenu-wrapper.-full {
    left: 380px;
    min-width: calc(100vw - 30vw);
  }
}
@media (min-width: 1025px) {
  .header-top-right li {
    margin-left: 38px !important;
  }
  .page-wrapper .logo {
    padding-left: 2px;
    padding-right: 12px;
  }
  .page-wrapper .ammenu-nav-sections.-topmenu.-hamburger {
    background: #232830;
  }
  .page-wrapper .ammenu-nav-sections.-topmenu.-hamburger:not(.-sticky) .ammenu-main-container {
    background: transparent !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items {
    justify-content: space-between !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item {
    padding-left: 25px;
    padding-right: 25px !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link {
    font-size: 1.6rem;
    color: #fff !important;
    padding: 12px 0;
    font-weight: normal !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link:hover {
    color: #7CB642 !important;
    background: transparent !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link:hover > .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  .ammenu-main-container > div > span {
    display: none;
  }
  .ammenu-button.-hamburger.-trigger:after {
    content: "Browse Products";
    color: #3191c4;
    position: absolute;
    display: inline-block;
    width: 130px;
    text-align: right;
    left: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }
  .ammenu-button.-hamburger.-trigger:hover {
    filter: none;
    color: #7cb642 !important;
  }
  .ammenu-button.-hamburger.-trigger:hover:before {
    color: #7cb642;
  }
  .ammenu-button.-hamburger.-trigger:hover:after {
    color: #7cb642;
  }
  .ammenu-menu-wrapper .ammenu-icon-block.-icon {
    background-color: #fff !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item {
    padding: 0 10px;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link > .ammenu-icon-block.-toggle {
    margin: 0;
    height: 100%;
    width: 70px;
    justify-content: flex-start;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link > .ammenu-icon-block.-toggle:hover {
    color: #3191c4 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link:hover {
    color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link:hover > .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link > .ammenu-icon-block.-icon {
    background-color: #000 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-active {
    color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-active > .ammenu-icon-block.-toggle {
    justify-content: flex-end;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-active > .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-current {
    color: #ef7b80 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-current > .ammenu-icon-block.-icon {
    background-color: #ef7b80 !important;
  }
  .ammenu-category-tree .ammenu-title {
    color: #3190c4 !important;
    font-weight: 500;
  }
  .ammenu-category-tree .ammenu-title .ammenu-icon-block.-icon {
    background-color: #3190c4 !important;
  }
  .ammenu-category-tree .ammenu-title:hover {
    color: #7cb642 !important;
  }
  .ammenu-category-tree .ammenu-title:hover .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  #ammenu-sidebar:before {
    content: "Scroll for More Product Categories";
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 16px;
    position: absolute;
    bottom: 25px;
    left: 0;
    padding: 0 100px;
    box-sizing: border-box;
    background-image: url("../images/menuscroll-indicator.png"), url("../images/menuscroll-indicator.png");
    background-repeat: no-repeat;
    background-position: 19% center, 80% center;
  }
  #ammenu-sidebar .ammenu-menu-title {
    padding-left: 0;
    padding-right: 0;
  }
  #ammenu-sidebar .ammenu-menu-title .ammenu-title {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    color: #888 !important;
    font-weight: 400;
  }
  #ammenu-sidebar .ammenu-menu-title .ammenu-button.-close {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .ammenu-nav-sections.-topmenu .ammenu-items {
    padding-left: 220px;
  }
}
@media (max-width: 1199px) {
  .ammenu-nav-sections.-topmenu .ammenu-items {
    justify-content: right !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item {
    padding-left: 20px;
    padding-right: 20px !important;
  }
}
@media (max-width: 1024px) {
  .page-wrapper .ammenu-button.-hamburger {
    position: absolute;
    left: 18px;
    top: 7px;
    border-width: 3px;
  }
  .page-wrapper .ammenu-button.-hamburger:before {
    border-width: 3px;
  }
  .page-wrapper .page-header .amsearch-wrapper-block {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .skip-links {
    display: none;
  }
  .header-callus {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-header .amsearch-wrapper-block {
    width: calc(100% - 350px) !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ammenu-header-container .header.content .ammenu-logo {
    margin-left: 45px !important;
  }
}
@media (max-width: 768px) {
  .page-wrapper .panel.wrapper:after {
    content: "";
    display: table;
    clear: both;
  }
  .page-wrapper .header.panel > .header.links {
    margin: 0;
  }
  .page-wrapper .minicart-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .page-wrapper .page-header .amsearch-wrapper-block {
    margin-left: 0 !important;
    margin-top: 12px !important;
    margin-left: 15px !important;
  }
  .page-wrapper .minicart-wrapper {
    margin-top: 0 !important;
    position: absolute;
    right: 0;
    top: 10px;
  }
  .page-wrapper .ammenu-button.-hamburger {
    border-width: 3px;
    width: 30px;
  }
  .page-wrapper .ammenu-button.-hamburger:before {
    border-width: 3px;
  }
}
/*============================= New Amasty Mega Menu  module css end ==============================*/
/**
 * 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-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.ambase-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .ambase-word-break {
  word-break: break-all;
}
.ammenu-sticky {
  left: 0;
  max-width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
/* phpcs:disable */
/* phpcs:enable */
/* phpcs:ignore Magento2.Less.SelectorDelimiter.LineBreakAfterDelimiter */
.ammmenu-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .ammmenu-word-break {
  word-break: break-all;
}
._ammenu-link.-first {
  min-height: 60px;
  padding: 17px 0;
}
._ammenu-link.-second {
  font-size: 1.6rem;
  font-weight: 400;
  min-height: 50px;
  padding: 14px 0;
}
@-webkit-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@media (max-width: 1025px) {
  .ammenu-header-container.-sticky .header.content {
    padding: 10px;
  }
}
._ammenu-toggle-buttons:hover {
  filter: brightness(85%);
}
._ammenu-toggle-buttons:active {
  filter: brightness(50%);
}
@keyframes slide-right {
  0% {
    transform: translateX(-500%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(500%);
  }
  100% {
    transform: translateX(0);
  }
}
._ammenu-animation {
  animation-fill-mode: forwards;
}
@-webkit-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-moz-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-ms-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-o-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-moz-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-ms-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-o-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-moz-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-ms-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-o-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-webkit-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-ms-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.am-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.amscroll-arrow-icon {
  width: 14px;
  height: 28px;
  background: url('../Amasty_Scroll/images/arrow.svg');
}
.amscroll-chevron-icon {
  width: 24px;
  height: 24px;
  background: url('../Amasty_Scroll/images/chevron.svg');
}
@-webkit-keyframes amScrollRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.amscroll-arrow-style {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 100px;
}
.amscroll-arrow-style:before {
  border-radius: 100px;
}
.amscroll-arrow-style:after {
  width: 14px;
  height: 28px;
  background: url('../Amasty_Scroll/images/arrow.svg');
}
.amscroll-arrow-style .amscroll-text {
  display: none;
}
.amscroll-text-style {
  padding-right: 7px;
  border-radius: 100px;
  transform: rotate(-90deg) translate(60px, 60px);
}
.amscroll-text-style:before {
  border-radius: 100px;
}
.amscroll-text-style:after {
  width: 24px;
  height: 24px;
  background: url('../Amasty_Scroll/images/chevron.svg');
}
.amscroll-edge-style {
  right: 0;
  padding: 4px 26px 4px 20px;
  border-radius: 20px 20px 0 0;
  transform: rotate(-90deg) translate(71px, 72px);
}
.amscroll-edge-style .amscroll-text {
  margin-right: 20px;
}
.amscroll-edge-style:before {
  border-radius: 20px 20px 0 0;
}
.amscroll-edge-style:after {
  width: 14px;
  height: 28px;
  background: url('../Amasty_Scroll/images/arrow.svg');
  transform: rotate(90deg) translateX(2px);
}
.am-visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0;
}
.am-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.ambrands-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .ambrands-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;
  }
}
@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;
  }
}
/**
 * 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%;
  }
}
@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,
  .column .block-addbysku .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    width: 48.8%;
  }
  .abs-blocks-2columns:nth-child(odd),
  .column .block-addbysku .block-content .box:nth-child(odd),
  .login-container .block:nth-child(odd),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(odd) {
    clear: left;
    float: left;
  }
  .abs-blocks-2columns:nth-child(even),
  .column .block-addbysku .block-content .box:nth-child(even),
  .login-container .block:nth-child(even),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(even) {
    float: right;
  }
  .abs-reset-left-margin-desktop,
  .bundle-options-container .legend.title,
  .column.main .cart-summary .actions-toolbar,
  .cart.table-wrapper .item-actions .actions-toolbar,
  .gift-summary .actions-toolbar,
  .cart.table-wrapper .gift-summary .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar,
  .form-new-agreement .fieldset .legend,
  .form-new-agreement .actions-toolbar,
  .column.main .paypal-review .actions-toolbar,
  .wishlist-index-index .main .form-wishlist-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-add-invitations .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 75.8%;
    top: 6px;
  }
  .abs-add-fields-desktop .fieldset .field:not(.choice) .control,
  .form-giftregistry-share .fieldset .field:not(.choice) .control,
  .form-giftregistry-edit .fieldset .field:not(.choice) .control,
  .form-add-invitations .fieldset .field:not(.choice) .control,
  .form-create-return .fieldset .field:not(.choice) .control,
  .form.send.friend .fieldset .field:not(.choice) .control {
    width: 50%;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend,
  .column:not(.sidebar-main) form .actions-toolbar,
  .column:not(.sidebar-additional) form .actions-toolbar,
  .login-container .fieldset:after {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .dashboard-welcome-toggler,
  .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,
  .abs-pager-toolbar:before,
  .abs-pager-toolbar: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 .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,
  .gift-wrapping .nested:before,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:before,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:before,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:before,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:before,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:before,
  .header.content:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .account .toolbar:before,
  .account .toolbar:after,
  .toolbar-giftregistry-results:before,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:before,
  .toolbar-wishlist-results:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:after,
  .page-header .header.panel:after,
  .account .toolbar:after,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional {
    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,
  .product-add-form .fieldset > .field,
  .product-add-form .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,
  .product-add-form .fieldset > .field:not(.choice) > .label,
  .product-add-form .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,
  .product-add-form .fieldset > .field:not(.choice) > .control,
  .product-add-form .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,
  .product-add-form .fieldset > .field > .label,
  .product-add-form .fieldset .fields > .field > .label {
    margin: 0 0 5px;
    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,
  .product-add-form .fieldset > .field.choice:before,
  .product-add-form .fieldset .fields > .field.choice:before,
  .product-add-form .fieldset > .field.no-label:before,
  .product-add-form .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,
  .product-add-form .fieldset > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    margin-bottom: 20px;
    position: relative;
  }
  .abs-pager-toolbar .limiter,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter {
    float: right;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    float: left;
    line-height: normal;
    padding: 7px 0 0;
    position: relative;
    z-index: 1;
  }
  .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 {
    float: left;
    position: relative;
    width: 73%;
  }
  .abs-shopping-cart-items-desktop .actions,
  .block-cart-failed .actions,
  .cart-container .form-cart .actions,
  .cart-container .cart-gift-item .actions {
    text-align: right;
  }
  .abs-shopping-cart-items-desktop .action.clear,
  .abs-shopping-cart-items-desktop .action.update,
  .block-cart-failed .action.clear,
  .block-cart-failed .action.update,
  .cart-container .form-cart .action.clear,
  .cart-container .form-cart .action.update,
  .cart-container .cart-gift-item .action.clear,
  .cart-container .cart-gift-item .action.update {
    margin-left: 10px;
  }
  .abs-shopping-cart-items-desktop .action.continue,
  .block-cart-failed .action.continue,
  .cart-container .form-cart .action.continue,
  .cart-container .cart-gift-item .action.continue {
    float: left;
  }
  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: 66.66666667%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 83.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 83.33333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 16.66666667%;
    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: 16.66666667%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 16.66666667%;
    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: #f5f5f5;
    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: 53px;
    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: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #fff;
    border: 1px solid #d1d1d1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 700;
    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: #d1d1d1;
    color: #d1d1d1;
    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;
  }
  .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: 'icons-blank-theme';
    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: 'icons-blank-theme';
    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;
  }
  .fieldset > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
    margin: 0 0 29px;
  }
  .fieldset > .field > .label {
    margin: 0;
  }
  .fieldset > .field:before,
  .fieldset > .field:after {
    content: '';
    display: table;
  }
  .fieldset > .field:after {
    clear: both;
  }
  .fieldset > .field.choice:before,
  .fieldset > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .fieldset > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
  }
  .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 5px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 600;
    line-height: 20px;
    font-size: 1.4rem;
    color: #7d7d7d;
    text-decoration: none;
    background: #f0f0f0;
    border: 1px solid #d1d1d1;
    border-bottom: none;
    height: 20px;
    padding: 5px 20px 5px 20px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #7d7d7d;
    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: #fcfcfc;
  }
  .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: 6px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 31px;
    padding: 20px 20px 20px 20px;
    border: 0;
    border-top: 1px solid #d1d1d1;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .secondary {
    float: right;
  }
  .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 5px 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;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
  .am-brands-fullwidth {
    width: 100% !important;
  }
  .ammenu-nav-sections .widget-product-carousel,
  .ammenu-nav-sections .widget {
    max-width: initial;
  }
  .ammenu-nav-sections .widget-product-carousel .slick-slide .product-item,
  .ammenu-nav-sections .widget .slick-slide .product-item {
    max-width: initial;
  }
  .amscroll-backtotop-block.-desktop-arrow {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 100px;
  }
  .amscroll-backtotop-block.-desktop-arrow:before {
    border-radius: 100px;
  }
  .amscroll-backtotop-block.-desktop-arrow:after {
    width: 14px;
    height: 28px;
    background: url('../Amasty_Scroll/images/arrow.svg');
  }
  .amscroll-backtotop-block.-desktop-arrow .amscroll-text {
    display: none;
  }
  .amscroll-backtotop-block.-desktop-text {
    padding-right: 7px;
    border-radius: 100px;
    transform: rotate(-90deg) translate(60px, 60px);
  }
  .amscroll-backtotop-block.-desktop-text:before {
    border-radius: 100px;
  }
  .amscroll-backtotop-block.-desktop-text:after {
    width: 24px;
    height: 24px;
    background: url('../Amasty_Scroll/images/chevron.svg');
  }
  .amscroll-backtotop-block.-desktop-edge {
    right: 0;
    padding: 4px 26px 4px 20px;
    border-radius: 20px 20px 0 0;
    transform: rotate(-90deg) translate(71px, 72px);
  }
  .amscroll-backtotop-block.-desktop-edge .amscroll-text {
    margin-right: 20px;
  }
  .amscroll-backtotop-block.-desktop-edge:before {
    border-radius: 20px 20px 0 0;
  }
  .amscroll-backtotop-block.-desktop-edge:after {
    width: 14px;
    height: 28px;
    background: url('../Amasty_Scroll/images/arrow.svg');
    transform: rotate(90deg) translateX(2px);
  }
  .ui-tooltip.ui-widget {
    max-width: 450px;
  }
  .filter-options-content a:hover {
    text-decoration: none;
  }
  .catalog-topnav {
    display: block;
  }
  .page-layout-1column .toolbar-products {
    position: inherit !important;
  }
  .filter-options-content .am-filter-price {
    width: 40%;
  }
  .sidebar > .block-category-list {
    margin-bottom: 14px;
  }
  .amasty-catalog-topnav {
    margin-top: 3px;
  }
  .amasty-catalog-topnav.catalog-topnav .filter-options .filter-options-content {
    min-width: 200px;
    z-index: 1001;
  }
  .amasty-catalog-topnav .filter-options {
    margin-bottom: 20px;
    padding: 3px 0;
  }
  .amasty-catalog-topnav .filter-subtitle {
    display: none;
  }
  .amasty-catalog-topnav .amshopby-category-dropdown {
    min-width: 200px;
  }
  .amasty-catalog-topnav .filter-options-item {
    margin-bottom: 0;
  }
  .amasty-catalog-topnav .filter-options-item:first-child .filter-options-title {
    padding-left: 0;
  }
  .amasty-catalog-topnav .filter-options-title {
    padding-right: 5px;
  }
  .amasty-catalog-topnav .filter-options-title:after {
    display: inline-block;
    margin: 0 0 0 15px;
    position: static;
    transform: translateY(-2px);
  }
  .sidebar.sidebar-main.-amshopby-sticky {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options {
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover {
    scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar {
    background: #f0f0f0;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 6px;
    cursor: pointer;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar {
    height: 12px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar-thumb {
    height: 6px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options ::-webkit-scrollbar-track {
    height: 6px;
    width: 6px;
  }
  .amasty-catalog-topnav .filter-options-item .filter-options-content .amshopby-flyout-block .items.amshopby-fly-out-view {
    margin: -11px;
    box-shadow: none;
  }
  .filter-options input[type='checkbox'] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    width: 0;
    position: absolute;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    margin: 0;
    padding: 0 0 0 22px;
    min-height: 12px;
    line-height: 1.2;
    cursor: pointer;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before,
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    content: '';
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before {
    border: 1px solid #e3e3e3;
    background: #fff;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    background: #1979c3 url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPGRlZnMvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMS42NjkzIDMuNTAwNjFjLS4yMDc4LjAwNjk1LS40MDQ4LjA5ODg1LS41NDkzLjI1NjItMS45NTcwMyAyLjA2NDE1LTMuNDM4ODMgMy43NzY1NS01LjI4MDQxIDUuNzQ3ODNMMy44MTczIDcuNzA0NzRjLS4wNzk5Mi0uMDcxNi0uMTcyNDUtLjEyNTk1LS4yNzIzMy0uMTU5OTItLjA5OTg3LS4wMzM5Ny0uMjA1MTItLjA0NjktLjMwOTc0LS4wMzgwNi0uMTA0NjIuMDA4ODUtLjIwNjU2LjAzOTI5LS4zLjA4OTYtLjA5MzQ1LjA1MDMtLjE3NjU2LjExOTQ4LS4yNDQ1OS4yMDM2LS4wNjgwNC4wODQxMS0uMTE5NjYuMTgxNTEtLjE1MTkzLjI4NjYyLS4wMzIyNy4xMDUxMS0uMDQ0NTUuMjE1ODgtLjAzNjE1LjMyNTk4LjAwODQxLjExMDExLjAzNzM0LjIxNzQuMDg1MTUuMzE1NzQuMDQ3ODEuMDk4MzMuMTEzNTUuMTg1NzkuMTkzNDguMjU3MzlMNS4zNzc3MSAxMS4yOThjLjE1MzE1LjEzNzkuMzUwMTkuMjA5OC41NTE2LjIwMTMuMjAxNDEtLjAwODYuMzkyMzEtLjA5NjkuNTM0NDQtLjI0NzNDOC42MTA3NCA4Ljk4NzU3IDEwLjE0MiA3LjE3NTQ0IDEyLjI1NiA0Ljk0NTc4Yy4xMTY1LS4xMTgzNy4xOTYtLjI3MTIuMjI4MS0uNDM4MjMuMDMyMS0uMTY3MDMuMDE1My0uMzQwMzgtLjA0ODQtLjQ5NzA5LS4wNjM2LS4xNTY3MS0uMTcwOS0uMjg5MzctLjMwNzgtLjM4MDQyLS4xMzY5LS4wOTEwNS0uMjk2OC0uMTM2MTktLjQ1ODYtLjEyOTQzeiIvPgo8L3N2Zz4K) center / 12px;
    content: none;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:hover:before,
  .filter-options input[type='checkbox']:checked + .amshopby-choice:before {
    border-color: #1979c3;
  }
  .filter-options input[type='checkbox']:checked + .amshopby-choice:after {
    content: '';
  }
  ._keyfocus .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  ._keyfocus .filter-options input[type='checkbox']:focus + .amshopby-choice:before,
  .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  .filter-options input[type='checkbox']:focus + .amshopby-choice:before {
    border-color: #1979c3;
  }
  .filter-options input[type='checkbox']:not(:checked).mage-error + .amshopby-choice:before {
    border-color: #f23b3b;
  }
  .am_shopby_apply_filters {
    position: absolute;
    bottom: inherit;
    z-index: 212;
    display: none;
    visibility: hidden;
    padding: 0;
    width: inherit;
  }
  .am_shopby_apply_filters.visible {
    bottom: inherit;
    visibility: visible;
  }
  .am_shopby_apply_filters.-fixed {
    position: fixed;
  }
  .am_shopby_apply_filters.-fixed .am-show-button:before {
    display: none;
  }
  .am-show-button {
    position: relative;
    justify-content: space-between;
    margin: 0 0 10px;
    padding: 12px 10px;
    min-width: 180px;
    width: inherit;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(190, 199, 219, 0.21), 0 6px 25px rgba(190, 199, 219, 0.28);
  }
  .am-show-button > .am-items {
    margin: 0 auto;
  }
  .am-show-button:before {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    content: '';
    transform: rotate(45deg);
  }
  .am-show-button.-vertical:before {
    top: calc(50% - (10px / 2));
    right: calc(100% - (10px / 2));
  }
  .am-show-button.-horizontal:before {
    top: calc(100% - (10px / 2));
    left: calc(50% - (10px / 2));
  }
  #amasty-shopby-product-list .amshopby-overlay-block > .amshopby-loader {
    top: 30%;
    transform: translate(-50%, -30%);
  }
  .ambrands-letters-list {
    display: flex;
  }
  .ambrands-letters-list .ambrands-letter .ambrands-content {
    margin: 0 -10px;
  }
  .ambrands-letters-list .ambrands-brand-item {
    margin: 0 10px 20px;
  }
  .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 156px;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 10px;
    width: inherit;
  }
  .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-cart-failed .actions {
    text-align: left;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    position: relative;
    width: 40%;
  }
  .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%;
    padding: 0;
    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;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
  }
  .toolbar-amount {
    float: left;
  }
  .sorter {
    float: right;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    color: #7d7d7d;
    border: 1px solid #d1d1d1;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-mode:not(.active):hover {
    color: #7d7d7d;
    background: #dedede;
  }
  .modes-mode:last-child {
    border-right: 1px solid #d1d1d1;
  }
  .modes-mode.active {
    color: #a6a6a6;
  }
  .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: 24px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: right;
  }
  .product-info-main .box-tocart,
  .product-options-bottom .box-tocart {
    display: table;
  }
  .product-info-main .box-tocart .field.qty,
  .product-options-bottom .box-tocart .field.qty {
    display: table-cell;
  }
  .product-info-main .box-tocart .actions,
  .product-options-bottom .box-tocart .actions {
    display: table-cell;
    padding-top: 25px;
    text-align: center;
    vertical-align: bottom;
  }
  .product-info-main .page-title-wrapper .page-title {
    margin-top: -13px;
  }
  .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;
  }
  .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%;
  }
  .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;
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0 0 25px;
  }
  .block-search .nested {
    display: block;
    padding-top: 5px;
    position: absolute;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input::-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-ms-input-placeholder {
    color: #c2c2c2;
  }
  .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;
    padding: 5px 0;
    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: 22px;
    line-height: 22px;
    color: #8f8f8f;
    content: '\e615';
    font-family: 'icons-blank-theme';
    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: inherit;
  }
  .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;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    float: right;
    position: relative;
    width: 23%;
  }
  .column.main .cart-summary .actions-toolbar > .secondary {
    float: none;
  }
  .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 5px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper .item .col.item {
    padding: 27px 8px 10px;
  }
  .cart.table-wrapper .item-actions td {
    text-align: right;
  }
  .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;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart.table-wrapper .item-actions .actions-toolbar {
    text-align: left;
  }
  .cart .action {
    margin-bottom: 10px;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
    margin: 0 0 1px;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 7px;
    padding-top: 8px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    right: -15px;
    width: 390px;
  }
  .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: 22px 0 0;
  }
  .opc-progress-bar-item {
    width: 185px;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 600px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 10px;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 600px;
  }
  .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-payment-method .payment-method-content .fieldset > .field {
    margin: 0 0 20px;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.choice:before {
    padding: 0;
    width: 0;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type .control {
    margin-left: 25.8%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type.no-detection .control {
    margin-left: 0;
  }
  .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;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .login-container .block .login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block .login .actions-toolbar > .secondary {
    float: left;
  }
  .fieldset .fullname .field .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset .fullname .field .control {
    width: 74.2%;
    float: left;
  }
  .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%;
  }
  .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.8%;
  }
  .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: 2.4%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-downloadable .product-options-bottom .field.qty + .actions {
    padding-top: 0;
  }
  .gift-message .field {
    margin-bottom: 20px;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    float: right;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
  }
  .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;
  }
  .cart.table-wrapper .action-gift {
    float: left;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field > .label {
    margin: 0;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    content: '';
    display: table;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    clear: both;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.choice:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .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%;
  }
  .form-add-invitations .additional,
  .form-add-invitations .field.text {
    margin-top: 29px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .wishlist.window.popup .field {
    margin: 0 0 20px;
  }
  .wishlist.window.popup .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .wishlist.window.popup .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .wishlist.window.popup .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .wishlist.window.popup .field.choice:before,
  .wishlist.window.popup .field.no-label:before {
    display: none;
  }
  .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 {
    margin-right: 5px;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .field .control {
    width: 100%;
  }
  .block.newsletter .action.subscribe {
    border-radius: 3px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #d1d1d1;
  }
  .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 .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .reward-settings + .actions-toolbar {
    margin-top: -32px;
  }
  .form-create-return .additional .field:last-child {
    margin-top: 29px;
  }
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .table-order-items .subtotal,
  .table-order-items .amount {
    text-align: right;
  }
  .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;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .page-title-wrapper .order-date {
    margin-top: -20px;
  }
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .header.panel > .header.links {
    float: right;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none none;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    font-size: 14px;
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li a {
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    padding-left: 5px;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper {
    border-bottom: 1px solid #e8e8e8;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .logo {
    margin: 0 auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content .links {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 50px 0 0;
    vertical-align: top;
  }
  .footer.content .switcher.store {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .my-credit-cards .card-type img {
    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 .fieldset .field.qty {
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty .label {
    width: auto;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .wishlist-index-index .product-item-info {
    width: 240px;
  }
  .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: 1024px), print {
  .amslider .slide {
    flex-basis: auto;
    margin: 0 20px 20px 0;
    max-width: 32%;
  }
  .filter-options-content .am-filter-price {
    width: 43%;
  }
  .amslider-container.am-swiper-slider {
    width: 85%;
  }
  .ambrands-letters-filter .ambrands-letter {
    margin: 0 7px 7px 0;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 30px;
    width: inherit;
  }
  .ambrands-list-popup {
    position: absolute;
    width: 600px;
    height: 415px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(131, 136, 141, 0.13), 0 10px 15px rgba(131, 136, 141, 0.13);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
  }
  .ambrands-menu-item:hover .ambrands-list-popup,
  .ammenu-item:hover .ambrands-list-popup {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .ambrands-list-container {
    display: flex;
    height: 100%;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter {
    display: block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px 14px 0;
    min-width: calc(((34px + 12px) * 4) + (14px * 2));
    width: calc(((34px + 12px) * 4) + (14px * 2));
    height: 100%;
    background: #fbfbfb;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter {
    display: inline-flex;
    margin: 0 6px 12px;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter.-letter-all {
    margin-bottom: 30px;
    width: calc(100% - 12px);
  }
  .ambrands-popup-items {
    display: inline-block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
  .ambrands-popup-items .ambrands-letters-list {
    width: 100%;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-letter {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .ambrands-popup-items .ambrands-letters-list:last-child .ambrands-letter {
    margin-bottom: 0;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item .ambrands-label {
    max-width: 130px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 102px;
  }
  .ambrands-popup-items .ambrands-letter .ambrands-brand-item .ambrands-empty {
    font-weight: 400;
    font-size: 40px;
  }
  .amsearch-emptysearch-cms {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 40px 70px;
  }
  .amsearch-emptysearch-cms > .amsearch-item {
    max-width: 50%;
  }
  .amsearch-emptysearch-cms > .amsearch-content {
    padding-right: 10px;
  }
  .amsearch-emptysearch-cms .amsearch-content > .amsearch-title {
    font-size: 72px;
    margin: 0 0 20px;
  }
  .amsearch-emptysearch-cms .amsearch-text {
    font-size: 28px;
    line-height: 33px;
  }
  .amsearch-emptysearch-cms .amsearch-contacts-block {
    font-size: 22px;
    margin-top: 45px;
  }
  .amsearch-emptysearch-cms .amsearch-image-block {
    margin-top: 0;
  }
  .amsearch-emptysearch-cms .amsearch-contacts-block > .amsearch-title {
    margin-bottom: 10px;
  }
  .amsearch-result-block:not(.-preload) .amsearch-products-section {
    width: calc(100% - 283px);
  }
  .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(100% / 4);
  }
  .page-header.amsearch-full-width .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(100% / 5);
  }
  .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .products-grid .product-item {
    width: 16.66666667%;
  }
  .page-layout-3columns .products-grid .product-item {
    width: 25%;
  }
  .page-products .products-grid .product-items {
    margin: 0;
  }
  .page-products .products-grid .product-item {
    margin-left: 2%;
    padding: 0;
    width: calc((100% - 6%) / 4);
  }
  .page-products .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-products .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    margin-left: 0;
    width: 20%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    margin-left: 1%;
    width: 32.667%;
  }
  .page-products.page-layout-3columns .products-grid .product-item:nth-child(3n) {
    margin-left: 1%;
  }
  .page-products.page-layout-3columns .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #ccc;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .table-checkout-shipping-method {
    min-width: 500px;
  }
  .wishlist-index-index .products-grid .product-items {
    margin: 0;
  }
  .wishlist-index-index .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .wishlist-index-index .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .block.widget .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 8%) / 5);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(5n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 25%;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
}
@media all and (min-width: 1440px), print {
  .amslider .wrapper {
    justify-content: center;
  }
  .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%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_grid12.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Label%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBase%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenuLite%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_helpers.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenuLite%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_animations.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenuLite%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenuLite%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_buttons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fopen_type%5C%2F_drill.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenuPremium%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_animations.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Scroll%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_utils.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Scroll%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_back-to-top.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_utilities.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_ProductVideo%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_responsive.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_extends.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_GiftRegistry%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_AdvancedCheckout%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Customer%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Rma%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Sales%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Bundle%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_GiftMessage%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Paypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_billing.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Wishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Invitation%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_SendFriend%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_forms.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_actions-toolbar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_CatalogSearch%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_GiftWrapping%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_MultipleWishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_forms.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2F_widgets.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_icons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2Fvariables%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2F_sections.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_sections.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_actions-toolbar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Fcomponents%5C%2F_modals_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBase%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_widgets.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_filter-fly-out.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_inputs.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_show-button.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_loader.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_brands-list.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_CatalogEvent%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_buttons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_progress-bar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%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%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Contact%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Downloadable%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Newsletter%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Review%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Reward%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FMagento_Vault%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBase%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_slider.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_brands-filter.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FEcom%5C%2Fdynamicca%5C%2Fen_CA%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_brands-popup.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%3BEACI%2CaAAa%2CQAAb%3BEACA%2CSAAS%2C4BAAT%3BEACA%2CSAAS%2CoCAA2C%2COAAO%2C0BACnD%2C%2BBAAsC%2COAAO%2CcAC7C%2C8BAAqC%2COAAO%2CaAC5C%2C6BAAoC%2COAAO%2CiBAC3C%2C0CAAiD%2COAAO%2CMAJhE%3BEAKA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CQAAb%3BEACA%2CSAAS%2C4BAAT%3BEACA%2CSAAS%2CoCAA2C%2COAAO%2C0BACnD%2C%2BBAAsC%2COAAO%2CcAC7C%2C8BAAqC%2COAAO%2CaAC5C%2C6BAAoC%2COAAO%2CiBAC3C%2C0CAAiD%2COAAO%2CMAJhE%3BEAKA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CQAAb%3BEACA%2CSAAS%2C2BAAT%3BEACA%2CSAAS%2CmCAA0C%2COAAO%2C0BAClD%2C8BAAqC%2COAAO%2CcAC5C%2C6BAAoC%2COAAO%2CaAC3C%2C4BAAmC%2COAAO%2CiBAC1C%2CwCAA%2BC%2COAAO%2CMAJ9D%3BEAKA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CQAAb%3BEACA%2CSAAS%2C6BAAT%3BEACA%2CSAAS%2CqCAA4C%2COAAO%2C0BACpD%2CgCAAuC%2COAAO%2CcAC9C%2C%2BBAAsC%2COAAO%2CaAC7C%2C8BAAqC%2COAAO%2CiBAC5C%2C4CAAmD%2COAAO%2CMAJlE%3BEAKA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CQAAb%3BEACA%2CSAAS%2C8BAAT%3BEACA%2CSAAS%2CsCAA6C%2COAAO%2C0BACrD%2CiCAAwC%2COAAO%2CcAC%5C%2FC%2CgCAAuC%2COAAO%2CaAC9C%2C%2BBAAsC%2COAAO%2CiBAC7C%2C8CAAqD%2COAAO%2CMAJpE%3BEAKA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACI%2CaAAa%2CQAAb%3BEACA%2CSAAS%2C2BAAT%3BEACA%2CSAAS%2CmCAA0C%2COAAO%2C0BAClD%2C8BAAqC%2COAAO%2CcAC5C%2C6BAAoC%2COAAO%2CaAC3C%2C4BAAmC%2COAAO%2CiBAC1C%2CwCAA%2BC%2COAAO%2CMAJ9D%3BEAKA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAGJ%3BEACC%2CaAAa%2CoBAAb%3BEACA%2CcAAA%3B%3BAAGD%3BAAAI%3BEACF%2CSAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3B%3BAAGF%3BAAAI%3BEACF%2CSAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3B%3BAAGF%3BAAAI%3BEACF%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAGF%3BAAAI%3BEACF%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAGF%3BAAAI%3BEACF%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAGF%3BAAAI%3BEACF%2CSAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAGF%3BAAAG%3BEACC%2CcAAA%3BEACA%2CqBAAA%3B%3BAACA%2CCAAC%3BAAAD%2CMAAC%3BEACJ%2CcAAA%3BEACA%2CqBAAA%3B%3BAAEG%2CCAAC%3BAAAD%2CMAAC%3BEACJ%2CcAAA%3BEACA%2C0BAAA%3B%3BAAID%3BAAAI%3BEACH%2CeAAA%3BEACA%2CgBAAA%3B%3BAAGD%2CKAAK%3BAAAe%2CKAAK%3BAAAmB%2CKAAK%3BAAAc%2CKAAK%3BAAAc%2CKAAK%3BAAAiB%2CKAAK%3BAAAiB%2CKAAK%3BAAAmB%2CKAAK%3BEACvJ%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3BEACA%2CaAAa%2CoBAAb%3B%3BAAEJ%3BEACC%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAAGD%3BEACE%2CcAAA%3B%3BAAGF%2CKAAK%3BEACH%2CcAAA%3BEACA%2CUAAA%3B%3BAAGF%2CKAAK%3BEACD%2C0BAAA%3B%3BAAKF%2CUADD%2CEACE%3BEACA%2CgBAAA%3B%3BAAMD%2CKADA%2CIAAI%2CYACH%3BEACA%2CgBAAA%3B%3BAAMD%2CQADA%2CIAAI%2CYACH%3BEACA%2CgBAAA%3B%3BAAMD%2CMADA%2CIAAI%2CYACH%3BEACA%2CgBAAA%3B%3BAAMH%2CcACC%2CQAAO%2CKACN%3BEACC%2CcAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAKH%2CcACC%2CWACC%3BEACI%2CeAAA%3B%3BAAHN%2CcACC%2CWACC%2CGAEC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAANJ%2CcACC%2CWAQC%3BEACC%2CeAAA%3BEACG%2CmBAAA%3B%3BAAXN%2CcACC%2CWAQC%2CGAGC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAyBJ%2CQAnB0B%3BEACzB%2CYAAa%2CQAAO%3BEAAQ%2COAAO%3BEAAU%2COAAO%3BEAAU%2CaAAc%3BEAAS%2CaAAc%3BEAAc%2CMAAM%2CSAAS%3BEAAQ%3BEAAgB%3BEAAY%3BIACnK%2C4BAAA%3BIACA%2CcAAA%3B%3BEAGD%2CSAAU%3BIACT%2C0BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAGD%3BIACC%2C4BAAA%3B%3B%3BAAuBF%3BEAjBC%3BEAAa%2CYAAa%2CQAAO%3BEAAQ%2COAAO%3BEAAU%2COAAO%3BEAAU%2CaAAc%3BEAAS%2CaAAc%3BEAAc%2CMAAM%2CSAAS%3BEAAQ%3BEAAgB%3BEAAY%3BIAChL%2C4BAAA%3BIACA%2CcAAA%3B%3BEAED%2CSAAU%3BIACT%2C0BAAA%3B%3BEAED%3BIACC%2C4BAAA%3B%3BEAGD%3BIACC%2C4BAAA%3B%3B%3BAAKF%3BAAAa%2CYAAa%2CQAAO%3BAAAQ%2COAAO%3BAAAU%2COAAO%3BAAAU%2CaAAc%3BAAAS%2CaAAc%3BAAAc%2CMAAM%2CSAAS%3BAAAQ%3BAAAgB%3BAAAY%3BEAChL%2C0BAAA%3BEACA%2CsBAAA%3B%3BAAGD%2COAAO%2CMACL%2CUAAO%3BEACP%2CyBAAA%3BEACA%2C0BAAA%3BEACA%2CsBAAA%3B%3BAAJF%2COAAO%2CMACL%2CUAAO%2CMAIN%3BEACA%2CwBAAA%3B%3BAAKH%2CYACC%2COAAM%3BEACL%2CyBAAA%3BEACA%2CmBAAA%3BEACA%2C2BAAA%3B%3BAAIF%3BEACC%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3B%3BAAJD%2CgBAKC%3BEACC%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C4BAAA%3B%3BAAEI%2CgBANL%2CGAKI%2CYACE%3BEACC%2CSAAS%2COAAT%3BEACA%2CeAAA%3BEACA%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAGN%2CgBAhBD%2CGAgBE%3BEACA%2CeAAA%3B%3BAACA%2CgBAlBF%2CGAgBE%2CWAEC%3BEACA%2CaAAA%3B%3BAAGF%2CgBAtBD%2CGAsBE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3B%3BAAlCH%2CgBAKC%2CGA%2BBC%3BEACC%2CWAAW%2CsCAAX%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3BEACA%2CoBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CgBAtCF%2CGA%2BBC%2CEAOE%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAA7CJ%2CgBAKC%2CGA2CC%3BEACC%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAIH%3BEACC%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3B%3BAAJD%2CiBAKC%3BEACC%2CWAAA%3BEACA%2C4BAAA%3BEACA%2CgBAAA%3BEACA%2C4BAAA%3B%3BAATF%2CiBAKC%2CGAKC%3BEACC%2CWAAW%2CsCAAX%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3BEACA%2CoBAAA%3B%3BAACA%2CiBAXF%2CGAKC%2CEAME%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAAlBJ%2CiBAKC%2CGAgBC%3BEACC%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3B%3BAAMH%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2C4BAAA%3BEACA%2CgCAAA%3B%3BAAJD%2CYAKC%2COACG%3BEACD%2CmBAAA%3B%3BAAKA%2CYAFF%2CMACE%2CIAAI%2CaACH%3BEACA%2CUAAA%3BEACA%2CiBAAA%3B%3BAAdJ%2CYAkBC%3BEACC%2CWAAA%3BEACA%2CcAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CoBAAA%3B%3BAACA%2CYALD%2CEAKE%3BEACA%2CcAAA%3B%3BAAxBH%2CYA2BC%3BEACC%2CcAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CoBAAA%3B%3BAAIF%2CUACE%2CsBACA%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CmBAAA%3B%3BAAMH%3BEACC%2C2BAAA%3BEACG%2CmBAAA%3B%3B%3B%3BAASA%2CsBAHH%2CYACC%2CQAAO%2COACL%2CIACC%2CIAAI%3BEACJ%2CcAAA%3BEACA%2CgCAAA%3B%3BAAEC%2CsBAPL%2CYACC%2CQAAO%2COACL%2CIACC%2CIAAI%2CkBAGJ%2CKACE%2CIAAI%3BEACJ%2CcAAA%3B%3BAAQH%2CsBAhBH%2CYAcC%2CQAAO%2CWACL%2CIACC%2CIAAI%3BEACJ%2CcAAA%3BEACA%2CgCAAA%3B%3BAAEC%2CsBApBL%2CYAcC%2CQAAO%2CWACL%2CIACC%2CIAAI%2CkBAGJ%2CKACE%2CIAAI%3BEACJ%2CcAAA%3B%3B%3BAAsCP%2CQA1B0B%3BEACzB%2C0BACC%3BIACC%2CkBAAA%3BIACA%2C4BAAA%3BIACA%2CcAAA%3BIACA%2CqBAAA%3BIACA%2CuBAAA%3B%3BEANF%2C0BACC%2CuBAMC%3BIACC%2CaAAA%3B%3BEARH%2C0BAWC%3BIACC%2CcAAA%3B%3BEAZF%2C0BAcC%2CMACC%3BIACC%2CaAAA%3B%3BEAhBH%2C0BAmBC%2CaAAY%3BIACX%2CcAAA%3B%3B%3BAA%2BBH%3BEAzBC%2C0BACC%3BIACC%2CkBAAA%3BIACA%2C4BAAA%3BIACA%2CcAAA%3BIACA%2CqBAAA%3BIACA%2CuBAAA%3B%3BEANF%2C0BACC%2CuBAMC%3BIACC%2CaAAA%3B%3BEARH%2C0BAWC%3BIACC%2CcAAA%3B%3BEAZF%2C0BAcC%2CMACC%3BIACC%2CaAAA%3B%3BEAhBH%2C0BAmBC%2CaAAY%3BIACX%2CcAAA%3B%3B%3BAAKH%2CWACC%3BEACC%2CWAAA%3B%3BAAFF%2CWAIC%3BEACC%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CWAjBD%2CaAiBE%3BEACS%2CmBAAA%3B%3B%3BAAtBZ%2CWAIC%2CaAqBC%3BEACC%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3B%3BAA7BH%2CWAiCC%3BEACC%2CYAAA%3BEACA%2CSAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3B%3BAArCF%2CWAiCC%2CWAKC%3BEACC%2CeAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CqCAAA%3BEACA%2CiBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CWAZF%2CWAKC%2CEAOE%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAAED%2CWAhBF%2CWAKC%2CEAWE%3BEACA%2CcAAA%3B%3BAAOJ%3BEACC%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3BEACA%2C0CAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3B%3BAAED%3BEACC%2CUAAA%3B%3BAADD%2CYAEC%3BEACC%2CyBAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3B%3BAACA%2CYAJD%2CGAIE%2CMACA%3BEACC%2CcAAA%3B%3BAARJ%2CYAEC%2CGASC%3BEACC%2CWAAW%2CoBAAX%3BEACA%2CcAAA%3BEACA%2C6BAAA%3BEACA%2CgCAAA%3BEACA%2CyBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CYAlBF%2CGASC%2CEASE%3BEACA%2CcAAA%3B%3BAArBJ%2CYAEC%2CGAsBC%2CGAAE%3BEACD%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CMAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3BEACA%2C0CAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3B%3BAAjCH%2CYAEC%2CGAsBC%2CGAAE%2COAUD%3BEACC%2CWAAA%3BEACA%2CUAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CYArCH%2CGAsBC%2CGAAE%2COAUD%2CGAKE%2CUAAU%3BEACV%2CYAAA%3BEACA%2C2BAAA%3B%3BAAIH%2CYA3CD%2CGA2CE%3BEACA%2CWAAA%3B%3BAADD%2CYA3CD%2CGA2CE%2CeAEA%3BEACC%2CwBAAA%3BEACA%2CmBAAA%3B%3BAAJF%2CYA3CD%2CGA2CE%2CeAEA%2CWAGC%3BEACC%2C0BAAA%3BEACA%2C2BAAA%3BEACA%2C6BAAA%3B%3BAARH%2CYA3CD%2CGA2CE%2CeAEA%2CWAQC%3BEACC%2CyBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAAbH%2CYA3CD%2CGA2CE%2CeAEA%2CWAQC%2CiBAIC%3BEAYC%2CmBAAA%3BEACA%2CkBAAA%3B%3BAA3BJ%2CYA3CD%2CGA2CE%2CeAEA%2CWAQC%2CiBAIC%2CGACC%3BEACC%2CoBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CYA7DN%2CGA2CE%2CeAEA%2CWAQC%2CiBAIC%2CGACC%2CEAGE%3BEACA%2CcAAA%3BEACA%2CuBAAA%3B%3BAAED%2CYAjEN%2CGA2CE%2CeAEA%2CWAQC%2CiBAIC%2CGACC%2CEAOE%3BEACA%2CaAAA%3B%3BAAKF%2CYAvEL%2CGA2CE%2CeAEA%2CWAQC%2CiBAIC%2CGAcE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3B%3BAApCL%2CYA3CD%2CGA2CE%2CeAEA%2CWAQC%2CiBA6BC%2CIAAG%3BEACF%2CWAAA%3BEACA%2CyBAAA%3B%3BAAzCJ%2CYA3CD%2CGA2CE%2CeAEA%2CWAQC%2CiBA6BC%2CIAAG%2CMAGF%3BEACC%2CcAAA%3BEACA%2CoBAAA%3BEACA%2C0BAAA%3B%3BAA7CL%2CYA3CD%2CGA2CE%2CeAEA%2CWAQC%2CiBAsCC%2CGAAE%3BEACD%2C6BAAA%3B%3BAACA%2CYA7FL%2CGA2CE%2CeAEA%2CWAQC%2CiBAsCC%2CGAAE%2CUAEA%3BEACA%2C6BAAA%3B%3BAAOL%2CYArGD%2CGAqGE%2COACA%3BEACC%2CaAAA%3B%3BAAKA%2CYA5GH%2CGA0GE%2COACA%2CEACE%3BEACA%2CSAAS%2COAAT%3BEACA%2CqBAAA%3BEACA%2C6CAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAKA%2CYA1HJ%2CGA0GE%2COAcC%2CeACA%2CEACE%3BEACA%2CcAAA%3B%3BAAKA%2CYAhIL%2CGA0GE%2COAcC%2CeAMA%2CiBACC%2CEACE%3BEACA%2CaAAA%3B%3BAAnIP%2CYA0IC%2CGAAE%2CeACD%3BEACC%2CmBAAA%3BEACA%2CWAAA%3B%3BAAED%2CYALD%2CGAAE%2CeAKA%2CMACA%3BEACC%2CmBAAA%3B%3BAA6BJ%2CQAvB0B%3BEAGvB%2CYADD%2CGACE%2CeACA%2CWACC%3BIACC%2CaAAA%3BIACA%2CsBAAA%3BIACA%2CoBAAoB%2CeAApB%3BIACA%2C8BAAA%3BIACA%2C8BAAA%3B%3BEAPH%2CYADD%2CGACE%2CeACA%2CWACC%2CGAMC%2CGACC%3BIACC%2CkCAAA%3B%3B%3BAAqCR%2CQA3B0B%2CuBAAuB%3BEAG9C%2CYADD%2CGACE%2CeACA%3BIACC%2CuBAAA%3BIACA%2CoBAAA%3B%3BEAHF%2CYADD%2CGACE%2CeACA%2CWAGC%3BIACC%2CaAAA%3BIACA%2CsBAAA%3BIACA%2CoBAAoB%2CeAApB%3BIACA%2C8BAAA%3BIACA%2C8BAAA%3B%3BEATH%2CYADD%2CGACE%2CeACA%2CWAGC%2CGAMC%2CGACC%3BIACC%2CkCAAA%3B%3B%3B%3BAAsBR%2CwBAV2C%3BEAC1C%2CYACC%3BIACC%2CaAAA%3B%3BEAFF%2CYACC%2CWAEC%3BIACC%2CiBAAA%3B%3B%3BAAYJ%2CwBAP0C%2CuBAAwB%3BEACjE%2CYACC%3BIACC%2CWAAA%3B%3B%3BAAmDH%2CwBA%5C%2FC0C%3BEACzC%2COACC%3BIACC%2CaAAA%3B%3BEAGF%2CYACC%3BIACC%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CMAAA%3BIACA%2CQAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2C0CAAA%3BIACA%2CaAAA%3B%3BEAEC%2CYAVF%2CWASC%2CiBACE%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CWAAA%3B%3BEAdJ%2CYAkBC%2CGAAE%3BIACD%2CgBAAA%3B%3BEAnBF%2CYAkBC%2CGAAE%2COAED%3BIACC%2CaAAA%3B%3BEArBH%2CYAkBC%2CGAAE%2COAKD%3BIACC%2CcAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CSAAA%3BIACA%2CuBAAA%3BIACA%2CsBAAA%3B%3BEAED%2CYAfD%2CGAAE%2COAeA%2CMACA%3BIACC%2CcAAA%3B%3B%3BAAML%3BEACC%2C2BAAA%3B%3BAADD%2CYAEC%2CWACC%3BEACC%2CiBAAA%3BEACA%2CoBAAA%3BEACA%2CaAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAATH%2CYAEC%2CWACC%2CiBAOC%2CGACC%2CGAAE%3BEACD%2CmBAAA%3BEACA%2CWAAA%3B%3BAAbL%2CYAEC%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAGD%3BEACC%2CSAAA%3BEACA%2CqBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAACA%2CYAjBL%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAGD%2CEAKE%3BEACA%2CcAAA%3B%3BAAED%2CYApBL%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAGD%2CEAQE%3BEACA%2CaAAA%3B%3BAAGF%2CYAxBJ%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAeA%2CMACA%3BEACC%2CcAAA%3B%3BAA5BP%2CYAEC%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAoBD%3BEACC%2CWAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAAnCN%2CYAEC%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAoBD%2CGAKC%2CGAAE%3BEACD%2CkBAAA%3B%3BAArCP%2CYAEC%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAoBD%2CGAKC%2CGAAE%2COAED%3BEACC%2CeAAA%3BEACA%2CcAAA%3BEACA%2CmBAAA%3B%3BAACA%2CYAxCP%2CWACC%2CiBAOC%2CGACC%2CGAAE%2COAoBD%2CGAKC%2CGAAE%2COAED%2CEAIE%3BEACA%2CcAAA%3B%3BAA3CT%2CYAEC%2CWACC%2CiBA%2BCC%3BEACC%2CWAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CaAAA%3B%3BAAvDJ%2CYAEC%2CWACC%2CiBA%2BCC%2CgBAMC%3BEACC%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CYA3DJ%2CWACC%2CiBA%2BCC%2CgBAMC%2CEAKE%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAED%2CYA%5C%2FDJ%2CWACC%2CiBA%2BCC%2CgBAMC%2CEASE%3BEACA%2CaAAA%3B%3BAAlEN%2CYAEC%2CWAqEC%3BEAEC%2CgBAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CSAAA%3BEACA%2CQAAA%3BEACA%2CqBAAA%3B%3BAAhFH%2CYAEC%2CWAqEC%2CkBAUC%3BEACC%2CqBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3B%3BAApFJ%2CYAEC%2CWAqEC%2CkBAUC%2CEAIC%3BEACC%2CWAAA%3BEACA%2C0CAAA%3B%3BAAED%2CYAvFH%2CWAqEC%2CkBAUC%2CEAQE%3BEACA%2CaAAA%3B%3BAA1FL%2CYAEC%2CWAqEC%2CkBAsBC%3BEACC%2CWAAA%3BEACA%2C0CAAA%3B%3BAA0CJ%2CwBArC2C%3BEAC1C%2CYACC%3BIACC%2CWAAA%3B%3BEAFF%2CYACC%2CWAEC%2CkBACC%3BIACC%2CYAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAPJ%2CYACC%2CWAEC%2CkBAMC%2CEACC%3BIACC%2CYAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAbL%2CYACC%2CWAgBC%2CiBACC%2CGACC%2CGAAE%2COACD%3BIACC%2CeAAA%3B%3BEArBN%2CYACC%2CWAgBC%2CiBACC%2CGACC%2CGAAE%2COAID%2CGACC%2CGAAE%2COACD%3BIACC%2CeAAA%3B%3B%3BAAqBT%2CwBAX0C%2CuBAAuB%3BEAChE%3BIACC%2CYAAA%3B%3BEAED%2CYACC%3BIACC%2CWAAA%3BIACA%2CWAAA%3B%3B%3BAAmNH%2CwBA%5C%2FM0C%3BEACzC%2C0BACC%2CuBACC%3BIACC%2CcAAA%3B%3BEAIH%2CYACC%3BIACC%2CWAAA%3B%3BEAFF%2CYAIC%3BIACC%2CWAAA%3B%3BEALF%2CYAOC%2CGAAE%3BIACD%2C6BAAA%3BIACA%2CkBAAA%3BIACA%2CsBAAA%3BIACA%2CsBAAA%3BIACA%2C%2BBAAA%3B%3BEAZF%2CYAOC%2CGAAE%2COAMD%2CGAAE%2COACD%3BIACC%2CqCAAA%3BIACA%2CgBAAA%3B%3BEAhBJ%2CYAOC%2CGAAE%2COAMD%2CGAAE%2COAKD%2CGAAE%2COACD%2CGAAE%2COACD%3BIACC%2CqCAAA%3BIACA%2CgBAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3B%3BEAxBN%2CYAOC%2CGAAE%2COAMD%2CGAAE%2COAKD%2CGAAE%2COASD%2CGAAE%2COAAO%3BIACR%2CwBAAA%3B%3BEA5BL%2CYAOC%2CGAAE%2COAyBD%2CGAAE%2COAAO%3BIACR%2CkBAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CYAAA%3B%3BEApCH%2CYAOC%2CGAAE%2COAyBD%2CGAAE%2COAAO%2CSAKR%3BIACC%2CmBAAA%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3B%3BEACA%2CYAnCH%2CGAAE%2COAyBD%2CGAAE%2COAAO%2CSAKR%2CEAKE%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEAML%2COACC%3BIACC%2CaAAA%3B%3BEAIF%2CKACC%2CYACC%3BIACC%2CaAAA%3B%3BEAHH%2CKACC%2CYACC%2CQAEE%3BIACA%2CmBAAA%3BIACA%2CWAAW%2CoBAAX%3BIACA%2CcAAA%3BIACA%2CgCAAA%3BIACA%2CiBAAA%3BIACA%2CoBAAA%3BIACA%2CoBAAA%3B%3BEACA%2CKAXH%2CYACC%2CQAEE%2CaAQC%3BIACA%2CuBAAA%3BIACA%2CcAAA%3B%3BEAGF%2CKAhBF%2CYACC%2CQAeE%2CWACA%3BIACC%2CyBAAA%3BIACA%2C6BAAA%3B%3BEAHF%2CKAhBF%2CYACC%2CQAeE%2CWACA%2CEAGC%3BIACC%2CoBAAA%3B%3BEAIH%2CKAzBF%2CYACC%2CQAwBE%2CYACA%3BIACC%2C4BAAA%3B%3BEAFF%2CKAzBF%2CYACC%2CQAwBE%2CYACA%2CSAEC%3BIACC%2CaAAA%3B%3BEAOF%2CKApCH%2CYAkCC%2CQACC%2CWACE%3BIACA%2CQAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CSAAS%2COAAT%3BIACA%2C6CAAA%3B%3BEAGA%2CKA5CJ%2CYAkCC%2CQACC%2CWAQE%2CgBACC%3BIACA%2CSAAS%2COAAT%3B%3BEA9CN%2CKACC%2CYAkDC%3BIACC%2CgBAAA%3BIACA%2C0CAAA%3BIACA%2C0BAAA%3BIACA%2C%2BBAAA%3B%3BEAvDH%2CKACC%2CYAkDC%2CSAKC%3BIACC%2C0BAAA%3BIACA%2CWAAW%2CoBAAX%3BIACA%2CcAAA%3B%3BEA3DJ%2CKACC%2CYAkDC%2CSAWC%2CGAAE%3BIACD%2CkBAAA%3BIACA%2COAAA%3BIACA%2CQAAA%3BIACA%2CSAAA%3BIACA%2CYAAA%3B%3BEAnEJ%2CKACC%2CYAkDC%2CSAWC%2CGAAE%2CaAMD%3BIACC%2CmBAAA%3BIACA%2CcAAA%3BIACA%2CkBAAA%3B%3BEACA%2CKAvEJ%2CYAkDC%2CSAWC%2CGAAE%2CaAMD%2CEAIE%3BIACA%2CmBAAA%3BIACA%2CWAAA%3B%3BEA1EN%2CKACC%2CYAkDC%2CSA4BC%2CGAAE%2COACD%3BIACC%2C6BAAA%3BIACA%2CkBAAA%3BIACA%2C2BAAA%3B%3BEAgBA%2CKAlGJ%2CYAkDC%2CSA4BC%2CGAAE%2COACD%2CEAmBE%3BIACA%2CcAAA%3B%3BEAUF%2CKA7GH%2CYAkDC%2CSA4BC%2CGAAE%2COA%2BBA%2CIAAI%2CSACJ%3BIACC%2CkBAAA%3B%3BEAhHN%2CKACC%2CYAkDC%2CSA4BC%2CGAAE%2COAoCD%3BIACC%2CaAAA%3BIACA%2CgBAAA%3B%3BEArHL%2CKACC%2CYAkDC%2CSA4BC%2CGAAE%2COAoCD%2CSAGC%2CGACC%3BIACC%2C2BAAA%3BIACA%2CqCAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3B%3BEACA%2CKA3HN%2CYAkDC%2CSA4BC%2CGAAE%2COAoCD%2CSAGC%2CGACC%2CEAKE%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEAIH%2CKAjIJ%2CYAkDC%2CSA4BC%2CGAAE%2COAoCD%2CSAeE%3BIACA%2C4BAAA%3B%3B%3B%3BAAYP%3BEACC%2CYAAA%3BEACA%2C2BAAA%3B%3BAAFD%2CiBAGC%3BEACC%2CaAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEACA%2CaAAA%3B%3BAAPF%2CiBAGC%2CgBAKC%2CUAAS%3BEACR%2CUAAA%3BEACA%2CmBAAA%3BEACA%2C%2BBAAA%3BEACA%2C8BAAA%3BEACA%2C0BAAA%3BEACA%2C2BAAA%3B%3BAAED%2CiBAbD%2CgBAaE%3BAAAS%2CiBAbX%2CgBAaY%3BEACV%2CaAAA%3B%3BAAjBH%2CiBAoBC%2CQAAO%3BEACN%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CoBAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CiBAhBD%2CQAAO%2CSAgBL%3BEACA%2CwCAAA%3B%3BAAED%2CiBAnBD%2CQAAO%2CSAmBL%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2C6CAAhB%3BEACA%2C0BAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3B%3BAA9CH%2CiBAoBC%2CQAAO%2CSA4BN%3BEACC%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CeAAA%3B%3BAAGA%2CiBAtCF%2CQAAO%2CSAqCL%2COACC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CiBAAA%3B%3BAA5DJ%2CiBAoBC%2CQAAO%2CSA2CN%2CSAAQ%3BEACP%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CiBAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CUAAA%3BEACA%2CYAAA%3B%3BAAID%2CiBADD%2CQAAO%2CMACL%3BEACA%2C4BAAA%3BEACA%2CcAAA%3B%3BAAIH%3BEACC%2CYAAA%3BEACA%2CgBAAA%3B%3BAAFD%2CWAGC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CoBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CWAfD%2CYAeE%3BEACA%2CwCAAA%3B%3BAAED%2CWAlBD%2CYAkBE%3BEACA%2CcAAA%3B%3BAADD%2CWAlBD%2CYAkBE%2CgBAEA%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2C8BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3B%3BAA7BJ%2CWAGC%2CYA6BC%3BEACC%2CqBAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CWAlCF%2CYA6BC%2CIAKE%3BEACA%2CcAAA%3B%3BAAED%2CWArCF%2CYA6BC%2CIAQE%3BEACA%2CcAAA%3BEACA%2CeAAA%3B%3BAA1CJ%2CWAGC%2CYA0CC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAAKH%3BEACC%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CqBAAA%3B%3BAAHD%2CcAIC%3BEACC%2CiBAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3B%3BAAPF%2CcASC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CeAAA%3B%3BAAZF%2CcASC%2CWAIC%3BEACC%2CqBAAA%3BEACA%2CaAAA%3BEACA%2CiBAAA%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAACA%2CcAVF%2CWAIC%2CEAME%3BEACA%2CcAAA%3B%3BAAMJ%3BEACC%2C%2BBAAA%3B%3BAAGD%2CSAAU%3BEACT%2CqBAAA%3B%3BAAID%3BEACC%2CgBAAA%3BEACA%2CsBAAA%3BEACA%2CoBAAA%3BEACA%2CWAAA%3B%3BAAJD%2CKAKC%3BEACC%2CsBAAA%3B%3BAAGF%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAPD%2CaAQC%3BEACC%2C4BAAA%3B%3BAATF%2CaAWC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2C8BAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CSAAA%3BEACA%2CkBAAA%3BEACA%2CwCAAA%3B%3BAACA%2CaATD%2CMASE%3BEACA%2CwCAAA%3B%3BAArBH%2CaAwBC%2CQAAO%3BEACN%2COAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEACA%2C4BAAA%3BEACA%2CqBAAA%3B%3BAACA%2CaAVD%2CQAAO%2COAUL%3BEACA%2C0BAAA%3BEACA%2C4BAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3B%3BAAMH%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CgBAAC%2CUACA%3BEACC%2CaAAA%3B%3BAAFF%2CgBAAC%2CUACA%2CcAEC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CeAAA%3B%3BAAbJ%2CgBAiBC%3BEACC%2CcAAA%3B%3BAAlBF%2CgBAiBC%2CUAEC%3BEACC%2CWAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3B%3BAAxBH%2CgBAiBC%2CUAEC%2CcAMC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CeAAA%3B%3BAACA%2CgBAfH%2CUAEC%2CcAMC%2CIAOE%3BEACA%2CwBAAA%3B%3BAAjCL%2CgBAsCC%3BEACC%2CoBAAA%3B%3BAAvCF%2CgBAsCC%2CSAEC%3BEACC%2CsBAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CoBAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3B%3BAApDH%2CgBAsCC%2CSAEC%2CUAaC%3BEACC%2CaAAA%3B%3BAAED%2CgBAlBF%2CSAEC%2CUAgBE%3BEACA%2CcAAA%3BEACA%2CuBAAA%3B%3BAAED%2CgBAtBF%2CSAEC%2CUAoBE%3BEACA%2CUAAA%3B%3BAAED%2CgBAzBF%2CSAEC%2CUAuBE%3BEACA%2CSAAS%2COAAT%3B%3BAAhEJ%2CgBAsCC%2CSA6BC%3BEACC%2CsBAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CoBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3B%3BAA%5C%2FEH%2CgBAsCC%2CSA6BC%2CUAaC%3BEACC%2CaAAA%3B%3BAAED%2CgBA7CF%2CSA6BC%2CUAgBE%3BEACA%2CcAAA%3BEACA%2CuBAAA%3B%3BAAED%2CgBAjDF%2CSA6BC%2CUAoBE%3BEACA%2CUAAA%3B%3BAAED%2CgBApDF%2CSA6BC%2CUAuBE%3BEACA%2CSAAS%2COAAT%3B%3BAAIH%2CgBAAC%2CMACA%2CSACC%3BEACK%2COAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CcAAA%3B%3BAACA%2CgBAPN%2CMACA%2CSACC%2CUAKM%3BEACC%2CmBAAA%3BEACA%2CsBAAA%3B%3BAATT%2CgBAAC%2CMACA%2CSAWC%3BEACC%2CQAAA%3BEACI%2CYAAA%3BEACA%2CWAAA%3BEACA%2CcAAA%3B%3BAACA%2CgBAjBN%2CMACA%2CSAWC%2CUAKM%3BEACC%2CmBAAA%3BEACA%2CsBAAA%3B%3BAASN%2CgBAHF%2CUACA%2CSACE%2CSACG%3BEACF%2CaAAA%3B%3BAAKJ%2CgBAAE%3BEACD%2CSAAA%3B%3BAAIF%2CgBAAmB%2CSAAS%3BEAAG%2CSAAA%3B%3BAAa%5C%2FB%2CQAV0B%3BEAGvB%2CgBADA%2CUACC%3BIACA%2CaAAA%3B%3B%3BAA4BJ%2CQAtB0B%3BEAExB%2CgBAAC%3BIACA%2CaAAA%3B%3BEACA%2CgBAFA%2CUAEC%3BIACA%2CcAAA%3B%3BEADD%2CgBAFA%2CUAEC%2COAEA%3BIACC%2CYAAA%3BIACA%2CYAAA%3B%3BEAJF%2CgBAFA%2CUAEC%2COAEA%2CcAGC%3BIACC%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3B%3BAAuCN%2CwBA9B2C%3BEAC1C%2CgBACC%2CUACC%3BIACC%2CYAAA%3B%3BEAHH%2CgBACC%2CUACC%2CcAEC%3BIACC%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CeAAA%3B%3BEAIH%2CgBAAC%2CUACA%3BIACC%2CYAAA%3BIACA%2CYAAA%3B%3BEAHF%2CgBAAC%2CUACA%2CcAGC%3BIACC%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CeAAA%3B%3B%3BAAiBL%2CwBAV2C%3BEAC1C%2CgBACC%2CUACC%3BIACC%2CeAAA%3B%3B%3BAA2BJ%2CwBArB0C%3BEACzC%2CgBACC%2CUACC%3BIACC%2CYAAA%3B%3BEAEC%2CgBAJH%2CUACC%2CcAEC%2CIACE%3BIACA%2CwBAAA%3B%3BEAED%2CgBAPH%2CUACC%2CcAEC%2CIAIE%3BIACA%2CyBAAA%3BIACA%2CgBAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3B%3B%3BAAQN%3BEACC%2CoBAAA%3B%3BAADD%2CWAEC%3BEACC%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAED%2CWAAC%3BEACA%2CkBAAA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3B%3BAAJD%2CWAAC%2CYAKA%3BEACC%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3B%3BAAGF%2CWAAC%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACE%2CkBAAA%3B%3BAAEH%2CWAAC%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CWAJA%2CoBAIC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAPF%2CWAAC%2CoBASA%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3B%3BAAXF%2CWAAC%2CoBAaA%3BEACC%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CuCAAA%3B%3BAAKH%3BEACC%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CSAAA%3B%3BAAGD%2CeACC%3BEACC%2CUAAA%3B%3BAAFF%2CeACC%2CgBAEE%3BEACA%2C2BAAA%3BEACA%2CUAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3B%3BAAPH%2CeACC%2CgBAEE%2CKAKA%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CoBAAA%3B%3BAAlBJ%2CeACC%2CgBAEE%2CKAiBA%3BEACC%2CmBAAA%3BEACA%2C4BAAA%3BEACA%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3B%3BAAzBJ%2CeACC%2CgBAEE%2CKAwBA%3BEACC%2CaAAA%3BEACA%2CyBAAA%3BEACA%2CaAAA%3BEACA%2CaAAA%3B%3BAA%5C%2FBJ%2CeACC%2CgBAEE%2CKAwBA%2CaAKK%3BEACE%2CeAAA%3B%3BAAGP%2CeAnCF%2CgBAEE%2CKAiCC%2CYACA%3BEACC%2CcAAA%3B%3BAAOL%3BEACC%2CiBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CkBAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAANF%2CkBAQC%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3B%3BAAVF%2CkBAYC%3BEACC%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CuCAAA%3B%3BAAKF%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3B%3BAAED%3BEACC%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CoBAAA%3B%3BAACA%2CgBAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAPF%2CgBASC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAAGF%3BEACC%2CiBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3B%3BAAHD%2CYAIC%3BEAMC%2CcAAA%3BEACA%2CUAAA%3BEACA%2CaAAA%3BEACA%2CeAAA%3B%3BAARA%2CYADD%2CGACE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAARH%2CYAIC%2CGAUC%3BEACC%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CoCAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2C0CAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3B%3BAAxBH%2CYAIC%2CGAUC%2CGAWC%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAA5BJ%2CYAgCC%2CgBACC%3BEACC%2CqBAAA%3BEACA%2CqBAAA%3B%3BAAnCH%2CYAgCC%2CgBAKC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3B%3BAAxCH%2CYAgCC%2CgBAUC%2CKAAI%3BEACH%2CYAAA%3BEACA%2CeAAA%3B%3BAAkBH%2CwBAd0C%3BEAItC%2CYAFF%2CGACC%2CGACE%2CUAAU%3BIACV%2CeAAA%3B%3B%3B%3BAASL%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3B%3BAACA%2CkBAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAANF%2CkBASC%3BEACC%2CaAAA%3BEACA%2CiBAAA%3B%3BAAXF%2CkBAcC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2C0CAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAArBH%2CkBAcC%2CGACC%2CGAOC%3BEACC%2CkBAAA%3BEACA%2CoBAAA%3BEACA%2CaAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CuBAAA%3B%3BAA5BJ%2CkBAcC%2CGACC%2CGAOC%2CEAOC%3BEACC%2CYAAA%3BEACA%2CsBAAA%3B%3BAA%5C%2FBL%2CkBAcC%2CGACC%2CGAOC%2CEAWC%3BEACC%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CcAAA%3BEACA%2CSAAA%3BEACA%2CcAAA%3BEACA%2CoBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3B%3BAA3CL%2CkBAcC%2CGACC%2CGAOC%2CEAWC%2CwBAWC%3BEACC%2CeAAe%2C0CAAf%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3BAAhDN%2CkBAuDC%2CcACC%3BEACC%2CiBAAA%3B%3BAAzDH%2CkBAuDC%2CcAIC%3BEACC%2CoBAAA%3B%3BAA5DH%2CkBAuDC%2CcAIC%2CSAEC%3BEACC%2CiCAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CoBAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3B%3BAAzEJ%2CkBAuDC%2CcAIC%2CSAEC%2CUAaC%3BEACC%2CaAAA%3B%3BAAED%2CkBAtBH%2CcAIC%2CSAEC%2CUAgBE%3BEACA%2CcAAA%3BEACA%2CuBAAA%3B%3BAAED%2CkBA1BH%2CcAIC%2CSAEC%2CUAoBE%3BEACA%2CUAAA%3B%3BAAED%2CkBA7BH%2CcAIC%2CSAEC%2CUAuBE%3BEACA%2CSAAS%2COAAT%3B%3BAArFL%2CkBAuDC%2CcAIC%2CSA6BC%3BEACC%2CiCAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CoBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3B%3BAApGJ%2CkBAuDC%2CcAIC%2CSA6BC%2CUAaC%3BEACC%2CaAAA%3B%3BAAED%2CkBAjDH%2CcAIC%2CSA6BC%2CUAgBE%3BEACA%2CcAAA%3BEACA%2CuBAAA%3B%3BAAED%2CkBArDH%2CcAIC%2CSA6BC%2CUAoBE%3BEACA%2CUAAA%3B%3BAAED%2CkBAxDH%2CcAIC%2CSA6BC%2CUAuBE%3BEACA%2CSAAS%2COAAT%3B%3BAAqBL%2CQAb2B%3BEAC1B%2CkBACC%3BIACC%2CcAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAJF%2CkBACC%2COAIC%3BIACC%2CqBAAA%3B%3B%3BAAiBJ%2CQAX0B%2CuBAAwB%3BEACjD%2CkBACC%2COACC%3BIACC%2CoCAAA%3BIACA%2CmBAAA%3B%3B%3BAAiBJ%2CQAX0B%2CuBAAuB%3BEAChD%2CkBACC%2COACC%3BIACC%2CoCAAA%3BIACA%2CmBAAA%3B%3B%3BAAmBJ%2CQAb0B%3BEACzB%2CkBACC%2COACC%3BIACC%2C8BAAA%3BIACA%2CmBAAA%3B%3B%3BAA0IJ%2CQAlI0B%3BEACzB%2CkBACC%2CGACC%2CGACC%2CEACC%3BIACC%2CsBAAA%3B%3B%3B%3B%3B%3BAA4HN%2CcACC%3BEAMC%2CSAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3B%3BAAPA%2CcADD%2CGACE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAALH%2CcACC%2CGASC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CaAAA%3BEACA%2CkBAAA%3BEACA%2CsCAAA%3BEACA%2CYAAA%3B%3BAAxBH%2CcACC%2CGASC%2CGAeC%3BEAQC%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3B%3BAAnCJ%2CcACC%2CGASC%2CGAeC%2CEACC%3BEACC%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CMAAA%3BEACA%2CWAAW%2CkBAAX%3BEACA%2CeAAA%3B%3BAAKD%2CcAnCH%2CGASC%2CGAeC%2CEAWE%3BEACA%2CUAAA%3BEACA%2CoBAAA%3BEACA%2CSAAS%2CEAAT%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2C6CAAA%3B%3BAAKA%2CcAlDJ%2CGASC%2CGAuCE%2CMACA%2CEACE%3BEACA%2CUAAA%3B%3BAAHH%2CcAhDF%2CGASC%2CGAuCE%2CMAMA%2CwBACC%3BEACC%2CcAAA%3BEACA%2CoJAAA%3BEACA%2CiBAAA%3B%3BAA3DN%2CcACC%2CGASC%2CGAqDC%3BEACC%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAA1EJ%2CcACC%2CGASC%2CGAqDC%2CwBAYC%3BEACC%2CeAAe%2CsCAAf%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CyBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CcAnFJ%2CGASC%2CGAqDC%2CwBAYC%2CEASE%3BEACA%2CaAAA%3B%3BAAkBN%2CwBAX2C%3BEAIvC%2CcAFF%2CGACC%2CGACE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAoBL%2CwBAd0C%2CuBAAwB%3BEACjE%2CcACC%2CGACC%3BIACC%2CoCAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3B%3BEACA%2CcALF%2CGACC%2CGAIE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAoBL%2CwBAd0C%2CuBAAuB%3BEAChE%2CcACC%2CGACC%3BIACC%2CoCAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3B%3BEACA%2CcALF%2CGACC%2CGAIE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAoBL%2CwBAd0C%3BEACzC%2CcACC%2CGACC%3BIACC%2C8BAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3B%3BEACA%2CcALF%2CGACC%2CGAIE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAqBL%2CwBAf0C%3BEACzC%2CcACC%2CGACC%3BIACC%2CWAAA%3BIACA%2CeAAA%3B%3B%3B%3BAAUJ%2CcACC%2CQAAO%2CKACN%3BEACC%2CmBAAA%3BEACA%2CUAAA%3B%3BAAJH%2CcACC%2CQAAO%2CKACN%2CGAGC%3BEACC%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3B%3BAAXJ%2CcAeC%2CgBACC%3BEACC%2C0BAAA%3B%3BAAEC%2CcAJH%2CgBACC%2CgBAEC%2CGACE%3BEACA%2CwBAAA%3B%3BAAOL%3BEACC%2CWAAA%3B%3BAADD%2CWAEC%3BEACC%2CaAAA%3BEACA%2CmBAAA%3B%3BAAJF%2CWAMC%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CmBAAA%3B%3BAAdF%2CWAgBC%2CMACC%3BEACC%2C%2BBAAA%3B%3BAAlBH%2CWAqBC%2CMACC%3BEACC%2C%2BBAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CmBAAA%3B%3BAAzBH%2CWAqBC%2CMACC%2CGAIC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3B%3BAAEC%2CWATJ%2CMACC%2CGAIC%2CcAGC%2CGACE%3BEACA%2CSAAS%2CGAAT%3B%3BAA%5C%2FBN%2CWAqCC%2CMACC%3BEACC%2CaAAa%2CoBAAb%3B%3BAAvCH%2CWAqCC%2CMAIC%3BEACC%2CmBAAA%3B%3BAAKH%2CSACC%2CSACC%2CQAAO%3BEACN%2CiBAAA%3B%3BAAKH%3BEACI%2CYAAA%3BEACA%2CmBAAA%3B%3BAAEJ%2COAAO%3BEACN%2C4BAAA%3BEACA%2C%2BBAAA%3BEACA%2CaAAA%3B%3BAAHD%2COAAO%2CQAIN%2COAAM%3BEACL%2CWAAA%3BEACA%2CeAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3B%3BAATF%2COAAO%2CQAIN%2COAAM%2CWAML%2CMAAK%3BEACJ%2CgBAAA%3B%3BAAXH%2COAAO%2CQAIN%2COAAM%2CWASL%3BEACC%2C0BAAA%3BEACA%2CeAAA%3B%3BAAEC%2COAjBG%2CQAIN%2COAAM%2CWASL%2COAGC%2CSACE%3BEACA%2CaAAA%3B%3BAAlBL%2COAAO%2CQAIN%2COAAM%2CWASL%2COAQC%3BEACC%2CsBAAA%3B%3BAAtBJ%2COAAO%2CQAIN%2COAAM%2CWAqBL%3BEACC%2CWAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3BEACA%2C0BAAA%3BEACA%2CcAAA%3BEACA%2CSAAA%3B%3BAAhCH%2COAAO%2CQAIN%2COAAM%2CWA8BL%2CQAAO%3BEACN%2C0BAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2C0BAAA%3BEACA%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2CeAAA%3BEACA%2CaAAa%2CoBAAb%3B%3BAAhDH%2COAAO%2CQAmDN%3BEACC%2CWAAW%2CoBAAX%3BEACA%2CWAAA%3BEACA%2CUAAA%3BEACA%2C8BAAA%3BEACA%2CsBAAA%3B%3BAAxDF%2COAAO%2CQAmDN%2COAMC%3BAAzDF%2COAAO%2CQAmDN%2COAMK%3BEACH%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CoBAAA%3BEACA%2CWAAA%3BEACA%2CoBAAA%3B%3BAAED%2COAhEK%2CQAmDN%2COAaE%3BEACA%2CUAAA%3B%3BAAED%2COAnEK%2CQAmDN%2COAgBE%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2C2BAAA%3B%3BAAHD%2COAnEK%2CQAmDN%2COAgBE%2CMAIA%3BEACC%2CeAAA%3B%3BAAGF%2COA3EK%2CQAmDN%2COAwBE%2CMACA%3BEACC%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAANF%2COA3EK%2CQAmDN%2COAwBE%2CMAQA%3BEACC%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAAbF%2COA3EK%2CQAmDN%2COAwBE%2CMAeA%3BEACC%2CWAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3B%3BAApBF%2COA3EK%2CQAmDN%2COAwBE%2CMAsBA%3BEACC%2CgBAAA%3B%3BAAlGJ%2COAAO%2CQAmDN%2COAkDC%3BEACC%2CWAAA%3B%3BAACA%2COAvGI%2CQAmDN%2COAkDC%2CEAEE%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAAzGJ%2COAAO%2CQAmDN%2COAyDC%3BEACC%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3BAACA%2COAlHI%2CQAmDN%2COAyDC%2CGAME%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAA1HJ%2COAAO%2CQAmDN%2COA0EC%2CQACC%3BEACC%2CUAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAACA%2COAnIG%2CQAmDN%2COA0EC%2CQACC%2CGAKE%3BEACA%2CaAAA%3B%3BAApIL%2COAAO%2CQAmDN%2COA0EC%2CQACC%2CGAQC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CcAAA%3B%3BAAED%2COA3IG%2CQAmDN%2COA0EC%2CQACC%2CGAaE%2CMACA%3BEACC%2CgBAAgB%2CwDAAhB%3B%3BAAGF%2COAhJG%2CQAmDN%2COA0EC%2CQACC%2CGAkBE%2CIACA%3BEACC%2CgBAAgB%2CsDAAhB%3B%3BAAGF%2COArJG%2CQAmDN%2COA0EC%2CQACC%2CGAuBE%2CIACA%3BEACC%2CgBAAgB%2CkDAAhB%3B%3BAAGF%2COA1JG%2CQAmDN%2COA0EC%2CQACC%2CGA4BE%2CIACA%3BEACC%2CgBAAgB%2CuDAAhB%3B%3BAAGF%2COA%5C%2FJG%2CQAmDN%2COA0EC%2CQACC%2CGAiCE%2CKACA%3BEACC%2CgBAAgB%2CwDAAhB%3B%3BAAGF%2COApKG%2CQAmDN%2COA0EC%2CQACC%2CGAsCE%2CKACA%3BEACC%2CgBAAgB%2CsDAAhB%3B%3BAASN%2COAAQ%3BEACP%2CaAAA%3B%3BAAGD%3BEACC%2CqBAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAgB%2CoDAAhB%3BEACA%2CuDAAA%3BEACA%2CoDAAA%3BEACA%2CkDAAA%3BEACA%2C%2BCAAA%3BEACA%2CUAAA%3BEACA%2CYAAA%3B%3BAACA%2COAAC%3BEACA%2CUAAA%3B%3B%3BAAoCF%2CQA9B0B%3BEACzB%2C2BACC%2CQAAO%3BIACN%2CyBAAA%3B%3BEAFF%2C2BAIC%3BIACC%2CuBAAA%3BIACA%2CuBAAA%3BIACA%2C6BAAA%3BIACA%2CiBAAA%3B%3BEAGF%2CcACC%3BIACC%2C4BAAA%3B%3BEAIF%3BIACC%2CWAAA%3BIACA%2CWAAA%3B%3BEAED%2CsBACC%3BIACC%2CYAAA%3BIACA%2CyBAAA%3BIACA%2CWAAA%3B%3B%3BAAmCH%3BEA9BC%2C2BACC%2CQAAO%3BIACN%2CyBAAA%3B%3BEAFF%2C2BAIC%3BIACC%2CuBAAA%3BIACA%2CuBAAA%3BIACA%2C6BAAA%3BIACA%2CiBAAA%3B%3BEAGF%2CcACC%3BIACC%2C4BAAA%3B%3BEAGF%3BIACC%2CWAAA%3BIACA%2CWAAA%3B%3BEAGD%2CsBACC%3BIACC%2CYAAA%3BIACA%2CyBAAA%3BIACA%2CWAAA%3B%3B%3BAAKH%3BEACC%2CgBAAA%3BEACA%2CUAAA%3B%3BAAGD%3BEACC%2CiBAAA%3B%3BAACA%2CeAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAIF%3BEACC%2C0BAAA%3B%3BAAGD%2COAAO%2CKACN%3BEACC%2CaAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3B%3BAAJF%2COAAO%2CKACN%2CsBAIC%3BEACC%2CkBAAA%3B%3BAAKH%3BEACC%2CYAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3B%3BAAHD%2CeAIC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2CsCAAA%3B%3BAAlBF%2CeAIC%2CGAeC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3BEACA%2C2BAAA%3B%3BAAvBH%2CeAIC%2CGAeC%2CEAKC%3BEACC%2CgBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3B%3BAA9BJ%2CeAIC%2CGAeC%2CEAaC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CsBAAA%3B%3BAA5CJ%2CeAIC%2CGAeC%2CEAaC%2CwBAaC%3BEACC%2CeAAe%2CsCAAf%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CyBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3BAAGF%2CeApDF%2CGAeC%2CEAqCE%3BEACA%2CUAAA%3BEACA%2CoBAAA%3BEACA%2CSAAS%2CEAAT%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2C6CAAA%3B%3BAAGF%2CeAjED%2CGAiEE%2CMACA%2CwBACC%3BEACC%2CcAAA%3BEACA%2CoJAAA%3BEACA%2CiBAAA%3B%3BAAID%2CeA1EH%2CGAiEE%2CMAQA%2CEACE%3BEACA%2CUAAA%3B%3BAAyBL%2CwBAnB2C%3BEASvC%2CeACE%3BIACC%2CoCAAA%3B%3BEACC%2CeAFF%2CGAEG%2CUAAU%3BIACT%2CeAAA%3B%3B%3BAAiBV%2CwBAX0C%2CuBAAwB%3BEAC9D%2CeACE%3BIACE%2CoCAAA%3B%3BEACA%2CeAFF%2CGAEG%2CUAAU%3BIACT%2CeAAA%3B%3B%3BAAiBV%2CwBAX0C%3BEACtC%2CeACH%3BIACI%2C8BAAA%3B%3BEACA%2CeAFJ%2CGAEK%2CUAAU%3BIACd%2CeAAA%3B%3B%3BAAeF%2CwBAT0C%3BEACtC%2CeACH%3BIACI%2CWAAA%3BIACA%2CeAAA%3B%3B%3BAAKL%3BEAMC%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3B%3BAAPA%2CqBAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAJF%2CqBASC%3BEACC%2C6BAAA%3B%3BAAVF%2CqBAYC%3BEACC%2CSAAA%3B%3BAAcF%2CwBAX0C%3BEACzC%2CqBACC%3BIACC%2CeAAA%3B%3BEAFF%2CqBAIC%3BIACC%2CaAAA%3B%3B%3BAAwDH%2CwBAnD0C%3BEACzC%3BIAWC%2CiBAAA%3BIACE%2CkBAAA%3BIACA%2CgBAAA%3B%3BEAZA%2CqBAAC%3BIACC%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2COAAA%3BIACA%2CQAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3BIACA%2CYAAY%2CiGAAZ%3BIACA%2CYAAA%3B%3BEATL%2CqBAcC%3BIACC%2CmBAAA%3B%3BEAfF%2CqBAiBC%3BIACC%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEApBF%2CqBAuBC%3BIACC%2CcAAA%3B%3BEAIC%2CqBADkB%2CcACjB%3BIACC%2CaAAA%3B%3BEAFL%2CqBAAqB%2CcAIpB%3BIACC%2CYAAA%3B%3BEALF%2CqBAAqB%2CcAOpB%3BIACC%2CaAAA%3B%3BEAGF%2COAAO%2CKACH%2CsBACH%3BIACI%2CYAAA%3B%3BEACA%2COAJE%2CKACH%2CsBACH%2CEAEK%3BIACJ%2CaAAA%3B%3B%3BAAOH%2CcACC%3BEACC%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2C%2BBAAA%3B%3BAALF%2CcACC%2CcAKC%3BEACC%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAAXH%2CcACC%2CcAYC%3BEACC%2CgBAAA%3B%3BAAED%2CcAfD%2CcAeE%3BEACA%2CsDAAA%3BEACA%2CmDAAA%3BEACA%2C8CAAA%3B%3BAAnBH%2CcACC%2CcAoBC%2CWACC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3B%3BAAxBJ%2CcA4BC%3BEACC%2CoBAAA%3B%3BAA7BF%2CcA%2BBC%3BAA%5C%2FBD%2CcA%2BBqB%2CSAAQ%2CKAAM%3BEACjC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3B%3BAACA%2CcAJD%2CmBAIE%3BAAAD%2CcAJmB%2CSAAQ%2CKAAM%2CEAIhC%3BEACA%2CcAAA%3B%3BAASC%2CQAHH%2CUACE%2CSACC%2CIAAI%2CSACH%2CIAAI%3BEACJ%2CeAAA%3B%3BAAMD%2CQAVH%2CUAQC%2CQACE%2CSACC%2CIAAI%3BEACJ%2CeAAA%3B%3BAAQL%2C2BACC%2CSACC%3BEACC%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CUAAA%3B%3BAALH%2C2BACC%2CSACC%2CaAIC%3BEACC%2CWAAA%3BEACA%2CoBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAAOJ%3BEACC%2CmBAAA%3B%3BAADD%2CeAEC%3BEACC%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3B%3BAAVF%2CeAEC%2CUASC%3BEACC%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAAhBH%2CeAEC%2CUAgBC%2CIAAG%3BEACF%2CoBAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3B%3BAArBH%2CeAEC%2CUAqBC%2CIAAG%3BEACF%2CaAAA%3B%3BAAxBH%2CeAEC%2CUAwBC%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3B%3BAA5BH%2CeA%2BBC%3BEACC%2CsBAAA%3BEACA%2CgBAAA%3BEACA%2C0CAAA%3BEACA%2CgBAAA%3B%3BAAnCF%2CeA%2BBC%2CcAKC%3BEACC%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAvCH%2CeA%2BBC%2CcAUC%2CGACC%3BEACC%2CeAAA%3B%3BAA3CJ%2CeA%2BBC%2CcAUC%2CGACC%2CGAEC%3BEACC%2CWAAW%2CoBAAX%3BEACA%2CcAAA%3BEACA%2CeAAA%3B%3BAA%5C%2FCL%2CeA%2BBC%2CcAUC%2CGACC%2CGAEC%2CMAIC%3BEACC%2CcAAA%3B%3BAAjDN%2CeA%2BBC%2CcAUC%2CGACC%2CGAUC%3BEACC%2CeAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3B%3BAA1DL%2CeA%2BBC%2CcAUC%2CGACC%2CGAkBC%2CSAAQ%3BEACP%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3B%3BAAhEL%2CeA%2BBC%2CcAqCC%3BEACC%2CSAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CYAAA%3B%3BAAzEH%2CeA%2BBC%2CcAqCC%2CaAMC%3BEACC%2CSAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAA3FJ%2CeA%2BBC%2CcAqCC%2CaAMC%2CUAkBC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3B%3BAA9FL%2CeA%2BBC%2CcAqCC%2CaAMC%2CUAsBC%3BEACC%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CgBAAA%3B%3BAAED%2CeAvEH%2CcAqCC%2CaAMC%2CUA4BE%3BEACA%2CmBAAA%3B%3BAAvGL%2CeA%2BBC%2CcAqCC%2CaAuCC%3BEACC%2CSAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CkBAAA%3B%3BAAvHJ%2CeA%2BBC%2CcAqCC%2CaAuCC%2CaAaC%3BEACC%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CgBAAA%3B%3BAAED%2CeA%5C%2FFH%2CcAqCC%2CaAuCC%2CaAmBE%3BEACA%2CmBAAA%3B%3BAA%5C%2FHL%2CeA%2BBC%2CcAqGC%2CQAAO%3BEACN%2CqBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3B%3BAACA%2CeAjHF%2CcAqGC%2CQAAO%2CQAYL%3BEACA%2CmBAAA%3B%3BAAMJ%2CgBACC%2CWACC%2CGACC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CgBALH%2CWACC%2CGACC%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%3BAAjBL%2CgBACC%2CWACC%2CGACC%2CgBAgBC%2CMAAK%3BEACJ%2CkBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CUAAA%3BEACA%2CUAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3B%3BAA5BL%2CgBACC%2CWACC%2CGACC%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%3BAA1CL%2CgBACC%2CWACC%2CGACC%2CgBAyCC%2CoBAAmB%3BEAClB%2CgBAAA%3B%3BAA7CL%2CgBACC%2CWACC%2CGACC%2CgBA4CC%3BEACC%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CQAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CUAAA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAtDL%2CgBACC%2CWACC%2CGAwDI%3BEACE%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAA%5C%2FDR%2CgBACC%2CWACC%2CGAgEC%3BEACC%2CkBAAA%3B%3BAAnEJ%2CgBACC%2CWACC%2CGAgEC%2CaAEG%3BEACD%2CqBAAA%3B%3BAAQL%2CQACC%2COAAM%3BEACL%2CmBAAA%3B%3BAAFF%2CQACC%2COAAM%2CWAEL%3BEACC%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CaAAA%3B%3BAAZH%2CQACC%2COAAM%2CWAEL%2CaAUC%3BEACC%2CWAAW%2CoBAAX%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CWAAA%3B%3BAAjBJ%2CQACC%2COAAM%2CWAEL%2CaAgBC%2CIAAG%3BEACF%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CaAAA%3B%3BAAzBJ%2CQACC%2COAAM%2CWAEL%2CaAwBC%2CIAAG%3BEACF%2CoBAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3B%3BAA9BJ%2CQACC%2COAAM%2CWAgCL%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2C0CAAA%3BEACA%2CaAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3B%3BAAvCH%2CQACC%2COAAM%2CWAgCL%2CeAOC%3BEACC%2CkBAAA%3B%3BAAMJ%3BEAAuB%2CaAAA%3B%3BAA2BvB%2CwBAzB0C%3BEAExC%2CsBAAC%2C2BACA%3BIACC%2CgBAAA%3BIACA%2CQAAA%3BIACA%2CMAAA%3BIACA%2CiBAAA%3B%3BEAMF%2C2BAAC%2C2BACA%3BIACC%2CgBAAA%3BIACA%2CQAAA%3BIACA%2CMAAA%3BIACA%2CiBAAA%3B%3B%3BAAgCJ%2CwBAzB2C%2CwBAAuB%3BEACjE%2CgBACC%2CWACC%2CGACC%3BIACC%2CYAAA%3B%3BEAJJ%2CgBACC%2CWACC%2CGAIC%2CSAAQ%3BIACP%2CYAAA%3B%3BEAGA%2CgBATH%2CWACC%2CGAOC%2CgBACE%3BIACA%2CYAAA%3BIACA%2CiBAAA%3B%3BEAZL%2CgBACC%2CWACC%2CGAOC%2CgBAKC%3BIACC%2CYAAA%3BIACA%2CiBAAA%3B%3B%3BAAQN%2CYACC%3BEACC%2CcAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3B%3BAAIF%2CYACC%3BEACC%2CcAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3BEACA%2CqBAAA%3B%3BAACA%2CYAZD%2CEAYE%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAKH%3BEACC%2C4BAAA%3BEACA%2CuBAAA%3B%3BAAGD%3BEACC%2C2BAAA%3B%3BAAIA%2C2BAAC%2CsBACA%2CQAAO%3BEACN%2C4BAAA%3B%3BAAIH%2CaACE%3BEACA%2CsBAAA%3BEACA%2C8BAAA%3B%3BAAIF%2CsBACC%2CgBACC%2CcACC%2CaACC%3BEAAW%2CeAAA%3B%3BAAJf%2CsBACC%2CgBACC%2CcAIC%3BEACC%2C2BAAA%3B%3B%3BAA%2BBJ%2CQAvB0B%3BEAExB%2C2BAAC%2CqBACA%2CQAAO%3BIACN%2CyBAAA%3BIACA%2CmBAAA%3B%3BEAHF%2C2BAAC%2CqBAKA%3BIACC%2CuBAAA%3BIACA%2CuBAAA%3BIACA%2C6BAAA%3BIACA%2C2BAAA%3B%3BEAKH%3BIACC%2CsBAAA%3B%3BEAED%2CQAAQ%3BIACP%2CuBAAA%3B%3B%3BAA4BF%3BEAvBE%2C2BAAC%2CqBACA%2CQAAO%3BIACN%2CyBAAA%3BIACA%2CmBAAA%3B%3BEAHF%2C2BAAC%2CqBAKA%3BIACC%2CuBAAA%3BIACA%2CuBAAA%3BIACA%2C6BAAA%3BIACA%2C2BAAA%3B%3BEAIH%3BIACC%2CsBAAA%3B%3BEAED%2CQAAQ%3BIACP%2CuBAAA%3B%3B%3BAAMF%2CqBACC%2CgBACC%3BEACC%2CcAAA%3BEACA%2CmBAAA%3B%3BAAJH%2CqBACC%2CgBACC%2CoBAGC%3BEACC%2CmBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CaAAA%3B%3BAATJ%2CqBACC%2CgBACC%2CoBAGC%2CUAKC%3BEACC%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3B%3BAAfL%2CqBACC%2CgBACC%2CoBAgBC%3BEACC%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2C0CAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3B%3BAAvBJ%2CqBACC%2CgBACC%2CoBAgBC%2CeAMC%3BEACC%2CeAAA%3B%3BAAzBL%2CqBACC%2CgBACC%2CoBAgBC%2CeAMC%2CWAEC%3BEACC%2CcAAA%3B%3BAA3BN%2CqBACC%2CgBACC%2CoBAgBC%2CeAYC%3BEACC%2CeAAA%3B%3BAA%5C%2FBL%2CqBACC%2CgBACC%2CoBAgBC%2CeAeC%3BEACC%2CeAAA%3BEACA%2CeAAA%3B%3BAAML%2CcAAc%3BEACb%2CyBAAA%3B%3BAAGD%3BEACC%2CyBAAA%3BEACA%2CsBAAA%3B%3BAAGD%3BEACC%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3B%3BAAED%3BEACC%2CaAAA%3B%3BAAED%3BEACC%2CeAAA%3B%3BAADD%2CmBAEC%2C2BACC%3BEACC%2CyBAAA%3B%3BAAIH%3BEACC%2CkBAAA%3B%3BAADD%2CsBAEC%3BEACC%2CqBAAA%3B%3BAAIF%3BEACC%2CsBAAA%3BEACA%2CyBAAA%3BEACA%2CmBAAA%3BEACA%2CuBAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3B%3BAAGD%2C%2BBACC%3BAADD%2C%2BBAC8B%3BEAC5B%2CUAAA%3B%3BAAKF%3BEACC%2CWAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3B%3BAAJD%2CcAKC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAARF%2CcAKC%2CGAIC%3BEACC%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CMAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAdH%2CcAKC%2CGAWC%2CIAAG%3BEACF%2CUAAA%3B%3BAAjBH%2CcAKC%2CGAcC%3BEACC%2CeAAA%3B%3BAApBH%2CcAKC%2CGAiBC%3BEACC%2CeAAA%3B%3BAAGA%2CcArBF%2CGAoBC%2CIAAG%2CUACD%3BEACA%2CgBAAgB%2CkDAAhB%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2C0BAAA%3B%3BAAID%2CcA%5C%2FBF%2CGA8BC%2CIAAG%2CSACD%3BEACA%2CgBAAgB%2C8CAAhB%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2C0BAAA%3B%3BAAKA%2CcA1CH%2CGAwCE%2CWACA%2CIAAG%2CSACD%3BEACA%2CgBAAgB%2CiDAAhB%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2C0BAAA%3B%3BAAOL%2CkBACC%2CSAAQ%2CUAAU%3BEACjB%2CaAAA%3B%3BAAFF%2CkBACC%2CSAAQ%2CUAAU%2CSAEjB%2CmBACI%3BEACE%2CyBAAA%3B%3BAALR%2CkBACC%2CSAAQ%2CUAAU%2CSAEjB%2CmBAIC%3BAAPH%2CkBACC%2CSAAQ%2CUAAU%2CSAEjB%2CmBAIK%3BEACH%2CgCAAA%3BEACA%2CmBAAA%3BEACA%2CqBAAA%3BEACA%2CWAAA%3B%3BAAXJ%2CkBACC%2CSAAQ%2CUAAU%2CSAEjB%2CmBAUC%3BEACC%2CmBAAA%3B%3BAAdJ%2CkBACC%2CSAAQ%2CUAAU%2CSAEjB%2CmBAUC%2CGAEC%3BEACC%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CkBAnBJ%2CSAAQ%2CUAAU%2CSAEjB%2CmBAUC%2CGAEC%2CGAKE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CQAAA%3B%3BAA5BN%2CkBAkCC%3BEACC%2CaAAA%3B%3BAAKF%2CQAAQ%2CKAAK%3BEACZ%2CmBAAA%3B%3BAADD%2CQAAQ%2CKAAK%2CMAEX%2CQAAK%3BEACL%2C0BAAA%3B%3BAAHF%2CQAAQ%2CKAAK%2CMAEX%2CQAAK%2CMAEJ%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CcAAA%3BEACA%2CuBAAA%3BEACA%2C4BAAA%3BEACA%2C0BAAA%3BEACA%2CyBAAA%3BEACA%2CkCAAA%3BEACA%2CoBAAA%3B%3BAACA%2CQAbK%2CKAAK%2CMAEX%2CQAAK%2CMAEJ%2CUASC%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAGF%2CQAlBM%2CKAAK%2CMAEX%2CQAAK%2CMAgBJ%2COACC%3BEACA%2CoBAAA%3BEACA%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CgBAAgB%2CoBAAhB%3BEACA%2CgBAAA%3B%3BAACA%2CQA1BI%2CKAAK%2CMAEX%2CQAAK%2CMAgBJ%2COACC%2CUAOC%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAA5BL%2CQAAQ%2CKAAK%2CMAiCX%2CQAAK%3BEACL%2C0CAAA%3BEACA%2C6BAAA%3BEACA%2CwBAAA%3BEACA%2C2BAAA%3BEACA%2C2BAAA%3B%3BAAIF%3BEACC%2CsBAAA%3BEACA%2CuBAAA%3B%3BAAED%2CiBACC%3BEACC%2CmBAAA%3BEACA%2CqBAAA%3B%3BAAIF%3BEACC%2CwBAAA%3B%3BAAGD%2CQAAQ%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMACd%2CmBAIO%3BEACE%2CaAAA%3B%3BAAPZ%2CQAAQ%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMACd%2CmBAOC%2COACC%3BEACC%2CcAAA%3B%3BAAXN%2CQAAQ%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMACd%2CmBAYC%2CGACC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CQAlBE%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMACd%2CmBAYC%2CGACC%2CGAGE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAA1BP%2CQAAQ%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMACd%2CmBA4BK%3BEACE%2CmBAAA%3BEACA%2CiBAAA%3B%3BAAhCV%2CQAAQ%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMAkCd%2CGACC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CQAvCG%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMAkCd%2CGACC%2CGAGE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAA%5C%2FCN%2CQAAQ%2CKAAK%2CSACT%2CSAAQ%2CKAAK%2CMAkDX%3BEACE%2CmBAAA%3BEACA%2CiBAAA%3B%3B%3BAAQR%2CoBACC%2CWACC%2CeACC%3BEACK%2CeAAA%3B%3BAAJR%2CoBACC%2CWACC%2CeACC%2CGAEC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAAPL%2CoBACC%2CWACC%2CeAQC%3BEACC%2CeAAA%3BEACI%2CmBAAA%3B%3BAAZR%2CoBACC%2CWACC%2CeAQC%2CGAGC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAOL%2CoBACC%3BEACC%2CgBAAA%3B%3BAAFF%2CoBAIC%3BEACC%2CWAAA%3BEACA%2CUAAA%3BEACA%2CyBAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3B%3BAATF%2CoBAIC%2CeAMC%3BEAEC%2CmBAAA%3B%3BAAZH%2CoBAeC%3BEACC%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CsBAAA%3B%3BAAtBF%2CoBAeC%2CgBAQC%3BEACC%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2C8BAAA%3B%3BAA5BH%2CoBAeC%2CgBAeC%3BEACC%2CmBAAA%3B%3BAA%5C%2FBH%2CoBAkCC%3BEACC%2CgBAAA%3B%3BAAnCF%2CoBAqCC%3BEACC%2CUAAA%3BEACA%2CWAAA%3BEACA%2CiBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3B%3BAA3CF%2CoBA6CC%3BEACC%2CYAAA%3BEACA%2CUAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAjDF%2CoBAmDC%3BEACC%2CcAAA%3BEACA%2CaAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3B%3BAAzDF%2CoBA2DC%3BEACC%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3B%3BAAjEF%2CoBAmEC%3BEACC%2CiBAAA%3B%3BAApEF%2CoBAsEC%3BEACC%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3BEACA%2C4BAAA%3BEACA%2CmBAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3B%3BAA%5C%2FEF%2CoBAsEC%2CaAUC%3BEACC%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3BEACA%2CwBAAA%3BEACA%2C8BAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3B%3BAAxFH%2CoBAsEC%2CaAoBC%3BEACC%2CyBAAA%3BEACA%2C6BAAA%3BEACA%2CoBAAA%3B%3BAA7FH%2CoBAsEC%2CaAyBC%3BEACC%2CcAAA%3BEACA%2CcAAA%3B%3BAAjGH%2CoBAsEC%2CaA6BC%3BEACC%2CgBAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3B%3BAAtGH%2CoBAsEC%2CaAkCC%3BEACC%2CgBAAA%3B%3BAAED%2CoBArCD%2CaAqCE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAA9GH%2CoBAsEC%2CaA0CC%3BEACC%2CaAAA%3B%3BAAjHH%2CoBAsEC%2CaA6CC%3BEACC%2CgBAAA%3B%3BAApHH%2CoBAsEC%2CaA6CC%2CgBAEC%3BEACC%2CaAAA%3B%3BAAtHJ%2CoBAsEC%2CaA6CC%2CgBAKC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3B%3BAA7HJ%2CoBAsEC%2CaA0DC%2COAAM%3BAAhIR%2CoBAsEC%2CaA0DoB%3BAAhIrB%2CoBAsEC%2CaA0D8B%3BEAC5B%2CaAAA%3B%3BAAjIH%2CoBAsEC%2CaA8DC%2CcACC%3BEACC%2CgBAAA%3B%3BAAtIJ%2CoBAsEC%2CaA8DC%2CcACC%2CUAEC%3BEACC%2CmBAAA%3B%3BAAxIL%2CoBA6IC%3BEACC%2CUAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3B%3BAAhJF%2CoBA6IC%2CYAIC%3BEACC%2CWAAA%3B%3BAAED%2CoBAPD%2CYAOE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAvJH%2CoBA0JC%3BEACI%2CaAAA%3B%3BAAKD%2CmBAAC%3BEACJ%2CyBAAA%3B%3BAADG%2CmBAAC%2CQAEJ%3BEACI%2CeAAA%3BEACA%2CmBAAA%3B%3B%3BAAQL%2CsBACC%2CEAAC%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CSAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3B%3BAACA%2CsBAZD%2CEAAC%2CaAYC%3BEACA%2CmBAAA%3B%3BAAKH%3BEACC%2CqBAAA%3B%3BAADD%2CeAEC%3BEACI%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CoBAAA%3BEACA%2C0BAAA%3BEACA%2CsBAAA%3BEACA%2CqBAAA%3B%3BAACA%2CeAPJ%2CkBAOK%3BEACJ%2C2BAAA%3B%3BAAIF%2CWACC%3BEACC%2CyBAAA%3B%3BAAIF%2CeACC%3BEACC%2CaAAA%3B%3BAAFF%2CeAIC%3BEACC%2C6BAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CeAJD%2CYAIE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAAhBH%2CeAIC%2CYAcC%3BEACC%2C8BAAA%3B%3BAAnBH%2CeAsBC%3BEACC%2CyBAAA%3BEACA%2CkCAAA%3B%3BAACA%2CeAHD%2CEAGE%3BEACA%2C0BAAA%3B%3BAAGF%2CeAAC%3BEACA%2CkCAAA%3B%3BAAIF%2CWAAW%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%3BEACZ%2CkCAAA%3B%3BAAFF%2CWAAW%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%2CMAEX%2CQAAK%3BEACL%2C4BAAA%3BEACA%2C4BAAA%3BEACA%2CgBAAA%3BEACA%2C0BAAA%3B%3BAAPH%2CWAAW%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%2CMAQX%2CQAAK%2CMACJ%3BEACA%2C0BAAA%3BEACA%2C8BAAA%3BEACA%2CWAAA%3BEACA%2C2BAAA%3BEACA%2CoBAAA%3BEACA%2CkCAAA%3B%3BAAhBJ%2CWAAW%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%2CMAQX%2CQAAK%2CMACJ%2CUAOA%3BEACC%2CsBAAA%3BEACA%2C4BAAA%3B%3BAAGF%2CWAtBQ%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%2CMAQX%2CQAAK%2CMAaJ%2COACC%3BEACA%2CWAAA%3B%3BAAOL%2CaACC%2CYACC%2CMAAK%2CKAAK%2CMACT%2CMAAK%3BEACJ%2C0BAAA%3B%3BAAMJ%2CQAAQ%2CKAAK%3BEACZ%2C6BAAA%3B%3BAAED%2CQAAQ%2CKAAK%3BEACZ%2C2BAAA%3B%3BAAGD%3BEACI%2C0BAAA%3BEACA%2C8BAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3B%3BAAEJ%2CEAAE%2CgBACD%2CGAAE%3BEACD%2CkBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CEAJA%2CgBACD%2CGAAE%2CcAGA%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAAZH%2CEAAE%2CgBACD%2CGAAE%2CcAaD%2CEAAC%3BEACA%2CyBAAA%3B%3BAAfH%2CEAAE%2CgBACD%2CGAAE%2CcAaD%2CEAAC%2CgBAEA%3BEACC%2CaAAA%3B%3BAAED%2CEAnBD%2CgBACD%2CGAAE%2CcAaD%2CEAAC%2CgBAKC%3BEACA%2C0BAAA%3B%3BAAMJ%3BEACC%2C0BAAA%3B%3BAADD%2CaAEC%3BEACC%2CaAAA%3B%3BAAHF%2CaAKC%3BEACC%2CaAAA%3B%3BAAGF%2CMACC%3BEACC%2CWAAA%3BEACA%2CUAAA%3B%3BAAHF%2CMACC%2CgBAGC%2CKAAI%3BEACH%2CqBAAA%3B%3BAAIH%3BEACC%2CYAAA%3B%3BAADD%2CMAEC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2C4BAAA%3BEACA%2C6BAAA%3BEACA%2CSAAA%3BEACA%2CsBAAA%3B%3BAARF%2CMAEC%2CMAOC%3BEACC%2CcAAA%3BEACA%2C8BAAA%3BEACA%2C0BAAA%3B%3BAAED%2CMAZD%2CMAYE%2CMACA%3BEACC%2CqCAAA%3B%3BAAGF%2CMAjBD%2CMAiBE%3BEACA%2CyBAAA%3B%3BAAID%2CMADD%2COACE%3BEACA%2C4BAAA%3BEACA%2C0BAAA%3BEACA%2C8BAAA%3B%3BAA3BH%2CMA8BC%2CQAAO%3BEACN%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CuBAAA%3BEACA%2C6BAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2CiCAAA%3B%3BAACA%2CMAZD%2CQAAO%2CKAYL%3BEACA%2CSAAS%2CEAAT%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CcAAA%3BEACA%2C4CAAA%3BEACA%2C%2BCAAA%3BEACA%2C8BAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2CiCAAA%3B%3BAAED%2CMAxBD%2CQAAO%2CKAwBL%3BEACA%2CqBAAA%3B%3BAAvDH%2CMA2DC%2CQAAO%3BEACN%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CuBAAA%3BEACA%2C6BAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2CiCAAA%3B%3BAACA%2CMAZD%2CQAAO%2CSAYL%3BEACA%2CSAAS%2CEAAT%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CcAAA%3BEACA%2C4CAAA%3BEACA%2C%2BCAAA%3BEACA%2C%2BBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2CiCAAA%3B%3BAAED%2CMAxBD%2CQAAO%2CSAwBL%3BEACA%2CqBAAA%3B%3BAAKH%3BEACC%2CYAAA%3BEACA%2CkBAAA%3B%3BAAED%3BEACC%2C0BAAA%3BEACA%2CuBAAA%3B%3BAAGD%2CiBACC%2CSACC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAKH%2CeAAkB%3BEAAQ%2C0BAAA%3BEAA4B%2CiBAAA%3B%3BAAsCtD%2CQApC0B%3BEAExB%2CkBAAC%2C2BACA%3BEADD%2CqBAAC%2C2BACA%3BEADD%2CiBAAC%2C2BACA%3BIACC%2CsBAAA%3BIACA%2CqBAAA%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEANF%2CkBAAC%2C2BAQA%2CQAAO%3BEARR%2CqBAAC%2C2BAQA%2CQAAO%3BEARR%2CiBAAC%2C2BAQA%2CQAAO%3BIACN%2CqBAAA%3BIACA%2C2BAAA%3BIACA%2C6BAAA%3B%3BEAMF%2CiBAAC%2C0BACA%3BIACC%2CsBAAA%3BIACA%2CqBAAA%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEANF%2CiBAAC%2C0BAQA%2CQAAO%3BIACN%2CqBAAA%3BIACA%2C2BAAA%3BIACA%2C6BAAA%3B%3B%3BAAyCJ%3BEAjCE%2CkBAAC%2C2BACA%3BEADD%2CqBAAC%2C2BACA%3BEADD%2CiBAAC%2C2BACA%3BIACC%2CsBAAA%3BIACA%2CqBAAA%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEANF%2CkBAAC%2C2BAQA%2CQAAO%3BEARR%2CqBAAC%2C2BAQA%2CQAAO%3BEARR%2CiBAAC%2C2BAQA%2CQAAO%3BIACN%2CqBAAA%3BIACA%2C2BAAA%3BIACA%2C6BAAA%3B%3BEAKF%2CiBAAC%2C0BACA%3BIACC%2CsBAAA%3BIACA%2CqBAAA%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEANF%2CiBAAC%2C0BAQA%2CQAAO%3BIACN%2CqBAAA%3BIACA%2C2BAAA%3BIACA%2C6BAAA%3B%3B%3BAAMJ%3BAAAgB%3BEACf%2CaAAA%3B%3BAAGD%2CqBAAsB%2COAAM%3BEAC3B%2CmBAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CSAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CqBAfqB%2COAAM%2C8DAe1B%3BEACA%2CmBAAA%3B%3BAAGF%3BEACC%2CwBAAA%3B%3BAAGD%2CmBACC%3BEACC%2CqBAAA%3B%3BAAFF%2CmBACC%2C2BAEC%3BEACC%2CqBAAA%3B%3BAAJH%2CmBACC%2C2BAKC%2CiCACC%3BEACC%2CsBAAA%3B%3BAARJ%2CmBACC%2C2BAKC%2CiCACC%2CQAEC%3BEACC%2CgBAAA%3B%3BAAOL%2CQAAQ%3BEACP%2C2BAAA%3BEACA%2CkBAAA%3B%3BAAGD%3BEACC%2CsBAAA%3B%3BAAUD%2CQAP0B%3BEACzB%3BIACC%2CYAAA%3BIACA%2CgBAAA%3B%3B%3BAAcF%2CQAV0B%3BEACzB%2CmBACC%2C2BACC%3BIACC%2CUAAA%3B%3B%3BAA0BJ%2CQApB0B%3BEACzB%2CWAAW%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%3BIACZ%2C0BAAA%3B%3BEAFF%2CWAAW%2CQAAQ%2CKAClB%2CSAAQ%2CKAAK%2CMAEX%2CQAAK%3BIACL%2CoBAAA%3BIACA%2CwBAAA%3BIACA%2CgCAAA%3B%3BEANH%2CWAAW%2CQAAQ%2CKASlB%2CMAAK%2CMACJ%3BEAVF%2CWAAW%2CQAAQ%2CKASL%2CMAAK%2CMAAM%2COACvB%3BIACC%2CuBAAA%3BIACA%2C4BAAA%3BIACA%2C6BAAA%3B%3B%3BAAqBJ%2CQAf0B%3BEACzB%3BEAAiB%3BEAAQ%3BIACxB%2CWAAA%3B%3BEAED%3BIACC%2CgBAAA%3B%3BEAED%2CeACC%3BIACC%2C4BAAA%3B%3B%3BAAMH%2CmBACC%2CQAAO%2CKACN%2CGACC%3BAAHkB%2CkBACpB%2CQAAO%2CKACN%2CGACC%3BAAHsC%2CsBACxC%2CQAAO%2CKACN%2CGACC%3BAAH8D%2CoBAChE%2CQAAO%2CKACN%2CGACC%3BEACC%2CgBAAA%3BEACA%2CiBAAA%3B%3BAALJ%2CmBACC%2CQAAO%2CKAON%3BAARmB%2CkBACpB%2CQAAO%2CKAON%3BAARuC%2CsBACxC%2CQAAO%2CKAON%3BAAR%2BD%2CoBAChE%2CQAAO%2CKAON%3BEACC%2CeAAA%3BEACG%2CmBAAA%3B%3BAAVN%2CmBACC%2CQAAO%2CKAON%2CGAGC%3BAAXkB%2CkBACpB%2CQAAO%2CKAON%2CGAGC%3BAAXsC%2CsBACxC%2CQAAO%2CKAON%2CGAGC%3BAAX8D%2CoBAChE%2CQAAO%2CKAON%2CGAGC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAdJ%2CmBACC%2CQAAO%2CKAiBN%2CeACC%2CGACC%3BAApBiB%2CkBACpB%2CQAAO%2CKAiBN%2CeACC%2CGACC%3BAApBqC%2CsBACxC%2CQAAO%2CKAiBN%2CeACC%2CGACC%3BAApB6D%2CoBAChE%2CQAAO%2CKAiBN%2CeACC%2CGACC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3B%3BAAtBL%2CmBACC%2CQAAO%2CKAiBN%2CeAOC%3BAAzBkB%2CkBACpB%2CQAAO%2CKAiBN%2CeAOC%3BAAzBsC%2CsBACxC%2CQAAO%2CKAiBN%2CeAOC%3BAAzB8D%2CoBAChE%2CQAAO%2CKAiBN%2CeAOC%3BEACC%2CeAAA%3B%3BAA1BJ%2CmBACC%2CQAAO%2CKAiBN%2CeAOC%2CGAEC%3BAA3BiB%2CkBACpB%2CQAAO%2CKAiBN%2CeAOC%2CGAEC%3BAA3BqC%2CsBACxC%2CQAAO%2CKAiBN%2CeAOC%2CGAEC%3BAA3B6D%2CoBAChE%2CQAAO%2CKAiBN%2CeAOC%2CGAEC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3B%3B%3BAAUL%2CeACC%3BAADD%2CeACe%3BEACb%2CaAAA%3B%3BAAFF%2CeAIC%2CeACE%3BEACA%2CaAAA%3B%3BAANH%2CeAIC%2CeACE%2CWAEA%3BEACC%2CwBAAA%3B%3BAARJ%2CeAIC%2CeACE%2CWAKA%3BEACC%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CqBAAA%3B%3BAACA%2CeAhBH%2CeACE%2CWAKA%2CUAUE%3BEACA%2CmBAAA%3B%3BAArBL%2CeAIC%2CeACE%2CWAmBA%3BEACC%2CoBAAA%3B%3BAAzBJ%2CeA6BC%3BEACC%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CyBAAA%3BEACA%2CkBAAA%3B%3BAAvCF%2CeAyCC%2CSACE%3BEACA%2CWAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3B%3BAA7CH%2CeAgDC%3BEACC%2CkBAAA%3B%3BAAjDF%2CeAmDC%2CmBACC%3BEACC%2CcAAA%3BEACA%2CqBAAA%3B%3BAAtDH%2CeAyDC%3BEACC%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CyBAAA%3BEACA%2C6BAAA%3BEACA%2CuBAAA%3B%3BAA9DF%2CeAgEC%3BEACC%2C4BAAA%3B%3BAAIG%2CeADJ%2CSACK%2CQACJ%3BEACI%2CwBAAA%3B%3BAAGA%2CeANL%2CSACK%2CQAIJ%2CGACK%2CQAAQ%3BEACZ%2CgBAAA%3B%3BAAOH%2CoBACC%3BEACC%2C4BAAA%3B%3BAAGF%3BEACC%2CaAAA%3B%3BAAGD%3BEACC%2CsBAAA%3B%3BAAGD%2CKAAK%2CcACJ%2CMACC%2CMACC%2CGACC%3BEACC%2C4BAAA%3BEACA%2C8BAAA%3BEACA%2CmBAAA%3BEACA%2CmBAAA%3BEACA%2CyBAAA%3B%3BAATL%2CKAAK%2CcAcJ%2COACE%3BEACA%2CqBAAA%3B%3BAAhBH%2CKAAK%2CcAmBJ%2CKAAI%3BEACH%2CkBAAA%3B%3BAApBF%2CKAAK%2CcAsBJ%2CMACC%3BEACC%2C4BAAA%3B%3BAAxBH%2CKAAK%2CcAsBJ%2CMAIC%2CKAAI%3BEACH%2C4BAAA%3BEACA%2C0BAAA%3B%3BAA5BH%2CKAAK%2CcAsBJ%2CMAQC%2CKAAI%2CIACH%3BEACC%2CwBAAA%3BEACA%2CUAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2CoBAAA%3B%3BAApCJ%2CKAAK%2CcAwCJ%2CqBAAqB%3BAAxCtB%2CKAAK%2CcAwCyB%2CqBAAqB%3BEACjD%2CiBAAA%3B%3BAAzCF%2CKAAK%2CcA2CJ%2CcACC%3BEACC%2C4BAAA%3BEACA%2CyBAAA%3B%3BAA9CH%2CKAAK%2CcA2CJ%2CcAKC%3BEACC%2C4BAAA%3B%3BAAjDH%2CKAAK%2CcA2CJ%2CcAKC%2CiBAEC%3BEACC%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3B%3BAACA%2CKA3DC%2CcA2CJ%2CcAKC%2CiBAEC%2CaASE%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAW%2CcAAX%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CSAAA%3BEACA%2CaAAa%2CaAAb%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3BAApEL%2CKAAK%2CcA2CJ%2CcAKC%2CiBAuBC%3BEACC%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3BEACA%2CgBAAgB%2CiDAAhB%3B%3BAAlFJ%2CKAAK%2CcAsFJ%3BEACC%2CqBAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAzFF%2CKAAK%2CcA2FJ%3BEACC%2CsBAAA%3B%3BAA5FF%2CKAAK%2CcA8FJ%3BEACC%2CsBAAA%3BEACA%2CsBAAA%3B%3BAAhGF%2CKAAK%2CcAkGJ%3BEACC%2CqBAAA%3BEACA%2CqBAAA%3B%3BAAGF%3BEACC%2C8BAAA%3B%3BAAGD%2CKAAK%2CKAAK%3BEACT%2CgCAAA%3BEACA%2CoBAAA%3B%3BAACA%2CKAHI%2CKAAK%2CQAGR%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAGF%2CeACC%2CWACC%2CQAAO%3BEACN%2CuBAAA%3BEACA%2CyBAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAgB%2CoBAAhB%3BEACA%2CyBAAA%3B%3BAACA%2CeAhBF%2CWACC%2CQAAO%2CSAeL%3BEACA%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CWAAA%3B%3BAAED%2CeArBF%2CWACC%2CQAAO%2CSAoBL%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAA9BJ%2CeACC%2CWAgCC%3BEACC%2CsBAAA%3BEACA%2CyBAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAgB%2CoBAAhB%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CeAhDF%2CWAgCC%2CmBAgBE%3BEACA%2CgBAAA%3B%3BAAED%2CeAnDF%2CWAgCC%2CmBAmBE%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAA5DJ%2CeACC%2CWA8DC%2CQAAO%3BEACN%2CuBAAA%3BEACA%2C4BAAA%3BEACA%2C0BAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CyBAAA%3B%3BAACA%2CeA%5C%2FEF%2CWA8DC%2CQAAO%2COAiBL%3BEACA%2CgBAAA%3B%3BAAED%2CeAlFF%2CWA8DC%2CQAAO%2COAoBL%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAA3FJ%2CeACC%2CWA6FC%2CQAAO%3BEACN%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CyBAAA%3B%3BAACA%2CeA7GF%2CWA6FC%2CQAAO%2CkBAgBL%3BEACA%2CgBAAA%3B%3BAAED%2CeAhHF%2CWA6FC%2CQAAO%2CkBAmBL%3BEACA%2CSAAS%2COAAT%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3BEACA%2CwBAAA%3B%3BAAMJ%2CeACC%3BEACC%2CUAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3B%3BAACA%2CeAJD%2CUAIE%3BEACA%2CqBAAA%3B%3BAANH%2CeASC%3BEACC%2CmBAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3B%3BAAhBF%2CeAkBC%2CQAAO%3BEACN%2CgBAAA%3B%3BAACA%2CeAFD%2CQAAO%2COAEL%3BEACA%2CgBAAgB%2CiDAAhB%3BEACA%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3B%3BAAzBH%2CeA4BC%2CQAAO%3BEAIN%2CwBAAA%3B%3BAAHA%2CeADD%2CQAAO%2CKACL%3BEACA%2CcAAA%3B%3BAA9BH%2CeAkCC%2CsBACC%3BEACC%2CaAAA%3B%3BAAKE%2CeADJ%2CcACK%3BEACJ%2CaAAA%3B%3BAA1CF%2CeA8CC%3BEACI%2C0BAAA%3BEACA%2CgBAAA%3B%3BAAIL%2CoBACC%3BEACC%2C2BAAA%3B%3BAAFF%2CoBAIC%3BEACC%2C2BAAA%3B%3BAALF%2CoBAOC%3BEACC%2C8BAAA%3B%3BAAEC%2CoBAHF%2CWAEC%2CGACE%3BEACA%2C2BAAA%3B%3BAADD%2CoBAHF%2CWAEC%2CGACE%2COAEA%3BEACC%2CmBAAA%3B%3BAAbL%2CoBAOC%2CWAEC%2CGAOC%2CSAAQ%3BEACP%2CuBAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3B%3BAArBJ%2CoBAyBC%2CiBACC%2CWACC%2CGACC%3BEACC%2CYAAA%3B%3BAAGA%2CoBAPJ%2CiBACC%2CWACC%2CGAIC%2CgBACE%3BEACA%2CYAAA%3BEACA%2CiBAAA%3B%3BAAlCN%2CoBAyBC%2CiBACC%2CWACC%2CGAIC%2CgBAKC%3BEACC%2CYAAA%3BEACA%2CiBAAA%3B%3BAAtCN%2CoBAyBC%2CiBACC%2CWACC%2CGAcC%3BEACC%2CiBAAA%3B%3BAA1CL%2CoBAyBC%2CiBACC%2CWACC%2CGAcC%2CMAEC%3BEACC%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAAjDN%2CoBAyBC%2CiBA6BC%3BEACC%2CkBAAA%3B%3BAAvDH%2CoBAyBC%2CiBA6BC%2CaAEC%3BEACC%2CmBAAA%3BEACA%2CSAAA%3BEACA%2CWAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAApEJ%2CoBAyBC%2CiBA6BC%2CaAEC%2CUAaC%3BEACC%2CeAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3B%3BAAED%2CoBAlDH%2CiBA6BC%2CaAEC%2CUAmBE%3BEACA%2CmBAAA%3B%3B%3BAAWH%2CwBADD%2CYACE%3BEACA%2CSAAA%3BEACA%2CwCAAA%3B%3BAAMF%2CwBAAC%2CgBACA%3BEACC%2CoCAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CsBAAA%3B%3BAACA%2CwBAND%2CgBACA%2CeAKE%3BEACA%2CmBAAA%3B%3BAAIH%2CwBAAC%2CIAAI%2CkBACJ%3BEACC%2CcAAA%3BEACA%2C2BAAA%3BEACA%2C0BAAA%3B%3BAAGF%2CwBAAC%2CKACA%2CEAAC%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2C0BAAA%3B%3BAASC%2CwBAHF%2COACA%2C0BACE%2CiBACC%3BEACA%2C8CAAA%3BEACA%2CgBAAA%3B%3BAAOL%3BEACC%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CeAAA%3B%3BAAGD%2CkBACC%3BEACC%2CyBAAA%3B%3BAAIF%2CcACC%2CQAAO%3BEACN%2CaAAA%3B%3BAAiBF%2CQAb0B%3BEACzB%2CwBAAwB%2CQAAS%3BIAChC%2CkBAAA%3BIACA%2CsBAAA%3B%3BEAED%2CoBAAoB%3BIACnB%2CkBAAA%3BIACA%2CsBAAA%3B%3B%3B%3BAAMF%2CqBACC%3BEACC%2C0BAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3B%3BAAJF%2CqBACC%2CaAIC%3BEACC%2CWAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3BEACA%2CSAAA%3B%3BAAVH%2CqBACC%2CaAIC%2CwBAMC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3B%3BAAbJ%2CqBACC%2CaAIC%2CwBAMC%2CaAGC%3BEACC%2CeAAA%3BEACA%2CgBAAA%3B%3BAAhBL%2CqBACC%2CaAIC%2CwBAcC%3BEACC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3B%3BAAvBJ%2CqBACC%2CaAIC%2CwBAcC%2CeAKC%3BEACC%2CSAAA%3B%3BAAQL%2CMAAM%2COAAO%2CuBACZ%2CeACC%3BEACC%2CoCAAA%3BEACA%2CkBAAA%3BEACA%2CyBAAA%3BEACA%2CgBAAA%3BEACA%2C8CAAA%3BEACA%2CgCAAA%3B%3BAARH%2CMAAM%2COAAO%2CuBACZ%2CeACC%2CcAOC%3BEACC%2CeAAA%3B%3BAAVJ%2CMAAM%2COAAO%2CuBACZ%2CeAYC%3BEACC%2CeAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CaAAA%3B%3BAAnBH%2CMAAM%2COAAO%2CuBACZ%2CeAoBC%2CSAAQ%2CKACP%3BEACC%2CeAAA%3B%3BAAkBJ%2CQAZ0B%3BEAItB%2CMAHG%2COAAO%2CuBACZ%2CeACC%2CcACE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAAqBL%2CQAd0B%2CuBAAuB%3BEAChD%2CMAAM%2COAAO%2CuBACZ%2CeACC%3BIACC%2CoCAAA%3BIACA%2CmBAAA%3B%3BEACA%2CMALG%2COAAO%2CuBACZ%2CeACC%2CcAGE%2CUAAU%3BIACV%2CeAAA%3B%3B%3BAA2BL%2CQApB0B%3BEACzB%2CMAAM%2COAAO%2CuBACZ%2CeACC%2CcACC%3BIACC%2CYAAA%3B%3BEAJJ%2CMAAM%2COAAO%2CuBACZ%2CeACC%2CcAIC%3BIACC%2CgBAAA%3B%3BEAMJ%3BIACC%2CaAAA%3B%3B%3BAAsCF%2CQAjC0B%3BEACzB%2CMAAM%2COAAO%2CuBACZ%2CeACC%3BIACC%2C8BAAA%3BIACA%2CmBAAA%3B%3BEACA%2CMALG%2COAAO%2CuBACZ%2CeACC%2CcAGE%2CUAAU%3BIACV%2CeAAA%3B%3BEAMJ%2CiBACC%2CSACC%3BIACC%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAIH%2CcACC%3BIACC%2CWAAA%3B%3BEAGF%2CcACC%3BIACC%2CmBAAA%3B%3B%3BAAmBH%2CQAd0B%3BEACzB%2CMAAM%2COAAO%2CuBACZ%2CeACC%3BIACC%2CWAAA%3BIACA%2CeAAA%3B%3B%3B%3BAASJ%2CMAAM%3BEACL%2CgBAAA%3B%3BAADD%2CMAAM%2COAEL%3BEACC%2CkBAAA%3B%3BAAHF%2CMAAM%2COAEL%2CaAEC%3BEACC%2C0BAAA%3BEACA%2C2BAAA%3B%3BAANH%2CMAAM%2COASL%3BEACC%2CsBAAA%3B%3BAAmBF%2CQAf2B%3BEAC1B%2CMAAM%2COACL%2CeACC%3BIACC%2CYAAA%3B%3BEACA%2CMAJG%2COACL%2CeACC%2CcAEE%2CUAAU%3BIACV%2CeAAA%3B%3BEAED%2CMAPG%2COACL%2CeACC%2CcAKE%2CUAAU%3BIACV%2CcAAA%3B%3B%3BAAML%2CKACC%2COAAM%2COACL%2CeACC%3BEACC%2CYAAA%3B%3BAACA%2CKAJH%2COAAM%2COACL%2CeACC%2CcAEE%2CUAAU%3BEACV%2CeAAA%3B%3BAAED%2CKAPH%2COAAM%2COACL%2CeACC%2CcAKE%2CUAAU%3BEACV%2CcAAA%3B%3B%3BAAWL%3BEACC%2CkCAAA%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAED%2CiBACC%2CaACC%3BEACC%2CWAAA%3BEACA%2CmBAAA%3B%3BAACA%2CiBAJF%2CaACC%2CWAGE%3BEACA%2CSAAS%2COAAT%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAVJ%2CiBACC%2CaAYC%2CeACC%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAAjBJ%2CiBACC%2CaAmBC%3BEACC%2C0BAAA%3BEACA%2CgBAAA%3B%3BAAtBH%2CiBACC%2CaAuBC%3BEACC%2CgBAAA%3BEACA%2CkBAAA%3B%3BAA1BH%2CiBACC%2CaAuBC%2CeAGC%3BEAEC%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CiBArCH%2CaAuBC%2CeAGC%2CoBAWE%3BEACA%2CmBAAA%3B%3BAAvCL%2CiBACC%2CaAuBC%2CeAGC%2CoBAcC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2C%2BCAAhB%3BEACA%2C0BAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAACA%2CiBAhDJ%2CaAuBC%2CeAGC%2CoBAcC%2CIAQE%3BEACA%2CSAAS%2CEAAT%3B%3BAAlDN%2CiBACC%2CaAuBC%2CeA8BC%3BEACC%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CqBAAA%3BEACA%2CyBAAA%3B%3BAACA%2CiBA%5C%2FDH%2CaAuBC%2CeA8BC%2CwBAUE%3BEACA%2CmBAAA%3B%3BAAjEL%2CiBACC%2CaAuBC%2CeA8BC%2CwBAaC%3BEACC%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAAQJ%2CWAAC%2CoBACA%2CQAAO%2CKACN%3BEACC%2C8BAAA%3BEACA%2C0BAAA%3B%3BAAIC%2CWARH%2CoBACA%2CQAAO%2CKAKN%2CKACC%2CMACE%3BEACA%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CSAAA%3BEACA%2CyBAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2C0BAAA%3BEACA%2C2BAAA%3BEACA%2CqBAAA%3B%3BAACA%2CWAnBJ%2CoBACA%2CQAAO%2CKAKN%2CKACC%2CMACE%2COAWC%3BEACA%2CmBAAA%3B%3BAASP%3BEACC%2CmBAAA%3B%3BAADD%2CoBAEC%3BEACC%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CmBAAA%3BEACA%2C6BAAA%3B%3BAANF%2CoBAEC%2CIAKC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CWAAA%3B%3BAAED%2CoBAVD%2CIAUE%3BEACA%2CgBAAA%3BEACA%2CuBAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3B%3BAAJD%2CoBAVD%2CIAUE%2CWAKA%2CEACC%3BEACC%2CWAAA%3B%3BAACA%2CoBAlBJ%2CIAUE%2CWAKA%2CEACC%2COAEE%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAQN%2CQAAQ%2CKAAK%2CMACV%2CQAAK%2CQACN%3BEACC%2CaAAA%3B%3B%3BAAQH%2CuBACC%3BEACC%2CgBAAA%3B%3BAAFF%2CuBACC%2CWAEC%2CoBACC%3BEACC%2CeAAA%3B%3BAAKJ%2CwBACC%3BEACC%2CgBAAA%3B%3BAAFF%2CwBACC%2CWAEC%2CoBACC%3BEACC%2CeAAA%3B%3BAAKJ%2CgCACC%3BEACC%2CgBAAA%3B%3BAAFF%2CgCACC%2CWAEC%2CoBACC%3BEACC%2CeAAA%3B%3BAAMJ%2CQACC%3BEACC%2CgBAAA%3B%3BAAFF%2CQACC%2CWAEC%2CoBACC%3BEACC%2CeAAA%3B%3BAAMJ%2CgBACC%2CUACE%3BEAIA%2CmBAAA%3B%3BAANH%2CgBACC%2CUACE%2CSACC%3BEACA%2CsBAAA%3B%3BAAGD%2CgBANF%2CUACE%2CSAKC%2CIAAI%2CSACH%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAVL%2CgBACC%2CUAaE%3BEACA%2CyBAAA%3B%3BAAED%2CgBAhBD%2CUAgBE%3BEACA%2CyBAAA%3B%3BAAlBH%2CgBAqBC%3BEACC%2CcAAA%3B%3BAACA%2CgBAFD%2CEAEE%3BEACA%2CcAAA%3B%3BAAIH%2CKAAK%2COAAO%3BEACX%2C0BAAA%3BEACA%2CsBAAA%3B%3BAAGA%2CoBAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAJF%2CoBAMC%2CUACC%3BEACC%2CyBAAA%3BEACA%2CgCAAA%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3BAAdH%2CoBAMC%2CUAUE%3BEAIA%2CmBAAA%3B%3BAApBH%2CoBAMC%2CUAUE%2CSACC%3BEACA%2CsBAAA%3B%3BAAGD%2CoBAfF%2CUAUE%2CSAKC%2CIAAI%2CSACH%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAIH%2CoBAtBD%2CUAsBE%3BEACA%2CyBAAA%3B%3BAA7BH%2CoBAgCC%3BEACC%2CyBAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3B%3BAAnCF%2CoBAqCC%3BEACC%2CcAAA%3B%3BAACA%2CoBAFD%2CEAEE%3BEACA%2CcAAA%3B%3BAAIH%2CKAAK%2CSACJ%2CUACC%3BEACC%2CyBAAA%3BEACA%2CgCAAA%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3BAATH%2CKAAK%2CSACJ%2CUAUE%3BEAIA%2CmBAAA%3B%3BAAfH%2CKAAK%2CSACJ%2CUAUE%2CSACC%3BEACA%2CsBAAA%3B%3BAAGD%2CKAhBE%2CSACJ%2CUAUE%2CSAKC%2CIAAI%2CSACH%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAIH%2CKAvBG%2CSACJ%2CUAsBE%3BEACA%2CyBAAA%3B%3BAAxBH%2CKAAK%2CSA2BJ%3BEACC%2CyBAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3B%3BAA9BF%2CKAAK%2CSAgCJ%3BEACC%2CcAAA%3B%3BAACA%2CKAlCG%2CSAgCJ%2CEAEE%3BEACA%2CcAAA%3B%3BAAKH%2CQACC%2CWACC%3BEACC%2CcAAA%3B%3BAACA%2CQAHF%2CWACC%2CEAEE%3BEACA%2CcAAA%3B%3BAALJ%2CQACC%2CWAOC%2CUACC%3BEACC%2CyBAAA%3BEACA%2CgCAAA%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3BAAhBJ%2CQACC%2CWAOC%2CUAUE%3BEACA%2CmBAAA%3B%3BAACA%2CQAnBH%2CWAOC%2CUAUE%2CSAEC%2CIAAI%2CSACH%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAvBN%2CQACC%2CWAOC%2CUAUE%2CSAQC%3BEACA%2CsBAAA%3B%3BAAID%2CQA9BH%2CWAOC%2CUAsBE%2CSAAM%2COACL%3BEACA%2CaAAA%3B%3BAAhCL%2CQACC%2CWAmCC%3BEACC%2CyBAAA%3B%3BAAKH%2CuBACC%2CWACC%2CQAAO%3BAAFgB%2CwBACxB%2CWACC%2CQAAO%3BAAF0C%2CgCAClD%2CWACC%2CQAAO%3BAAF4E%2CQACpF%2CWACC%2CQAAO%3BEACN%2CmBAAA%3BEACA%2CeAAe%2CoBAAf%3BEACA%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2C2BAAA%3BEACA%2CSAAA%3BEACA%2C2BAAA%3BEACA%2C8BAAA%3B%3BAACA%2CuBAVF%2CWACC%2CQAAO%2CQASL%3BAAAD%2CwBAVF%2CWACC%2CQAAO%2CQASL%3BAAAD%2CgCAVF%2CWACC%2CQAAO%2CQASL%3BAAAD%2CQAVF%2CWACC%2CQAAO%2CQASL%3BEACA%2CmBAAA%3BEACA%2CSAAA%3B%3BAA0BJ%2CQApB0B%3BEACzB%2CoBACC%2CUAAS%2COAAO%3BIACf%2CsBAAA%3BIACA%2CUAAA%3B%3BEAHF%2CoBAKC%2CUAAS%2COAAO%3BIACf%2CuBAAA%3BIACA%2CUAAA%3B%3BEAIC%2CoBAFF%2CUACE%2CSAAM%2COACL%3BIACA%2CaAAA%3B%3B%3BAAOL%3BEACC%2CqBAAA%3BEACA%2CuBAAA%3B%3BAAFD%2CyBAGC%3BEACC%2CuBAAA%3B%3BAAIF%2CqBACC%2CSAAQ%2CMACP%3BEACC%2CwBAAA%3BEACA%2CoBAAA%3B%3BAAeH%2CQAV0B%3BEACzB%2CqBACC%2CSAAQ%2CMACP%3BIACC%2CuBAAA%3B%3B%3BAAMJ%2CYAAY%2CQACX%2CkBACC%3BEACC%2C8BAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3B%3BAAKH%2CYACC%3BEACC%2CiBAAA%3B%3BAAFF%2CYACC%2CcAEC%3BEACC%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CqBAAA%3BEACA%2CqBAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CaAAA%3B%3BAACA%2CYAfF%2CcAEC%2COAaE%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAACA%2CYApBH%2CcAEC%2COAaE%2CeAKC%3BEACA%2CWAAA%3B%3BAAGF%2CYAxBF%2CcAEC%2COAsBE%3BEACA%2CmBAAA%3BEACA%2CqBAAA%3B%3BAAMJ%2CYAAY%2CQACX%3BEACC%2CkBAAA%3BEACA%2C0CAAA%3B%3BAAIF%3BEACC%2CqCAAA%3B%3BAAWD%2CQAR0B%3BEACzB%3BIACC%2CwBAAA%3B%3B%3B%3BAAMF%3BEACC%2CiBAAA%3BEACA%2CiBAAA%3B%3BAAFD%2CsBAGC%3BEACI%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2C8BAAA%3BEACA%2CuBAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3B%3BAAVL%2CsBAGC%2CeAQI%3BEACH%2CYAAA%3BEACA%2CkBAAA%3B%3BAAbF%2CsBAGC%2CeAQI%2CUAGH%3BEACC%2CgBAAA%3B%3BAAfH%2CsBAGC%2CeAQI%2CUAGH%2CEAEC%3BEACC%2CYAAA%3B%3BAAjBJ%2CsBAGC%2CeAkBI%3BEACH%2CYAAA%3B%3BAAtBF%2CsBAGC%2CeAkBI%2CUAEH%3BEACC%2CiBAAA%3BEACA%2CYAAA%3B%3BAACA%2CsBAvBF%2CeAkBI%2CUAEH%2CUAGE%2CaACA%2CUACC%3BEACC%2CkBAAA%3BEACA%2CUAAA%3B%3BAAJH%2CsBAvBF%2CeAkBI%2CUAEH%2CUAGE%2CaACA%2CUAKC%3BEACC%2CqBAAA%3BEACA%2CWAAA%3B%3BAAlCN%2CsBAGC%2CeAkBI%2CUAEH%2CUAeC%3BEACC%2CaAAA%3B%3BAAvCJ%2CsBAGC%2CeAkBI%2CUAqBH%3BEACC%2CkBAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CQAAA%3BEACA%2CwBAAA%3BEACA%2CgCAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEACA%2C8BAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3B%3BAArDH%2CsBAGC%2CeAkBI%2CUAqBH%2CUAYC%2CSACC%3BEACC%2CWAAW%2CoBAAX%3BEACA%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CuBAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CYAAA%3B%3BAAED%2CsBA%5C%2FDH%2CeAkBI%2CUAqBH%2CUAYC%2CSAYE%2COACA%3BEACC%2CcAAA%3BEACA%2CkBAAA%3B%3BAACA%2CsBAnEL%2CeAkBI%2CUAqBH%2CUAYC%2CSAYE%2COACA%2COAGE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CkCAAA%3BEACA%2CmCAAA%3BEACA%2CgCAAA%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CSAAA%3B%3BAAqBP%2CQAV0B%3BEACtB%2CsBACE%2CeACE%3BIACE%2CgBAAA%3B%3B%3BAAuBV%2CQAjB2B%3BEAC1B%2CsBACC%2CeACC%2CUACC%2CUACC%2CSACC%3BIACC%2CiBAAA%3BIACA%2CkBAAA%3B%3B%3BAA2BP%2CQAlB0B%3BEACzB%3BIACC%2CcAAA%3B%3BEADD%2CsBAEC%3BIACC%2CsBAAA%3B%3BEAHF%2CsBAEC%2CeAEC%3BEAJF%2CsBAEC%2CeAEY%3BIACV%2CWAAA%3B%3BEALH%2CsBAEC%2CeAKC%3BIACC%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3B%3B%3BAAiCJ%2CQA3B0B%3BEACzB%2CsBACC%2CeACC%2CUACC%3BIACC%2CiBAAA%3B%3BEAJJ%2CsBACC%2CeACC%2CUAIC%3BIACC%2CYAAA%3B%3BEAPJ%2CsBACC%2CeACC%2CUAIC%2CUAEC%2CSACC%3BIACC%2CeAAA%3B%3BEAIC%2CsBAbN%2CeACC%2CUAIC%2CUAEC%2CSAIE%2COACA%2COACE%3BIACA%2CWAAA%3B%3B%3BAA2CT%2CQAhC0B%3BEACzB%2CsBACC%2CeACC%2CUACC%3BIACC%2CiBAAA%3B%3BEAJJ%2CsBACC%2CeACC%2CUAIC%3BIACC%2CYAAA%3B%3BEAPJ%2CsBACC%2CeACC%2CUAIC%2CUAEC%2CSACC%3BIAEC%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CcAAA%3B%3BEAIC%2CsBAjBN%2CeACC%2CUAIC%2CUAEC%2CSAQE%2COACA%2COACE%3BIACA%2CWAAA%3B%3B%3BAAYT%3BEAAmB%2CwBAAA%3BEAA0B%2CwBAAA%3B%3B%3BAAK7C%3BEACC%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3BAALD%2CyBAMC%3BEACI%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3B%3BAAfL%2CyBAMC%2CEAUI%3BEACH%2CkBAAA%3BEACA%2CeAAA%3B%3BAAEG%2CyBAdJ%2CEAcK%3BEACJ%2CmBAAA%3B%3BAAEG%2CyBAjBJ%2CEAiBK%3BEACJ%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAHG%2CyBAjBJ%2CEAiBK%2CUAIJ%3BEACC%2CeAAA%3BEACA%2CiBAAA%3B%3BAAYH%2CQAN0B%3BEACzB%3BIACC%2CaAAA%3B%3B%3BAA4BF%2CQAxB0B%3BEACzB%2CqBACC%2CSAAQ%3BIACP%2CcAAA%3BIACA%2CWAAA%3BIACA%2CcAAA%3B%3BEAGF%2CQAAQ%2CKAAK%2CSACZ%3BIACC%2CaAAA%3B%3B%3B%3B%3B%3B%3BAAcH%2CYACC%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CyBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CqBAAA%3BEACA%2CsBAAA%3B%3BAARF%2CYAUC%3BEACC%2CuBAAA%3BEACE%2CsBAAA%3B%3BAAZJ%2CYAcC%3BEACC%2COAAA%3BEACA%2CWAAA%3B%3BAAGF%2CuBACC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2C8BAAA%3BEACA%2C%2BBAAA%3BEACA%2CSAAA%3BEACA%2CkBAAA%3BEACA%2CwCAAA%3BEACA%2CsBAAA%3B%3BAACA%2CuBAVD%2CgBAUE%3BEACA%2CSAAA%3B%3BAAZH%2CuBAeC%3BEACC%2CkBAAA%3BEACA%2CsBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEACA%2C4BAAA%3BEACA%2CqBAAA%3B%3BAACA%2CuBAXD%2CiBAWE%3BEACA%2CSAAS%2COAAT%3BEACA%2CaAAa%2CmBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CWAAA%3B%3BAAIH%2CuBAAuB%2COACtB%3BEACC%2CkBAAA%3B%3BAAGF%2CwBACC%2CeACC%3BEACC%2CcAAA%3B%3BAACA%2CwBAHF%2CeACC%2CeAEE%3BEACA%2CcAAA%3B%3BAAED%2CwBANF%2CeACC%2CeAKE%3BEACA%2CcAAA%3B%3BAAIH%2CwBAAC%2CIAAI%2CkBACJ%3BEACC%2CcAAA%3B%3BAAKF%2C0BADyB%2CMACxB%2CIAAI%2CUACJ%3BEACC%2CiBAAA%3BEACA%2CwBAAA%3B%3BAAIH%2C0BACC%3BEACC%2CcAAA%3BEACA%2CiBAAA%3B%3BAACA%2C0BAHD%2CeAGE%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAANH%2C0BASC%3BEACC%2CcAAA%3BEACA%2CiBAAA%3B%3BAAXF%2C0BAaC%3BEACC%2CaAAA%3B%3BAAdF%2C0BAgBC%2CcACC%2CWACC%3BEACC%2CeAAA%3B%3BAAnBJ%2C0BAgBC%2CcAMC%2CoBACC%3BEACC%2CmBAAA%3B%3BAAxBJ%2C0BAgBC%2CcAWC%3BEACC%2CmBAAA%3BEACA%2CeAAA%3B%3BAAIH%3BEACC%2CcAAA%3B%3BAAED%2CwBAAwB%2CMACvB%2CEAAC%3BEACA%2CcAAA%3B%3BAAGF%2CwBAAwB%2CiBACvB%3BEACC%2CmBAAA%3BEACA%2CSAAA%3B%3BAAHF%2CwBAAwB%2CiBACvB%2CeAGC%3BEACC%2CWAAA%3B%3BAACA%2CwBANqB%2CiBACvB%2CeAGC%2CeAEE%3BEACA%2CmBAAA%3B%3BAAPJ%2CwBAAwB%2CiBAWvB%2CeAAc%3BEACb%2CyBAAA%3B%3BAAZF%2CwBAAwB%2CiBAcvB%3BEACC%2CcAAA%3B%3BAAGF%2CoBAAoB%3BEACnB%2CeAAA%3B%3BAAED%3BEACC%2CsBAAA%3B%3BAAUD%2CQAR2B%3BEAC1B%2CYACC%3BIACC%2CyBAAA%3BIACA%2C4BAAA%3B%3B%3BAAWH%2CQAP0B%3BEACzB%2CYACC%3BIACC%2CyBAAA%3B%3B%3BAAmBH%2CQAf0B%3BEACzB%2CYACC%3BIACC%2CaAAA%3B%3BEAGF%3BIACC%2CwBAAA%3B%3B%3B%3BAASD%2CYAAC%2CcACA%2CQAAO%2CKACN%3BEACC%2CYAAA%3B%3BAAKJ%2CQAAQ%2CMACP%3BEACC%2CsBAAA%3B%3BAAIF%2CqBACC%2CSAAQ%2CMACP%3BEACC%2CoBAAA%3B%3BAAMH%3BEACE%2CwBAAA%3B%3BAADF%2CuBAEG%3BEACC%2CeAAA%3BEACA%2C0BAAA%3B%3BAAWJ%2CQAP0B%3BEACxB%3BIACE%2CwBAAA%3B%3B%3BAAKJ%3BEACC%2CYAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CqBAAC%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAGF%2CWAAW%2CoBACV%2CQAAO%2CKACN%3BEACC%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3BEACA%2CmBAAA%3BEACA%2CsBAAA%3B%3BAACA%2CWAbQ%2CoBACV%2CQAAO%2CKACN%2CqBAWE%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3B%3BAAWJ%2CQAN0B%3BEACzB%3BIACC%2CiBAAA%3BIACA%2CkBAAA%3B%3B%3BAAiBF%2CQAd0B%3BEACzB%2COAAO%2CQACN%2COAAM%2CMACL%3BIACC%2CkBAAA%3B%3B%3B%3BAAUJ%3BEACC%2CuBAAA%3B%3BAAED%3BEACC%2CWAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAAHD%2CeAIC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CWAAA%3BEACE%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3B%3BAA%2BBJ%2CQA1B0B%3BEACzB%2CeACC%3BIACC%2CUAAA%3B%3BEAGE%2CeAJH%2CYAEE%2CUAAU%2CIACV%2CeACE%3BIACA%2CQAAA%3BIACA%2CUAAA%3B%3BEAKF%2CeAXF%2CYAUC%2CeACE%3BIACA%2CaAAA%3B%3BEAED%2CeAdF%2CYAUC%2CeAIE%3BIACA%2CaAAA%3B%3B%3BAASL%2CQAAQ%2CKAAK%2CMACX%2CQAAK%2CMAAM%2COACV%3BEACA%2CuBAAA%3B%3BAAKF%2CCAAC%3BEACA%2CqBAAA%3B%3BAAGF%3BEACC%2CaAAA%3BEACA%2CkBAAA%3B%3BAAFD%2CQAGC%3BEACC%2CaAAA%3BEACA%2CkBAAA%3B%3BAAGF%3BEACC%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CeAAA%3B%3BAACA%2CcAAC%3BEACA%2CkBAAA%3BEACA%2CYAAY%2CoDAAZ%3BEACA%2CQAAQ%2CqDAAR%3BEACA%2CUAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2CYAAA%3BEACA%2COAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3BEACA%2CuCAAA%3BEACA%2CWAAA%3BEACA%2CSAAS%2CkBAAT%3BEACA%2CgBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CYAAA%3B%3BAAED%2CcAAC%3BEACA%2CkBAAA%3BEACA%2CYAAY%2CoDAAZ%3BEACA%2CQAAQ%2CqDAAR%3BEACA%2CUAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3BEACA%2CiBAAA%3BEACA%2CQAAA%3BEACA%2C0BAAA%3BEACA%2C2CAAA%3BEACA%2CmCAAA%3BEACA%2CkCAAA%3BEACA%2CSAAS%2CGAAT%3BEACA%2CYAAA%3BEACA%2CcAAA%3BEACA%2CYAAA%3B%3BAAGA%2CcADA%2CMACC%3BEACA%2CmBAAA%3BEACA%2CYAAY%2CsDAAZ%3BEACA%2CQAAQ%2CuDAAR%3BEACA%2CUAAA%3B%3BAAED%2CcAPA%2CMAOC%3BEACA%2CmBAAA%3BEACA%2CYAAY%2CsDAAZ%3BEACA%2CQAAQ%2CuDAAR%3BEACA%2CUAAA%3B%3BAAKH%2C%2BBACC%3BEACC%2CgBAAA%3B%3BAAIF%3BEAAwB%2CiBAAA%3BEAAmB%2CgBAAA%3B%3BAAC3C%3BEAAwB%2CWAAA%3B%3B%3BAAKxB%2CYACC%2CQAAO%3BEACN%2C0BAAA%3BEACE%2CqBAAA%3B%3BAAIJ%3BEACG%2CiBAAA%3BEACC%2CcAAA%3B%3BAAEJ%3BEACG%2CkBAAA%3BEACC%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3BAALJ%2COAME%3BAANF%2COAMM%3BEACH%2CSAAA%3B%3BAAQH%2CQAJ0B%3BEACzB%3BIAAa%2CaAAA%3B%3B%3BAAWd%2CQAR0B%3BEACzB%3BIAAS%2CaAAA%3B%3BEACT%3BIAAa%2CcAAA%3BIAAgB%2CgBAAA%3B%3B%3B%3BAAM9B%3BEACC%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAFD%2CWAGC%3BEACG%2CWAAW%2CoBAAX%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CoBAAA%3BEACA%2CsBAAA%3BEACA%2CWAAA%3BEACA%2CSAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAiBJ%2CQAd0B%3BEACzB%3BIACE%2CyBAAA%3BIACA%2CWAAA%3B%3BEAGD%2CQAAC%2CaACA%3BIACC%2CaAAA%3B%3B%3BAAiCJ%2CQA3B0B%3BEACzB%2CsBACC%2CWACC%3BIACC%2CgBAAA%3B%3BEAIH%3BIACE%2CaAAA%3B%3BEAGD%2CQAAC%2CaACA%3BIACC%2CcAAA%3BIACA%2CmBAAA%3B%3B%3B%3B%3BAAwBJ%2CQAZ0B%3BEACzB%2CmBACC%2CQAAO%3BEADa%2CkBACpB%2CQAAO%3BEADiC%2CsBACxC%2CQAAO%3BEADyD%2CoBAChE%2CQAAO%3BIACN%2CqBAAA%3BIACA%2C0BAAA%3B%3BEAHF%2CmBAKC%3BEALoB%2CkBAKpB%3BEALwC%2CsBAKxC%3BEALgE%2CoBAKhE%3BIACC%2CqBAAA%3B%3B%3BAAKH%3BAAAqB%3BAAAoB%3BAAAwB%3BEAChE%2CgBAAA%3B%3BAADD%2CmBAEC%3BAAFoB%2CkBAEpB%3BAAFwC%2CsBAExC%3BAAFgE%2CoBAEhE%3BEACC%2CwBAAA%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3BEACA%2CuBAAA%3B%3BAANF%2CmBAEC%2CoBAKC%3BAAPmB%2CkBAEpB%2CoBAKC%3BAAPuC%2CsBAExC%2CoBAKC%3BAAP%2BD%2CoBAEhE%2CoBAKC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CkCAAA%3BEACA%2CcAAA%3B%3BAAbH%2CmBAEC%2CoBAKC%2CmBAOC%3BAAdkB%2CkBAEpB%2CoBAKC%2CmBAOC%3BAAdsC%2CsBAExC%2CoBAKC%2CmBAOC%3BAAd8D%2CoBAEhE%2CoBAKC%2CmBAOC%3BEACC%2CaAAA%3BEACA%2CgBAAA%3B%3BAAhBJ%2CmBAEC%2CoBAKC%2CmBAOC%2CaAGC%3BAAjBiB%2CkBAEpB%2CoBAKC%2CmBAOC%2CaAGC%3BAAjBqC%2CsBAExC%2CoBAKC%2CmBAOC%2CaAGC%3BAAjB6D%2CoBAEhE%2CoBAKC%2CmBAOC%2CaAGC%3BEACC%2CaAAA%3B%3BAAID%2CmBApBH%2CoBAKC%2CmBAcC%2CcACE%3BAAAD%2CkBApBH%2CoBAKC%2CmBAcC%2CcACE%3BAAAD%2CsBApBH%2CoBAKC%2CmBAcC%2CcACE%3BAAAD%2CoBApBH%2CoBAKC%2CmBAcC%2CcACE%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CaAAA%3B%3BAAzBL%2CmBAEC%2CoBA2BC%3BAA7BmB%2CkBAEpB%2CoBA2BC%3BAA7BuC%2CsBAExC%2CoBA2BC%3BAA7B%2BD%2CoBAEhE%2CoBA2BC%3BEACC%2CaAAA%3B%3BAAKH%2CmBACC%2CSACC%3BAAFmB%2CkBACpB%2CSACC%3BAAFuC%2CsBACxC%2CSACC%3BAAF%2BD%2CoBAChE%2CSACC%3BEACC%2C2BAAA%3BEACA%2C2BAAA%3B%3BAAJH%2CmBACC%2CSAKC%3BAANmB%2CkBACpB%2CSAKC%3BAANuC%2CsBACxC%2CSAKC%3BAAN%2BD%2CoBAChE%2CSAKC%3BAANF%2CmBACC%2CSAKgB%3BAANI%2CkBACpB%2CSAKgB%3BAANwB%2CsBACxC%2CSAKgB%3BAANgD%2CoBAChE%2CSAKgB%3BEACd%2CUAAA%3B%3BAAKH%3BEACC%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3B%3BAAGD%3BEACC%2C2BAAA%3BEACA%2C2BAAA%3BEACA%2CqBAAA%3BEACA%2C0BAAA%3BEACC%2CiBAAA%3B%3BAACD%2CsBAAC%3BEACA%2CcAAA%3BEACA%2CaAAA%3B%3BAARF%2CsBAUC%3BEACC%2CYAAA%3BEACA%2CWAAA%3B%3BAAZF%2CsBAUC%2CYAGC%3BEACC%2CoBAAA%3B%3BAAdH%2CsBAkBC%3BEACC%2C2BAAA%3B%3BAAnBF%2CsBAsBC%3BEACC%2CqBAAA%3BEACE%2CyBAAA%3BEACA%2CYAAA%3B%3BAAzBJ%2CsBA4BC%3BEACC%2CyBAAA%3BEACE%2CYAAA%3BEACF%2CUAAA%3BEACA%2CsBAAA%3BEACE%2CkBAAA%3B%3BAAjCJ%2CsBA4BC%2CeAMC%3BEACC%2CmBAAA%3B%3BAAnCH%2CsBA4BC%2CeAMC%2CaAEC%3BEACC%2CcAAA%3B%3BAArCJ%2CsBA4BC%2CeAMC%2CaAKC%3BEACC%2CgBAAA%3BEACA%2CcAAA%3B%3BAACA%2CsBAdH%2CeAMC%2CaAKC%2CYAGE%3BEACA%2C0BAAA%3B%3BAA3CL%2CsBA4BC%2CeAmBC%3BEACG%2CiBAAA%3BEACD%2CSAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3B%3BAACA%2CsBA9BH%2CeAmBC%2CaAWG%3BEACA%2CmBAAA%3B%3BAAIJ%2CsBAAC%2CWACA%3BEACC%2CWAAA%3BEACA%2CWAAA%3BEACA%2CcAAA%3B%3BAAKH%2CkBACC%2CuBACC%3BAAFkB%2CoBACnB%2CuBACC%3BEACC%2CWAAA%3B%3BAAKH%2CiBACC%3BEACC%2CWAAA%3BEACA%2CgBAAA%3B%3BAACA%2CiBAHD%2CYAGE%3BEACA%2CWAAA%3BEACA%2C0BAAA%3B%3BAAID%2CiBADD%2CgBACE%2CIAAI%3BEACJ%2C2BAAA%3B%3BAAXH%2CiBAcC%3BEACC%2CmBAAA%3BEACE%2CWAAA%3BEACA%2CWAAA%3B%3BAAjBJ%2CiBAcC%2CYAIC%3BEACC%2CoBAAA%3B%3BAAnBH%2CiBAsBC%3BEACC%2CeAAA%3BEACE%2CYAAA%3BEACA%2CwBAAA%3B%3BAAzBJ%2CiBAsBC%2CmBAIC%3BEACC%2CqBAAA%3B%3BAAKH%3BEACC%2CmBAAA%3B%3BAADD%2CkBAEC%3BEACC%2CWAAA%3BEACE%2CgBAAA%3BEACA%2CeAAA%3B%3BAACF%2CkBAJD%2CYAIE%3BEACA%2CcAAA%3B%3BAAMF%2CUAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3B%3BAAIF%2CqBACC%2CmBACC%3BEACC%2CkBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CqBAJF%2CmBACC%2CGAGE%3BEACA%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3BAAbJ%2CqBACC%2CmBAeC%3BEACC%2C2BAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3B%3BAACA%2CqBAnBF%2CmBAeC%2CaAIE%3BEACA%2C0BAAA%3BEACA%2CWAAA%3B%3BAAMJ%3BEACC%2C2BAAA%3BEACA%2C2BAAA%3B%3BAAFD%2CwBAGC%3BEACC%2CiBAAA%3B%3BAAJF%2CwBAMC%3BEACC%2CSAAA%3B%3BAAID%2CqBACC%3BEACC%2CoBAAA%3BEACA%2C8BAAA%3BEACA%2C6BAAA%3B%3BAAJF%2CqBACC%2CyBAIC%3BEACG%2C0BAAA%3BEACD%2C2BAAA%3BEACA%2CWAAA%3B%3BAAKJ%3BEACC%2CuBAAA%3B%3BAADD%2CkBAEC%3BEACC%2CYAAA%3BEACA%2CwBAAA%3B%3BAAIF%2CuBACC%2CqBACC%3BEACE%2CgBAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CSAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2C%2BBAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3BAACA%2CuBAjBH%2CqBACC%2CYAgBG%3BEACA%2CmBAAA%3B%3BAAMN%3BEACC%2C2BAAA%3BEACC%2C2BAAA%3B%3BAAID%2CiBAAC%3BEACA%2C2BAAA%3BEACE%2C2BAAA%3B%3BAAOJ%2CuBACC%3BEACC%2CmBAAA%3B%3BAACA%2CuBAFD%2CaAEE%3BEACA%2CmBAAA%3B%3BAAKH%3BEACG%2CYAAA%3BEACC%2CqBAAA%3B%3BAAGJ%3BEACG%2CWAAA%3BEACC%2CqBAAA%3B%3BAAGJ%2CoBACE%3BEACE%2CmBAAA%3B%3BAAIJ%3BEACE%2CwBAAA%3B%3BAAaF%2CQAV0B%3BEACzB%2CmBACC%2CoBACC%3BEAFmB%2CkBACpB%2CoBACC%3BEAFuC%2CsBACxC%2CoBACC%3BEAF%2BD%2CoBAChE%2CoBACC%3BIACC%2CaAAA%3B%3B%3BAA2BJ%2CQArB0B%3BEACzB%2CmBACC%2CQAAO%3BEADa%2CkBACpB%2CQAAO%3BEADiC%2CsBACxC%2CQAAO%3BEADyD%2CoBAChE%2CQAAO%3BIACN%2CsBAAA%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3B%3BEAJF%2CmBAMC%3BEANoB%2CkBAMpB%3BEANwC%2CsBAMxC%3BEANgE%2CoBAMhE%3BIACC%2CsBAAA%3BIACA%2C2BAAA%3BIACA%2CmBAAA%3B%3BEAID%2CsBAAC%3BIACA%2CaAAA%3BIACA%2CcAAA%3B%3B%3BAAsBH%2CQAjB0B%3BEACxB%2CoBACE%2CGAAE%2CaAAa%3BIACX%2C2YAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CeAAA%3BIACA%2CcAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CQAAA%3BIACA%2CWAAW%2CiBAAiB%2CeAA5B%3BIACA%2CWAAA%3B%3B%3BAA8BR%2CQAzB0B%3BEACxB%3BIACC%2C2BAAA%3BIACA%2C2BAAA%3BIACA%2CkCAAA%3B%3BEAHD%2CqBAIC%3BIACC%2C6BAAA%3BIACA%2C2BAAA%3BIACA%2CkCAAA%3BIACA%2C2BAAA%3B%3BEARF%2CqBAIC%2CyBAKC%3BIACC%2CUAAA%3B%3BEAVH%2CqBAaC%3BIACC%2CUAAA%3BIACA%2CgBAAA%3B%3BEAfF%2CqBAaC%2CaAGC%3BIACC%2CgBAAA%3B%3B%3BAAqBL%2CQAd0B%3BEACzB%2CsBACC%3BIACC%2CWAAA%3BIACA%2CkBAAA%3B%3BEAHF%2CsBAKC%3BEALD%2CsBAKkB%3BIAChB%2CWAAA%3B%3B%3B%3BAAQF%2COAAC%2CMACA%3BEACC%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3B%3BAAKH%3BEACC%2C0BAAA%3BEACA%2C2BAAA%3BEACA%2CiBAAA%3B%3BAAID%3BEACE%2CaAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAgB%2CyDAAhB%3BEACA%2C2BAAA%3BEACA%2CYAAA%3B%3B%3BAAUF%2CQACE%2CKACE%3BEACE%2CkCAAA%3BEACA%2CiBAAA%3B%3BAAeN%2CQAV2B%3BEACzB%2COACE%3BIACE%2CwBAAA%3B%3B%3B%3BAAON%2CsBACC%2CWACC%3BEACC%2CgBAAA%3B%3BAAIH%2CeACC%3BEACC%2CeAAA%3BEACA%2CkBAAA%3B%3BAAHF%2CeACC%2CGAGC%3BEACC%2CyBAAA%3B%3BAALH%2CeACC%2CGAGC%2CGAEC%3BEACC%2CcAAA%3BEACA%2CgBAAA%3B%3BAACA%2CeARH%2CGAGC%2CGAEC%2CEAGE%3BEACA%2CcAAA%3B%3BAAML%3BEACC%2C8BAAA%3B%3BAADD%2CgBAEE%2CKACA%3BEACC%2CcAAA%3B%3BAACA%2CgBAHD%2CKACA%2CEAEE%3BEACA%2CcAAA%3B%3BAANJ%2CgBAUC%2CGAAE%3BEACD%2CmBAAA%3BEACA%2C4BAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3BAAdF%2CgBAUC%2CGAAE%2CQAKD%3BEACC%2CWAAA%3BEACA%2CgBAAA%3B%3BAAKA%2CgBAFD%2CKAAE%2CQACF%2CEACE%3BEACA%2CcAAA%3B%3BAAvBJ%2CgBA2BC%2CGAAE%3BEACD%2C6BAAA%3BEACA%2C8BAAA%3BEACA%2CkBAAA%3BEACA%2CeAAA%3B%3BAA%5C%2FBF%2CgBA2BC%2CGAAE%2CQAKD%3BEACC%2CgBAAA%3B%3BAAjCH%2CgBAoCC%2CGAAE%3BEACD%2C6BAAA%3BEACA%2C8BAAA%3B%3BAAtCF%2CgBAoCC%2CGAAE%2CQAGD%3BEACC%2CWAAA%3B%3BAAKA%2CgBAFD%2CKAAE%2CQACF%2CEACE%3BEACA%2CcAAA%3B%3BAA9CJ%2CgBAkDC%2CGAAE%3BEACD%2C6BAAA%3BEACA%2C8BAAA%3B%3BAApDF%2CgBAkDC%2CGAAE%2CQAGD%3BEACC%2CWAAA%3B%3BAAKA%2CgBAFD%2CKAAE%2CQACF%2CEACE%3BEACA%2CcAAA%3B%3BAAKJ%2CgBACC%2CGACC%3BEACC%2CmBAAA%3BEACA%2C4BAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3B%3B%3BAAQH%3BEACC%2CkBAAA%3BEACA%2CoBAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CmBAAA%3BEACA%2C8BAAA%3BEACA%2CwBAAA%3B%3BAAXD%2C0BAYC%3BEACC%2CaAAA%3B%3BAACE%2C0BAFH%2CqBAEI%3BEACC%2CgCAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CSAAA%3BEACA%2CWAAA%3B%3BAAnBN%2C0BAYC%2CqBASG%3BEACD%2CWAAA%3B%3BAAeH%2CQAV2B%3BEACzB%3BIACE%2CaAAA%3B%3BEADF%2C0BAEE%3BIACE%2CaAAA%3BIACA%2CmBAAA%3B%3B%3BAAgBN%2CQAX2B%2CwBAAwB%3BEACjD%2C0BACE%2CqBACE%3BIACE%2CWAAA%3BIACA%2CYAAA%3B%3B%3BAAiBR%2CQAX2B%3BEACzB%2C0BACE%2CqBACE%3BIACE%2CWAAA%3BIACA%2CYAAA%3B%3B%3BAAqBR%2CQAf2B%3BEAGrB%2C0BADF%2CqBACG%3BIACC%2CmBAAA%3B%3B%3B%3BAAWR%2CQAAQ%3BEACN%2CeAAA%3BEACA%2CgBAAA%3B%3BAAEF%2CQAAQ%3BEACN%2CeAAA%3BEACA%2CgBAAA%3B%3BAAOM%2CQAHL%2CMACE%2CIACE%2CYACE%3BEACC%2CSAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAQF%2CQAHL%2CQACE%2CIACE%2CYACE%3BEACC%2CSAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3B%3B%3BAAcV%2CcAAc%3BEACb%2CkBAAA%3BEACA%2CkBAAA%3B%3BAAFD%2CcAAc%2CsBAGb%3BEACC%2CgBAAA%3B%3BAAGF%2CqBACC%3BEACC%2CeAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2C8BAAA%3BEACA%2CcAAA%3BEACA%2CUAAA%3BEACA%2CoBAAA%3BEACA%2CoBAAA%3B%3BAAGF%3BEACC%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%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%3BEACA%2CaAAA%3B%3BAA%5C%2FBF%2CWA2BC%2CaAKC%3BEACC%2CmBAAA%3B%3BAAjCH%2CWAoCC%2CcACC%3BEACC%2CcAAA%3B%3BAAtCH%2CWAyCC%3BEACC%2CmBAAA%3B%3BAA1CF%2CWA4CC%2CgBACC%3BEACC%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAjDH%2CWA4CC%2CgBAOC%3BEAIC%2CoBAAA%3B%3BAAvDH%2CWA4CC%2CgBAOC%2CUACC%2CIAAG%3BEACF%2CaAAA%3B%3BAAMJ%2CqBAAqB%2CKACpB%3BEACC%2CQAAA%3B%3BAAFF%2CqBAAqB%2CKAIpB%3BEACC%2CUAAA%3BEACA%2CoBAAA%3B%3BAAYF%2CQAR2B%3BEACzB%3BIACC%2CeAAA%3BIACA%2CQAAA%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAcH%2CQAV2B%3BEACzB%2CqBACE%3BIACE%2CeAAA%3BIACA%2CUAAA%3B%3B%3BAAiCN%2CQA3B0B%3BEACxB%2CqBAAqB%2CKACnB%3BIACE%2CWAAA%3BIACA%2CwBAAA%3BIACA%2CSAAA%3B%3BEAJJ%2CqBAAqB%2CKACnB%2CYAIE%3BIACE%2CWAAA%3BIACA%2COAAA%3BIACA%2CUAAA%3BIACA%2CeAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3BIACA%2C4BAAA%3B%3BEACA%2CqBAbe%2CKACnB%2CYAIE%2CSAQG%3BIACC%2CSAAS%2CGAAT%3BIACA%2CWAAA%3BIACA%2CaAAa%2CwBAAb%3BIACA%2CeAAA%3B%3B%3BAAWN%2CcADD%2CUACE%3BAAAD%2CcADY%2CSACX%3BEACC%2CcAAA%3B%3BAAGA%2CcALH%2CUAIE%2CMACE%3BAAAD%2CcALU%2CSAIX%2CMACE%3BEACC%2CcAAA%3B%3B%3BAASN%2CcAAC%2CsBACC%3BEACE%2CYAAA%3B%3BAAoBN%2CQAf2B%3BEACzB%2CsBACE%2CeACE%3BIACE%2CuCAAA%3BIACA%2C0BAAA%3B%3BEACA%2CsBAJJ%2CeACE%2CcAGG%2CUAAU%3BIACT%2CyBAAA%3B%3B%3BAAsBV%2CQAd0B%2CuBAAwB%3BEAChD%2CsBACE%2CeACE%3BIACE%2CuCAAA%3BIACA%2C0BAAA%3B%3BEACA%2CsBAJJ%2CeACE%2CcAGG%2CUAAU%3BIACT%2CyBAAA%3B%3B%3BAAwBV%2CQAjB0B%3BEACxB%2CsBACE%2CeACE%3BIACE%2CuCAAA%3BIACA%2C0BAAA%3B%3BEACA%2CsBAJJ%2CeACE%2CcAGG%2CUAAU%3BIACT%2CyBAAA%3B%3B%3B%3BAAUV%2CaACC%2COAAM%3BEACL%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3B%3BAAJF%2CaACC%2COAAM%2COAIL%2CeACC%2CcACC%3BEACC%2CcAAA%3BEACA%2CsBAAA%3B%3BAATL%2CaACC%2COAAM%2COAIL%2CeAOC%3BEACC%2CgBAAA%3BEACA%2CyCAAA%3BEACA%2CcAAA%3BEACA%2CsDAAA%3BEACA%2CmDAAA%3BEACA%2C8CAAA%3BEACA%2CqBAAA%3B%3BAAnBJ%2CaACC%2COAAM%2COAIL%2CeAgBC%3BEACC%2CeAAA%3BEACA%2CaAAa%2CoBAAb%3BEACA%2CuBAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CaAAA%3BEACI%2CmBAAA%3B%3BAA5BR%2CaACC%2COAAM%2COAIL%2CeAgBC%2CmBAQC%3BEACC%2CeAAA%3B%3BAA9BL%2CaACC%2COAAM%2COAiCL%3BEACC%2CiBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3BEACA%2CsBAAA%3B%3BAAtCH%2CaACC%2COAAM%2COAuCL%2CcACC%2CSACC%3BEACC%2CiCAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CoBAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3B%3BAACA%2CaAtDJ%2COAAM%2COAuCL%2CcACC%2CSACC%2CUAaE%3BEACA%2CSAAS%2COAAT%3B%3BAAED%2CaAzDJ%2COAAM%2COAuCL%2CcACC%2CSACC%2CUAgBE%3BEACA%2CcAAA%3B%3BAA3DN%2CaACC%2COAAM%2COAuCL%2CcACC%2CSAqBC%3BEACC%2CiCAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CWAAW%2CgBAAX%3BEACA%2CoBAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3B%3BAACA%2CaA1EJ%2COAAM%2COAuCL%2CcACC%2CSAqBC%2CUAaE%3BEACA%2CSAAS%2COAAT%3B%3BAAED%2CaA7EJ%2COAAM%2COAuCL%2CcACC%2CSAqBC%2CUAgBE%3BEACA%2CcAAA%3B%3B%3BAAoBN%2CQAT0B%3BEACzB%2CsBAAsB%2C0BACrB%2CcACC%3BIACC%2CgBAAA%3B%3B%3BAAgBJ%3BEAVC%2CsBAAsB%2C0BACrB%2CcACC%3BIACC%2CgBAAA%3B%3B%3BAAOJ%2CMAAM%3BEACL%2CiBAAA%3B%3BAADD%2CMAAM%2COAEJ%3BEACE%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CWAAA%3BEACA%2C2BAAA%3B%3BAANJ%2CMAAM%2COAEJ%2CcAKE%3BEACE%2CeAAA%3BEACA%2CmBAAA%3BEACA%2CiBAAA%3BEACA%2CeAAA%3B%3BAAMJ%2CcAAC%3BEACC%2C0CAAA%3BEACA%2CiBAAA%3B%3BAAFF%2CcAAC%2CeAGC%3BEACE%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3B%3BAANJ%2CcAAC%2CeAQC%2CgBAAe%3BEACb%2CwBAAA%3B%3BAAIN%2CeACC%2COAAM%3BEACL%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAAGF%2CqBACC%2CkBACE%3BEACA%2CkBAAA%3B%3BAAHH%2CqBACC%2CkBAIE%3BEACA%2CmBAAA%3BEACA%2CWAAW%2CoBAAX%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CSAAA%3BEACA%2CyBAAA%3B%3BAACA%2CqBAXF%2CkBAIE%2CgBAOC%3BEACA%2CmBAAA%3B%3BAAKJ%2CwBACC%3BEACC%2C0BAAA%3B%3BAAFF%2CwBAIC%2CeAAc%3BEACb%2C8BAAA%3B%3BAALF%2CwBAOC%3BEACC%2CqBAAA%3BEACA%2CmBAAA%3B%3BAACA%2CwBAHD%2CiBAGE%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3B%3BAAED%2CwBAPD%2CiBAOE%3BEACA%2CyBAAA%3BEACA%2CsBAAA%3B%3BAAIH%2CsBACC%2COAAM%3BEACL%2CaAAA%3B%3BAAIF%3BEACE%2CeAAA%3BEACA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CsBAAA%3BEACA%2CmCAAA%3BEACA%2C4BAAA%3BEACA%2CqCAAA%3B%3BAAGF%2CsBACE%2CeAAc%3BEACZ%2CmCAAA%3BEACA%2C4BAAA%3BEACA%2C0BAAA%3BEACA%2CsBAAA%3BEACA%2C0BAAA%3B%3BAANJ%2CsBASE%2CeAAc%3BEACZ%2C0BAAA%3BEACA%2CsBAAA%3BEACA%2C0BAAA%3B%3BAAIJ%3BEACI%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CqBAAA%3B%3BAAGJ%2CuBACE%3BEACI%2CoCAAA%3B%3BAAWN%2CQAP2B%3BEACvB%2CuBAAwB%3BIACpB%2CWAAA%3BIACA%2CYAAA%3B%3B%3BAA6BR%2CQAzB0B%2CuBAAwB%3BEAChD%2C0BACE%2CcACE%2CQAAO%3BIACL%2CWAAA%3BIACA%2CeAAA%3B%3BEAJN%2C0BACE%2CcAKE%3BIACE%2CWAAA%3B%3BEAGJ%2C0BAAC%2CsBACC%3BIACE%2CaAAA%3BIACA%2CsBAAA%3B%3BEAIN%2CMAAM%3BIACJ%2CcAAA%3BIACA%2C2BAAA%3B%3B%3BAAgCJ%2CQA3B0B%3BEAGtB%2CcAAC%2CsBACC%3BIACE%2C8BAAA%3B%3BEAKN%2CsBAAsB%2C0BACpB%2CSACE%2CQAAO%3BIACL%2CiBAAA%3B%3BEAIN%2CMAAM%3BIACJ%2CcAAA%3BIACA%2C2BAAA%3B%3B%3BAAQJ%2CQAAQ%2CKAAK%2CMACX%2CQAAK%2CQACL%2CSAAQ%2CUAAU%2CWACjB%3BEACC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CqBAAA%3B%3BAATJ%2CQAAQ%2CKAAK%2CMACX%2CQAAK%2CQACL%2CSAAQ%2CUAAU%2CWACjB%2CGAOC%3BEACC%2CgBAAA%3BEACA%2CqBAAA%3B%3BAAZL%2CQAAQ%2CKAAK%2CMACX%2CQAAK%2CQACL%2CSAAQ%2CUAAU%2CWACjB%2CGAOC%2CGAGC%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CcAAA%3B%3BAAED%2CQAlBG%2CKAAK%2CMACX%2CQAAK%2CQACL%2CSAAQ%2CUAAU%2CWACjB%2CGAOC%2CGAQE%3BEACA%2CwBAAA%3B%3B%3BAAoCN%2CQAxB2B%3BEAC1B%3BIACC%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAHD%2CKAIC%3BIACC%2CcAAA%3BIACA%2CqBAAA%3B%3BEAGF%2CWAAY%3BIACX%2CcAAA%3B%3BEAED%2CiBACC%2CQAAO%3BIACN%2CcAAA%3B%3BEAGF%3BIACC%2CoCAAA%3BIACA%2CiBAAA%3B%3B%3BAAwFF%2CQApF0B%3BEACzB%3BIACI%2CoCAAA%3B%3BEAEJ%3BIACC%2CgBAAA%3B%3BEADD%2CcAEC%3BIACC%2CeAAA%3B%3BEAHF%2CcAKC%3BIACC%2C0BAAA%3B%3BEAGF%2CiBACC%2CQAAO%3BIACN%2CWAAA%3B%3BEAFF%2CiBACC%2CQAAO%2CSAEN%3BIACC%2CWAAA%3BIACA%2CmBAAA%3B%3BEAIH%2CWACC%3BIACC%2CWAAA%3B%3BEACA%2CWAFD%2CYAEE%2CWACA%3BEADa%2CWAFf%2CYAEgB%2CaACd%3BIACC%2CWAAA%3B%3BEAKJ%2CYACC%3BIACC%2CSAAA%3B%3BEAFF%2CYACC%2CGAEC%3BIACC%2C8BAAA%3B%3BEACA%2CYAJF%2CGAEC%2CGAEE%2CUAAU%3BIACV%2CeAAA%3B%3BEAMJ%2COAAO%2CQACN%3BIACC%2CUAAA%3BIACA%2CWAAA%3B%3BEACA%2COAJK%2CQACN%2COAGE%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2C2BAAA%3BIACA%2CoBAAA%3BIACA%2CcAAA%3B%3BEAED%2COAXK%2CQACN%2COAUE%3BIACA%2CUAAA%3BIACA%2C2BAAA%3B%3BEAbH%2COAAO%2CQACN%2COAcC%3BIACC%2CqBAAA%3B%3BEAEC%2COAlBG%2CQACN%2COAcC%2CQAEC%2CGACE%3BIACA%2CeAAA%3B%3BEAnBL%2COAAO%2CQAwBN%2COAAM%3BIACL%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAIF%2CWACC%2CWACC%3BIACC%2CiBAAA%3BIACA%2CeAAA%3B%3B%3BAAYJ%2CQAN0B%3BEACzB%3BIACC%2CaAAA%3B%3B%3BAAgBF%2CQAZ0B%2CuBAAwB%3BEAI1C%2CaAFJ%2CSACG%2CaACE%3BIACC%2CgBAAA%3B%3B%3BAA4iBV%2CQAriB0B%3BEACzB%3BIACC%2CoBAAA%3B%3BEAED%3BIACC%2CWAAA%3BIACA%2CUAAA%3BIACA%2C4BAAA%3BIACA%2C2BAAA%3BIACA%2C2BAAA%3B%3BEALD%2CKAMC%3BIACC%2CqBAAA%3B%3BEAKA%2CiBADD%2CQAAO%2CSACL%3BIACA%2CSAAS%2CEAAT%3B%3BEAIH%3BIACC%2CcAAA%3BIACA%2CWAAW%2CsCAAX%3BIACA%2CcAAA%3BIACA%2CoBAAA%3BIACA%2CiBAAA%3B%3BEACA%2CeAAC%3BIACA%2CSAAS%2CEAAT%3BIACA%2C%2BBAAA%3BIACA%2CiCAAA%3BIACA%2CoCAAA%3BIACA%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CiBAAA%3B%3BEAGA%2CeADA%2CKACC%3BIACA%2CWAAW%2CaAAX%3B%3BEAIH%2CmBACC%3BIACC%2CaAAA%3B%3BEACA%2CmBAFD%2CkBAEE%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIACA%2COAAA%3BIACA%2CQAAA%3BIACA%2CSAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CwCAAA%3B%3BEAIH%3BEAAkB%3BIACjB%2CWAAA%3B%3BEADD%2CgBAEC%3BEAFiB%2CiBAEjB%3BIACC%2CWAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CyBAAA%3B%3BEANF%2CgBAEC%2CGAKC%3BEAPgB%2CiBAEjB%2CGAKC%3BIACC%2CcAAA%3BIACA%2CiBAAA%3BIACA%2C6BAAA%3B%3BEAMD%2CgBADD%2CGACE%3BIACA%2CaAAA%3B%3BEAHH%2CgBACC%2CGAIC%3BIACC%2CsBAAA%3B%3BEAED%2CgBAPD%2CGAOE%3BIACA%2CkBAAA%3B%3BEADD%2CgBAPD%2CGAOE%2CYAEA%3BIACC%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CQAAA%3BIACA%2CSAAA%3B%3BEANF%2CgBAPD%2CGAOE%2CYAQA%3BIACC%2CkBAAA%3B%3BEAKJ%3BIACC%2CkBAAA%3BIACA%2C6BAAA%3BIACA%2C2BAAA%3B%3BEACA%2CYAAC%3BIACA%2CSAAS%2CEAAT%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3B%3BEAGF%2CYAAa%2COAAM%3BIAClB%2CqBAAA%3B%3BEAED%2CYAAa%2CQAAO%3BIACnB%2CqBAAA%3B%3BEAED%2COAAO%2CMAAO%2CUAAO%3BIACpB%2CgBAAA%3B%3BEAGD%2CaACC%3BIACC%2C6BAAA%3BIACA%2CoBAAA%3BIACA%2COAAA%3BIACA%2CQAAA%3BIACA%2CcAAA%3BIACA%2CsBAAA%3BIACA%2CYAAA%3BIACA%2CwBAAA%3BIACA%2CmBAAA%3B%3BEAGA%2CaADD%2CMAAK%2CWACH%2COACA%2CQAAO%3BIACN%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CaAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3B%3BEACA%2CaAVH%2CMAAK%2CWACH%2COACA%2CQAAO%2COAQL%3BIACA%2CSAAS%2COAAT%3BIACA%2CaAAa%2CmBAAb%3B%3BEAMH%2CaADD%2COACE%3BIACA%2CcAAA%3BIACA%2C4BAAA%3B%3BEAKH%2COAAQ%3BIACP%2CwBAAA%3B%3BEAED%2COAAO%3BIACN%2CwBAAA%3BIACA%2CwBAAA%3B%3BEAGD%2COAAO%3BIACN%2C4BAAA%3BIACA%2C0BAAA%3BIACA%2C2BAAA%3BIACA%2CwBAAA%3B%3BEAED%3BIACC%2C6BAAA%3BIACA%2CUAAA%3BIACA%2CMAAA%3BIACA%2CyBAAA%3BIACA%2C2BAAA%3BIACA%2CgBAAA%3B%3BEAED%3BIACC%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CwBAAA%3BIACA%2CiBAAA%3B%3BEAJD%2CiBAKC%2CQAAO%3BIACN%2CiBAAA%3BIACA%2CYAAA%3B%3BEACA%2CiBAHD%2CQAAO%2CSAGL%3BIACA%2CgBAAA%3B%3BEAIH%3BIACC%2CYAAA%3BIACA%2CUAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2C6BAAA%3B%3BEAPD%2CWAQC%3BIACC%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3B%3BEACA%2CWAJD%2CYAIE%3BIACA%2CgBAAA%3B%3BEAKH%3BIACC%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2C0BAAA%3B%3BEALD%2CaAMC%3BIACC%2CsBAAA%3B%3BEAIF%3BIACC%2CkBAAA%3BIACA%2CQAAA%3BIACA%2CMAAA%3BIACA%2CgBAAA%3B%3BEAED%3BIACC%2CwBAAA%3B%3BEACA%2CWAAC%3BIACA%2CcAAA%3BIACA%2C4BAAA%3B%3BEAIF%2CoBACC%3BEADD%2CoBACiB%3BEADjB%2CoBACkC%3BEADlC%2CoBACgD%3BIAC9C%2CWAAA%3BIACA%2CmBAAA%3B%3BEAHF%2CoBAKC%3BIACC%2CgBAAA%3B%3BEAcF%2CSACC%3BIACC%2CyBAAA%3B%3BEAIF%3BIACC%2CaAAA%3B%3BEAED%3BIACC%2CoBAAA%3BIACA%2CqBAAA%3B%3BEACA%2C0BAAC%3BIACA%2CaAAA%3B%3BEAJF%2C0BAMC%3BIACC%2CgBAAA%3B%3BEAGF%3BIACC%2CkCAAA%3BIACA%2CqBAAA%3B%3BEAFD%2CWAGC%3BIACC%2CqBAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3BIACA%2C4BAAA%3BIACA%2CiCAAA%3BIACA%2CoCAAA%3BIACA%2CqBAAA%3BIACA%2CSAAA%3B%3BEACA%2CWATD%2CkBASE%3BIACA%2C2BAAA%3BIACA%2CkCAAA%3BIACA%2CmCAAA%3BIACA%2CqBAAA%3B%3BEAhBH%2CWAmBC%3BIACC%2CaAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2C0CAAA%3B%3BEACA%2CWAND%2CWAME%3BIACA%2CcAAA%3B%3BEA1BH%2CWAmBC%2CWASC%3BIACC%2CeAAA%3BIACA%2CcAAA%3BIACA%2CcAAA%3BIACA%2CiBAAA%3BIACA%2C6BAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CmBAAA%3B%3BEAKH%3BIACC%2CWAAA%3BIACA%2COAAA%3B%3BEAED%2C0BACC%2CuBACC%2CKACC%2CGACC%2CGACC%3BIACC%2CcAAA%3BIACA%2CaAAA%3BIACA%2C6BAAA%3BIACA%2CcAAA%3BIACA%2CmBAAA%3BIACA%2CqBAAA%3B%3BEACA%2C0BAXL%2CuBACC%2CKACC%2CGACC%2CGACC%2CEAOE%3BIACA%2CcAAA%3B%3BEAbP%2C0BACC%2CuBACC%2CKACC%2CGACC%2CGAYC%3BIACC%2C6BAAA%3B%3BEAjBN%2C0BACC%2CuBACC%2CKACC%2CGACC%2CGAYC%2CGAEC%2CGACC%3BIACC%2C0BAAA%3BIACA%2CcAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3B%3BEACA%2C0BAvBP%2CuBACC%2CKACC%2CGACC%2CGAYC%2CGAEC%2CGACC%2CEAKE%3BIACA%2CcAAA%3B%3BEAWT%2CQAAQ%2CKAAK%2CMACX%2CQAAK%3BIACL%2C2BAAA%3BIACA%2C2BAAA%3BIACA%2C4BAAA%3BIACA%2C6BAAA%3B%3BEALF%2CQAAQ%2CKAAK%2CMACX%2CQAAK%2CMAKJ%3BIACA%2CkBAAA%3BIACA%2C6BAAA%3B%3BEACA%2CQATK%2CKAAK%2CMACX%2CQAAK%2CMAKJ%2CUAGC%3BIACA%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CQAAA%3BIACA%2CgBAAA%3BIACA%2CQAAA%3BIACA%2CSAAA%3BIACA%2CyBAAA%3BIACA%2CiCAAA%3BIACA%2CoCAAA%3BIACA%2C8BAAA%3BIACA%2CkBAAA%3B%3BEAGF%2CQAxBM%2CKAAK%2CMACX%2CQAAK%2CMAuBJ%2COACC%3BIACA%2C6BAAA%3B%3BEACA%2CQA3BI%2CKAAK%2CMACX%2CQAAK%2CMAuBJ%2COACC%2CUAEC%3BIACA%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIACA%2CgBAAA%3BIACA%2CQAAA%3BIACA%2CSAAA%3BIACA%2CcAAA%3BIACA%2CkCAAA%3BIACA%2CmCAAA%3BIACA%2C6BAAA%3B%3BEAtCL%2CQAAQ%2CKAAK%2CMA2CX%2CQAAK%3BIACL%2CwBAAA%3BIACA%2CgBAAA%3BIACA%2CsBAAA%3BIACA%2CwBAAA%3B%3BEA%5C%2FCF%2CQAAQ%2CKAAK%2CMAiDZ%2CMAAK%2CKACJ%3BIACC%2CsBAAA%3B%3BEAKH%2CKAAK%2CcACJ%2CMACC%3BIACC%2CaAAA%3B%3BEAHH%2CKAAK%2CcAMJ%3BIACC%2C0BAAA%3BIACA%2CuBAAA%3B%3BEARF%2CKAAK%2CcAUJ%3BIACC%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CyBAAA%3B%3BEAIF%2CiBACC%2CQAAO%2CSACN%2CSAAQ%3BIACP%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CMAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3BIACA%2CuBAAA%3BIACA%2CuBAAA%3BIACA%2C6BAAA%3BIACA%2C6BAAA%3BIACA%2C4BAAA%3BIACA%2CWAAW%2CgBAAX%3BIACA%2CqBAAA%3BIACA%2CYAAA%3B%3BEAhBH%2CiBAmBC%3BIACC%2CwBAAA%3B%3BEAGF%2CeACC%3BIACC%2C6BAAA%3BIACA%2C2BAAA%3B%3BEAHF%2CeAKC%3BIACC%2C8BAAA%3B%3BEANF%2CeAKC%2CmBAEC%3BIACC%2CcAAA%3B%3BEAID%2CeADD%2CQAAO%2COACL%3BIACA%2CSAAS%2CEAAT%3B%3BEAKH%2CKACC%3BIACC%2CsBAAA%3BIACA%2CgBAAA%3BIACA%2CoBAAA%3B%3BEAIF%2C4BACC%3BIACC%2CuBAAA%3B%3BEAFF%2C4BAIC%3BIACC%2C2BAAA%3B%3BEAIF%2CKAAK%2CcACJ%3BIACC%2C2BAAA%3B%3BEAGF%2CKAAK%2CKAAK%3BIACT%2CiBAAA%3B%3BEAGD%3BIACC%2CyBAAA%3B%3BEAED%3BIACC%2CyBAAA%3B%3BEAGD%2CiBACC%2CSAAS%3BIACR%2C8BAAA%3B%3BEAGF%2CeAAgB%3BIACf%2C0BAAA%3BIACA%2C0BAAA%3B%3BEAOG%2CQAHH%2CUACC%2CQACG%2CSACA%2CIAAI%3BIACJ%2C6BAAA%3B%3BEAOL%2CYAAY%3BIACX%2CyBAAA%3B%3BEAGD%3BIACC%2CwBAAA%3B%3BEAGD%2CiBACC%2CSACC%3BIACC%2CmBAAA%3BIACA%2C4BAAA%3BIACA%2C2BAAA%3B%3BEAKH%3BIACC%2CaAAA%3B%3BEAED%3BIACC%2CuBAAA%3B%3B%3BAAuBF%2CQAnB0B%3BEAExB%2CWAAC%2CoBACA%3BIACC%2CWAAA%3BIACA%2CeAAA%3B%3BEAIH%2CkBACC%3BIACC%2CWAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3B%3BAAwCH%2CQAlC0B%3BEACzB%2CYACC%2CGACC%3BIACC%2CWAAA%3BIACA%2CeAAA%3B%3BEAIH%2COACC%3BEADD%2COACS%2COAAM%3BIACb%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CuCAAA%3BIACA%2C2BAAA%3B%3BEARF%2COAUC%2COAAM%3BIACL%2CsBAAA%3B%3BEAGF%3BIACC%2CwBAAA%3B%3BEAGD%2CiBACC%2CSAAS%3BIACR%2CiBAAA%3B%3B%3BAAWH%2CQAN0B%3BEACzB%3BIACC%2CwBAAA%3B%3B%3BAA0BF%2CQAtB0B%3BEACzB%2CKAAK%2CKAAK%3BIACT%2CqBAAA%3BIACA%2CoBAAA%3BIACA%2CaAAA%3BIACA%2C8BAAA%3BIACA%2C0BAAA%3BIACA%2CsBAAA%3BIACA%2CwBAAA%3BIACA%2CgBAAA%3BIACA%2CoBAAA%3BIACA%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3BIACA%2CQAAA%3B%3BEAED%2CeAAgB%2CWAAW%2CQAAO%3BIAAoB%2CQAAA%3BIAAU%2CcAAA%3BIAAgB%2CWAAA%3BIAAa%2CeAAA%3B%3BEAC7F%2CeAAgB%2CWAAW%2CQAAO%3BIAAW%2CQAAA%3BIAAU%2CeAAA%3BIAAiB%2CcAAA%3BIAAgB%2CWAAA%3B%3BEACxF%2CeAAgB%2CWAAW%3BIAAoB%2CQAAA%3BIAAU%2CeAAA%3BIAAiB%2CcAAA%3BIAAgB%2CWAAA%3BIAAa%2CmBAAA%3B%3BEACvG%2CeAAgB%2CWAAW%2CQAAO%3BIAAS%2CQAAA%3BIAAU%2CeAAA%3BIAAiB%2CyBAAA%3BIAA2B%2CWAAA%3B%3B%3BAAuBlG%2CQApB0B%3BEACzB%2CcACC%2CYACC%3BIACC%2CmBAAA%3BIACA%2CsBAAA%3B%3BEAIH%2CeAAgB%2CWAAW%2CQAAO%3BEAAW%2CeAAgB%2CWAAW%3BEAAoB%2CeAAgB%2CWAAW%2CQAAO%3BIAC7H%2CsBAAA%3BIACA%2CyBAAA%3BIACA%2C0BAAA%3B%3B%3B%3BAAkBF%2CQAV0B%3BEAGvB%2C0BADC%2CcACA%3BIACA%2CaAAA%3B%3B%3BAAoBJ%2CQAd0B%3BEACzB%3BIACC%2CoBAAA%3BIACA%2CWAAW%2CgBAAX%3B%3BEAED%2CWACC%3BIACC%2CaAAA%3B%3B%3BAAiBH%2CQAV0B%3BEACzB%3BIACC%2CaAAA%3B%3BEAED%3BIACC%2CaAAA%3B%3B%3BAAsMF%2CQAjM0B%3BEACzB%3BIACC%2CwBAAA%3B%3BEAED%3BIACC%2CaAAA%3B%3BEAGD%3BEAAa%3BEAAgB%2CMAAM%3BIAClC%2CwBAAA%3B%3BEAGD%3BIACC%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CiBAAA%3B%3BEAEC%2CiBADD%2CgBACE%3BIACA%2CsBAAA%3B%3BEAED%2CiBAJD%2CgBAIE%3BIACA%2CsBAAA%3B%3BEAVH%2CiBAaC%2CQAAO%3BIACN%2CWAAA%3BIACA%2CUAAA%3B%3BEACA%2CiBAHD%2CQAAO%2CSAGL%3BIACA%2CgBAAA%3B%3BEAED%2CiBAND%2CQAAO%2CSAML%3BIACA%2CWAAA%3BIACA%2CYAAA%3B%3BEArBH%2CiBAaC%2CQAAO%2CSAUN%3BIACC%2CaAAA%3B%3BEAKH%3BIACC%2CUAAA%3B%3BEADD%2CKAEC%3BIACC%2CeAAA%3B%3BEAIF%2CcACC%3BIACC%2CsBAAA%3BIACA%2CsBAAA%3BIACA%2CqBAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3B%3BEANF%2CcACC%2CcAMC%3BIACC%2C2BAAA%3BIACA%2CuBAAA%3B%3BEATH%2CcACC%2CcAUC%3BIACC%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2C8BAAA%3B%3BEAdH%2CcACC%2CcAeC%3BIACC%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3BIACA%2CSAAA%3B%3BEApBH%2CcACC%2CcAeC%2CSAKC%2CQAAO%3BIACN%2CcAAA%3BIACA%2CmBAAA%3BIACA%2C0BAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3B%3BEACA%2CcA1BH%2CcAeC%2CSAKC%2CQAAO%2COAML%3BIACA%2CSAAS%2COAAT%3BIACA%2C0BAAA%3BIACA%2C4BAAA%3BIACA%2C4BAAA%3BIACA%2CWAAA%3BIACA%2CaAAa%2CmBAAb%3B%3BEAjCL%2CcAsCC%3BIACC%2CWAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3B%3BEA5CF%2CcA8CC%2CgBACC%3BIACC%2C2BAAA%3B%3BEAhDH%2CcA8CC%2CgBAIC%3BIACC%2CoBAAA%3BIACA%2CkBAAA%3B%3BEApDH%2CcA8CC%2CgBAQC%3BIACC%2CuBAAA%3BIACA%2CkCAAA%3B%3BEACA%2CcAXF%2CgBAQC%2CSAGE%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CWAAA%3B%3BEA5DJ%2CcA8CC%2CgBAQC%2CSAQC%3BIACC%2CWAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CaAAA%3BIACA%2CgBAAA%3BIACA%2CgBAAA%3B%3BEApEJ%2CcA8CC%2CgBAyBC%3BIACC%2CUAAA%3BIACA%2CWAAA%3B%3BEAzEH%2CcA8CC%2CgBA6BC%2CmBACC%3BIACC%2CUAAA%3B%3BEA7EJ%2CcA8CC%2CgBAkCC%3BIACC%2CWAAA%3B%3BEAjFH%2CcA8CC%2CgBAkCC%2CsBAEC%3BIACC%2CqBAAA%3B%3BEAnFJ%2CcA8CC%2CgBAkCC%2CsBAKC%3BIACC%2CqBAAA%3BIACA%2CYAAA%3B%3BEAvFJ%2CcA8CC%2CgBA4CC%2CQAAO%3BIACN%2CYAAA%3BIACA%2CUAAA%3B%3BEACA%2CcA%5C%2FCF%2CgBA4CC%2CQAAO%2COAGL%3BIACA%2CqBAAA%3BIACA%2CgBAAgB%2CiDAAhB%3BIACA%2CSAAS%2CEAAT%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CsBAAA%3B%3BEAnGJ%2CcA8CC%2CgBAwDC%3BIACC%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAzGH%2CcA8CC%2CgBAwDC%2CSAIC%3BIACC%2CmBAAA%3BIACA%2CyBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CYAAA%3BIACA%2CqBAAA%3BIACA%2CqBAAA%3BIACA%2CkBAAA%3B%3BEApHJ%2CcAwHC%2CgBACC%3BIACC%2CoBAAA%3BIACA%2CSAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3B%3BEAGA%2CcARF%2CgBAOC%2CEACE%2CIAAI%3BIACJ%2CgBAAA%3B%3BEAjIJ%2CcAwHC%2CgBAYC%3BIACC%2C8BAAA%3BIACA%2C4BAAA%3B%3BEAtIH%2CcAwHC%2CgBAgBC%3BIACC%2CcAAA%3BIACA%2CqBAAA%3BIACA%2CiBAAA%3B%3B%3BAAMJ%2CIAAI%3BEACH%2CgBAAA%3B%3B%3BAAuND%2CQAhD0B%3BEACzB%2C0BACC%3BIACC%2CaAAA%3B%3BEAGF%3BIACC%2CYAAA%3B%3BEAED%2CaACC%3BIACC%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3BIACA%2CiBAAA%3B%3BEANF%2CaAQC%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%3BEAIF%3BIACC%2CiBAAA%3BIACA%2CiBAAA%3B%3B%3BAAWF%2CQAL0B%3BEACzB%3BIACC%2CaAAA%3B%3B%3BAAGF%3BEACC%2CcAAA%3BEACG%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CUAAA%3B%3BAACH%2CeAAC%3BEACA%2CSAAS%2CEAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CwCAAhB%3BEACA%2C0BAAA%3B%3BAAED%2CeAAC%3BEACA%2CUAAA%3B%3BAACA%2CeAFA%2COAEC%3BEACA%2CgBAAgB%2CyCAAhB%3BEACA%2CYAAA%3BEACA%2C0BAAA%3B%3BAAMH%3BEACC%2CgBAAA%3BEACA%2C6BAAA%3B%3BAAFD%2CUAGC%3BEACC%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3B%3BAACA%2CUAJD%2CGAIE%2CYACA%3BEACC%2CmBAAA%3B%3BAAFF%2CUAJD%2CGAIE%2CYACA%2CYAEC%3BEACC%2CgBAAA%3B%3BAAJH%2CUAJD%2CGAIE%2CYACA%2CYAEC%2CGAEC%3BEACC%2CYAAA%3B%3BAANJ%2CUAJD%2CGAIE%2CYACA%2CYAEC%2CGAEC%2CEAEC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CiBAAA%3BEACA%2CcAAA%3B%3BAAQP%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%2CgCAAA%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%3BEAkDC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAAvDD%2CWACC%3BEACC%2CgCAAA%3B%3BAAFF%2CWAOC%3BEACC%2C6BAAA%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%3BAArBH%2CWAwBC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CeAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3B%3BAAjCF%2CWAwBC%2CMAUC%3BEACC%2CqBAAA%3BEACA%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3B%3BAAED%2CWAhBD%2CMAgBE%3BEACA%2CgBAAA%3B%3BAAED%2CWAnBD%2CMAmBE%3BEACA%2CgBAAA%3B%3BAA5CH%2CWAwBC%2CMAsBC%3BEACC%2C0BAAA%3B%3BAASF%2CWAAC%2CIACA%3BEACC%2C6BAAA%3B%3BAAFF%2CWAAC%2CIAIA%2CMACC%3BEACC%2C0BAAA%3B%3BAANH%2CWAAC%2CIASA%2CYACC%3BEACC%2C6BAAA%3B%3BAAXH%2CWAAC%2CIASA%2CYAIC%2CMACC%3BEACC%2C6BAAA%3B%3BAAfJ%2CWAAC%2CIAmBA%2CgBACC%3BEACC%2C6BAAA%3B%3BAArBH%2CWAAC%2CIAmBA%2CgBAIC%2CMACC%3BEACC%2C6BAAA%3B%3BAAzBJ%2CWAAC%2CIA8BA%2CoBACC%3BEACC%2C6BAAA%3B%3BAAhCH%2CWAAC%2CIA8BA%2CoBAIC%2CMACC%3BEACC%2C6BAAA%3B%3BAApCJ%2CWAAC%2CIAyCA%2CuBACC%3BEACC%2C8BAAA%3B%3BAA3CH%2CWAAC%2CIAyCA%2CuBAIC%2CMACC%3BEACC%2C8BAAA%3B%3BAAML%3BEAsCC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAA3CD%2CeACC%3BEACC%2CgCAAA%3B%3BAACA%2CeAFD%2CGAEE%3BEACA%2CgBAAA%3B%3BAAED%2CeALD%2CGAKE%3BEACA%2C6BAAA%3B%3BAAPH%2CeAUC%3BEACC%2C6BAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CcAAA%3B%3BAACA%2CeALD%2CEAKE%3BEACA%2CgBAAA%3B%3BAAED%2CeARD%2CEAQE%3BEACA%2CgBAAA%3B%3BAAnBH%2CeAsBC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2C6BAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAACA%2CeAND%2CMAME%3BEACA%2CgBAAA%3B%3BAAED%2CeATD%2CMASE%3BEACA%2CgBAAA%3B%3BAAhCH%2CeAsBC%2CMAYC%3BEACC%2C0BAAA%3B%3BAAWH%3BEAyBC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAA9BD%2CmBACC%3BEACC%2C6BAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAACA%2CmBAJD%2CEAIE%3BEACA%2CgBAAA%3B%3BAAED%2CmBAPD%2CEAOE%3BEACA%2CgBAAA%3B%3BAATH%2CmBAYC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CmBAHD%2CMAGE%3BEACA%2CgBAAA%3B%3BAAED%2CmBAND%2CMAME%3BEACA%2CgBAAA%3B%3BAAnBH%2CmBAYC%2CMASC%3BEACC%2C0BAAA%3B%3BAAYH%3BEAyBC%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2C%2BCAAA%3BEACA%2CuCAAA%3BEACA%2CeAAA%3B%3BAA9BD%2CsBACC%3BEACC%2CoBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAACA%2CsBAJD%2CEAIE%3BEACA%2CgBAAA%3B%3BAAED%2CsBAPD%2CEAOE%3BEACA%2CgBAAA%3B%3BAATH%2CsBAYC%3BEACC%2CkBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CsBAHD%2CMAGE%3BEACA%2CgBAAA%3B%3BAAED%2CsBAND%2CMAME%3BEACA%2CgBAAA%3B%3BAAnBH%2CsBAYC%2CMASC%3BEACC%2C0BAAA%3B%3BAAgBC%2CUAHH%2CMAAK%2CeACH%2CQACE%2CQACC%3BEACD%2CkBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CUANJ%2CMAAK%2CeACH%2CQACE%2CQACC%2CKAGA%3BEACA%2CaAAA%3B%3BAALH%2CUAFF%2CMAAK%2CeACH%2CQACE%2CQAQA%3BEACA%2CmBAAmB%2CcAAnB%3BEACA%2CeAAe%2CcAAf%3BEACA%2CWAAW%2CcAAX%3B%3BAAML%2CKACE%3BEACA%2CYAAA%3BEACA%2CgDAAA%3BEACA%2CgCAAA%3B%3BAAKF%2CUACC%3BEACE%2CsBAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CkBAAA%3BEACA%2CgCAAA%3B%3BAANH%2CUACC%2CcAME%3BEACC%2C2BAAA%3BEACA%2CgBAAA%3B%3BAATJ%2CUACC%2CcAUE%3BEACC%2CgBAAA%3B%3BAAZJ%2CUACC%2CcAaE%2CQAAO%3BEACN%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3B%3BAACA%2CUApBH%2CcAaE%2CQAAO%2COAOL%3BEACA%2CSAAS%2COAAT%3BEACA%2CaAAa%2CmBAAb%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3B%3B%3B%3BAAUL%2CSACE%3BEACE%2CqBAAA%3B%3BAAIJ%3BEACI%2CaAAA%3BEACD%2CkBAAA%3BEACC%2CWAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3BEACA%2CmBAAA%3BEACA%2C8BAAA%3BEACA%2CuBAAA%3B%3BAACF%2CaAAC%3BEACG%2COAAA%3BEACH%2CcAAA%3BEACG%2CUAAA%3B%3BAAEJ%2CaAAC%3BEACG%2CQAAA%3BEACH%2CeAAA%3BEACG%2CUAAA%3B%3BAAjBN%2CaAmBI%3BEACE%2CWAAA%3B%3BAAUN%2CQAN2B%3BEACzB%3BIACE%2CqBAAA%3B%3B%3BAAYJ%2CQAR2B%3BEAEvB%2CaAAC%3BEAAoB%2CaAAC%3BIACpB%2CUAAA%3B%3B%3BAAaN%2CQAR2B%3BEAEvB%2CaAAC%3BEAAoB%2CaAAC%3BIACpB%2CUAAA%3B%3B%3BAA0CN%2CQArC2B%3BEACzB%2CSACE%3BIACE%2CqBAAA%3B%3BEAGJ%3BIACE%2CkBAAA%3BIACA%2CoBAAA%3BIACA%2CiBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CWAAW%2CgBAAX%3BIACA%2CmBAAA%3BIACA%2C8BAAA%3BIACA%2CuBAAA%3BIACA%2CoBAAA%3B%3BEAZF%2CmBAaE%3BIACE%2CgBAAA%3BIACA%2CeAAA%3BIACA%2CoBAAA%3B%3BEACA%2CmBAJF%2CcAIG%3BIACC%2CmBAAA%3B%3BEAEF%2CmBAPF%2CcAOG%3BIACC%2CoBAAA%3B%3B%3B%3BAAkKR%2CQAxJ0B%3BEAGtB%2CYAAC%3BIACC%2CuBAAA%3B%3BEAFJ%2CYAIE%3BIACE%2CcAAA%3BIACA%2C8BAAA%3BIACA%2C6BAAA%3BIACA%2C4BAAA%3B%3BEACA%2CYALF%2CwBAKG%3BIACC%2CkCAAA%3B%3BEAKN%2CaACE%2CqBAAoB%3BIAClB%2C0BAAA%3B%3BEAFJ%2CaAIE%2CwBACE%2CiBAAgB%3BIACd%2CSAAA%3BIACA%2CYAAA%3BIACA%2CWAAA%3B%3BEARN%2CaAIE%2CwBAME%3BIACE%2CkBAAA%3BIACA%2CyBAAA%3B%3BEAZN%2CaAeE%2CwBAAuB%2COACrB%3BIACE%2CkBAAA%3B%3BEAjBN%2CaAoBE%3BIACE%2CYAAA%3B%3BEArBJ%2CaAuBE%3BIACE%2CWAAA%3B%3BEAxBJ%2CaA0BE%2CgBAAe%3BIACb%2CWAAA%3B%3BEA3BJ%2CaAgCE%2CyBACE%2CeACE%3BIACE%2CcAAA%3B%3BEACA%2CaAJN%2CyBACE%2CeACE%2CeAEG%3BIACC%2CcAAA%3B%3BEAEF%2CaAPN%2CyBACE%2CeACE%2CeAKG%3BIACC%2CcAAA%3B%3BEAIN%2CaAZF%2CyBAYG%2CIAAI%2CkBACH%3BIACE%2CcAAA%3B%3BEAKJ%2CaADF%2C2BAA0B%2CMACvB%2CIAAI%2CUACH%3BIACE%2CyBAAA%3BIACA%2CwBAAA%3B%3BEAtDR%2CaA0DE%2C2BACE%3BIACE%2CcAAA%3BIACA%2CiBAAA%3B%3BEACA%2CaAJJ%2C2BACE%2CeAGG%3BIACC%2CcAAA%3BIACA%2CiBAAA%3B%3BEAhER%2CaA0DE%2C2BASE%3BIACE%2CcAAA%3BIACA%2CiBAAA%3B%3BEArEN%2CaA0DE%2C2BAaE%3BIACE%2CaAAA%3B%3BEAxEN%2CaA0DE%2C2BAgBE%2CcACE%2CWACE%3BIACE%2CeAAA%3B%3BEA7EV%2CaA0DE%2C2BAgBE%2CcAME%2CoBACE%3BIACE%2CmBAAA%3B%3BEAlFV%2CaA0DE%2C2BAgBE%2CcAWE%3BIACE%2CmBAAA%3BIACA%2CeAAA%3B%3BEAvFR%2CaA2FE%3BIACE%2CcAAA%3B%3BEA5FJ%2CaA8FE%2CyBAAwB%2CMACtB%2CEAAC%3BIACC%2CcAAA%3B%3BEAhGN%2CaAmGE%2CyBAAwB%2CiBACtB%3BIACE%2CmBAAA%3BIACA%2CSAAA%3B%3BEAtGN%2CaAmGE%2CyBAAwB%2CiBACtB%2CeAGE%3BIACE%2CWAAA%3B%3BEACA%2CaANN%2CyBAAwB%2CiBACtB%2CeAGE%2CeAEG%3BIACC%2CmBAAA%3B%3BEA1GV%2CaAmGE%2CyBAAwB%2CiBAWtB%2CeAAc%3BIACZ%2CyBAAA%3B%3BEA%5C%2FGN%2CaAmGE%2CyBAAwB%2CiBActB%3BIACE%2CcAAA%3B%3BEAlHN%2CaAqHE%2CqBAAoB%3BIAClB%2CeAAA%3B%3BEAtHJ%2CaAwHE%3BIACE%2CsBAAA%3B%3BEAIF%2CyBACE%3BIACE%2CyBAAA%3B%3B%3B%3BAAQR%2CaACE%2CyBACE%2CQAAO%3BEACL%2CcAAA%3B%3BAAHN%2CaAME%3BEACE%2C2BAAA%3B%3BAAPJ%2CaASE%2CqBAAoB%2CSAAS%2CWAC3B%2CwBAAuB%3BEACrB%2CgBAAA%3B%3BAAXN%2CaAcE%3BEACE%2CaAAA%3B%3BAAfJ%2CaAiBE%2CeAAc%3BEACZ%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CYAAA%3B%3BAACA%2CaAJF%2CeAAc%2CWAIX%3BEACC%2CcAAA%3BEACA%2CiBAAA%3B%3BAAeN%2CQAV2B%3BEACzB%2CoBAAoB%2CSAAS%3BIAC3B%2CgBAAA%3B%3BEADF%2CoBAAoB%2CSAAS%2CWAE3B%2CwBAAuB%3BIACrB%2CWAAA%3BIACA%2C6BAAA%3B%3B%3BAAkMN%2CQA7L2B%3BEACzB%2CiBACE%3BIACE%2C4BAAA%3B%3BEAGJ%2CaACE%3BIACE%2CiBAAA%3BIACA%2CmBAAA%3B%3BEAHJ%2CaAKE%2CqBAAoB%2CSAAS%3BIAC3B%2CmBAAA%3B%3BEACA%2CaAFF%2CqBAAoB%2CSAAS%2CWAE1B%2CIAAI%2CUACH%3BIACE%2CkCAAA%3B%3BEAKR%2CoBAAoB%2CSAClB%3BIACE%2C8BAAA%3B%3BEAFJ%2CoBAAoB%2CSAIlB%2CcAAa%2CMACV%3BIACC%2CkBAAA%3BIACA%2C8BAAA%3B%3BEAPN%2CoBAAoB%2CSAIlB%2CcAAa%2CMACV%2CeAGE%3BIACC%2CiBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2C8BAAA%3B%3BEACA%2CoBAbY%2CSAIlB%2CcAAa%2CMACV%2CeAGE%2CeAKE%3BIACC%2CcAAA%3BIACA%2CkCAAA%3B%3BEAFF%2CoBAbY%2CSAIlB%2CcAAa%2CMACV%2CeAGE%2CeAKE%2CMAGE%2CqBAAkB%3BIACjB%2CyBAAA%3B%3BEAOZ%2CsBACG%2CMACE%3BIACC%2CaAAA%3B%3BEAOJ%2CcAHY%2CWAAW%2CSAGtB%3BIACC%2CSAAS%2CiBAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CqBAAA%3BIACA%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CUAAA%3BIACA%2CaAAa%2CoBAAb%3BIACA%2CeAAA%3BIACA%2CgBAAA%3B%3BEAGF%2CcAhBY%2CWAAW%2CSAgBtB%3BIACC%2CYAAA%3BIACA%2CcAAA%3B%3BEACA%2CcAnBU%2CWAAW%2CSAgBtB%2CMAGE%3BIACC%2CcAAA%3B%3BEAEF%2CcAtBU%2CWAAW%2CSAgBtB%2CMAME%3BIACC%2CcAAA%3B%3BEAIN%2CoBACE%2CmBAAkB%3BIAChB%2CsBAAA%3B%3BEAGJ%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%3BIACC%2CeAAA%3B%3BEAHN%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAEE%2CeACE%2CqBAAkB%3BIACjB%2CSAAA%3BIACA%2CYAAA%3BIACA%2CWAAA%3BIACA%2C2BAAA%3B%3BEACA%2CoBAVU%2CSAClB%2CcAAa%2CMACV%2CeAEE%2CeACE%2CqBAAkB%2CQAKhB%3BIACC%2CcAAA%3B%3BEAGJ%2CoBAdY%2CSAClB%2CcAAa%2CMACV%2CeAEE%2CeAUE%3BIACC%2CcAAA%3B%3BEADF%2CoBAdY%2CSAClB%2CcAAa%2CMACV%2CeAEE%2CeAUE%2CMAEE%2CqBAAkB%3BIACjB%2CyBAAA%3B%3BEAjBZ%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAEE%2CeAgBE%2CqBAAkB%3BIACjB%2CsBAAA%3B%3BEArBV%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAyBE%2CeAAY%3BIACX%2CcAAA%3B%3BEA5BR%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAyBE%2CeAAY%2CQAEV%2CqBAAkB%3BIACjB%2CyBAAA%3B%3BEA9BV%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAyBE%2CeAAY%2CQAKV%2CqBAAkB%3BIACjB%2CyBAAA%3B%3BEAjCV%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAkCE%2CeAAY%3BIACX%2CcAAA%3B%3BEArCR%2CoBAAoB%2CSAClB%2CcAAa%2CMACV%2CeAkCE%2CeAAY%2CSAEV%2CqBAAkB%3BIACjB%2CyBAAA%3B%3BEAMV%2CqBACE%3BIACE%2CcAAA%3BIACA%2CgBAAA%3B%3BEAEE%2CqBAJJ%2CcAGE%2CmBACG%3BIACC%2CyBAAA%3B%3BEAGJ%2CqBARF%2CcAQG%3BIACC%2CcAAA%3B%3BEAEE%2CqBAXN%2CcAQG%2CMAEC%2CmBACG%3BIACC%2CyBAAA%3B%3BEAQR%2CeAAC%3BIACC%2CSAAS%2CoCAAT%3BIACA%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2COAAA%3BIACA%2CgBAAA%3BIACA%2CsBAAA%3BIACA%2CsBAAsB%2C2CAAkD%2CqCAAxE%3BIACA%2C4BAAA%3BIACA%2C2CAAA%3B%3BEAfJ%2CeAkBE%3BIACE%2CeAAA%3BIACA%2CgBAAA%3B%3BEApBJ%2CeAkBE%2CmBAGE%3BIACE%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3B%3BEAIA%2CeAZJ%2CmBAWE%2CeACG%3BIACC%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3B%3B%3BAAgBV%2CQAR2B%3BEACzB%2CoBAAoB%2CSAClB%3BIACE%2CmBAAA%3B%3B%3BAAmBN%2CQAd2B%3BEACzB%2CoBAAoB%2CSAClB%3BIACE%2CiCAAA%3B%3BEAFJ%2CoBAAoB%2CSAIlB%2CcAAa%2CMACV%3BIACC%2CkBAAA%3BIACA%2C8BAAA%3B%3B%3BAAyBR%2CQAnB2B%3BEACzB%2CaACE%2CeAAc%3BIACZ%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CQAAA%3BIACA%2CiBAAA%3B%3BEACA%2CaALF%2CeAAc%2CWAKX%3BIACC%2CiBAAA%3B%3BEAPN%2CaAUE%2CaACE%3BIACE%2CyBAAA%3B%3B%3BAAeR%2CQAT0B%3BEACxB%3BIACE%2CaAAA%3B%3BEAEF%3BIACE%2CaAAA%3B%3B%3BAAYJ%2CQAR0B%2CuBAAwB%3BEAChD%2CYACE%3BIACE%2CyBAAA%3B%3B%3BAAeN%2CQAV0B%2CuBAAyB%3BEACjD%2CwBACE%2CQAAO%2CQACL%3BIACE%2C4BAAA%3B%3B%3BAA0BR%2CQApB0B%3BEAGpB%2CaADF%2COAAM%2CQACH%3BIACC%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CWAAA%3B%3BEALN%2CaAQE%2CQAAO%2CMACJ%2CUAAO%3BIACN%2CSAAA%3B%3BEAVN%2CaAaE%3BIACE%2CcAAA%3B%3B%3BAAiCN%2CQA5B0B%3BEACxB%2CaACE%2CaACE%3BIACE%2CyBAAA%3BIACA%2C2BAAA%3BIACA%2C4BAAA%3B%3BEALN%2CaAQE%3BIACE%2CwBAAA%3BIACA%2CkBAAA%3BIACA%2CQAAA%3BIACA%2CSAAA%3B%3BEAZJ%2CaAcE%2CeAAc%3BIACZ%2CiBAAA%3BIACA%2CWAAA%3B%3BEACA%2CaAHF%2CeAAc%2CWAGX%3BIACC%2CiBAAA%3B%3B%3B%3B%3B%3B%3B%3BACnpTR%3BEACI%3BIACI%2CWAAW%2CsBAAqB%2CSAAhC%3B%3BEAGJ%3BIACI%2CWAAW%2CsBAAqB%2CgBAAhC%3B%3B%3BAC5BR%3BEAEQ%2CsBAAA%3BEACA%2CqBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BACqBR%3BEAEQ%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BACbR%3BEACI%2COAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CQAAA%3BEACA%2CMAAA%3BEACA%2CWAAA%3B%3B%3B%3B%3BAA%2BGJ%3BEAEQ%2CsBAAA%3BEACA%2CqBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BAAKJ%2CaAAC%3BEACG%2CgBAAA%3BEACA%2CeAAA%3B%3BAAGJ%2CaAAC%3BEACG%2CiBAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3B%3BAAKJ%3BECpKA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BADmKJ%3BECxKA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BADuKJ%3BEC5KA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BAD2KJ%3BEChLA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BAD%2BKJ%3BECpLA%3BIACI%2CUAAA%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BAD%2BJJ%3BEC1JA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3B%3BADsJJ%3BEC9JA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAD0JJ%3BEClKA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAD8JJ%3BECtKA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3B%3BADkKJ%3BEC1KA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAC8NR%2CQALmC%3BEAC%5C%2FB%2CwBAAwB%2CQAAS%2CQAAO%3BIACpC%2CaAAA%3B%3B%3BACzOJ%2CuBAAC%3BEACG%2CQAAQ%2CeAAR%3B%3BAAGJ%2CuBAAC%3BEACG%2CQAAQ%2CeAAR%3B%3BACNR%3BEACI%3BIACI%2CWAAW%2CiBAAX%3B%3BEAGJ%3BIACI%2CWAAW%2CaAAX%3B%3B%3BAAIR%3BEACI%3BIACI%2CWAAW%2CgBAAX%3B%3BEAGJ%3BIACI%2CWAAW%2CaAAX%3B%3B%3BAChBR%3BEACI%2C6BAAA%3B%3BALgKA%3BEKxJA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALmJJ%3BEK5JA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALuJJ%3BEKhKA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL2JJ%3BEKpKA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL%2BJJ%3BEKxKA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL%2BIJ%3BEK1IA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALgHJ%3BEK9IA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALoHJ%3BEKlJA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALwHJ%3BEKtJA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL4HJ%3BEK1JA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL4GJ%3BEKvGA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAL%2BEJ%3BEK3GA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BALmFJ%3BEK%5C%2FGA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BALuFJ%3BEKnHA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAL2FJ%3BEKvHA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAL2EJ%3BEKtEA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAL8CJ%3BEK1EA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BALkDJ%3BEK9EA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BALsDJ%3BEKlFA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAL0DJ%3BEKtFA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CeAAtC%3BIACA%2CWAAW%2CmBAAmB%2CeAA9B%3BIACA%2C0CAAA%3BIACA%2CkCAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CmBAAmB%2CcAAtC%3BIACA%2CWAAW%2CmBAAmB%2CcAA9B%3B%3BEAGJ%3BIACI%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAL0CJ%3BEKrCA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BAL4BJ%3BEKzCA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BALgCJ%3BEK7CA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BALoCJ%3BEKjDA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BALwCJ%3BEKrDA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BALwBJ%3BEKnBA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALeJ%3BEKvBA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALmBJ%3BEK3BA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALuBJ%3BEK%5C%2FBA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL2BJ%3BEKnCA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALWJ%3BEKNA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALEJ%3BEKVA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALMJ%3BEKdA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALUJ%3BEKlBA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALcJ%3BEKtBA%3BIACI%2CmBAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALFJ%3BEKOA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CyBAAyB%2CeAA5C%3BIACA%2CWAAW%2CyBAAyB%2CeAApC%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALZJ%3BEKGA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CyBAAyB%2CeAA5C%3BIACA%2CWAAW%2CyBAAyB%2CeAApC%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALRJ%3BEKDA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CyBAAyB%2CeAA5C%3BIACA%2CWAAW%2CyBAAyB%2CeAApC%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALJJ%3BEKLA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CyBAAyB%2CeAA5C%3BIACA%2CWAAW%2CyBAAyB%2CeAApC%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALAJ%3BEKTA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CyBAAyB%2CeAA5C%3BIACA%2CWAAW%2CyBAAyB%2CeAApC%3B%3BEAGJ%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALhBJ%3BEKqBA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BALxBJ%3BEKiBA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BALpBJ%3BEKaA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BALhBJ%3BEKSA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BALZJ%3BEKKA%3BIACI%2CUAAA%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGJ%3BIACI%2CUAAA%3B%3B%3BAL5BJ%3BEKiCA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CuBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CuBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALrDJ%3BEK6BA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CuBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CuBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALjDJ%3BEKyBA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CuBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CuBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL7CJ%3BEKqBA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CuBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CuBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALzCJ%3BEKiBA%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACf%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CuBAAnB%3BIACA%2CUAAA%3BIACA%2CWAAW%2CuBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALzDJ%3BEK8DA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CmBAAA%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALjEJ%3BEK0DA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CmBAAA%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAL7DJ%3BEKsDA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CmBAAA%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALzDJ%3BEKkDA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CmBAAA%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BALrDJ%3BEK8CA%3BIACI%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CmBAAA%3B%3BEAEJ%3BIACI%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BACpNR%3BEAEQ%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BAAIR%3BEACI%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CoCAAhB%3B%3BAAGJ%3BEACI%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CsCAAhB%3B%3BAAGJ%3BEACI%3BIACI%2CWAAW%2CYAAX%3B%3BEAEJ%3BIACI%2CWAAW%2CcAAX%3B%3B%3BACjCR%3BEAEQ%2CUAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CoBAAA%3B%3BAAGJ%2CqBAAC%3BEACG%2CoBAAA%3B%3BAAGJ%2CqBAAC%3BEDKD%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CoCAAhB%3B%3BACnBJ%2CqBAgBI%3BEACI%2CaAAA%3B%3BAAIR%3BEAEQ%2CkBAAA%3BEACA%2CoBAAA%3BEACA%2CWAAW%2CeAAe%2CqBAA1B%3B%3BAAGJ%2CoBAAC%3BEACG%2CoBAAA%3B%3BAAGJ%2CoBAAC%3BEDTD%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CsCAAhB%3B%3BACYJ%3BEAEQ%2CQAAA%3BEACA%2C0BAAA%3BEACA%2C4BAAA%3BEACA%2CWAAW%2CeAAe%2CqBAA1B%3B%3BAALR%2CoBAQI%3BEACI%2CkBAAA%3B%3BAAGJ%2CoBAAC%3BEACG%2C4BAAA%3B%3BAAGJ%2CoBAAC%3BEDpCD%2CWAAA%3BEACA%2CYAAA%3BEACA%2CgBAAgB%2CoCAAhB%3BECqCI%2CWAAW%2CcAAc%2CeAAzB%3B%3BACzCR%3BEACI%2CSAAA%3BEACA%2CMAAM%2CgBAAN%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3B%3BAAGJ%3BEAEQ%2CsBAAA%3BEACA%2CqBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BACER%3BEAEQ%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BACWR%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%3BACgLR%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%3B%3B%3B%3B%3BAE5ER%2CwBAPA%2C8BACA%2C8BAA6B%3BEACzB%3BIACI%2CYAAA%3BIACA%2CUAAA%3B%3B%3BAC1CJ%2CgBALsC%3BECUtC%2CiCAzBA%3BECuLA%2C0BACI%2CcDxLJ%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CoBAAA%3B%3BEAEA%2CiCALJ%2CGAKK%3BECkLL%2C0BACI%2CcDxLJ%2CGAKK%3BIACG%2CSAAS%2CIAAT%3B%3BEAmBR%2CiCAfA%3BEC6KA%2C0BACI%2CcD9KJ%3BIACI%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CqBAAA%3B%3BEA%2BBJ%3BIACI%2CWAAA%3B%3BEA4BJ%3BEEgDA%2COACI%2CgBACI%2CeAGI%3BECgPZ%2CgBAGI%3BEAqEJ%2CQACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BECzVhB%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BECyOhB%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BEANhB%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BIL7RhB%2CYAAA%3B%3BEAEA%2CoBAAC%2CUAAU%3BEE2DX%2COACI%2CgBACI%2CeAGI%2CKFhEX%2CUAAU%3BEGgTX%2CgBAGI%2COHnTH%2CUAAU%3BEGwXX%2CQACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKH9Xf%2CUAAU%3BEIqCX%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKJ3Cf%2CUAAU%3BEKoRX%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKL3Rf%2CUAAU%3BEKqRX%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKL3Rf%2CUAAU%3BIACP%2CWAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CoBAAC%2CUAAU%3BEEsDX%2COACI%2CgBACI%2CeAGI%2CKF3DX%2CUAAU%3BEG2SX%2CgBAGI%2COH9SH%2CUAAU%3BEGmXX%2CQACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKHzXf%2CUAAU%3BEIgCX%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKJtCf%2CUAAU%3BEK%2BQX%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKLtRf%2CUAAU%3BEKgRX%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKLtRf%2CUAAU%3BIACP%2CYAAA%3B%3BEAyNJ%3BEMxMA%2CyBACI%2CQAAO%3BECwOH%2COAAO%2CKAAM%2CcADjB%3BEAoBA%2CKAAC%2CcAsCG%2CcACI%3BECrGZ%2CaAEI%3BEADJ%2CKAAK%2CcAAe%2CcAChB%3BEPvFA%2COAAO%2CKAAM%2CiCACT%3BEQlNR%2CmBACI%2CUAAU%3BEADd%2CmBAEI%3BECsFA%2COAAO%2CKAAM%2CeACT%3BECyOR%2CqBASI%2CMACI%2CqBACI%3BIXvCZ%2CcAAA%3B%3BEA%2BDA%3BEAkFgB%2CuBAXZ%2CUASI%2CYACI%2CQACK%3BEClQjB%2CwBDuPI%2CUASI%2CYACI%2CQACK%3BECjQjB%2CuBDsPI%2CUASI%2CYACI%2CQACK%3BEYtajB%2CqBZ2ZI%2CUASI%2CYACI%2CQACK%3BEI9UjB%2CmBJmUI%2CUASI%2CYACI%2CQACK%3BEa3ajB%2CKAAK%2CKAAK%2CObgaN%2CUASI%2CYACI%2CQACK%3BIAjFb%2CkBAAA%3BIACA%2CQAAA%3B%3BEAuEQ%2CuBAFR%2CUACI%2COACK%2CIAAI%2CSACD%3BEC1PhB%2CwBDuPI%2CUACI%2COACK%2CIAAI%2CSACD%3BECzPhB%2CuBDsPI%2CUACI%2COACK%2CIAAI%2CSACD%3BEY9ZhB%2CqBZ2ZI%2CUACI%2COACK%2CIAAI%2CSACD%3BEItUhB%2CmBJmUI%2CUACI%2COACK%2CIAAI%2CSACD%3BEanahB%2CKAAK%2CKAAK%2CObgaN%2CUACI%2COACK%2CIAAI%2CSACD%3BIACI%2CUAAA%3B%3BEAyBpB%3BEc1SA%2CSACI%3BEC9HI%2COAAO%2CIAAI%2CeAAgB%2CKAD%5C%2FB%3BEAEI%2COAAO%2CIAAI%2CqBAAsB%2CKAFrC%3BEZoXI%2CgBADJ%2CUACK%3BINnIT%2CkBAAA%3B%3BEG6OA%3BEgB3XA%3BECgDA%2CaAOI%3BEd4TJ%3BEe7bA%2CsBACI%3BIrBrDJ%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAiBA%2CyBAAC%3BEACD%2CyBAAC%3BEG8%5C%2FBD%2CkBH%5C%2F%5C%2FBC%3BEG%2B%5C%2FBD%2CkBH9%5C%2FBC%3BEK6FD%2CkBAWI%2CeLzGH%3BEK8FD%2CkBAWI%2CeLxGH%3BEK6GD%2COACI%2CgBACI%2CeLhHP%3BEK8GD%2COACI%2CgBACI%2CeL%5C%2FGP%3BEU6RD%2CeV9RC%3BEU8RD%2CeV7RC%3BEMkWD%2CgBNnWC%3BEMmWD%2CgBNlWC%3BEM0aD%2CQACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeN9aX%3BEM2aD%2CQACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeN7aX%3BEM4bD%2CqBACI%2COAAM%2CUN9bT%3BEM6bD%2CqBACI%2COAAM%2CUN7bT%3BEI0KD%2C0BACI%2CcJ5KH%3BEI2KD%2C0BACI%2CcJ3KH%3BEsByLD%2CcACI%2CQtB3LH%3BEsB0LD%2CcACI%2CQtB1LH%3BEsB%2BLD%2CMACI%2CeACI%2CStBlMP%3BEsBgMD%2CMACI%2CeACI%2CStBjMP%3BEuB6VD%2C0BvB9VC%3BEuB8VD%2C0BvB7VC%3BEaoCD%2CcAKI%2Ceb1CH%3BEaqCD%2CcAKI%2CebzCH%3BEOuFD%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeP3FX%3BEOwFD%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeP1FX%3BEQsUD%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeR3UX%3BEQuUD%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeR1UX%3BEQuUD%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeR3UX%3BEQwUD%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeR1UX%3BEwB0RG%2COAAC%2CQxB3RJ%3BEwB2RG%2COAAC%2CQxB1RJ%3BEwBgSD%2CYAQI%2CQAAO%2CMxBzSV%3BEwBiSD%2CYAQI%2CQAAO%2CMxBxSV%3BEM0aD%2CQAaI%2CSNxbH%3BEM2aD%2CQAaI%2CSNvbH%3BEIsKD%2C6BJvKC%3BEIuKD%2C6BJtKC%3BEuBybD%2CyBvB1bC%3BEuB0bD%2CyBvBzbC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CyBAAC%3BEGy%5C%2FBD%2CkBHz%5C%2FBC%3BEKwFD%2CkBAWI%2CeLnGH%3BEKwGD%2COACI%2CgBACI%2CeL1GP%3BEUwRD%2CeVxRC%3BEM6VD%2CgBN7VC%3BEMqaD%2CQACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeNxaX%3BEMubD%2CqBACI%2COAAM%2CUNxbT%3BEIqKD%2C0BACI%2CcJtKH%3BEsBoLD%2CcACI%2CQtBrLH%3BEsB0LD%2CMACI%2CeACI%2CStB5LP%3BEuBwVD%2C0BvBxVC%3BEa%2BBD%2CcAKI%2CebpCH%3BEOkFD%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CePrFX%3BEQiUD%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeRrUX%3BEQkUD%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeRrUX%3BEwBqRG%2COAAC%2CQxBrRJ%3BEwB2RD%2CYAQI%2CQAAO%2CMxBnSV%3BEMqaD%2CQAaI%2CSNlbH%3BEIiKD%2C6BJjKC%3BEuBobD%2CyBvBpbC%3BIACG%2CWAAA%3B%3BEG8hBJ%3BEsBrfA%2COAAO%3BEAMP%3BEAWA%3BItB0dA%2CsBAAA%3B%3BEAsBA%3BEuB5gBA%3BIvBsfA%2CsBAAA%3B%3BEAgCA%2C8BACI%2CUACM%3BEAFV%2C8BACI%2CUAEI%2CQAAU%3BEwBVlB%2CiBxBQI%2CUACM%3BEwBTV%2CiBxBQI%2CUAEI%2CQAAU%3BIH1UlB%2CgBAAA%3B%3BE4BulBA%2C8BzB%5C%2FQI%2CUACM%2CSyB8QT%2CIAAI%2CSACC%3BEADN%2C8BzB%5C%2FQI%2CUAEI%2CQAAU%2CSyB6QjB%2CIAAI%2CSACC%3BEDxRN%2CiBxBQI%2CUACM%2CSyB8QT%2CIAAI%2CSACC%3BEDxRN%2CiBxBQI%2CUAEI%2CQAAU%2CSyB6QjB%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2C8BzB%5C%2FQI%2CUACM%2CSyB8QT%2CIAAI%2CSAeC%3BEAfN%2C8BzB%5C%2FQI%2CUAEI%2CQAAU%2CSyB6QjB%2CIAAI%2CSAeC%3BEDtSN%2CiBxBQI%2CUACM%2CSyB8QT%2CIAAI%2CSAeC%3BEDtSN%2CiBxBQI%2CUAEI%2CQAAU%2CSyB6QjB%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEzBjSR%2C8BACI%2CUACM%2CSyB2KR%3BEzB7KF%2C8BACI%2CUAEI%2CQAAU%2CSyB0KhB%3BEDpLF%2CiBxBQI%2CUACM%2CSyB2KR%3BEDpLF%2CiBxBQI%2CUAEI%2CQAAU%2CSyB0KhB%3BI5BpfF%2CeAAA%3BI4BwfI%2CqBAAA%3B%3BEA6HA%2C8BzB7SA%2CUACM%2CSyB0ST%2COAEI%3BEAAD%2C8BzB7SA%2CUAEI%2CQAAU%2CSyBySjB%2COAEI%3BEAAD%2C8BzB7SA%2CUACM%2CSyB2ST%2CSACI%3BEAAD%2C8BzB7SA%2CUAEI%2CQAAU%2CSyB0SjB%2CSACI%3BEDrTL%2CiBxBQI%2CUACM%2CSyB0ST%2COAEI%3BEDrTL%2CiBxBQI%2CUAEI%2CQAAU%2CSyBySjB%2COAEI%3BEDrTL%2CiBxBQI%2CUACM%2CSyB2ST%2CSACI%3BEDrTL%2CiBxBQI%2CUAEI%2CQAAU%2CSyB0SjB%2CSACI%3BIACG%2CaAAA%3B%3BEzBzSI%2C8BALR%2CUACM%2CSAIG%2CIAAI%2CcAAc%3BEAAnB%2C8BALR%2CUAEI%2CQAAU%2CSAGL%2CIAAI%2CcAAc%3BEwBb%5C%2FB%2CiBxBQI%2CUACM%2CSAIG%2CIAAI%2CcAAc%3BEwBb%5C%2FB%2CiBxBQI%2CUAEI%2CQAAU%2CSAGL%2CIAAI%2CcAAc%3BIACf%2CgBAAA%3B%3BEA2YhB%3BE0B98BA%3BEC6FA%2CQAAS%2COAAM%2COAAQ%2COACnB%2CMAAK%2CIAAI%2CkBAAkB%2CIAAI%3BI3Bg2BnC%2CaAAA%3B%3BEAkEA%3BEGplBA%2CQAaI%3BEFjRJ%3BEmBmRA%3BIpBskBI%2CmBAAA%3BIACA%2CkBAAA%3B%3BEAFJ%2CkBAKI%3BEGzlBJ%2CQAaI%2CSH4kBA%3BEC71BJ%2C6BD61BI%3BEoB1kBJ%2CyBpB0kBI%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEARR%2CkBAWI%3BEG%5C%2FlBJ%2CQAaI%2CSHklBA%3BECn2BJ%2C6BDm2BI%3BEoBhlBJ%2CyBpBglBI%3BIACI%2CWAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAhBR%2CkBAmBI%3BEGvmBJ%2CQAaI%2CSH0lBA%3BEC32BJ%2C6BD22BI%3BEoBxlBJ%2CyBpBwlBI%3BIACI%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEA4ER%3BEEngCA%3BEKgMA%2CeAEI%3BECjBJ%2CeACI%3BIRk1BA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAHJ%2CgCAKI%3BEExgCJ%2CkBFwgCI%3BEOx0BJ%2CeAEI%2CWPs0BA%3BEQv1BJ%2CeACI%2CgBRs1BA%3BIACI%2CiBAAA%3B%3BEAIA%2CgCADJ%2CQACK%3BEACD%2CgCAFJ%2CQAEK%3BEE9gCT%2CkBF4gCI%2CQACK%3BEE7gCT%2CkBF4gCI%2CQAEK%3BEO90BT%2CeAEI%2CWP00BA%2CQACK%3BEO70BT%2CeAEI%2CWP00BA%2CQAEK%3BEQ71BT%2CeACI%2CgBR01BA%2CQACK%3BEQ51BT%2CeACI%2CgBR01BA%2CQAEK%3BIACG%2CiBAAA%3B%3BEAGJ%2CgCANJ%2CQAMK%3BEElhCT%2CkBF4gCI%2CQAMK%3BEOl1BT%2CeAEI%2CWP00BA%2CQAMK%3BEQj2BT%2CeACI%2CgBR01BA%2CQAMK%3BIACG%2CWAAA%3B%3BE4BvnCZ%3BI%5C%2FB0PA%2CeAAA%3BIAAA%2CmBAAA%3B%3BEyB%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%3BEOrDA%2CCAAC%2CmBAAwB%2CQPkDtB%3BIzBoMP%2CWAAA%3BIAgKA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgCrZL%2CCAAC%2CoBAAyB%2CQP%2BCvB%3BIzBoMP%2CmBAAA%3BIgC9KA%2CqBAAA%3BIhC8UA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgClZL%2CCAAC%2CyBAA%2BB%2CQP4C7B%3BIzBoMP%2CmBAAA%3BIgClLA%2CYAAA%3BIhCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgC%5C%2FYL%2CCAAC%2C0BAAgC%2CQPyC9B%3BIzBoMP%2CmBAAA%3BIgCtLA%2CWAAA%3BIhCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEyBhWT%3BIAEI%2CiBAAA%3B%3BEO3CA%2CCAAC%2CoBAAyB%3BIhCuO9B%2CmBAAA%3BIgCtLA%2CWAAA%3BIhCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgCtYL%2CCAAC%2CyBAA%2BB%3BIhCoOpC%2CmBAAA%3BIgCtLA%2CWAAA%3BIhCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgCnYL%2CCAAC%2C0BAAgC%3BIhCiOrC%2CmBAAA%3BIgCtLA%2CWAAA%3BIhCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEyB1VT%2C2BAA4B%3BIACxB%2CgBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%3BIAEI%2CYAAA%3BIACA%2CgBAAA%3B%3BEO3CA%2CCAAC%2CoBAAyB%3BIhC2N9B%2CmBAAA%3BIgClLA%2CYAAA%3BIhCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgC1XL%2CCAAC%2CyBAA%2BB%3BIhCwNpC%2CmBAAA%3BIgClLA%2CYAAA%3BIhCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEgCvXL%2CCAAC%2C0BAAgC%3BIhCqNrC%2CmBAAA%3BIgClLA%2CYAAA%3BIhCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEyB9UT%2C0BACI%3BIACI%2CgBAAA%3B%3BEAFR%2C0BAKI%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAIR%2CMAAM%3BIACF%2CkBAAA%3B%3BEQ6IJ%3BIACI%2CaAAA%3B%3BEAGJ%3BIjCiJA%2CsBAAA%3BIACQ%2CcAAA%3BIAMR%2CwBAAA%3BIACQ%2CgBAAA%3BIiCtJJ%2CmBAAA%3B%3BEAGJ%3BIACI%2CaAAA%3B%3BEAGJ%2C0BAA6B%3BIACzB%2CaAAA%3B%3BEAGJ%2C0BACM%3BIACE%2CcAAA%3B%3BECXR%3BIlCSA%2CmBAAA%3BIAAA%2CgBAAA%3BIkCJI%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%3BIlChBN%2CgBAAA%3B%3BEkCTA%2CWA6BI%2CGAAE%3BIACE%2CkBAAA%3B%3BEA9BR%2CWAiCI%3BIlCxBJ%2CkBAAA%3BIkC0BQ%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%3BIlC%5C%2FCV%2CcAAA%3BIAAA%2CiBAAA%3BIAAA%2CeAAA%3BIAAA%2CqBAAA%3BIkCsDY%2CsBAAA%3BIACA%2CkBAAA%3BIACA%2CqBAAA%3B%3BEAEA%2CWAlCR%2CQAuBM%2CaAWG%3BEAAQ%2CWAlCjB%2CQAuBM%2CaAWY%3BIlC1DtB%2CWAAA%3BIAAA%2CqBAAA%3B%3BEkCkEQ%2CWA1CJ%2CQA0CK%2COAEK%3BEADN%2CWA3CJ%2CQA2CK%2CWACK%3BIlCpEd%2CqBAAA%3BIAAA%2CmBAAA%3BIAAA%2CqBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3BIkC2EgB%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%3BIlCzFpB%2CqBAAA%3BImChOA%2CqBAAA%3B%3BEDmTQ%2CWA3DJ%2CQA2DK%2COACK%2CaAGI%2CgBCnGhB%3BInChQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEmC2CA%2CWDkPI%2CQA2DK%2COACK%2CaAGI%2CgBCjTjB%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BInC9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSoC9NQ%2COpC8NR%3BIAAA%2CaqCzRe%2CmBrCyRf%3BIAAA%2CsBAAA%3BImCqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEDlFA%2CWAiCI%2CQA8EI%3BIlCtGR%2CgBAAA%3BIAAA%2CyBAAA%3BIAAA%2CyCAAA%3BIAAA%2CgBAAA%3BIAAA%2CgBAAA%3BIAAA%2CUAAA%3BIkC8GY%2CaAAA%3BIACA%2COAAA%3BIACA%2CoBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIlClHZ%2CgBAAA%3B%3BEkCTA%2CWAiCI%2CQA8EI%2CSAyIF%3BIlC%5C%2FON%2CgBAAA%3B%3BEkCkPQ%2CWA1NJ%2CQA8EI%2CSAyIF%2CKAGG%3BEACD%2CWA3NJ%2CQA8EI%2CSAyIF%2CKAIG%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAGJ%2CWAlOJ%2CQA8EI%2CSAyIF%2CKAWG%3BIlC1PT%2CWAAA%3BIAAA%2CUAAA%3BIAAA%2CUAAA%3BIA8CA%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIAhDA%2CyBAAA%3BIkC%2BPY%2CUAAA%3B%3BEAGJ%2CWA1OJ%2CQA8EI%2CSAyIF%2CKAmBG%3BIlCpNT%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIAhDA%2C4BAAA%3BIAAA%2CcAAA%3BIAAA%2CUAAA%3BIAAA%2CUAAA%3BIkCuQY%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%3BIlCzIhB%2CcAAA%3BIAAA%2CiBAAA%3B%3BEkCgJgB%2CWAxHZ%2CQA8EI%2CSAiCI%2CEASK%3BEACD%2CWAzHZ%2CQA8EI%2CSAiCI%2CEAUK%3BIlCjJjB%2CmBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3B%3BEkCTA%2CWAiCI%2CQA8EI%2CSAmDI%2CQAAU%3BIlCzJtB%2CqBAAA%3BIAAA%2CmBAAA%3BIAAA%2CuBAAA%3B%3BEkCTA%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%3BIlCpL5B%2CqBAAA%3BImChOA%2CqBAAA%3B%3BEDgZgB%2CWAxJZ%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%2CgBC9LxB%3BInChQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEmC2CA%2CWDkPI%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%2CgBC5YzB%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BInC9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSoCxPQ%2COpCwPR%3BIAAA%2CaqCzRe%2CmBrCyRf%3BIAAA%2CsBAAA%3BImCqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BED0HQ%2CWA3KJ%2CQA2KK%3BIACG%2CkBAAA%3BIlCpMZ%2CqBAAA%3BImChOA%2CqBAAA%3B%3BEAMA%2CWDkPI%2CQA2KK%2CKC7ZR%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BInC9DA%2CeAAA%3BIAAA%2CoBAAA%3BIAAA%2CcAAA%3BIAAA%2CSoCzPgB%2COpCyPhB%3BIAAA%2CaqCzRe%2CmBrCyRf%3BIAAA%2CsBAAA%3BImCqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEDkIY%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%3BEhB9HR%2CSAKM%3BIjB8GN%2CgBAAA%3BI4BwcA%2CsBAAA%3BIXpjBQ%2CgBAAA%3B%3BEAPR%2CSAKM%2CSWuvBJ%3BIAoDF%2CSAAA%3B%3BE5Bj7BA%2CSiBsIM%2CSjBtIL%3BEACD%2CSiBqIM%2CSjBrIL%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CSiBgIM%2CSjBhIL%3BIACG%2CWAAA%3B%3BE4BurBJ%2CSXxjBM%2CSWwjBL%2COAAO%3BEACR%2CSXzjBM%2CSWyjBL%2CSAAS%3BI5B3cV%2CqBAAA%3BIAAA%2CYAAA%3BI4B8cI%2CsBAAA%3BIACA%2CSAAS%2CGAAT%3BIACA%2CWAAA%3BIACA%2CWAAA%3B%3BEXpkBJ%2CSAKM%2CSWkkBN%3BI5BpdA%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BI4BwdI%2CsBAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CSX1kBM%2CSW0kBL%2CIAAI%2CSACC%3BI5B7dN%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BI4BkeQ%2CsBAAA%3BIACA%2CWAAA%3B%3BEAPR%2CSX1kBM%2CSW0kBL%2CIAAI%2CSAUC%3BI5BteN%2CYAAA%3BI4BweQ%2CWAAA%3B%3BEU7vBR%2CQAAQ%2CKAAK%3BICVb%2CkBAAA%3BIACA%2CUAAA%3B%3BEvC0CA%2CQsCjCQ%2CKAAK%2CMtCiCZ%3BEACD%2CQsClCQ%2CKAAK%2CMtCkCZ%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQsCvCQ%2CKAAK%2CMtCuCZ%3BIACG%2CWAAA%3B%3BEsCxCJ%2CQAAQ%2CKAAK%2CMCPX%2CQAAK%3BIACH%2CWAAA%3BIACA%2CWAAA%3B%3BEDKJ%2CQAAQ%2CKAAK%2CMCPX%2CQAAK%2CMAID%3BIvCwRN%2CYAAA%3BIuCtRQ%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEDDR%2CQAAQ%2CKAAK%2CMCKX%2CQAAK%3BIvCgRP%2CgBAAA%3BIuC7QI%2CsBAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3B%3BEvCsBJ%2CQsCjCQ%2CKAAK%2CMCKX%2CQAAK%2CQvC4BN%3BEACD%2CQsClCQ%2CKAAK%2CMCKX%2CQAAK%2CQvC6BN%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQsCvCQ%2CKAAK%2CMCKX%2CQAAK%2CQvCkCN%3BIACG%2CWAAA%3B%3BEuC3BA%2CQDbI%2CKAAK%2CMCKX%2CQAAK%2CQAQF%3BIACG%2CcAAA%3B%3BEDdR%2CQAAQ%2CKAAK%2CMC%2BDX%2CQAAK%3BIvCsNP%2CiBAAA%3B%3BEsCrRA%2CQAAQ%2CKAAK%2CMC%2BDX%2CQAAK%2CMAED%3BIvCoNN%2CgBAAA%3BIAAA%2CiBAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3BIAAA%2CmBAAA%3BIAAA%2CyBAAA%3BIuC%5C%2FLQ%2CmBAAA%3BIvC%2BLR%2CYAAA%3BIAAA%2C0BAAA%3B%3BEwCjJA%2CQFpIQ%2CKAAK%2CMC%2BDX%2CQAAK%2CMAED%2CUCmEL%3BIxCiJD%2CcAAA%3BIAAA%2CqBAAA%3B%3BEwC5IA%2CQFzIQ%2CKAAK%2CMC%2BDX%2CQAAK%2CMAED%2CUCwEL%3BIxC4ID%2CcAAA%3BIAAA%2CqBAAA%3B%3BEwCvIA%2CQF9IQ%2CKAAK%2CMC%2BDX%2CQAAK%2CMAED%2CUC6EL%3BIxCuID%2CWAAA%3BIAAA%2CqBAAA%3B%3BEuC1LI%2CQD3FI%2CKAAK%2CMC%2BDX%2CQAAK%2CMA4BF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQD5FI%2CKAAK%2CMC%2BDX%2CQAAK%2CMA6BF%2CIAAI%2CWAAc%2CUAAO%3BIvCyL9B%2CmBAAA%3B%3BEuCrLI%2CQDhGI%2CKAAK%2CMC%2BDX%2CQAAK%2CMAiCF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDjGI%2CKAAK%2CMC%2BDX%2CQAAK%2CMAkCF%2COAAU%3BEACX%2CQDlGI%2CKAAK%2CMC%2BDX%2CQAAK%2CMAmCF%2COAAU%2CUAAO%3BEAClB%2CQDnGI%2CKAAK%2CMC%2BDX%2CQAAK%2CMAoCF%2COAAU%2CUAAO%3BIvCkLtB%2CmBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3B%3BEuC5KI%2CQDzGI%2CKAAK%2CMC%2BDX%2CQAAK%2CMA0CF%2COAAU%3BEACX%2CQD1GI%2CKAAK%2CMC%2BDX%2CQAAK%2CMA2CF%2COAAU%2CUAAO%3BEAClB%2CQD3GI%2CKAAK%2CMC%2BDX%2CQAAK%2CMA4CF%2COAAU%2CUAAO%3BIvC0KtB%2CmBAAA%3B%3BEsCrRA%2CQAAQ%2CKAAK%2CMCgHX%2CQAAK%3BIvCqKP%2CmBAAA%3BIuCnKI%2CgBAAA%3BIACA%2C4BAAA%3BIAoBJ%2CSAAA%3BIvC8IA%2C6BAAA%3B%3BEApPA%2CgBAAC%3BEACD%2CgBAAC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CgBAAC%3BIACG%2CWAAA%3B%3BEkBlBJ%2CgBuB0CA%3BIACI%2CWAAA%3B%3BEvB3CJ%2CgBuB8CA%3BIACI%2CYAAA%3B%3BEvB%5C%2FCJ%2CgBuBjBA%3BEvBiBA%2CgBuBhBA%3BIACI%2CqBAAA%3B%3BEvBeJ%2CgBuBjBA%2CSAQI%2CEAAC%3BEvBSL%2CgBuBhBA%2CWAOI%2CEAAC%3BIACG%2CqBAAA%3B%3BEvBQR%2CgBuBHA%2CSACI%3BIzCiQJ%2CiBAAA%3B%3BEkB%5C%2FPA%2CgBuBOA%2CWAKI%2CEAAC%3BIzCmPL%2CeAAA%3B%3BEkB%5C%2FPA%2CgBAEM%3BEAFN%2CgBAGM%3BIACE%2CgBAAA%3B%3BEAJR%2CgBAEM%2CWAIE%3BEANR%2CgBAGM%2CaAGE%3BIACI%2CgBAAA%3BIACA%2CWAAA%3B%3BEwBqIR%2CYAAC%2CYACG%3BI1CiHR%2C6BAAA%3BI0C%5C%2FGY%2CiBAAA%3B%3BEC%5C%2FIZ%3BIACI%2CsBAAA%3B%3BECuFJ%2CoBAAqB%3BEACrB%2CoBAAqB%3BIAEb%2CkBAAA%3B%3BEAHR%2CoBAAqB%2CyBAMjB%2CaAAa%3BEALjB%2CoBAAqB%2CQAKjB%2CaAAa%3BIACT%2CkBAAA%3B%3BElDqCJ%2CyBADqB%2CSACpB%3BIAzJD%2CUAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CoBAAA%3B%3BEAGJ%2CyBAkJyB%2CSACpB%2CMAnJJ%3BIACG%2CoBAAA%3B%3BEAGJ%2CyBA8IyB%2CSACpB%2CMA%5C%2FIJ%3BIDKD%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAgB%2CoCAAhB%3B%3BECwII%2CyBADqB%2CSACpB%2CMA3IL%3BIACI%2CaAAA%3B%3BEA8IA%2CyBALqB%2CSAKpB%3BIAxID%2CkBAAA%3BIACA%2CoBAAA%3BIACA%2CWAAW%2CeAAe%2CqBAA1B%3B%3BEAGJ%2CyBA8HyB%2CSAKpB%2CKAnIJ%3BIACG%2CoBAAA%3B%3BEAGJ%2CyBA0HyB%2CSAKpB%2CKA%5C%2FHJ%3BIDTD%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAgB%2CsCAAhB%3B%3BEC0II%2CyBATqB%2CSASpB%3BIA5HD%2CQAAA%3BIACA%2C0BAAA%3BIACA%2C4BAAA%3BIACA%2CWAAW%2CeAAe%2CqBAA1B%3B%3BEAyHA%2CyBATqB%2CSASpB%2CKAtHL%3BIACI%2CkBAAA%3B%3BEAGJ%2CyBAyGyB%2CSASpB%2CKAlHJ%3BIACG%2C4BAAA%3B%3BEAGJ%2CyBAqGyB%2CSASpB%2CKA9GJ%3BIDpCD%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAgB%2CoCAAhB%3BICqCI%2CWAAW%2CcAAc%2CeAAzB%3B%3BEmDkjBJ%2CWAAW%3BIACP%2CgBAAA%3B%3BEAGJ%2CuBAAwB%2CEAAC%3BIACrB%2CqBAAA%3B%3BEAGJ%3BIACI%2CcAAA%3B%3BEAGJ%2CoBAAqB%3BIACjB%2C4BAAA%3B%3BEAGJ%2CuBACI%3BIACI%2CUAAA%3B%3BEAIR%2CQAAW%3BIACP%2CmBAAA%3B%3BEAGJ%3BIAEQ%2CeAAA%3B%3BEAGJ%2CsBAAC%2CeAAgB%2CgBAAgB%3BIAC7B%2CgBAAA%3BIACA%2CaAAA%3B%3BEAPR%2CsBAUI%3BIACI%2CmBAAA%3BIACA%2CcAAA%3B%3BEAZR%2CsBAeI%3BIACI%2CaAAA%3B%3BEAhBR%2CsBAmBI%3BIACI%2CgBAAA%3B%3BEApBR%2CsBAuBI%3BIACI%2CgBAAA%3B%3BEAxBR%2CsBA2BI%2CqBAAoB%2CYAAa%3BIAC7B%2CeAAA%3B%3BEA5BR%2CsBA%2BBI%3BIACI%2CkBAAA%3B%3BEAhCR%2CsBAmCI%2CsBAAqB%3BIACjB%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAW%2CgBAAX%3B%3BEASR%2CQAAQ%2CaAAa%3BIAEb%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CMAAA%3BIACA%2CWAAA%3B%3BEALR%2CQAAQ%2CaAAa%2CiBAQjB%3BIlDzmBA%2CgBAAA%3BIACA%2CqBAAA%3B%3BEAGJ%2CQkD6lBQ%2CaAAa%2CiBAQjB%2CgBlDrmBH%3BIAEO%2CiDAAA%3B%3BEAGJ%2CQkDwlBI%2CaAAa%2CiBAQjB%2CgBlDrmBH%2CMAKI%3BIACG%2CmBAAA%3B%3BEAGJ%2CQkDolBI%2CaAAa%2CiBAQjB%2CgBlDrmBH%2CMASI%3BIACG%2CmBAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3B%3BEAGJ%2CQkD8kBI%2CaAAa%2CiBAQjB%2CgBlDrmBH%2CMAeI%3BIACG%2C8BAAA%3B%3BEAKJ%2CQkDwkBI%2CaAAa%2CiBAQjB%2CgBlDhlBC%3BIACG%2CYAAA%3BIACA%2CUAAA%3B%3BEAGJ%2CQkDmkBI%2CaAAa%2CiBAQjB%2CgBlD3kBC%3BIACG%2CWAAA%3BIACA%2CUAAA%3B%3BEkDikBR%2CQAAQ%2CaAAa%2CiBAQjB%2CgBlDtkBA%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEmDxBR%2CsBAAuB%2CqBAAqB%2CwBAAwB%2CuBAAuB%2COAAM%3BIAC7F%2CaAAA%3BIACA%2CgBAAA%3B%3BECXJ%2CeAAgB%2CMAAK%3BIpDvErB%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CSAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIAEA%2CQAAA%3BIoDZI%2CkBAAA%3B%3BEAGJ%2CeAwEgB%2CMAAK%2CiBAxEjB%3BIlDyCA%2CsBAAA%3BIACA%2CqBAAA%3BIkDvCA%2CkBAAA%3BIACA%2CQAAA%3BIACA%2COAAA%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CeAAA%3B%3BE9DrCJ%2CKAAM%2CgB8DkGU%2CMAAK%2CiBAxEjB%3BI9DzBA%2CqBAAA%3B%3BEQqBJ%2CKAAM%2CgBsD4EU%2CMAAK%2CiBAxEjB%3BItDHA%2CqBAAA%3B%3BEEqBJ%2CKAAM%2CgBoDsDU%2CMAAK%2CiBAxEjB%3BIpDmBA%2CqBAAA%3B%3BEE0BJ%2CKAAM%2CgBkD2BU%2CMAAK%2CiBAxEjB%3BIlD8CA%2CqBAAA%3B%3BEkDhCJ%2CeA0DgB%2CMAAK%2CiBA1DjB%2CmBAAgB%3BEACpB%2CeAyDgB%2CMAAK%2CiBAzDjB%2CmBAAgB%3BIAChB%2CkBAAA%3BIACA%2CMAAA%3BIACA%2COAAA%3BIACA%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CSAAS%2CEAAT%3B%3BEAGJ%2CeA6CgB%2CMAAK%2CiBA7CjB%2CmBAAgB%3BIAChB%2CyBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2CeAwCgB%2CMAAK%2CiBAxCjB%2CmBAAgB%3BIAChB%2CioCAAA%3BIACA%2CaAAA%3B%3BEAGJ%2CeAmCgB%2CMAAK%2CiBAnCjB%2CmBAAgB%2CMAAM%3BEAC1B%2CeAkCgB%2CMAAK%2CiBAlCpB%2CQAAW%2CmBAAgB%3BIACxB%2CqBAAA%3B%3BEAGJ%2CeA8BgB%2CMAAK%2CiBA9BpB%2CQAAW%2CmBAAgB%3BIACxB%2CSAAS%2CEAAT%3B%3BEAKA%2CUAAW%2CgBAwBC%2CMAAK%2CiBA1BpB%2COAAU%2CmBAAgB%3BEAEvB%2CUAAW%2CgBAwBC%2CMAAK%2CiBAzBpB%2CMAAS%2CmBAAgB%3BEAEtB%2CeAuBY%2CMAAK%2CiBA1BpB%2COAAU%2CmBAAgB%3BEAGvB%2CeAuBY%2CMAAK%2CiBAzBpB%2CMAAS%2CmBAAgB%3BIAGlB%2CqBAAA%3B%3BEAIR%2CeAkBgB%2CMAAK%2CiBAlBpB%2CIAAI%2CUAAU%2CWAAc%2CmBAAgB%3BIACzC%2CqBAAA%3B%3BECLJ%3BIAEQ%2CkBAAA%3BIACA%2CeAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CcAAA%3B%3BEAGJ%2CwBAAC%3BIACG%2CeAAA%3BIACA%2CmBAAA%3B%3BEAGJ%2CwBAAC%3BIACG%2CeAAA%3B%3BEAGJ%2CwBAAC%2COAAQ%2CgBAAe%3BIACpB%2CaAAA%3B%3BEAIR%3BIAEQ%2CkBAAA%3BIACA%2C8BAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CqFAAA%3B%3BEAVR%2CeAaM%3BIACE%2CcAAA%3B%3BEAGJ%2CeAAC%3BIACG%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CWAAW%2CaAAX%3B%3BEAGJ%2CeAAC%2CUAAU%3BIACP%2C2BAAA%3BIACA%2C8BAAA%3B%3BEAGJ%2CeAAC%2CYAAY%3BIACT%2C4BAAA%3BIACA%2C4BAAA%3B%3BECzFR%2C2BAA4B%2CwBAA0B%3BIAClD%2CQAAA%3BIACA%2CWAAW%2CqBAAX%3B%3BEC%2BFJ%3BIAEQ%2CaAAA%3B%3BEAFR%2CsBAKI%2CiBAAiB%3BIACb%2CeAAA%3B%3BEANR%2CsBASI%3BIACI%2CmBAAA%3B%3BEAVR%2CsBAaI%2CqBAAoB%3BIAChB%2CgBAAA%3B%3BEAdR%2CsBAiBI%3BIACI%2CmBAAA%3BIACA%2CcAAA%3B%3BECGR%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%3BExD0IJ%2CkBAGI%3BIACI%2CgBAAA%3B%3BEAJR%2CkBAOI%2CSAAQ%3BIACJ%2CYAAA%3B%3BEI5BR%2CyBAKI%3BEALJ%2CyBAMI%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEARR%2CyBAWI%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAKA%2C0BAA2B%2C0BAF%5C%2FB%3BEAEI%2C0BAA2B%2C0BAD%5C%2FB%3BEAEI%2C2BAA4B%2C0BAHhC%3BEAGI%2C2BAA4B%2C0BAFhC%3BEAGI%2CqBAAsB%2C0BAJ1B%3BEAII%2CqBAAsB%2C0BAH1B%3BIAIQ%2CUAAA%3B%3BEqD0MZ%2CcACI%2CeACI%3BIACI%2CeAAA%3BIACA%2CUAAA%3BIACA%2COAAO%2CqBAAP%3B%3BEAEA%2CcANR%2CeACI%2CcAKK%2CUAAU%3BIACP%2CcAAA%3B%3BEAMhB%2CcAAc%2CoBACV%2CeACI%3BIACI%2CUAAA%3B%3BEAKZ%2CcAAc%2CqBACV%2CeACI%3BIACI%2CUAAA%3B%3BE3C7PZ%2CcACI%3BIACI%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAKJ%2CSAAS%2CQAAW%2CWAAE%3BIAClB%2CWAAA%3B%3BEAIR%3BIACI%2CWAAA%3B%3BEAGJ%3BIACI%2CYAAA%3B%3BEAGJ%3BIACI%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CSAAS%2CQAAW%2CWAAS%3BIACzB%2CaAAA%3B%3BEAQR%3BInB0IA%2CcAAA%3BImBxII%2CyBAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BInBkIJ%2CqBAAA%3BImC9QA%2CqBAAA%3B%3BEhB%2BIQ%2CWADH%2CIAAI%2CSACA%3BInB%2BHT%2CcAAA%3BImB7HY%2CmBAAA%3B%3BEAIR%2CWAAC%3BIACG%2C%2BBAAA%3B%3BEAGJ%2CWAAC%3BInBqHL%2CcAAA%3B%3BEmB1IA%2CWgB8HE%3BInChQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEmCHA%2CWAAC%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BInC9DA%2CeAAA%3BIAAA%2CoBAAA%3BIAAA%2CcAAA%3BIAAA%2CSoCnPQ%2COpCmPR%3BIAAA%2CaqCzRe%2CmBrCyRf%3BIAAA%2CsBAAA%3BImCqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEApUI%2CWADH%2CMACI%3BInC2PL%2CcAAA%3B%3BEmCzKA%2CUAAC%3BInCyKD%2CSoCrPQ%2COpCqPR%3B%3BEmBnGI%2CSAAS%2CQAAW%2CWAAE%3BIAClB%2CcAAA%3BIACA%2CYAAA%3B%3BEQiXR%2CkBAEI%3BEADJ%2CuBACI%3BIACI%2CcAAA%3B%3BEAHR%2CkBAEI%2CYAGI%2COAAM%3BEAJd%2CuBACI%2CYAGI%2COAAM%3BIACF%2CmBAAA%3B%3BEANZ%2CkBAEI%2CYAOI%3BEARR%2CuBACI%2CYAOI%3BIACI%2CmBAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CsBAAA%3B%3BEAKZ%2CkBACI%2CoBACI%3BIACI%2CiBAAA%3B%3BEAKZ%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%3BEAuCZ%3BIACI%2CYAAA%3B%3BEAGJ%2CQAAQ%3BIACJ%2CWAAA%3BIACA%2CmBAAA%3B%3BEAGJ%2CoBACI%3BIACI%2CUAAA%3B%3BEAFR%2CoBAII%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%3BEoCpkBJ%2CqBAAC%2CMAAM%3BIACH%2CmBAAA%3BIACA%2CoBAAA%3B%3BEAHR%2CqBAMI%3BIACI%2CSAAA%3B%3BEAPR%2CqBAMI%2CaAGI%3BI%5C%2FDgMR%2CiBAAA%3B%3BE%2BDzMA%2CqBAcI%2CQACI%3BIACI%2CaAAA%3BIACA%2CcAAA%3B%3BEAjBZ%2CqBAcI%2CQAMI%3BI%5C%2FDqLR%2CeAAA%3B%3BE%2BDzMA%2CqBAcI%2CQAUI%3BI%5C%2FDiLR%2CiBAAA%3BI%2BD%5C%2FKY%2CoBAAA%3B%3BEA1BZ%2CqBA8BI%2COACI%3BI%5C%2FD0KR%2CeAAA%3B%3BE%2BDzMA%2CqBA8BI%2COAKI%3BIACI%2CmBAAA%3B%3BEAEA%2CqBARR%2COAKI%2COAGK%3BI%5C%2FDmKb%2CeAAA%3BI%2BDjKgB%2CWAAA%3B%3BE3CmEhB%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CUAAA%3B%3BEALJ%2CaAWI%3BIACI%2CaAAA%3BIACA%2CSAAA%3BIACA%2CiBAAA%3B%3BEAdR%2CaAiBI%3BIACI%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEApBR%2CaAuBI%3BIAEI%2CSAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3B%3BEpB2JR%2CaoB%5C%2FJI%2CMpB%2BJH%3BIAxFD%2CcAAA%3B%3BEA6FA%2CaoBpKI%2CMpBoKH%3BIA7FD%2CcAAA%3B%3BEAkGA%2CaoBzKI%2CMpByKH%3BIAlGD%2CcAAA%3B%3BEAuGA%2CaoB9KI%2CMpB8KH%3BIAvGD%2CcAAA%3B%3BEoB9FA%2CaA8BI%2CQAAO%3BIpBgEX%2CqBAAA%3BIgEzDA%2CsBAAA%3BIACA%2CgBAAA%3BIACA%2C4BAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2CoBAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CqBAAA%3BIACA%2CiBAAA%3BIhEgDA%2CgBAAA%3BIoBxDQ%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CMAAA%3BIACA%2CUAAA%3B%3BEA1CR%2CaA8BI%2CQAAO%2COeoDT%3BInChQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEmCHA%2CafwMI%2CQAAO%2COexMV%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BInC9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSoC3OU%2COpC2OV%3BIAAA%2CaqCzRe%2CmBrCyRf%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BImCqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEApUI%2Caf2LA%2CQAAO%2COe5LV%2CMACI%3BInC2PL%2CcAAA%3B%3BEmCrPI%2CafqLA%2CQAAO%2COetLV%2COACI%3BInCqPL%2CcAAA%3B%3BEgE7CA%2Ca5CnBI%2CQAAO%2CO4CmBV%3BEACD%2Ca5CpBI%2CQAAO%2CO4CoBV%3BIACG%2CgBAAA%3BIACA%2CYAAA%3B%3BEAGJ%2Ca5CzBI%2CQAAO%2CO4CyBV%3BIACG%2CgBAAA%3BIACA%2CYAAA%3B%3BEAGJ%2Ca5C9BI%2CQAAO%2CO4C8BV%3BEACD%2Ca5C%5C%2FBI%2CQAAO%2CO4C%2BBV%3BEACD%2CQAAQ%2CUAAW%2Cc5ChCf%2CQAAO%3BI4CiCP%2CoBAAA%3BIhE%2BBJ%2CYAAA%3B%3BEoBjDY%2CaAfR%2CQAAO%2COAcF%2CMACI%3BIpBiDb%2CWAAA%3B%3BEoB1CA%3BIACI%2CaAAA%3B%3BEVmFJ%2CeAMI%3BIACI%2CWAAA%3B%3BEAEA%2CeAHJ%2CQAGK%3BIACG%2CmBAAA%3B%3BEAKZ%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAGI%2COAAO%2CKAAM%2CcADjB%2CiBAGU%3BIACE%2CWAAA%3B%3BEAThB%2CaAcI%2COACI%2CUACI%3BIVzEZ%2CgBAAA%3BIU2EgB%2CgBAAA%3B%3BEkB4gBhB%2CalBhhBI%2COACI%2CUACI%2COkB8gBX%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2CalBhhBI%2COACI%2CUACI%2COkB8gBX%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BElB%5C%2FiBR%2CaAcI%2COACI%2CUACI%2COkB2aV%3BI5BpfF%2CeAAA%3BI4BwfI%2CqBAAA%3B%3BEA6HA%2CalB9iBA%2COACI%2CUACI%2COkB0iBX%2COAEI%3BEAAD%2CalB9iBA%2COACI%2CUACI%2COkB2iBX%2CSACI%3BIACG%2CaAAA%3B%3BElBpiBJ%2CKAAC%2CcACG%3BIACI%2CeAAA%3BIACA%2CWAAA%3B%3BEAKI%2CKARX%2CcAMG%2CMACI%2CKACK%3BIACG%2CsBAAA%3B%3BEAIR%2CKAbP%2CcAMG%2CMAOK%2CQACG%3BIACI%2CiBAAA%3B%3BEAMR%2CKArBP%2CcAoBG%2CSACK%3BIACG%2CmBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2CSAAA%3B%3BEAGJ%2CKA9BP%2CcAoBG%2CSAUK%3BIACG%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAlCZ%2CKAAC%2CcAsCG%2CcACI%3BIACI%2CgBAAA%3B%3BEAzChB%2CKA%2BCI%3BIACI%2CmBAAA%3B%3BEAKR%2CsBACI%3BIACI%2CiBAAA%3BIACA%2CSAAA%3B%3BEAHR%2CsBAMI%3BIACI%2CYAAA%3BIACA%2CeAAA%3B%3BEAGI%2CsBALR%2COAII%2CMACK%3BIACG%2CeAAA%3B%3BEAMhB%2CKAAK%2CcACD%2CuBACM%2CQACE%2CMACI%2CGACI%2CGAAE%3BIACE%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAPxB%2CKAAK%2CcAcD%2CMACM%3BIACE%2CgBAAA%3B%3BEuDjDZ%3BIACI%2CiBAAA%3B%3BEADJ%2CiBAGI%3BIACI%2CYAAA%3BIACA%2CYAAA%3B%3BEvC3UR%3BI1B%2BMA%2CmBAAA%3BIgCtLA%2CWAAA%3BIhCsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3BI0B9WL%2CmBAAA%3B%3BEAGJ%2CyBACI%3BIACI%2CcAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3B%3BEwCsER%3BIlE%2BHA%2CYAAA%3B%3BEmE1QA%2CqBACI%2CaACI%3BInEwQR%2CgBAAA%3B%3BEmE1QA%2CqBACI%2CaAKI%2CcACI%3BIACI%2CYAAA%3BIACA%2CkBAAA%3B%3BEC8NhB%2CyBACI%2CiBACM%3BIACE%2CYAAA%3B%3BEAIA%2CyBANR%2CiBAKI%2CQACK%3BIACG%2CSAAA%3B%3BEAMhB%2CYACI%3BEADJ%2CYAEI%3BIpEmBJ%2CgBAAA%3B%3BEoEdA%3BIACI%2CWAAA%3B%3BEC3QJ%3BIrEwRA%2CmBAAA%3BIAAA%2CmBAAA%3BIgClLA%2CYAAA%3BIhCkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BEsE7QT%2CoBACI%2CcACI%3BIACI%2CaAAA%3B%3BECnEZ%3BIvE2KA%2CsBAAA%3BIAAA%2CyBAAA%3BIuExKI%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%3BIvE4JL%2CYAAA%3BIuE1JQ%2CmBAAmB%2CWAAnB%3BIACA%2C0EAAA%3BIACA%2CWAAW%2CWAAX%3BIACA%2C0DAAA%3BIACA%2CmBAAA%3B%3BEAIR%3BIvEkJA%2CmBAAA%3BIuEhJI%2CiBAAA%3B%3BEAGJ%2CqBACI%3BIvE4IJ%2CiBAAA%3BIuE1IQ%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%3BIvEkOJ%2CqBAAA%3BIACA%2CoBAAA%3BIACA%2CaAAA%3BIAkCA%2C2BAAA%3BIACI%2CuBAAA%3BIACI%2CmBAAA%3BIuErQA%2C6BAAA%3B%3BEATR%2CqBAYI%2COAAM%3BEAZV%2CqBAaI%3BEAbJ%2CqBAcI%3BEAdJ%2CqBAeI%3BIvEyNJ%2CqBAAA%3BIACA%2CoBAAA%3BIACA%2CaAAA%3BIAkCA%2C8BAAA%3BIACI%2C0BAAA%3BIACI%2CsBAAA%3BIA9BR%2CoBAAA%3BIACQ%2CYAAA%3B%3BEuEjPR%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%3BEClCR%2CwBACI%2CiBACI%3BIACI%2CYAAA%3BIACA%2CSAAA%3B%3BEAJZ%2CwBAQI%2CUACM%2CwBACI%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEAZhB%2CwBAiBI%2CwBACI%2CUACM%3BIACE%2CgBAAA%3B%3BEAGI%2CwBANhB%2CwBACI%2CUACM%2CSAGG%2COACI%3BIACG%2CUAAA%3BIACA%2CQAAA%3B%3BEAIR%2CwBAZZ%2CwBACI%2CUACM%2CSAUG%2CKACG%3BIACI%2CkBAAA%3B%3BEAGJ%2CwBAjBhB%2CwBACI%2CUACM%2CSAUG%2CKAKI%2CaACG%3BIACI%2CcAAA%3B%3BEAS5B%2CyBACI%3BIACI%2CYAAA%3B%3BEAFR%2CyBAKI%2CiBACI%3BIACI%2CoBAAA%3B%3BEC7CZ%2CwBACI%3BIzEoGJ%2CkBAAA%3B%3BEyErGA%2CwBAKI%2CwBACI%2CsBACM%3BIACE%2CcAAA%3B%3BECjLhB%2CoBAAqB%2CQAAO%2CIAAI%2CqBAAsB%2CMAAK%3BIACvD%2CgBAAA%3B%3BEpE4XJ%2CgBAGI%2COAEI%2COACI%2CiBACM%3BIACE%2CgBAAA%3BIACA%2CkBAAA%3B%3BEATpB%2CgBAGI%2COAEI%2COACI%2CiBAMM%3BIACE%2CWAAA%3B%3BEAcpB%2CSACI%2CUACI%2COACI%3BIN7IZ%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BIMkJgB%2CsBAAA%3BIACA%2CWAAA%3B%3BEAThB%2CSACI%2CUACI%2COAUI%3BINtJZ%2CYAAA%3BIMwJgB%2CWAAA%3B%3BEAMhB%2CKAAK%2CSAAS%3BEACd%2CKAAK%2CKAAK%3BEACV%2CKAAK%2CSAAS%3BEACd%2CKAAK%2COAAO%3BEACZ%2CKAAK%2COAAO%3BEACZ%2CKAAK%3BIACD%2CgBAAA%3BIACA%2CUAAA%3B%3BEAOJ%2CQAAQ%2C0BACJ%3BEADJ%2CQAAQ%2C0BAEJ%3BIACI%2CYAAA%3B%3BEAHR%2CQAAQ%2C0BAMJ%2CQAAO%3BIACH%2CYAAA%3B%3BEAsBR%2CqBACI%2COAAM%3BIAEF%2CYAAA%3B%3BEAHR%2CqBACI%2COAAM%2CUAIA%3BIACE%2CqBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CYAAA%3B%3BEAEA%2CqBAXR%2COAAM%2CUAIA%2CQAOG%2CeAAe%3BEAChB%2CqBAZR%2COAAM%2CUAIA%2CQAQG%2CeAAe%3BIACZ%2CgBAAA%3B%3BEAGJ%2CqBAhBR%2COAAM%2CUAIA%2CQAYG%2CUAAU%3BIACP%2CiBAAA%3B%3BEAchB%2CQAAQ%2CcACJ%3BIACI%2CqBAAA%3B%3BEqE%5C%2FbR%2C0BAKI%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEAPR%2C0BAUI%3BIACI%2CYAAA%3BIACA%2CUAAA%3B%3BEAGI%2C0BALR%2CwBAII%2COAAM%2CIACE%3BIACA%2CcAAA%3B%3BEhEqKhB%2CaACI%3BIACI%2CmBAAA%3B%3BEAIR%3BIACI%2CkBAAA%3BIACA%2CUAAA%3B%3BEAFJ%2CaAII%3BIACI%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3B%3BEAPR%2CaAII%2CiBAKI%3BIACI%2CYAAA%3B%3BEAVZ%2CaAII%2CiBAKI%2CWAGI%3BIACI%2CYAAA%3BIACA%2CiBAAA%3B%3BEAdhB%2CaAII%2CiBAKI%2CWAQI%3BIACI%2CcAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAKJ%2CaArBR%2CiBAoBK%2CUAAU%2CGACN%3BIXAb%2C8BAAA%3BIWEgB%2CYAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CQAAA%3B%3BEAMhB%3BIXfA%2CgBAAA%3BIAAA%2CiBAAA%3B%3BEWsCI%2CKAAC%2CcACG%3BIACI%2CWAAA%3B%3BEASZ%2CcAEI%3BEADJ%2CmBACI%3BIACI%2CcAAA%3B%3BEP5IR%2CyBACI%3BIACI%2CmBAAA%3B%3BEAFR%2CyBACI%2CUAEM%2C2BACI%3BIJoFd%2CgBAAA%3BI4BwcA%2CsBAAA%3B%3BExBhiBA%2CyBACI%2CUAEM%2C2BACI%2CSwB6tBZ%3BIAoDF%2CSAAA%3B%3BE5Bj7BA%2CyBI6JI%2CUAEM%2C2BACI%2CSJhKb%3BEACD%2CyBI4JI%2CUAEM%2C2BACI%2CSJ%5C%2FJb%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CyBIuJI%2CUAEM%2C2BACI%2CSJ1Jb%3BIACG%2CWAAA%3B%3BE4BurBJ%2CyBxBjiBI%2CUAEM%2C2BACI%2CSwB8hBb%2COAAO%3BEACR%2CyBxBliBI%2CUAEM%2C2BACI%2CSwB%2BhBb%2CSAAS%3BI5B3cV%2CqBAAA%3BIAAA%2CYAAA%3BI4B8cI%2CsBAAA%3BIACA%2CSAAS%2CGAAT%3BIACA%2CWAAA%3BIACA%2CWAAA%3B%3BExBziBJ%2CyBACI%2CUAEM%2C2BACI%2CSwBwiBd%3BI5BpdA%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BI4BwdI%2CsBAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CyBxBnjBI%2CUAEM%2C2BACI%2CSwBgjBb%2CIAAI%2CSACC%3BI5B7dN%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BI4BkeQ%2CsBAAA%3BIACA%2CWAAA%3B%3BEAPR%2CyBxBnjBI%2CUAEM%2C2BACI%2CSwBgjBb%2CIAAI%2CSAUC%3BI5BteN%2CYAAA%3BI4BweQ%2CWAAA%3B%3BExBliBA%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%3BEkBlBZ%2CuBAEI%3BEADJ%2CeACI%3BIACI%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEA%2CuBANJ%2CeAMQ%3BEAAJ%2CeANJ%2CeAMQ%3BItBoCZ%2C8BAAA%3BIsBlCY%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CoBAAA%3BIACA%2CUAAA%3B%3BEPlOZ%2CqBAEI%3BEAFJ%2CqBAGI%2COAAM%3BIf8PV%2CgBAAA%3B%3BEezPA%2CkBACI%3BIACI%2CUAAA%3B%3BEQmVJ%2CSAAC%2COAAO%3BIAKJ%2CYAAA%3BIvBjGR%2CQAAA%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BIAAA%2CYAAA%3BIuBsGQ%2CWAAA%3B%3BEAVJ%2CSAAC%2COAAO%2CMACJ%3BIvB7FR%2CgBAAA%3B%3BE4BulBA%2CSL3fK%2COAAO%2CMACJ%2COK0fP%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2CSL3fK%2COAAO%2CMACJ%2COK0fP%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEL5gBJ%2CSAAC%2COAAO%2CMACJ%2COKuZN%3BI5BpfF%2CeAAA%3BI4BwfI%2CqBAAA%3B%3BEA6HA%2CSLzhBC%2COAAO%2CMACJ%2COKshBP%2COAEI%3BEAAD%2CSLzhBC%2COAAO%2CMACJ%2COKuhBP%2CSACI%3BIACG%2CaAAA%3B%3BEL5gBR%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%3BIvBjKZ%2CeAAA%3B%3BEuBuKQ%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%3BEqD5ZpB%2CMAAM%3BIACF%2CcAAA%3BIACA%2CkBAAA%3B%3BEAFJ%2CMAAM%2CWAIF%3BIACI%2CiBAAA%3B%3BEAEA%2CMAPF%2CWAIF%2COAGK%3BIACG%2CgBAAA%3B%3BEARZ%2CMAAM%2CWAIF%2COAOI%3BIACI%2CWAAA%3B%3BEAZZ%2CMAAM%2CWAgBF%2CQAAO%3BIACH%2CkBAAA%3B%3BE%5C%2FDHR%2CcACI%3BIACI%2CgCAAA%3B%3BEAFR%2CcAKI%2CeAEI%3BEAPR%2CcAKI%2CeAGI%3BEARR%2CcAKI%2CeAII%2C2BAA6B%3BIACzB%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAZZ%2CcAKI%2CeAUI%3BIACI%2CaAAA%3BIACA%2CUAAA%3B%3BEAjBZ%2CcA2BI%2CKAAI%3BEA3BR%2CcA4BI%3BEA5BJ%2CcA6BI%3BIACI%2CiBAAA%3B%3BEgE%2BBJ%2CSAAS%2CQAAQ%2CKAAM%3BIACnB%2CSAAA%3B%3BEC9GR%2CgBACM%3BIACE%2CiBAAA%3B%3BEvEoFR%2CmBAEI%2CYACI%2COAAM%3BIACF%2CgBAAA%3B%3BEASZ%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BIAEI%2CmBAAA%3B%3BEAOpB%2CuBACI%2CaACI%3BIACI%2CkBAAA%3B%3BEAHZ%2CuBACI%2CaAKI%3BIACI%2CYAAA%3BIACA%2CgBAAA%3B%3BECsKZ%2CkBACI%3BEADJ%2CkBAEI%3BIACI%2CiBAAA%3B%3BEAKI%2CkBAFP%2CWACG%2CKACK%3BEACD%2CkBAHP%2CWACG%2CKAEK%3BEACD%2CkBAJP%2CWACG%2CKAGK%3BIACG%2CkBAAA%3B%3BEAGJ%2CkBARP%2CWACG%2CKAOK%3BIACG%2CiBAAA%3B%3BEAMhB%2CoBACI%3BIACI%2CeAAA%3BIACA%2CgBAAA%3B%3BEAHR%2CoBAMI%3BIACI%2CYAAA%3B%3BEAIR%2CsBACI%2CQAAO%3BIACH%2CcAAA%3BIACA%2CYAAA%3B%3BEAIR%2CmBACI%3BIRzEJ%2CiBAAA%3B%3BEQmFA%2CuBAEI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BEANhB%2CiBACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BIAEI%2CmBAAA%3B%3BEgB5FpB%2CaACM%3BEADN%2CaAEM%3BEAFN%2CaAGM%3BIACE%2CsBAAA%3BIACA%2CWAAA%3B%3BEAIR%2CWAAY%3BIACR%2CcAAA%3B%3BEAIA%2COAAC%2CMACK%2CUAAO%3BIACL%2CYAAA%3BIACA%2CYAAA%3BIxBjBZ%2CSAAA%3BIAAA%2CUAAA%3BIwC1KA%2CqBAAA%3BIhB6LY%2CiBAAA%3B%3BEALR%2COAAC%2CMACK%2CUAAO%2CMgBnLf%3BIACE%2CqBAAA%3BIACA%2CmBAAA%3B%3BEhBgLA%2COAAC%2CMACK%2CUAAO%2CMAMH%3BIACE%2CeAAA%3BIACA%2CkBAAA%3B%3BEAEA%2COAXX%2CMACK%2CUAAO%2CMAMH%2CKAIG%3BEAXb%2COAAC%2CMACK%2CUAAO%2CMAMH%2CKAKE%3BIACI%2CgBAAA%3B%3BEAGJ%2COAhBX%2CMACK%2CUAAO%2CMAMH%2CKASG%2CQACG%3BIxB%5C%2FBpB%2CiBAAA%3B%3BEwBuCI%2COAAC%3BIAEG%2CoBAAA%3B%3BEAIR%3BIACI%2CSAAA%3BIACA%2CgBAAA%3B%3BEAFJ%2CYAII%2COAAM%3BIACF%2CgCAAA%3B%3BEALR%2CYAQI%2CQAAO%3BIAEH%2CoBAAA%3BIACA%2CiBAAA%3B%3BEAXR%2CYAcI%3BIACI%2CqBAAA%3B%3BEAIR%2CUACM%2CsBACE%3BIACI%2CqBAAA%3B%3BEAHZ%2CUACM%2CsBAKE%2CYAAc%3BIACV%2CYAAA%3BIACA%2CgBAAA%3B%3BEAKZ%3BIACI%2CqBAAA%3B%3BEADJ%2CKAGI%3BIACI%2CmBAAA%3B%3BEAKJ%2COAAC%2CQACG%3BIACI%2CYAAA%3B%3BEAFR%2COAAC%2CQAKG%3BIACI%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3B%3BEATR%2COAAC%2CQAYG%2CUAAS%3BIACL%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3B%3BEuD5UZ%2CgBACI%2CWACI%3BIACI%2CcAAA%3B%3BEjEoPA%2CcAHE%2CSACV%2CSACK%2CKACI%3BIACG%2CqBAAA%3B%3BEAGJ%2CcAPE%2CSACV%2CSACK%2CKAKI%3BIACG%2CgBAAA%3B%3BEANR%2CcAFM%2CSACV%2CSACK%2CKASG%2CUACI%2COAAM%3BIACF%2CmBAAA%3BIACA%2CmBAAA%3B%3BEAZZ%2CcAFM%2CSACV%2CSACK%2CKASG%2CUACI%2COAAM%2CIAIF%3BIACI%2CWAAA%3B%3BEAfhB%2CcAFM%2CSACV%2CSACK%2CKAoBG%2CYACI%3BIACI%2CSAAA%3B%3BEAtBZ%2CcAFM%2CSACV%2CSACK%2CKAoBG%2CYAKI%3BIACI%2CgBAAA%3B%3BEAUR%2CqBAFR%2CSACK%2CKACI%3BIACG%2CYAAA%3B%3BEgB3OhB%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%3BA5BlFZ%2CgBAN4C%3BEHiF5C%2CcACI%3BICqJJ%2CYAAA%3BIAAA%2CSAAA%3BIDlJQ%2CUAAA%3B%3B%3BAG1ER%2CgBALwC%3BE8E6RxC%2CSAAU%3BIACN%2CgBAAA%3BIACA%2CqBAAA%3BIACA%2CcAAA%3B%3BEnC%2BWJ%2CuBAAwB%3BIACpB%2CUAAA%3B%3BEAGJ%2CmBAAmB%3BIACf%2CUAAA%3B%3BEoCvfJ%2CwBAAyB%3BIACrB%2CmBAAA%3B%3BE%5C%2FBnDJ%2CsBAAuB%3BIACnB%2CmBAAA%3BIACA%2CcAAA%3B%3BEgCzJJ%3BIACI%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CsFAAA%3BIACA%2CUAAA%3BIACA%2CyBAAA%3BIACA%2CoBAAA%3B%3BEAGJ%2CmBAAmB%2CMAAO%3BEAC1B%2CYAAY%2CMAAO%3BIACf%2CcAAA%3BIACA%2CUAAA%3BIACA%2CoBAAA%3B%3BEAGJ%3BIACI%2CaAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CoBAAqB%3BIAGb%2CcAAA%3BIACA%2CcAAA%3BIACA%2CsBAAA%3BIACA%2CoBAAA%3BIACA%2CiDAAA%3BIACA%2C6CAAA%3BIACA%2CYAAA%3BIACA%2CmBAAA%3BIACA%2CYAAA%3B%3BEAXR%2CoBAAqB%2CyBAcjB%3BIACI%2CoBAAA%3BIACA%2CkBAAA%3B%3BEAhBR%2CoBAAqB%2CyBAmBjB%2CiBAAgB%3BIACZ%2CmBAAA%3BIACA%2CwBAAA%3B%3BEAIR%3BIACI%2CqBAAA%3BIACA%2CcAAA%3BIACA%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3B%3BEAGJ%2CqBAAsB%3BIAEd%2CWAAA%3B%3BEAFR%2CqBAAsB%2CuBAKlB%3BIACI%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2CqBAVkB%2CuBAUjB%2CWAAY%3BIACT%2CgBAAA%3B%3BEAXR%2CqBAAsB%2CuBAclB%3BIACI%2CgBAAA%3B%3BEAIR%2CqBAAsB%2CuBAAuB%3BIAErC%2CgBAAA%3B%3BEAFR%2CqBAAsB%2CuBAAuB%2CqBAKzC%3BIACI%2CgBAAA%3B%3BEAGJ%2CqBATkB%2CuBAAuB%2CqBASxC%3BIACG%2CgBAAA%3B%3BEAIR%2CqBAAsB%2CiBAAiB%2CqBAAqB%3BIACxD%2CgBAAA%3BIACA%2CeAAA%3B%3BE%5C%2FB%2BFJ%3BIAEQ%2CmBAAA%3BIACA%2CaAAA%3BIACA%2C8BAAA%3BIACA%2CkBAAA%3B%3BEALR%2CyBAQM%3BIACE%2CcAAA%3B%3BEATR%2CyBAYM%3BIACE%2CmBAAA%3B%3BEAbR%2CyBAgBI%2CkBAAoB%3BIAChB%2CeAAA%3BIACA%2CgBAAA%3B%3BEAlBR%2CyBAqBI%3BIACI%2CeAAA%3BIACA%2CiBAAA%3B%3BEAvBR%2CyBA0BI%3BIACI%2CeAAA%3BIACA%2CgBAAA%3B%3BEA5BR%2CyBA%2BBI%3BIACI%2CaAAA%3B%3BEAhCR%2CyBAmCI%2CyBAA2B%3BIACvB%2CmBAAA%3B%3BEGXR%2CsBAAsB%2CIAAI%2CWAAY%3BIAClC%2CyBAAA%3B%3BEAGJ%2C0BAA0B%2CMAAM%2CIAAI%2CUAAW%3BIAC3C%2CWAAW%2CcAAX%3B%3BEMlCJ%2CYAAY%2CoBAAqB%2C2BAA0B%2CMAAM%2CIAAI%2CUAAW%3BIAC5E%2CWAAW%2CcAAX%3B%3BEEuKJ%2CcACI%3BIACI%2CUAAA%3B%3BEAIR%2CoBACI%2CeACI%3BIACI%2CmBAAA%3B%3BEAKZ%2CqBACI%2CeACI%3BIACI%2CUAAA%3B%3BEAKZ%2CcACI%2CeACI%3BIACI%2CSAAA%3B%3BEAHZ%2CcACI%2CeAKI%3BIACI%2CeAAA%3BIACA%2CUAAA%3BIACA%2COAAO%2CqBAAP%3B%3BEAEA%2CcAVR%2CeAKI%2CcAKK%2CUAAU%3BIACP%2CeAAA%3B%3BEAGJ%2CcAdR%2CeAKI%2CcASK%2CUAAU%3BIACP%2CcAAA%3B%3BEAOZ%2CcAAC%2CoBACG%2CeACI%3BIACI%2CcAAA%3BIACA%2CUAAA%3B%3BEAKZ%2CcAAC%2CqBACG%2CeACI%3BIACI%2CeAAA%3BIACA%2CcAAA%3B%3BEAEA%2CcANX%2CqBACG%2CeACI%2CcAIK%2CUAAU%3BIACP%2CeAAA%3B%3BEAGJ%2CcAVX%2CqBACG%2CeACI%2CcAQK%2CUAAU%3BIACP%2CcAAA%3B%3BEK3YpB%2CqBACI%2CaACI%3BInEmPR%2CmBAAA%3BIAAA%2CYAAA%3BImEhPY%2CSAAA%3B%3BECwOZ%2CYACI%3BIpEOJ%2CmBAAA%3B%3BEoEJQ%2CYAHJ%2CuBAGK%3BIpEIT%2CgBAAA%3BIAAA%2CQoExQoC%2CiBpEwQpC%3BIoEDY%2CSAAS%2CEAAT%3BIACA%2COAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CUAAA%3B%3BEAIA%2CYAdR%2CuBAaK%2CUAAU%2CQACN%3BIACG%2CaAAA%3B%3BEAKJ%2CYApBR%2CuBAmBK%2CcACI%3BIACG%2CaAAA%3B%3BEAIA%2CYAzBZ%2CuBAmBK%2CcAKK%2CyBACG%3BIACG%2CaAAA%3B%3BEAOpB%3BIACI%2CgBAAA%3B%3BEtDyCJ%2CqBACI%2CeACI%3BIACI%2CSAAA%3B%3BEAHZ%2CqBACI%2CeAKI%3BIACI%2CaAAa%2C8BAAb%3BIACA%2CUAAA%3BIACA%2CcAAA%3B%3BEAEA%2CqBAVR%2CeAKI%2CcAKK%2CUAAU%3BIACP%2CcAAA%3B%3BEgBxNhB%2CMAAM%2COAAQ%2CeAAe%3BIACzB%2CUAAA%3B%3BEAGJ%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%2CMAAM%2COAAQ%2CeAAe%3BIACzB%2CSAAA%3B%3BEAGJ%2CMAAM%2COAAQ%2CeAAe%3BIACzB%2CaAAa%2C8BAAb%3BIACA%2CUAAA%3BIACA%2CcAAA%3B%3BEAEA%2CMALE%2COAAQ%2CeAAe%2CcAKxB%2CUAAU%3BIACP%2CcAAA%3B%3B%3BA5B%5C%2FGZ%2CgBAJ2C%3BE8EmSvC%2CSAAU%3BIACN%2CuBAAA%3B%3BErDkQJ%2CQACI%2CeACI%2CmBACI%3BIACI%2CWAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3B%3BEARhB%2CQACI%2CeAWI%3BIACI%2CiBAAA%22%7D */