
    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_1d5a6a7a5f8d27070e97dc9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_122481b004df0c9943dda273.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.592000;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_8ce97c558061990ed42129eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006000px;}
.ls0{letter-spacing:1.500000px;}
.ls1{letter-spacing:1.512000px;}
.ls3{letter-spacing:13.500000px;}
.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;}
}
.ws2{word-spacing:-24.000000px;}
.wsf{word-spacing:-23.772000px;}
.ws28{word-spacing:-16.500000px;}
.ws17{word-spacing:-15.900000px;}
.wsd{word-spacing:-15.828000px;}
.ws19{word-spacing:-15.654000px;}
.ws2f{word-spacing:-15.624000px;}
.ws1a{word-spacing:-15.468000px;}
.ws20{word-spacing:-15.432000px;}
.ws6{word-spacing:-15.396000px;}
.ws14{word-spacing:-15.384000px;}
.wsa{word-spacing:-15.378000px;}
.ws27{word-spacing:-15.372000px;}
.wsc{word-spacing:-15.324000px;}
.ws2a{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.294000px;}
.ws21{word-spacing:-15.234000px;}
.ws13{word-spacing:-15.102000px;}
.ws23{word-spacing:-15.066000px;}
.wsb{word-spacing:-15.036000px;}
.ws1f{word-spacing:-15.018000px;}
.ws0{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.970000px;}
.ws15{word-spacing:-14.952000px;}
.ws1c{word-spacing:-14.856000px;}
.ws33{word-spacing:-14.844000px;}
.ws8{word-spacing:-14.820000px;}
.ws5{word-spacing:-14.802000px;}
.ws32{word-spacing:-14.742000px;}
.ws22{word-spacing:-14.736000px;}
.ws29{word-spacing:-14.712000px;}
.ws31{word-spacing:-14.706000px;}
.ws4{word-spacing:-14.700000px;}
.ws1b{word-spacing:-14.502000px;}
.ws9{word-spacing:-14.400000px;}
.ws24{word-spacing:-14.364000px;}
.ws1e{word-spacing:-14.298000px;}
.ws2b{word-spacing:-14.136000px;}
.ws7{word-spacing:-14.124000px;}
.ws1d{word-spacing:-13.998000px;}
.ws18{word-spacing:-13.986000px;}
.ws26{word-spacing:-13.758000px;}
.ws2e{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.375000px;}
.wse{word-spacing:-12.294000px;}
.ws10{word-spacing:-11.994000px;}
.ws11{word-spacing:-11.760000px;}
.ws2d{word-spacing:-2.172000px;}
.ws30{word-spacing:-1.566000px;}
.ws2c{word-spacing:-1.032000px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:5.964000px;}
._11{margin-left:-5.988000px;}
._c{margin-left:-4.536000px;}
._3{margin-left:-3.006000px;}
._0{margin-left:-1.500000px;}
._2{width:1.500000px;}
._4{width:2.988000px;}
._1{width:4.500000px;}
._7{width:6.000000px;}
._b{width:7.506000px;}
._d{width:8.988000px;}
._6{width:10.500000px;}
._5{width:12.000000px;}
._12{width:13.518000px;}
._10{width:14.934000px;}
._a{width:16.524000px;}
._13{width:18.060000px;}
._9{width:19.470000px;}
._18{width:21.000000px;}
._14{width:23.904000px;}
._19{width:25.788000px;}
._8{width:27.000000px;}
._17{width:39.000000px;}
._16{width:40.500000px;}
._e{width:49.380000px;}
._15{width:1321.416000px;}
._f{width:1327.428000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs2{font-size:49.500000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:54.000000px;}
.y52{bottom:54.750000px;}
.ya3{bottom:56.250000px;}
.y1d{bottom:65.625000px;}
.y82{bottom:69.750000px;}
.y51{bottom:70.500000px;}
.ya2{bottom:72.000000px;}
.y1c{bottom:81.375000px;}
.y81{bottom:85.500000px;}
.y50{bottom:86.250000px;}
.ya1{bottom:87.750000px;}
.y1b{bottom:97.125000px;}
.y80{bottom:101.250000px;}
.y4f{bottom:102.000000px;}
.ya0{bottom:103.500000px;}
.y1a{bottom:112.875000px;}
.y7f{bottom:117.000000px;}
.y4e{bottom:117.750000px;}
.y9f{bottom:119.250000px;}
.y19{bottom:128.625000px;}
.y7e{bottom:132.750000px;}
.y4d{bottom:133.500000px;}
.y9e{bottom:135.000000px;}
.y18{bottom:144.375000px;}
.y7d{bottom:148.500000px;}
.y4c{bottom:149.250000px;}
.y9d{bottom:150.750000px;}
.y17{bottom:160.125000px;}
.y7c{bottom:164.250000px;}
.y4b{bottom:165.000000px;}
.y9c{bottom:166.500000px;}
.y16{bottom:175.875000px;}
.y7b{bottom:180.000000px;}
.y4a{bottom:180.750000px;}
.y9b{bottom:182.250000px;}
.y15{bottom:191.625000px;}
.y7a{bottom:195.750000px;}
.y49{bottom:196.500000px;}
.y9a{bottom:198.000000px;}
.y14{bottom:207.375000px;}
.y79{bottom:211.500000px;}
.y48{bottom:212.250000px;}
.y99{bottom:213.750000px;}
.y13{bottom:223.125000px;}
.y78{bottom:227.250000px;}
.y47{bottom:228.000000px;}
.y98{bottom:229.500000px;}
.y12{bottom:238.875000px;}
.y77{bottom:243.000000px;}
.y46{bottom:243.750000px;}
.y97{bottom:245.250000px;}
.y11{bottom:254.625000px;}
.y76{bottom:258.750000px;}
.y45{bottom:259.500000px;}
.y96{bottom:261.000000px;}
.y10{bottom:270.375000px;}
.y75{bottom:274.500000px;}
.y44{bottom:275.250000px;}
.y95{bottom:276.750000px;}
.yf{bottom:286.125000px;}
.y74{bottom:290.250000px;}
.y43{bottom:291.000000px;}
.y94{bottom:292.500000px;}
.ye{bottom:301.875000px;}
.y73{bottom:306.000000px;}
.y42{bottom:306.750000px;}
.y93{bottom:308.250000px;}
.yd{bottom:317.625000px;}
.y72{bottom:321.750000px;}
.y41{bottom:322.500000px;}
.y92{bottom:324.000000px;}
.yc{bottom:333.375000px;}
.y71{bottom:337.500000px;}
.y40{bottom:338.250000px;}
.y91{bottom:339.750000px;}
.yb{bottom:349.125000px;}
.y70{bottom:353.250000px;}
.y3f{bottom:354.000000px;}
.y90{bottom:355.500000px;}
.ya{bottom:364.875000px;}
.y6f{bottom:369.000000px;}
.y3e{bottom:369.750000px;}
.y8f{bottom:371.250000px;}
.y9{bottom:380.625000px;}
.y6e{bottom:384.750000px;}
.y3d{bottom:385.500000px;}
.y8e{bottom:387.000000px;}
.y8{bottom:396.375000px;}
.y6d{bottom:400.500000px;}
.y3c{bottom:401.250000px;}
.y8d{bottom:402.750000px;}
.y7{bottom:412.125000px;}
.y6c{bottom:416.250000px;}
.y3b{bottom:417.000000px;}
.y8c{bottom:418.500000px;}
.y6{bottom:427.875000px;}
.y6b{bottom:432.000000px;}
.y3a{bottom:432.750000px;}
.y8b{bottom:434.250000px;}
.y5{bottom:443.625000px;}
.y6a{bottom:447.750000px;}
.y39{bottom:448.500000px;}
.y8a{bottom:450.000000px;}
.y4{bottom:459.375000px;}
.y69{bottom:463.500000px;}
.y38{bottom:464.250000px;}
.y89{bottom:465.750000px;}
.y3{bottom:475.125000px;}
.y68{bottom:479.250000px;}
.y37{bottom:480.000000px;}
.y88{bottom:481.500000px;}
.y2{bottom:490.875000px;}
.y67{bottom:495.000000px;}
.y36{bottom:495.750000px;}
.y87{bottom:497.250000px;}
.y1{bottom:506.625000px;}
.y66{bottom:510.750000px;}
.y35{bottom:511.500000px;}
.y65{bottom:526.500000px;}
.y34{bottom:527.250000px;}
.y86{bottom:528.000000px;}
.y64{bottom:542.250000px;}
.y20{bottom:543.000000px;}
.y85{bottom:545.250000px;}
.y63{bottom:558.000000px;}
.y33{bottom:558.750000px;}
.y1f{bottom:560.250000px;}
.y84{bottom:562.500000px;}
.y62{bottom:573.750000px;}
.y32{bottom:574.500000px;}
.y1e{bottom:577.500000px;}
.y61{bottom:589.500000px;}
.y31{bottom:590.250000px;}
.y60{bottom:605.250000px;}
.y30{bottom:606.000000px;}
.y5f{bottom:621.000000px;}
.y2f{bottom:621.750000px;}
.y5e{bottom:636.750000px;}
.y2e{bottom:637.500000px;}
.y5d{bottom:652.500000px;}
.y2d{bottom:653.250000px;}
.y5c{bottom:668.250000px;}
.y2c{bottom:669.000000px;}
.y5b{bottom:684.000000px;}
.y2b{bottom:684.750000px;}
.y5a{bottom:699.750000px;}
.y2a{bottom:700.500000px;}
.y59{bottom:715.500000px;}
.y29{bottom:716.250000px;}
.y58{bottom:731.250000px;}
.y28{bottom:732.000000px;}
.y57{bottom:747.000000px;}
.y27{bottom:747.750000px;}
.y56{bottom:762.750000px;}
.y26{bottom:763.500000px;}
.y55{bottom:778.500000px;}
.y25{bottom:779.250000px;}
.y54{bottom:794.250000px;}
.y24{bottom:795.000000px;}
.y53{bottom:810.000000px;}
.y22{bottom:810.375000px;}
.y23{bottom:810.750000px;}
.y21{bottom:862.125000px;}
.h5{height:51.216000px;}
.h1{height:64.020000px;}
.h2{height:65.040000px;}
.h3{height:70.422000px;}
.h4{height:71.544000px;}
.h6{height:102.432000px;}
.h0{height:892.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:73.687500px;}
.x7{left:74.812500px;}
.x2{left:89.449500px;}
.x6{left:284.116500px;}
.x3{left:329.220000px;}
.x4{left:344.967000px;}
.x5{left:428.812500px;}
.x8{left:481.482000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005333pt;}
.ls0{letter-spacing:1.333333pt;}
.ls1{letter-spacing:1.344000pt;}
.ls3{letter-spacing:12.000000pt;}
.ws2{word-spacing:-21.333333pt;}
.wsf{word-spacing:-21.130667pt;}
.ws28{word-spacing:-14.666667pt;}
.ws17{word-spacing:-14.133333pt;}
.wsd{word-spacing:-14.069333pt;}
.ws19{word-spacing:-13.914667pt;}
.ws2f{word-spacing:-13.888000pt;}
.ws1a{word-spacing:-13.749333pt;}
.ws20{word-spacing:-13.717333pt;}
.ws6{word-spacing:-13.685333pt;}
.ws14{word-spacing:-13.674667pt;}
.wsa{word-spacing:-13.669333pt;}
.ws27{word-spacing:-13.664000pt;}
.wsc{word-spacing:-13.621333pt;}
.ws2a{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.594667pt;}
.ws21{word-spacing:-13.541333pt;}
.ws13{word-spacing:-13.424000pt;}
.ws23{word-spacing:-13.392000pt;}
.wsb{word-spacing:-13.365333pt;}
.ws1f{word-spacing:-13.349333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws12{word-spacing:-13.306667pt;}
.ws15{word-spacing:-13.290667pt;}
.ws1c{word-spacing:-13.205333pt;}
.ws33{word-spacing:-13.194667pt;}
.ws8{word-spacing:-13.173333pt;}
.ws5{word-spacing:-13.157333pt;}
.ws32{word-spacing:-13.104000pt;}
.ws22{word-spacing:-13.098667pt;}
.ws29{word-spacing:-13.077333pt;}
.ws31{word-spacing:-13.072000pt;}
.ws4{word-spacing:-13.066667pt;}
.ws1b{word-spacing:-12.890667pt;}
.ws9{word-spacing:-12.800000pt;}
.ws24{word-spacing:-12.768000pt;}
.ws1e{word-spacing:-12.709333pt;}
.ws2b{word-spacing:-12.565333pt;}
.ws7{word-spacing:-12.554667pt;}
.ws1d{word-spacing:-12.442667pt;}
.ws18{word-spacing:-12.432000pt;}
.ws26{word-spacing:-12.229333pt;}
.ws2e{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.000000pt;}
.wse{word-spacing:-10.928000pt;}
.ws10{word-spacing:-10.661333pt;}
.ws11{word-spacing:-10.453333pt;}
.ws2d{word-spacing:-1.930667pt;}
.ws30{word-spacing:-1.392000pt;}
.ws2c{word-spacing:-0.917333pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:5.301333pt;}
._11{margin-left:-5.322667pt;}
._c{margin-left:-4.032000pt;}
._3{margin-left:-2.672000pt;}
._0{margin-left:-1.333333pt;}
._2{width:1.333333pt;}
._4{width:2.656000pt;}
._1{width:4.000000pt;}
._7{width:5.333333pt;}
._b{width:6.672000pt;}
._d{width:7.989333pt;}
._6{width:9.333333pt;}
._5{width:10.666667pt;}
._12{width:12.016000pt;}
._10{width:13.274667pt;}
._a{width:14.688000pt;}
._13{width:16.053333pt;}
._9{width:17.306667pt;}
._18{width:18.666667pt;}
._14{width:21.248000pt;}
._19{width:22.922667pt;}
._8{width:24.000000pt;}
._17{width:34.666667pt;}
._16{width:36.000000pt;}
._e{width:43.893333pt;}
._15{width:1174.592000pt;}
._f{width:1179.936000pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:44.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:48.000000pt;}
.y52{bottom:48.666667pt;}
.ya3{bottom:50.000000pt;}
.y1d{bottom:58.333333pt;}
.y82{bottom:62.000000pt;}
.y51{bottom:62.666667pt;}
.ya2{bottom:64.000000pt;}
.y1c{bottom:72.333333pt;}
.y81{bottom:76.000000pt;}
.y50{bottom:76.666667pt;}
.ya1{bottom:78.000000pt;}
.y1b{bottom:86.333333pt;}
.y80{bottom:90.000000pt;}
.y4f{bottom:90.666667pt;}
.ya0{bottom:92.000000pt;}
.y1a{bottom:100.333333pt;}
.y7f{bottom:104.000000pt;}
.y4e{bottom:104.666667pt;}
.y9f{bottom:106.000000pt;}
.y19{bottom:114.333333pt;}
.y7e{bottom:118.000000pt;}
.y4d{bottom:118.666667pt;}
.y9e{bottom:120.000000pt;}
.y18{bottom:128.333333pt;}
.y7d{bottom:132.000000pt;}
.y4c{bottom:132.666667pt;}
.y9d{bottom:134.000000pt;}
.y17{bottom:142.333333pt;}
.y7c{bottom:146.000000pt;}
.y4b{bottom:146.666667pt;}
.y9c{bottom:148.000000pt;}
.y16{bottom:156.333333pt;}
.y7b{bottom:160.000000pt;}
.y4a{bottom:160.666667pt;}
.y9b{bottom:162.000000pt;}
.y15{bottom:170.333333pt;}
.y7a{bottom:174.000000pt;}
.y49{bottom:174.666667pt;}
.y9a{bottom:176.000000pt;}
.y14{bottom:184.333333pt;}
.y79{bottom:188.000000pt;}
.y48{bottom:188.666667pt;}
.y99{bottom:190.000000pt;}
.y13{bottom:198.333333pt;}
.y78{bottom:202.000000pt;}
.y47{bottom:202.666667pt;}
.y98{bottom:204.000000pt;}
.y12{bottom:212.333333pt;}
.y77{bottom:216.000000pt;}
.y46{bottom:216.666667pt;}
.y97{bottom:218.000000pt;}
.y11{bottom:226.333333pt;}
.y76{bottom:230.000000pt;}
.y45{bottom:230.666667pt;}
.y96{bottom:232.000000pt;}
.y10{bottom:240.333333pt;}
.y75{bottom:244.000000pt;}
.y44{bottom:244.666667pt;}
.y95{bottom:246.000000pt;}
.yf{bottom:254.333333pt;}
.y74{bottom:258.000000pt;}
.y43{bottom:258.666667pt;}
.y94{bottom:260.000000pt;}
.ye{bottom:268.333333pt;}
.y73{bottom:272.000000pt;}
.y42{bottom:272.666667pt;}
.y93{bottom:274.000000pt;}
.yd{bottom:282.333333pt;}
.y72{bottom:286.000000pt;}
.y41{bottom:286.666667pt;}
.y92{bottom:288.000000pt;}
.yc{bottom:296.333333pt;}
.y71{bottom:300.000000pt;}
.y40{bottom:300.666667pt;}
.y91{bottom:302.000000pt;}
.yb{bottom:310.333333pt;}
.y70{bottom:314.000000pt;}
.y3f{bottom:314.666667pt;}
.y90{bottom:316.000000pt;}
.ya{bottom:324.333333pt;}
.y6f{bottom:328.000000pt;}
.y3e{bottom:328.666667pt;}
.y8f{bottom:330.000000pt;}
.y9{bottom:338.333333pt;}
.y6e{bottom:342.000000pt;}
.y3d{bottom:342.666667pt;}
.y8e{bottom:344.000000pt;}
.y8{bottom:352.333333pt;}
.y6d{bottom:356.000000pt;}
.y3c{bottom:356.666667pt;}
.y8d{bottom:358.000000pt;}
.y7{bottom:366.333333pt;}
.y6c{bottom:370.000000pt;}
.y3b{bottom:370.666667pt;}
.y8c{bottom:372.000000pt;}
.y6{bottom:380.333333pt;}
.y6b{bottom:384.000000pt;}
.y3a{bottom:384.666667pt;}
.y8b{bottom:386.000000pt;}
.y5{bottom:394.333333pt;}
.y6a{bottom:398.000000pt;}
.y39{bottom:398.666667pt;}
.y8a{bottom:400.000000pt;}
.y4{bottom:408.333333pt;}
.y69{bottom:412.000000pt;}
.y38{bottom:412.666667pt;}
.y89{bottom:414.000000pt;}
.y3{bottom:422.333333pt;}
.y68{bottom:426.000000pt;}
.y37{bottom:426.666667pt;}
.y88{bottom:428.000000pt;}
.y2{bottom:436.333333pt;}
.y67{bottom:440.000000pt;}
.y36{bottom:440.666667pt;}
.y87{bottom:442.000000pt;}
.y1{bottom:450.333333pt;}
.y66{bottom:454.000000pt;}
.y35{bottom:454.666667pt;}
.y65{bottom:468.000000pt;}
.y34{bottom:468.666667pt;}
.y86{bottom:469.333333pt;}
.y64{bottom:482.000000pt;}
.y20{bottom:482.666667pt;}
.y85{bottom:484.666667pt;}
.y63{bottom:496.000000pt;}
.y33{bottom:496.666667pt;}
.y1f{bottom:498.000000pt;}
.y84{bottom:500.000000pt;}
.y62{bottom:510.000000pt;}
.y32{bottom:510.666667pt;}
.y1e{bottom:513.333333pt;}
.y61{bottom:524.000000pt;}
.y31{bottom:524.666667pt;}
.y60{bottom:538.000000pt;}
.y30{bottom:538.666667pt;}
.y5f{bottom:552.000000pt;}
.y2f{bottom:552.666667pt;}
.y5e{bottom:566.000000pt;}
.y2e{bottom:566.666667pt;}
.y5d{bottom:580.000000pt;}
.y2d{bottom:580.666667pt;}
.y5c{bottom:594.000000pt;}
.y2c{bottom:594.666667pt;}
.y5b{bottom:608.000000pt;}
.y2b{bottom:608.666667pt;}
.y5a{bottom:622.000000pt;}
.y2a{bottom:622.666667pt;}
.y59{bottom:636.000000pt;}
.y29{bottom:636.666667pt;}
.y58{bottom:650.000000pt;}
.y28{bottom:650.666667pt;}
.y57{bottom:664.000000pt;}
.y27{bottom:664.666667pt;}
.y56{bottom:678.000000pt;}
.y26{bottom:678.666667pt;}
.y55{bottom:692.000000pt;}
.y25{bottom:692.666667pt;}
.y54{bottom:706.000000pt;}
.y24{bottom:706.666667pt;}
.y53{bottom:720.000000pt;}
.y22{bottom:720.333333pt;}
.y23{bottom:720.666667pt;}
.y21{bottom:766.333333pt;}
.h5{height:45.525333pt;}
.h1{height:56.906667pt;}
.h2{height:57.813333pt;}
.h3{height:62.597333pt;}
.h4{height:63.594667pt;}
.h6{height:91.050667pt;}
.h0{height:793.333333pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:65.500000pt;}
.x7{left:66.500000pt;}
.x2{left:79.510667pt;}
.x6{left:252.548000pt;}
.x3{left:292.640000pt;}
.x4{left:306.637333pt;}
.x5{left:381.166667pt;}
.x8{left:427.984000pt;}
}




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