
    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_02d7b1f406745e5ad240fbcc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.858398;font-style:normal;font-weight: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_1271a53afc1360787bad422e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.863281;font-style:normal;font-weight: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_a7030123dd92f340924e0960.woff')format("woff");}.ff3{font-family:ff3;line-height:0.690918;font-style:normal;font-weight: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_4db3267222319654b4cfe469.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-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;}
}
.ws5{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws45{word-spacing:-39.157200px;}
.ws2{word-spacing:-38.870100px;}
.ws30{word-spacing:-38.651400px;}
.ws11{word-spacing:-38.430000px;}
.ws4{word-spacing:-38.422200px;}
.ws1c{word-spacing:-38.145600px;}
.ws22{word-spacing:-38.142000px;}
.ws4e{word-spacing:-38.075100px;}
.ws50{word-spacing:-37.944000px;}
.ws25{word-spacing:-37.936800px;}
.ws2f{word-spacing:-37.446000px;}
.ws6{word-spacing:-37.440000px;}
.ws7{word-spacing:-37.429200px;}
.ws4d{word-spacing:-37.421700px;}
.ws39{word-spacing:-37.218000px;}
.ws26{word-spacing:-37.203600px;}
.ws38{word-spacing:-36.504000px;}
.ws35{word-spacing:-36.271800px;}
.ws37{word-spacing:-35.995200px;}
.ws42{word-spacing:-35.776800px;}
.ws2e{word-spacing:-35.773200px;}
.ws20{word-spacing:-34.342800px;}
.ws8{word-spacing:-34.340400px;}
.ws1a{word-spacing:-34.333200px;}
.ws2a{word-spacing:-33.624000px;}
.ws40{word-spacing:-33.617700px;}
.ws9{word-spacing:-33.609600px;}
.ws3{word-spacing:-33.547800px;}
.ws2c{word-spacing:-32.901000px;}
.wsb{word-spacing:-32.895600px;}
.ws14{word-spacing:-32.173200px;}
.ws55{word-spacing:-30.364200px;}
.ws28{word-spacing:-30.016800px;}
.ws54{word-spacing:-28.791600px;}
.ws2b{word-spacing:-28.584000px;}
.ws3a{word-spacing:-28.359000px;}
.ws15{word-spacing:-27.847800px;}
.wse{word-spacing:-27.358200px;}
.ws27{word-spacing:-27.354000px;}
.ws34{word-spacing:-27.343800px;}
.ws18{word-spacing:-27.139200px;}
.wsf{word-spacing:-26.631000px;}
.ws4f{word-spacing:-26.424000px;}
.ws29{word-spacing:-26.415000px;}
.ws3e{word-spacing:-25.486800px;}
.ws3b{word-spacing:-23.040000px;}
.ws10{word-spacing:-23.023800px;}
.ws4c{word-spacing:-23.022000px;}
.ws36{word-spacing:-22.824000px;}
.ws31{word-spacing:-22.801800px;}
.ws49{word-spacing:-22.098600px;}
.ws16{word-spacing:-22.095000px;}
.ws52{word-spacing:-21.384000px;}
.wsd{word-spacing:-20.664000px;}
.ws46{word-spacing:-19.933200px;}
.ws3d{word-spacing:-18.714600px;}
.ws17{word-spacing:-18.495000px;}
.ws43{word-spacing:-18.288000px;}
.ws19{word-spacing:-18.286200px;}
.ws1f{word-spacing:-17.280000px;}
.ws2d{word-spacing:-17.271000px;}
.ws32{word-spacing:-17.059200px;}
.wsa{word-spacing:-12.960000px;}
.ws44{word-spacing:-12.233400px;}
.ws3c{word-spacing:-12.223800px;}
.ws33{word-spacing:-12.015000px;}
.wsc{word-spacing:-11.520000px;}
.ws3f{word-spacing:-11.286000px;}
.ws1d{word-spacing:-10.578600px;}
.ws21{word-spacing:-9.135000px;}
.ws12{word-spacing:-8.851500px;}
.ws13{word-spacing:-8.417700px;}
.ws47{word-spacing:-6.986400px;}
.ws41{word-spacing:-6.471000px;}
.ws24{word-spacing:-6.253200px;}
.ws48{word-spacing:-5.527800px;}
.ws1b{word-spacing:-0.711900px;}
.ws23{word-spacing:3.823500px;}
.ws1e{word-spacing:6.717600px;}
.ws4a{word-spacing:9.384000px;}
.ws4b{word-spacing:11.013600px;}
.ws53{word-spacing:14.616000px;}
.ws51{word-spacing:16.776000px;}
._1b{margin-left:-2.228100px;}
._0{margin-left:-1.110600px;}
._4{width:1.096800px;}
._1{width:18.144000px;}
._18{width:19.504200px;}
._15{width:20.604000px;}
._17{width:21.675000px;}
._5{width:22.762200px;}
._6{width:23.971200px;}
._c{width:25.189200px;}
._16{width:27.492000px;}
._d{width:29.130600px;}
._9{width:30.151800px;}
._a{width:31.365000px;}
._b{width:34.743600px;}
._2{width:36.560100px;}
._e{width:38.934000px;}
._12{width:40.348800px;}
._1c{width:43.079400px;}
._7{width:44.136000px;}
._8{width:45.432000px;}
._10{width:47.149200px;}
._13{width:48.781800px;}
._1d{width:50.895000px;}
._21{width:54.000000px;}
._1a{width:55.345200px;}
._14{width:60.832500px;}
._11{width:63.914400px;}
._1f{width:66.384000px;}
._20{width:68.433000px;}
._23{width:72.030600px;}
._22{width:73.923300px;}
._19{width:88.825800px;}
._f{width:91.731000px;}
._1e{width:102.088500px;}
._3{width:287.934000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y32{bottom:97.996500px;}
.y31{bottom:118.696500px;}
.y30{bottom:139.215000px;}
.y2f{bottom:159.915000px;}
.y2e{bottom:180.615000px;}
.y2d{bottom:201.315000px;}
.y2c{bottom:222.015000px;}
.y59{bottom:225.436500px;}
.y2b{bottom:242.715000px;}
.y58{bottom:246.136500px;}
.y2a{bottom:263.415000px;}
.y57{bottom:281.775000px;}
.y29{bottom:284.115000px;}
.y56{bottom:302.475000px;}
.y28{bottom:304.815000px;}
.y55{bottom:323.175000px;}
.y27{bottom:325.515000px;}
.y54{bottom:358.815000px;}
.y26{bottom:361.336500px;}
.y53{bottom:379.515000px;}
.y25{bottom:382.036500px;}
.y24{bottom:402.736500px;}
.y52{bottom:415.336500px;}
.y51{bottom:436.036500px;}
.y23{bottom:438.375000px;}
.y22{bottom:459.075000px;}
.y50{bottom:471.675000px;}
.y21{bottom:479.775000px;}
.y4f{bottom:492.375000px;}
.y20{bottom:500.475000px;}
.y1f{bottom:521.175000px;}
.y4e{bottom:528.015000px;}
.y1e{bottom:541.875000px;}
.y4d{bottom:563.836500px;}
.y1d{bottom:577.515000px;}
.y4c{bottom:584.536500px;}
.y1c{bottom:598.215000px;}
.y4b{bottom:605.236500px;}
.y1b{bottom:618.915000px;}
.y4a{bottom:625.936500px;}
.y1a{bottom:639.615000px;}
.y49{bottom:646.636500px;}
.y19{bottom:660.315000px;}
.y48{bottom:667.336500px;}
.y18{bottom:681.015000px;}
.y47{bottom:688.036500px;}
.y17{bottom:701.715000px;}
.y46{bottom:708.736500px;}
.y16{bottom:722.415000px;}
.y45{bottom:744.375000px;}
.y15{bottom:764.175000px;}
.y44{bottom:765.075000px;}
.y14{bottom:784.875000px;}
.y43{bottom:785.775000px;}
.y13{bottom:805.575000px;}
.y42{bottom:806.475000px;}
.y41{bottom:827.175000px;}
.y12{bottom:847.336500px;}
.y40{bottom:847.875000px;}
.y11{bottom:868.036500px;}
.y3f{bottom:868.575000px;}
.y10{bottom:888.736500px;}
.y3e{bottom:889.275000px;}
.yf{bottom:909.436500px;}
.y3d{bottom:909.975000px;}
.ye{bottom:930.136500px;}
.y3c{bottom:930.675000px;}
.yd{bottom:950.836500px;}
.y3b{bottom:951.375000px;}
.yc{bottom:971.536500px;}
.y3a{bottom:972.075000px;}
.yb{bottom:992.236500px;}
.y39{bottom:992.775000px;}
.ya{bottom:1012.936500px;}
.y38{bottom:1013.475000px;}
.y9{bottom:1033.636500px;}
.y37{bottom:1034.175000px;}
.y8{bottom:1054.336500px;}
.y36{bottom:1054.875000px;}
.y35{bottom:1075.575000px;}
.y7{bottom:1095.915000px;}
.y34{bottom:1096.275000px;}
.y33{bottom:1116.975000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h6{height:48.761719px;}
.h3{height:48.796875px;}
.h5{height:49.304150px;}
.h7{height:50.027344px;}
.h2{height:57.133008px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:127.620000px;}
.x5{left:130.860000px;}
.x9{left:136.620000px;}
.x3{left:145.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x8{left:180.720000px;}
.x4{left:470.025000px;}
.x6{left:677.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws45{word-spacing:-34.806400pt;}
.ws2{word-spacing:-34.551200pt;}
.ws30{word-spacing:-34.356800pt;}
.ws11{word-spacing:-34.160000pt;}
.ws4{word-spacing:-34.153067pt;}
.ws1c{word-spacing:-33.907200pt;}
.ws22{word-spacing:-33.904000pt;}
.ws4e{word-spacing:-33.844533pt;}
.ws50{word-spacing:-33.728000pt;}
.ws25{word-spacing:-33.721600pt;}
.ws2f{word-spacing:-33.285333pt;}
.ws6{word-spacing:-33.280000pt;}
.ws7{word-spacing:-33.270400pt;}
.ws4d{word-spacing:-33.263733pt;}
.ws39{word-spacing:-33.082667pt;}
.ws26{word-spacing:-33.069867pt;}
.ws38{word-spacing:-32.448000pt;}
.ws35{word-spacing:-32.241600pt;}
.ws37{word-spacing:-31.995733pt;}
.ws42{word-spacing:-31.801600pt;}
.ws2e{word-spacing:-31.798400pt;}
.ws20{word-spacing:-30.526933pt;}
.ws8{word-spacing:-30.524800pt;}
.ws1a{word-spacing:-30.518400pt;}
.ws2a{word-spacing:-29.888000pt;}
.ws40{word-spacing:-29.882400pt;}
.ws9{word-spacing:-29.875200pt;}
.ws3{word-spacing:-29.820267pt;}
.ws2c{word-spacing:-29.245333pt;}
.wsb{word-spacing:-29.240533pt;}
.ws14{word-spacing:-28.598400pt;}
.ws55{word-spacing:-26.990400pt;}
.ws28{word-spacing:-26.681600pt;}
.ws54{word-spacing:-25.592533pt;}
.ws2b{word-spacing:-25.408000pt;}
.ws3a{word-spacing:-25.208000pt;}
.ws15{word-spacing:-24.753600pt;}
.wse{word-spacing:-24.318400pt;}
.ws27{word-spacing:-24.314667pt;}
.ws34{word-spacing:-24.305600pt;}
.ws18{word-spacing:-24.123733pt;}
.wsf{word-spacing:-23.672000pt;}
.ws4f{word-spacing:-23.488000pt;}
.ws29{word-spacing:-23.480000pt;}
.ws3e{word-spacing:-22.654933pt;}
.ws3b{word-spacing:-20.480000pt;}
.ws10{word-spacing:-20.465600pt;}
.ws4c{word-spacing:-20.464000pt;}
.ws36{word-spacing:-20.288000pt;}
.ws31{word-spacing:-20.268267pt;}
.ws49{word-spacing:-19.643200pt;}
.ws16{word-spacing:-19.640000pt;}
.ws52{word-spacing:-19.008000pt;}
.wsd{word-spacing:-18.368000pt;}
.ws46{word-spacing:-17.718400pt;}
.ws3d{word-spacing:-16.635200pt;}
.ws17{word-spacing:-16.440000pt;}
.ws43{word-spacing:-16.256000pt;}
.ws19{word-spacing:-16.254400pt;}
.ws1f{word-spacing:-15.360000pt;}
.ws2d{word-spacing:-15.352000pt;}
.ws32{word-spacing:-15.163733pt;}
.wsa{word-spacing:-11.520000pt;}
.ws44{word-spacing:-10.874133pt;}
.ws3c{word-spacing:-10.865600pt;}
.ws33{word-spacing:-10.680000pt;}
.wsc{word-spacing:-10.240000pt;}
.ws3f{word-spacing:-10.032000pt;}
.ws1d{word-spacing:-9.403200pt;}
.ws21{word-spacing:-8.120000pt;}
.ws12{word-spacing:-7.868000pt;}
.ws13{word-spacing:-7.482400pt;}
.ws47{word-spacing:-6.210133pt;}
.ws41{word-spacing:-5.752000pt;}
.ws24{word-spacing:-5.558400pt;}
.ws48{word-spacing:-4.913600pt;}
.ws1b{word-spacing:-0.632800pt;}
.ws23{word-spacing:3.398667pt;}
.ws1e{word-spacing:5.971200pt;}
.ws4a{word-spacing:8.341333pt;}
.ws4b{word-spacing:9.789867pt;}
.ws53{word-spacing:12.992000pt;}
.ws51{word-spacing:14.912000pt;}
._1b{margin-left:-1.980533pt;}
._0{margin-left:-0.987200pt;}
._4{width:0.974933pt;}
._1{width:16.128000pt;}
._18{width:17.337067pt;}
._15{width:18.314667pt;}
._17{width:19.266667pt;}
._5{width:20.233067pt;}
._6{width:21.307733pt;}
._c{width:22.390400pt;}
._16{width:24.437333pt;}
._d{width:25.893867pt;}
._9{width:26.801600pt;}
._a{width:27.880000pt;}
._b{width:30.883200pt;}
._2{width:32.497867pt;}
._e{width:34.608000pt;}
._12{width:35.865600pt;}
._1c{width:38.292800pt;}
._7{width:39.232000pt;}
._8{width:40.384000pt;}
._10{width:41.910400pt;}
._13{width:43.361600pt;}
._1d{width:45.240000pt;}
._21{width:48.000000pt;}
._1a{width:49.195733pt;}
._14{width:54.073333pt;}
._11{width:56.812800pt;}
._1f{width:59.008000pt;}
._20{width:60.829333pt;}
._23{width:64.027200pt;}
._22{width:65.709600pt;}
._19{width:78.956267pt;}
._f{width:81.538667pt;}
._1e{width:90.745333pt;}
._3{width:255.941333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y32{bottom:87.108000pt;}
.y31{bottom:105.508000pt;}
.y30{bottom:123.746667pt;}
.y2f{bottom:142.146667pt;}
.y2e{bottom:160.546667pt;}
.y2d{bottom:178.946667pt;}
.y2c{bottom:197.346667pt;}
.y59{bottom:200.388000pt;}
.y2b{bottom:215.746667pt;}
.y58{bottom:218.788000pt;}
.y2a{bottom:234.146667pt;}
.y57{bottom:250.466667pt;}
.y29{bottom:252.546667pt;}
.y56{bottom:268.866667pt;}
.y28{bottom:270.946667pt;}
.y55{bottom:287.266667pt;}
.y27{bottom:289.346667pt;}
.y54{bottom:318.946667pt;}
.y26{bottom:321.188000pt;}
.y53{bottom:337.346667pt;}
.y25{bottom:339.588000pt;}
.y24{bottom:357.988000pt;}
.y52{bottom:369.188000pt;}
.y51{bottom:387.588000pt;}
.y23{bottom:389.666667pt;}
.y22{bottom:408.066667pt;}
.y50{bottom:419.266667pt;}
.y21{bottom:426.466667pt;}
.y4f{bottom:437.666667pt;}
.y20{bottom:444.866667pt;}
.y1f{bottom:463.266667pt;}
.y4e{bottom:469.346667pt;}
.y1e{bottom:481.666667pt;}
.y4d{bottom:501.188000pt;}
.y1d{bottom:513.346667pt;}
.y4c{bottom:519.588000pt;}
.y1c{bottom:531.746667pt;}
.y4b{bottom:537.988000pt;}
.y1b{bottom:550.146667pt;}
.y4a{bottom:556.388000pt;}
.y1a{bottom:568.546667pt;}
.y49{bottom:574.788000pt;}
.y19{bottom:586.946667pt;}
.y48{bottom:593.188000pt;}
.y18{bottom:605.346667pt;}
.y47{bottom:611.588000pt;}
.y17{bottom:623.746667pt;}
.y46{bottom:629.988000pt;}
.y16{bottom:642.146667pt;}
.y45{bottom:661.666667pt;}
.y15{bottom:679.266667pt;}
.y44{bottom:680.066667pt;}
.y14{bottom:697.666667pt;}
.y43{bottom:698.466667pt;}
.y13{bottom:716.066667pt;}
.y42{bottom:716.866667pt;}
.y41{bottom:735.266667pt;}
.y12{bottom:753.188000pt;}
.y40{bottom:753.666667pt;}
.y11{bottom:771.588000pt;}
.y3f{bottom:772.066667pt;}
.y10{bottom:789.988000pt;}
.y3e{bottom:790.466667pt;}
.yf{bottom:808.388000pt;}
.y3d{bottom:808.866667pt;}
.ye{bottom:826.788000pt;}
.y3c{bottom:827.266667pt;}
.yd{bottom:845.188000pt;}
.y3b{bottom:845.666667pt;}
.yc{bottom:863.588000pt;}
.y3a{bottom:864.066667pt;}
.yb{bottom:881.988000pt;}
.y39{bottom:882.466667pt;}
.ya{bottom:900.388000pt;}
.y38{bottom:900.866667pt;}
.y9{bottom:918.788000pt;}
.y37{bottom:919.266667pt;}
.y8{bottom:937.188000pt;}
.y36{bottom:937.666667pt;}
.y35{bottom:956.066667pt;}
.y7{bottom:974.146667pt;}
.y34{bottom:974.466667pt;}
.y33{bottom:992.866667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h6{height:43.343750pt;}
.h3{height:43.375000pt;}
.h5{height:43.825911pt;}
.h7{height:44.468750pt;}
.h2{height:50.784896pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.440000pt;}
.x5{left:116.320000pt;}
.x9{left:121.440000pt;}
.x3{left:129.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x8{left:160.640000pt;}
.x4{left:417.800000pt;}
.x6{left:601.920000pt;}
}




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