
    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_314662dc4a14872b5d8f987a.woff2')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_893e2611b11f68f45e181345.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc118c0f1f88a2f3b4397efe.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_82bef08703d9188a50c1e70d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.182000px;}
.lsd{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.043200px;}
.lsc{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.306600px;}
.ls14{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.511800px;}
.ls6{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.224000px;}
.ls7{letter-spacing:1.296000px;}
.ls0{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.584000px;}
.ls5{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.728000px;}
.ls1{letter-spacing:2.160000px;}
.ls18{letter-spacing:11.466720px;}
.ls17{letter-spacing:41.850720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.220000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-2750.540640px;}
._9{margin-left:-1732.535280px;}
._5{margin-left:-1489.032000px;}
._7{margin-left:-1077.408000px;}
._a{margin-left:-627.048000px;}
._6{margin-left:-9.504000px;}
._b{margin-left:-8.218800px;}
._d{margin-left:-6.830640px;}
._c{margin-left:-4.999200px;}
._8{margin-left:-3.456000px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.617680px;}
._11{width:3.705120px;}
._16{width:4.853040px;}
._13{width:6.095520px;}
._12{width:7.230960px;}
._17{width:9.232560px;}
._18{width:10.311120px;}
._15{width:11.325360px;}
._14{width:12.365040px;}
._e{width:13.629240px;}
._19{width:16.213680px;}
._f{width:18.176400px;}
._10{width:19.257600px;}
.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:56.880000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.300000px;}
.y6a{bottom:92.736000px;}
.ya4{bottom:94.536000px;}
.y33{bottom:102.816000px;}
.y88{bottom:103.536000px;}
.y69{bottom:112.536000px;}
.ya3{bottom:114.336000px;}
.y32{bottom:122.616000px;}
.y73{bottom:123.336000px;}
.y68{bottom:132.336000px;}
.ya2{bottom:134.316000px;}
.y31{bottom:142.416000px;}
.y72{bottom:143.316000px;}
.y67{bottom:152.310000px;}
.ya1{bottom:154.110000px;}
.y30{bottom:162.210000px;}
.y71{bottom:163.110000px;}
.y66{bottom:172.110000px;}
.ya0{bottom:173.910000px;}
.y2f{bottom:182.190000px;}
.y70{bottom:182.910000px;}
.y65{bottom:191.910000px;}
.y9f{bottom:193.710000px;}
.y2e{bottom:201.990000px;}
.y6f{bottom:202.710000px;}
.y64{bottom:211.710000px;}
.y9e{bottom:213.510000px;}
.y2d{bottom:221.790000px;}
.y6e{bottom:222.510000px;}
.y63{bottom:231.510000px;}
.y9d{bottom:233.490000px;}
.y2c{bottom:241.590000px;}
.y6d{bottom:242.490000px;}
.y62{bottom:251.490000px;}
.y9c{bottom:253.290000px;}
.y2b{bottom:261.390000px;}
.y6c{bottom:262.290000px;}
.y61{bottom:271.290000px;}
.y9b{bottom:273.090000px;}
.y2a{bottom:281.370000px;}
.y6b{bottom:282.090000px;}
.y60{bottom:291.090000px;}
.y9a{bottom:292.890000px;}
.y29{bottom:301.170000px;}
.y87{bottom:301.890000px;}
.y5f{bottom:310.890000px;}
.y99{bottom:312.690000px;}
.y28{bottom:320.970000px;}
.y86{bottom:321.690000px;}
.y5e{bottom:330.735000px;}
.y98{bottom:332.715000px;}
.y27{bottom:340.815000px;}
.y85{bottom:341.715000px;}
.y5d{bottom:350.715000px;}
.y97{bottom:352.515000px;}
.y26{bottom:360.615000px;}
.y84{bottom:361.515000px;}
.y5c{bottom:370.515000px;}
.y96{bottom:372.315000px;}
.y25{bottom:380.595000px;}
.y83{bottom:381.315000px;}
.y5b{bottom:390.315000px;}
.y95{bottom:392.115000px;}
.y24{bottom:400.395000px;}
.y82{bottom:401.115000px;}
.y5a{bottom:410.115000px;}
.y94{bottom:411.915000px;}
.y23{bottom:420.195000px;}
.y81{bottom:420.915000px;}
.y59{bottom:429.915000px;}
.y93{bottom:431.895000px;}
.y22{bottom:439.995000px;}
.y80{bottom:440.895000px;}
.y58{bottom:449.895000px;}
.y92{bottom:451.695000px;}
.y21{bottom:459.795000px;}
.y7f{bottom:460.695000px;}
.y57{bottom:469.695000px;}
.y91{bottom:471.495000px;}
.y20{bottom:479.775000px;}
.y7e{bottom:480.495000px;}
.y56{bottom:489.495000px;}
.y90{bottom:491.295000px;}
.y1f{bottom:499.575000px;}
.y7d{bottom:500.295000px;}
.y55{bottom:509.295000px;}
.y8f{bottom:511.095000px;}
.y1e{bottom:519.375000px;}
.y7c{bottom:520.095000px;}
.y54{bottom:529.095000px;}
.y8e{bottom:531.075000px;}
.y1d{bottom:539.175000px;}
.y7b{bottom:540.075000px;}
.y53{bottom:549.075000px;}
.y1c{bottom:558.975000px;}
.y7a{bottom:559.875000px;}
.y52{bottom:568.875000px;}
.y79{bottom:579.675000px;}
.y1b{bottom:581.115000px;}
.y51{bottom:588.675000px;}
.y78{bottom:599.505000px;}
.y1a{bottom:600.945000px;}
.y50{bottom:608.505000px;}
.y77{bottom:619.305000px;}
.y4f{bottom:628.305000px;}
.y19{bottom:629.745000px;}
.y76{bottom:639.285000px;}
.y4e{bottom:648.285000px;}
.y18{bottom:649.725000px;}
.y75{bottom:659.085000px;}
.y4d{bottom:668.085000px;}
.y17{bottom:669.525000px;}
.y74{bottom:678.885000px;}
.y4c{bottom:687.885000px;}
.y16{bottom:689.325000px;}
.y8d{bottom:698.685000px;}
.y4b{bottom:707.685000px;}
.y15{bottom:709.125000px;}
.y8c{bottom:718.485000px;}
.y4a{bottom:727.485000px;}
.y14{bottom:728.925000px;}
.y8b{bottom:738.465000px;}
.y49{bottom:747.465000px;}
.y13{bottom:748.905000px;}
.y8a{bottom:758.265000px;}
.y48{bottom:767.265000px;}
.y12{bottom:768.705000px;}
.y89{bottom:778.065000px;}
.y47{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.y46{bottom:806.865000px;}
.y10{bottom:808.305000px;}
.y45{bottom:826.665000px;}
.yf{bottom:828.105000px;}
.y44{bottom:846.645000px;}
.ye{bottom:848.085000px;}
.y43{bottom:866.490000px;}
.yd{bottom:870.090000px;}
.y42{bottom:886.290000px;}
.yc{bottom:890.070000px;}
.y41{bottom:906.090000px;}
.yb{bottom:915.090000px;}
.y40{bottom:925.890000px;}
.ya{bottom:929.670000px;}
.y3f{bottom:945.870000px;}
.y9{bottom:954.690000px;}
.y3e{bottom:965.670000px;}
.y8{bottom:969.810000px;}
.y3d{bottom:985.470000px;}
.y3c{bottom:1005.270000px;}
.y7{bottom:1012.830000px;}
.y3b{bottom:1025.070000px;}
.y3a{bottom:1045.050000px;}
.y5{bottom:1051.890000px;}
.y39{bottom:1064.850000px;}
.y4{bottom:1084.650000px;}
.y38{bottom:1104.450000px;}
.y3{bottom:1117.590000px;}
.y37{bottom:1124.250000px;}
.y36{bottom:1144.260000px;}
.y2{bottom:1150.380000px;}
.y35{bottom:1164.060000px;}
.y1{bottom:1183.140000px;}
.y34{bottom:1193.400000px;}
.h7{height:27.147656px;}
.h8{height:41.726953px;}
.hb{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:50.273438px;}
.h9{height:51.210352px;}
.ha{height:56.763281px;}
.h6{height:59.545547px;}
.h2{height:61.699219px;}
.h5{height:82.059961px;}
.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;}
.x2{left:80.999987px;}
.x3{left:108.035987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-1.050667pt;}
.lsd{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.038400pt;}
.lsc{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.272533pt;}
.ls14{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.454933pt;}
.ls6{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.088000pt;}
.ls7{letter-spacing:1.152000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.408000pt;}
.ls5{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.536000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls18{letter-spacing:10.192640pt;}
.ls17{letter-spacing:37.200640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.640000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-2444.925013pt;}
._9{margin-left:-1540.031360pt;}
._5{margin-left:-1323.584000pt;}
._7{margin-left:-957.696000pt;}
._a{margin-left:-557.376000pt;}
._6{margin-left:-8.448000pt;}
._b{margin-left:-7.305600pt;}
._d{margin-left:-6.071680pt;}
._c{margin-left:-4.443733pt;}
._8{margin-left:-3.072000pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.326827pt;}
._11{width:3.293440pt;}
._16{width:4.313813pt;}
._13{width:5.418240pt;}
._12{width:6.427520pt;}
._17{width:8.206720pt;}
._18{width:9.165440pt;}
._15{width:10.066987pt;}
._14{width:10.991147pt;}
._e{width:12.114880pt;}
._19{width:14.412160pt;}
._f{width:16.156800pt;}
._10{width:17.117867pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.600000pt;}
.y6a{bottom:82.432000pt;}
.ya4{bottom:84.032000pt;}
.y33{bottom:91.392000pt;}
.y88{bottom:92.032000pt;}
.y69{bottom:100.032000pt;}
.ya3{bottom:101.632000pt;}
.y32{bottom:108.992000pt;}
.y73{bottom:109.632000pt;}
.y68{bottom:117.632000pt;}
.ya2{bottom:119.392000pt;}
.y31{bottom:126.592000pt;}
.y72{bottom:127.392000pt;}
.y67{bottom:135.386667pt;}
.ya1{bottom:136.986667pt;}
.y30{bottom:144.186667pt;}
.y71{bottom:144.986667pt;}
.y66{bottom:152.986667pt;}
.ya0{bottom:154.586667pt;}
.y2f{bottom:161.946667pt;}
.y70{bottom:162.586667pt;}
.y65{bottom:170.586667pt;}
.y9f{bottom:172.186667pt;}
.y2e{bottom:179.546667pt;}
.y6f{bottom:180.186667pt;}
.y64{bottom:188.186667pt;}
.y9e{bottom:189.786667pt;}
.y2d{bottom:197.146667pt;}
.y6e{bottom:197.786667pt;}
.y63{bottom:205.786667pt;}
.y9d{bottom:207.546667pt;}
.y2c{bottom:214.746667pt;}
.y6d{bottom:215.546667pt;}
.y62{bottom:223.546667pt;}
.y9c{bottom:225.146667pt;}
.y2b{bottom:232.346667pt;}
.y6c{bottom:233.146667pt;}
.y61{bottom:241.146667pt;}
.y9b{bottom:242.746667pt;}
.y2a{bottom:250.106667pt;}
.y6b{bottom:250.746667pt;}
.y60{bottom:258.746667pt;}
.y9a{bottom:260.346667pt;}
.y29{bottom:267.706667pt;}
.y87{bottom:268.346667pt;}
.y5f{bottom:276.346667pt;}
.y99{bottom:277.946667pt;}
.y28{bottom:285.306667pt;}
.y86{bottom:285.946667pt;}
.y5e{bottom:293.986667pt;}
.y98{bottom:295.746667pt;}
.y27{bottom:302.946667pt;}
.y85{bottom:303.746667pt;}
.y5d{bottom:311.746667pt;}
.y97{bottom:313.346667pt;}
.y26{bottom:320.546667pt;}
.y84{bottom:321.346667pt;}
.y5c{bottom:329.346667pt;}
.y96{bottom:330.946667pt;}
.y25{bottom:338.306667pt;}
.y83{bottom:338.946667pt;}
.y5b{bottom:346.946667pt;}
.y95{bottom:348.546667pt;}
.y24{bottom:355.906667pt;}
.y82{bottom:356.546667pt;}
.y5a{bottom:364.546667pt;}
.y94{bottom:366.146667pt;}
.y23{bottom:373.506667pt;}
.y81{bottom:374.146667pt;}
.y59{bottom:382.146667pt;}
.y93{bottom:383.906667pt;}
.y22{bottom:391.106667pt;}
.y80{bottom:391.906667pt;}
.y58{bottom:399.906667pt;}
.y92{bottom:401.506667pt;}
.y21{bottom:408.706667pt;}
.y7f{bottom:409.506667pt;}
.y57{bottom:417.506667pt;}
.y91{bottom:419.106667pt;}
.y20{bottom:426.466667pt;}
.y7e{bottom:427.106667pt;}
.y56{bottom:435.106667pt;}
.y90{bottom:436.706667pt;}
.y1f{bottom:444.066667pt;}
.y7d{bottom:444.706667pt;}
.y55{bottom:452.706667pt;}
.y8f{bottom:454.306667pt;}
.y1e{bottom:461.666667pt;}
.y7c{bottom:462.306667pt;}
.y54{bottom:470.306667pt;}
.y8e{bottom:472.066667pt;}
.y1d{bottom:479.266667pt;}
.y7b{bottom:480.066667pt;}
.y53{bottom:488.066667pt;}
.y1c{bottom:496.866667pt;}
.y7a{bottom:497.666667pt;}
.y52{bottom:505.666667pt;}
.y79{bottom:515.266667pt;}
.y1b{bottom:516.546667pt;}
.y51{bottom:523.266667pt;}
.y78{bottom:532.893333pt;}
.y1a{bottom:534.173333pt;}
.y50{bottom:540.893333pt;}
.y77{bottom:550.493333pt;}
.y4f{bottom:558.493333pt;}
.y19{bottom:559.773333pt;}
.y76{bottom:568.253333pt;}
.y4e{bottom:576.253333pt;}
.y18{bottom:577.533333pt;}
.y75{bottom:585.853333pt;}
.y4d{bottom:593.853333pt;}
.y17{bottom:595.133333pt;}
.y74{bottom:603.453333pt;}
.y4c{bottom:611.453333pt;}
.y16{bottom:612.733333pt;}
.y8d{bottom:621.053333pt;}
.y4b{bottom:629.053333pt;}
.y15{bottom:630.333333pt;}
.y8c{bottom:638.653333pt;}
.y4a{bottom:646.653333pt;}
.y14{bottom:647.933333pt;}
.y8b{bottom:656.413333pt;}
.y49{bottom:664.413333pt;}
.y13{bottom:665.693333pt;}
.y8a{bottom:674.013333pt;}
.y48{bottom:682.013333pt;}
.y12{bottom:683.293333pt;}
.y89{bottom:691.613333pt;}
.y47{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.y46{bottom:717.213333pt;}
.y10{bottom:718.493333pt;}
.y45{bottom:734.813333pt;}
.yf{bottom:736.093333pt;}
.y44{bottom:752.573333pt;}
.ye{bottom:753.853333pt;}
.y43{bottom:770.213333pt;}
.yd{bottom:773.413333pt;}
.y42{bottom:787.813333pt;}
.yc{bottom:791.173333pt;}
.y41{bottom:805.413333pt;}
.yb{bottom:813.413333pt;}
.y40{bottom:823.013333pt;}
.ya{bottom:826.373333pt;}
.y3f{bottom:840.773333pt;}
.y9{bottom:848.613333pt;}
.y3e{bottom:858.373333pt;}
.y8{bottom:862.053333pt;}
.y3d{bottom:875.973333pt;}
.y3c{bottom:893.573333pt;}
.y7{bottom:900.293333pt;}
.y3b{bottom:911.173333pt;}
.y3a{bottom:928.933333pt;}
.y5{bottom:935.013333pt;}
.y39{bottom:946.533333pt;}
.y4{bottom:964.133333pt;}
.y38{bottom:981.733333pt;}
.y3{bottom:993.413333pt;}
.y37{bottom:999.333333pt;}
.y36{bottom:1017.120000pt;}
.y2{bottom:1022.560000pt;}
.y35{bottom:1034.720000pt;}
.y1{bottom:1051.680000pt;}
.y34{bottom:1060.800000pt;}
.h7{height:24.131250pt;}
.h8{height:37.090625pt;}
.hb{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:44.687500pt;}
.h9{height:45.520312pt;}
.ha{height:50.456250pt;}
.h6{height:52.929375pt;}
.h2{height:54.843750pt;}
.h5{height:72.942188pt;}
.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;}
.x2{left:71.999988pt;}
.x3{left:96.031988pt;}
}




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