
    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_ffefc974debc38c61f2450f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;font-style:normal;font-weight: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_e0eba9f7be9dac1e5d0201c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight: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_369387e74b3d76a947d9930f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894000;font-style:normal;font-weight: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_5729615d1adec7e15a883b0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;font-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;}
}
.ws34{word-spacing:-35.112422px;}
.ws39{word-spacing:-19.546752px;}
.ws3e{word-spacing:-19.475021px;}
.ws33{word-spacing:-19.403290px;}
.ws2a{word-spacing:-19.044634px;}
.ws2d{word-spacing:-18.829440px;}
.ws45{word-spacing:-18.614246px;}
.ws1f{word-spacing:-18.542515px;}
.ws29{word-spacing:-17.968666px;}
.ws44{word-spacing:-17.681741px;}
.ws22{word-spacing:-17.610010px;}
.ws2b{word-spacing:-17.538278px;}
.ws56{word-spacing:-17.107891px;}
.ws21{word-spacing:-16.820966px;}
.ws23{word-spacing:-16.749235px;}
.ws41{word-spacing:-16.534042px;}
.ws19{word-spacing:-14.812493px;}
.ws3a{word-spacing:-14.669030px;}
.ws2{word-spacing:-14.597299px;}
.ws3d{word-spacing:-14.238643px;}
.ws48{word-spacing:-14.023450px;}
.wsc{word-spacing:-13.951718px;}
.ws24{word-spacing:-13.879987px;}
.ws16{word-spacing:-13.521331px;}
.ws13{word-spacing:-13.449600px;}
.ws12{word-spacing:-13.377869px;}
.ws1e{word-spacing:-13.090944px;}
.ws35{word-spacing:-12.947482px;}
.ws55{word-spacing:-12.875750px;}
.ws1d{word-spacing:-12.804019px;}
.wsf{word-spacing:-12.732288px;}
.ws51{word-spacing:-12.660557px;}
.ws1a{word-spacing:-12.445363px;}
.ws4c{word-spacing:-12.373632px;}
.ws27{word-spacing:-11.943245px;}
.ws6{word-spacing:-11.728051px;}
.wsd{word-spacing:-11.656320px;}
.ws49{word-spacing:-11.369395px;}
.ws59{word-spacing:-11.225933px;}
.wsa{word-spacing:-11.154202px;}
.ws5b{word-spacing:-11.082470px;}
.ws5c{word-spacing:-10.939008px;}
.ws4{word-spacing:-10.867277px;}
.ws1{word-spacing:-10.795546px;}
.ws1c{word-spacing:-10.580352px;}
.ws46{word-spacing:-10.365158px;}
.ws14{word-spacing:-10.149965px;}
.ws37{word-spacing:-9.863040px;}
.ws31{word-spacing:-9.647846px;}
.ws5a{word-spacing:-9.576115px;}
.ws50{word-spacing:-9.289190px;}
.ws20{word-spacing:-9.217459px;}
.ws4d{word-spacing:-9.002266px;}
.ws9{word-spacing:-8.930534px;}
.ws28{word-spacing:-8.643610px;}
.ws4e{word-spacing:-8.500147px;}
.ws4f{word-spacing:-8.428416px;}
.ws3c{word-spacing:-8.213222px;}
.ws43{word-spacing:-7.998029px;}
.ws4a{word-spacing:-7.567642px;}
.ws4b{word-spacing:-7.352448px;}
.ws52{word-spacing:-7.208986px;}
.ws2e{word-spacing:-7.137254px;}
.ws53{word-spacing:-6.993792px;}
.ws40{word-spacing:-6.778598px;}
.wsb{word-spacing:-6.563405px;}
.ws2f{word-spacing:-6.491674px;}
.ws3b{word-spacing:-5.917824px;}
.ws26{word-spacing:-5.630899px;}
.ws54{word-spacing:-5.272243px;}
.ws25{word-spacing:-5.200512px;}
.ws57{word-spacing:-5.128781px;}
.ws42{word-spacing:-4.770125px;}
.ws32{word-spacing:-4.698394px;}
.ws38{word-spacing:-4.411469px;}
.ws47{word-spacing:-4.339738px;}
.ws3f{word-spacing:-4.268006px;}
.ws5{word-spacing:-4.196275px;}
.ws30{word-spacing:-4.124544px;}
.ws10{word-spacing:-3.622426px;}
.ws1b{word-spacing:-3.478963px;}
.ws36{word-spacing:-3.407232px;}
.ws18{word-spacing:-2.833382px;}
.ws2c{word-spacing:-1.972608px;}
.ws3{word-spacing:-1.829146px;}
.ws11{word-spacing:-1.542221px;}
.ws17{word-spacing:-0.537984px;}
.ws58{word-spacing:-0.466253px;}
.ws15{word-spacing:0.000000px;}
.ws7{word-spacing:31.418178px;}
.wse{word-spacing:35.004826px;}
.ws8{word-spacing:35.076557px;}
.ws0{word-spacing:38.184300px;}
._14{margin-left:-8.966400px;}
._17{margin-left:-6.742733px;}
._a{margin-left:-5.666765px;}
._c{margin-left:-4.595351px;}
._0{margin-left:-3.223350px;}
._3{margin-left:-2.080205px;}
._8{margin-left:-1.075968px;}
._2{width:1.936742px;}
._1{width:3.099375px;}
._10{width:4.288939px;}
._16{width:17.502413px;}
._1b{width:19.008768px;}
._12{width:20.013005px;}
._1a{width:22.021478px;}
._9{width:23.451548px;}
._b{width:24.455785px;}
._15{width:26.755738px;}
._19{width:27.903437px;}
._1c{width:28.907674px;}
._7{width:30.342298px;}
._11{width:31.418266px;}
._4{width:32.637696px;}
._6{width:33.857126px;}
._e{width:35.220019px;}
._13{width:36.295987px;}
._18{width:37.371955px;}
._f{width:38.806579px;}
._5{width:39.954278px;}
._1d{width:41.101978px;}
._1e{width:45.477581px;}
._1f{width:50.498765px;}
._d{width:65.705779px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:63.168000px;}
.y19{bottom:108.000000px;}
.y57{bottom:131.314500px;}
.y18{bottom:134.890500px;}
.y56{bottom:158.206500px;}
.y39{bottom:167.797500px;}
.y17{bottom:175.672500px;}
.y74{bottom:175.797000px;}
.y55{bottom:185.097000px;}
.y38{bottom:194.688000px;}
.y16{bottom:202.563000px;}
.y73{bottom:208.806000px;}
.y54{bottom:211.987500px;}
.y37{bottom:227.595000px;}
.y72{bottom:235.696500px;}
.y15{bottom:243.343500px;}
.y53{bottom:253.822500px;}
.y36{bottom:260.502000px;}
.y88{bottom:264.274500px;}
.y71{bottom:268.707000px;}
.y14{bottom:270.235500px;}
.y52{bottom:280.713000px;}
.y35{bottom:287.392500px;}
.y87{bottom:291.166500px;}
.y70{bottom:295.597500px;}
.y13{bottom:311.016000px;}
.y51{bottom:315.076500px;}
.y34{bottom:320.299500px;}
.y6f{bottom:328.608000px;}
.y86{bottom:337.483500px;}
.y50{bottom:341.967000px;}
.y33{bottom:347.191500px;}
.y12{bottom:351.796500px;}
.y6e{bottom:355.498500px;}
.y85{bottom:364.374000px;}
.y4f{bottom:368.857500px;}
.y11{bottom:378.688500px;}
.y32{bottom:387.570000px;}
.y6d{bottom:388.507500px;}
.y4e{bottom:395.749500px;}
.y10{bottom:405.579000px;}
.y84{bottom:406.209000px;}
.y31{bottom:414.460500px;}
.y6c{bottom:415.398000px;}
.y4d{bottom:422.640000px;}
.yf{bottom:432.469500px;}
.y83{bottom:433.101000px;}
.y30{bottom:441.351000px;}
.y6b{bottom:442.290000px;}
.y4c{bottom:457.002000px;}
.y2f{bottom:468.241500px;}
.ye{bottom:473.251500px;}
.y82{bottom:474.934500px;}
.y6a{bottom:475.299000px;}
.y4b{bottom:483.894000px;}
.y2e{bottom:495.133500px;}
.y81{bottom:501.826500px;}
.y69{bottom:502.189500px;}
.yd{bottom:514.032000px;}
.y4a{bottom:518.256000px;}
.y68{bottom:529.081500px;}
.y2d{bottom:535.627500px;}
.yc{bottom:540.922500px;}
.y80{bottom:543.661500px;}
.y49{bottom:545.146500px;}
.y67{bottom:562.090500px;}
.y2c{bottom:562.518000px;}
.yb{bottom:567.814500px;}
.y7f{bottom:570.552000px;}
.y48{bottom:572.038500px;}
.y66{bottom:588.981000px;}
.y2b{bottom:589.408500px;}
.ya{bottom:594.705000px;}
.y7e{bottom:597.442500px;}
.y47{bottom:598.929000px;}
.y2a{bottom:616.299000px;}
.y9{bottom:621.595500px;}
.y65{bottom:621.991500px;}
.y46{bottom:625.819500px;}
.y7d{bottom:639.277500px;}
.y29{bottom:643.191000px;}
.y64{bottom:648.882000px;}
.y8{bottom:660.064500px;}
.y45{bottom:660.183000px;}
.y7c{bottom:666.168000px;}
.y28{bottom:670.081500px;}
.y63{bottom:681.892500px;}
.y44{bottom:687.073500px;}
.y7b{bottom:693.058500px;}
.y27{bottom:696.972000px;}
.y62{bottom:708.783000px;}
.y7{bottom:717.990000px;}
.y26{bottom:723.862500px;}
.y43{bottom:728.908500px;}
.y7a{bottom:739.377000px;}
.y61{bottom:741.792000px;}
.y6{bottom:744.880500px;}
.y25{bottom:750.754500px;}
.y42{bottom:755.799000px;}
.y79{bottom:766.267500px;}
.y60{bottom:768.684000px;}
.y5{bottom:771.771000px;}
.y24{bottom:777.645000px;}
.y41{bottom:782.689500px;}
.y78{bottom:793.158000px;}
.y5f{bottom:795.574500px;}
.y4{bottom:798.663000px;}
.y23{bottom:804.535500px;}
.y77{bottom:820.050000px;}
.y40{bottom:824.524500px;}
.y3{bottom:825.553500px;}
.y5e{bottom:828.583500px;}
.y22{bottom:843.004500px;}
.y76{bottom:846.940500px;}
.y3f{bottom:851.415000px;}
.y2{bottom:852.444000px;}
.y5d{bottom:855.474000px;}
.y75{bottom:873.831000px;}
.y3e{bottom:885.778500px;}
.y5c{bottom:888.484500px;}
.y21{bottom:900.721500px;}
.y3d{bottom:912.669000px;}
.y5b{bottom:915.375000px;}
.y20{bottom:927.613500px;}
.y5a{bottom:942.265500px;}
.y3c{bottom:947.032500px;}
.y1f{bottom:954.504000px;}
.y3b{bottom:973.923000px;}
.y59{bottom:975.276000px;}
.y1{bottom:980.593500px;}
.y1e{bottom:981.394500px;}
.y3a{bottom:1000.813500px;}
.y58{bottom:1002.166500px;}
.y1d{bottom:1008.285000px;}
.y1c{bottom:1035.177000px;}
.y1b{bottom:1062.067500px;}
.h2{height:53.870131px;}
.h3{height:60.426194px;}
.h1{height:86.534550px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:108.000000px;}
.x6{left:129.463500px;}
.x2{left:134.338500px;}
.x4{left:151.897500px;}
.x7{left:190.527000px;}
.x1{left:350.076000px;}
.x5{left:454.611000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws34{word-spacing:-31.211042pt;}
.ws39{word-spacing:-17.374891pt;}
.ws3e{word-spacing:-17.311130pt;}
.ws33{word-spacing:-17.247369pt;}
.ws2a{word-spacing:-16.928563pt;}
.ws2d{word-spacing:-16.737280pt;}
.ws45{word-spacing:-16.545997pt;}
.ws1f{word-spacing:-16.482236pt;}
.ws29{word-spacing:-15.972147pt;}
.ws44{word-spacing:-15.717103pt;}
.ws22{word-spacing:-15.653342pt;}
.ws2b{word-spacing:-15.589581pt;}
.ws56{word-spacing:-15.207014pt;}
.ws21{word-spacing:-14.951970pt;}
.ws23{word-spacing:-14.888209pt;}
.ws41{word-spacing:-14.696926pt;}
.ws19{word-spacing:-13.166660pt;}
.ws3a{word-spacing:-13.039138pt;}
.ws2{word-spacing:-12.975377pt;}
.ws3d{word-spacing:-12.656572pt;}
.ws48{word-spacing:-12.465289pt;}
.wsc{word-spacing:-12.401527pt;}
.ws24{word-spacing:-12.337766pt;}
.ws16{word-spacing:-12.018961pt;}
.ws13{word-spacing:-11.955200pt;}
.ws12{word-spacing:-11.891439pt;}
.ws1e{word-spacing:-11.636395pt;}
.ws35{word-spacing:-11.508873pt;}
.ws55{word-spacing:-11.445111pt;}
.ws1d{word-spacing:-11.381350pt;}
.wsf{word-spacing:-11.317589pt;}
.ws51{word-spacing:-11.253828pt;}
.ws1a{word-spacing:-11.062545pt;}
.ws4c{word-spacing:-10.998784pt;}
.ws27{word-spacing:-10.616218pt;}
.ws6{word-spacing:-10.424934pt;}
.wsd{word-spacing:-10.361173pt;}
.ws49{word-spacing:-10.106129pt;}
.ws59{word-spacing:-9.978607pt;}
.wsa{word-spacing:-9.914846pt;}
.ws5b{word-spacing:-9.851085pt;}
.ws5c{word-spacing:-9.723563pt;}
.ws4{word-spacing:-9.659802pt;}
.ws1{word-spacing:-9.596041pt;}
.ws1c{word-spacing:-9.404757pt;}
.ws46{word-spacing:-9.213474pt;}
.ws14{word-spacing:-9.022191pt;}
.ws37{word-spacing:-8.767147pt;}
.ws31{word-spacing:-8.575863pt;}
.ws5a{word-spacing:-8.512102pt;}
.ws50{word-spacing:-8.257058pt;}
.ws20{word-spacing:-8.193297pt;}
.ws4d{word-spacing:-8.002014pt;}
.ws9{word-spacing:-7.938253pt;}
.ws28{word-spacing:-7.683209pt;}
.ws4e{word-spacing:-7.555686pt;}
.ws4f{word-spacing:-7.491925pt;}
.ws3c{word-spacing:-7.300642pt;}
.ws43{word-spacing:-7.109359pt;}
.ws4a{word-spacing:-6.726793pt;}
.ws4b{word-spacing:-6.535509pt;}
.ws52{word-spacing:-6.407987pt;}
.ws2e{word-spacing:-6.344226pt;}
.ws53{word-spacing:-6.216704pt;}
.ws40{word-spacing:-6.025421pt;}
.wsb{word-spacing:-5.834138pt;}
.ws2f{word-spacing:-5.770377pt;}
.ws3b{word-spacing:-5.260288pt;}
.ws26{word-spacing:-5.005244pt;}
.ws54{word-spacing:-4.686438pt;}
.ws25{word-spacing:-4.622677pt;}
.ws57{word-spacing:-4.558916pt;}
.ws42{word-spacing:-4.240111pt;}
.ws32{word-spacing:-4.176350pt;}
.ws38{word-spacing:-3.921306pt;}
.ws47{word-spacing:-3.857545pt;}
.ws3f{word-spacing:-3.793783pt;}
.ws5{word-spacing:-3.730022pt;}
.ws30{word-spacing:-3.666261pt;}
.ws10{word-spacing:-3.219934pt;}
.ws1b{word-spacing:-3.092412pt;}
.ws36{word-spacing:-3.028651pt;}
.ws18{word-spacing:-2.518562pt;}
.ws2c{word-spacing:-1.753429pt;}
.ws3{word-spacing:-1.625907pt;}
.ws11{word-spacing:-1.370863pt;}
.ws17{word-spacing:-0.478208pt;}
.ws58{word-spacing:-0.414447pt;}
.ws15{word-spacing:0.000000pt;}
.ws7{word-spacing:27.927269pt;}
.wse{word-spacing:31.115401pt;}
.ws8{word-spacing:31.179162pt;}
.ws0{word-spacing:33.941600pt;}
._14{margin-left:-7.970133pt;}
._17{margin-left:-5.993540pt;}
._a{margin-left:-5.037124pt;}
._c{margin-left:-4.084756pt;}
._0{margin-left:-2.865200pt;}
._3{margin-left:-1.849071pt;}
._8{margin-left:-0.956416pt;}
._2{width:1.721549pt;}
._1{width:2.755000pt;}
._10{width:3.812390pt;}
._16{width:15.557700pt;}
._1b{width:16.896683pt;}
._12{width:17.789338pt;}
._1a{width:19.574647pt;}
._9{width:20.845821pt;}
._b{width:21.738476pt;}
._15{width:23.782878pt;}
._19{width:24.803055pt;}
._1c{width:25.695710pt;}
._7{width:26.970931pt;}
._11{width:27.927347pt;}
._4{width:29.011285pt;}
._6{width:30.095223pt;}
._e{width:31.306684pt;}
._13{width:32.263100pt;}
._18{width:33.219516pt;}
._f{width:34.494737pt;}
._5{width:35.514914pt;}
._1d{width:36.535091pt;}
._1e{width:40.424516pt;}
._1f{width:44.887791pt;}
._d{width:58.405137pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:56.149333pt;}
.y19{bottom:96.000000pt;}
.y57{bottom:116.724000pt;}
.y18{bottom:119.902667pt;}
.y56{bottom:140.628000pt;}
.y39{bottom:149.153333pt;}
.y17{bottom:156.153333pt;}
.y74{bottom:156.264000pt;}
.y55{bottom:164.530667pt;}
.y38{bottom:173.056000pt;}
.y16{bottom:180.056000pt;}
.y73{bottom:185.605333pt;}
.y54{bottom:188.433333pt;}
.y37{bottom:202.306667pt;}
.y72{bottom:209.508000pt;}
.y15{bottom:216.305333pt;}
.y53{bottom:225.620000pt;}
.y36{bottom:231.557333pt;}
.y88{bottom:234.910667pt;}
.y71{bottom:238.850667pt;}
.y14{bottom:240.209333pt;}
.y52{bottom:249.522667pt;}
.y35{bottom:255.460000pt;}
.y87{bottom:258.814667pt;}
.y70{bottom:262.753333pt;}
.y13{bottom:276.458667pt;}
.y51{bottom:280.068000pt;}
.y34{bottom:284.710667pt;}
.y6f{bottom:292.096000pt;}
.y86{bottom:299.985333pt;}
.y50{bottom:303.970667pt;}
.y33{bottom:308.614667pt;}
.y12{bottom:312.708000pt;}
.y6e{bottom:315.998667pt;}
.y85{bottom:323.888000pt;}
.y4f{bottom:327.873333pt;}
.y11{bottom:336.612000pt;}
.y32{bottom:344.506667pt;}
.y6d{bottom:345.340000pt;}
.y4e{bottom:351.777333pt;}
.y10{bottom:360.514667pt;}
.y84{bottom:361.074667pt;}
.y31{bottom:368.409333pt;}
.y6c{bottom:369.242667pt;}
.y4d{bottom:375.680000pt;}
.yf{bottom:384.417333pt;}
.y83{bottom:384.978667pt;}
.y30{bottom:392.312000pt;}
.y6b{bottom:393.146667pt;}
.y4c{bottom:406.224000pt;}
.y2f{bottom:416.214667pt;}
.ye{bottom:420.668000pt;}
.y82{bottom:422.164000pt;}
.y6a{bottom:422.488000pt;}
.y4b{bottom:430.128000pt;}
.y2e{bottom:440.118667pt;}
.y81{bottom:446.068000pt;}
.y69{bottom:446.390667pt;}
.yd{bottom:456.917333pt;}
.y4a{bottom:460.672000pt;}
.y68{bottom:470.294667pt;}
.y2d{bottom:476.113333pt;}
.yc{bottom:480.820000pt;}
.y80{bottom:483.254667pt;}
.y49{bottom:484.574667pt;}
.y67{bottom:499.636000pt;}
.y2c{bottom:500.016000pt;}
.yb{bottom:504.724000pt;}
.y7f{bottom:507.157333pt;}
.y48{bottom:508.478667pt;}
.y66{bottom:523.538667pt;}
.y2b{bottom:523.918667pt;}
.ya{bottom:528.626667pt;}
.y7e{bottom:531.060000pt;}
.y47{bottom:532.381333pt;}
.y2a{bottom:547.821333pt;}
.y9{bottom:552.529333pt;}
.y65{bottom:552.881333pt;}
.y46{bottom:556.284000pt;}
.y7d{bottom:568.246667pt;}
.y29{bottom:571.725333pt;}
.y64{bottom:576.784000pt;}
.y8{bottom:586.724000pt;}
.y45{bottom:586.829333pt;}
.y7c{bottom:592.149333pt;}
.y28{bottom:595.628000pt;}
.y63{bottom:606.126667pt;}
.y44{bottom:610.732000pt;}
.y7b{bottom:616.052000pt;}
.y27{bottom:619.530667pt;}
.y62{bottom:630.029333pt;}
.y7{bottom:638.213333pt;}
.y26{bottom:643.433333pt;}
.y43{bottom:647.918667pt;}
.y7a{bottom:657.224000pt;}
.y61{bottom:659.370667pt;}
.y6{bottom:662.116000pt;}
.y25{bottom:667.337333pt;}
.y42{bottom:671.821333pt;}
.y79{bottom:681.126667pt;}
.y60{bottom:683.274667pt;}
.y5{bottom:686.018667pt;}
.y24{bottom:691.240000pt;}
.y41{bottom:695.724000pt;}
.y78{bottom:705.029333pt;}
.y5f{bottom:707.177333pt;}
.y4{bottom:709.922667pt;}
.y23{bottom:715.142667pt;}
.y77{bottom:728.933333pt;}
.y40{bottom:732.910667pt;}
.y3{bottom:733.825333pt;}
.y5e{bottom:736.518667pt;}
.y22{bottom:749.337333pt;}
.y76{bottom:752.836000pt;}
.y3f{bottom:756.813333pt;}
.y2{bottom:757.728000pt;}
.y5d{bottom:760.421333pt;}
.y75{bottom:776.738667pt;}
.y3e{bottom:787.358667pt;}
.y5c{bottom:789.764000pt;}
.y21{bottom:800.641333pt;}
.y3d{bottom:811.261333pt;}
.y5b{bottom:813.666667pt;}
.y20{bottom:824.545333pt;}
.y5a{bottom:837.569333pt;}
.y3c{bottom:841.806667pt;}
.y1f{bottom:848.448000pt;}
.y3b{bottom:865.709333pt;}
.y59{bottom:866.912000pt;}
.y1{bottom:871.638667pt;}
.y1e{bottom:872.350667pt;}
.y3a{bottom:889.612000pt;}
.y58{bottom:890.814667pt;}
.y1d{bottom:896.253333pt;}
.y1c{bottom:920.157333pt;}
.y1b{bottom:944.060000pt;}
.h2{height:47.884561pt;}
.h3{height:53.712173pt;}
.h1{height:76.919600pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.000000pt;}
.x6{left:115.078667pt;}
.x2{left:119.412000pt;}
.x4{left:135.020000pt;}
.x7{left:169.357333pt;}
.x1{left:311.178667pt;}
.x5{left:404.098667pt;}
}




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