
    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_66b9db1c0a9988fab2e6ef66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_073feac13b71137651a71f23.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_1035267c9782e09a89da334d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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;}
.ls13{letter-spacing:-1.494000px;}
.ls10{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.208200px;}
.ls19{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.306600px;}
.ls11{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.134720px;}
.ls3{letter-spacing:1.330560px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls1{letter-spacing:2.160000px;}
.ls18{letter-spacing:11.466720px;}
.ls15{letter-spacing:41.706720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.ws3{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-2611.368000px;}
._6{margin-left:-1588.596480px;}
._4{margin-left:-1360.399680px;}
._5{margin-left:-991.509120px;}
._7{margin-left:-570.173760px;}
._8{margin-left:-9.604800px;}
._13{margin-left:-8.430480px;}
._9{margin-left:-5.082720px;}
._a{margin-left:-3.643200px;}
._f{margin-left:-2.234160px;}
._3{margin-left:-1.059840px;}
._0{width:1.296000px;}
._1{width:3.090000px;}
._12{width:4.299840px;}
._c{width:5.381280px;}
._b{width:6.394320px;}
._11{width:8.016480px;}
._10{width:9.429840px;}
._d{width:10.596240px;}
._e{width:11.702160px;}
._14{width:13.190400px;}
._15{width:16.452720px;}
._16{width:17.868240px;}
._17{width:18.943920px;}
._1d{width:32.968800px;}
._1e{width:33.976560px;}
._18{width:73.844640px;}
._19{width:75.252960px;}
._1f{width:81.254880px;}
._1b{width:82.767600px;}
._1c{width:83.783520px;}
._1a{width:262.387440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.300000px;}
.y9a{bottom:94.680000px;}
.y33{bottom:99.180000px;}
.y75{bottom:105.480000px;}
.yb4{bottom:112.680000px;}
.y69{bottom:114.480000px;}
.y32{bottom:118.980000px;}
.y74{bottom:125.460000px;}
.yb3{bottom:132.516000px;}
.y68{bottom:134.496000px;}
.y31{bottom:138.816000px;}
.y73{bottom:145.296000px;}
.yb2{bottom:152.490000px;}
.y67{bottom:154.290000px;}
.y30{bottom:158.790000px;}
.yb1{bottom:172.290000px;}
.y66{bottom:174.090000px;}
.y2f{bottom:178.590000px;}
.yb0{bottom:192.090000px;}
.y65{bottom:193.890000px;}
.y2e{bottom:198.390000px;}
.yaf{bottom:211.890000px;}
.y64{bottom:213.690000px;}
.y2d{bottom:218.190000px;}
.yae{bottom:231.690000px;}
.y63{bottom:233.670000px;}
.y2c{bottom:237.990000px;}
.y99{bottom:242.670000px;}
.yad{bottom:251.670000px;}
.y62{bottom:253.470000px;}
.y2b{bottom:257.970000px;}
.y98{bottom:262.470000px;}
.yac{bottom:271.470000px;}
.y61{bottom:273.270000px;}
.y2a{bottom:277.770000px;}
.y97{bottom:282.270000px;}
.yab{bottom:291.270000px;}
.y60{bottom:293.070000px;}
.y29{bottom:297.570000px;}
.y96{bottom:302.070000px;}
.yaa{bottom:311.070000px;}
.y5f{bottom:312.870000px;}
.y28{bottom:317.370000px;}
.y95{bottom:321.870000px;}
.ya9{bottom:330.870000px;}
.y5e{bottom:332.850000px;}
.y27{bottom:337.170000px;}
.y94{bottom:341.850000px;}
.ya8{bottom:350.850000px;}
.y5d{bottom:352.650000px;}
.y26{bottom:357.150000px;}
.y93{bottom:361.650000px;}
.ya7{bottom:370.650000px;}
.y5c{bottom:372.450000px;}
.y25{bottom:376.950000px;}
.y92{bottom:381.495000px;}
.ya6{bottom:390.495000px;}
.y5b{bottom:392.295000px;}
.y24{bottom:396.795000px;}
.y91{bottom:401.295000px;}
.ya5{bottom:410.295000px;}
.y5a{bottom:412.095000px;}
.y23{bottom:416.595000px;}
.y90{bottom:421.095000px;}
.ya4{bottom:430.095000px;}
.y59{bottom:432.075000px;}
.y22{bottom:436.395000px;}
.y8f{bottom:441.075000px;}
.ya3{bottom:450.075000px;}
.y58{bottom:451.875000px;}
.y21{bottom:456.375000px;}
.y8e{bottom:460.875000px;}
.ya2{bottom:469.875000px;}
.y57{bottom:471.675000px;}
.y20{bottom:476.175000px;}
.y8d{bottom:480.675000px;}
.ya1{bottom:489.675000px;}
.y56{bottom:491.475000px;}
.y1f{bottom:495.975000px;}
.y8c{bottom:500.475000px;}
.ya0{bottom:509.475000px;}
.y55{bottom:511.275000px;}
.y1e{bottom:515.775000px;}
.y72{bottom:520.275000px;}
.y9f{bottom:529.275000px;}
.y54{bottom:531.255000px;}
.y1d{bottom:535.575000px;}
.y71{bottom:540.255000px;}
.y9e{bottom:549.255000px;}
.y53{bottom:551.055000px;}
.y1c{bottom:555.555000px;}
.y70{bottom:560.055000px;}
.y9d{bottom:569.055000px;}
.y52{bottom:570.855000px;}
.y1b{bottom:575.355000px;}
.y6f{bottom:579.855000px;}
.y9c{bottom:588.855000px;}
.y51{bottom:590.655000px;}
.y1a{bottom:595.155000px;}
.y6e{bottom:599.655000px;}
.y9b{bottom:608.655000px;}
.y50{bottom:610.455000px;}
.y19{bottom:614.955000px;}
.y6d{bottom:619.455000px;}
.y8b{bottom:628.455000px;}
.y4f{bottom:630.435000px;}
.y18{bottom:634.785000px;}
.y6c{bottom:639.465000px;}
.y8a{bottom:648.465000px;}
.y4e{bottom:650.265000px;}
.y17{bottom:654.765000px;}
.y6b{bottom:659.265000px;}
.y89{bottom:668.265000px;}
.y16{bottom:674.565000px;}
.y4d{bottom:679.065000px;}
.y88{bottom:688.065000px;}
.y15{bottom:694.365000px;}
.y4c{bottom:698.865000px;}
.y87{bottom:707.865000px;}
.y14{bottom:716.505000px;}
.y4b{bottom:718.665000px;}
.y86{bottom:727.665000px;}
.y4a{bottom:738.645000px;}
.y13{bottom:745.305000px;}
.y85{bottom:747.645000px;}
.y49{bottom:758.445000px;}
.y12{bottom:765.105000px;}
.y84{bottom:767.445000px;}
.y48{bottom:778.245000px;}
.y11{bottom:784.905000px;}
.y83{bottom:787.245000px;}
.y47{bottom:798.045000px;}
.y10{bottom:804.705000px;}
.y82{bottom:807.045000px;}
.y46{bottom:817.845000px;}
.yf{bottom:824.685000px;}
.y81{bottom:826.845000px;}
.y45{bottom:837.825000px;}
.ye{bottom:844.485000px;}
.y80{bottom:846.825000px;}
.y44{bottom:857.625000px;}
.yd{bottom:864.285000px;}
.y7f{bottom:866.625000px;}
.y43{bottom:877.425000px;}
.yc{bottom:884.085000px;}
.y7e{bottom:886.470000px;}
.y42{bottom:897.270000px;}
.yb{bottom:903.930000px;}
.y7d{bottom:906.270000px;}
.y41{bottom:917.070000px;}
.ya{bottom:926.070000px;}
.y40{bottom:937.050000px;}
.y9{bottom:945.870000px;}
.y7c{bottom:946.050000px;}
.y3f{bottom:956.850000px;}
.y7b{bottom:965.850000px;}
.y8{bottom:966.390000px;}
.y3e{bottom:976.650000px;}
.y7a{bottom:985.650000px;}
.y3d{bottom:996.450000px;}
.y79{bottom:1005.450000px;}
.y7{bottom:1009.230000px;}
.y3c{bottom:1016.250000px;}
.y78{bottom:1025.250000px;}
.y3b{bottom:1036.230000px;}
.y77{bottom:1045.230000px;}
.y5{bottom:1050.630000px;}
.y3a{bottom:1056.030000px;}
.y76{bottom:1065.030000px;}
.y6a{bottom:1075.830000px;}
.y4{bottom:1084.470000px;}
.y39{bottom:1084.830000px;}
.y38{bottom:1104.630000px;}
.y3{bottom:1118.310000px;}
.y37{bottom:1124.430000px;}
.y36{bottom:1144.440000px;}
.y2{bottom:1152.180000px;}
.y35{bottom:1164.240000px;}
.y1{bottom:1184.580000px;}
.y34{bottom:1193.580000px;}
.h5{height:41.726953px;}
.h6{height:42.164648px;}
.h7{height:43.506914px;}
.h3{height:46.251562px;}
.h2{height:46.736719px;}
.h4{height:67.565039px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:86.399987px;}
.x2{left:96.515987px;}
.x4{left:113.435987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.328000pt;}
.ls10{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.185067pt;}
.ls19{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.272533pt;}
.ls11{letter-spacing:0.320000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls3{letter-spacing:1.182720pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls1{letter-spacing:1.920000pt;}
.ls18{letter-spacing:10.192640pt;}
.ls15{letter-spacing:37.072640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.ws3{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-2321.216000pt;}
._6{margin-left:-1412.085760pt;}
._4{margin-left:-1209.244160pt;}
._5{margin-left:-881.341440pt;}
._7{margin-left:-506.821120pt;}
._8{margin-left:-8.537600pt;}
._13{margin-left:-7.493760pt;}
._9{margin-left:-4.517973pt;}
._a{margin-left:-3.238400pt;}
._f{margin-left:-1.985920pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._1{width:2.746667pt;}
._12{width:3.822080pt;}
._c{width:4.783360pt;}
._b{width:5.683840pt;}
._11{width:7.125760pt;}
._10{width:8.382080pt;}
._d{width:9.418880pt;}
._e{width:10.401920pt;}
._14{width:11.724800pt;}
._15{width:14.624640pt;}
._16{width:15.882880pt;}
._17{width:16.839040pt;}
._1d{width:29.305600pt;}
._1e{width:30.201387pt;}
._18{width:65.639680pt;}
._19{width:66.891520pt;}
._1f{width:72.226560pt;}
._1b{width:73.571200pt;}
._1c{width:74.474240pt;}
._1a{width:233.233280pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.600000pt;}
.y9a{bottom:84.160000pt;}
.y33{bottom:88.160000pt;}
.y75{bottom:93.760000pt;}
.yb4{bottom:100.160000pt;}
.y69{bottom:101.760000pt;}
.y32{bottom:105.760000pt;}
.y74{bottom:111.520000pt;}
.yb3{bottom:117.792000pt;}
.y68{bottom:119.552000pt;}
.y31{bottom:123.392000pt;}
.y73{bottom:129.152000pt;}
.yb2{bottom:135.546667pt;}
.y67{bottom:137.146667pt;}
.y30{bottom:141.146667pt;}
.yb1{bottom:153.146667pt;}
.y66{bottom:154.746667pt;}
.y2f{bottom:158.746667pt;}
.yb0{bottom:170.746667pt;}
.y65{bottom:172.346667pt;}
.y2e{bottom:176.346667pt;}
.yaf{bottom:188.346667pt;}
.y64{bottom:189.946667pt;}
.y2d{bottom:193.946667pt;}
.yae{bottom:205.946667pt;}
.y63{bottom:207.706667pt;}
.y2c{bottom:211.546667pt;}
.y99{bottom:215.706667pt;}
.yad{bottom:223.706667pt;}
.y62{bottom:225.306667pt;}
.y2b{bottom:229.306667pt;}
.y98{bottom:233.306667pt;}
.yac{bottom:241.306667pt;}
.y61{bottom:242.906667pt;}
.y2a{bottom:246.906667pt;}
.y97{bottom:250.906667pt;}
.yab{bottom:258.906667pt;}
.y60{bottom:260.506667pt;}
.y29{bottom:264.506667pt;}
.y96{bottom:268.506667pt;}
.yaa{bottom:276.506667pt;}
.y5f{bottom:278.106667pt;}
.y28{bottom:282.106667pt;}
.y95{bottom:286.106667pt;}
.ya9{bottom:294.106667pt;}
.y5e{bottom:295.866667pt;}
.y27{bottom:299.706667pt;}
.y94{bottom:303.866667pt;}
.ya8{bottom:311.866667pt;}
.y5d{bottom:313.466667pt;}
.y26{bottom:317.466667pt;}
.y93{bottom:321.466667pt;}
.ya7{bottom:329.466667pt;}
.y5c{bottom:331.066667pt;}
.y25{bottom:335.066667pt;}
.y92{bottom:339.106667pt;}
.ya6{bottom:347.106667pt;}
.y5b{bottom:348.706667pt;}
.y24{bottom:352.706667pt;}
.y91{bottom:356.706667pt;}
.ya5{bottom:364.706667pt;}
.y5a{bottom:366.306667pt;}
.y23{bottom:370.306667pt;}
.y90{bottom:374.306667pt;}
.ya4{bottom:382.306667pt;}
.y59{bottom:384.066667pt;}
.y22{bottom:387.906667pt;}
.y8f{bottom:392.066667pt;}
.ya3{bottom:400.066667pt;}
.y58{bottom:401.666667pt;}
.y21{bottom:405.666667pt;}
.y8e{bottom:409.666667pt;}
.ya2{bottom:417.666667pt;}
.y57{bottom:419.266667pt;}
.y20{bottom:423.266667pt;}
.y8d{bottom:427.266667pt;}
.ya1{bottom:435.266667pt;}
.y56{bottom:436.866667pt;}
.y1f{bottom:440.866667pt;}
.y8c{bottom:444.866667pt;}
.ya0{bottom:452.866667pt;}
.y55{bottom:454.466667pt;}
.y1e{bottom:458.466667pt;}
.y72{bottom:462.466667pt;}
.y9f{bottom:470.466667pt;}
.y54{bottom:472.226667pt;}
.y1d{bottom:476.066667pt;}
.y71{bottom:480.226667pt;}
.y9e{bottom:488.226667pt;}
.y53{bottom:489.826667pt;}
.y1c{bottom:493.826667pt;}
.y70{bottom:497.826667pt;}
.y9d{bottom:505.826667pt;}
.y52{bottom:507.426667pt;}
.y1b{bottom:511.426667pt;}
.y6f{bottom:515.426667pt;}
.y9c{bottom:523.426667pt;}
.y51{bottom:525.026667pt;}
.y1a{bottom:529.026667pt;}
.y6e{bottom:533.026667pt;}
.y9b{bottom:541.026667pt;}
.y50{bottom:542.626667pt;}
.y19{bottom:546.626667pt;}
.y6d{bottom:550.626667pt;}
.y8b{bottom:558.626667pt;}
.y4f{bottom:560.386667pt;}
.y18{bottom:564.253333pt;}
.y6c{bottom:568.413333pt;}
.y8a{bottom:576.413333pt;}
.y4e{bottom:578.013333pt;}
.y17{bottom:582.013333pt;}
.y6b{bottom:586.013333pt;}
.y89{bottom:594.013333pt;}
.y16{bottom:599.613333pt;}
.y4d{bottom:603.613333pt;}
.y88{bottom:611.613333pt;}
.y15{bottom:617.213333pt;}
.y4c{bottom:621.213333pt;}
.y87{bottom:629.213333pt;}
.y14{bottom:636.893333pt;}
.y4b{bottom:638.813333pt;}
.y86{bottom:646.813333pt;}
.y4a{bottom:656.573333pt;}
.y13{bottom:662.493333pt;}
.y85{bottom:664.573333pt;}
.y49{bottom:674.173333pt;}
.y12{bottom:680.093333pt;}
.y84{bottom:682.173333pt;}
.y48{bottom:691.773333pt;}
.y11{bottom:697.693333pt;}
.y83{bottom:699.773333pt;}
.y47{bottom:709.373333pt;}
.y10{bottom:715.293333pt;}
.y82{bottom:717.373333pt;}
.y46{bottom:726.973333pt;}
.yf{bottom:733.053333pt;}
.y81{bottom:734.973333pt;}
.y45{bottom:744.733333pt;}
.ye{bottom:750.653333pt;}
.y80{bottom:752.733333pt;}
.y44{bottom:762.333333pt;}
.yd{bottom:768.253333pt;}
.y7f{bottom:770.333333pt;}
.y43{bottom:779.933333pt;}
.yc{bottom:785.853333pt;}
.y7e{bottom:787.973333pt;}
.y42{bottom:797.573333pt;}
.yb{bottom:803.493333pt;}
.y7d{bottom:805.573333pt;}
.y41{bottom:815.173333pt;}
.ya{bottom:823.173333pt;}
.y40{bottom:832.933333pt;}
.y9{bottom:840.773333pt;}
.y7c{bottom:840.933333pt;}
.y3f{bottom:850.533333pt;}
.y7b{bottom:858.533333pt;}
.y8{bottom:859.013333pt;}
.y3e{bottom:868.133333pt;}
.y7a{bottom:876.133333pt;}
.y3d{bottom:885.733333pt;}
.y79{bottom:893.733333pt;}
.y7{bottom:897.093333pt;}
.y3c{bottom:903.333333pt;}
.y78{bottom:911.333333pt;}
.y3b{bottom:921.093333pt;}
.y77{bottom:929.093333pt;}
.y5{bottom:933.893333pt;}
.y3a{bottom:938.693333pt;}
.y76{bottom:946.693333pt;}
.y6a{bottom:956.293333pt;}
.y4{bottom:963.973333pt;}
.y39{bottom:964.293333pt;}
.y38{bottom:981.893333pt;}
.y3{bottom:994.053333pt;}
.y37{bottom:999.493333pt;}
.y36{bottom:1017.280000pt;}
.y2{bottom:1024.160000pt;}
.y35{bottom:1034.880000pt;}
.y1{bottom:1052.960000pt;}
.y34{bottom:1060.960000pt;}
.h5{height:37.090625pt;}
.h6{height:37.479688pt;}
.h7{height:38.672812pt;}
.h3{height:41.112500pt;}
.h2{height:41.543750pt;}
.h4{height:60.057813pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:76.799988pt;}
.x2{left:85.791988pt;}
.x4{left:100.831988pt;}
}




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