
    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_99be9f9003d04c42b4d8c5b9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_7ecd1fb9c5bb5c7e087b1440.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_55a87e81bae69a7b5a336b1e.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a9dd78cb6605c50ac5ef95d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.ls2{letter-spacing:97.344000px;}
.ls1{letter-spacing:103.752000px;}
.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;}
}
.ws1f{word-spacing:-55.944000px;}
.ws15{word-spacing:-38.668200px;}
.ws3e{word-spacing:-38.656800px;}
.ws4{word-spacing:-38.649600px;}
.ws60{word-spacing:-38.647800px;}
.wsf{word-spacing:-38.644200px;}
.ws4b{word-spacing:-38.426400px;}
.ws2e{word-spacing:-38.166000px;}
.ws24{word-spacing:-38.160000px;}
.ws1b{word-spacing:-38.156400px;}
.ws2f{word-spacing:-38.148300px;}
.ws59{word-spacing:-38.134800px;}
.ws2{word-spacing:-38.081700px;}
.ws6{word-spacing:-38.067600px;}
.ws37{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws33{word-spacing:-37.940400px;}
.ws5{word-spacing:-37.939200px;}
.ws4f{word-spacing:-37.934100px;}
.ws3{word-spacing:-37.933200px;}
.ws45{word-spacing:-37.932600px;}
.ws1e{word-spacing:-37.925400px;}
.ws32{word-spacing:-37.925100px;}
.ws7{word-spacing:-37.856400px;}
.ws4d{word-spacing:-37.721700px;}
.ws30{word-spacing:-37.718100px;}
.ws53{word-spacing:-37.717200px;}
.ws31{word-spacing:-37.715400px;}
.ws52{word-spacing:-37.704600px;}
.ws42{word-spacing:-37.703700px;}
.ws5e{word-spacing:-37.702800px;}
.ws26{word-spacing:-37.224600px;}
.ws1d{word-spacing:-37.198800px;}
.ws23{word-spacing:-36.726000px;}
.ws1c{word-spacing:-36.709200px;}
.wse{word-spacing:-36.492600px;}
.ws5d{word-spacing:-36.484800px;}
.ws22{word-spacing:-36.276600px;}
.wsd{word-spacing:-35.998800px;}
.ws58{word-spacing:-35.767200px;}
.ws51{word-spacing:-35.566200px;}
.ws19{word-spacing:-33.120000px;}
.ws2c{word-spacing:-32.896800px;}
.wsc{word-spacing:-32.888700px;}
.ws49{word-spacing:-32.873400px;}
.ws18{word-spacing:-32.184000px;}
.ws2b{word-spacing:-32.173200px;}
.ws28{word-spacing:-31.235400px;}
.ws3a{word-spacing:-29.295000px;}
.ws3d{word-spacing:-28.586400px;}
.ws48{word-spacing:-28.080000px;}
.ws1a{word-spacing:-27.847800px;}
.ws2a{word-spacing:-27.366000px;}
.ws34{word-spacing:-27.360000px;}
.ws44{word-spacing:-27.354600px;}
.ws43{word-spacing:-25.920000px;}
.ws55{word-spacing:-25.701000px;}
.ws39{word-spacing:-25.200000px;}
.ws12{word-spacing:-23.882700px;}
.ws35{word-spacing:-23.544000px;}
.wsa{word-spacing:-23.533800px;}
.ws3f{word-spacing:-22.314000px;}
.ws3b{word-spacing:-22.309200px;}
.ws4c{word-spacing:-21.879900px;}
.ws3c{word-spacing:-21.600000px;}
.ws10{word-spacing:-21.384000px;}
.ws11{word-spacing:-21.096000px;}
.ws9{word-spacing:-20.876400px;}
.ws8{word-spacing:-20.664000px;}
.ws25{word-spacing:-20.436300px;}
.ws29{word-spacing:-18.726000px;}
.ws27{word-spacing:-18.720000px;}
.ws2d{word-spacing:-18.490800px;}
.ws38{word-spacing:-18.284400px;}
.ws61{word-spacing:-17.556300px;}
.ws46{word-spacing:-17.046000px;}
.ws5c{word-spacing:-16.555200px;}
.ws40{word-spacing:-15.836400px;}
.ws41{word-spacing:-14.889000px;}
.ws57{word-spacing:-14.688000px;}
.ws20{word-spacing:-13.960800px;}
.ws5f{word-spacing:-10.796400px;}
.ws4e{word-spacing:-9.131400px;}
.wsb{word-spacing:-8.925900px;}
.ws14{word-spacing:-7.344000px;}
.ws56{word-spacing:-6.971400px;}
.ws5b{word-spacing:-6.967200px;}
.ws50{word-spacing:0.000000px;}
.ws13{word-spacing:0.234000px;}
.ws21{word-spacing:3.603600px;}
.ws47{word-spacing:3.609000px;}
.ws4a{word-spacing:5.977200px;}
.ws16{word-spacing:14.400000px;}
.ws17{word-spacing:14.616000px;}
.ws5a{word-spacing:17.496000px;}
.ws36{word-spacing:19.153200px;}
.ws54{word-spacing:41.984400px;}
.ws1{word-spacing:1037.484900px;}
._15{margin-left:-2.311200px;}
._2{margin-left:-1.243800px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._7{width:20.765400px;}
._17{width:21.822600px;}
._d{width:23.490000px;}
._6{width:24.509700px;}
._11{width:25.630200px;}
._e{width:29.599200px;}
._10{width:31.896000px;}
._4{width:33.781200px;}
._3{width:35.043600px;}
._b{width:37.068300px;}
._c{width:38.619000px;}
._1b{width:40.123800px;}
._12{width:41.184000px;}
._13{width:42.186000px;}
._9{width:44.152200px;}
._1a{width:46.656000px;}
._5{width:48.594000px;}
._16{width:50.522400px;}
._8{width:57.695400px;}
._a{width:60.787800px;}
._19{width:73.440000px;}
._f{width:76.390800px;}
._18{width:96.555600px;}
._14{width:99.842400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y2a{bottom:116.896500px;}
.y54{bottom:134.175000px;}
.y29{bottom:137.596500px;}
.y53{bottom:154.875000px;}
.y28{bottom:158.296500px;}
.y52{bottom:175.575000px;}
.y27{bottom:178.996500px;}
.y51{bottom:196.275000px;}
.y26{bottom:199.696500px;}
.y25{bottom:220.396500px;}
.y50{bottom:238.036500px;}
.y4f{bottom:258.736500px;}
.y24{bottom:262.155000px;}
.y4e{bottom:279.436500px;}
.y4d{bottom:300.136500px;}
.y23{bottom:303.915000px;}
.y4c{bottom:320.836500px;}
.y22{bottom:324.615000px;}
.y4b{bottom:341.536500px;}
.y21{bottom:345.315000px;}
.y4a{bottom:362.236500px;}
.y20{bottom:366.015000px;}
.y49{bottom:382.936500px;}
.y1f{bottom:386.715000px;}
.y48{bottom:403.636500px;}
.y47{bottom:424.336500px;}
.y1e{bottom:428.295000px;}
.y46{bottom:466.096500px;}
.y1d{bottom:470.055000px;}
.y45{bottom:486.795000px;}
.y1c{bottom:490.755000px;}
.y44{bottom:507.496500px;}
.y43{bottom:528.015000px;}
.y6f{bottom:532.336500px;}
.y1b{bottom:532.515000px;}
.y42{bottom:548.715000px;}
.y6e{bottom:553.036500px;}
.y1a{bottom:553.215000px;}
.y6d{bottom:573.736500px;}
.y19{bottom:573.915000px;}
.y41{bottom:590.475000px;}
.y6c{bottom:594.436500px;}
.y18{bottom:594.615000px;}
.y40{bottom:611.175000px;}
.y6b{bottom:615.136500px;}
.y3f{bottom:631.875000px;}
.y6a{bottom:635.836500px;}
.y17{bottom:636.195000px;}
.y69{bottom:656.536500px;}
.y16{bottom:656.896500px;}
.y3e{bottom:673.636500px;}
.y68{bottom:677.236500px;}
.y3d{bottom:694.336500px;}
.y67{bottom:697.936500px;}
.y15{bottom:698.655000px;}
.y3c{bottom:715.036500px;}
.y66{bottom:718.636500px;}
.y14{bottom:719.355000px;}
.y3b{bottom:735.736500px;}
.y65{bottom:739.336500px;}
.y13{bottom:740.055000px;}
.y3a{bottom:756.436500px;}
.y64{bottom:760.036500px;}
.y12{bottom:760.755000px;}
.y39{bottom:777.136500px;}
.y63{bottom:780.736500px;}
.y11{bottom:781.455000px;}
.y62{bottom:801.436500px;}
.y38{bottom:818.715000px;}
.y10{bottom:823.215000px;}
.y37{bottom:839.415000px;}
.y61{bottom:843.015000px;}
.yf{bottom:843.915000px;}
.y36{bottom:860.115000px;}
.y35{bottom:880.815000px;}
.y60{bottom:884.775000px;}
.ye{bottom:885.495000px;}
.y5f{bottom:905.475000px;}
.yd{bottom:906.195000px;}
.y34{bottom:922.575000px;}
.y5e{bottom:926.175000px;}
.yc{bottom:926.895000px;}
.y33{bottom:944.715000px;}
.y5d{bottom:946.875000px;}
.yb{bottom:947.595000px;}
.y32{bottom:966.675000px;}
.y5c{bottom:967.575000px;}
.ya{bottom:968.295000px;}
.y31{bottom:988.636500px;}
.y5b{bottom:1009.336500px;}
.y9{bottom:1009.875000px;}
.y30{bottom:1010.595000px;}
.y8{bottom:1030.575000px;}
.y2f{bottom:1032.555000px;}
.y5a{bottom:1050.915000px;}
.y2e{bottom:1054.515000px;}
.y59{bottom:1072.875000px;}
.y58{bottom:1093.575000px;}
.y7{bottom:1094.475000px;}
.y2d{bottom:1097.536500px;}
.y57{bottom:1115.715000px;}
.y6{bottom:1116.615000px;}
.y2c{bottom:1118.236500px;}
.y56{bottom:1137.675000px;}
.y2b{bottom:1138.936500px;}
.y55{bottom:1158.375000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:156.960000px;}
.x2{left:160.560000px;}
.x8{left:216.360000px;}
.x6{left:233.638500px;}
.x9{left:316.080000px;}
.x7{left:334.620000px;}
.x5{left:380.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:86.528000pt;}
.ls1{letter-spacing:92.224000pt;}
.ws1f{word-spacing:-49.728000pt;}
.ws15{word-spacing:-34.371733pt;}
.ws3e{word-spacing:-34.361600pt;}
.ws4{word-spacing:-34.355200pt;}
.ws60{word-spacing:-34.353600pt;}
.wsf{word-spacing:-34.350400pt;}
.ws4b{word-spacing:-34.156800pt;}
.ws2e{word-spacing:-33.925333pt;}
.ws24{word-spacing:-33.920000pt;}
.ws1b{word-spacing:-33.916800pt;}
.ws2f{word-spacing:-33.909600pt;}
.ws59{word-spacing:-33.897600pt;}
.ws2{word-spacing:-33.850400pt;}
.ws6{word-spacing:-33.837867pt;}
.ws37{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws33{word-spacing:-33.724800pt;}
.ws5{word-spacing:-33.723733pt;}
.ws4f{word-spacing:-33.719200pt;}
.ws3{word-spacing:-33.718400pt;}
.ws45{word-spacing:-33.717867pt;}
.ws1e{word-spacing:-33.711467pt;}
.ws32{word-spacing:-33.711200pt;}
.ws7{word-spacing:-33.650133pt;}
.ws4d{word-spacing:-33.530400pt;}
.ws30{word-spacing:-33.527200pt;}
.ws53{word-spacing:-33.526400pt;}
.ws31{word-spacing:-33.524800pt;}
.ws52{word-spacing:-33.515200pt;}
.ws42{word-spacing:-33.514400pt;}
.ws5e{word-spacing:-33.513600pt;}
.ws26{word-spacing:-33.088533pt;}
.ws1d{word-spacing:-33.065600pt;}
.ws23{word-spacing:-32.645333pt;}
.ws1c{word-spacing:-32.630400pt;}
.wse{word-spacing:-32.437867pt;}
.ws5d{word-spacing:-32.430933pt;}
.ws22{word-spacing:-32.245867pt;}
.wsd{word-spacing:-31.998933pt;}
.ws58{word-spacing:-31.793067pt;}
.ws51{word-spacing:-31.614400pt;}
.ws19{word-spacing:-29.440000pt;}
.ws2c{word-spacing:-29.241600pt;}
.wsc{word-spacing:-29.234400pt;}
.ws49{word-spacing:-29.220800pt;}
.ws18{word-spacing:-28.608000pt;}
.ws2b{word-spacing:-28.598400pt;}
.ws28{word-spacing:-27.764800pt;}
.ws3a{word-spacing:-26.040000pt;}
.ws3d{word-spacing:-25.410133pt;}
.ws48{word-spacing:-24.960000pt;}
.ws1a{word-spacing:-24.753600pt;}
.ws2a{word-spacing:-24.325333pt;}
.ws34{word-spacing:-24.320000pt;}
.ws44{word-spacing:-24.315200pt;}
.ws43{word-spacing:-23.040000pt;}
.ws55{word-spacing:-22.845333pt;}
.ws39{word-spacing:-22.400000pt;}
.ws12{word-spacing:-21.229067pt;}
.ws35{word-spacing:-20.928000pt;}
.wsa{word-spacing:-20.918933pt;}
.ws3f{word-spacing:-19.834667pt;}
.ws3b{word-spacing:-19.830400pt;}
.ws4c{word-spacing:-19.448800pt;}
.ws3c{word-spacing:-19.200000pt;}
.ws10{word-spacing:-19.008000pt;}
.ws11{word-spacing:-18.752000pt;}
.ws9{word-spacing:-18.556800pt;}
.ws8{word-spacing:-18.368000pt;}
.ws25{word-spacing:-18.165600pt;}
.ws29{word-spacing:-16.645333pt;}
.ws27{word-spacing:-16.640000pt;}
.ws2d{word-spacing:-16.436267pt;}
.ws38{word-spacing:-16.252800pt;}
.ws61{word-spacing:-15.605600pt;}
.ws46{word-spacing:-15.152000pt;}
.ws5c{word-spacing:-14.715733pt;}
.ws40{word-spacing:-14.076800pt;}
.ws41{word-spacing:-13.234667pt;}
.ws57{word-spacing:-13.056000pt;}
.ws20{word-spacing:-12.409600pt;}
.ws5f{word-spacing:-9.596800pt;}
.ws4e{word-spacing:-8.116800pt;}
.wsb{word-spacing:-7.934133pt;}
.ws14{word-spacing:-6.528000pt;}
.ws56{word-spacing:-6.196800pt;}
.ws5b{word-spacing:-6.193067pt;}
.ws50{word-spacing:0.000000pt;}
.ws13{word-spacing:0.208000pt;}
.ws21{word-spacing:3.203200pt;}
.ws47{word-spacing:3.208000pt;}
.ws4a{word-spacing:5.313067pt;}
.ws16{word-spacing:12.800000pt;}
.ws17{word-spacing:12.992000pt;}
.ws5a{word-spacing:15.552000pt;}
.ws36{word-spacing:17.025067pt;}
.ws54{word-spacing:37.319467pt;}
.ws1{word-spacing:922.208800pt;}
._15{margin-left:-2.054400pt;}
._2{margin-left:-1.105600pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._7{width:18.458133pt;}
._17{width:19.397867pt;}
._d{width:20.880000pt;}
._6{width:21.786400pt;}
._11{width:22.782400pt;}
._e{width:26.310400pt;}
._10{width:28.352000pt;}
._4{width:30.027733pt;}
._3{width:31.149867pt;}
._b{width:32.949600pt;}
._c{width:34.328000pt;}
._1b{width:35.665600pt;}
._12{width:36.608000pt;}
._13{width:37.498667pt;}
._9{width:39.246400pt;}
._1a{width:41.472000pt;}
._5{width:43.194667pt;}
._16{width:44.908800pt;}
._8{width:51.284800pt;}
._a{width:54.033600pt;}
._19{width:65.280000pt;}
._f{width:67.902933pt;}
._18{width:85.827200pt;}
._14{width:88.748800pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y2a{bottom:103.908000pt;}
.y54{bottom:119.266667pt;}
.y29{bottom:122.308000pt;}
.y53{bottom:137.666667pt;}
.y28{bottom:140.708000pt;}
.y52{bottom:156.066667pt;}
.y27{bottom:159.108000pt;}
.y51{bottom:174.466667pt;}
.y26{bottom:177.508000pt;}
.y25{bottom:195.908000pt;}
.y50{bottom:211.588000pt;}
.y4f{bottom:229.988000pt;}
.y24{bottom:233.026667pt;}
.y4e{bottom:248.388000pt;}
.y4d{bottom:266.788000pt;}
.y23{bottom:270.146667pt;}
.y4c{bottom:285.188000pt;}
.y22{bottom:288.546667pt;}
.y4b{bottom:303.588000pt;}
.y21{bottom:306.946667pt;}
.y4a{bottom:321.988000pt;}
.y20{bottom:325.346667pt;}
.y49{bottom:340.388000pt;}
.y1f{bottom:343.746667pt;}
.y48{bottom:358.788000pt;}
.y47{bottom:377.188000pt;}
.y1e{bottom:380.706667pt;}
.y46{bottom:414.308000pt;}
.y1d{bottom:417.826667pt;}
.y45{bottom:432.706667pt;}
.y1c{bottom:436.226667pt;}
.y44{bottom:451.108000pt;}
.y43{bottom:469.346667pt;}
.y6f{bottom:473.188000pt;}
.y1b{bottom:473.346667pt;}
.y42{bottom:487.746667pt;}
.y6e{bottom:491.588000pt;}
.y1a{bottom:491.746667pt;}
.y6d{bottom:509.988000pt;}
.y19{bottom:510.146667pt;}
.y41{bottom:524.866667pt;}
.y6c{bottom:528.388000pt;}
.y18{bottom:528.546667pt;}
.y40{bottom:543.266667pt;}
.y6b{bottom:546.788000pt;}
.y3f{bottom:561.666667pt;}
.y6a{bottom:565.188000pt;}
.y17{bottom:565.506667pt;}
.y69{bottom:583.588000pt;}
.y16{bottom:583.908000pt;}
.y3e{bottom:598.788000pt;}
.y68{bottom:601.988000pt;}
.y3d{bottom:617.188000pt;}
.y67{bottom:620.388000pt;}
.y15{bottom:621.026667pt;}
.y3c{bottom:635.588000pt;}
.y66{bottom:638.788000pt;}
.y14{bottom:639.426667pt;}
.y3b{bottom:653.988000pt;}
.y65{bottom:657.188000pt;}
.y13{bottom:657.826667pt;}
.y3a{bottom:672.388000pt;}
.y64{bottom:675.588000pt;}
.y12{bottom:676.226667pt;}
.y39{bottom:690.788000pt;}
.y63{bottom:693.988000pt;}
.y11{bottom:694.626667pt;}
.y62{bottom:712.388000pt;}
.y38{bottom:727.746667pt;}
.y10{bottom:731.746667pt;}
.y37{bottom:746.146667pt;}
.y61{bottom:749.346667pt;}
.yf{bottom:750.146667pt;}
.y36{bottom:764.546667pt;}
.y35{bottom:782.946667pt;}
.y60{bottom:786.466667pt;}
.ye{bottom:787.106667pt;}
.y5f{bottom:804.866667pt;}
.yd{bottom:805.506667pt;}
.y34{bottom:820.066667pt;}
.y5e{bottom:823.266667pt;}
.yc{bottom:823.906667pt;}
.y33{bottom:839.746667pt;}
.y5d{bottom:841.666667pt;}
.yb{bottom:842.306667pt;}
.y32{bottom:859.266667pt;}
.y5c{bottom:860.066667pt;}
.ya{bottom:860.706667pt;}
.y31{bottom:878.788000pt;}
.y5b{bottom:897.188000pt;}
.y9{bottom:897.666667pt;}
.y30{bottom:898.306667pt;}
.y8{bottom:916.066667pt;}
.y2f{bottom:917.826667pt;}
.y5a{bottom:934.146667pt;}
.y2e{bottom:937.346667pt;}
.y59{bottom:953.666667pt;}
.y58{bottom:972.066667pt;}
.y7{bottom:972.866667pt;}
.y2d{bottom:975.588000pt;}
.y57{bottom:991.746667pt;}
.y6{bottom:992.546667pt;}
.y2c{bottom:993.988000pt;}
.y56{bottom:1011.266667pt;}
.y2b{bottom:1012.388000pt;}
.y55{bottom:1029.666667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:139.520000pt;}
.x2{left:142.720000pt;}
.x8{left:192.320000pt;}
.x6{left:207.678667pt;}
.x9{left:280.960000pt;}
.x7{left:297.440000pt;}
.x5{left:338.560000pt;}
}




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