
    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_277930d4727fe7a7a6aa6de6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_43c123efbcb24ef696a3137c.woff2')format("woff");}.ff2{font-family:ff2;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;}
.ls4{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.336960px;}
.ls0{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.727200px;}
.ls13{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.167200px;}
.lsa{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.600000px;}
.ls1a{letter-spacing:5.040000px;}
.lsc{letter-spacing:5.760000px;}
.lse{letter-spacing:6.480000px;}
.ls19{letter-spacing:7.200000px;}
.ls9{letter-spacing:7.927200px;}
.ls7{letter-spacing:8.640000px;}
.ls14{letter-spacing:9.360000px;}
.lsb{letter-spacing:12.240000px;}
.ls15{letter-spacing:15.120000px;}
.ls12{letter-spacing:15.840000px;}
.ls10{letter-spacing:16.560000px;}
.ls11{letter-spacing:18.000000px;}
.ls1e{letter-spacing:26.640000px;}
.ls1d{letter-spacing:31.680000px;}
.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;}
}
.ws1{word-spacing:-18.144000px;}
.ws57{word-spacing:-18.072000px;}
.wsd{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws3d{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.064000px;}
.ws1a{word-spacing:-4.320000px;}
.ws4d{word-spacing:-3.744000px;}
.ws36{word-spacing:-3.600000px;}
.ws2e{word-spacing:-3.456000px;}
.ws40{word-spacing:-3.312000px;}
.ws1b{word-spacing:-2.880000px;}
.ws4a{word-spacing:-2.592000px;}
.wse{word-spacing:-2.160000px;}
.ws31{word-spacing:-1.872000px;}
.ws12{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.152000px;}
.ws51{word-spacing:-0.720000px;}
.ws44{word-spacing:-0.576000px;}
.ws4{word-spacing:-0.505440px;}
.ws25{word-spacing:-0.432000px;}
.ws55{word-spacing:-0.288000px;}
.ws58{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws2f{word-spacing:0.144000px;}
.ws8{word-spacing:0.288000px;}
.ws29{word-spacing:0.720000px;}
.ws2a{word-spacing:1.008000px;}
.ws42{word-spacing:1.440000px;}
.ws41{word-spacing:1.584000px;}
.ws37{word-spacing:1.728000px;}
.ws15{word-spacing:2.160000px;}
.ws1c{word-spacing:2.448000px;}
.ws5c{word-spacing:2.736000px;}
.ws18{word-spacing:2.880000px;}
.ws43{word-spacing:3.024000px;}
.ws38{word-spacing:3.168000px;}
.ws1f{word-spacing:3.600000px;}
.wsf{word-spacing:3.888000px;}
.ws21{word-spacing:4.320000px;}
.ws1d{word-spacing:4.608000px;}
.ws32{word-spacing:5.040000px;}
.ws35{word-spacing:5.328000px;}
.ws26{word-spacing:5.760000px;}
.ws27{word-spacing:6.048000px;}
.ws2d{word-spacing:6.480000px;}
.ws39{word-spacing:6.768000px;}
.ws30{word-spacing:7.200000px;}
.ws2c{word-spacing:7.488000px;}
.ws23{word-spacing:7.920000px;}
.ws2b{word-spacing:8.208000px;}
.ws19{word-spacing:8.640000px;}
.ws17{word-spacing:8.928000px;}
.ws45{word-spacing:9.360000px;}
.ws4b{word-spacing:9.648000px;}
.ws56{word-spacing:10.080000px;}
.ws5b{word-spacing:10.368000px;}
.ws16{word-spacing:10.800000px;}
.wsb{word-spacing:11.088000px;}
.ws48{word-spacing:11.520000px;}
.ws14{word-spacing:11.808000px;}
.ws10{word-spacing:12.240000px;}
.ws33{word-spacing:12.528000px;}
.ws7{word-spacing:12.960000px;}
.ws6{word-spacing:13.248000px;}
.ws34{word-spacing:13.680000px;}
.ws54{word-spacing:13.968000px;}
.ws4c{word-spacing:14.400000px;}
.ws47{word-spacing:15.120000px;}
.ws46{word-spacing:15.408000px;}
.ws3f{word-spacing:15.696000px;}
.ws3e{word-spacing:15.840000px;}
.ws3a{word-spacing:16.560000px;}
.ws3b{word-spacing:16.848000px;}
.ws20{word-spacing:17.280000px;}
.ws5a{word-spacing:17.568000px;}
.ws9{word-spacing:18.000000px;}
.ws3c{word-spacing:18.288000px;}
.wsa{word-spacing:19.440000px;}
.ws49{word-spacing:19.728000px;}
.ws4f{word-spacing:20.160000px;}
.ws50{word-spacing:20.448000px;}
.ws53{word-spacing:21.600000px;}
.ws13{word-spacing:23.040000px;}
.ws28{word-spacing:23.328000px;}
.ws4e{word-spacing:23.760000px;}
.ws3{word-spacing:24.008400px;}
.ws5e{word-spacing:24.480000px;}
.ws22{word-spacing:25.200000px;}
.ws52{word-spacing:25.920000px;}
.ws1e{word-spacing:26.208000px;}
.ws5f{word-spacing:26.640000px;}
.ws5d{word-spacing:31.680000px;}
.ws24{word-spacing:35.280000px;}
.ws59{word-spacing:37.440000px;}
._4{margin-left:-4.896000px;}
._6{margin-left:-3.033504px;}
._0{margin-left:-1.718496px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._7{width:9.864000px;}
._5{width:11.880000px;}
._3{width:846.000000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:117.000000px;}
.y54{bottom:137.700000px;}
.y33{bottom:147.960000px;}
.y53{bottom:158.400000px;}
.y32{bottom:179.100000px;}
.y52{bottom:199.800000px;}
.y31{bottom:210.060000px;}
.y51{bottom:220.500000px;}
.y78{bottom:230.760000px;}
.y30{bottom:241.200000px;}
.y77{bottom:261.720000px;}
.y50{bottom:261.900000px;}
.y2f{bottom:272.160000px;}
.y4f{bottom:282.420000px;}
.y70{bottom:292.860000px;}
.y2e{bottom:303.120000px;}
.y6f{bottom:313.560000px;}
.y4e{bottom:323.820000px;}
.y2d{bottom:334.260000px;}
.y4d{bottom:344.520000px;}
.y6e{bottom:354.960000px;}
.y2c{bottom:365.220000px;}
.y6d{bottom:375.660000px;}
.y74{bottom:385.560000px;}
.y4c{bottom:385.920000px;}
.y2b{bottom:396.360000px;}
.y4b{bottom:406.620000px;}
.y73{bottom:416.700000px;}
.y6c{bottom:417.060000px;}
.y2a{bottom:427.320000px;}
.y6b{bottom:437.760000px;}
.y72{bottom:447.660000px;}
.y4a{bottom:448.020000px;}
.y29{bottom:458.460000px;}
.y49{bottom:468.720000px;}
.y71{bottom:474.840000px;}
.y6a{bottom:479.160000px;}
.y28{bottom:489.420000px;}
.y69{bottom:499.860000px;}
.y76{bottom:506.160000px;}
.y48{bottom:510.120000px;}
.y27{bottom:520.560000px;}
.y47{bottom:530.820000px;}
.y75{bottom:537.300000px;}
.y68{bottom:541.260000px;}
.y26{bottom:551.520000px;}
.y67{bottom:561.960000px;}
.y46{bottom:572.220000px;}
.y25{bottom:582.660000px;}
.y45{bottom:592.920000px;}
.y66{bottom:603.360000px;}
.y24{bottom:613.620000px;}
.y65{bottom:624.060000px;}
.y44{bottom:634.320000px;}
.y23{bottom:644.760000px;}
.y43{bottom:655.020000px;}
.y64{bottom:665.460000px;}
.y22{bottom:675.720000px;}
.y63{bottom:686.160000px;}
.y42{bottom:696.420000px;}
.y21{bottom:706.860000px;}
.y41{bottom:717.120000px;}
.y62{bottom:727.560000px;}
.y13{bottom:732.060000px;}
.y20{bottom:737.820000px;}
.y61{bottom:748.260000px;}
.y12{bottom:754.380000px;}
.y40{bottom:758.520000px;}
.y1f{bottom:768.960000px;}
.y11{bottom:776.700000px;}
.y3f{bottom:779.220000px;}
.y60{bottom:789.660000px;}
.y10{bottom:799.020000px;}
.y1e{bottom:799.920000px;}
.y5f{bottom:810.360000px;}
.y3e{bottom:820.620000px;}
.yf{bottom:821.340000px;}
.y1d{bottom:831.060000px;}
.y3d{bottom:841.320000px;}
.ye{bottom:843.660000px;}
.y5e{bottom:851.760000px;}
.y1c{bottom:862.020000px;}
.yd{bottom:865.980000px;}
.y5d{bottom:872.460000px;}
.y3c{bottom:882.720000px;}
.yc{bottom:888.300000px;}
.y1b{bottom:893.160000px;}
.y3b{bottom:903.420000px;}
.yb{bottom:910.620000px;}
.y5c{bottom:913.860000px;}
.y1a{bottom:924.120000px;}
.ya{bottom:932.940000px;}
.y5b{bottom:934.560000px;}
.y3a{bottom:944.820000px;}
.y9{bottom:955.260000px;}
.y39{bottom:965.520000px;}
.y5a{bottom:975.960000px;}
.y8{bottom:977.760000px;}
.y19{bottom:986.220000px;}
.y59{bottom:996.660000px;}
.y7{bottom:1000.080000px;}
.y38{bottom:1006.920000px;}
.y18{bottom:1017.360000px;}
.y6{bottom:1022.400000px;}
.y37{bottom:1027.620000px;}
.y58{bottom:1038.060000px;}
.y5{bottom:1044.720000px;}
.y17{bottom:1048.320000px;}
.y57{bottom:1058.760000px;}
.y4{bottom:1067.040000px;}
.y36{bottom:1069.020000px;}
.y16{bottom:1079.460000px;}
.y3{bottom:1089.360000px;}
.y35{bottom:1089.720000px;}
.y56{bottom:1100.160000px;}
.y15{bottom:1110.420000px;}
.y2{bottom:1112.586660px;}
.y55{bottom:1120.860000px;}
.y1{bottom:1138.680000px;}
.y14{bottom:1141.560000px;}
.h3{height:50.027344px;}
.h2{height:63.949219px;}
.h1{height:74.820586px;}
.h0{height:1264.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:126.540000px;}
.x2{left:127.620000px;}
.x3{left:180.720000px;}
.x4{left:499.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.299520pt;}
.ls0{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.646400pt;}
.ls13{letter-spacing:1.920000pt;}
.lsd{letter-spacing:1.926400pt;}
.lsa{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:4.480000pt;}
.lsc{letter-spacing:5.120000pt;}
.lse{letter-spacing:5.760000pt;}
.ls19{letter-spacing:6.400000pt;}
.ls9{letter-spacing:7.046400pt;}
.ls7{letter-spacing:7.680000pt;}
.ls14{letter-spacing:8.320000pt;}
.lsb{letter-spacing:10.880000pt;}
.ls15{letter-spacing:13.440000pt;}
.ls12{letter-spacing:14.080000pt;}
.ls10{letter-spacing:14.720000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:23.680000pt;}
.ls1d{letter-spacing:28.160000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws57{word-spacing:-16.064000pt;}
.wsd{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws3d{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.168000pt;}
.ws1a{word-spacing:-3.840000pt;}
.ws4d{word-spacing:-3.328000pt;}
.ws36{word-spacing:-3.200000pt;}
.ws2e{word-spacing:-3.072000pt;}
.ws40{word-spacing:-2.944000pt;}
.ws1b{word-spacing:-2.560000pt;}
.ws4a{word-spacing:-2.304000pt;}
.wse{word-spacing:-1.920000pt;}
.ws31{word-spacing:-1.664000pt;}
.ws12{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.024000pt;}
.ws51{word-spacing:-0.640000pt;}
.ws44{word-spacing:-0.512000pt;}
.ws4{word-spacing:-0.449280pt;}
.ws25{word-spacing:-0.384000pt;}
.ws55{word-spacing:-0.256000pt;}
.ws58{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.128000pt;}
.ws8{word-spacing:0.256000pt;}
.ws29{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.896000pt;}
.ws42{word-spacing:1.280000pt;}
.ws41{word-spacing:1.408000pt;}
.ws37{word-spacing:1.536000pt;}
.ws15{word-spacing:1.920000pt;}
.ws1c{word-spacing:2.176000pt;}
.ws5c{word-spacing:2.432000pt;}
.ws18{word-spacing:2.560000pt;}
.ws43{word-spacing:2.688000pt;}
.ws38{word-spacing:2.816000pt;}
.ws1f{word-spacing:3.200000pt;}
.wsf{word-spacing:3.456000pt;}
.ws21{word-spacing:3.840000pt;}
.ws1d{word-spacing:4.096000pt;}
.ws32{word-spacing:4.480000pt;}
.ws35{word-spacing:4.736000pt;}
.ws26{word-spacing:5.120000pt;}
.ws27{word-spacing:5.376000pt;}
.ws2d{word-spacing:5.760000pt;}
.ws39{word-spacing:6.016000pt;}
.ws30{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.656000pt;}
.ws23{word-spacing:7.040000pt;}
.ws2b{word-spacing:7.296000pt;}
.ws19{word-spacing:7.680000pt;}
.ws17{word-spacing:7.936000pt;}
.ws45{word-spacing:8.320000pt;}
.ws4b{word-spacing:8.576000pt;}
.ws56{word-spacing:8.960000pt;}
.ws5b{word-spacing:9.216000pt;}
.ws16{word-spacing:9.600000pt;}
.wsb{word-spacing:9.856000pt;}
.ws48{word-spacing:10.240000pt;}
.ws14{word-spacing:10.496000pt;}
.ws10{word-spacing:10.880000pt;}
.ws33{word-spacing:11.136000pt;}
.ws7{word-spacing:11.520000pt;}
.ws6{word-spacing:11.776000pt;}
.ws34{word-spacing:12.160000pt;}
.ws54{word-spacing:12.416000pt;}
.ws4c{word-spacing:12.800000pt;}
.ws47{word-spacing:13.440000pt;}
.ws46{word-spacing:13.696000pt;}
.ws3f{word-spacing:13.952000pt;}
.ws3e{word-spacing:14.080000pt;}
.ws3a{word-spacing:14.720000pt;}
.ws3b{word-spacing:14.976000pt;}
.ws20{word-spacing:15.360000pt;}
.ws5a{word-spacing:15.616000pt;}
.ws9{word-spacing:16.000000pt;}
.ws3c{word-spacing:16.256000pt;}
.wsa{word-spacing:17.280000pt;}
.ws49{word-spacing:17.536000pt;}
.ws4f{word-spacing:17.920000pt;}
.ws50{word-spacing:18.176000pt;}
.ws53{word-spacing:19.200000pt;}
.ws13{word-spacing:20.480000pt;}
.ws28{word-spacing:20.736000pt;}
.ws4e{word-spacing:21.120000pt;}
.ws3{word-spacing:21.340800pt;}
.ws5e{word-spacing:21.760000pt;}
.ws22{word-spacing:22.400000pt;}
.ws52{word-spacing:23.040000pt;}
.ws1e{word-spacing:23.296000pt;}
.ws5f{word-spacing:23.680000pt;}
.ws5d{word-spacing:28.160000pt;}
.ws24{word-spacing:31.360000pt;}
.ws59{word-spacing:33.280000pt;}
._4{margin-left:-4.352000pt;}
._6{margin-left:-2.696448pt;}
._0{margin-left:-1.527552pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._7{width:8.768000pt;}
._5{width:10.560000pt;}
._3{width:752.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:104.000000pt;}
.y54{bottom:122.400000pt;}
.y33{bottom:131.520000pt;}
.y53{bottom:140.800000pt;}
.y32{bottom:159.200000pt;}
.y52{bottom:177.600000pt;}
.y31{bottom:186.720000pt;}
.y51{bottom:196.000000pt;}
.y78{bottom:205.120000pt;}
.y30{bottom:214.400000pt;}
.y77{bottom:232.640000pt;}
.y50{bottom:232.800000pt;}
.y2f{bottom:241.920000pt;}
.y4f{bottom:251.040000pt;}
.y70{bottom:260.320000pt;}
.y2e{bottom:269.440000pt;}
.y6f{bottom:278.720000pt;}
.y4e{bottom:287.840000pt;}
.y2d{bottom:297.120000pt;}
.y4d{bottom:306.240000pt;}
.y6e{bottom:315.520000pt;}
.y2c{bottom:324.640000pt;}
.y6d{bottom:333.920000pt;}
.y74{bottom:342.720000pt;}
.y4c{bottom:343.040000pt;}
.y2b{bottom:352.320000pt;}
.y4b{bottom:361.440000pt;}
.y73{bottom:370.400000pt;}
.y6c{bottom:370.720000pt;}
.y2a{bottom:379.840000pt;}
.y6b{bottom:389.120000pt;}
.y72{bottom:397.920000pt;}
.y4a{bottom:398.240000pt;}
.y29{bottom:407.520000pt;}
.y49{bottom:416.640000pt;}
.y71{bottom:422.080000pt;}
.y6a{bottom:425.920000pt;}
.y28{bottom:435.040000pt;}
.y69{bottom:444.320000pt;}
.y76{bottom:449.920000pt;}
.y48{bottom:453.440000pt;}
.y27{bottom:462.720000pt;}
.y47{bottom:471.840000pt;}
.y75{bottom:477.600000pt;}
.y68{bottom:481.120000pt;}
.y26{bottom:490.240000pt;}
.y67{bottom:499.520000pt;}
.y46{bottom:508.640000pt;}
.y25{bottom:517.920000pt;}
.y45{bottom:527.040000pt;}
.y66{bottom:536.320000pt;}
.y24{bottom:545.440000pt;}
.y65{bottom:554.720000pt;}
.y44{bottom:563.840000pt;}
.y23{bottom:573.120000pt;}
.y43{bottom:582.240000pt;}
.y64{bottom:591.520000pt;}
.y22{bottom:600.640000pt;}
.y63{bottom:609.920000pt;}
.y42{bottom:619.040000pt;}
.y21{bottom:628.320000pt;}
.y41{bottom:637.440000pt;}
.y62{bottom:646.720000pt;}
.y13{bottom:650.720000pt;}
.y20{bottom:655.840000pt;}
.y61{bottom:665.120000pt;}
.y12{bottom:670.560000pt;}
.y40{bottom:674.240000pt;}
.y1f{bottom:683.520000pt;}
.y11{bottom:690.400000pt;}
.y3f{bottom:692.640000pt;}
.y60{bottom:701.920000pt;}
.y10{bottom:710.240000pt;}
.y1e{bottom:711.040000pt;}
.y5f{bottom:720.320000pt;}
.y3e{bottom:729.440000pt;}
.yf{bottom:730.080000pt;}
.y1d{bottom:738.720000pt;}
.y3d{bottom:747.840000pt;}
.ye{bottom:749.920000pt;}
.y5e{bottom:757.120000pt;}
.y1c{bottom:766.240000pt;}
.yd{bottom:769.760000pt;}
.y5d{bottom:775.520000pt;}
.y3c{bottom:784.640000pt;}
.yc{bottom:789.600000pt;}
.y1b{bottom:793.920000pt;}
.y3b{bottom:803.040000pt;}
.yb{bottom:809.440000pt;}
.y5c{bottom:812.320000pt;}
.y1a{bottom:821.440000pt;}
.ya{bottom:829.280000pt;}
.y5b{bottom:830.720000pt;}
.y3a{bottom:839.840000pt;}
.y9{bottom:849.120000pt;}
.y39{bottom:858.240000pt;}
.y5a{bottom:867.520000pt;}
.y8{bottom:869.120000pt;}
.y19{bottom:876.640000pt;}
.y59{bottom:885.920000pt;}
.y7{bottom:888.960000pt;}
.y38{bottom:895.040000pt;}
.y18{bottom:904.320000pt;}
.y6{bottom:908.800000pt;}
.y37{bottom:913.440000pt;}
.y58{bottom:922.720000pt;}
.y5{bottom:928.640000pt;}
.y17{bottom:931.840000pt;}
.y57{bottom:941.120000pt;}
.y4{bottom:948.480000pt;}
.y36{bottom:950.240000pt;}
.y16{bottom:959.520000pt;}
.y3{bottom:968.320000pt;}
.y35{bottom:968.640000pt;}
.y56{bottom:977.920000pt;}
.y15{bottom:987.040000pt;}
.y2{bottom:988.965920pt;}
.y55{bottom:996.320000pt;}
.y1{bottom:1012.160000pt;}
.y14{bottom:1014.720000pt;}
.h3{height:44.468750pt;}
.h2{height:56.843750pt;}
.h1{height:66.507188pt;}
.h0{height:1124.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:112.480000pt;}
.x2{left:113.440000pt;}
.x3{left:160.640000pt;}
.x4{left:444.160000pt;}
}




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