
    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_06e84c8a91ca48cfb38cc057.woff')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_a849981607499ed65653c2e8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_b9a2cdf03a103cdc22e1b02d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_fb7c524d8e973ac54a5f6dc7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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:ff5;src:url('chunks/assets/font_7d4ffc89e81e7d9ab4279593.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.494000px;}
.ls10{letter-spacing:-1.332000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.208200px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.134720px;}
.ls1{letter-spacing:1.440000px;}
.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;}
.ls3{letter-spacing:2.050560px;}
.ls13{letter-spacing:15.066720px;}
.ls12{letter-spacing:43.866720px;}
.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:-16.560000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.446000px;}
.ws6{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-2598.738000px;}
._5{margin-left:-1366.159680px;}
._b{margin-left:-1007.870400px;}
._7{margin-left:-931.253760px;}
._a{margin-left:-872.076000px;}
._d{margin-left:-575.213760px;}
._8{margin-left:-535.046400px;}
._c{margin-left:-182.779200px;}
._9{margin-left:-33.120000px;}
._1c{margin-left:-9.760800px;}
._6{margin-left:-8.213760px;}
._1b{margin-left:-7.058640px;}
._10{margin-left:-6.035760px;}
._e{margin-left:-4.359840px;}
._f{margin-left:-3.173760px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._11{width:3.997440px;}
._12{width:5.027520px;}
._13{width:6.045840px;}
._15{width:7.913280px;}
._16{width:9.288000px;}
._14{width:10.313280px;}
._17{width:11.538000px;}
._1a{width:13.550160px;}
._19{width:16.946640px;}
._1e{width:27.077040px;}
._1d{width:29.376720px;}
._18{width:126.453360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.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.336000px;}
.y6c{bottom:92.736000px;}
.y34{bottom:99.036000px;}
.yc7{bottom:103.536000px;}
.y6b{bottom:112.536000px;}
.yc6{bottom:114.336000px;}
.y33{bottom:118.836000px;}
.y8d{bottom:123.336000px;}
.ybd{bottom:125.316000px;}
.y6a{bottom:132.336000px;}
.yc5{bottom:134.316000px;}
.y32{bottom:138.636000px;}
.y8c{bottom:143.316000px;}
.ybc{bottom:145.116000px;}
.y69{bottom:152.310000px;}
.yc4{bottom:154.110000px;}
.y31{bottom:158.430000px;}
.y8b{bottom:163.110000px;}
.ybb{bottom:164.910000px;}
.y68{bottom:172.110000px;}
.yc3{bottom:173.910000px;}
.y30{bottom:178.230000px;}
.y8a{bottom:182.910000px;}
.yba{bottom:184.710000px;}
.y67{bottom:191.910000px;}
.yc2{bottom:193.710000px;}
.y2f{bottom:198.210000px;}
.y89{bottom:202.710000px;}
.yb9{bottom:204.510000px;}
.y66{bottom:211.710000px;}
.yc1{bottom:213.510000px;}
.y2e{bottom:218.010000px;}
.y88{bottom:222.510000px;}
.yb8{bottom:224.490000px;}
.y65{bottom:231.510000px;}
.yc0{bottom:233.490000px;}
.y2d{bottom:237.810000px;}
.y87{bottom:242.490000px;}
.yb7{bottom:244.290000px;}
.y64{bottom:251.490000px;}
.ybf{bottom:253.290000px;}
.y2c{bottom:257.610000px;}
.y86{bottom:262.290000px;}
.yb6{bottom:264.090000px;}
.y63{bottom:271.290000px;}
.ybe{bottom:273.090000px;}
.y2b{bottom:277.410000px;}
.y85{bottom:282.135000px;}
.y62{bottom:291.135000px;}
.yb5{bottom:292.935000px;}
.y2a{bottom:297.435000px;}
.y84{bottom:301.935000px;}
.y61{bottom:310.935000px;}
.yb4{bottom:312.735000px;}
.y29{bottom:317.235000px;}
.y83{bottom:321.735000px;}
.y60{bottom:330.735000px;}
.yb3{bottom:332.715000px;}
.y28{bottom:337.035000px;}
.y82{bottom:341.715000px;}
.y5f{bottom:350.715000px;}
.yb2{bottom:352.515000px;}
.y27{bottom:356.835000px;}
.y81{bottom:361.515000px;}
.y5e{bottom:370.515000px;}
.yb1{bottom:372.315000px;}
.y26{bottom:376.635000px;}
.y80{bottom:381.315000px;}
.y5d{bottom:390.315000px;}
.yb0{bottom:392.115000px;}
.y25{bottom:396.615000px;}
.y7f{bottom:401.115000px;}
.y5c{bottom:410.115000px;}
.yaf{bottom:411.915000px;}
.y24{bottom:416.415000px;}
.y7e{bottom:420.915000px;}
.y5b{bottom:429.915000px;}
.yae{bottom:431.895000px;}
.y23{bottom:436.215000px;}
.y7d{bottom:440.895000px;}
.y5a{bottom:449.895000px;}
.yad{bottom:451.695000px;}
.y22{bottom:456.015000px;}
.y7c{bottom:460.695000px;}
.y59{bottom:469.695000px;}
.yac{bottom:471.495000px;}
.y21{bottom:475.815000px;}
.y7b{bottom:480.495000px;}
.y58{bottom:489.495000px;}
.yab{bottom:491.295000px;}
.y20{bottom:495.615000px;}
.y7a{bottom:500.295000px;}
.y57{bottom:509.295000px;}
.yaa{bottom:511.095000px;}
.y1f{bottom:515.595000px;}
.y79{bottom:520.095000px;}
.y56{bottom:529.095000px;}
.ya9{bottom:531.075000px;}
.y1e{bottom:535.395000px;}
.y78{bottom:540.075000px;}
.y55{bottom:549.075000px;}
.ya8{bottom:550.875000px;}
.y1d{bottom:555.195000px;}
.y77{bottom:559.875000px;}
.y54{bottom:568.905000px;}
.ya7{bottom:570.705000px;}
.y1c{bottom:575.025000px;}
.y76{bottom:579.705000px;}
.y53{bottom:588.705000px;}
.ya6{bottom:590.505000px;}
.y1b{bottom:594.825000px;}
.y75{bottom:599.505000px;}
.y52{bottom:608.505000px;}
.ya5{bottom:610.305000px;}
.y1a{bottom:614.805000px;}
.y74{bottom:619.305000px;}
.y51{bottom:628.305000px;}
.ya4{bottom:630.285000px;}
.y19{bottom:634.605000px;}
.y73{bottom:639.285000px;}
.y50{bottom:648.285000px;}
.ya3{bottom:650.085000px;}
.y18{bottom:656.745000px;}
.y72{bottom:659.085000px;}
.y4f{bottom:668.085000px;}
.ya2{bottom:669.885000px;}
.y71{bottom:678.885000px;}
.y17{bottom:685.545000px;}
.y4e{bottom:687.885000px;}
.ya1{bottom:689.685000px;}
.y70{bottom:698.685000px;}
.y16{bottom:705.345000px;}
.y4d{bottom:707.685000px;}
.ya0{bottom:709.485000px;}
.y6f{bottom:718.485000px;}
.y15{bottom:725.145000px;}
.y4c{bottom:727.485000px;}
.y6e{bottom:738.465000px;}
.y14{bottom:744.945000px;}
.y4b{bottom:747.465000px;}
.y6d{bottom:758.265000px;}
.y13{bottom:764.925000px;}
.y4a{bottom:767.265000px;}
.y9f{bottom:778.065000px;}
.y12{bottom:784.725000px;}
.y49{bottom:787.065000px;}
.y9e{bottom:797.865000px;}
.y11{bottom:804.525000px;}
.y48{bottom:806.865000px;}
.y9d{bottom:817.665000px;}
.y10{bottom:824.325000px;}
.y47{bottom:826.665000px;}
.y9c{bottom:837.645000px;}
.yf{bottom:844.125000px;}
.y46{bottom:846.645000px;}
.y9b{bottom:857.490000px;}
.ye{bottom:864.150000px;}
.y45{bottom:866.490000px;}
.y9a{bottom:877.290000px;}
.yd{bottom:886.110000px;}
.y44{bottom:886.290000px;}
.y99{bottom:897.090000px;}
.y43{bottom:906.090000px;}
.yc{bottom:911.130000px;}
.y98{bottom:916.890000px;}
.y42{bottom:925.890000px;}
.yb{bottom:931.110000px;}
.y97{bottom:936.870000px;}
.y41{bottom:945.870000px;}
.ya{bottom:946.230000px;}
.y96{bottom:956.670000px;}
.y40{bottom:965.670000px;}
.y9{bottom:967.470000px;}
.y95{bottom:976.470000px;}
.y3f{bottom:985.470000px;}
.y8{bottom:990.870000px;}
.y94{bottom:996.270000px;}
.y3e{bottom:1005.270000px;}
.y93{bottom:1016.070000px;}
.y7{bottom:1022.730000px;}
.y3d{bottom:1025.070000px;}
.y92{bottom:1036.050000px;}
.y3c{bottom:1045.050000px;}
.y91{bottom:1055.850000px;}
.y5{bottom:1061.070000px;}
.y3b{bottom:1064.850000px;}
.y90{bottom:1075.650000px;}
.y3a{bottom:1084.650000px;}
.y4{bottom:1091.850000px;}
.y8f{bottom:1095.450000px;}
.y39{bottom:1104.450000px;}
.y8e{bottom:1115.250000px;}
.y3{bottom:1122.810000px;}
.y38{bottom:1124.250000px;}
.y37{bottom:1144.260000px;}
.y2{bottom:1153.620000px;}
.y36{bottom:1164.060000px;}
.y1{bottom:1184.400000px;}
.y35{bottom:1193.400000px;}
.h8{height:37.771172px;}
.hb{height:49.868086px;}
.ha{height:51.210352px;}
.h9{height:58.651172px;}
.hc{height:61.423863px;}
.h6{height:62.211094px;}
.h3{height:65.010937px;}
.h7{height:67.232813px;}
.h2{height:68.956875px;}
.h4{height:82.059961px;}
.h5{height:99.687656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
.x2{left:314.354987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.328000pt;}
.ls10{letter-spacing:-1.184000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls1{letter-spacing:1.280000pt;}
.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;}
.ls3{letter-spacing:1.822720pt;}
.ls13{letter-spacing:13.392640pt;}
.ls12{letter-spacing:38.992640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.952000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-2309.989333pt;}
._5{margin-left:-1214.364160pt;}
._b{margin-left:-895.884800pt;}
._7{margin-left:-827.781120pt;}
._a{margin-left:-775.178667pt;}
._d{margin-left:-511.301120pt;}
._8{margin-left:-475.596800pt;}
._c{margin-left:-162.470400pt;}
._9{margin-left:-29.440000pt;}
._1c{margin-left:-8.676267pt;}
._6{margin-left:-7.301120pt;}
._1b{margin-left:-6.274347pt;}
._10{margin-left:-5.365120pt;}
._e{margin-left:-3.875413pt;}
._f{margin-left:-2.821120pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._11{width:3.553280pt;}
._12{width:4.468907pt;}
._13{width:5.374080pt;}
._15{width:7.034027pt;}
._16{width:8.256000pt;}
._14{width:9.167360pt;}
._17{width:10.256000pt;}
._1a{width:12.044587pt;}
._19{width:15.063680pt;}
._1e{width:24.068480pt;}
._1d{width:26.112640pt;}
._18{width:112.402987pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.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.632000pt;}
.y6c{bottom:82.432000pt;}
.y34{bottom:88.032000pt;}
.yc7{bottom:92.032000pt;}
.y6b{bottom:100.032000pt;}
.yc6{bottom:101.632000pt;}
.y33{bottom:105.632000pt;}
.y8d{bottom:109.632000pt;}
.ybd{bottom:111.392000pt;}
.y6a{bottom:117.632000pt;}
.yc5{bottom:119.392000pt;}
.y32{bottom:123.232000pt;}
.y8c{bottom:127.392000pt;}
.ybc{bottom:128.992000pt;}
.y69{bottom:135.386667pt;}
.yc4{bottom:136.986667pt;}
.y31{bottom:140.826667pt;}
.y8b{bottom:144.986667pt;}
.ybb{bottom:146.586667pt;}
.y68{bottom:152.986667pt;}
.yc3{bottom:154.586667pt;}
.y30{bottom:158.426667pt;}
.y8a{bottom:162.586667pt;}
.yba{bottom:164.186667pt;}
.y67{bottom:170.586667pt;}
.yc2{bottom:172.186667pt;}
.y2f{bottom:176.186667pt;}
.y89{bottom:180.186667pt;}
.yb9{bottom:181.786667pt;}
.y66{bottom:188.186667pt;}
.yc1{bottom:189.786667pt;}
.y2e{bottom:193.786667pt;}
.y88{bottom:197.786667pt;}
.yb8{bottom:199.546667pt;}
.y65{bottom:205.786667pt;}
.yc0{bottom:207.546667pt;}
.y2d{bottom:211.386667pt;}
.y87{bottom:215.546667pt;}
.yb7{bottom:217.146667pt;}
.y64{bottom:223.546667pt;}
.ybf{bottom:225.146667pt;}
.y2c{bottom:228.986667pt;}
.y86{bottom:233.146667pt;}
.yb6{bottom:234.746667pt;}
.y63{bottom:241.146667pt;}
.ybe{bottom:242.746667pt;}
.y2b{bottom:246.586667pt;}
.y85{bottom:250.786667pt;}
.y62{bottom:258.786667pt;}
.yb5{bottom:260.386667pt;}
.y2a{bottom:264.386667pt;}
.y84{bottom:268.386667pt;}
.y61{bottom:276.386667pt;}
.yb4{bottom:277.986667pt;}
.y29{bottom:281.986667pt;}
.y83{bottom:285.986667pt;}
.y60{bottom:293.986667pt;}
.yb3{bottom:295.746667pt;}
.y28{bottom:299.586667pt;}
.y82{bottom:303.746667pt;}
.y5f{bottom:311.746667pt;}
.yb2{bottom:313.346667pt;}
.y27{bottom:317.186667pt;}
.y81{bottom:321.346667pt;}
.y5e{bottom:329.346667pt;}
.yb1{bottom:330.946667pt;}
.y26{bottom:334.786667pt;}
.y80{bottom:338.946667pt;}
.y5d{bottom:346.946667pt;}
.yb0{bottom:348.546667pt;}
.y25{bottom:352.546667pt;}
.y7f{bottom:356.546667pt;}
.y5c{bottom:364.546667pt;}
.yaf{bottom:366.146667pt;}
.y24{bottom:370.146667pt;}
.y7e{bottom:374.146667pt;}
.y5b{bottom:382.146667pt;}
.yae{bottom:383.906667pt;}
.y23{bottom:387.746667pt;}
.y7d{bottom:391.906667pt;}
.y5a{bottom:399.906667pt;}
.yad{bottom:401.506667pt;}
.y22{bottom:405.346667pt;}
.y7c{bottom:409.506667pt;}
.y59{bottom:417.506667pt;}
.yac{bottom:419.106667pt;}
.y21{bottom:422.946667pt;}
.y7b{bottom:427.106667pt;}
.y58{bottom:435.106667pt;}
.yab{bottom:436.706667pt;}
.y20{bottom:440.546667pt;}
.y7a{bottom:444.706667pt;}
.y57{bottom:452.706667pt;}
.yaa{bottom:454.306667pt;}
.y1f{bottom:458.306667pt;}
.y79{bottom:462.306667pt;}
.y56{bottom:470.306667pt;}
.ya9{bottom:472.066667pt;}
.y1e{bottom:475.906667pt;}
.y78{bottom:480.066667pt;}
.y55{bottom:488.066667pt;}
.ya8{bottom:489.666667pt;}
.y1d{bottom:493.506667pt;}
.y77{bottom:497.666667pt;}
.y54{bottom:505.693333pt;}
.ya7{bottom:507.293333pt;}
.y1c{bottom:511.133333pt;}
.y76{bottom:515.293333pt;}
.y53{bottom:523.293333pt;}
.ya6{bottom:524.893333pt;}
.y1b{bottom:528.733333pt;}
.y75{bottom:532.893333pt;}
.y52{bottom:540.893333pt;}
.ya5{bottom:542.493333pt;}
.y1a{bottom:546.493333pt;}
.y74{bottom:550.493333pt;}
.y51{bottom:558.493333pt;}
.ya4{bottom:560.253333pt;}
.y19{bottom:564.093333pt;}
.y73{bottom:568.253333pt;}
.y50{bottom:576.253333pt;}
.ya3{bottom:577.853333pt;}
.y18{bottom:583.773333pt;}
.y72{bottom:585.853333pt;}
.y4f{bottom:593.853333pt;}
.ya2{bottom:595.453333pt;}
.y71{bottom:603.453333pt;}
.y17{bottom:609.373333pt;}
.y4e{bottom:611.453333pt;}
.ya1{bottom:613.053333pt;}
.y70{bottom:621.053333pt;}
.y16{bottom:626.973333pt;}
.y4d{bottom:629.053333pt;}
.ya0{bottom:630.653333pt;}
.y6f{bottom:638.653333pt;}
.y15{bottom:644.573333pt;}
.y4c{bottom:646.653333pt;}
.y6e{bottom:656.413333pt;}
.y14{bottom:662.173333pt;}
.y4b{bottom:664.413333pt;}
.y6d{bottom:674.013333pt;}
.y13{bottom:679.933333pt;}
.y4a{bottom:682.013333pt;}
.y9f{bottom:691.613333pt;}
.y12{bottom:697.533333pt;}
.y49{bottom:699.613333pt;}
.y9e{bottom:709.213333pt;}
.y11{bottom:715.133333pt;}
.y48{bottom:717.213333pt;}
.y9d{bottom:726.813333pt;}
.y10{bottom:732.733333pt;}
.y47{bottom:734.813333pt;}
.y9c{bottom:744.573333pt;}
.yf{bottom:750.333333pt;}
.y46{bottom:752.573333pt;}
.y9b{bottom:762.213333pt;}
.ye{bottom:768.133333pt;}
.y45{bottom:770.213333pt;}
.y9a{bottom:779.813333pt;}
.yd{bottom:787.653333pt;}
.y44{bottom:787.813333pt;}
.y99{bottom:797.413333pt;}
.y43{bottom:805.413333pt;}
.yc{bottom:809.893333pt;}
.y98{bottom:815.013333pt;}
.y42{bottom:823.013333pt;}
.yb{bottom:827.653333pt;}
.y97{bottom:832.773333pt;}
.y41{bottom:840.773333pt;}
.ya{bottom:841.093333pt;}
.y96{bottom:850.373333pt;}
.y40{bottom:858.373333pt;}
.y9{bottom:859.973333pt;}
.y95{bottom:867.973333pt;}
.y3f{bottom:875.973333pt;}
.y8{bottom:880.773333pt;}
.y94{bottom:885.573333pt;}
.y3e{bottom:893.573333pt;}
.y93{bottom:903.173333pt;}
.y7{bottom:909.093333pt;}
.y3d{bottom:911.173333pt;}
.y92{bottom:920.933333pt;}
.y3c{bottom:928.933333pt;}
.y91{bottom:938.533333pt;}
.y5{bottom:943.173333pt;}
.y3b{bottom:946.533333pt;}
.y90{bottom:956.133333pt;}
.y3a{bottom:964.133333pt;}
.y4{bottom:970.533333pt;}
.y8f{bottom:973.733333pt;}
.y39{bottom:981.733333pt;}
.y8e{bottom:991.333333pt;}
.y3{bottom:998.053333pt;}
.y38{bottom:999.333333pt;}
.y37{bottom:1017.120000pt;}
.y2{bottom:1025.440000pt;}
.y36{bottom:1034.720000pt;}
.y1{bottom:1052.800000pt;}
.y35{bottom:1060.800000pt;}
.h8{height:33.574375pt;}
.hb{height:44.327188pt;}
.ha{height:45.520312pt;}
.h9{height:52.134375pt;}
.hc{height:54.598989pt;}
.h6{height:55.298750pt;}
.h3{height:57.787500pt;}
.h7{height:59.762500pt;}
.h2{height:61.295000pt;}
.h4{height:72.942188pt;}
.h5{height:88.611250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
.x2{left:279.426655pt;}
}




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