
    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_dd3751cc33f0e9a0c3d3a29d.woff2')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_24c046bb8abcab789eb759b1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7a33e415025f62316ae95580.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f5a72019c9b09cf91cf0d5a6.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;}
}
.wse{word-spacing:-55.944000px;}
.ws60{word-spacing:-38.878200px;}
.ws22{word-spacing:-38.876400px;}
.ws2a{word-spacing:-38.661000px;}
.ws6{word-spacing:-38.657700px;}
.ws58{word-spacing:-38.652000px;}
.ws25{word-spacing:-38.651400px;}
.ws4d{word-spacing:-38.651100px;}
.ws5{word-spacing:-38.647800px;}
.ws61{word-spacing:-38.421900px;}
.ws3{word-spacing:-38.374200px;}
.ws59{word-spacing:-38.359800px;}
.ws1d{word-spacing:-38.160000px;}
.ws4a{word-spacing:-38.154000px;}
.ws12{word-spacing:-38.152500px;}
.wsb{word-spacing:-38.150100px;}
.ws3a{word-spacing:-38.149200px;}
.ws30{word-spacing:-38.147400px;}
.ws9{word-spacing:-38.076300px;}
.ws0{word-spacing:-37.944000px;}
.ws1b{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws44{word-spacing:-37.936800px;}
.ws63{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.wsc{word-spacing:-37.717200px;}
.wsd{word-spacing:-37.715400px;}
.ws15{word-spacing:-37.710000px;}
.ws5f{word-spacing:-37.685700px;}
.wsa{word-spacing:-37.650600px;}
.ws56{word-spacing:-37.440000px;}
.ws40{word-spacing:-37.433400px;}
.ws4b{word-spacing:-37.222800px;}
.ws3e{word-spacing:-37.217400px;}
.ws2d{word-spacing:-36.720000px;}
.ws3b{word-spacing:-36.504000px;}
.ws35{word-spacing:-35.782200px;}
.ws20{word-spacing:-35.775000px;}
.ws45{word-spacing:-35.278800px;}
.ws1f{word-spacing:-34.839000px;}
.ws2c{word-spacing:-34.336800px;}
.ws38{word-spacing:-34.331400px;}
.ws62{word-spacing:-33.838200px;}
.ws52{word-spacing:-33.618600px;}
.ws8{word-spacing:-33.547800px;}
.ws4c{word-spacing:-31.680000px;}
.ws39{word-spacing:-30.022200px;}
.ws3c{word-spacing:-30.006000px;}
.ws21{word-spacing:-29.803200px;}
.ws55{word-spacing:-29.295600px;}
.ws24{word-spacing:-28.068600px;}
.ws26{word-spacing:-27.856800px;}
.ws2e{word-spacing:-27.855000px;}
.ws36{word-spacing:-27.356400px;}
.ws31{word-spacing:-25.698600px;}
.ws2b{word-spacing:-24.967800px;}
.ws5e{word-spacing:-24.478800px;}
.ws17{word-spacing:-24.247800px;}
.ws42{word-spacing:-23.535000px;}
.ws4f{word-spacing:-23.531400px;}
.wsf{word-spacing:-23.313600px;}
.ws51{word-spacing:-23.040600px;}
.ws57{word-spacing:-22.824600px;}
.ws4e{word-spacing:-22.821900px;}
.ws5d{word-spacing:-22.102200px;}
.ws53{word-spacing:-22.100400px;}
.ws41{word-spacing:-21.606000px;}
.ws43{word-spacing:-20.666400px;}
.ws10{word-spacing:-20.660400px;}
.ws29{word-spacing:-20.160000px;}
.ws2f{word-spacing:-19.719000px;}
.ws5c{word-spacing:-19.374000px;}
.ws5a{word-spacing:-18.502200px;}
.ws32{word-spacing:-18.487800px;}
.ws7{word-spacing:-18.472500px;}
.ws18{word-spacing:-17.773200px;}
.ws1a{word-spacing:-17.267400px;}
.ws5b{word-spacing:-17.068200px;}
.ws49{word-spacing:-17.047800px;}
.ws23{word-spacing:-12.735000px;}
.ws1c{word-spacing:-12.015000px;}
.ws34{word-spacing:-10.582200px;}
.ws13{word-spacing:-10.072800px;}
.ws14{word-spacing:-9.858600px;}
.ws47{word-spacing:-9.135000px;}
.ws33{word-spacing:-8.642400px;}
.ws11{word-spacing:-7.920000px;}
.ws16{word-spacing:-7.486800px;}
.ws19{word-spacing:-6.982800px;}
.ws54{word-spacing:-6.980400px;}
.ws27{word-spacing:-6.953400px;}
.ws3d{word-spacing:-5.542200px;}
.ws50{word-spacing:-1.224000px;}
.ws3f{word-spacing:2.160000px;}
.ws1e{word-spacing:8.159400px;}
.ws37{word-spacing:8.851800px;}
.ws48{word-spacing:8.868600px;}
.ws46{word-spacing:20.622600px;}
.ws28{word-spacing:31.899600px;}
.ws1{word-spacing:455.092800px;}
._1c{margin-left:-2.295600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._8{width:19.951800px;}
._18{width:21.024000px;}
._e{width:22.228800px;}
._17{width:24.084000px;}
._1e{width:26.161200px;}
._10{width:27.284400px;}
._13{width:29.076600px;}
._9{width:30.568200px;}
._16{width:32.367600px;}
._5{width:34.453200px;}
._1{width:36.000000px;}
._15{width:37.257600px;}
._a{width:39.373200px;}
._b{width:40.811400px;}
._12{width:44.445600px;}
._11{width:45.633000px;}
._7{width:47.212200px;}
._1d{width:48.315600px;}
._6{width:49.618800px;}
._1a{width:51.764400px;}
._f{width:53.064000px;}
._1f{width:56.226000px;}
._1b{width:59.737200px;}
._c{width:65.556600px;}
._d{width:66.727200px;}
._19{width:74.787600px;}
._20{width:77.322000px;}
._14{width:89.227200px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y29{bottom:99.796500px;}
.y51{bottom:101.236500px;}
.y28{bottom:120.496500px;}
.y50{bottom:121.936500px;}
.y27{bottom:141.196500px;}
.y4f{bottom:142.636500px;}
.y26{bottom:161.896500px;}
.y25{bottom:182.596500px;}
.y4e{bottom:184.396500px;}
.y24{bottom:203.295000px;}
.y4d{bottom:205.096500px;}
.y4c{bottom:225.795000px;}
.y23{bottom:244.875000px;}
.y22{bottom:265.575000px;}
.y4b{bottom:267.375000px;}
.y21{bottom:286.275000px;}
.y4a{bottom:288.075000px;}
.y49{bottom:308.775000px;}
.y20{bottom:328.036500px;}
.y48{bottom:329.475000px;}
.y1f{bottom:348.736500px;}
.y47{bottom:350.175000px;}
.y1e{bottom:369.436500px;}
.y46{bottom:370.875000px;}
.y1d{bottom:390.136500px;}
.y1c{bottom:410.836500px;}
.y45{bottom:412.636500px;}
.y44{bottom:433.336500px;}
.y1b{bottom:452.596500px;}
.y43{bottom:454.036500px;}
.y1a{bottom:473.295000px;}
.y61{bottom:494.536500px;}
.y42{bottom:495.796500px;}
.y19{bottom:514.875000px;}
.y60{bottom:515.236500px;}
.y41{bottom:516.496500px;}
.y18{bottom:535.575000px;}
.y40{bottom:537.195000px;}
.y17{bottom:556.275000px;}
.y5f{bottom:556.996500px;}
.y3f{bottom:557.896500px;}
.y16{bottom:576.975000px;}
.y3e{bottom:578.596500px;}
.y15{bottom:597.675000px;}
.y5e{bottom:598.575000px;}
.y14{bottom:618.375000px;}
.y3d{bottom:620.175000px;}
.y13{bottom:639.075000px;}
.y5d{bottom:640.336500px;}
.y3c{bottom:640.875000px;}
.y5c{bottom:661.036500px;}
.y3b{bottom:661.575000px;}
.y12{bottom:680.836500px;}
.y5b{bottom:681.736500px;}
.y3a{bottom:682.275000px;}
.y11{bottom:701.536500px;}
.y5a{bottom:723.496500px;}
.y39{bottom:724.036500px;}
.y10{bottom:743.295000px;}
.y59{bottom:744.195000px;}
.y38{bottom:744.736500px;}
.yf{bottom:763.996500px;}
.y58{bottom:764.895000px;}
.y37{bottom:765.436500px;}
.ye{bottom:784.695000px;}
.y36{bottom:786.136500px;}
.yd{bottom:805.395000px;}
.y57{bottom:806.475000px;}
.y56{bottom:827.175000px;}
.y35{bottom:827.895000px;}
.y34{bottom:848.596500px;}
.y55{bottom:868.936500px;}
.y33{bottom:869.295000px;}
.yc{bottom:888.736500px;}
.y32{bottom:889.995000px;}
.y31{bottom:910.695000px;}
.yb{bottom:930.495000px;}
.y30{bottom:931.395000px;}
.y2f{bottom:952.095000px;}
.ya{bottom:972.075000px;}
.y54{bottom:972.795000px;}
.y53{bottom:993.495000px;}
.y2e{bottom:993.675000px;}
.y52{bottom:1014.195000px;}
.y2d{bottom:1014.375000px;}
.y2c{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2b{bottom:1055.775000px;}
.y2a{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x9{left:132.120000px;}
.x4{left:168.838500px;}
.x5{left:409.500000px;}
.x3{left:461.625000px;}
.x7{left:505.260000px;}
.x6{left:576.180000px;}
.x8{left:598.680000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wse{word-spacing:-49.728000pt;}
.ws60{word-spacing:-34.558400pt;}
.ws22{word-spacing:-34.556800pt;}
.ws2a{word-spacing:-34.365333pt;}
.ws6{word-spacing:-34.362400pt;}
.ws58{word-spacing:-34.357333pt;}
.ws25{word-spacing:-34.356800pt;}
.ws4d{word-spacing:-34.356533pt;}
.ws5{word-spacing:-34.353600pt;}
.ws61{word-spacing:-34.152800pt;}
.ws3{word-spacing:-34.110400pt;}
.ws59{word-spacing:-34.097600pt;}
.ws1d{word-spacing:-33.920000pt;}
.ws4a{word-spacing:-33.914667pt;}
.ws12{word-spacing:-33.913333pt;}
.wsb{word-spacing:-33.911200pt;}
.ws3a{word-spacing:-33.910400pt;}
.ws30{word-spacing:-33.908800pt;}
.ws9{word-spacing:-33.845600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws1b{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws44{word-spacing:-33.721600pt;}
.ws63{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.wsc{word-spacing:-33.526400pt;}
.wsd{word-spacing:-33.524800pt;}
.ws15{word-spacing:-33.520000pt;}
.ws5f{word-spacing:-33.498400pt;}
.wsa{word-spacing:-33.467200pt;}
.ws56{word-spacing:-33.280000pt;}
.ws40{word-spacing:-33.274133pt;}
.ws4b{word-spacing:-33.086933pt;}
.ws3e{word-spacing:-33.082133pt;}
.ws2d{word-spacing:-32.640000pt;}
.ws3b{word-spacing:-32.448000pt;}
.ws35{word-spacing:-31.806400pt;}
.ws20{word-spacing:-31.800000pt;}
.ws45{word-spacing:-31.358933pt;}
.ws1f{word-spacing:-30.968000pt;}
.ws2c{word-spacing:-30.521600pt;}
.ws38{word-spacing:-30.516800pt;}
.ws62{word-spacing:-30.078400pt;}
.ws52{word-spacing:-29.883200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws4c{word-spacing:-28.160000pt;}
.ws39{word-spacing:-26.686400pt;}
.ws3c{word-spacing:-26.672000pt;}
.ws21{word-spacing:-26.491733pt;}
.ws55{word-spacing:-26.040533pt;}
.ws24{word-spacing:-24.949867pt;}
.ws26{word-spacing:-24.761600pt;}
.ws2e{word-spacing:-24.760000pt;}
.ws36{word-spacing:-24.316800pt;}
.ws31{word-spacing:-22.843200pt;}
.ws2b{word-spacing:-22.193600pt;}
.ws5e{word-spacing:-21.758933pt;}
.ws17{word-spacing:-21.553600pt;}
.ws42{word-spacing:-20.920000pt;}
.ws4f{word-spacing:-20.916800pt;}
.wsf{word-spacing:-20.723200pt;}
.ws51{word-spacing:-20.480533pt;}
.ws57{word-spacing:-20.288533pt;}
.ws4e{word-spacing:-20.286133pt;}
.ws5d{word-spacing:-19.646400pt;}
.ws53{word-spacing:-19.644800pt;}
.ws41{word-spacing:-19.205333pt;}
.ws43{word-spacing:-18.370133pt;}
.ws10{word-spacing:-18.364800pt;}
.ws29{word-spacing:-17.920000pt;}
.ws2f{word-spacing:-17.528000pt;}
.ws5c{word-spacing:-17.221333pt;}
.ws5a{word-spacing:-16.446400pt;}
.ws32{word-spacing:-16.433600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws18{word-spacing:-15.798400pt;}
.ws1a{word-spacing:-15.348800pt;}
.ws5b{word-spacing:-15.171733pt;}
.ws49{word-spacing:-15.153600pt;}
.ws23{word-spacing:-11.320000pt;}
.ws1c{word-spacing:-10.680000pt;}
.ws34{word-spacing:-9.406400pt;}
.ws13{word-spacing:-8.953600pt;}
.ws14{word-spacing:-8.763200pt;}
.ws47{word-spacing:-8.120000pt;}
.ws33{word-spacing:-7.682133pt;}
.ws11{word-spacing:-7.040000pt;}
.ws16{word-spacing:-6.654933pt;}
.ws19{word-spacing:-6.206933pt;}
.ws54{word-spacing:-6.204800pt;}
.ws27{word-spacing:-6.180800pt;}
.ws3d{word-spacing:-4.926400pt;}
.ws50{word-spacing:-1.088000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws1e{word-spacing:7.252800pt;}
.ws37{word-spacing:7.868267pt;}
.ws48{word-spacing:7.883200pt;}
.ws46{word-spacing:18.331200pt;}
.ws28{word-spacing:28.355200pt;}
.ws1{word-spacing:404.526933pt;}
._1c{margin-left:-2.040533pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._8{width:17.734933pt;}
._18{width:18.688000pt;}
._e{width:19.758933pt;}
._17{width:21.408000pt;}
._1e{width:23.254400pt;}
._10{width:24.252800pt;}
._13{width:25.845867pt;}
._9{width:27.171733pt;}
._16{width:28.771200pt;}
._5{width:30.625067pt;}
._1{width:32.000000pt;}
._15{width:33.117867pt;}
._a{width:34.998400pt;}
._b{width:36.276800pt;}
._12{width:39.507200pt;}
._11{width:40.562667pt;}
._7{width:41.966400pt;}
._1d{width:42.947200pt;}
._6{width:44.105600pt;}
._1a{width:46.012800pt;}
._f{width:47.168000pt;}
._1f{width:49.978667pt;}
._1b{width:53.099733pt;}
._c{width:58.272533pt;}
._d{width:59.313067pt;}
._19{width:66.477867pt;}
._20{width:68.730667pt;}
._14{width:79.313067pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y29{bottom:88.708000pt;}
.y51{bottom:89.988000pt;}
.y28{bottom:107.108000pt;}
.y50{bottom:108.388000pt;}
.y27{bottom:125.508000pt;}
.y4f{bottom:126.788000pt;}
.y26{bottom:143.908000pt;}
.y25{bottom:162.308000pt;}
.y4e{bottom:163.908000pt;}
.y24{bottom:180.706667pt;}
.y4d{bottom:182.308000pt;}
.y4c{bottom:200.706667pt;}
.y23{bottom:217.666667pt;}
.y22{bottom:236.066667pt;}
.y4b{bottom:237.666667pt;}
.y21{bottom:254.466667pt;}
.y4a{bottom:256.066667pt;}
.y49{bottom:274.466667pt;}
.y20{bottom:291.588000pt;}
.y48{bottom:292.866667pt;}
.y1f{bottom:309.988000pt;}
.y47{bottom:311.266667pt;}
.y1e{bottom:328.388000pt;}
.y46{bottom:329.666667pt;}
.y1d{bottom:346.788000pt;}
.y1c{bottom:365.188000pt;}
.y45{bottom:366.788000pt;}
.y44{bottom:385.188000pt;}
.y1b{bottom:402.308000pt;}
.y43{bottom:403.588000pt;}
.y1a{bottom:420.706667pt;}
.y61{bottom:439.588000pt;}
.y42{bottom:440.708000pt;}
.y19{bottom:457.666667pt;}
.y60{bottom:457.988000pt;}
.y41{bottom:459.108000pt;}
.y18{bottom:476.066667pt;}
.y40{bottom:477.506667pt;}
.y17{bottom:494.466667pt;}
.y5f{bottom:495.108000pt;}
.y3f{bottom:495.908000pt;}
.y16{bottom:512.866667pt;}
.y3e{bottom:514.308000pt;}
.y15{bottom:531.266667pt;}
.y5e{bottom:532.066667pt;}
.y14{bottom:549.666667pt;}
.y3d{bottom:551.266667pt;}
.y13{bottom:568.066667pt;}
.y5d{bottom:569.188000pt;}
.y3c{bottom:569.666667pt;}
.y5c{bottom:587.588000pt;}
.y3b{bottom:588.066667pt;}
.y12{bottom:605.188000pt;}
.y5b{bottom:605.988000pt;}
.y3a{bottom:606.466667pt;}
.y11{bottom:623.588000pt;}
.y5a{bottom:643.108000pt;}
.y39{bottom:643.588000pt;}
.y10{bottom:660.706667pt;}
.y59{bottom:661.506667pt;}
.y38{bottom:661.988000pt;}
.yf{bottom:679.108000pt;}
.y58{bottom:679.906667pt;}
.y37{bottom:680.388000pt;}
.ye{bottom:697.506667pt;}
.y36{bottom:698.788000pt;}
.yd{bottom:715.906667pt;}
.y57{bottom:716.866667pt;}
.y56{bottom:735.266667pt;}
.y35{bottom:735.906667pt;}
.y34{bottom:754.308000pt;}
.y55{bottom:772.388000pt;}
.y33{bottom:772.706667pt;}
.yc{bottom:789.988000pt;}
.y32{bottom:791.106667pt;}
.y31{bottom:809.506667pt;}
.yb{bottom:827.106667pt;}
.y30{bottom:827.906667pt;}
.y2f{bottom:846.306667pt;}
.ya{bottom:864.066667pt;}
.y54{bottom:864.706667pt;}
.y53{bottom:883.106667pt;}
.y2e{bottom:883.266667pt;}
.y52{bottom:901.506667pt;}
.y2d{bottom:901.666667pt;}
.y2c{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2b{bottom:938.466667pt;}
.y2a{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x9{left:117.440000pt;}
.x4{left:150.078667pt;}
.x5{left:364.000000pt;}
.x3{left:410.333333pt;}
.x7{left:449.120000pt;}
.x6{left:512.160000pt;}
.x8{left:532.160000pt;}
.x2{left:649.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; }
  