
    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_0b5b175ec7eb23de8043782b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_ec36c72e6a306715ba3de731.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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;}
.ls7{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.291600px;}
.lsf{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.405000px;}
.lsb{letter-spacing:0.432000px;}
.lse{letter-spacing:0.502200px;}
.ls13{letter-spacing:0.691200px;}
.ls11{letter-spacing:0.702000px;}
.ls12{letter-spacing:0.729000px;}
.ls10{letter-spacing:0.885600px;}
.ls17{letter-spacing:0.891000px;}
.lsd{letter-spacing:3.925800px;}
.ls16{letter-spacing:13.035600px;}
.ls3{letter-spacing:38.988000px;}
.ls1{letter-spacing:48.006000px;}
.ls2{letter-spacing:63.126000px;}
.lsc{letter-spacing:65.988000px;}
.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:-20.016000px;}
.ws0{word-spacing:-19.944000px;}
.ws15{word-spacing:-15.174000px;}
.ws4{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.850000px;}
.ws2c{word-spacing:-2.970000px;}
.ws2f{word-spacing:-2.592000px;}
.ws2a{word-spacing:-1.134000px;}
.ws1f{word-spacing:-0.810000px;}
.ws21{word-spacing:-0.432000px;}
.ws8{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:0.072000px;}
.wse{word-spacing:0.108000px;}
.ws1e{word-spacing:0.162000px;}
.ws6{word-spacing:0.216000px;}
.wsc{word-spacing:0.270000px;}
.ws9{word-spacing:0.288000px;}
.wsd{word-spacing:0.486000px;}
.ws16{word-spacing:0.648000px;}
.ws20{word-spacing:1.026000px;}
.ws2b{word-spacing:1.350000px;}
.ws18{word-spacing:1.566000px;}
.ws17{word-spacing:1.674000px;}
.ws19{word-spacing:1.728000px;}
.ws1a{word-spacing:2.106000px;}
.ws35{word-spacing:2.268000px;}
.ws22{word-spacing:2.430000px;}
.ws30{word-spacing:2.808000px;}
.ws11{word-spacing:3.456000px;}
.ws31{word-spacing:3.510000px;}
.ws12{word-spacing:3.726000px;}
.ws13{word-spacing:3.888000px;}
.ws14{word-spacing:4.266000px;}
.ws23{word-spacing:4.590000px;}
.ws28{word-spacing:4.968000px;}
.ws26{word-spacing:5.670000px;}
.ws1c{word-spacing:6.048000px;}
.ws24{word-spacing:6.426000px;}
.ws1d{word-spacing:7.506000px;}
.ws38{word-spacing:8.910000px;}
.ws3a{word-spacing:10.368000px;}
.ws2d{word-spacing:11.826000px;}
.ws25{word-spacing:12.528000px;}
.ws32{word-spacing:13.230000px;}
.wsb{word-spacing:13.896000px;}
.ws2e{word-spacing:14.688000px;}
.ws37{word-spacing:15.066000px;}
.ws36{word-spacing:15.390000px;}
.ws10{word-spacing:16.146000px;}
.ws39{word-spacing:16.470000px;}
.ws33{word-spacing:17.226000px;}
.ws1b{word-spacing:18.630000px;}
.ws34{word-spacing:20.790000px;}
.ws29{word-spacing:21.546000px;}
.ws27{word-spacing:22.626000px;}
._1{margin-left:-1.008000px;}
._0{width:1.015200px;}
._5{width:2.149200px;}
._6{width:6.987600px;}
._4{width:32.994000px;}
._3{width:39.096000px;}
._2{width:50.976000px;}
._7{width:59.994000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:110.997000px;}
.y29{bottom:117.315000px;}
.y7d{bottom:123.039000px;}
.y5e{bottom:128.992500px;}
.y28{bottom:135.405000px;}
.y7c{bottom:141.129000px;}
.y5d{bottom:147.082500px;}
.yb7{bottom:153.184500px;}
.y27{bottom:153.400500px;}
.y7b{bottom:159.124500px;}
.y5c{bottom:165.078000px;}
.yb6{bottom:171.180000px;}
.y26{bottom:171.490500px;}
.y7a{bottom:177.214500px;}
.y5b{bottom:183.168000px;}
.yb5{bottom:189.270000px;}
.y25{bottom:189.486000px;}
.y79{bottom:195.210000px;}
.y5a{bottom:201.163500px;}
.yb4{bottom:207.265500px;}
.y7f{bottom:207.279000px;}
.y24{bottom:207.576000px;}
.y78{bottom:213.300000px;}
.y59{bottom:219.253500px;}
.y7e{bottom:225.274500px;}
.yb3{bottom:225.355500px;}
.y23{bottom:225.571500px;}
.y77{bottom:231.295500px;}
.y58{bottom:237.249000px;}
.yb2{bottom:243.351000px;}
.y22{bottom:243.661500px;}
.y76{bottom:249.385500px;}
.y57{bottom:255.339000px;}
.yb1{bottom:261.441000px;}
.y21{bottom:261.657000px;}
.y75{bottom:267.381000px;}
.y56{bottom:273.334500px;}
.yb0{bottom:279.436500px;}
.y20{bottom:279.747000px;}
.y74{bottom:285.471000px;}
.y55{bottom:291.424500px;}
.yaf{bottom:297.526500px;}
.y1f{bottom:297.742500px;}
.y73{bottom:303.466500px;}
.y54{bottom:309.420000px;}
.yae{bottom:315.522000px;}
.y1e{bottom:315.832500px;}
.y72{bottom:321.556500px;}
.y53{bottom:327.510000px;}
.yad{bottom:333.612000px;}
.y1d{bottom:333.828000px;}
.y71{bottom:339.552000px;}
.y52{bottom:345.505500px;}
.yac{bottom:351.607500px;}
.y1c{bottom:351.918000px;}
.y70{bottom:357.642000px;}
.y51{bottom:363.595500px;}
.yab{bottom:369.697500px;}
.y1b{bottom:369.913500px;}
.y6f{bottom:375.637500px;}
.y50{bottom:381.685500px;}
.yaa{bottom:387.693000px;}
.y1a{bottom:388.003500px;}
.y6e{bottom:393.727500px;}
.y4f{bottom:399.681000px;}
.ya9{bottom:405.783000px;}
.y19{bottom:405.999000px;}
.y6d{bottom:411.723000px;}
.y4e{bottom:417.771000px;}
.ya8{bottom:423.778500px;}
.y18{bottom:424.089000px;}
.y6c{bottom:429.813000px;}
.y4d{bottom:435.766500px;}
.ya7{bottom:441.868500px;}
.y17{bottom:442.084500px;}
.y6b{bottom:447.808500px;}
.y4c{bottom:453.856500px;}
.ya6{bottom:459.864000px;}
.y6a{bottom:465.898500px;}
.y4b{bottom:471.852000px;}
.y16{bottom:472.149000px;}
.ya5{bottom:477.954000px;}
.y69{bottom:483.894000px;}
.y4a{bottom:489.942000px;}
.ya4{bottom:495.949500px;}
.y68{bottom:501.984000px;}
.y15{bottom:502.213500px;}
.y49{bottom:507.937500px;}
.y67{bottom:519.979500px;}
.y14{bottom:520.209000px;}
.y48{bottom:526.027500px;}
.y66{bottom:538.069500px;}
.y13{bottom:538.299000px;}
.y47{bottom:544.023000px;}
.ya3{bottom:550.044000px;}
.y65{bottom:556.065000px;}
.y12{bottom:556.389000px;}
.y46{bottom:562.113000px;}
.ya2{bottom:568.134000px;}
.y64{bottom:574.155000px;}
.y11{bottom:574.384500px;}
.yb8{bottom:575.820000px;}
.y45{bottom:580.108500px;}
.ya1{bottom:586.129500px;}
.y63{bottom:592.245000px;}
.y10{bottom:592.474500px;}
.y44{bottom:598.198500px;}
.ya0{bottom:604.219500px;}
.y62{bottom:610.240500px;}
.yf{bottom:610.470000px;}
.y43{bottom:616.194000px;}
.y9f{bottom:622.215000px;}
.y8c{bottom:628.330500px;}
.ye{bottom:628.560000px;}
.y42{bottom:634.284000px;}
.y61{bottom:640.305000px;}
.y8b{bottom:646.326000px;}
.y41{bottom:652.279500px;}
.y60{bottom:658.300500px;}
.yd{bottom:658.530000px;}
.y8a{bottom:664.416000px;}
.y40{bottom:670.369500px;}
.y9e{bottom:676.390500px;}
.y89{bottom:682.411500px;}
.y3f{bottom:688.365000px;}
.yc{bottom:690.390000px;}
.y9d{bottom:694.386000px;}
.y88{bottom:700.501500px;}
.y3e{bottom:706.455000px;}
.y9c{bottom:712.476000px;}
.y87{bottom:718.497000px;}
.y3d{bottom:724.450500px;}
.yb{bottom:726.480000px;}
.y9b{bottom:730.471500px;}
.y86{bottom:736.587000px;}
.y3c{bottom:742.540500px;}
.y9a{bottom:748.561500px;}
.y85{bottom:754.582500px;}
.y3b{bottom:760.536000px;}
.ya{bottom:762.480000px;}
.y99{bottom:766.557000px;}
.y84{bottom:772.672500px;}
.y3a{bottom:778.626000px;}
.y98{bottom:784.647000px;}
.y83{bottom:790.668000px;}
.y39{bottom:796.621500px;}
.y9{bottom:798.570000px;}
.y97{bottom:802.642500px;}
.y82{bottom:808.758000px;}
.y38{bottom:814.711500px;}
.y96{bottom:820.732500px;}
.y37{bottom:832.707000px;}
.y8{bottom:834.660000px;}
.y81{bottom:838.822500px;}
.y36{bottom:850.797000px;}
.y80{bottom:856.818000px;}
.y35{bottom:868.792500px;}
.y7{bottom:870.750000px;}
.y95{bottom:874.908000px;}
.y34{bottom:886.882500px;}
.y94{bottom:892.903500px;}
.y33{bottom:904.878000px;}
.y6{bottom:906.750000px;}
.y93{bottom:910.993500px;}
.y32{bottom:922.968000px;}
.y92{bottom:928.989000px;}
.y31{bottom:940.963500px;}
.y5{bottom:942.840000px;}
.y91{bottom:947.079000px;}
.y30{bottom:959.053500px;}
.y90{bottom:965.074500px;}
.y4{bottom:966.870000px;}
.y2f{bottom:977.049000px;}
.y8f{bottom:983.164500px;}
.y2e{bottom:995.139000px;}
.y8e{bottom:1001.160000px;}
.y3{bottom:1002.960000px;}
.y2d{bottom:1013.134500px;}
.y8d{bottom:1019.250000px;}
.y2{bottom:1026.990000px;}
.y2c{bottom:1031.224500px;}
.y2b{bottom:1049.220000px;}
.y1{bottom:1063.080000px;}
.y2a{bottom:1067.310000px;}
.h4{height:39.313477px;}
.h3{height:42.213867px;}
.h1{height:56.285156px;}
.h2{height:61.066934px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:189.000000px;}
.x9{left:216.013500px;}
.x7{left:243.715500px;}
.x6{left:246.780000px;}
.x5{left:249.750000px;}
.x8{left:270.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.259200pt;}
.lsf{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.360000pt;}
.lsb{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.446400pt;}
.ls13{letter-spacing:0.614400pt;}
.ls11{letter-spacing:0.624000pt;}
.ls12{letter-spacing:0.648000pt;}
.ls10{letter-spacing:0.787200pt;}
.ls17{letter-spacing:0.792000pt;}
.lsd{letter-spacing:3.489600pt;}
.ls16{letter-spacing:11.587200pt;}
.ls3{letter-spacing:34.656000pt;}
.ls1{letter-spacing:42.672000pt;}
.ls2{letter-spacing:56.112000pt;}
.lsc{letter-spacing:58.656000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws15{word-spacing:-13.488000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.200000pt;}
.ws2c{word-spacing:-2.640000pt;}
.ws2f{word-spacing:-2.304000pt;}
.ws2a{word-spacing:-1.008000pt;}
.ws1f{word-spacing:-0.720000pt;}
.ws21{word-spacing:-0.384000pt;}
.ws8{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:0.064000pt;}
.wse{word-spacing:0.096000pt;}
.ws1e{word-spacing:0.144000pt;}
.ws6{word-spacing:0.192000pt;}
.wsc{word-spacing:0.240000pt;}
.ws9{word-spacing:0.256000pt;}
.wsd{word-spacing:0.432000pt;}
.ws16{word-spacing:0.576000pt;}
.ws20{word-spacing:0.912000pt;}
.ws2b{word-spacing:1.200000pt;}
.ws18{word-spacing:1.392000pt;}
.ws17{word-spacing:1.488000pt;}
.ws19{word-spacing:1.536000pt;}
.ws1a{word-spacing:1.872000pt;}
.ws35{word-spacing:2.016000pt;}
.ws22{word-spacing:2.160000pt;}
.ws30{word-spacing:2.496000pt;}
.ws11{word-spacing:3.072000pt;}
.ws31{word-spacing:3.120000pt;}
.ws12{word-spacing:3.312000pt;}
.ws13{word-spacing:3.456000pt;}
.ws14{word-spacing:3.792000pt;}
.ws23{word-spacing:4.080000pt;}
.ws28{word-spacing:4.416000pt;}
.ws26{word-spacing:5.040000pt;}
.ws1c{word-spacing:5.376000pt;}
.ws24{word-spacing:5.712000pt;}
.ws1d{word-spacing:6.672000pt;}
.ws38{word-spacing:7.920000pt;}
.ws3a{word-spacing:9.216000pt;}
.ws2d{word-spacing:10.512000pt;}
.ws25{word-spacing:11.136000pt;}
.ws32{word-spacing:11.760000pt;}
.wsb{word-spacing:12.352000pt;}
.ws2e{word-spacing:13.056000pt;}
.ws37{word-spacing:13.392000pt;}
.ws36{word-spacing:13.680000pt;}
.ws10{word-spacing:14.352000pt;}
.ws39{word-spacing:14.640000pt;}
.ws33{word-spacing:15.312000pt;}
.ws1b{word-spacing:16.560000pt;}
.ws34{word-spacing:18.480000pt;}
.ws29{word-spacing:19.152000pt;}
.ws27{word-spacing:20.112000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.902400pt;}
._5{width:1.910400pt;}
._6{width:6.211200pt;}
._4{width:29.328000pt;}
._3{width:34.752000pt;}
._2{width:45.312000pt;}
._7{width:53.328000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:98.664000pt;}
.y29{bottom:104.280000pt;}
.y7d{bottom:109.368000pt;}
.y5e{bottom:114.660000pt;}
.y28{bottom:120.360000pt;}
.y7c{bottom:125.448000pt;}
.y5d{bottom:130.740000pt;}
.yb7{bottom:136.164000pt;}
.y27{bottom:136.356000pt;}
.y7b{bottom:141.444000pt;}
.y5c{bottom:146.736000pt;}
.yb6{bottom:152.160000pt;}
.y26{bottom:152.436000pt;}
.y7a{bottom:157.524000pt;}
.y5b{bottom:162.816000pt;}
.yb5{bottom:168.240000pt;}
.y25{bottom:168.432000pt;}
.y79{bottom:173.520000pt;}
.y5a{bottom:178.812000pt;}
.yb4{bottom:184.236000pt;}
.y7f{bottom:184.248000pt;}
.y24{bottom:184.512000pt;}
.y78{bottom:189.600000pt;}
.y59{bottom:194.892000pt;}
.y7e{bottom:200.244000pt;}
.yb3{bottom:200.316000pt;}
.y23{bottom:200.508000pt;}
.y77{bottom:205.596000pt;}
.y58{bottom:210.888000pt;}
.yb2{bottom:216.312000pt;}
.y22{bottom:216.588000pt;}
.y76{bottom:221.676000pt;}
.y57{bottom:226.968000pt;}
.yb1{bottom:232.392000pt;}
.y21{bottom:232.584000pt;}
.y75{bottom:237.672000pt;}
.y56{bottom:242.964000pt;}
.yb0{bottom:248.388000pt;}
.y20{bottom:248.664000pt;}
.y74{bottom:253.752000pt;}
.y55{bottom:259.044000pt;}
.yaf{bottom:264.468000pt;}
.y1f{bottom:264.660000pt;}
.y73{bottom:269.748000pt;}
.y54{bottom:275.040000pt;}
.yae{bottom:280.464000pt;}
.y1e{bottom:280.740000pt;}
.y72{bottom:285.828000pt;}
.y53{bottom:291.120000pt;}
.yad{bottom:296.544000pt;}
.y1d{bottom:296.736000pt;}
.y71{bottom:301.824000pt;}
.y52{bottom:307.116000pt;}
.yac{bottom:312.540000pt;}
.y1c{bottom:312.816000pt;}
.y70{bottom:317.904000pt;}
.y51{bottom:323.196000pt;}
.yab{bottom:328.620000pt;}
.y1b{bottom:328.812000pt;}
.y6f{bottom:333.900000pt;}
.y50{bottom:339.276000pt;}
.yaa{bottom:344.616000pt;}
.y1a{bottom:344.892000pt;}
.y6e{bottom:349.980000pt;}
.y4f{bottom:355.272000pt;}
.ya9{bottom:360.696000pt;}
.y19{bottom:360.888000pt;}
.y6d{bottom:365.976000pt;}
.y4e{bottom:371.352000pt;}
.ya8{bottom:376.692000pt;}
.y18{bottom:376.968000pt;}
.y6c{bottom:382.056000pt;}
.y4d{bottom:387.348000pt;}
.ya7{bottom:392.772000pt;}
.y17{bottom:392.964000pt;}
.y6b{bottom:398.052000pt;}
.y4c{bottom:403.428000pt;}
.ya6{bottom:408.768000pt;}
.y6a{bottom:414.132000pt;}
.y4b{bottom:419.424000pt;}
.y16{bottom:419.688000pt;}
.ya5{bottom:424.848000pt;}
.y69{bottom:430.128000pt;}
.y4a{bottom:435.504000pt;}
.ya4{bottom:440.844000pt;}
.y68{bottom:446.208000pt;}
.y15{bottom:446.412000pt;}
.y49{bottom:451.500000pt;}
.y67{bottom:462.204000pt;}
.y14{bottom:462.408000pt;}
.y48{bottom:467.580000pt;}
.y66{bottom:478.284000pt;}
.y13{bottom:478.488000pt;}
.y47{bottom:483.576000pt;}
.ya3{bottom:488.928000pt;}
.y65{bottom:494.280000pt;}
.y12{bottom:494.568000pt;}
.y46{bottom:499.656000pt;}
.ya2{bottom:505.008000pt;}
.y64{bottom:510.360000pt;}
.y11{bottom:510.564000pt;}
.yb8{bottom:511.840000pt;}
.y45{bottom:515.652000pt;}
.ya1{bottom:521.004000pt;}
.y63{bottom:526.440000pt;}
.y10{bottom:526.644000pt;}
.y44{bottom:531.732000pt;}
.ya0{bottom:537.084000pt;}
.y62{bottom:542.436000pt;}
.yf{bottom:542.640000pt;}
.y43{bottom:547.728000pt;}
.y9f{bottom:553.080000pt;}
.y8c{bottom:558.516000pt;}
.ye{bottom:558.720000pt;}
.y42{bottom:563.808000pt;}
.y61{bottom:569.160000pt;}
.y8b{bottom:574.512000pt;}
.y41{bottom:579.804000pt;}
.y60{bottom:585.156000pt;}
.yd{bottom:585.360000pt;}
.y8a{bottom:590.592000pt;}
.y40{bottom:595.884000pt;}
.y9e{bottom:601.236000pt;}
.y89{bottom:606.588000pt;}
.y3f{bottom:611.880000pt;}
.yc{bottom:613.680000pt;}
.y9d{bottom:617.232000pt;}
.y88{bottom:622.668000pt;}
.y3e{bottom:627.960000pt;}
.y9c{bottom:633.312000pt;}
.y87{bottom:638.664000pt;}
.y3d{bottom:643.956000pt;}
.yb{bottom:645.760000pt;}
.y9b{bottom:649.308000pt;}
.y86{bottom:654.744000pt;}
.y3c{bottom:660.036000pt;}
.y9a{bottom:665.388000pt;}
.y85{bottom:670.740000pt;}
.y3b{bottom:676.032000pt;}
.ya{bottom:677.760000pt;}
.y99{bottom:681.384000pt;}
.y84{bottom:686.820000pt;}
.y3a{bottom:692.112000pt;}
.y98{bottom:697.464000pt;}
.y83{bottom:702.816000pt;}
.y39{bottom:708.108000pt;}
.y9{bottom:709.840000pt;}
.y97{bottom:713.460000pt;}
.y82{bottom:718.896000pt;}
.y38{bottom:724.188000pt;}
.y96{bottom:729.540000pt;}
.y37{bottom:740.184000pt;}
.y8{bottom:741.920000pt;}
.y81{bottom:745.620000pt;}
.y36{bottom:756.264000pt;}
.y80{bottom:761.616000pt;}
.y35{bottom:772.260000pt;}
.y7{bottom:774.000000pt;}
.y95{bottom:777.696000pt;}
.y34{bottom:788.340000pt;}
.y94{bottom:793.692000pt;}
.y33{bottom:804.336000pt;}
.y6{bottom:806.000000pt;}
.y93{bottom:809.772000pt;}
.y32{bottom:820.416000pt;}
.y92{bottom:825.768000pt;}
.y31{bottom:836.412000pt;}
.y5{bottom:838.080000pt;}
.y91{bottom:841.848000pt;}
.y30{bottom:852.492000pt;}
.y90{bottom:857.844000pt;}
.y4{bottom:859.440000pt;}
.y2f{bottom:868.488000pt;}
.y8f{bottom:873.924000pt;}
.y2e{bottom:884.568000pt;}
.y8e{bottom:889.920000pt;}
.y3{bottom:891.520000pt;}
.y2d{bottom:900.564000pt;}
.y8d{bottom:906.000000pt;}
.y2{bottom:912.880000pt;}
.y2c{bottom:916.644000pt;}
.y2b{bottom:932.640000pt;}
.y1{bottom:944.960000pt;}
.y2a{bottom:948.720000pt;}
.h4{height:34.945312pt;}
.h3{height:37.523438pt;}
.h1{height:50.031250pt;}
.h2{height:54.281719pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:168.000000pt;}
.x9{left:192.012000pt;}
.x7{left:216.636000pt;}
.x6{left:219.360000pt;}
.x5{left:222.000000pt;}
.x8{left:240.000000pt;}
}




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