
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_dbe32c7eb757f2b969f36c72.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_089fb414471edf9993ba338e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.874537;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_21c19dcd665ddcd6a45ea9c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5fe06ac6c1d8f7a575b0257d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_90ff9ef1a0a282382d290583.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_794181cdf484b4b6c61fd0de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_21c19dcd665ddcd6a45ea9c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5fe06ac6c1d8f7a575b0257d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1b24fb97a24998ad017b1d53.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.866724;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_794181cdf484b4b6c61fd0de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.746000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_13c48163cb557706422afb53.woff2')format("woff");}.fff{font-family:fff;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b926f2fdec3fa884ca8834d0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a16864a147e4c23a8fccde80.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7c668f2737f3d4298f81ed10.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2af0bb1815851beb739e353d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_13c48163cb557706422afb53.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_638e1203602c3a815357c520.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f8dc0749f968f8e588bd4a74.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bd0c91d56523e83a1ca8bff4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.870142;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_2350943010233728952f2e3f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_638e1203602c3a815357c520.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_05dd6d5dd8c53b79371cde81.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_32fec60b77d604fcd9524320.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.874537;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_d980712e0a87a3db5edf7d11.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_638e1203602c3a815357c520.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_05dd6d5dd8c53b79371cde81.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_edee2e50a3160b5b83f0c1b7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.874537;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_7095625f608e5f7f28c8eade.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_6cf9cc1e8670fa200894000d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_0c47bf9458b77cdb963c191c.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_69ba53fd2aad6605d526a2ee.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_0739fa418891139afef38199.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_bd6ee7bec09e0026fe181003.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.843750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_638e1203602c3a815357c520.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_f126b7d7aefec1794cf43721.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_2d23fa8df2fd40e6e7fa3f22.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_48c5be35bf37eddaafc0c458.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.714844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_3d98ba6b749cb7079e69f48b.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.875505;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_638e1203602c3a815357c520.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_ec3775822ac794ef0d274798.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_b3db35ecb453a130e31b1867.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.866724;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_48c5be35bf37eddaafc0c458.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.714844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_e0563f797b6bde3e7426231e.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.864746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_c5bb571f8712df981c7c0332.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_c5229b44e0d5b293c47124d7.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_0c47bf9458b77cdb963c191c.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_92df67f6b4b625147b1909cf.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_0739fa418891139afef38199.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_d178090539caca5956f4a84c.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_bfb942f87a49c3ce28b360d4.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_38556d77a75fafb5306a0bfb.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_0338da819001fa17cfffda91.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_42b453795186080c981f7c59.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_0756eac4aebc729fed627eff.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_825b1a38c45f2c6b10567fbe.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_0756eac4aebc729fed627eff.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_b64b89a2a3d4ae7b85e7e199.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_baf31cba0b035de5ddcc8bf8.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_d22e82ba7e2371bdc7fb8e9c.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_b64b89a2a3d4ae7b85e7e199.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_baf31cba0b035de5ddcc8bf8.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_f4a58ef18fe6c1ec0c1cc8e6.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_22f264668ad806a7407e829e.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_24f3312fbace6b632b01625d.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.866724;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_f4a58ef18fe6c1ec0c1cc8e6.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_e75fe650305e08f65391d364.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_22f264668ad806a7407e829e.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_ef594ad73b68c864f457c320.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.866724;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_2af0bb1815851beb739e353d.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_77f532b5fdd6efd1f71dbfa0.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_e88f5717a31a8dfc80b87698.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_5fe06ac6c1d8f7a575b0257d.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_cd21508b0a1137976c2c733c.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_bf83e8e69bd58caee09d18c2.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.813477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_fed8e0487b085ef7bd473ccd.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_59ece63f0c61e5b04dca4c85.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.880884;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_c4d291194d245c349b5e4dd2.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_ea60998061bb3839b48a0c43.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_78d2953cf95ce436e5b3ab74.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_33c3a4272892bceb0a5e51b1.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.874512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_7f76833e38bbf9ae2716b294.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_bc4f8fd4272bd1585278807a.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_137a0bb80f79aff4c8585f65.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_36846be1f8346af2bff35040.woff2')format("woff");}.ff80{font-family:ff80;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_f99ff39b835928ef35ead417.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.880884;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_9db488008501e77a3d3d8e59.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_f65db0f8f6647278a5b65c04.woff2')format("woff");}.ff83{font-family:ff83;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_e7e0d6301372553797ab6674.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_efd8e0455547278fc16cc257.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_89196b7699d80e424854f115.woff2')format("woff");}.ff86{font-family:ff86;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_ccc152aca1c0c432582e1212.woff2')format("woff");}.ff87{font-family:ff87;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url('chunks/assets/font_c799bc8319923eac64d42507.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_760238ce51dcd4bd75c5f0ed.woff2')format("woff");}.ff89{font-family:ff89;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_8ddb6163d0a1dc96797af640.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:0.866724;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url('chunks/assets/font_3ea33f11b16647fb430ba4ca.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c;src:url('chunks/assets/font_7cc7a14bc6cc0fed38b489e8.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_118c8614fd5fbbc1c2727bb4.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:0.874537;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url('chunks/assets/font_ecc092c74d41d35e28241568.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_516195225843e43d0addc4ff.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90;src:url('chunks/assets/font_0af875ac17d83a0f8cfe99e0.woff2')format("woff");}.ff90{font-family:ff90;line-height:0.821000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url('chunks/assets/font_205c279d933571122a7b12ec.woff2')format("woff");}.ff91{font-family:ff91;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_26dd7e55f3b11abcfdf3f7e1.woff2')format("woff");}.ff92{font-family:ff92;line-height:0.874512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url('chunks/assets/font_09a0b9498e5357e1715809f1.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.875505;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94;src:url('chunks/assets/font_debeb45824508937ed399bda.woff2')format("woff");}.ff94{font-family:ff94;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_071c9aad8a461a59f161ccb2.woff2')format("woff");}.ff95{font-family:ff95;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url('chunks/assets/font_90e44fc8028b3a939beff4f5.woff2')format("woff");}.ff96{font-family:ff96;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97;src:url('chunks/assets/font_b8aac97caf9edd330a2e57f7.woff2')format("woff");}.ff97{font-family:ff97;line-height:0.810059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98;src:url('chunks/assets/font_21bf6f1d8582a3a293bb7cd3.woff2')format("woff");}.ff98{font-family:ff98;line-height:0.810059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url('chunks/assets/font_3c8983bf21664de0629da717.woff2')format("woff");}.ff99{font-family:ff99;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_eaae3095e94e9997099aa75b.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:0.866716;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-109.918378px;}
.v6{vertical-align:-17.999999px;}
.v1{vertical-align:-11.250000px;}
.v3{vertical-align:-9.880999px;}
.v5{vertical-align:-6.436368px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:49.499998px;}
.v2{vertical-align:67.499997px;}
.v8{vertical-align:85.499996px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000096px;}
.ls4{letter-spacing:0.027744px;}
.ls3{letter-spacing:0.032424px;}
.ls6{letter-spacing:0.032425px;}
.ls1{letter-spacing:713.465859px;}
.ls2{letter-spacing:5044.726493px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-419.984992px;}
.ws9{word-spacing:-251.826940px;}
.ws3{word-spacing:-223.036703px;}
.wsa{word-spacing:-209.572511px;}
.wsd{word-spacing:-208.655067px;}
.ws4{word-spacing:-185.613031px;}
.ws6{word-spacing:-122.311320px;}
.ws7{word-spacing:-113.965141px;}
.ws1d{word-spacing:-107.902707px;}
.wsc{word-spacing:-100.725383px;}
.ws10{word-spacing:-95.792843px;}
.ws8{word-spacing:-94.842755px;}
.ws2{word-spacing:-93.521071px;}
.ws11{word-spacing:-89.991002px;}
.ws1c{word-spacing:-89.932415px;}
.wse{word-spacing:-82.728103px;}
.ws17{word-spacing:-81.047521px;}
.ws13{word-spacing:-80.655400px;}
.ws16{word-spacing:-75.604744px;}
.ws19{word-spacing:-73.365205px;}
.wsf{word-spacing:-71.981997px;}
.ws1f{word-spacing:-71.676705px;}
.ws12{word-spacing:-64.799997px;}
.ws1{word-spacing:-64.757810px;}
.ws5{word-spacing:-56.123433px;}
.ws14{word-spacing:-43.200094px;}
.ws1b{word-spacing:-0.203985px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:464.762174px;}
.ws1a{word-spacing:660.482302px;}
.ws18{word-spacing:1394.333856px;}
.ws15{word-spacing:5802.386532px;}
._0{margin-left:-5871.267213px;}
._5{width:220.077769px;}
._6{width:287.011676px;}
._2{width:478.943086px;}
._7{width:978.437711px;}
._8{width:1738.454636px;}
._4{width:3048.887655px;}
._1{width:3075.887654px;}
._3{width:3895.989894px;}
.fc5{color:rgb(253,159,91);}
.fc4{color:rgb(137,202,255);}
.fc3{color:rgb(94,156,124);}
.fc2{color:rgb(255,165,230);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:71.999997px;}
.fs4{font-size:89.999996px;}
.fs9{font-size:93.599992px;}
.fs3{font-size:107.999996px;}
.fs11{font-size:119.969995px;}
.fs19{font-size:122.354999px;}
.fs16{font-size:126.089995px;}
.fs13{font-size:134.513239px;}
.fs18{font-size:135.167199px;}
.fs24{font-size:136.787605px;}
.fs10{font-size:137.969994px;}
.fs1f{font-size:143.032709px;}
.fs1e{font-size:144.950470px;}
.fs21{font-size:146.212652px;}
.fsd{font-size:149.985003px;}
.fs6{font-size:155.969994px;}
.fs15{font-size:159.749993px;}
.fs12{font-size:159.758746px;}
.fsf{font-size:167.985002px;}
.fs25{font-size:168.023765px;}
.fs20{font-size:179.955002px;}
.fs1d{font-size:179.999993px;}
.fs1{font-size:185.985001px;}
.fsb{font-size:190.065641px;}
.fsc{font-size:197.999992px;}
.fsa{font-size:203.985001px;}
.fs5{font-size:209.969991px;}
.fs23{font-size:257.984998px;}
.fs22{font-size:258.074980px;}
.fs1c{font-size:269.049286px;}
.fs1b{font-size:269.999989px;}
.fs1a{font-size:270.089989px;}
.fs17{font-size:317.373775px;}
.fs0{font-size:323.999987px;}
.fs2{font-size:347.984995px;}
.fs8{font-size:371.970003px;}
.fs7{font-size:419.984992px;}
.fse{font-size:765.079888px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.yec{bottom:16.579187px;}
.y64{bottom:35.999999px;}
.yc3{bottom:66.575732px;}
.y9{bottom:83.961753px;}
.yeb{bottom:90.829184px;}
.ye5{bottom:102.079184px;}
.yc5{bottom:135.475662px;}
.y69{bottom:135.885126px;}
.yc2{bottom:136.026742px;}
.y9b{bottom:136.161390px;}
.y23{bottom:137.979498px;}
.y62{bottom:141.771522px;}
.yad{bottom:142.346993px;}
.ya{bottom:145.939026px;}
.y89{bottom:148.775430px;}
.ya0{bottom:150.948275px;}
.y54{bottom:153.629454px;}
.yea{bottom:165.079181px;}
.y9a{bottom:167.661389px;}
.ye4{bottom:176.329181px;}
.y88{bottom:180.275428px;}
.y2f{bottom:191.849932px;}
.y14{bottom:195.036429px;}
.y99{bottom:199.161388px;}
.y53{bottom:199.754452px;}
.yc1{bottom:205.477751px;}
.ya1{bottom:208.041097px;}
.y33{bottom:208.653723px;}
.y87{bottom:211.775427px;}
.y68{bottom:213.885171px;}
.yac{bottom:214.346990px;}
.y22{bottom:217.404423px;}
.y98{bottom:230.661386px;}
.ye9{bottom:239.329178px;}
.y86{bottom:243.275426px;}
.ye3{bottom:250.579178px;}
.yc4{bottom:259.972117px;}
.yb6{bottom:260.266201px;}
.y4d{bottom:270.238345px;}
.y16{bottom:272.089141px;}
.y85{bottom:274.775425px;}
.yc0{bottom:274.928761px;}
.yab{bottom:286.346987px;}
.y21{bottom:287.154420px;}
.y13{bottom:291.786425px;}
.y2a{bottom:293.099928px;}
.y90{bottom:293.624988px;}
.ye8{bottom:313.579175px;}
.yb5{bottom:318.766199px;}
.ye2{bottom:324.829174px;}
.ybf{bottom:344.379770px;}
.yaa{bottom:358.346984px;}
.y52{bottom:364.036269px;}
.y5c{bottom:365.271501px;}
.y63{bottom:367.946527px;}
.y32{bottom:370.480773px;}
.y47{bottom:374.940071px;}
.yb4{bottom:377.266196px;}
.ye7{bottom:387.829172px;}
.y12{bottom:388.536421px;}
.y8f{bottom:394.874984px;}
.y72{bottom:395.506354px;}
.ye1{bottom:399.079171px;}
.y7{bottom:413.758675px;}
.ybe{bottom:413.830780px;}
.y3b{bottom:416.037244px;}
.y5b{bottom:417.021499px;}
.y1c{bottom:426.654414px;}
.y97{bottom:427.386406px;}
.ya9{bottom:430.346981px;}
.y4c{bottom:432.065502px;}
.y20{bottom:433.916334px;}
.y84{bottom:436.950245px;}
.y9f{bottom:448.369217px;}
.y46{bottom:458.190067px;}
.ye6{bottom:462.079169px;}
.y2e{bottom:465.731523px;}
.y29{bottom:465.899921px;}
.ye0{bottom:473.329168px;}
.ybd{bottom:483.281790px;}
.y6{bottom:483.508672px;}
.y11{bottom:485.286417px;}
.y8e{bottom:496.124979px;}
.y1b{bottom:496.404411px;}
.y3a{bottom:499.287241px;}
.y77{bottom:500.970321px;}
.ya8{bottom:502.346978px;}
.yd0{bottom:503.174068px;}
.y57{bottom:521.185462px;}
.y60{bottom:526.641602px;}
.y96{bottom:528.636402px;}
.y31{bottom:532.307966px;}
.ydf{bottom:536.329166px;}
.y83{bottom:538.200240px;}
.y45{bottom:541.440064px;}
.ybc{bottom:552.732799px;}
.y5{bottom:553.258669px;}
.y6b{bottom:559.160354px;}
.y76{bottom:560.063761px;}
.y2d{bottom:566.981519px;}
.y28{bottom:567.149916px;}
.ycf{bottom:568.148180px;}
.y5f{bottom:573.891600px;}
.ya7{bottom:574.346975px;}
.yd7{bottom:575.928098px;}
.yb{bottom:579.875250px;}
.y50{bottom:581.221952px;}
.y10{bottom:582.036413px;}
.y39{bottom:582.537237px;}
.y4b{bottom:593.892706px;}
.y1f{bottom:595.743549px;}
.y8d{bottom:597.374975px;}
.yb3{bottom:600.788383px;}
.y18{bottom:605.793578px;}
.y6a{bottom:614.285352px;}
.y61{bottom:617.219711px;}
.y75{bottom:619.157201px;}
.ybb{bottom:622.183809px;}
.y44{bottom:624.690060px;}
.y56{bottom:625.770633px;}
.y4f{bottom:628.471950px;}
.y95{bottom:629.886397px;}
.yce{bottom:633.122293px;}
.y66{bottom:637.100792px;}
.y82{bottom:639.450236px;}
.ya6{bottom:646.346972px;}
.yd6{bottom:655.872235px;}
.y58{bottom:659.964789px;}
.yb2{bottom:662.663381px;}
.y55{bottom:667.395631px;}
.yde{bottom:673.233459px;}
.y74{bottom:678.250641px;}
.yf{bottom:678.786409px;}
.y65{bottom:683.166969px;}
.yba{bottom:691.634818px;}
.y30{bottom:694.135166px;}
.ycd{bottom:698.096405px;}
.y8c{bottom:698.624971px;}
.ya5{bottom:718.346969px;}
.yb1{bottom:724.538378px;}
.y1a{bottom:725.771702px;}
.y94{bottom:731.136393px;}
.yd5{bottom:735.816371px;}
.y2c{bottom:739.613201px;}
.y81{bottom:740.700232px;}
.ydd{bottom:742.302304px;}
.ydb{bottom:744.496932px;}
.yda{bottom:751.399773px;}
.y35{bottom:752.789103px;}
.y4a{bottom:755.719817px;}
.y71{bottom:756.308764px;}
.y15{bottom:757.570663px;}
.yb9{bottom:761.085828px;}
.ycc{bottom:763.070517px;}
.y70{bottom:768.494060px;}
.y7c{bottom:773.461573px;}
.ye{bottom:775.536404px;}
.y5a{bottom:785.798910px;}
.yb0{bottom:786.413376px;}
.ya4{bottom:790.346966px;}
.y4{bottom:794.474967px;}
.y8b{bottom:799.874967px;}
.y19{bottom:803.396699px;}
.y1e{bottom:812.245394px;}
.ydc{bottom:812.404521px;}
.yd4{bottom:815.760508px;}
.y49{bottom:816.224643px;}
.y6f{bottom:823.619057px;}
.ycb{bottom:828.044629px;}
.y7b{bottom:828.586571px;}
.yb8{bottom:830.536838px;}
.y92{bottom:832.386389px;}
.y43{bottom:835.725025px;}
.y3d{bottom:837.503924px;}
.y59{bottom:837.548908px;}
.y26{bottom:840.863197px;}
.y7e{bottom:841.950228px;}
.y51{bottom:842.258373px;}
.yaf{bottom:848.288373px;}
.y42{bottom:853.725024px;}
.y93{bottom:853.761388px;}
.y34{bottom:856.268928px;}
.ya3{bottom:862.346963px;}
.y80{bottom:863.325227px;}
.y41{bottom:871.725024px;}
.yd{bottom:872.286400px;}
.y6e{bottom:878.744055px;}
.y3c{bottom:880.725002px;}
.y7a{bottom:883.711569px;}
.y38{bottom:885.867826px;}
.y5e{bottom:886.741048px;}
.y1d{bottom:888.245581px;}
.y73{bottom:888.741296px;}
.y40{bottom:889.725023px;}
.y48{bottom:892.224827px;}
.yca{bottom:893.018741px;}
.yd3{bottom:895.704645px;}
.yb7{bottom:899.987847px;}
.y8a{bottom:901.124962px;}
.y3{bottom:906.974962px;}
.y3f{bottom:907.725001px;}
.y37{bottom:907.757253px;}
.yae{bottom:910.163370px;}
.y4e{bottom:917.853600px;}
.y17{bottom:919.704446px;}
.y3e{bottom:925.725000px;}
.y6d{bottom:933.869053px;}
.ya2{bottom:934.346960px;}
.y5d{bottom:938.491046px;}
.y79{bottom:938.836566px;}
.y25{bottom:942.113193px;}
.y7d{bottom:943.200223px;}
.y27{bottom:944.583443px;}
.y91{bottom:957.078065px;}
.yc9{bottom:957.992853px;}
.y7f{bottom:964.575223px;}
.yc{bottom:969.036396px;}
.y9d{bottom:970.716142px;}
.yd2{bottom:975.648782px;}
.y67{bottom:982.366065px;}
.y36{bottom:988.270468px;}
.y6c{bottom:988.994050px;}
.y78{bottom:993.961564px;}
.yd9{bottom:1010.093362px;}
.y9e{bottom:1014.449955px;}
.y2{bottom:1019.474958px;}
.yed{bottom:1019.474968px;}
.yc8{bottom:1022.966966px;}
.y8{bottom:1075.499955px;}
.y24{bottom:1076.866533px;}
.y2b{bottom:1077.841535px;}
.yd1{bottom:1082.476499px;}
.yc7{bottom:1087.941078px;}
.y9c{bottom:1091.251010px;}
.yee{bottom:1104.932572px;}
.yd8{bottom:1122.593357px;}
.yc6{bottom:1152.915190px;}
.h12{height:65.789997px;}
.h23{height:67.049997px;}
.h7{height:71.982419px;}
.he{height:72.351559px;}
.h14{height:72.826169px;}
.h6{height:73.511716px;}
.h22{height:80.459997px;}
.h2d{height:83.282651px;}
.h28{height:84.039474px;}
.h1f{height:89.377646px;}
.h25{height:89.653599px;}
.h2b{height:90.089466px;}
.h24{height:91.124996px;}
.h39{height:91.169473px;}
.h1e{height:91.957540px;}
.h3d{height:93.170167px;}
.h34{height:95.331859px;}
.h33{height:96.610055px;}
.h37{height:98.593590px;}
.h35{height:99.965590px;}
.h26{height:102.059996px;}
.h18{height:102.089401px;}
.h3a{height:102.590703px;}
.h9{height:103.954610px;}
.h10{height:104.487710px;}
.h20{height:106.479828px;}
.h27{height:107.419420px;}
.h21{height:111.738827px;}
.h1d{height:111.962660px;}
.h3b{height:113.301182px;}
.h1c{height:113.439091px;}
.h36{height:119.940711px;}
.h32{height:119.970698px;}
.h4{height:125.412738px;}
.h11{height:130.204679px;}
.h17{height:131.967768px;}
.h16{height:135.706867px;}
.h13{height:135.956800px;}
.h15{height:137.550432px;}
.h2c{height:138.845259px;}
.h8{height:153.488064px;}
.h2f{height:168.782647px;}
.h38{height:172.815321px;}
.h30{height:179.322400px;}
.h3e{height:179.956047px;}
.h31{height:180.823258px;}
.h2e{height:180.823273px;}
.h29{height:211.530860px;}
.h3{height:215.947257px;}
.h3c{height:218.794913px;}
.h2a{height:226.604875px;}
.h5{height:231.933358px;}
.h19{height:234.991820px;}
.hc{height:265.586582px;}
.hd{height:279.921637px;}
.hf{height:281.357133px;}
.ha{height:283.407841px;}
.hb{height:299.869284px;}
.h1b{height:300.223646px;}
.h1a{height:559.273398px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w2{width:237.374990px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x3e{left:10.775390px;}
.x71{left:61.131702px;}
.x72{left:124.869980px;}
.x4{left:140.130444px;}
.x18{left:145.017844px;}
.x9{left:150.506317px;}
.x16{left:158.153404px;}
.x5f{left:164.037914px;}
.x15{left:172.107415px;}
.x34{left:179.159708px;}
.x1{left:181.476555px;}
.x4a{left:193.236320px;}
.x60{left:227.793771px;}
.x6b{left:230.049602px;}
.x55{left:273.648373px;}
.x2{left:302.906237px;}
.x75{left:342.017569px;}
.xc{left:349.716788px;}
.x36{left:361.863707px;}
.x25{left:372.495175px;}
.x5{left:375.802724px;}
.xd{left:379.311093px;}
.xe{left:384.584530px;}
.x26{left:390.495174px;}
.x5c{left:392.097640px;}
.x44{left:401.871077px;}
.x4b{left:403.297104px;}
.x27{left:408.495174px;}
.x28{left:426.495173px;}
.x22{left:427.957013px;}
.x2a{left:431.012751px;}
.x29{left:444.495172px;}
.x20{left:448.464487px;}
.x1b{left:454.042950px;}
.x42{left:455.431360px;}
.x4c{left:456.875227px;}
.x63{left:480.128886px;}
.x3{left:497.179667px;}
.x30{left:520.292485px;}
.x2b{left:532.283187px;}
.x8{left:565.248008px;}
.x43{left:566.984507px;}
.x6c{left:570.028104px;}
.x35{left:590.378617px;}
.x17{left:599.476246px;}
.x33{left:610.523412px;}
.x1d{left:636.609348px;}
.x5b{left:640.623855px;}
.x5a{left:658.197576px;}
.x45{left:660.548456px;}
.x10{left:682.521560px;}
.x68{left:706.271461px;}
.x76{left:714.849585px;}
.x13{left:718.174665px;}
.x1c{left:742.763647px;}
.x3c{left:768.162100px;}
.x65{left:770.065297px;}
.x39{left:797.328413px;}
.x2d{left:800.469805px;}
.x37{left:817.424888px;}
.x2e{left:821.159257px;}
.xf{left:829.989114px;}
.x2c{left:845.261684px;}
.x38{left:862.424886px;}
.x66{left:885.736098px;}
.x6f{left:972.643578px;}
.x1f{left:998.223618px;}
.x48{left:1001.300885px;}
.x24{left:1030.691045px;}
.x70{left:1045.886979px;}
.x6e{left:1050.695210px;}
.x4f{left:1089.773392px;}
.x62{left:1095.161246px;}
.x73{left:1096.261226px;}
.x19{left:1097.507767px;}
.x50{left:1110.049050px;}
.x1a{left:1115.247086px;}
.xa{left:1118.449019px;}
.x57{left:1119.873835px;}
.x69{left:1123.032625px;}
.x2f{left:1129.474187px;}
.x21{left:1137.053797px;}
.x3b{left:1146.017779px;}
.x61{left:1155.357374px;}
.x1e{left:1156.749395px;}
.x74{left:1159.999505px;}
.x5e{left:1164.485255px;}
.x58{left:1166.695264px;}
.x3a{left:1177.025591px;}
.xb{left:1184.753704px;}
.x6a{left:1194.434937px;}
.x53{left:1196.744359px;}
.x6{left:1201.931662px;}
.x23{left:1236.458005px;}
.x56{left:1298.425727px;}
.x6d{left:1358.267018px;}
.x59{left:1380.744089px;}
.x41{left:1394.070506px;}
.x5d{left:1408.587838px;}
.x3d{left:1440.953724px;}
.x64{left:1463.141963px;}
.x3f{left:1464.204078px;}
.x4d{left:1472.594195px;}
.x40{left:1484.358031px;}
.x46{left:1495.603414px;}
.x51{left:1507.560752px;}
.x4e{left:1526.172317px;}
.x14{left:1533.775724px;}
.x47{left:1549.181536px;}
.x12{left:1630.543298px;}
.x32{left:1635.959466px;}
.x67{left:1639.889752px;}
.x54{left:1642.861876px;}
.x7{left:1666.599375px;}
.x31{left:1674.253951px;}
.x11{left:1703.786591px;}
.x49{left:1776.909994px;}
.x52{left:1874.468946px;}
@media print{
.v4{vertical-align:-97.705225pt;}
.v6{vertical-align:-15.999999pt;}
.v1{vertical-align:-10.000000pt;}
.v3{vertical-align:-8.783110pt;}
.v5{vertical-align:-5.721216pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:43.999998pt;}
.v2{vertical-align:59.999998pt;}
.v8{vertical-align:75.999997pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000086pt;}
.ls4{letter-spacing:0.024661pt;}
.ls3{letter-spacing:0.028821pt;}
.ls6{letter-spacing:0.028822pt;}
.ls1{letter-spacing:634.191875pt;}
.ls2{letter-spacing:4484.201327pt;}
.wsb{word-spacing:-373.319992pt;}
.ws9{word-spacing:-223.846169pt;}
.ws3{word-spacing:-198.254847pt;}
.wsa{word-spacing:-186.286676pt;}
.wsd{word-spacing:-185.471170pt;}
.ws4{word-spacing:-164.989361pt;}
.ws6{word-spacing:-108.721173pt;}
.ws7{word-spacing:-101.302348pt;}
.ws1d{word-spacing:-95.913517pt;}
.wsc{word-spacing:-89.533674pt;}
.ws10{word-spacing:-85.149193pt;}
.ws8{word-spacing:-84.304671pt;}
.ws2{word-spacing:-83.129841pt;}
.ws11{word-spacing:-79.992001pt;}
.ws1c{word-spacing:-79.939924pt;}
.wse{word-spacing:-73.536091pt;}
.ws17{word-spacing:-72.042241pt;}
.ws13{word-spacing:-71.693689pt;}
.ws16{word-spacing:-67.204217pt;}
.ws19{word-spacing:-65.213516pt;}
.wsf{word-spacing:-63.983997pt;}
.ws1f{word-spacing:-63.712626pt;}
.ws12{word-spacing:-57.599998pt;}
.ws1{word-spacing:-57.562498pt;}
.ws5{word-spacing:-49.887496pt;}
.ws14{word-spacing:-38.400084pt;}
.ws1b{word-spacing:-0.181320pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:413.121933pt;}
.ws1a{word-spacing:587.095379pt;}
.ws18{word-spacing:1239.407872pt;}
.ws15{word-spacing:5157.676918pt;}
._0{margin-left:-5218.904189pt;}
._5{width:195.624683pt;}
._6{width:255.121490pt;}
._2{width:425.727187pt;}
._7{width:869.722410pt;}
._8{width:1545.293010pt;}
._4{width:2710.122360pt;}
._1{width:2734.122359pt;}
._3{width:3463.102128pt;}
.fs14{font-size:63.999997pt;}
.fs4{font-size:79.999997pt;}
.fs9{font-size:83.199993pt;}
.fs3{font-size:95.999996pt;}
.fs11{font-size:106.639996pt;}
.fs19{font-size:108.759999pt;}
.fs16{font-size:112.079995pt;}
.fs13{font-size:119.567323pt;}
.fs18{font-size:120.148622pt;}
.fs24{font-size:121.588982pt;}
.fs10{font-size:122.639995pt;}
.fs1f{font-size:127.140186pt;}
.fs1e{font-size:128.844862pt;}
.fs21{font-size:129.966802pt;}
.fsd{font-size:133.320002pt;}
.fs6{font-size:138.639994pt;}
.fs15{font-size:141.999994pt;}
.fs12{font-size:142.007774pt;}
.fsf{font-size:149.320002pt;}
.fs25{font-size:149.354458pt;}
.fs20{font-size:159.960001pt;}
.fs1d{font-size:159.999993pt;}
.fs1{font-size:165.320001pt;}
.fsb{font-size:168.947236pt;}
.fsc{font-size:175.999993pt;}
.fsa{font-size:181.320000pt;}
.fs5{font-size:186.639992pt;}
.fs23{font-size:229.319998pt;}
.fs22{font-size:229.399982pt;}
.fs1c{font-size:239.154921pt;}
.fs1b{font-size:239.999990pt;}
.fs1a{font-size:240.079990pt;}
.fs17{font-size:282.110022pt;}
.fs0{font-size:287.999988pt;}
.fs2{font-size:309.319995pt;}
.fs8{font-size:330.640002pt;}
.fs7{font-size:373.319992pt;}
.fse{font-size:680.071012pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.yec{bottom:14.737055pt;}
.y64{bottom:31.999999pt;}
.yc3{bottom:59.178428pt;}
.y9{bottom:74.632669pt;}
.yeb{bottom:80.737053pt;}
.ye5{bottom:90.737052pt;}
.yc5{bottom:120.422811pt;}
.y69{bottom:120.786779pt;}
.yc2{bottom:120.912659pt;}
.y9b{bottom:121.032347pt;}
.y23{bottom:122.648443pt;}
.y62{bottom:126.019131pt;}
.yad{bottom:126.530660pt;}
.ya{bottom:129.723579pt;}
.y89{bottom:132.244826pt;}
.ya0{bottom:134.176245pt;}
.y54{bottom:136.559514pt;}
.yea{bottom:146.737050pt;}
.y9a{bottom:149.032346pt;}
.ye4{bottom:156.737049pt;}
.y88{bottom:160.244825pt;}
.y2f{bottom:170.533273pt;}
.y14{bottom:173.365714pt;}
.y99{bottom:177.032345pt;}
.y53{bottom:177.559513pt;}
.yc1{bottom:182.646890pt;}
.ya1{bottom:184.925419pt;}
.y33{bottom:185.469976pt;}
.y87{bottom:188.244824pt;}
.y68{bottom:190.120152pt;}
.yac{bottom:190.530658pt;}
.y22{bottom:193.248376pt;}
.y98{bottom:205.032343pt;}
.ye9{bottom:212.737047pt;}
.y86{bottom:216.244823pt;}
.ye3{bottom:222.737047pt;}
.yc4{bottom:231.086326pt;}
.yb6{bottom:231.347734pt;}
.y4d{bottom:240.211862pt;}
.y16{bottom:241.857014pt;}
.y85{bottom:244.244822pt;}
.yc0{bottom:244.381121pt;}
.yab{bottom:254.530655pt;}
.y21{bottom:255.248373pt;}
.y13{bottom:259.365711pt;}
.y2a{bottom:260.533269pt;}
.y90{bottom:260.999989pt;}
.ye8{bottom:278.737044pt;}
.yb5{bottom:283.347732pt;}
.ye2{bottom:288.737044pt;}
.ybf{bottom:306.115351pt;}
.yaa{bottom:318.530652pt;}
.y52{bottom:323.587795pt;}
.y5c{bottom:324.685778pt;}
.y63{bottom:327.063579pt;}
.y32{bottom:329.316242pt;}
.y47{bottom:333.280063pt;}
.yb4{bottom:335.347730pt;}
.ye7{bottom:344.737042pt;}
.y12{bottom:345.365707pt;}
.y8f{bottom:350.999985pt;}
.y72{bottom:351.561203pt;}
.ye1{bottom:354.737041pt;}
.y7{bottom:367.785489pt;}
.ybe{bottom:367.849582pt;}
.y3b{bottom:369.810884pt;}
.y5b{bottom:370.685777pt;}
.y1c{bottom:379.248368pt;}
.y97{bottom:379.899027pt;}
.ya9{bottom:382.530650pt;}
.y4c{bottom:384.058224pt;}
.y20{bottom:385.703408pt;}
.y84{bottom:388.400217pt;}
.y9f{bottom:398.550415pt;}
.y46{bottom:407.280060pt;}
.ye6{bottom:410.737039pt;}
.y2e{bottom:413.983576pt;}
.y29{bottom:414.133263pt;}
.ye0{bottom:420.737038pt;}
.ybd{bottom:429.583813pt;}
.y6{bottom:429.785486pt;}
.y11{bottom:431.365704pt;}
.y8e{bottom:440.999982pt;}
.y1b{bottom:441.248366pt;}
.y3a{bottom:443.810881pt;}
.y77{bottom:445.306952pt;}
.ya8{bottom:446.530647pt;}
.yd0{bottom:447.265839pt;}
.y57{bottom:463.275966pt;}
.y60{bottom:468.125868pt;}
.y96{bottom:469.899024pt;}
.y31{bottom:473.162636pt;}
.ydf{bottom:476.737036pt;}
.y83{bottom:478.400214pt;}
.y45{bottom:481.280057pt;}
.ybc{bottom:491.318044pt;}
.y5{bottom:491.785484pt;}
.y6b{bottom:497.031426pt;}
.y76{bottom:497.834454pt;}
.y2d{bottom:503.983573pt;}
.y28{bottom:504.133259pt;}
.ycf{bottom:505.020605pt;}
.y5f{bottom:510.125867pt;}
.ya7{bottom:510.530644pt;}
.yd7{bottom:511.936087pt;}
.yb{bottom:515.444667pt;}
.y50{bottom:516.641735pt;}
.y10{bottom:517.365700pt;}
.y39{bottom:517.810878pt;}
.y4b{bottom:527.904628pt;}
.y1f{bottom:529.549821pt;}
.y8d{bottom:530.999978pt;}
.yb3{bottom:534.034119pt;}
.y18{bottom:538.483181pt;}
.y6a{bottom:546.031424pt;}
.y61{bottom:548.639744pt;}
.y75{bottom:550.361957pt;}
.ybb{bottom:553.052275pt;}
.y44{bottom:555.280054pt;}
.y56{bottom:556.240562pt;}
.y4f{bottom:558.641734pt;}
.y95{bottom:559.899020pt;}
.yce{bottom:562.775371pt;}
.y66{bottom:566.311815pt;}
.y82{bottom:568.400210pt;}
.ya6{bottom:574.530642pt;}
.yd6{bottom:582.997542pt;}
.y58{bottom:586.635368pt;}
.yb2{bottom:589.034116pt;}
.y55{bottom:593.240561pt;}
.yde{bottom:598.429741pt;}
.y74{bottom:602.889459pt;}
.yf{bottom:603.365696pt;}
.y65{bottom:607.259528pt;}
.yba{bottom:614.786505pt;}
.y30{bottom:617.009037pt;}
.ycd{bottom:620.530138pt;}
.y8c{bottom:620.999974pt;}
.ya5{bottom:638.530639pt;}
.yb1{bottom:644.034114pt;}
.y1a{bottom:645.130402pt;}
.y94{bottom:649.899016pt;}
.yd5{bottom:654.058997pt;}
.y2c{bottom:657.433957pt;}
.y81{bottom:658.400206pt;}
.ydd{bottom:659.824270pt;}
.ydb{bottom:661.775051pt;}
.yda{bottom:667.910910pt;}
.y35{bottom:669.145870pt;}
.y4a{bottom:671.750948pt;}
.y71{bottom:672.274457pt;}
.y15{bottom:673.396145pt;}
.yb9{bottom:676.520736pt;}
.ycc{bottom:678.284904pt;}
.y70{bottom:683.105831pt;}
.y7c{bottom:687.521399pt;}
.ye{bottom:689.365693pt;}
.y5a{bottom:698.487920pt;}
.yb0{bottom:699.034112pt;}
.ya4{bottom:702.530636pt;}
.y4{bottom:706.199971pt;}
.y8b{bottom:710.999970pt;}
.y19{bottom:714.130399pt;}
.y1e{bottom:721.995906pt;}
.ydc{bottom:722.137352pt;}
.yd4{bottom:725.120452pt;}
.y49{bottom:725.533016pt;}
.y6f{bottom:732.105829pt;}
.ycb{bottom:736.039670pt;}
.y7b{bottom:736.521397pt;}
.yb8{bottom:738.254967pt;}
.y92{bottom:739.899012pt;}
.y43{bottom:742.866689pt;}
.y3d{bottom:744.447932pt;}
.y59{bottom:744.487918pt;}
.y26{bottom:747.433953pt;}
.y7e{bottom:748.400202pt;}
.y51{bottom:748.674110pt;}
.yaf{bottom:754.034109pt;}
.y42{bottom:758.866688pt;}
.y93{bottom:758.899012pt;}
.y34{bottom:761.127936pt;}
.ya3{bottom:766.530634pt;}
.y80{bottom:767.400202pt;}
.y41{bottom:774.866688pt;}
.yd{bottom:775.365689pt;}
.y6e{bottom:781.105827pt;}
.y3c{bottom:782.866668pt;}
.y7a{bottom:785.521394pt;}
.y38{bottom:787.438068pt;}
.y5e{bottom:788.214265pt;}
.y1d{bottom:789.551628pt;}
.y73{bottom:789.992263pt;}
.y40{bottom:790.866687pt;}
.y48{bottom:793.088735pt;}
.yca{bottom:793.794437pt;}
.yd3{bottom:796.181907pt;}
.yb7{bottom:799.989198pt;}
.y8a{bottom:800.999967pt;}
.y3{bottom:806.199966pt;}
.y3f{bottom:806.866667pt;}
.y37{bottom:806.895336pt;}
.yae{bottom:809.034107pt;}
.y4e{bottom:815.869867pt;}
.y17{bottom:817.515064pt;}
.y3e{bottom:822.866667pt;}
.y6d{bottom:830.105825pt;}
.ya2{bottom:830.530631pt;}
.y5d{bottom:834.214263pt;}
.y79{bottom:834.521392pt;}
.y25{bottom:837.433949pt;}
.y7d{bottom:838.400199pt;}
.y27{bottom:839.629727pt;}
.y91{bottom:850.736057pt;}
.yc9{bottom:851.549203pt;}
.y7f{bottom:857.400198pt;}
.yc{bottom:861.365686pt;}
.y9d{bottom:862.858793pt;}
.yd2{bottom:867.243362pt;}
.y67{bottom:873.214280pt;}
.y36{bottom:878.462639pt;}
.y6c{bottom:879.105823pt;}
.y78{bottom:883.521390pt;}
.yd9{bottom:897.860766pt;}
.y9e{bottom:901.733294pt;}
.y2{bottom:906.199962pt;}
.yed{bottom:906.199972pt;}
.yc8{bottom:909.303969pt;}
.y8{bottom:955.999960pt;}
.y24{bottom:957.214696pt;}
.y2b{bottom:958.081365pt;}
.yd1{bottom:962.201332pt;}
.yc7{bottom:967.058736pt;}
.y9c{bottom:970.000898pt;}
.yee{bottom:982.162286pt;}
.yd8{bottom:997.860762pt;}
.yc6{bottom:1024.813502pt;}
.h12{height:58.479998pt;}
.h23{height:59.599998pt;}
.h7{height:63.984372pt;}
.he{height:64.312497pt;}
.h14{height:64.734372pt;}
.h6{height:65.343747pt;}
.h22{height:71.519997pt;}
.h2d{height:74.029023pt;}
.h28{height:74.701755pt;}
.h1f{height:79.446797pt;}
.h25{height:79.692088pt;}
.h2b{height:80.079526pt;}
.h24{height:80.999997pt;}
.h39{height:81.039531pt;}
.h1e{height:81.740036pt;}
.h3d{height:82.817926pt;}
.h34{height:84.739431pt;}
.h33{height:85.875604pt;}
.h37{height:87.638747pt;}
.h35{height:88.858302pt;}
.h26{height:90.719996pt;}
.h18{height:90.746134pt;}
.h3a{height:91.191736pt;}
.h9{height:92.404098pt;}
.h10{height:92.877965pt;}
.h20{height:94.648736pt;}
.h27{height:95.483929pt;}
.h21{height:99.323402pt;}
.h1d{height:99.522364pt;}
.h3b{height:100.712161pt;}
.h1c{height:100.834747pt;}
.h36{height:106.613966pt;}
.h32{height:106.640621pt;}
.h4{height:111.477989pt;}
.h11{height:115.737492pt;}
.h17{height:117.304683pt;}
.h16{height:120.628327pt;}
.h13{height:120.850489pt;}
.h15{height:122.267051pt;}
.h2c{height:123.418008pt;}
.h8{height:136.433834pt;}
.h2f{height:150.029020pt;}
.h38{height:153.613619pt;}
.h30{height:159.397689pt;}
.h3e{height:159.960931pt;}
.h31{height:160.731785pt;}
.h2e{height:160.731798pt;}
.h29{height:188.027432pt;}
.h3{height:191.953117pt;}
.h3c{height:194.484367pt;}
.h2a{height:201.426556pt;}
.h5{height:206.162985pt;}
.h19{height:208.881618pt;}
.hc{height:236.076962pt;}
.hd{height:248.819233pt;}
.hf{height:250.095229pt;}
.ha{height:251.918081pt;}
.hb{height:266.550475pt;}
.h1b{height:266.865463pt;}
.h1a{height:497.131910pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w2{width:210.999991pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:9.578125pt;}
.x71{left:54.339291pt;}
.x72{left:110.995538pt;}
.x4{left:124.560395pt;}
.x18{left:128.904750pt;}
.x9{left:133.783393pt;}
.x16{left:140.580804pt;}
.x5f{left:145.811479pt;}
.x15{left:152.984369pt;}
.x34{left:159.253074pt;}
.x1{left:161.312493pt;}
.x4a{left:171.765618pt;}
.x60{left:202.483352pt;}
.x6b{left:204.488535pt;}
.x55{left:243.242999pt;}
.x2{left:269.249989pt;}
.x75{left:304.015617pt;}
.xc{left:310.859367pt;}
.x36{left:321.656628pt;}
.x25{left:331.106822pt;}
.x5{left:334.046866pt;}
.xd{left:337.165416pt;}
.xe{left:341.852916pt;}
.x26{left:347.106822pt;}
.x5c{left:348.531235pt;}
.x44{left:357.218735pt;}
.x4b{left:358.486315pt;}
.x27{left:363.106821pt;}
.x28{left:379.106820pt;}
.x22{left:380.406234pt;}
.x2a{left:383.122445pt;}
.x29{left:395.106820pt;}
.x20{left:398.635100pt;}
.x1b{left:403.593733pt;}
.x42{left:404.827875pt;}
.x4c{left:406.111313pt;}
.x63{left:426.781232pt;}
.x3{left:441.937482pt;}
.x30{left:462.482209pt;}
.x2b{left:473.140610pt;}
.x8{left:502.442673pt;}
.x43{left:503.986228pt;}
.x6c{left:506.691648pt;}
.x35{left:524.780993pt;}
.x17{left:532.867774pt;}
.x33{left:542.687477pt;}
.x1d{left:565.874976pt;}
.x5b{left:569.443426pt;}
.x5a{left:585.064512pt;}
.x45{left:587.154184pt;}
.x10{left:606.685831pt;}
.x68{left:627.796854pt;}
.x76{left:635.421854pt;}
.x13{left:638.377480pt;}
.x1c{left:660.234352pt;}
.x3c{left:682.810756pt;}
.x65{left:684.502486pt;}
.x39{left:708.736367pt;}
.x2d{left:711.528715pt;}
.x37{left:726.599901pt;}
.x2e{left:729.919340pt;}
.xf{left:737.768101pt;}
.x2c{left:751.343719pt;}
.x38{left:766.599899pt;}
.x66{left:787.320976pt;}
.x6f{left:864.572069pt;}
.x1f{left:887.309883pt;}
.x48{left:890.045231pt;}
.x24{left:916.169818pt;}
.x70{left:929.677314pt;}
.x6e{left:933.951298pt;}
.x4f{left:968.687460pt;}
.x62{left:973.476663pt;}
.x73{left:974.454423pt;}
.x19{left:975.562459pt;}
.x50{left:986.710267pt;}
.x1a{left:991.330743pt;}
.xa{left:994.176906pt;}
.x57{left:995.443409pt;}
.x69{left:998.251222pt;}
.x2f{left:1003.977055pt;}
.x21{left:1010.714486pt;}
.x3b{left:1018.682471pt;}
.x61{left:1026.984332pt;}
.x1e{left:1028.221684pt;}
.x74{left:1031.110671pt;}
.x5e{left:1035.098005pt;}
.x58{left:1037.062457pt;}
.x3a{left:1046.244969pt;}
.xb{left:1053.114403pt;}
.x6a{left:1061.719944pt;}
.x53{left:1063.772764pt;}
.x6{left:1068.383699pt;}
.x23{left:1099.073782pt;}
.x56{left:1154.156202pt;}
.x6d{left:1207.348461pt;}
.x59{left:1227.328079pt;}
.x41{left:1239.173783pt;}
.x5d{left:1252.078078pt;}
.x3d{left:1280.847755pt;}
.x64{left:1300.570634pt;}
.x3f{left:1301.514736pt;}
.x4d{left:1308.972617pt;}
.x40{left:1319.429361pt;}
.x46{left:1329.425257pt;}
.x51{left:1340.054002pt;}
.x4e{left:1356.597615pt;}
.x14{left:1363.356199pt;}
.x47{left:1377.050255pt;}
.x12{left:1449.371821pt;}
.x32{left:1454.186192pt;}
.x67{left:1457.679779pt;}
.x54{left:1460.321667pt;}
.x7{left:1481.421666pt;}
.x31{left:1488.225734pt;}
.x11{left:1514.476970pt;}
.x49{left:1579.475550pt;}
.x52{left:1666.194619pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  