
    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_789de1cb1054f7acece42499.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_273bbc40dc9e41edb40de8bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_ac055ac6291c7b909c7ad169.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_bc4933bd564cf47275180e2a.woff2')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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.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;}
}
.ws23{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws44{word-spacing:-40.536000px;}
.ws9{word-spacing:-38.655900px;}
.ws8{word-spacing:-38.368800px;}
.ws34{word-spacing:-38.367000px;}
.ws7{word-spacing:-38.355300px;}
.wsc{word-spacing:-37.938600px;}
.ws20{word-spacing:-36.715200px;}
.ws6{word-spacing:-33.547800px;}
.wse{word-spacing:-25.194000px;}
.ws4{word-spacing:-23.687700px;}
.ws0{word-spacing:-23.390100px;}
.ws33{word-spacing:-23.246400px;}
.ws68{word-spacing:-23.234400px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws4c{word-spacing:-23.040600px;}
.wsa{word-spacing:-22.758000px;}
.wsd{word-spacing:-22.752000px;}
.ws71{word-spacing:-22.749000px;}
.ws28{word-spacing:-22.748400px;}
.ws66{word-spacing:-22.746600px;}
.ws3d{word-spacing:-22.743000px;}
.ws22{word-spacing:-22.734000px;}
.wsb{word-spacing:-22.536000px;}
.ws2d{word-spacing:-22.534200px;}
.ws74{word-spacing:-22.533300px;}
.ws1f{word-spacing:-22.532400px;}
.ws6a{word-spacing:-22.530600px;}
.ws73{word-spacing:-22.527900px;}
.ws5a{word-spacing:-22.521600px;}
.ws2f{word-spacing:-22.516200px;}
.ws39{word-spacing:-22.298400px;}
.ws62{word-spacing:-22.024800px;}
.ws18{word-spacing:-21.812400px;}
.ws2a{word-spacing:-21.600600px;}
.ws21{word-spacing:-21.592800px;}
.ws5b{word-spacing:-20.351400px;}
.ws3a{word-spacing:-19.875300px;}
.ws59{word-spacing:-19.868400px;}
.ws19{word-spacing:-19.652400px;}
.ws5c{word-spacing:-19.576800px;}
.ws3f{word-spacing:-19.148400px;}
.ws72{word-spacing:-18.934200px;}
.ws26{word-spacing:-18.932400px;}
.ws43{word-spacing:-18.206400px;}
.ws48{word-spacing:-18.185400px;}
.ws6b{word-spacing:-17.494200px;}
.ws1c{word-spacing:-17.492400px;}
.ws45{word-spacing:-17.489400px;}
.ws69{word-spacing:-17.487900px;}
.ws56{word-spacing:-17.480400px;}
.ws35{word-spacing:-16.992000px;}
.ws40{word-spacing:-16.772400px;}
.ws36{word-spacing:-16.763400px;}
.ws30{word-spacing:-16.054200px;}
.ws17{word-spacing:-16.052400px;}
.ws6c{word-spacing:-16.040400px;}
.ws25{word-spacing:-15.550200px;}
.ws55{word-spacing:-15.541200px;}
.ws65{word-spacing:-14.832600px;}
.ws47{word-spacing:-14.832000px;}
.ws58{word-spacing:-14.612400px;}
.ws61{word-spacing:-14.536800px;}
.ws27{word-spacing:-14.112000px;}
.ws1a{word-spacing:-13.892400px;}
.ws15{word-spacing:-13.883400px;}
.ws4e{word-spacing:-13.876200px;}
.ws13{word-spacing:-13.385700px;}
.ws5f{word-spacing:-13.156200px;}
.ws24{word-spacing:-13.153800px;}
.ws2e{word-spacing:-13.102800px;}
.ws41{word-spacing:-12.678000px;}
.ws63{word-spacing:-12.672000px;}
.ws6f{word-spacing:-11.733300px;}
.ws3c{word-spacing:-11.721900px;}
.ws31{word-spacing:-11.663700px;}
.ws51{word-spacing:-11.509200px;}
.ws12{word-spacing:-11.010600px;}
.ws1d{word-spacing:-10.294800px;}
.ws2c{word-spacing:-10.285200px;}
.wsf{word-spacing:-9.788400px;}
.ws6d{word-spacing:-9.575100px;}
.ws10{word-spacing:-9.078000px;}
.ws29{word-spacing:-9.072000px;}
.ws3b{word-spacing:-8.130600px;}
.ws4a{word-spacing:-8.120400px;}
.ws64{word-spacing:-7.628400px;}
.ws46{word-spacing:-7.414200px;}
.ws1e{word-spacing:-6.188400px;}
.ws50{word-spacing:-5.978400px;}
.ws60{word-spacing:-5.972400px;}
.ws52{word-spacing:-5.961600px;}
.ws70{word-spacing:-5.959800px;}
.ws53{word-spacing:-5.254200px;}
.ws3{word-spacing:-5.177700px;}
.ws38{word-spacing:-4.518000px;}
.ws16{word-spacing:-4.028400px;}
.ws2b{word-spacing:-3.816000px;}
.ws32{word-spacing:-3.301200px;}
.ws6e{word-spacing:-2.589300px;}
.ws1b{word-spacing:-2.588400px;}
.ws4d{word-spacing:-1.434600px;}
.ws42{word-spacing:-0.929400px;}
.ws67{word-spacing:0.504900px;}
.ws57{word-spacing:1.230600px;}
.ws11{word-spacing:1.738800px;}
.ws14{word-spacing:1.953600px;}
.ws5e{word-spacing:1.958100px;}
.ws54{word-spacing:2.742300px;}
.ws4b{word-spacing:2.748600px;}
.ws4f{word-spacing:4.116600px;}
.ws5d{word-spacing:4.608000px;}
.ws3e{word-spacing:5.556600px;}
.ws37{word-spacing:10.371600px;}
.ws49{word-spacing:11.088000px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._0{width:19.142100px;}
._f{width:20.369400px;}
._b{width:22.231200px;}
._10{width:23.557200px;}
._d{width:24.622200px;}
._8{width:26.098500px;}
._9{width:27.741600px;}
._11{width:29.069700px;}
._12{width:30.126600px;}
._5{width:31.956600px;}
._6{width:33.112800px;}
._15{width:34.340400px;}
._e{width:35.568000px;}
._14{width:37.037700px;}
._a{width:38.077200px;}
._c{width:39.308400px;}
._17{width:40.608000px;}
._1c{width:42.290700px;}
._7{width:43.399200px;}
._19{width:44.417700px;}
._18{width:45.436200px;}
._16{width:47.285400px;}
._13{width:52.421400px;}
._1a{width:54.000000px;}
._1b{width:72.000000px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.575000px;}
.y7{bottom:72.900000px;}
.y31{bottom:130.215000px;}
.y58{bottom:133.636500px;}
.y30{bottom:150.915000px;}
.y57{bottom:154.336500px;}
.y2f{bottom:171.615000px;}
.y56{bottom:186.915000px;}
.y2e{bottom:192.315000px;}
.y74{bottom:222.915000px;}
.y2d{bottom:225.075000px;}
.y73{bottom:243.615000px;}
.y2c{bottom:245.775000px;}
.y55{bottom:252.436500px;}
.y72{bottom:264.315000px;}
.y2b{bottom:266.475000px;}
.y54{bottom:273.136500px;}
.y71{bottom:285.015000px;}
.y2a{bottom:287.175000px;}
.y53{bottom:293.836500px;}
.y70{bottom:305.715000px;}
.y29{bottom:307.875000px;}
.y52{bottom:314.536500px;}
.y6f{bottom:326.415000px;}
.y51{bottom:335.236500px;}
.y28{bottom:340.636500px;}
.y6e{bottom:347.115000px;}
.y50{bottom:355.936500px;}
.y27{bottom:361.336500px;}
.y6d{bottom:367.815000px;}
.y4f{bottom:376.636500px;}
.y26{bottom:382.036500px;}
.y6c{bottom:388.515000px;}
.y4e{bottom:397.336500px;}
.y25{bottom:402.736500px;}
.y6b{bottom:409.215000px;}
.y24{bottom:423.436500px;}
.y4d{bottom:429.915000px;}
.y4c{bottom:450.615000px;}
.y23{bottom:456.015000px;}
.y4b{bottom:471.315000px;}
.y22{bottom:488.775000px;}
.y4a{bottom:492.015000px;}
.y21{bottom:509.475000px;}
.y49{bottom:512.715000px;}
.y48{bottom:533.415000px;}
.y20{bottom:542.236500px;}
.y47{bottom:554.115000px;}
.y1f{bottom:562.936500px;}
.y46{bottom:574.815000px;}
.y1e{bottom:583.636500px;}
.y45{bottom:595.515000px;}
.y1d{bottom:604.336500px;}
.y44{bottom:616.215000px;}
.y1c{bottom:625.036500px;}
.y6a{bottom:628.275000px;}
.y1b{bottom:645.736500px;}
.y43{bottom:648.975000px;}
.y69{bottom:661.036500px;}
.y1a{bottom:666.436500px;}
.y42{bottom:669.675000px;}
.y68{bottom:681.736500px;}
.y19{bottom:687.136500px;}
.y41{bottom:690.375000px;}
.y67{bottom:702.436500px;}
.y18{bottom:707.836500px;}
.y40{bottom:711.075000px;}
.y66{bottom:723.136500px;}
.y17{bottom:728.536500px;}
.y3f{bottom:731.775000px;}
.y65{bottom:743.836500px;}
.y16{bottom:749.236500px;}
.y3e{bottom:752.475000px;}
.y15{bottom:769.936500px;}
.y3d{bottom:773.175000px;}
.y64{bottom:776.415000px;}
.y14{bottom:790.636500px;}
.y63{bottom:797.115000px;}
.y3c{bottom:805.936500px;}
.y13{bottom:811.336500px;}
.y62{bottom:817.815000px;}
.y3b{bottom:826.636500px;}
.y12{bottom:832.036500px;}
.y61{bottom:838.515000px;}
.y3a{bottom:847.336500px;}
.y11{bottom:852.736500px;}
.y60{bottom:859.215000px;}
.y39{bottom:868.036500px;}
.y10{bottom:873.436500px;}
.y5f{bottom:879.915000px;}
.y38{bottom:900.615000px;}
.yf{bottom:906.015000px;}
.y5e{bottom:912.675000px;}
.y37{bottom:921.315000px;}
.y5d{bottom:933.375000px;}
.ye{bottom:938.775000px;}
.y36{bottom:942.015000px;}
.y5c{bottom:954.075000px;}
.y35{bottom:962.715000px;}
.yd{bottom:971.536500px;}
.y5b{bottom:974.775000px;}
.y34{bottom:983.415000px;}
.yc{bottom:1004.115000px;}
.y5a{bottom:1007.536500px;}
.y33{bottom:1016.175000px;}
.y59{bottom:1028.236500px;}
.yb{bottom:1036.875000px;}
.y32{bottom:1048.936500px;}
.ya{bottom:1069.636500px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h4{height:45.225146px;}
.h5{height:48.796875px;}
.h2{height:49.042969px;}
.h6{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:133.380000px;}
.xb{left:154.620000px;}
.x3{left:165.780000px;}
.xa{left:180.720000px;}
.x9{left:352.260000px;}
.x6{left:410.760000px;}
.x2{left:470.025000px;}
.x7{left:541.800000px;}
.x8{left:577.800000px;}
.x5{left:594.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws23{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws44{word-spacing:-36.032000pt;}
.ws9{word-spacing:-34.360800pt;}
.ws8{word-spacing:-34.105600pt;}
.ws34{word-spacing:-34.104000pt;}
.ws7{word-spacing:-34.093600pt;}
.wsc{word-spacing:-33.723200pt;}
.ws20{word-spacing:-32.635733pt;}
.ws6{word-spacing:-29.820267pt;}
.wse{word-spacing:-22.394667pt;}
.ws4{word-spacing:-21.055733pt;}
.ws0{word-spacing:-20.791200pt;}
.ws33{word-spacing:-20.663467pt;}
.ws68{word-spacing:-20.652800pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws4c{word-spacing:-20.480533pt;}
.wsa{word-spacing:-20.229333pt;}
.wsd{word-spacing:-20.224000pt;}
.ws71{word-spacing:-20.221333pt;}
.ws28{word-spacing:-20.220800pt;}
.ws66{word-spacing:-20.219200pt;}
.ws3d{word-spacing:-20.216000pt;}
.ws22{word-spacing:-20.208000pt;}
.wsb{word-spacing:-20.032000pt;}
.ws2d{word-spacing:-20.030400pt;}
.ws74{word-spacing:-20.029600pt;}
.ws1f{word-spacing:-20.028800pt;}
.ws6a{word-spacing:-20.027200pt;}
.ws73{word-spacing:-20.024800pt;}
.ws5a{word-spacing:-20.019200pt;}
.ws2f{word-spacing:-20.014400pt;}
.ws39{word-spacing:-19.820800pt;}
.ws62{word-spacing:-19.577600pt;}
.ws18{word-spacing:-19.388800pt;}
.ws2a{word-spacing:-19.200533pt;}
.ws21{word-spacing:-19.193600pt;}
.ws5b{word-spacing:-18.090133pt;}
.ws3a{word-spacing:-17.666933pt;}
.ws59{word-spacing:-17.660800pt;}
.ws19{word-spacing:-17.468800pt;}
.ws5c{word-spacing:-17.401600pt;}
.ws3f{word-spacing:-17.020800pt;}
.ws72{word-spacing:-16.830400pt;}
.ws26{word-spacing:-16.828800pt;}
.ws43{word-spacing:-16.183467pt;}
.ws48{word-spacing:-16.164800pt;}
.ws6b{word-spacing:-15.550400pt;}
.ws1c{word-spacing:-15.548800pt;}
.ws45{word-spacing:-15.546133pt;}
.ws69{word-spacing:-15.544800pt;}
.ws56{word-spacing:-15.538133pt;}
.ws35{word-spacing:-15.104000pt;}
.ws40{word-spacing:-14.908800pt;}
.ws36{word-spacing:-14.900800pt;}
.ws30{word-spacing:-14.270400pt;}
.ws17{word-spacing:-14.268800pt;}
.ws6c{word-spacing:-14.258133pt;}
.ws25{word-spacing:-13.822400pt;}
.ws55{word-spacing:-13.814400pt;}
.ws65{word-spacing:-13.184533pt;}
.ws47{word-spacing:-13.184000pt;}
.ws58{word-spacing:-12.988800pt;}
.ws61{word-spacing:-12.921600pt;}
.ws27{word-spacing:-12.544000pt;}
.ws1a{word-spacing:-12.348800pt;}
.ws15{word-spacing:-12.340800pt;}
.ws4e{word-spacing:-12.334400pt;}
.ws13{word-spacing:-11.898400pt;}
.ws5f{word-spacing:-11.694400pt;}
.ws24{word-spacing:-11.692267pt;}
.ws2e{word-spacing:-11.646933pt;}
.ws41{word-spacing:-11.269333pt;}
.ws63{word-spacing:-11.264000pt;}
.ws6f{word-spacing:-10.429600pt;}
.ws3c{word-spacing:-10.419467pt;}
.ws31{word-spacing:-10.367733pt;}
.ws51{word-spacing:-10.230400pt;}
.ws12{word-spacing:-9.787200pt;}
.ws1d{word-spacing:-9.150933pt;}
.ws2c{word-spacing:-9.142400pt;}
.wsf{word-spacing:-8.700800pt;}
.ws6d{word-spacing:-8.511200pt;}
.ws10{word-spacing:-8.069333pt;}
.ws29{word-spacing:-8.064000pt;}
.ws3b{word-spacing:-7.227200pt;}
.ws4a{word-spacing:-7.218133pt;}
.ws64{word-spacing:-6.780800pt;}
.ws46{word-spacing:-6.590400pt;}
.ws1e{word-spacing:-5.500800pt;}
.ws50{word-spacing:-5.314133pt;}
.ws60{word-spacing:-5.308800pt;}
.ws52{word-spacing:-5.299200pt;}
.ws70{word-spacing:-5.297600pt;}
.ws53{word-spacing:-4.670400pt;}
.ws3{word-spacing:-4.602400pt;}
.ws38{word-spacing:-4.016000pt;}
.ws16{word-spacing:-3.580800pt;}
.ws2b{word-spacing:-3.392000pt;}
.ws32{word-spacing:-2.934400pt;}
.ws6e{word-spacing:-2.301600pt;}
.ws1b{word-spacing:-2.300800pt;}
.ws4d{word-spacing:-1.275200pt;}
.ws42{word-spacing:-0.826133pt;}
.ws67{word-spacing:0.448800pt;}
.ws57{word-spacing:1.093867pt;}
.ws11{word-spacing:1.545600pt;}
.ws14{word-spacing:1.736533pt;}
.ws5e{word-spacing:1.740533pt;}
.ws54{word-spacing:2.437600pt;}
.ws4b{word-spacing:2.443200pt;}
.ws4f{word-spacing:3.659200pt;}
.ws5d{word-spacing:4.096000pt;}
.ws3e{word-spacing:4.939200pt;}
.ws37{word-spacing:9.219200pt;}
.ws49{word-spacing:9.856000pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._0{width:17.015200pt;}
._f{width:18.106133pt;}
._b{width:19.761067pt;}
._10{width:20.939733pt;}
._d{width:21.886400pt;}
._8{width:23.198667pt;}
._9{width:24.659200pt;}
._11{width:25.839733pt;}
._12{width:26.779200pt;}
._5{width:28.405867pt;}
._6{width:29.433600pt;}
._15{width:30.524800pt;}
._e{width:31.616000pt;}
._14{width:32.922400pt;}
._a{width:33.846400pt;}
._c{width:34.940800pt;}
._17{width:36.096000pt;}
._1c{width:37.591733pt;}
._7{width:38.577067pt;}
._19{width:39.482400pt;}
._18{width:40.387733pt;}
._16{width:42.031467pt;}
._13{width:46.596800pt;}
._1a{width:48.000000pt;}
._1b{width:64.000000pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.066667pt;}
.y7{bottom:64.800000pt;}
.y31{bottom:115.746667pt;}
.y58{bottom:118.788000pt;}
.y30{bottom:134.146667pt;}
.y57{bottom:137.188000pt;}
.y2f{bottom:152.546667pt;}
.y56{bottom:166.146667pt;}
.y2e{bottom:170.946667pt;}
.y74{bottom:198.146667pt;}
.y2d{bottom:200.066667pt;}
.y73{bottom:216.546667pt;}
.y2c{bottom:218.466667pt;}
.y55{bottom:224.388000pt;}
.y72{bottom:234.946667pt;}
.y2b{bottom:236.866667pt;}
.y54{bottom:242.788000pt;}
.y71{bottom:253.346667pt;}
.y2a{bottom:255.266667pt;}
.y53{bottom:261.188000pt;}
.y70{bottom:271.746667pt;}
.y29{bottom:273.666667pt;}
.y52{bottom:279.588000pt;}
.y6f{bottom:290.146667pt;}
.y51{bottom:297.988000pt;}
.y28{bottom:302.788000pt;}
.y6e{bottom:308.546667pt;}
.y50{bottom:316.388000pt;}
.y27{bottom:321.188000pt;}
.y6d{bottom:326.946667pt;}
.y4f{bottom:334.788000pt;}
.y26{bottom:339.588000pt;}
.y6c{bottom:345.346667pt;}
.y4e{bottom:353.188000pt;}
.y25{bottom:357.988000pt;}
.y6b{bottom:363.746667pt;}
.y24{bottom:376.388000pt;}
.y4d{bottom:382.146667pt;}
.y4c{bottom:400.546667pt;}
.y23{bottom:405.346667pt;}
.y4b{bottom:418.946667pt;}
.y22{bottom:434.466667pt;}
.y4a{bottom:437.346667pt;}
.y21{bottom:452.866667pt;}
.y49{bottom:455.746667pt;}
.y48{bottom:474.146667pt;}
.y20{bottom:481.988000pt;}
.y47{bottom:492.546667pt;}
.y1f{bottom:500.388000pt;}
.y46{bottom:510.946667pt;}
.y1e{bottom:518.788000pt;}
.y45{bottom:529.346667pt;}
.y1d{bottom:537.188000pt;}
.y44{bottom:547.746667pt;}
.y1c{bottom:555.588000pt;}
.y6a{bottom:558.466667pt;}
.y1b{bottom:573.988000pt;}
.y43{bottom:576.866667pt;}
.y69{bottom:587.588000pt;}
.y1a{bottom:592.388000pt;}
.y42{bottom:595.266667pt;}
.y68{bottom:605.988000pt;}
.y19{bottom:610.788000pt;}
.y41{bottom:613.666667pt;}
.y67{bottom:624.388000pt;}
.y18{bottom:629.188000pt;}
.y40{bottom:632.066667pt;}
.y66{bottom:642.788000pt;}
.y17{bottom:647.588000pt;}
.y3f{bottom:650.466667pt;}
.y65{bottom:661.188000pt;}
.y16{bottom:665.988000pt;}
.y3e{bottom:668.866667pt;}
.y15{bottom:684.388000pt;}
.y3d{bottom:687.266667pt;}
.y64{bottom:690.146667pt;}
.y14{bottom:702.788000pt;}
.y63{bottom:708.546667pt;}
.y3c{bottom:716.388000pt;}
.y13{bottom:721.188000pt;}
.y62{bottom:726.946667pt;}
.y3b{bottom:734.788000pt;}
.y12{bottom:739.588000pt;}
.y61{bottom:745.346667pt;}
.y3a{bottom:753.188000pt;}
.y11{bottom:757.988000pt;}
.y60{bottom:763.746667pt;}
.y39{bottom:771.588000pt;}
.y10{bottom:776.388000pt;}
.y5f{bottom:782.146667pt;}
.y38{bottom:800.546667pt;}
.yf{bottom:805.346667pt;}
.y5e{bottom:811.266667pt;}
.y37{bottom:818.946667pt;}
.y5d{bottom:829.666667pt;}
.ye{bottom:834.466667pt;}
.y36{bottom:837.346667pt;}
.y5c{bottom:848.066667pt;}
.y35{bottom:855.746667pt;}
.yd{bottom:863.588000pt;}
.y5b{bottom:866.466667pt;}
.y34{bottom:874.146667pt;}
.yc{bottom:892.546667pt;}
.y5a{bottom:895.588000pt;}
.y33{bottom:903.266667pt;}
.y59{bottom:913.988000pt;}
.yb{bottom:921.666667pt;}
.y32{bottom:932.388000pt;}
.ya{bottom:950.788000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h4{height:40.200130pt;}
.h5{height:43.375000pt;}
.h2{height:43.593750pt;}
.h6{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:118.560000pt;}
.xb{left:137.440000pt;}
.x3{left:147.360000pt;}
.xa{left:160.640000pt;}
.x9{left:313.120000pt;}
.x6{left:365.120000pt;}
.x2{left:417.800000pt;}
.x7{left:481.600000pt;}
.x8{left:513.600000pt;}
.x5{left:528.640000pt;}
}




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