/* The same category tree powers the mobile focus panel and the desktop category sidebar.
   On desktop it must be opt-in: hide it globally, then show it only on category listings. */
@media only screen and (min-width: 992px) {
  .nav-toggle-button {
    display: none !important;
  }
  .focus-panel-nav {
    display: none !important;
  }
  #pneumatig-category-tree {
    display: none !important;
  }
  body.catalog-category-view #pneumatig-category-tree.is-ready {
    display: block !important;
  }
  body.catalog-category-view:has(.pg-product-configurable) #pneumatig-category-tree {
    display: none !important;
  }
  #pneumatig-category-tree {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
  }
  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .category-list.level-0 {
    padding: 8px 0;
  }
  .category-item {
    margin: 0;
    border-bottom: 1px solid #eeeff2;
  }
  .category-item:last-child {
    border-bottom: none;
  }
  .category-item > a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    text-decoration: none;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
  }
  .category-item > a:hover {
    background-color: #eff6ff;
    color: #1979c3;
    border-left-color: #1979c3;
    text-decoration: none;
  }
  .category-item > a .fa-pg-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  .category-item > a .fa-pg-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .category-item > a:hover .fa-pg-icon {
    opacity: 1;
  }
  .category-item > a .category-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .category-item.has-children > a {
    padding-right: 40px;
  }
  .category-item.has-children > a::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.5rem;
    font-weight: 300;
    color: #6b7280;
    transition: transform 0.25s ease, color 0.2s ease;
  }
  .category-item.has-children > a:hover::after {
    color: #1979c3;
  }
  .category-item.submenu-open > a::after {
    transform: translateY(-50%) rotate(90deg);
    color: #1979c3;
  }
  .level-1,
  .level-2,
  .level-3,
  .level-4 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
  }
  .level-1 .category-item > a,
  .level-2 .category-item > a,
  .level-3 .category-item > a,
  .level-4 .category-item > a {
    padding-left: 44px;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .level-1 .category-item > a:hover,
  .level-2 .category-item > a:hover,
  .level-3 .category-item > a:hover,
  .level-4 .category-item > a:hover {
    color: #1979c3;
    background-color: #e5f0ff;
  }
  .level-1 .category-item > a .fa-pg-icon,
  .level-2 .category-item > a .fa-pg-icon,
  .level-3 .category-item > a .fa-pg-icon,
  .level-4 .category-item > a .fa-pg-icon {
    display: none;
  }
  .level-1 .category-item.has-children > a,
  .level-2 .category-item.has-children > a,
  .level-3 .category-item.has-children > a,
  .level-4 .category-item.has-children > a {
    padding-right: 40px;
  }
  .level-2 {
    background-color: #f6f7f9;
  }
  .level-2 .category-item > a {
    padding-left: 58px;
    font-size: 12.5px;
  }
  .level-3 {
    background-color: #f3f5f7;
  }
  .level-3 .category-item > a {
    padding-left: 72px;
    font-size: 12px;
  }
  .level-4 {
    background-color: #f0f2f5;
  }
  .level-4 .category-item > a {
    padding-left: 86px;
  }
  .category-item.active > a,
  .category-item > a.active {
    background-color: #eff6ff;
    color: #1979c3;
    border-left-color: #1979c3;
    font-weight: 600;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-toggle-button {
    display: none !important;
  }
  .focus-panel-nav {
    display: none !important;
  }
  #pneumatig-category-tree {
    max-width: 100%;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .pneumatig-cat-tree.is-pending-move {
    display: none;
  }
  .pneumatig-cat-tree.is-ready {
    display: block;
  }
  .pg-store-switcher-wrapper {
    display: none;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
  }
  .nav-toggle {
    display: none !important;
  }
  .nav-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    top: 15px;
    left: 15px;
    box-shadow: none !important;
  }
  .nav-toggle-button .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    border-radius: 1px;
  }
  .nav-toggle-button .icon-bar {
    transition: all 0.3s ease;
  }
  .nav-toggle-button.'is-active' .icon-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle-button.'is-active' .icon-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle-button.'is-active' .icon-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .focus-panel-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.9399999999999999);
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.15);
  }
  body.nav-open .focus-panel-nav {
    transform: translateX(0);
  }
  .focus-panel-nav .panel-header {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    background-color: #fafafa;
  }
  .focus-panel-nav .panel-tabs {
    display: flex;
    justify-content: center;
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 5px;
  }
  .focus-panel-nav .panel-tabs .tab-link {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  .focus-panel-nav .panel-tabs .tab-link.active {
    background-color: #fff;
    color: #0055a4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .focus-panel-nav .panel-content-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .focus-panel-nav .panel-content {
    display: none;
  }
  .focus-panel-nav .panel-content.active {
    display: block;
  }
  .focus-panel-nav .category-list,
  .focus-panel-nav .utility-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
  }
  .focus-panel-nav .category-list li,
  .focus-panel-nav .utility-list li {
    border-bottom: 1px solid #eaeaea;
  }
  .focus-panel-nav .category-list li:last-child,
  .focus-panel-nav .utility-list li:last-child {
    border-bottom: none;
  }
  .focus-panel-nav .category-list a,
  .focus-panel-nav .utility-list a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .focus-panel-nav .category-list a:hover,
  .focus-panel-nav .utility-list a:hover {
    background-color: #8bc7ff;
    color: #0055a4;
  }
  .focus-panel-nav .category-list a .fa-pg-icon,
  .focus-panel-nav .utility-list a .fa-pg-icon {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    position: relative;
  }
  .focus-panel-nav .category-list a .fa-pg-icon::before,
  .focus-panel-nav .utility-list a .fa-pg-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .focus-panel-nav .category-list a .category-name,
  .focus-panel-nav .utility-list a .category-name {
    flex-grow: 1;
  }
  .focus-panel-nav .category-list .has-children > a,
  .focus-panel-nav .utility-list .has-children > a {
    position: relative;
  }
  .focus-panel-nav .category-list .has-children > a:after,
  .focus-panel-nav .utility-list .has-children > a:after {
    content: '›';
    font-size: 2.2rem;
    font-weight: 300;
    color: #989898;
    margin-left: auto;
    padding-left: 15px;
    transition: transform 0.25s ease;
  }
  .focus-panel-nav .category-list .submenu-open > a:after,
  .focus-panel-nav .utility-list .submenu-open > a:after {
    transform: rotate(90deg);
    color: #0055a4;
  }
  .focus-panel-nav .category-list .level-1,
  .focus-panel-nav .utility-list .level-1,
  .focus-panel-nav .category-list .level-2,
  .focus-panel-nav .utility-list .level-2,
  .focus-panel-nav .category-list .level-3,
  .focus-panel-nav .utility-list .level-3,
  .focus-panel-nav .category-list .level-4,
  .focus-panel-nav .utility-list .level-4 {
    background-color: #f9f9f9;
    display: none;
    border-top: 1px solid #eaeaea;
    list-style: circle;
  }
  .focus-panel-nav .category-list .level-1 a,
  .focus-panel-nav .utility-list .level-1 a,
  .focus-panel-nav .category-list .level-2 a,
  .focus-panel-nav .utility-list .level-2 a,
  .focus-panel-nav .category-list .level-3 a,
  .focus-panel-nav .utility-list .level-3 a,
  .focus-panel-nav .category-list .level-4 a,
  .focus-panel-nav .utility-list .level-4 a {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
  }
  .focus-panel-nav .category-list .level-1 a:hover,
  .focus-panel-nav .utility-list .level-1 a:hover,
  .focus-panel-nav .category-list .level-2 a:hover,
  .focus-panel-nav .utility-list .level-2 a:hover,
  .focus-panel-nav .category-list .level-3 a:hover,
  .focus-panel-nav .utility-list .level-3 a:hover,
  .focus-panel-nav .category-list .level-4 a:hover,
  .focus-panel-nav .utility-list .level-4 a:hover {
    border-left-color: #0055a4;
  }
  .focus-panel-nav .category-list .level-2,
  .focus-panel-nav .utility-list .level-2 {
    padding-left: 30px;
    background-color: #fdfdfd;
  }
  .focus-panel-nav .category-list .level-3,
  .focus-panel-nav .utility-list .level-3 {
    padding-left: 45px;
    background-color: #ffffff;
  }
  .focus-panel-nav .panel-footer {
    padding: 20px;
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
  }
  .focus-panel-nav .panel-footer .switcher.language .label.switcher-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown {
    position: relative;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown.is-active .switcher-dropdown {
    display: block;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown .action.toggle {
    width: -webkit-fill-available;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown .action.toggle:after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.2s ease;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown.is-active .action.toggle:after {
    transform: rotate(180deg);
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown .dropdown.switcher-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    z-index: 1010;
    max-height: 250px;
    overflow-y: auto;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown .dropdown.switcher-dropdown ul {
    list-style: none;
    padding: 5px;
    margin: 0;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown .dropdown.switcher-dropdown li {
    border: 0;
    display: block;
  }
  .focus-panel-nav .panel-footer .switcher.language .actions.dropdown .dropdown.switcher-dropdown li a {
    padding: 10px 15px;
    border-radius: 4px;
    display: block;
  }
  .focus-panel-nav .pneumatig-authorization-link {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
  }
  .focus-panel-nav .pneumatig-authorization-link a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 300;
    border-bottom: 1px solid #eaeaea;
  }
  .focus-panel-nav .pneumatig-authorization-link a:hover {
    background-color: #8bc7ff;
    color: #0055a4;
  }
  .focus-panel-nav .pneumatig-authorization-link a i {
    margin-left: auto;
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%5C%2Fstatic%5C%2Ffrontend%5C%2FPneumatig%5C%2FPG%5C%2Fes_ES%5C%2FPneumatig_Theme%5C%2Fcss%5C%2Fsource%5C%2F_focus-panel-nav.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3B%3BAAuOA%2CwBAhO0C%3BEAiBtC%3BIACI%2CwBAAA%3B%3BEAGJ%3BIACI%2CwBAAA%3B%3BEAGJ%3BIACI%2CwBAAA%3B%3BEAGJ%2CIAAI%2CsBAAuB%2CyBAAwB%3BIAC%5C%2FC%2CyBAAA%3B%3BEAGJ%2CIAAI%2CsBAAsB%2CIAAI%2C0BAA2B%3BIACrD%2CwBAAA%3B%3BEAGJ%3BIACI%2CWAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CyBAAA%3BIACA%2CyCAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3B%3BEAKJ%3BIACI%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CSAAA%3B%3BEAEA%2CcAAC%3BIACG%2CcAAA%3B%3BEAKR%3BIACI%2CSAAA%3BIACA%2CgCAAA%3B%3BEAEA%2CcAAC%3BIACG%2CmBAAA%3B%3BEALR%2CcAQK%3BIACG%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CkBAAA%3BIACA%2CqBAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CyBAAA%3BIACA%2CkCAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CcAZH%2CIAYI%3BIACG%2CyBAAA%3BIACA%2CcAAA%3BIACA%2C0BAAA%3BIACA%2CqBAAA%3B%3BEAxBZ%2CcAQK%2CIAoBG%3BIACI%2CWAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CcAAA%3BIACA%2CYAAA%3BIACA%2C6BAAA%3B%3BEAEA%2CcA5BP%2CIAoBG%2CYAQK%3BIACG%2CSAAS%2CEAAT%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CcAAA%3BIACA%2C4BAAA%3BIACA%2C2BAAA%3BIACA%2CwBAAA%3B%3BEAIR%2CcAvCH%2CIAuCI%2CMAAO%3BIACJ%2CUAAA%3B%3BEAhDZ%2CcAQK%2CIA4CG%3BIACI%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CuBAAA%3BIACA%2CmBAAA%3B%3BEAKR%2CcAAC%2CaAAc%3BIACX%2CmBAAA%3B%3BEAEA%2CcAHH%2CaAAc%2CIAGV%3BIACG%2CSAAS%2CKAAT%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CQAAA%3BIACA%2CWAAW%2CiBAAiB%2CYAA5B%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CiDAAA%3B%3BEAGJ%2CcAfH%2CaAAc%2CIAeV%2CMAAM%3BIACH%2CcAAA%3B%3BEAKR%2CcAAC%2CaAAc%2CIAAC%3BIACZ%2CWAAW%2CiBAAiB%2CaAA5B%3BIACA%2CcAAA%3B%3BEAKR%3BEACA%3BEACA%3BEACA%3BIACI%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CSAAA%3BIACA%2CaAAA%3BIACA%2C6BAAA%3BIACA%2CyBAAA%3B%3BEATJ%2CQAWI%2CeAAe%3BEAVnB%2CQAUI%2CeAAe%3BEATnB%2CQASI%2CeAAe%3BEARnB%2CQAQI%2CeAAe%3BIACX%2CkBAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CiBAAA%3BIACA%2CoBAAA%3B%3BEAEA%2CQARJ%2CeAAe%2CIAQV%3BEAAD%2CQARJ%2CeAAe%2CIAQV%3BEAAD%2CQARJ%2CeAAe%2CIAQV%3BEAAD%2CQARJ%2CeAAe%2CIAQV%3BIACG%2CcAAA%3BIACA%2CyBAAA%3B%3BEArBZ%2CQAWI%2CeAAe%2CIAaX%3BEAvBR%2CQAUI%2CeAAe%2CIAaX%3BEAtBR%2CQASI%2CeAAe%2CIAaX%3BEArBR%2CQAQI%2CeAAe%2CIAaX%3BIACI%2CaAAA%3B%3BEAzBZ%2CQA6BI%2CeAAc%2CaAAc%3BEA5BhC%2CQA4BI%2CeAAc%2CaAAc%3BEA3BhC%2CQA2BI%2CeAAc%2CaAAc%3BEA1BhC%2CQA0BI%2CeAAc%2CaAAc%3BIACxB%2CmBAAA%3B%3BEAIR%3BIACI%2CyBAAA%3B%3BEADJ%2CQAGI%2CeAAe%3BIACX%2CkBAAA%3BIACA%2CiBAAA%3B%3BEAIR%3BIACI%2CyBAAA%3B%3BEADJ%2CQAGI%2CeAAe%3BIACX%2CkBAAA%3BIACA%2CeAAA%3B%3BEAIR%3BIACI%2CyBAAA%3B%3BEADJ%2CQAGI%2CeAAe%3BIACX%2CkBAAA%3B%3BEAKR%2CcAAc%2COAAQ%3BEACtB%2CcAAe%2CIAAC%3BIACZ%2CyBAAA%3BIACA%2CcAAA%3BIACA%2C0BAAA%3BIACA%2CgBAAA%3B%3B%3BAAyBR%2CwBAjB0C%2CuBAAuB%3BEAE7D%3BIACI%2CwBAAA%3B%3BEAGJ%3BIACI%2CwBAAA%3B%3BEAIJ%3BIACI%2CeAAA%3BIACA%2CkBAAA%3B%3B%3BAAsXR%2CwBAlX0C%3BEAWtC%2CmBAAmB%3BIACf%2CaAAA%3B%3BEAGJ%2CmBAAmB%3BIACf%2CcAAA%3B%3BEAyBJ%3BIACI%2CaAAA%3B%3BEAKJ%2CIAAI%3BIACA%2CgBAAA%3B%3BEAEA%2CIAHA%2CSAGC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CeAAA%3BIACA%2CMAAA%3BIACA%2COAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2C8BAAA%3BIACA%2CYAAA%3BIACA%2C6BAAA%3B%3BEAMR%3BIACI%2CwBAAA%3B%3BEAIJ%3BIACI%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3BIACA%2CaAAA%3BIACA%2CaAAA%3BIAEA%2CSAAA%3BIACA%2CUAAA%3BIACA%2C2BAAA%3B%3BEATJ%2CkBAWI%3BIACI%2CcAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3B%3BEAjBR%2CkBAjDI%3BIACI%2CyBAAA%3B%3BEAGJ%2CkBAAC%2CCAAC%2CWACE%2CUAAS%2CUAAU%3BIACf%2CWAAW%2CgBAAgB%2CaAA3B%3B%3BEAFR%2CkBAAC%2CCAAC%2CWAKE%2CUAAS%2CUAAU%3BIACf%2CUAAA%3B%3BEANR%2CkBAAC%2CCAAC%2CWASE%2CUAAS%2CUAAU%3BIACf%2CWAAW%2CiBAAiB%2CcAA5B%3B%3BEA2DZ%3BIACI%2CeAAA%3BIACA%2CMAAA%3BIACA%2COAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3BIACA%2CaAAA%3BIACA%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CaAAA%3BIACA%2CsBAAA%3BIACA%2CWAAW%2CiBAAX%3BIACA%2C2BAAwC%2CkDAAxC%3BIACA%2C0CAAA%3B%3BEAEA%2CIAAI%2CSAAU%3BIACV%2CWAAW%2CaAAX%3B%3BEAhBR%2CgBAmBI%3BIACI%2CaAAA%3BIACA%2CgCAAA%3BIACA%2CyBAAA%3B%3BEAtBR%2CgBAyBI%3BIACI%2CaAAA%3BIACA%2CuBAAA%3BIACA%2CyBAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3B%3BEA9BR%2CgBAyBI%2CYAOI%3BIACI%2COAAA%3BIACA%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3BIACA%2CkBAAA%3BIACA%2CyBAAA%3B%3BEAEA%2CgBAnBR%2CYAOI%2CUAYK%3BIACG%2CsBAAA%3BIACA%2CcAAA%3BIACA%2CwCAAA%3B%3BEA%5C%2FChB%2CgBAoDI%3BIACI%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CiCAAA%3B%3BEAvDR%2CgBA0DI%3BIACI%2CaAAA%3B%3BEAEA%2CgBAHJ%2CeAGK%3BIACG%2CcAAA%3B%3BEA9DZ%2CgBAkEI%3BEAlEJ%2CgBAmEI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3BIACA%2CSAAA%3B%3BEAtER%2CgBAkEI%2CeAMI%3BEAxER%2CgBAmEI%2CcAKI%3BIACI%2CgCAAA%3B%3BEAEA%2CgBATR%2CeAMI%2CGAGK%3BEAAD%2CgBARR%2CcAKI%2CGAGK%3BIACG%2CmBAAA%3B%3BEA5EhB%2CgBAkEI%2CeAcI%3BEAhFR%2CgBAmEI%2CcAaI%3BIACI%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CkBAAA%3BIACA%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CuDAAA%3B%3BEAEA%2CgBAvBR%2CeAcI%2CEASK%3BEAAD%2CgBAtBR%2CcAaI%2CEASK%3BIACG%2CyBAAA%3BIACA%2CcAAA%3B%3BEA3FhB%2CgBAkEI%2CeAcI%2CEAcI%3BEA9FZ%2CgBAmEI%2CcAaI%2CEAcI%3BIACI%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CcAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CgBAnCZ%2CeAcI%2CEAcI%2CYAOK%3BEAAD%2CgBAlCZ%2CcAaI%2CEAcI%2CYAOK%3BIACG%2CSAAS%2CEAAT%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CcAAA%3BIACA%2C4BAAA%3BIACA%2C2BAAA%3BIACA%2CwBAAA%3B%3BEA5GpB%2CgBAkEI%2CeAcI%2CEAgCI%3BEAhHZ%2CgBAmEI%2CcAaI%2CEAgCI%3BIACI%2CYAAA%3B%3BEAjHhB%2CgBAkEI%2CeAmDI%2CcAAc%3BEArHtB%2CgBAmEI%2CcAkDI%2CcAAc%3BIACV%2CkBAAA%3B%3BEAEA%2CgBAtDR%2CeAmDI%2CcAAc%2CIAGT%3BEAAD%2CgBArDR%2CcAkDI%2CcAAc%2CIAGT%3BIACG%2CSAAS%2CKAAT%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3BIAEA%2CcAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CgCAAA%3B%3BEAhIhB%2CgBAkEI%2CeAkEI%2CcAAc%2CIAAC%3BEApIvB%2CgBAmEI%2CcAiEI%2CcAAc%2CIAAC%3BIACX%2CWAAW%2CaAAX%3BIACA%2CcAAA%3B%3BEAtIZ%2CgBAkEI%2CeAwEI%3BEA1IR%2CgBAmEI%2CcAuEI%3BEA1IR%2CgBAkEI%2CeAyEI%3BEA3IR%2CgBAmEI%2CcAwEI%3BEA3IR%2CgBAkEI%2CeA0EI%3BEA5IR%2CgBAmEI%2CcAyEI%3BEA5IR%2CgBAkEI%2CeA2EI%3BEA7IR%2CgBAmEI%2CcA0EI%3BIACI%2CyBAAA%3BIACA%2CaAAA%3BIAEA%2C6BAAA%3BIACA%2CkBAAA%3B%3BEAlJZ%2CgBAkEI%2CeAwEI%2CSAUI%3BEApJZ%2CgBAmEI%2CcAuEI%2CSAUI%3BEApJZ%2CgBAkEI%2CeAyEI%2CSASI%3BEApJZ%2CgBAmEI%2CcAwEI%2CSASI%3BEApJZ%2CgBAkEI%2CeA0EI%2CSAQI%3BEApJZ%2CgBAmEI%2CcAyEI%2CSAQI%3BEApJZ%2CgBAkEI%2CeA2EI%2CSAOI%3BEApJZ%2CgBAmEI%2CcA0EI%2CSAOI%3BIACI%2CiBAAA%3BIACA%2CoBAAA%3BIACA%2CkBAAA%3BIACA%2CkCAAA%3B%3BEAEA%2CgBAxFZ%2CeAwEI%2CSAUI%2CEAMK%3BEAAD%2CgBAvFZ%2CcAuEI%2CSAUI%2CEAMK%3BEAAD%2CgBAxFZ%2CeAyEI%2CSASI%2CEAMK%3BEAAD%2CgBAvFZ%2CcAwEI%2CSASI%2CEAMK%3BEAAD%2CgBAxFZ%2CeA0EI%2CSAQI%2CEAMK%3BEAAD%2CgBAvFZ%2CcAyEI%2CSAQI%2CEAMK%3BEAAD%2CgBAxFZ%2CeA2EI%2CSAOI%2CEAMK%3BEAAD%2CgBAvFZ%2CcA0EI%2CSAOI%2CEAMK%3BIACG%2C0BAAA%3B%3BEA3JpB%2CgBAkEI%2CeA8FI%3BEAhKR%2CgBAmEI%2CcA6FI%3BIACI%2CkBAAA%3BIACA%2CyBAAA%3B%3BEAlKZ%2CgBAkEI%2CeAmGI%3BEArKR%2CgBAmEI%2CcAkGI%3BIACI%2CkBAAA%3BIACA%2CyBAAA%3B%3BEAvKZ%2CgBA2KI%3BIACI%2CaAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAA%3B%3BEA9KR%2CgBA2KI%2CcAKI%2CUAAS%2CSACL%2COAAM%3BIACF%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2CcAAA%3B%3BEApLhB%2CgBA2KI%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%3BIACJ%2CkBAAA%3B%3BEAGA%2CgBAhBZ%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSAIH%2CUAAW%3BIACR%2CcAAA%3B%3BEA5LpB%2CgBA2KI%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSAQJ%2CQAAO%3BIACH%2C6BAAA%3BIACA%2CgBAAA%3BIACA%2CyBAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3BIACA%2CaAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAA%3B%3BEAEA%2CgBA%5C%2FBhB%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSAQJ%2CQAAO%2COAWF%3BIACG%2CSAAS%2CKAAT%3BIACA%2CiBAAA%3BIACA%2C%2BBAAA%3B%3BEAIR%2CgBAtCZ%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSA0BH%2CUAAW%2CQAAO%2COAAO%3BIACtB%2CWAAW%2CcAAX%3B%3BEAlNpB%2CgBA2KI%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSA8BJ%2CUAAS%3BIACL%2CaAAA%3BIACA%2CkBAAA%3BIACA%2CYAAA%3BIACA%2COAAA%3BIACA%2CQAAA%3BIACA%2CgBAAA%3BIACA%2CyBAAA%3BIACA%2CkBAAA%3BIACA%2C0CAAA%3BIACA%2CkBAAA%3BIACA%2CaAAA%3BIACA%2CiBAAA%3BIACA%2CgBAAA%3B%3BEAlOpB%2CgBA2KI%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSA8BJ%2CUAAS%2CkBAeL%3BIACI%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3B%3BEAvOxB%2CgBA2KI%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSA8BJ%2CUAAS%2CkBAqBL%3BIACI%2CSAAA%3BIACA%2CcAAA%3B%3BEA5OxB%2CgBA2KI%2CcAKI%2CUAAS%2CSAOL%2CSAAQ%2CSA8BJ%2CUAAS%2CkBAqBL%2CGAII%3BIACI%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CcAAA%3B%3BEAjP5B%2CgBAyPI%3BIACI%2CgBAAA%3BIACA%2CiBAAA%3BIACA%2CSAAA%3B%3BEA5PR%2CgBAyPI%2C8BAKI%3BIACI%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CgCAAA%3B%3BEAEA%2CgBAdR%2C8BAKI%2CEASK%3BIACG%2CyBAAA%3BIACA%2CcAAA%3B%3BEAzQhB%2CgBAyPI%2C8BAKI%2CEAcI%3BIACI%2CiBAAA%3BIACA%2CiBAAA%22%7D */