
    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_db684b65a12afb65bb8ec063.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;font-style:normal;font-weight: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_d849db1d9cbbb9553b9b91fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight: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_0fc71efc21d9b391cdde2167.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;font-style:normal;font-weight: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_3f97a99a5feda5da62487959.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;font-style:normal;font-weight: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_7dbccbc2fb0baa197da95467.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.ls19{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.324600px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.453600px;}
.ls4{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.ls17{letter-spacing:1.152000px;}
.lsd{letter-spacing:2.448000px;}
.ls9{letter-spacing:3.900000px;}
.ls0{letter-spacing:4.200000px;}
.ls18{letter-spacing:6.000000px;}
.ls3{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls1{letter-spacing:28.860000px;}
.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;}
}
.ws1{word-spacing:-50.778000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.ws3{word-spacing:-12.139200px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-20.562000px;}
._13{margin-left:-16.014000px;}
._e{margin-left:-13.896000px;}
._4{margin-left:-10.506000px;}
._1{margin-left:-8.034000px;}
._d{margin-left:-7.020000px;}
._7{margin-left:-5.712000px;}
._0{margin-left:-3.906000px;}
._5{margin-left:-2.088000px;}
._10{margin-left:-1.008000px;}
._b{width:1.044000px;}
._8{width:2.232000px;}
._c{width:3.264000px;}
._6{width:4.416000px;}
._2{width:5.460000px;}
._3{width:7.242000px;}
._11{width:8.640000px;}
._9{width:9.720000px;}
._a{width:11.016000px;}
._12{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.314150px;}
.y39{bottom:76.337550px;}
.y38{bottom:145.681200px;}
.y5d{bottom:145.863150px;}
.y19{bottom:146.379750px;}
.y5c{bottom:162.363150px;}
.y37{bottom:166.831200px;}
.y18{bottom:167.979750px;}
.y5b{bottom:178.863150px;}
.y9d{bottom:184.808550px;}
.y36{bottom:187.981200px;}
.y17{bottom:189.579750px;}
.y9c{bottom:206.408550px;}
.y7e{bottom:207.292500px;}
.y16{bottom:211.179750px;}
.y35{bottom:217.635150px;}
.y5a{bottom:222.730500px;}
.y9b{bottom:228.008550px;}
.y7d{bottom:229.486500px;}
.y15{bottom:232.779750px;}
.y59{bottom:244.474500px;}
.y9a{bottom:249.608550px;}
.y7c{bottom:251.680500px;}
.y14{bottom:254.379750px;}
.y58{bottom:266.668500px;}
.y99{bottom:271.208550px;}
.y7b{bottom:273.874500px;}
.y13{bottom:275.979750px;}
.y57{bottom:288.862500px;}
.y98{bottom:292.808550px;}
.y7a{bottom:296.068500px;}
.y34{bottom:296.913150px;}
.y12{bottom:297.579750px;}
.y56{bottom:310.912500px;}
.y97{bottom:314.408550px;}
.y79{bottom:318.262500px;}
.y33{bottom:318.657150px;}
.y11{bottom:319.179750px;}
.y55{bottom:332.962500px;}
.y96{bottom:336.008550px;}
.y32{bottom:340.401150px;}
.y78{bottom:340.468500px;}
.y10{bottom:340.779750px;}
.y54{bottom:355.012500px;}
.y95{bottom:357.608550px;}
.y31{bottom:362.145150px;}
.y77{bottom:362.212500px;}
.yf{bottom:362.379750px;}
.y53{bottom:377.062500px;}
.y94{bottom:379.208550px;}
.y30{bottom:383.889150px;}
.ye{bottom:383.979750px;}
.y76{bottom:383.992500px;}
.y52{bottom:399.112500px;}
.y93{bottom:400.808550px;}
.y2f{bottom:405.633150px;}
.y75{bottom:405.736500px;}
.yd{bottom:414.083550px;}
.y51{bottom:421.162500px;}
.y92{bottom:422.408550px;}
.y2e{bottom:427.377150px;}
.y74{bottom:427.480500px;}
.y50{bottom:443.212500px;}
.y91{bottom:444.008550px;}
.y2d{bottom:449.121150px;}
.y73{bottom:449.224500px;}
.y4f{bottom:465.262500px;}
.y90{bottom:465.608550px;}
.yab{bottom:467.812500px;}
.y2c{bottom:470.865150px;}
.y72{bottom:470.968500px;}
.yaa{bottom:485.812500px;}
.y8f{bottom:487.208550px;}
.y4e{bottom:487.312500px;}
.y2b{bottom:492.609150px;}
.y71{bottom:492.712500px;}
.yc{bottom:493.883550px;}
.ya9{bottom:503.812500px;}
.y8e{bottom:508.808550px;}
.y4d{bottom:509.362500px;}
.y2a{bottom:514.353150px;}
.y70{bottom:514.486500px;}
.yb{bottom:515.483550px;}
.ya8{bottom:521.812500px;}
.y8d{bottom:530.408550px;}
.y4c{bottom:531.412500px;}
.y29{bottom:536.097150px;}
.y6f{bottom:536.230500px;}
.ya{bottom:537.083550px;}
.y8c{bottom:552.008550px;}
.y4b{bottom:553.462500px;}
.y28{bottom:557.841150px;}
.y6e{bottom:557.974500px;}
.y9{bottom:558.683550px;}
.y8b{bottom:573.608550px;}
.y4a{bottom:575.512500px;}
.y27{bottom:579.585150px;}
.y6d{bottom:579.718500px;}
.y8{bottom:580.283550px;}
.ya7{bottom:591.112500px;}
.y8a{bottom:595.208550px;}
.y49{bottom:597.562500px;}
.y6c{bottom:601.462500px;}
.y7{bottom:601.883550px;}
.y26{bottom:609.839100px;}
.y89{bottom:616.808550px;}
.y48{bottom:619.612500px;}
.y6b{bottom:623.296500px;}
.ya6{bottom:625.312500px;}
.y25{bottom:630.989100px;}
.y6{bottom:631.987500px;}
.y88{bottom:638.408550px;}
.y47{bottom:641.662500px;}
.y6a{bottom:645.040500px;}
.ya5{bottom:646.912500px;}
.y87{bottom:660.008550px;}
.y46{bottom:663.712500px;}
.y69{bottom:666.784500px;}
.ya4{bottom:668.512500px;}
.y86{bottom:681.608550px;}
.y45{bottom:685.762500px;}
.y68{bottom:688.528500px;}
.ya3{bottom:690.112500px;}
.y85{bottom:703.208550px;}
.y44{bottom:707.812500px;}
.y24{bottom:710.249100px;}
.y67{bottom:710.272500px;}
.ya2{bottom:711.712500px;}
.y5{bottom:716.587500px;}
.y84{bottom:724.808550px;}
.y43{bottom:729.862500px;}
.y23{bottom:731.993100px;}
.y66{bottom:732.016500px;}
.ya1{bottom:733.312500px;}
.y4{bottom:738.187500px;}
.y42{bottom:751.912500px;}
.y22{bottom:753.737100px;}
.y65{bottom:753.760500px;}
.y83{bottom:754.912500px;}
.y3{bottom:768.787500px;}
.y41{bottom:773.962500px;}
.y21{bottom:775.481100px;}
.y64{bottom:775.504500px;}
.ya0{bottom:776.512500px;}
.y40{bottom:796.012500px;}
.y20{bottom:797.225100px;}
.y63{bottom:797.248500px;}
.y9f{bottom:798.112500px;}
.y3f{bottom:818.062500px;}
.y1f{bottom:818.969100px;}
.y62{bottom:818.992500px;}
.y9e{bottom:819.712500px;}
.y3e{bottom:840.106500px;}
.y1e{bottom:840.713100px;}
.y61{bottom:840.736500px;}
.y82{bottom:841.312500px;}
.y3d{bottom:862.156500px;}
.y1d{bottom:862.457100px;}
.y60{bottom:862.480500px;}
.y81{bottom:862.912500px;}
.y1c{bottom:884.201100px;}
.y3c{bottom:884.206500px;}
.y5f{bottom:884.224500px;}
.y80{bottom:884.512500px;}
.y1b{bottom:905.945100px;}
.y5e{bottom:905.968500px;}
.y7f{bottom:906.112500px;}
.y3b{bottom:906.256500px;}
.y2{bottom:926.691450px;}
.y1a{bottom:927.689100px;}
.y3a{bottom:927.712500px;}
.h9{height:26.199902px;}
.hc{height:30.568359px;}
.h3{height:35.663086px;}
.h2{height:39.990234px;}
.h7{height:40.757812px;}
.h8{height:47.988281px;}
.hd{height:48.399902px;}
.ha{height:50.947266px;}
.h6{height:61.136719px;}
.hb{height:63.322031px;}
.h4{height:66.231445px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.x1{left:97.795350px;}
.x3{left:118.999350px;}
.x2{left:150.670350px;}
.xb{left:164.722800px;}
.xa{left:197.339700px;}
.x7{left:204.938100px;}
.xc{left:268.892550px;}
.x9{left:332.688450px;}
.x8{left:354.643050px;}
.x4{left:370.477200px;}
.xd{left:518.943600px;}
.x5{left:575.539350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.288533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.403200pt;}
.ls4{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls17{letter-spacing:1.024000pt;}
.lsd{letter-spacing:2.176000pt;}
.ls9{letter-spacing:3.466667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls18{letter-spacing:5.333333pt;}
.ls3{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls1{letter-spacing:25.653333pt;}
.ws1{word-spacing:-45.136000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws3{word-spacing:-10.790400pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-18.277333pt;}
._13{margin-left:-14.234667pt;}
._e{margin-left:-12.352000pt;}
._4{margin-left:-9.338667pt;}
._1{margin-left:-7.141333pt;}
._d{margin-left:-6.240000pt;}
._7{margin-left:-5.077333pt;}
._0{margin-left:-3.472000pt;}
._5{margin-left:-1.856000pt;}
._10{margin-left:-0.896000pt;}
._b{width:0.928000pt;}
._8{width:1.984000pt;}
._c{width:2.901333pt;}
._6{width:3.925333pt;}
._2{width:4.853333pt;}
._3{width:6.437333pt;}
._11{width:7.680000pt;}
._9{width:8.640000pt;}
._a{width:9.792000pt;}
._12{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.834800pt;}
.y39{bottom:67.855600pt;}
.y38{bottom:129.494400pt;}
.y5d{bottom:129.656133pt;}
.y19{bottom:130.115333pt;}
.y5c{bottom:144.322800pt;}
.y37{bottom:148.294400pt;}
.y18{bottom:149.315333pt;}
.y5b{bottom:158.989467pt;}
.y9d{bottom:164.274267pt;}
.y36{bottom:167.094400pt;}
.y17{bottom:168.515333pt;}
.y9c{bottom:183.474267pt;}
.y7e{bottom:184.260000pt;}
.y16{bottom:187.715333pt;}
.y35{bottom:193.453467pt;}
.y5a{bottom:197.982667pt;}
.y9b{bottom:202.674267pt;}
.y7d{bottom:203.988000pt;}
.y15{bottom:206.915333pt;}
.y59{bottom:217.310667pt;}
.y9a{bottom:221.874267pt;}
.y7c{bottom:223.716000pt;}
.y14{bottom:226.115333pt;}
.y58{bottom:237.038667pt;}
.y99{bottom:241.074267pt;}
.y7b{bottom:243.444000pt;}
.y13{bottom:245.315333pt;}
.y57{bottom:256.766667pt;}
.y98{bottom:260.274267pt;}
.y7a{bottom:263.172000pt;}
.y34{bottom:263.922800pt;}
.y12{bottom:264.515333pt;}
.y56{bottom:276.366667pt;}
.y97{bottom:279.474267pt;}
.y79{bottom:282.900000pt;}
.y33{bottom:283.250800pt;}
.y11{bottom:283.715333pt;}
.y55{bottom:295.966667pt;}
.y96{bottom:298.674267pt;}
.y32{bottom:302.578800pt;}
.y78{bottom:302.638667pt;}
.y10{bottom:302.915333pt;}
.y54{bottom:315.566667pt;}
.y95{bottom:317.874267pt;}
.y31{bottom:321.906800pt;}
.y77{bottom:321.966667pt;}
.yf{bottom:322.115333pt;}
.y53{bottom:335.166667pt;}
.y94{bottom:337.074267pt;}
.y30{bottom:341.234800pt;}
.ye{bottom:341.315333pt;}
.y76{bottom:341.326667pt;}
.y52{bottom:354.766667pt;}
.y93{bottom:356.274267pt;}
.y2f{bottom:360.562800pt;}
.y75{bottom:360.654667pt;}
.yd{bottom:368.074267pt;}
.y51{bottom:374.366667pt;}
.y92{bottom:375.474267pt;}
.y2e{bottom:379.890800pt;}
.y74{bottom:379.982667pt;}
.y50{bottom:393.966667pt;}
.y91{bottom:394.674267pt;}
.y2d{bottom:399.218800pt;}
.y73{bottom:399.310667pt;}
.y4f{bottom:413.566667pt;}
.y90{bottom:413.874267pt;}
.yab{bottom:415.833333pt;}
.y2c{bottom:418.546800pt;}
.y72{bottom:418.638667pt;}
.yaa{bottom:431.833333pt;}
.y8f{bottom:433.074267pt;}
.y4e{bottom:433.166667pt;}
.y2b{bottom:437.874800pt;}
.y71{bottom:437.966667pt;}
.yc{bottom:439.007600pt;}
.ya9{bottom:447.833333pt;}
.y8e{bottom:452.274267pt;}
.y4d{bottom:452.766667pt;}
.y2a{bottom:457.202800pt;}
.y70{bottom:457.321333pt;}
.yb{bottom:458.207600pt;}
.ya8{bottom:463.833333pt;}
.y8d{bottom:471.474267pt;}
.y4c{bottom:472.366667pt;}
.y29{bottom:476.530800pt;}
.y6f{bottom:476.649333pt;}
.ya{bottom:477.407600pt;}
.y8c{bottom:490.674267pt;}
.y4b{bottom:491.966667pt;}
.y28{bottom:495.858800pt;}
.y6e{bottom:495.977333pt;}
.y9{bottom:496.607600pt;}
.y8b{bottom:509.874267pt;}
.y4a{bottom:511.566667pt;}
.y27{bottom:515.186800pt;}
.y6d{bottom:515.305333pt;}
.y8{bottom:515.807600pt;}
.ya7{bottom:525.433333pt;}
.y8a{bottom:529.074267pt;}
.y49{bottom:531.166667pt;}
.y6c{bottom:534.633333pt;}
.y7{bottom:535.007600pt;}
.y26{bottom:542.079200pt;}
.y89{bottom:548.274267pt;}
.y48{bottom:550.766667pt;}
.y6b{bottom:554.041333pt;}
.ya6{bottom:555.833333pt;}
.y25{bottom:560.879200pt;}
.y6{bottom:561.766667pt;}
.y88{bottom:567.474267pt;}
.y47{bottom:570.366667pt;}
.y6a{bottom:573.369333pt;}
.ya5{bottom:575.033333pt;}
.y87{bottom:586.674267pt;}
.y46{bottom:589.966667pt;}
.y69{bottom:592.697333pt;}
.ya4{bottom:594.233333pt;}
.y86{bottom:605.874267pt;}
.y45{bottom:609.566667pt;}
.y68{bottom:612.025333pt;}
.ya3{bottom:613.433333pt;}
.y85{bottom:625.074267pt;}
.y44{bottom:629.166667pt;}
.y24{bottom:631.332533pt;}
.y67{bottom:631.353333pt;}
.ya2{bottom:632.633333pt;}
.y5{bottom:636.966667pt;}
.y84{bottom:644.274267pt;}
.y43{bottom:648.766667pt;}
.y23{bottom:650.660533pt;}
.y66{bottom:650.681333pt;}
.ya1{bottom:651.833333pt;}
.y4{bottom:656.166667pt;}
.y42{bottom:668.366667pt;}
.y22{bottom:669.988533pt;}
.y65{bottom:670.009333pt;}
.y83{bottom:671.033333pt;}
.y3{bottom:683.366667pt;}
.y41{bottom:687.966667pt;}
.y21{bottom:689.316533pt;}
.y64{bottom:689.337333pt;}
.ya0{bottom:690.233333pt;}
.y40{bottom:707.566667pt;}
.y20{bottom:708.644533pt;}
.y63{bottom:708.665333pt;}
.y9f{bottom:709.433333pt;}
.y3f{bottom:727.166667pt;}
.y1f{bottom:727.972533pt;}
.y62{bottom:727.993333pt;}
.y9e{bottom:728.633333pt;}
.y3e{bottom:746.761333pt;}
.y1e{bottom:747.300533pt;}
.y61{bottom:747.321333pt;}
.y82{bottom:747.833333pt;}
.y3d{bottom:766.361333pt;}
.y1d{bottom:766.628533pt;}
.y60{bottom:766.649333pt;}
.y81{bottom:767.033333pt;}
.y1c{bottom:785.956533pt;}
.y3c{bottom:785.961333pt;}
.y5f{bottom:785.977333pt;}
.y80{bottom:786.233333pt;}
.y1b{bottom:805.284533pt;}
.y5e{bottom:805.305333pt;}
.y7f{bottom:805.433333pt;}
.y3b{bottom:805.561333pt;}
.y2{bottom:823.725733pt;}
.y1a{bottom:824.612533pt;}
.y3a{bottom:824.633333pt;}
.h9{height:23.288802pt;}
.hc{height:27.171875pt;}
.h3{height:31.700521pt;}
.h2{height:35.546875pt;}
.h7{height:36.229167pt;}
.h8{height:42.656250pt;}
.hd{height:43.022135pt;}
.ha{height:45.286458pt;}
.h6{height:54.343750pt;}
.hb{height:56.286250pt;}
.h4{height:58.872396pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.x1{left:86.929200pt;}
.x3{left:105.777200pt;}
.x2{left:133.929200pt;}
.xb{left:146.420267pt;}
.xa{left:175.413067pt;}
.x7{left:182.167200pt;}
.xc{left:239.015600pt;}
.x9{left:295.723067pt;}
.x8{left:315.238267pt;}
.x4{left:329.313067pt;}
.xd{left:461.283200pt;}
.x5{left:511.590533pt;}
}




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