
    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_d71132d4eb440f8c6a0fbc0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.013000;font-style:normal;font-weight: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_1d49372aa90c0e0ecbbad545.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990234;font-style:normal;font-weight: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_414f53c2710fb95407c0ff3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.247000;font-style:normal;font-weight: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_ee90546eb7777c4488ac3a22.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.013000;font-style:normal;font-weight: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_8c2e487ea52f1d1259d26e67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;font-style:normal;font-weight: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_5192552f0d5c8d1e8d693137.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.013000;font-style:normal;font-weight: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_02f22d8326f6461e6aeb7508.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109000;font-style:normal;font-weight: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_eee8a267202fc77361856060.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109000;font-style:normal;font-weight: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_6e10b2a702f2185ad30e74e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.109000;font-style:normal;font-weight: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_0ad1a6c3c8271246d9281e93.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.013000;font-style:normal;font-weight: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_ce22f8b05fdf58cddd181df4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_51b7a081d6f8ebd9bd1bfdc7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f750ba582c2720ce7ab81bd3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.734375;font-style:normal;font-weight: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_178505b7a2f8c209cb9982c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.875000;font-style:normal;font-weight: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_6bab0a351a5c07c26da43a1d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.875000;font-style:normal;font-weight: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_2d57b5672bc4e8e16a8b0aea.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.966797;font-style:normal;font-weight: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_30562426f7f6c2f3faad63cf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.734375;font-style:normal;font-weight: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_a260c3c979de9e04071003b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.109000;font-style:normal;font-weight: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_d6f254139f428b9a58846e7d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.875000;font-style:normal;font-weight: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_341bb792cb8f72ecfd2d33e4.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.109000;font-style:normal;font-weight: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_341bb792cb8f72ecfd2d33e4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.109000;font-style:normal;font-weight: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_1a30715639bd9c6f56380b31.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.013000;font-style:normal;font-weight: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_d0644ae2846405a0fb7735e8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.216000;font-style:normal;font-weight: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_e1090d6f5821a861a3e7c90a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.985000;font-style:normal;font-weight: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_a3175e1ded23e904bcc8b7ba.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.985000;font-style:normal;font-weight: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_7db0c3bd0e2a064a92595b4b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.010000;font-style:normal;font-weight: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_db1f302f5ccbb5f8859f7881.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.013000;font-style:normal;font-weight: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_cd9fa3457874bd68dba3b1d2.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.875000;font-style:normal;font-weight: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_48027541a427255c9f167927.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.875000;font-style:normal;font-weight: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_98d8e3816d675249c1ddfac1.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.013000;font-style:normal;font-weight: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_3dd6c1bc7f59c2ab221ead7e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.982000;font-style:normal;font-weight: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_8dd51c37ecf813599db13e5c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.863770;font-style:normal;font-weight: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_f8e38ad376d7a4dd6aa8fac8.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.734375;font-style:normal;font-weight: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_378ef4e7034240e9c9421ed4.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.879000;font-style:normal;font-weight: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_9a351ca94d8c6b9f39f38ace.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.959961;font-style:normal;font-weight: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_8359c156d13bb92eb490ad94.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.863770;font-style:normal;font-weight: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_a6097d3003b3da7648aac1d5.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.982000;font-style:normal;font-weight: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_8359c156d13bb92eb490ad94.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.863770;font-style:normal;font-weight: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_9a351ca94d8c6b9f39f38ace.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.959961;font-style:normal;font-weight: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_f60b8c4a2309a8bab38fed51.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.216000;font-style:normal;font-weight: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_6e92154ad94288882dc41a66.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.466000;font-style:normal;font-weight: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_44da36d519236bea9748487b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.875000;font-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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsd{word-spacing:-299.970006px;}
.ws3{word-spacing:-179.040873px;}
.ws0{word-spacing:-161.372243px;}
.wse{word-spacing:-140.396486px;}
.ws4{word-spacing:-125.138511px;}
.ws8{word-spacing:-117.807608px;}
.ws5{word-spacing:-70.192981px;}
.wsb{word-spacing:-56.156490px;}
.ws9{word-spacing:-42.119998px;}
.wsc{word-spacing:-29.406708px;}
.ws1{word-spacing:-29.292094px;}
.ws7{word-spacing:-28.293704px;}
.ws6{word-spacing:-0.119970px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:2768.335732px;}
._7{margin-left:-42.120160px;}
._3{width:9.019829px;}
._1{width:31.627763px;}
._0{width:32.635167px;}
._4{width:34.503096px;}
._2{width:86.460716px;}
._6{width:354.266049px;}
._5{width:1600.047054px;}
.fc6{color:rgb(255,49,49);}
.fc5{color:rgb(255,87,87);}
.fc4{color:transparent;}
.fc2{color:rgb(38,0,177);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(52,40,186);}
.fs8{font-size:89.999996px;}
.fs9{font-size:119.969995px;}
.fs2{font-size:124.203332px;}
.fs0{font-size:158.489998px;}
.fsd{font-size:179.999993px;}
.fs6{font-size:185.354988px;}
.fsc{font-size:236.225275px;}
.fsb{font-size:239.984999px;}
.fs3{font-size:251.054994px;}
.fs7{font-size:299.970006px;}
.fsa{font-size:503.451315px;}
.fs5{font-size:534.779960px;}
.fse{font-size:599.984984px;}
.fs1{font-size:689.624971px;}
.fs4{font-size:765.131937px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y5c{bottom:12.420697px;}
.ydc{bottom:14.080078px;}
.yc2{bottom:15.363280px;}
.ycd{bottom:17.999999px;}
.yca{bottom:18.333982px;}
.yd7{bottom:18.931640px;}
.yd5{bottom:20.249999px;}
.yd3{bottom:20.794920px;}
.ye4{bottom:20.970701px;}
.yd1{bottom:22.002381px;}
.y41{bottom:23.250228px;}
.ye7{bottom:23.292157px;}
.yde{bottom:23.624999px;}
.ybe{bottom:23.965922px;}
.y6b{bottom:25.874999px;}
.y76{bottom:26.648437px;}
.y6a{bottom:28.874969px;}
.y6f{bottom:28.875012px;}
.y75{bottom:29.648497px;}
.y35{bottom:35.999999px;}
.y3d{bottom:36.000006px;}
.y28{bottom:36.000009px;}
.y2f{bottom:36.000020px;}
.y56{bottom:36.749943px;}
.y46{bottom:38.039060px;}
.ybb{bottom:41.326126px;}
.yb9{bottom:41.326169px;}
.y39{bottom:41.624980px;}
.y22{bottom:41.624993px;}
.y6d{bottom:43.874998px;}
.y53{bottom:46.874968px;}
.y50{bottom:46.874990px;}
.y68{bottom:46.874993px;}
.y71{bottom:46.875022px;}
.y5a{bottom:46.875058px;}
.y88{bottom:49.499998px;}
.y94{bottom:49.500041px;}
.y36{bottom:51.749998px;}
.y3f{bottom:51.750005px;}
.y2b{bottom:51.750009px;}
.y31{bottom:51.750019px;}
.y48{bottom:53.789059px;}
.y57{bottom:55.124955px;}
.y9{bottom:62.355792px;}
.y5e{bottom:65.179686px;}
.y4d{bottom:65.249997px;}
.y4a{bottom:67.125002px;}
.y4c{bottom:67.125010px;}
.y9f{bottom:67.499954px;}
.y33{bottom:67.499997px;}
.y3b{bottom:67.500004px;}
.y27{bottom:67.500008px;}
.y2d{bottom:67.500019px;}
.y5d{bottom:68.179746px;}
.y45{bottom:69.539059px;}
.y38{bottom:73.124979px;}
.y9a{bottom:77.849997px;}
.yab{bottom:78.269685px;}
.y55{bottom:78.374942px;}
.y8f{bottom:80.999997px;}
.y92{bottom:81.000040px;}
.y24{bottom:83.249997px;}
.y3e{bottom:83.250004px;}
.y2a{bottom:83.250007px;}
.y30{bottom:83.250018px;}
.y42{bottom:85.289058px;}
.y52{bottom:88.499966px;}
.y4f{bottom:88.499988px;}
.y59{bottom:88.500056px;}
.ye8{bottom:91.124996px;}
.yd0{bottom:97.724022px;}
.y34{bottom:98.999996px;}
.y3c{bottom:99.000003px;}
.y26{bottom:99.000007px;}
.y2e{bottom:99.000017px;}
.y77{bottom:100.793332px;}
.y44{bottom:101.039057px;}
.y90{bottom:112.499995px;}
.y93{bottom:112.500039px;}
.y29{bottom:114.750006px;}
.y47{bottom:116.789057px;}
.yf0{bottom:123.473947px;}
.y8{bottom:124.489557px;}
.y89{bottom:127.125005px;}
.y25{bottom:130.500005px;}
.y43{bottom:132.539056px;}
.ybd{bottom:140.674209px;}
.y8d{bottom:156.149993px;}
.y95{bottom:160.005243px;}
.y96{bottom:160.005315px;}
.y5b{bottom:164.554275px;}
.ya0{bottom:172.824771px;}
.ycf{bottom:173.445483px;}
.y74{bottom:174.698016px;}
.yaa{bottom:177.269681px;}
.y7{bottom:188.873214px;}
.y40{bottom:204.438242px;}
.y11{bottom:206.979381px;}
.ye6{bottom:207.383207px;}
.yf3{bottom:232.993247px;}
.y8c{bottom:246.824990px;}
.y73{bottom:248.836284px;}
.yce{bottom:249.167016px;}
.ya9{bottom:253.820509px;}
.y5{bottom:254.221096px;}
.ybc{bottom:257.382316px;}
.y87{bottom:265.499999px;}
.ye5{bottom:288.058624px;}
.yef{bottom:289.973940px;}
.y8b{bottom:296.324988px;}
.yaf{bottom:310.262495px;}
.y58{bottom:315.632985px;}
.ya8{bottom:316.820507px;}
.y6{bottom:319.569013px;}
.y10{bottom:323.979377px;}
.ycb{bottom:324.554602px;}
.ycc{bottom:324.888585px;}
.yda{bottom:325.907316px;}
.y19{bottom:326.229862px;}
.y9e{bottom:345.529335px;}
.y3a{bottom:350.962188px;}
.y72{bottom:358.200967px;}
.y91{bottom:360.255228px;}
.ye3{bottom:366.412513px;}
.yee{bottom:373.223936px;}
.yba{bottom:374.090611px;}
.yae{bottom:376.637492px;}
.y8a{bottom:379.687484px;}
.ya7{bottom:379.820504px;}
.yd9{bottom:385.342017px;}
.y18{bottom:390.354860px;}
.y4{bottom:392.437820px;}
.yc9{bottom:400.276063px;}
.y20{bottom:408.201985px;}
.y13{bottom:416.646324px;}
.yb{bottom:435.741177px;}
.y66{bottom:437.249394px;}
.yb0{bottom:438.889478px;}
.y7c{bottom:439.217881px;}
.yf{bottom:440.979372px;}
.yf2{bottom:442.243238px;}
.ya6{bottom:442.820502px;}
.yd8{bottom:444.776647px;}
.y17{bottom:454.479857px;}
.y54{bottom:466.914382px;}
.y70{bottom:467.565723px;}
.y62{bottom:473.811892px;}
.yb8{bottom:490.798818px;}
.y37{bottom:497.688739px;}
.yd6{bottom:504.211312px;}
.ye2{bottom:515.871205px;}
.y9d{bottom:518.233787px;}
.y65{bottom:518.249390px;}
.yed{bottom:518.551787px;}
.y16{bottom:518.604854px;}
.y61{bottom:518.624438px;}
.yc7{bottom:526.616275px;}
.ye{bottom:557.979367px;}
.y8e{bottom:560.505266px;}
.yd2{bottom:563.645773px;}
.yd4{bottom:564.190694px;}
.ya5{bottom:573.872120px;}
.y6e{bottom:577.009235px;}
.y84{bottom:586.191356px;}
.ye1{bottom:596.871198px;}
.y51{bottom:598.868204px;}
.yc6{bottom:599.360785px;}
.yec{bottom:601.801783px;}
.y3{bottom:609.671707px;}
.y12{bottom:621.425159px;}
.y32{bottom:625.087734px;}
.yb7{bottom:628.818065px;}
.ya4{bottom:636.872118px;}
.y6c{bottom:650.373996px;}
.y15{bottom:650.486662px;}
.yf1{bottom:651.493229px;}
.y83{bottom:658.191353px;}
.yc5{bottom:672.105305px;}
.yd{bottom:674.979362px;}
.ye0{bottom:677.871194px;}
.yeb{bottom:685.051780px;}
.y9c{bottom:690.938330px;}
.yb6{bottom:695.193062px;}
.ya3{bottom:699.872115px;}
.y82{bottom:730.191350px;}
.yc4{bottom:744.849821px;}
.y4e{bottom:749.946996px;}
.ydf{bottom:758.871191px;}
.yc8{bottom:759.468572px;}
.y69{bottom:759.727508px;}
.yb5{bottom:761.568059px;}
.ya2{bottom:762.872113px;}
.yea{bottom:768.301776px;}
.y2c{bottom:771.611727px;}
.yc{bottom:791.979357px;}
.y81{bottom:802.191347px;}
.y14{bottom:803.878339px;}
.y1e{bottom:807.404381px;}
.y99{bottom:812.473735px;}
.yc3{bottom:817.594342px;}
.ya1{bottom:825.872110px;}
.y1f{bottom:828.772371px;}
.y67{bottom:833.092269px;}
.ydd{bottom:839.871188px;}
.yb4{bottom:843.468045px;}
.ye9{bottom:851.551773px;}
.y9b{bottom:863.642829px;}
.y80{bottom:874.191344px;}
.y1d{bottom:884.100243px;}
.yc0{bottom:887.702154px;}
.yc1{bottom:890.338883px;}
.y4b{bottom:900.890832px;}
.y1c{bottom:909.421079px;}
.yb3{bottom:909.843042px;}
.y23{bottom:918.147014px;}
.ydb{bottom:920.872084px;}
.y98{bottom:937.177784px;}
.y7f{bottom:946.191341px;}
.yad{bottom:948.951414px;}
.y60{bottom:951.669176px;}
.y79{bottom:957.554103px;}
.y2{bottom:965.907755px;}
.y7b{bottom:968.272963px;}
.yb2{bottom:976.218040px;}
.y64{bottom:1022.624957px;}
.y86{bottom:1036.124957px;}
.y7e{bottom:1038.038072px;}
.ybf{bottom:1041.187457px;}
.y49{bottom:1051.834669px;}
.y78{bottom:1054.453484px;}
.yac{bottom:1058.677773px;}
.y1b{bottom:1062.812749px;}
.yb1{bottom:1063.177772px;}
.y7a{bottom:1069.945287px;}
.y1a{bottom:1073.122260px;}
.y97{bottom:1076.762574px;}
.ya{bottom:1085.795332px;}
.y5f{bottom:1088.770795px;}
.y21{bottom:1097.262260px;}
.y85{bottom:1102.499954px;}
.y63{bottom:1103.624954px;}
.y7d{bottom:1104.413069px;}
.h3f{height:59.431638px;}
.h3e{height:61.874997px;}
.h3d{height:62.419919px;}
.h41{height:71.455076px;}
.h39{height:72.738278px;}
.h22{height:73.124997px;}
.h24{height:73.898435px;}
.h3c{height:75.374997px;}
.h3b{height:75.708980px;}
.h43{height:78.345699px;}
.h44{height:80.667155px;}
.h42{height:80.999997px;}
.h10{height:81.166989px;}
.h11{height:85.499996px;}
.h1b{height:86.872804px;}
.h21{height:91.383395px;}
.h40{height:91.793448px;}
.hf{height:94.499996px;}
.h5{height:94.608007px;}
.h19{height:108.195596px;}
.h20{height:109.124974px;}
.h23{height:109.124995px;}
.h1a{height:113.971495px;}
.h37{height:116.701123px;}
.h35{height:116.701166px;}
.h15{height:127.124995px;}
.h38{height:130.341791px;}
.h1c{height:131.624951px;}
.h2a{height:132.749994px;}
.h36{height:137.109369px;}
.h3{height:137.410828px;}
.h3a{height:137.724604px;}
.h14{height:146.249994px;}
.h13{height:146.250016px;}
.h16{height:146.250037px;}
.h18{height:150.749994px;}
.h1d{height:151.804682px;}
.hc{height:155.637178px;}
.h2c{height:156.599993px;}
.h33{height:162.539993px;}
.h31{height:168.749950px;}
.h30{height:168.749993px;}
.h6{height:174.497488px;}
.h12{height:178.874993px;}
.h17{height:180.914054px;}
.hb{height:182.018598px;}
.h2b{height:195.749992px;}
.h2d{height:195.750035px;}
.h29{height:198.179992px;}
.h27{height:208.066994px;}
.h1f{height:260.073995px;}
.h28{height:260.084028px;}
.h2f{height:260.973905px;}
.h26{height:264.223484px;}
.h8{height:276.411548px;}
.he{height:330.266976px;}
.h1e{height:436.492290px;}
.h34{height:463.654225px;}
.h2e{height:465.258565px;}
.h32{height:482.906304px;}
.h45{height:520.186981px;}
.ha{height:525.153920px;}
.h25{height:554.299897px;}
.hd{height:588.792736px;}
.h4{height:597.904850px;}
.h9{height:663.369390px;}
.h7{height:759.277093px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w1c{width:121.025385px;}
.w18{width:187.874992px;}
.w16{width:188.296869px;}
.w1b{width:191.847603px;}
.w19{width:191.847650px;}
.w1d{width:197.666009px;}
.w1f{width:197.666052px;}
.we{width:203.624992px;}
.w11{width:208.124991px;}
.w13{width:282.374988px;}
.w10{width:282.375031px;}
.w3{width:323.999943px;}
.w4{width:323.999987px;}
.w5{width:324.000073px;}
.w7{width:331.435487px;}
.w8{width:331.435534px;}
.w12{width:355.500072px;}
.wf{width:359.999985px;}
.w14{width:390.374984px;}
.w15{width:405.861312px;}
.w2{width:466.874981px;}
.w6{width:474.310528px;}
.wc{width:484.819608px;}
.wa{width:484.874937px;}
.wb{width:484.874980px;}
.wd{width:559.124977px;}
.w9{width:566.999976px;}
.w17{width:1129.869097px;}
.w1a{width:1151.138616px;}
.w1e{width:1186.013615px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x21{left:9.333984px;}
.x33{left:11.214843px;}
.x36{left:12.269531px;}
.x41{left:13.693359px;}
.x4a{left:15.468749px;}
.x38{left:16.874999px;}
.x34{left:18.351562px;}
.x30{left:19.406249px;}
.x2e{left:20.689452px;}
.x2a{left:22.289062px;}
.x28{left:24.029296px;}
.x39{left:25.593749px;}
.x24{left:26.753905px;}
.x26{left:28.318358px;}
.x47{left:29.777343px;}
.x20{left:31.183592px;}
.x99{left:32.466796px;}
.x2b{left:33.539061px;}
.x12{left:35.701901px;}
.x45{left:37.019530px;}
.x3a{left:38.707030px;}
.x3f{left:41.132811px;}
.x37{left:42.486326px;}
.x25{left:43.804686px;}
.x2d{left:45.509764px;}
.x4c{left:46.810545px;}
.x40{left:48.041014px;}
.x2f{left:50.115232px;}
.x59{left:51.117185px;}
.x29{left:52.681638px;}
.x3d{left:54.140623px;}
.x18{left:56.109373px;}
.x1c{left:59.044919px;}
.x6b{left:60.250119px;}
.x98{left:61.382810px;}
.xa9{left:62.824216px;}
.x22{left:64.089841px;}
.x1f{left:65.830075px;}
.x1a{left:67.587888px;}
.x27{left:69.679685px;}
.xa8{left:71.121091px;}
.x15{left:72.914059px;}
.x3e{left:74.777341px;}
.x10{left:77.237702px;}
.x31{left:79.294919px;}
.x44{left:80.701169px;}
.x49{left:82.828122px;}
.x48{left:85.271481px;}
.x42{left:87.626949px;}
.x51{left:89.999996px;}
.x9a{left:92.513668px;}
.xa1{left:94.623043px;}
.xa0{left:96.064449px;}
.x35{left:99.667965px;}
.x23{left:100.810543px;}
.x1e{left:105.328121px;}
.x46{left:107.437496px;}
.x2c{left:108.914058px;}
.x43{left:110.039058px;}
.x32{left:112.376948px;}
.x3b{left:115.470698px;}
.x56{left:118.019526px;}
.x6{left:121.499995px;}
.x13{left:131.238276px;}
.xf{left:138.176580px;}
.x53{left:146.425775px;}
.x54{left:147.832025px;}
.x55{left:149.449213px;}
.x57{left:150.925775px;}
.x8f{left:153.193353px;}
.x6a{left:155.221956px;}
.x96{left:156.744134px;}
.x11{left:158.772518px;}
.xa5{left:162.562493px;}
.x7a{left:164.766384px;}
.x68{left:174.374986px;}
.x66{left:175.552727px;}
.x61{left:183.603508px;}
.x3c{left:188.138664px;}
.x7e{left:189.632805px;}
.x3{left:190.699620px;}
.x5f{left:192.164054px;}
.x9{left:195.580407px;}
.x2{left:197.736187px;}
.x58{left:200.742179px;}
.x5{left:207.955406px;}
.x52{left:211.417388px;}
.x69{left:212.589835px;}
.x4{left:222.812350px;}
.x64{left:224.894522px;}
.x67{left:226.019522px;}
.x5d{left:227.443348px;}
.x16{left:228.843008px;}
.x8b{left:231.421544px;}
.x92{left:234.964239px;}
.x65{left:236.654293px;}
.x63{left:238.939442px;}
.xa2{left:240.777807px;}
.x4d{left:254.634599px;}
.x6f{left:260.920404px;}
.x82{left:297.896478px;}
.x86{left:300.234362px;}
.x87{left:302.132800px;}
.x84{left:304.628894px;}
.x83{left:324.474601px;}
.x89{left:326.830070px;}
.x1{left:328.585879px;}
.x81{left:331.224601px;}
.x80{left:365.255850px;}
.x7f{left:368.859360px;}
.x88{left:370.757797px;}
.x85{left:372.902328px;}
.x8c{left:419.735726px;}
.x93{left:426.821116px;}
.xa3{left:438.448255px;}
.x74{left:460.716133px;}
.x7b{left:471.183730px;}
.x4b{left:488.535845px;}
.x14{left:502.863772px;}
.x78{left:532.472234px;}
.x8d{left:608.049911px;}
.x94{left:618.677938px;}
.x70{left:625.659346px;}
.x5e{left:636.169077px;}
.x5a{left:672.097662px;}
.x5b{left:690.772661px;}
.x8{left:750.040982px;}
.x7{left:760.271450px;}
.x8e{left:796.364103px;}
.x95{left:810.534854px;}
.x4e{left:819.986726px;}
.x17{left:827.150582px;}
.xa4{left:833.789161px;}
.x75{left:855.724608px;}
.x7c{left:877.061303px;}
.xaa{left:880.677710px;}
.xab{left:947.878885px;}
.x6d{left:969.982700px;}
.x90{left:984.678367px;}
.x97{left:1002.391734px;}
.xac{left:1004.726539px;}
.xa6{left:1031.459645px;}
.x71{left:1115.379890px;}
.x60{left:1121.062453px;}
.x19{left:1151.437380px;}
.x91{left:1172.992523px;}
.x6c{left:1185.964835px;}
.xa{left:1187.522879px;}
.xb{left:1191.370126px;}
.xd{left:1194.162322px;}
.xe{left:1198.009462px;}
.xa7{left:1229.130021px;}
.x76{left:1250.732936px;}
.x7d{left:1282.938715px;}
.x5c{left:1322.229689px;}
.x72{left:1328.243057px;}
.x1b{left:1475.724323px;}
.x8a{left:1478.550538px;}
.x4f{left:1482.888286px;}
.x9b{left:1506.494457px;}
.xc{left:1520.894277px;}
.x6e{left:1534.866272px;}
.x79{left:1559.109319px;}
.x62{left:1605.955901px;}
.x9c{left:1627.533220px;}
.x77{left:1645.741515px;}
.x73{left:1688.379698px;}
.x9d{left:1748.571947px;}
.x1d{left:1800.011013px;}
.x50{left:1814.338940px;}
.x9e{left:1869.610710px;}
.x9f{left:1990.649437px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsd{word-spacing:-266.640005pt;}
.ws3{word-spacing:-159.147443pt;}
.ws0{word-spacing:-143.441994pt;}
.wse{word-spacing:-124.796877pt;}
.ws4{word-spacing:-111.234232pt;}
.ws8{word-spacing:-104.717873pt;}
.ws5{word-spacing:-62.393761pt;}
.wsb{word-spacing:-49.916880pt;}
.ws9{word-spacing:-37.439998pt;}
.wsc{word-spacing:-26.139296pt;}
.ws1{word-spacing:-26.037417pt;}
.ws7{word-spacing:-25.149959pt;}
.ws6{word-spacing:-0.106640pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:2460.742873pt;}
._7{margin-left:-37.440142pt;}
._3{width:8.017626pt;}
._1{width:28.113567pt;}
._0{width:29.009037pt;}
._4{width:30.669419pt;}
._2{width:76.853970pt;}
._6{width:314.903155pt;}
._5{width:1422.264048pt;}
.fs8{font-size:79.999997pt;}
.fs9{font-size:106.639996pt;}
.fs2{font-size:110.402962pt;}
.fs0{font-size:140.879998pt;}
.fsd{font-size:159.999993pt;}
.fs6{font-size:164.759989pt;}
.fsc{font-size:209.978022pt;}
.fsb{font-size:213.319999pt;}
.fs3{font-size:223.159995pt;}
.fs7{font-size:266.640005pt;}
.fsa{font-size:447.512280pt;}
.fs5{font-size:475.359964pt;}
.fse{font-size:533.319986pt;}
.fs1{font-size:612.999974pt;}
.fs4{font-size:680.117278pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y5c{bottom:11.040620pt;}
.ydc{bottom:12.515625pt;}
.yc2{bottom:13.656249pt;}
.ycd{bottom:15.999999pt;}
.yca{bottom:16.296873pt;}
.yd7{bottom:16.828124pt;}
.yd5{bottom:17.999999pt;}
.yd3{bottom:18.484374pt;}
.ye4{bottom:18.640623pt;}
.yd1{bottom:19.557672pt;}
.y41{bottom:20.666869pt;}
.ye7{bottom:20.704140pt;}
.yde{bottom:20.999999pt;}
.ybe{bottom:21.303042pt;}
.y6b{bottom:22.999999pt;}
.y76{bottom:23.687500pt;}
.y6a{bottom:25.666639pt;}
.y6f{bottom:25.666677pt;}
.y75{bottom:26.354220pt;}
.y35{bottom:31.999999pt;}
.y3d{bottom:32.000005pt;}
.y28{bottom:32.000008pt;}
.y2f{bottom:32.000018pt;}
.y56{bottom:32.666616pt;}
.y46{bottom:33.812498pt;}
.ybb{bottom:36.734334pt;}
.yb9{bottom:36.734373pt;}
.y39{bottom:36.999982pt;}
.y22{bottom:36.999994pt;}
.y6d{bottom:38.999998pt;}
.y53{bottom:41.666638pt;}
.y50{bottom:41.666657pt;}
.y68{bottom:41.666661pt;}
.y71{bottom:41.666686pt;}
.y5a{bottom:41.666718pt;}
.y88{bottom:43.999998pt;}
.y94{bottom:44.000037pt;}
.y36{bottom:45.999998pt;}
.y3f{bottom:46.000004pt;}
.y2b{bottom:46.000008pt;}
.y31{bottom:46.000017pt;}
.y48{bottom:47.812497pt;}
.y57{bottom:48.999960pt;}
.y9{bottom:55.427370pt;}
.y5e{bottom:57.937498pt;}
.y4d{bottom:57.999998pt;}
.y4a{bottom:59.666669pt;}
.y4c{bottom:59.666676pt;}
.y9f{bottom:59.999959pt;}
.y33{bottom:59.999998pt;}
.y3b{bottom:60.000004pt;}
.y27{bottom:60.000007pt;}
.y2d{bottom:60.000017pt;}
.y5d{bottom:60.604218pt;}
.y45{bottom:61.812497pt;}
.y38{bottom:64.999981pt;}
.y9a{bottom:69.199997pt;}
.yab{bottom:69.573053pt;}
.y55{bottom:69.666615pt;}
.y8f{bottom:71.999997pt;}
.y92{bottom:72.000035pt;}
.y24{bottom:73.999997pt;}
.y3e{bottom:74.000003pt;}
.y2a{bottom:74.000007pt;}
.y30{bottom:74.000016pt;}
.y42{bottom:75.812496pt;}
.y52{bottom:78.666637pt;}
.y4f{bottom:78.666656pt;}
.y59{bottom:78.666717pt;}
.ye8{bottom:80.999997pt;}
.yd0{bottom:86.865797pt;}
.y34{bottom:87.999996pt;}
.y3c{bottom:88.000003pt;}
.y26{bottom:88.000006pt;}
.y2e{bottom:88.000016pt;}
.y77{bottom:89.594072pt;}
.y44{bottom:89.812495pt;}
.y90{bottom:99.999996pt;}
.y93{bottom:100.000034pt;}
.y29{bottom:102.000005pt;}
.y47{bottom:103.812495pt;}
.yf0{bottom:109.754619pt;}
.y8{bottom:110.657384pt;}
.y89{bottom:113.000004pt;}
.y25{bottom:116.000005pt;}
.y43{bottom:117.812494pt;}
.ybd{bottom:125.043741pt;}
.y8d{bottom:138.799994pt;}
.y95{bottom:142.226883pt;}
.y96{bottom:142.226947pt;}
.y5b{bottom:146.270467pt;}
.ya0{bottom:153.622019pt;}
.ycf{bottom:154.173763pt;}
.y74{bottom:155.287126pt;}
.yaa{bottom:157.573049pt;}
.y7{bottom:167.887302pt;}
.y40{bottom:181.722881pt;}
.y11{bottom:183.981672pt;}
.ye6{bottom:184.340629pt;}
.yf3{bottom:207.105108pt;}
.y8c{bottom:219.399991pt;}
.y73{bottom:221.187808pt;}
.yce{bottom:221.481792pt;}
.ya9{bottom:225.618231pt;}
.y5{bottom:225.974307pt;}
.ybc{bottom:228.784281pt;}
.y87{bottom:235.999999pt;}
.ye5{bottom:256.052110pt;}
.yef{bottom:257.754613pt;}
.y8b{bottom:263.399989pt;}
.yaf{bottom:275.788885pt;}
.y58{bottom:280.562653pt;}
.ya8{bottom:281.618228pt;}
.y6{bottom:284.061345pt;}
.y10{bottom:287.981668pt;}
.ycb{bottom:288.492979pt;}
.ycc{bottom:288.789853pt;}
.yda{bottom:289.695392pt;}
.y19{bottom:289.982100pt;}
.y9e{bottom:307.137187pt;}
.y3a{bottom:311.966390pt;}
.y72{bottom:318.400860pt;}
.y91{bottom:320.226869pt;}
.ye3{bottom:325.700011pt;}
.yee{bottom:331.754610pt;}
.yba{bottom:332.524987pt;}
.yae{bottom:334.788882pt;}
.y8a{bottom:337.499986pt;}
.ya7{bottom:337.618226pt;}
.yd9{bottom:342.526238pt;}
.y18{bottom:346.982098pt;}
.y4{bottom:348.833617pt;}
.yc9{bottom:355.800945pt;}
.y20{bottom:362.846209pt;}
.y13{bottom:370.352288pt;}
.yb{bottom:387.325491pt;}
.y66{bottom:388.666128pt;}
.yb0{bottom:390.123980pt;}
.y7c{bottom:390.415894pt;}
.yf{bottom:391.981664pt;}
.yf2{bottom:393.105100pt;}
.ya6{bottom:393.618224pt;}
.yd8{bottom:395.357019pt;}
.y17{bottom:403.982095pt;}
.y54{bottom:415.035006pt;}
.y70{bottom:415.613976pt;}
.y62{bottom:421.166126pt;}
.yb8{bottom:436.265616pt;}
.y37{bottom:442.389991pt;}
.yd6{bottom:448.187833pt;}
.ye2{bottom:458.552182pt;}
.y9d{bottom:460.652255pt;}
.y65{bottom:460.666125pt;}
.yed{bottom:460.934922pt;}
.y16{bottom:460.982093pt;}
.y61{bottom:460.999501pt;}
.yc7{bottom:468.103356pt;}
.ye{bottom:495.981659pt;}
.y8e{bottom:498.226903pt;}
.yd2{bottom:501.018465pt;}
.yd4{bottom:501.502839pt;}
.ya5{bottom:510.108552pt;}
.y6e{bottom:512.897098pt;}
.y84{bottom:521.058983pt;}
.ye1{bottom:530.552176pt;}
.y51{bottom:532.327292pt;}
.yc6{bottom:532.765142pt;}
.yec{bottom:534.934919pt;}
.y3{bottom:541.930406pt;}
.y12{bottom:552.377919pt;}
.y32{bottom:555.633541pt;}
.yb7{bottom:558.949391pt;}
.ya4{bottom:566.108549pt;}
.y6c{bottom:578.110219pt;}
.y15{bottom:578.210366pt;}
.yf1{bottom:579.105093pt;}
.y83{bottom:585.058980pt;}
.yc5{bottom:597.426938pt;}
.yd{bottom:599.981655pt;}
.ye0{bottom:602.552173pt;}
.yeb{bottom:608.934915pt;}
.y9c{bottom:614.167404pt;}
.yb6{bottom:617.949389pt;}
.ya3{bottom:622.108547pt;}
.y82{bottom:649.058978pt;}
.yc4{bottom:662.088730pt;}
.y4e{bottom:666.619552pt;}
.ydf{bottom:674.552170pt;}
.yc8{bottom:675.083175pt;}
.y69{bottom:675.313341pt;}
.yb5{bottom:676.949386pt;}
.ya2{bottom:678.108545pt;}
.yea{bottom:682.934912pt;}
.y2c{bottom:685.877091pt;}
.yc{bottom:703.981651pt;}
.y81{bottom:713.058975pt;}
.y14{bottom:714.558524pt;}
.y1e{bottom:717.692783pt;}
.y99{bottom:722.198876pt;}
.yc3{bottom:726.750526pt;}
.ya1{bottom:734.108542pt;}
.y1f{bottom:736.686552pt;}
.y67{bottom:740.526461pt;}
.ydd{bottom:746.552167pt;}
.yb4{bottom:749.749374pt;}
.ye9{bottom:756.934909pt;}
.y9b{bottom:767.682515pt;}
.y80{bottom:777.058972pt;}
.y1d{bottom:785.866882pt;}
.yc0{bottom:789.068582pt;}
.yc1{bottom:791.412341pt;}
.y4b{bottom:800.791851pt;}
.y1c{bottom:808.374293pt;}
.yb3{bottom:808.749371pt;}
.y23{bottom:816.130679pt;}
.ydb{bottom:818.552964pt;}
.y98{bottom:833.046919pt;}
.y7f{bottom:841.058970pt;}
.yad{bottom:843.512368pt;}
.y60{bottom:845.928157pt;}
.y79{bottom:851.159203pt;}
.y2{bottom:858.584671pt;}
.y7b{bottom:860.687079pt;}
.yb2{bottom:867.749369pt;}
.y64{bottom:908.999962pt;}
.y86{bottom:920.999962pt;}
.y7e{bottom:922.700508pt;}
.ybf{bottom:925.499961pt;}
.y49{bottom:934.964150pt;}
.y78{bottom:937.291986pt;}
.yac{bottom:941.046909pt;}
.y1b{bottom:944.722444pt;}
.yb1{bottom:945.046909pt;}
.y7a{bottom:951.062477pt;}
.y1a{bottom:953.886453pt;}
.y97{bottom:957.122288pt;}
.ya{bottom:965.151406pt;}
.y5f{bottom:967.796262pt;}
.y21{bottom:975.344231pt;}
.y85{bottom:979.999959pt;}
.y63{bottom:980.999959pt;}
.y7d{bottom:981.700506pt;}
.h3f{height:52.828123pt;}
.h3e{height:54.999998pt;}
.h3d{height:55.484372pt;}
.h41{height:63.515623pt;}
.h39{height:64.656247pt;}
.h22{height:64.999997pt;}
.h24{height:65.687498pt;}
.h3c{height:66.999997pt;}
.h3b{height:67.296871pt;}
.h43{height:69.640621pt;}
.h44{height:71.704138pt;}
.h42{height:71.999997pt;}
.h10{height:72.148434pt;}
.h11{height:75.999997pt;}
.h1b{height:77.220270pt;}
.h21{height:81.229684pt;}
.h40{height:81.594176pt;}
.hf{height:83.999997pt;}
.h5{height:84.096006pt;}
.h19{height:96.173863pt;}
.h20{height:96.999977pt;}
.h23{height:96.999996pt;}
.h1a{height:101.307996pt;}
.h37{height:103.734332pt;}
.h35{height:103.734370pt;}
.h15{height:112.999995pt;}
.h38{height:115.859370pt;}
.h1c{height:116.999957pt;}
.h2a{height:117.999995pt;}
.h36{height:121.874995pt;}
.h3{height:122.142958pt;}
.h3a{height:122.421870pt;}
.h14{height:129.999995pt;}
.h13{height:130.000014pt;}
.h16{height:130.000033pt;}
.h18{height:133.999994pt;}
.h1d{height:134.937495pt;}
.hc{height:138.344158pt;}
.h2c{height:139.199994pt;}
.h33{height:144.479994pt;}
.h31{height:149.999955pt;}
.h30{height:149.999994pt;}
.h6{height:155.108878pt;}
.h12{height:158.999993pt;}
.h17{height:160.812492pt;}
.hb{height:161.794309pt;}
.h2b{height:173.999993pt;}
.h2d{height:174.000031pt;}
.h29{height:176.159993pt;}
.h27{height:184.948439pt;}
.h1f{height:231.176884pt;}
.h28{height:231.185802pt;}
.h2f{height:231.976804pt;}
.h26{height:234.865319pt;}
.h8{height:245.699154pt;}
.he{height:293.570645pt;}
.h1e{height:387.993146pt;}
.h34{height:412.137089pt;}
.h2e{height:413.563169pt;}
.h32{height:429.250048pt;}
.h45{height:462.388428pt;}
.ha{height:466.803485pt;}
.h25{height:492.711020pt;}
.hd{height:523.371321pt;}
.h4{height:531.470978pt;}
.h9{height:589.661680pt;}
.h7{height:674.912972pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w1c{width:107.578120pt;}
.w18{width:166.999993pt;}
.w16{width:167.374995pt;}
.w1b{width:170.531202pt;}
.w19{width:170.531244pt;}
.w1d{width:175.703119pt;}
.w1f{width:175.703157pt;}
.we{width:180.999992pt;}
.w11{width:184.999992pt;}
.w13{width:250.999990pt;}
.w10{width:251.000028pt;}
.w3{width:287.999950pt;}
.w4{width:287.999988pt;}
.w5{width:288.000065pt;}
.w7{width:294.609322pt;}
.w8{width:294.609364pt;}
.w12{width:316.000064pt;}
.wf{width:319.999987pt;}
.w14{width:346.999986pt;}
.w15{width:360.765611pt;}
.w2{width:414.999983pt;}
.w6{width:421.609358pt;}
.wc{width:430.950763pt;}
.wa{width:430.999944pt;}
.wb{width:430.999982pt;}
.wd{width:496.999979pt;}
.w9{width:503.999979pt;}
.w17{width:1004.328086pt;}
.w1a{width:1023.234325pt;}
.w1e{width:1054.234324pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x21{left:8.296875pt;}
.x33{left:9.968750pt;}
.x36{left:10.906250pt;}
.x41{left:12.171874pt;}
.x4a{left:13.749999pt;}
.x38{left:14.999999pt;}
.x34{left:16.312499pt;}
.x30{left:17.249999pt;}
.x2e{left:18.390624pt;}
.x2a{left:19.812499pt;}
.x28{left:21.359374pt;}
.x39{left:22.749999pt;}
.x24{left:23.781249pt;}
.x26{left:25.171874pt;}
.x47{left:26.468749pt;}
.x20{left:27.718749pt;}
.x99{left:28.859374pt;}
.x2b{left:29.812499pt;}
.x12{left:31.735023pt;}
.x45{left:32.906249pt;}
.x3a{left:34.406249pt;}
.x3f{left:36.562498pt;}
.x37{left:37.765623pt;}
.x25{left:38.937498pt;}
.x2d{left:40.453123pt;}
.x4c{left:41.609373pt;}
.x40{left:42.703123pt;}
.x2f{left:44.546873pt;}
.x59{left:45.437498pt;}
.x29{left:46.828123pt;}
.x3d{left:48.124998pt;}
.x18{left:49.874998pt;}
.x1c{left:52.484373pt;}
.x6b{left:53.555662pt;}
.x98{left:54.562498pt;}
.xa9{left:55.843748pt;}
.x22{left:56.968748pt;}
.x1f{left:58.515623pt;}
.x1a{left:60.078122pt;}
.x27{left:61.937497pt;}
.xa8{left:63.218747pt;}
.x15{left:64.812497pt;}
.x3e{left:66.468747pt;}
.x10{left:68.655735pt;}
.x31{left:70.484372pt;}
.x44{left:71.734372pt;}
.x49{left:73.624997pt;}
.x48{left:75.796872pt;}
.x42{left:77.890622pt;}
.x51{left:79.999997pt;}
.x9a{left:82.234372pt;}
.xa1{left:84.109371pt;}
.xa0{left:85.390621pt;}
.x35{left:88.593746pt;}
.x23{left:89.609371pt;}
.x1e{left:93.624996pt;}
.x46{left:95.499996pt;}
.x2c{left:96.812496pt;}
.x43{left:97.812496pt;}
.x32{left:99.890621pt;}
.x3b{left:102.640621pt;}
.x56{left:104.906246pt;}
.x6{left:107.999996pt;}
.x13{left:116.656245pt;}
.xf{left:122.823627pt;}
.x53{left:130.156245pt;}
.x54{left:131.406245pt;}
.x55{left:132.843744pt;}
.x57{left:134.156244pt;}
.x8f{left:136.171869pt;}
.x6a{left:137.975072pt;}
.x96{left:139.328119pt;}
.x11{left:141.131127pt;}
.xa5{left:144.499994pt;}
.x7a{left:146.459008pt;}
.x68{left:154.999987pt;}
.x66{left:156.046868pt;}
.x61{left:163.203118pt;}
.x3c{left:167.234368pt;}
.x7e{left:168.562493pt;}
.x3{left:169.510774pt;}
.x5f{left:170.812493pt;}
.x9{left:173.849250pt;}
.x2{left:175.765500pt;}
.x58{left:178.437493pt;}
.x5{left:184.849250pt;}
.x52{left:187.926567pt;}
.x69{left:188.968742pt;}
.x4{left:198.055422pt;}
.x64{left:199.906242pt;}
.x67{left:200.906242pt;}
.x5d{left:202.171865pt;}
.x16{left:203.416008pt;}
.x8b{left:205.708039pt;}
.x92{left:208.857102pt;}
.x65{left:210.359371pt;}
.x63{left:212.390615pt;}
.xa2{left:214.024717pt;}
.x4d{left:226.341866pt;}
.x6f{left:231.929248pt;}
.x82{left:264.796869pt;}
.x86{left:266.874989pt;}
.x87{left:268.562489pt;}
.x84{left:270.781239pt;}
.x83{left:288.421868pt;}
.x89{left:290.515618pt;}
.x1{left:292.076337pt;}
.x81{left:294.421868pt;}
.x80{left:324.671866pt;}
.x7f{left:327.874986pt;}
.x88{left:329.562486pt;}
.x85{left:331.468736pt;}
.x8c{left:373.098423pt;}
.x93{left:379.396547pt;}
.xa3{left:389.731782pt;}
.x74{left:409.525452pt;}
.x7b{left:418.829983pt;}
.x4b{left:434.254084pt;}
.x14{left:446.990020pt;}
.x78{left:473.308652pt;}
.x8d{left:540.488809pt;}
.x94{left:549.935945pt;}
.x70{left:556.141641pt;}
.x5e{left:565.483624pt;}
.x5a{left:597.420144pt;}
.x5b{left:614.020143pt;}
.x8{left:666.703095pt;}
.x7{left:675.796845pt;}
.x8e{left:707.879203pt;}
.x95{left:720.475426pt;}
.x4e{left:728.877090pt;}
.x17{left:735.244961pt;}
.xa4{left:741.145921pt;}
.x75{left:760.644096pt;}
.x7c{left:779.610048pt;}
.xaa{left:782.824631pt;}
.xab{left:842.559009pt;}
.x6d{left:862.206844pt;}
.x90{left:875.269660pt;}
.x97{left:891.014875pt;}
.xac{left:893.090257pt;}
.xa6{left:916.853018pt;}
.x71{left:991.448791pt;}
.x60{left:996.499958pt;}
.x19{left:1023.499893pt;}
.x91{left:1042.660021pt;}
.x6c{left:1054.190964pt;}
.xa{left:1055.575892pt;}
.xb{left:1058.995668pt;}
.xd{left:1061.477620pt;}
.xe{left:1064.897300pt;}
.xa7{left:1092.560018pt;}
.x76{left:1111.762610pt;}
.x7d{left:1140.389968pt;}
.x5c{left:1175.315279pt;}
.x72{left:1180.660495pt;}
.x1b{left:1311.754953pt;}
.x8a{left:1314.267145pt;}
.x4f{left:1318.122921pt;}
.x9b{left:1339.106184pt;}
.xc{left:1351.906024pt;}
.x6e{left:1364.325575pt;}
.x79{left:1385.874950pt;}
.x62{left:1427.516357pt;}
.x9c{left:1446.696196pt;}
.x77{left:1462.881347pt;}
.x73{left:1500.781953pt;}
.x9d{left:1554.286175pt;}
.x1d{left:1600.009789pt;}
.x50{left:1612.745725pt;}
.x9e{left:1661.876187pt;}
.x9f{left:1769.466166pt;}
}




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