
    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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_6585d2255a1b5445ddfcaed7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_74604a1c9a8f14496ec632d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_6213556d0128b4b80c5bddbc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.112305;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_764e1ce2276a093024985a08.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_3b7718d4985c39255a33398e.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003906;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_1dcd2e386c9153474af99367.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;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_1506dc5323183ba019d1520f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.112305;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_1a969c55680a7848c2bda3ad.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.003906;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_91d3c6d6c60fa185cc36913b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;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_a969b67708adefaa74e0b267.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;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_71289d92996275def464ddb0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.921387;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_34cc8445a209dfca81ab485c.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.112305;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.003906;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_09b79dfdec4720a4164ff1c1.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.112305;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_44fae8959e58758f0021bf21.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.040039;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.284668;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_315cfb2ddf996331cc9f99a7.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.311035;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.003906;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_5108345795604ef53052c58b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.112305;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.284668;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_d17c2b9701eee1fd6183830b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.311035;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.003906;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_3ae553133a53d9e254f03098.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.112305;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.284668;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_38551b86b41bbff522bb6048.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.311035;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.003906;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_e1405fd197ddeaadc3de15f8.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.112305;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.284668;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_6b5212e709e7b4a98af27f10.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.921387;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.311035;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_146684944af763899a84ad4b.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.040039;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_d2770b4c93f17dc63ee5f6a3.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.003906;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_316a44ab58a3f3e66f02d91e.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.112305;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.311035;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.284668;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_5db6127b4df94610f9ed4b42.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.921387;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_ff95bb9bac8d03418603ac8a.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.040039;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.003906;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_94833b94311ed7419122737a.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.112305;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.284668;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_d5270354648821e8bc5577a0.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.040039;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.003906;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_60011d6422dda6ed9acb2779.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.112305;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_d898625ac3ec2d11aaa18301.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.040039;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.284668;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.003906;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_fa6dd69c566dfce75e03aa61.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.112305;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_6b9c53abfdef4cb714ebdb91.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.040039;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.284668;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff64{font-family:ff64;line-height:1.003906;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_79351d6b28dfc47680abb25f.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.112305;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_3d06505e055d6862fbbe6e2d.woff2')format("woff");}.ff66{font-family:ff66;line-height:1.040039;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.284668;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_5b722959b28f96ca5da3c726.woff2')format("woff");}.ff68{font-family:ff68;line-height:1.432129;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_564a3f984c3bd1648864caf4.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.432129;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_4134909b3cee4f5bdd9e6db8.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.003906;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_f08bed4edf927b1392c866cf.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.112305;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_987ddfa0eb894472a2663fc8.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.040039;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.284668;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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:1.432129;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls11{letter-spacing:-5.760000px;}
.ls12{letter-spacing:-5.040000px;}
.lsb{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls10{letter-spacing:6.480000px;}
.ls2{letter-spacing:34.128000px;}
.lsd{letter-spacing:51.984000px;}
.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;}
}
.ws0{word-spacing:-26.621280px;}
.ws6{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.613280px;}
.ws2{word-spacing:-16.506480px;}
.ws3{word-spacing:-15.840000px;}
.wsc{word-spacing:-12.960000px;}
.wsb{word-spacing:-12.240000px;}
.ws5{word-spacing:0.000000px;}
._42{margin-left:-10.138800px;}
._1e{margin-left:-8.973120px;}
._1{margin-left:-7.344000px;}
._1a{margin-left:-6.252480px;}
._4{margin-left:-4.417200px;}
._3{margin-left:-3.024000px;}
._2{margin-left:-1.152000px;}
._0{width:1.149120px;}
._5{width:2.365680px;}
._6{width:3.744000px;}
._7{width:4.824000px;}
._8{width:6.101760px;}
._10{width:7.272000px;}
._13{width:8.496000px;}
._9{width:10.080000px;}
._14{width:11.808000px;}
._15{width:12.816000px;}
._b{width:13.824000px;}
._16{width:15.048000px;}
._a{width:16.416000px;}
._18{width:19.008000px;}
._19{width:20.088000px;}
._11{width:21.960000px;}
._12{width:22.968000px;}
._1b{width:24.408000px;}
._1c{width:26.352000px;}
._17{width:27.360000px;}
._43{width:29.162880px;}
._23{width:30.888000px;}
._2e{width:32.148000px;}
._2b{width:33.408000px;}
._e{width:34.992000px;}
._f{width:36.072000px;}
._c{width:38.568000px;}
._41{width:39.912000px;}
._d{width:41.008080px;}
._1d{width:42.046320px;}
._21{width:43.417680px;}
._29{width:49.176000px;}
._2a{width:50.256000px;}
._1f{width:51.408000px;}
._20{width:52.704000px;}
._25{width:56.304000px;}
._27{width:60.264000px;}
._28{width:61.488000px;}
._3b{width:63.144000px;}
._3c{width:64.212000px;}
._30{width:66.024000px;}
._4c{width:67.464000px;}
._4b{width:69.361200px;}
._2f{width:70.632000px;}
._4e{width:72.576000px;}
._3d{width:78.480000px;}
._3e{width:79.488000px;}
._3f{width:80.872080px;}
._26{width:109.656000px;}
._33{width:113.832000px;}
._34{width:116.640000px;}
._44{width:123.552000px;}
._24{width:124.632000px;}
._47{width:126.072000px;}
._46{width:127.153200px;}
._2c{width:143.928000px;}
._31{width:161.928000px;}
._32{width:164.160000px;}
._4a{width:167.544000px;}
._22{width:170.064000px;}
._40{width:172.008000px;}
._45{width:173.592000px;}
._48{width:179.064000px;}
._2d{width:193.536000px;}
._35{width:194.833200px;}
._36{width:196.056480px;}
._3a{width:197.856000px;}
._39{width:200.232000px;}
._37{width:202.392000px;}
._38{width:203.872080px;}
._4d{width:318.888000px;}
._49{width:647.208000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(31,73,125);}
.fc6{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.000000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y73{bottom:7.020000px;}
.y7a{bottom:7.200000px;}
.ya8{bottom:7.500000px;}
.y4{bottom:7.740000px;}
.y3{bottom:24.840000px;}
.y8{bottom:30.240000px;}
.y81{bottom:30.780000px;}
.y79{bottom:30.960000px;}
.y2{bottom:44.100000px;}
.y6{bottom:45.900000px;}
.y78{bottom:54.720000px;}
.y77{bottom:78.480000px;}
.y7f{bottom:89.316000px;}
.ya7{bottom:97.956000px;}
.y59{bottom:99.396000px;}
.y7e{bottom:102.240000px;}
.y76{bottom:102.420000px;}
.y71{bottom:104.616000px;}
.y2f{bottom:107.316000px;}
.ya6{bottom:121.716000px;}
.y58{bottom:123.336000px;}
.y75{bottom:126.180000px;}
.y70{bottom:128.376000px;}
.y2e{bottom:131.256000px;}
.ya5{bottom:145.476000px;}
.y57{bottom:147.096000px;}
.y7d{bottom:149.940000px;}
.y6f{bottom:152.310000px;}
.y2d{bottom:155.010000px;}
.y7b{bottom:161.490000px;}
.ya4{bottom:169.410000px;}
.y56{bottom:170.850000px;}
.y7c{bottom:173.700000px;}
.y6e{bottom:176.070000px;}
.y2c{bottom:178.770000px;}
.ya3{bottom:193.170000px;}
.y55{bottom:194.610000px;}
.y6d{bottom:199.830000px;}
.y2b{bottom:202.530000px;}
.ya2{bottom:216.930000px;}
.y54{bottom:218.550000px;}
.y6c{bottom:223.590000px;}
.y2a{bottom:226.470000px;}
.ya1{bottom:240.690000px;}
.y53{bottom:242.310000px;}
.y6b{bottom:247.530000px;}
.y29{bottom:250.230000px;}
.ya0{bottom:264.630000px;}
.y52{bottom:266.070000px;}
.y6a{bottom:271.290000px;}
.y28{bottom:273.990000px;}
.y9f{bottom:288.390000px;}
.y51{bottom:289.830000px;}
.y69{bottom:295.050000px;}
.y27{bottom:297.750000px;}
.y9e{bottom:312.150000px;}
.y50{bottom:313.590000px;}
.y68{bottom:318.810000px;}
.y26{bottom:321.690000px;}
.y9d{bottom:335.910000px;}
.y4f{bottom:337.575000px;}
.y67{bottom:342.795000px;}
.y25{bottom:345.495000px;}
.y74{bottom:352.695000px;}
.y9c{bottom:359.895000px;}
.y4e{bottom:361.335000px;}
.y66{bottom:366.555000px;}
.y24{bottom:369.255000px;}
.y9b{bottom:383.655000px;}
.y4d{bottom:385.095000px;}
.y65{bottom:390.315000px;}
.y23{bottom:393.015000px;}
.y9a{bottom:407.415000px;}
.y4c{bottom:408.855000px;}
.y64{bottom:414.075000px;}
.y22{bottom:416.955000px;}
.y99{bottom:431.175000px;}
.y4b{bottom:432.795000px;}
.y63{bottom:437.835000px;}
.y21{bottom:440.715000px;}
.y98{bottom:455.115000px;}
.y4a{bottom:456.555000px;}
.y62{bottom:461.775000px;}
.y20{bottom:464.475000px;}
.y97{bottom:478.875000px;}
.y49{bottom:480.315000px;}
.y61{bottom:485.535000px;}
.y1f{bottom:488.235000px;}
.y72{bottom:496.335000px;}
.y96{bottom:502.635000px;}
.y48{bottom:504.075000px;}
.y60{bottom:509.295000px;}
.y1e{bottom:511.995000px;}
.y95{bottom:526.395000px;}
.y47{bottom:528.015000px;}
.y5f{bottom:533.055000px;}
.y1d{bottom:535.935000px;}
.y94{bottom:550.335000px;}
.y46{bottom:551.775000px;}
.y5e{bottom:556.995000px;}
.y1c{bottom:559.695000px;}
.y93{bottom:574.095000px;}
.y45{bottom:575.535000px;}
.y5d{bottom:580.755000px;}
.y1b{bottom:583.455000px;}
.y92{bottom:597.855000px;}
.y44{bottom:599.295000px;}
.y5c{bottom:604.545000px;}
.y1a{bottom:607.245000px;}
.y91{bottom:621.645000px;}
.y43{bottom:623.265000px;}
.y5b{bottom:628.305000px;}
.y19{bottom:631.185000px;}
.y90{bottom:645.405000px;}
.y42{bottom:647.025000px;}
.y5a{bottom:648.105000px;}
.y18{bottom:654.945000px;}
.y8f{bottom:669.345000px;}
.y41{bottom:670.785000px;}
.y17{bottom:678.705000px;}
.y8e{bottom:693.105000px;}
.y40{bottom:694.545000px;}
.y16{bottom:702.465000px;}
.y8d{bottom:716.865000px;}
.y3f{bottom:718.485000px;}
.y15{bottom:726.405000px;}
.y8c{bottom:740.625000px;}
.y3e{bottom:742.245000px;}
.y14{bottom:750.165000px;}
.y8b{bottom:764.565000px;}
.y3d{bottom:766.005000px;}
.y13{bottom:780.765000px;}
.y8a{bottom:788.325000px;}
.y3c{bottom:789.765000px;}
.y12{bottom:804.525000px;}
.y89{bottom:812.085000px;}
.y3b{bottom:813.525000px;}
.y11{bottom:828.465000px;}
.y88{bottom:835.845000px;}
.y3a{bottom:837.465000px;}
.y10{bottom:852.225000px;}
.y87{bottom:859.785000px;}
.y39{bottom:861.225000px;}
.yf{bottom:876.030000px;}
.y86{bottom:883.590000px;}
.y38{bottom:885.030000px;}
.ye{bottom:895.290000px;}
.y85{bottom:907.350000px;}
.y37{bottom:908.790000px;}
.yd{bottom:927.150000px;}
.y84{bottom:931.110000px;}
.y36{bottom:932.730000px;}
.y83{bottom:955.050000px;}
.yc{bottom:956.490000px;}
.y82{bottom:978.810000px;}
.y35{bottom:980.250000px;}
.yb{bottom:987.090000px;}
.y80{bottom:996.270000px;}
.y34{bottom:1004.010000px;}
.y33{bottom:1027.950000px;}
.ya{bottom:1034.790000px;}
.y32{bottom:1051.710000px;}
.y31{bottom:1075.470000px;}
.y9{bottom:1082.310000px;}
.y30{bottom:1099.230000px;}
.y5{bottom:1120.470000px;}
.y1{bottom:1141.200000px;}
.h8{height:21.060000px;}
.h13{height:23.760000px;}
.h19{height:25.031250px;}
.h10{height:43.304063px;}
.hf{height:45.202500px;}
.he{height:47.344922px;}
.h18{height:59.343750px;}
.h5{height:62.327813px;}
.h12{height:64.546875px;}
.h7{height:65.884219px;}
.h11{height:70.664062px;}
.h2{height:70.920000px;}
.h16{height:71.460000px;}
.h6{height:71.613281px;}
.hb{height:72.562500px;}
.h3{height:75.093750px;}
.hc{height:96.508125px;}
.hd{height:99.855000px;}
.h4{height:99.874688px;}
.h9{height:101.601562px;}
.h17{height:118.980000px;}
.h14{height:142.920000px;}
.ha{height:145.125000px;}
.h15{height:190.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:38.340000px;}
.w2{width:63.216000px;}
.w8{width:120.456000px;}
.w5{width:121.356000px;}
.wb{width:127.440000px;}
.wa{width:242.175000px;}
.w9{width:249.330000px;}
.w6{width:597.345000px;}
.w3{width:693.825000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.120000px;}
.x18{left:7.740000px;}
.x1d{left:21.600000px;}
.xa{left:30.060000px;}
.x2{left:56.196000px;}
.x1{left:68.040000px;}
.x12{left:73.079987px;}
.x17{left:75.600000px;}
.x6{left:79.914000px;}
.x15{left:81.359987px;}
.x1c{left:95.075987px;}
.xb{left:97.955987px;}
.x11{left:104.255987px;}
.xd{left:119.555987px;}
.x3{left:131.256000px;}
.x10{left:132.695987px;}
.xc{left:140.255987px;}
.x8{left:156.465000px;}
.xe{left:169.589987px;}
.xf{left:181.289987px;}
.x7{left:189.390000px;}
.x19{left:196.770000px;}
.x16{left:205.229987px;}
.x13{left:318.494987px;}
.x5{left:346.929000px;}
.x1a{left:447.015000px;}
.x1b{left:690.090000px;}
.x14{left:755.969987px;}
.x9{left:786.750000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls11{letter-spacing:-5.120000pt;}
.ls12{letter-spacing:-4.480000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls10{letter-spacing:5.760000pt;}
.ls2{letter-spacing:30.336000pt;}
.lsd{letter-spacing:46.208000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws6{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.672427pt;}
.ws3{word-spacing:-14.080000pt;}
.wsc{word-spacing:-11.520000pt;}
.wsb{word-spacing:-10.880000pt;}
.ws5{word-spacing:0.000000pt;}
._42{margin-left:-9.012267pt;}
._1e{margin-left:-7.976107pt;}
._1{margin-left:-6.528000pt;}
._1a{margin-left:-5.557760pt;}
._4{margin-left:-3.926400pt;}
._3{margin-left:-2.688000pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.021440pt;}
._5{width:2.102827pt;}
._6{width:3.328000pt;}
._7{width:4.288000pt;}
._8{width:5.423787pt;}
._10{width:6.464000pt;}
._13{width:7.552000pt;}
._9{width:8.960000pt;}
._14{width:10.496000pt;}
._15{width:11.392000pt;}
._b{width:12.288000pt;}
._16{width:13.376000pt;}
._a{width:14.592000pt;}
._18{width:16.896000pt;}
._19{width:17.856000pt;}
._11{width:19.520000pt;}
._12{width:20.416000pt;}
._1b{width:21.696000pt;}
._1c{width:23.424000pt;}
._17{width:24.320000pt;}
._43{width:25.922560pt;}
._23{width:27.456000pt;}
._2e{width:28.576000pt;}
._2b{width:29.696000pt;}
._e{width:31.104000pt;}
._f{width:32.064000pt;}
._c{width:34.282667pt;}
._41{width:35.477333pt;}
._d{width:36.451627pt;}
._1d{width:37.374507pt;}
._21{width:38.593493pt;}
._29{width:43.712000pt;}
._2a{width:44.672000pt;}
._1f{width:45.696000pt;}
._20{width:46.848000pt;}
._25{width:50.048000pt;}
._27{width:53.568000pt;}
._28{width:54.656000pt;}
._3b{width:56.128000pt;}
._3c{width:57.077333pt;}
._30{width:58.688000pt;}
._4c{width:59.968000pt;}
._4b{width:61.654400pt;}
._2f{width:62.784000pt;}
._4e{width:64.512000pt;}
._3d{width:69.760000pt;}
._3e{width:70.656000pt;}
._3f{width:71.886293pt;}
._26{width:97.472000pt;}
._33{width:101.184000pt;}
._34{width:103.680000pt;}
._44{width:109.824000pt;}
._24{width:110.784000pt;}
._47{width:112.064000pt;}
._46{width:113.025067pt;}
._2c{width:127.936000pt;}
._31{width:143.936000pt;}
._32{width:145.920000pt;}
._4a{width:148.928000pt;}
._22{width:151.168000pt;}
._40{width:152.896000pt;}
._45{width:154.304000pt;}
._48{width:159.168000pt;}
._2d{width:172.032000pt;}
._35{width:173.185067pt;}
._36{width:174.272427pt;}
._3a{width:175.872000pt;}
._39{width:177.984000pt;}
._37{width:179.904000pt;}
._38{width:181.219627pt;}
._4d{width:283.456000pt;}
._49{width:575.296000pt;}
.fs7{font-size:21.333333pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y73{bottom:6.240000pt;}
.y7a{bottom:6.400000pt;}
.ya8{bottom:6.666667pt;}
.y4{bottom:6.880000pt;}
.y3{bottom:22.080000pt;}
.y8{bottom:26.880000pt;}
.y81{bottom:27.360000pt;}
.y79{bottom:27.520000pt;}
.y2{bottom:39.200000pt;}
.y6{bottom:40.800000pt;}
.y78{bottom:48.640000pt;}
.y77{bottom:69.760000pt;}
.y7f{bottom:79.392000pt;}
.ya7{bottom:87.072000pt;}
.y59{bottom:88.352000pt;}
.y7e{bottom:90.880000pt;}
.y76{bottom:91.040000pt;}
.y71{bottom:92.992000pt;}
.y2f{bottom:95.392000pt;}
.ya6{bottom:108.192000pt;}
.y58{bottom:109.632000pt;}
.y75{bottom:112.160000pt;}
.y70{bottom:114.112000pt;}
.y2e{bottom:116.672000pt;}
.ya5{bottom:129.312000pt;}
.y57{bottom:130.752000pt;}
.y7d{bottom:133.280000pt;}
.y6f{bottom:135.386667pt;}
.y2d{bottom:137.786667pt;}
.y7b{bottom:143.546667pt;}
.ya4{bottom:150.586667pt;}
.y56{bottom:151.866667pt;}
.y7c{bottom:154.400000pt;}
.y6e{bottom:156.506667pt;}
.y2c{bottom:158.906667pt;}
.ya3{bottom:171.706667pt;}
.y55{bottom:172.986667pt;}
.y6d{bottom:177.626667pt;}
.y2b{bottom:180.026667pt;}
.ya2{bottom:192.826667pt;}
.y54{bottom:194.266667pt;}
.y6c{bottom:198.746667pt;}
.y2a{bottom:201.306667pt;}
.ya1{bottom:213.946667pt;}
.y53{bottom:215.386667pt;}
.y6b{bottom:220.026667pt;}
.y29{bottom:222.426667pt;}
.ya0{bottom:235.226667pt;}
.y52{bottom:236.506667pt;}
.y6a{bottom:241.146667pt;}
.y28{bottom:243.546667pt;}
.y9f{bottom:256.346667pt;}
.y51{bottom:257.626667pt;}
.y69{bottom:262.266667pt;}
.y27{bottom:264.666667pt;}
.y9e{bottom:277.466667pt;}
.y50{bottom:278.746667pt;}
.y68{bottom:283.386667pt;}
.y26{bottom:285.946667pt;}
.y9d{bottom:298.586667pt;}
.y4f{bottom:300.066667pt;}
.y67{bottom:304.706667pt;}
.y25{bottom:307.106667pt;}
.y74{bottom:313.506667pt;}
.y9c{bottom:319.906667pt;}
.y4e{bottom:321.186667pt;}
.y66{bottom:325.826667pt;}
.y24{bottom:328.226667pt;}
.y9b{bottom:341.026667pt;}
.y4d{bottom:342.306667pt;}
.y65{bottom:346.946667pt;}
.y23{bottom:349.346667pt;}
.y9a{bottom:362.146667pt;}
.y4c{bottom:363.426667pt;}
.y64{bottom:368.066667pt;}
.y22{bottom:370.626667pt;}
.y99{bottom:383.266667pt;}
.y4b{bottom:384.706667pt;}
.y63{bottom:389.186667pt;}
.y21{bottom:391.746667pt;}
.y98{bottom:404.546667pt;}
.y4a{bottom:405.826667pt;}
.y62{bottom:410.466667pt;}
.y20{bottom:412.866667pt;}
.y97{bottom:425.666667pt;}
.y49{bottom:426.946667pt;}
.y61{bottom:431.586667pt;}
.y1f{bottom:433.986667pt;}
.y72{bottom:441.186667pt;}
.y96{bottom:446.786667pt;}
.y48{bottom:448.066667pt;}
.y60{bottom:452.706667pt;}
.y1e{bottom:455.106667pt;}
.y95{bottom:467.906667pt;}
.y47{bottom:469.346667pt;}
.y5f{bottom:473.826667pt;}
.y1d{bottom:476.386667pt;}
.y94{bottom:489.186667pt;}
.y46{bottom:490.466667pt;}
.y5e{bottom:495.106667pt;}
.y1c{bottom:497.506667pt;}
.y93{bottom:510.306667pt;}
.y45{bottom:511.586667pt;}
.y5d{bottom:516.226667pt;}
.y1b{bottom:518.626667pt;}
.y92{bottom:531.426667pt;}
.y44{bottom:532.706667pt;}
.y5c{bottom:537.373333pt;}
.y1a{bottom:539.773333pt;}
.y91{bottom:552.573333pt;}
.y43{bottom:554.013333pt;}
.y5b{bottom:558.493333pt;}
.y19{bottom:561.053333pt;}
.y90{bottom:573.693333pt;}
.y42{bottom:575.133333pt;}
.y5a{bottom:576.093333pt;}
.y18{bottom:582.173333pt;}
.y8f{bottom:594.973333pt;}
.y41{bottom:596.253333pt;}
.y17{bottom:603.293333pt;}
.y8e{bottom:616.093333pt;}
.y40{bottom:617.373333pt;}
.y16{bottom:624.413333pt;}
.y8d{bottom:637.213333pt;}
.y3f{bottom:638.653333pt;}
.y15{bottom:645.693333pt;}
.y8c{bottom:658.333333pt;}
.y3e{bottom:659.773333pt;}
.y14{bottom:666.813333pt;}
.y8b{bottom:679.613333pt;}
.y3d{bottom:680.893333pt;}
.y13{bottom:694.013333pt;}
.y8a{bottom:700.733333pt;}
.y3c{bottom:702.013333pt;}
.y12{bottom:715.133333pt;}
.y89{bottom:721.853333pt;}
.y3b{bottom:723.133333pt;}
.y11{bottom:736.413333pt;}
.y88{bottom:742.973333pt;}
.y3a{bottom:744.413333pt;}
.y10{bottom:757.533333pt;}
.y87{bottom:764.253333pt;}
.y39{bottom:765.533333pt;}
.yf{bottom:778.693333pt;}
.y86{bottom:785.413333pt;}
.y38{bottom:786.693333pt;}
.ye{bottom:795.813333pt;}
.y85{bottom:806.533333pt;}
.y37{bottom:807.813333pt;}
.yd{bottom:824.133333pt;}
.y84{bottom:827.653333pt;}
.y36{bottom:829.093333pt;}
.y83{bottom:848.933333pt;}
.yc{bottom:850.213333pt;}
.y82{bottom:870.053333pt;}
.y35{bottom:871.333333pt;}
.yb{bottom:877.413333pt;}
.y80{bottom:885.573333pt;}
.y34{bottom:892.453333pt;}
.y33{bottom:913.733333pt;}
.ya{bottom:919.813333pt;}
.y32{bottom:934.853333pt;}
.y31{bottom:955.973333pt;}
.y9{bottom:962.053333pt;}
.y30{bottom:977.093333pt;}
.y5{bottom:995.973333pt;}
.y1{bottom:1014.400000pt;}
.h8{height:18.720000pt;}
.h13{height:21.120000pt;}
.h19{height:22.250000pt;}
.h10{height:38.492500pt;}
.hf{height:40.180000pt;}
.he{height:42.084375pt;}
.h18{height:52.750000pt;}
.h5{height:55.402500pt;}
.h12{height:57.375000pt;}
.h7{height:58.563750pt;}
.h11{height:62.812500pt;}
.h2{height:63.040000pt;}
.h16{height:63.520000pt;}
.h6{height:63.656250pt;}
.hb{height:64.500000pt;}
.h3{height:66.750000pt;}
.hc{height:85.785000pt;}
.hd{height:88.760000pt;}
.h4{height:88.777500pt;}
.h9{height:90.312500pt;}
.h17{height:105.760000pt;}
.h14{height:127.040000pt;}
.ha{height:129.000000pt;}
.h15{height:169.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:34.080000pt;}
.w2{width:56.192000pt;}
.w8{width:107.072000pt;}
.w5{width:107.872000pt;}
.wb{width:113.280000pt;}
.wa{width:215.266667pt;}
.w9{width:221.626667pt;}
.w6{width:530.973333pt;}
.w3{width:616.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.440000pt;}
.x18{left:6.880000pt;}
.x1d{left:19.200000pt;}
.xa{left:26.720000pt;}
.x2{left:49.952000pt;}
.x1{left:60.480000pt;}
.x12{left:64.959988pt;}
.x17{left:67.200000pt;}
.x6{left:71.034667pt;}
.x15{left:72.319988pt;}
.x1c{left:84.511988pt;}
.xb{left:87.071988pt;}
.x11{left:92.671988pt;}
.xd{left:106.271988pt;}
.x3{left:116.672000pt;}
.x10{left:117.951988pt;}
.xc{left:124.671988pt;}
.x8{left:139.080000pt;}
.xe{left:150.746655pt;}
.xf{left:161.146655pt;}
.x7{left:168.346667pt;}
.x19{left:174.906667pt;}
.x16{left:182.426655pt;}
.x13{left:283.106655pt;}
.x5{left:308.381333pt;}
.x1a{left:397.346667pt;}
.x1b{left:613.413333pt;}
.x14{left:671.973322pt;}
.x9{left:699.333333pt;}
}




    .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; }
  