
    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_a12703a398ffa7bedf8a09d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.763672;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_58232b8be8d2d3cb2d20efcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_13ede1d49d87d2230b4d7fb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_e4f4cdb49d7109bed57c1dd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.760254;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_677ef240323b44d4e3dc2066.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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:ff6;src:url('chunks/assets/font_c66d9fd3e451286ad6700537.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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:ff7;src:url('chunks/assets/font_8992ad59dc57e1b7ff1a15b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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:ff8;src:url('chunks/assets/font_09cbb0d608516e87b29dc3c3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_47dd5dae94ba00f2cbcd904d.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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;}
.v1{vertical-align:11.880000px;}
.ls9{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.130200px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.540000px;}
.ls1{letter-spacing:6.480000px;}
.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;}
}
.ws4{word-spacing:-12.006000px;}
.ws9{word-spacing:-11.970000px;}
.ws8{word-spacing:-11.960640px;}
.ws3{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.844000px;}
.ws2{word-spacing:-11.718000px;}
.ws0{word-spacing:-10.008000px;}
.ws1{word-spacing:-7.920000px;}
.ws6{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
._13{margin-left:-3.261600px;}
._f{margin-left:-2.203200px;}
._0{margin-left:-1.179360px;}
._3{width:1.056000px;}
._4{width:2.490000px;}
._6{width:3.636000px;}
._5{width:4.734000px;}
._e{width:5.757360px;}
._9{width:6.804000px;}
._a{width:7.884000px;}
._8{width:8.946000px;}
._7{width:10.278000px;}
._16{width:12.906000px;}
._c{width:14.040000px;}
._d{width:15.072000px;}
._1{width:16.308000px;}
._2{width:17.328000px;}
._10{width:19.062000px;}
._11{width:21.114000px;}
._12{width:22.626000px;}
._b{width:25.272000px;}
._14{width:26.568000px;}
._15{width:30.456000px;}
._17{width:852.150000px;}
.fc5{color:rgb(22,27,33);}
.fc4{color:rgb(13,110,191);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(14,108,196);}
.fc1{color:rgb(0,31,66);}
.fc6{color:rgb(24,23,23);}
.fc0{color:rgb(20,19,19);}
.fs3{font-size:36.000000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:45.720000px;}
.y5{bottom:67.320000px;}
.y6{bottom:69.750000px;}
.y4{bottom:79.560000px;}
.y3{bottom:91.890000px;}
.y2{bottom:104.220000px;}
.y6a{bottom:165.150000px;}
.y39{bottom:168.570000px;}
.y94{bottom:169.380000px;}
.y69{bottom:183.510000px;}
.y38{bottom:187.020000px;}
.y93{bottom:187.920000px;}
.y68{bottom:201.960000px;}
.y37{bottom:210.600000px;}
.y92{bottom:211.500000px;}
.y67{bottom:220.320000px;}
.y36{bottom:229.140000px;}
.y91{bottom:230.040000px;}
.y66{bottom:238.770000px;}
.y35{bottom:247.500000px;}
.y90{bottom:253.620000px;}
.y65{bottom:257.130000px;}
.y34{bottom:265.950000px;}
.y8f{bottom:272.160000px;}
.y64{bottom:275.490000px;}
.y33{bottom:284.340000px;}
.y63{bottom:293.970000px;}
.y8e{bottom:295.770000px;}
.y32{bottom:302.790000px;}
.y62{bottom:312.330000px;}
.y8d{bottom:314.310000px;}
.y31{bottom:321.150000px;}
.y61{bottom:330.780000px;}
.y8c{bottom:337.890000px;}
.y30{bottom:339.510000px;}
.y60{bottom:349.140000px;}
.y8b{bottom:356.430000px;}
.y2f{bottom:357.960000px;}
.y5f{bottom:367.590000px;}
.y2e{bottom:376.320000px;}
.y8a{bottom:380.100000px;}
.y5e{bottom:385.950000px;}
.y2d{bottom:394.770000px;}
.y89{bottom:398.550000px;}
.y5d{bottom:404.310000px;}
.y2c{bottom:413.130000px;}
.y88{bottom:422.220000px;}
.yb7{bottom:426.810000px;}
.y5c{bottom:427.980000px;}
.y2b{bottom:431.580000px;}
.y87{bottom:440.670000px;}
.y5b{bottom:446.430000px;}
.yb6{bottom:448.140000px;}
.y2a{bottom:449.940000px;}
.y86{bottom:464.340000px;}
.y5a{bottom:464.880000px;}
.y29{bottom:468.300000px;}
.yb5{bottom:469.470000px;}
.y85{bottom:482.790000px;}
.y59{bottom:483.240000px;}
.y28{bottom:486.750000px;}
.yb4{bottom:490.890000px;}
.y58{bottom:501.690000px;}
.y27{bottom:505.110000px;}
.y84{bottom:506.460000px;}
.yb3{bottom:506.910000px;}
.y57{bottom:520.050000px;}
.yb2{bottom:522.930000px;}
.y26{bottom:523.560000px;}
.y83{bottom:524.910000px;}
.y56{bottom:538.500000px;}
.yb1{bottom:539.040000px;}
.y25{bottom:541.920000px;}
.y82{bottom:548.580000px;}
.yb0{bottom:555.060000px;}
.y55{bottom:556.860000px;}
.y24{bottom:560.370000px;}
.yaf{bottom:571.080000px;}
.y81{bottom:572.250000px;}
.y54{bottom:575.220000px;}
.y23{bottom:578.730000px;}
.yae{bottom:587.100000px;}
.y53{bottom:593.670000px;}
.y80{bottom:596.010000px;}
.y22{bottom:597.180000px;}
.yad{bottom:603.210000px;}
.y7f{bottom:614.460000px;}
.y21{bottom:615.540000px;}
.y52{bottom:617.250000px;}
.yac{bottom:619.230000px;}
.y7e{bottom:632.910000px;}
.y20{bottom:633.900000px;}
.yab{bottom:635.250000px;}
.y51{bottom:635.790000px;}
.y7d{bottom:651.270000px;}
.y50{bottom:654.150000px;}
.y1f{bottom:657.570000px;}
.yaa{bottom:667.290000px;}
.y7c{bottom:669.720000px;}
.y4f{bottom:672.600000px;}
.y1e{bottom:673.410000px;}
.ya9{bottom:683.430000px;}
.y7b{bottom:688.110000px;}
.y1d{bottom:689.280000px;}
.y4e{bottom:690.990000px;}
.ya8{bottom:699.450000px;}
.y1c{bottom:705.120000px;}
.y4d{bottom:709.440000px;}
.y7a{bottom:711.780000px;}
.ya7{bottom:715.470000px;}
.y1b{bottom:720.960000px;}
.y4c{bottom:727.800000px;}
.ya6{bottom:731.490000px;}
.y79{bottom:735.450000px;}
.y1a{bottom:736.710000px;}
.y4b{bottom:746.250000px;}
.ya5{bottom:747.600000px;}
.y19{bottom:752.550000px;}
.y78{bottom:759.210000px;}
.ya4{bottom:763.620000px;}
.y4a{bottom:764.610000px;}
.y18{bottom:768.390000px;}
.y77{bottom:777.660000px;}
.ya3{bottom:779.640000px;}
.y49{bottom:782.970000px;}
.y17{bottom:784.230000px;}
.ya2{bottom:795.660000px;}
.y76{bottom:796.110000px;}
.y16{bottom:800.430000px;}
.y48{bottom:801.420000px;}
.ya1{bottom:814.110000px;}
.y75{bottom:814.470000px;}
.y47{bottom:819.780000px;}
.y15{bottom:820.590000px;}
.y9f{bottom:826.530000px;}
.y74{bottom:832.830000px;}
.y14{bottom:836.790000px;}
.y46{bottom:838.230000px;}
.y9e{bottom:848.310000px;}
.y73{bottom:851.280000px;}
.y13{bottom:852.990000px;}
.y45{bottom:856.590000px;}
.y12{bottom:869.190000px;}
.y72{bottom:869.640000px;}
.y9d{bottom:871.980000px;}
.y44{bottom:875.040000px;}
.y11{bottom:885.030000px;}
.y71{bottom:888.090000px;}
.y9c{bottom:890.520000px;}
.y43{bottom:893.400000px;}
.y10{bottom:901.230000px;}
.y70{bottom:906.450000px;}
.y42{bottom:911.760000px;}
.y9b{bottom:914.100000px;}
.yf{bottom:917.070000px;}
.y6f{bottom:924.900000px;}
.y41{bottom:930.210000px;}
.y9a{bottom:932.640000px;}
.ye{bottom:933.270000px;}
.y6e{bottom:943.260000px;}
.y40{bottom:948.570000px;}
.yd{bottom:949.110000px;}
.y99{bottom:956.220000px;}
.y6d{bottom:961.710000px;}
.yc{bottom:965.310000px;}
.y3f{bottom:967.020000px;}
.y98{bottom:974.760000px;}
.y6c{bottom:980.070000px;}
.yb{bottom:981.510000px;}
.y3e{bottom:985.380000px;}
.ya{bottom:997.080000px;}
.y97{bottom:998.340000px;}
.y6b{bottom:1003.740000px;}
.y3d{bottom:1003.830000px;}
.y9{bottom:1014.450000px;}
.y96{bottom:1016.880000px;}
.y3c{bottom:1022.190000px;}
.y95{bottom:1040.460000px;}
.y3b{bottom:1040.550000px;}
.y8{bottom:1046.130000px;}
.y3a{bottom:1059.000000px;}
.ya0{bottom:1060.890000px;}
.y1{bottom:1185.750000px;}
.hd{height:33.431836px;}
.h4{height:35.910000px;}
.h3{height:36.649336px;}
.h6{height:37.546875px;}
.h2{height:40.579102px;}
.h8{height:41.661211px;}
.hb{height:45.720703px;}
.h9{height:46.986328px;}
.hc{height:46.991602px;}
.ha{height:52.311445px;}
.h5{height:56.520000px;}
.h7{height:93.972656px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:18.900000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x3{left:10.260000px;}
.x2{left:56.790000px;}
.x4{left:126.269987px;}
.x1{left:127.439987px;}
.x5{left:681.899987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.560000pt;}
.ls9{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.115733pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls1{letter-spacing:5.760000pt;}
.ws4{word-spacing:-10.672000pt;}
.ws9{word-spacing:-10.640000pt;}
.ws8{word-spacing:-10.631680pt;}
.ws3{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.528000pt;}
.ws2{word-spacing:-10.416000pt;}
.ws0{word-spacing:-8.896000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws6{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
._13{margin-left:-2.899200pt;}
._f{margin-left:-1.958400pt;}
._0{margin-left:-1.048320pt;}
._3{width:0.938667pt;}
._4{width:2.213333pt;}
._6{width:3.232000pt;}
._5{width:4.208000pt;}
._e{width:5.117653pt;}
._9{width:6.048000pt;}
._a{width:7.008000pt;}
._8{width:7.952000pt;}
._7{width:9.136000pt;}
._16{width:11.472000pt;}
._c{width:12.480000pt;}
._d{width:13.397333pt;}
._1{width:14.496000pt;}
._2{width:15.402667pt;}
._10{width:16.944000pt;}
._11{width:18.768000pt;}
._12{width:20.112000pt;}
._b{width:22.464000pt;}
._14{width:23.616000pt;}
._15{width:27.072000pt;}
._17{width:757.466667pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:40.640000pt;}
.y5{bottom:59.840000pt;}
.y6{bottom:62.000000pt;}
.y4{bottom:70.720000pt;}
.y3{bottom:81.680000pt;}
.y2{bottom:92.640000pt;}
.y6a{bottom:146.800000pt;}
.y39{bottom:149.840000pt;}
.y94{bottom:150.560000pt;}
.y69{bottom:163.120000pt;}
.y38{bottom:166.240000pt;}
.y93{bottom:167.040000pt;}
.y68{bottom:179.520000pt;}
.y37{bottom:187.200000pt;}
.y92{bottom:188.000000pt;}
.y67{bottom:195.840000pt;}
.y36{bottom:203.680000pt;}
.y91{bottom:204.480000pt;}
.y66{bottom:212.240000pt;}
.y35{bottom:220.000000pt;}
.y90{bottom:225.440000pt;}
.y65{bottom:228.560000pt;}
.y34{bottom:236.400000pt;}
.y8f{bottom:241.920000pt;}
.y64{bottom:244.880000pt;}
.y33{bottom:252.746667pt;}
.y63{bottom:261.306667pt;}
.y8e{bottom:262.906667pt;}
.y32{bottom:269.146667pt;}
.y62{bottom:277.626667pt;}
.y8d{bottom:279.386667pt;}
.y31{bottom:285.466667pt;}
.y61{bottom:294.026667pt;}
.y8c{bottom:300.346667pt;}
.y30{bottom:301.786667pt;}
.y60{bottom:310.346667pt;}
.y8b{bottom:316.826667pt;}
.y2f{bottom:318.186667pt;}
.y5f{bottom:326.746667pt;}
.y2e{bottom:334.506667pt;}
.y8a{bottom:337.866667pt;}
.y5e{bottom:343.066667pt;}
.y2d{bottom:350.906667pt;}
.y89{bottom:354.266667pt;}
.y5d{bottom:359.386667pt;}
.y2c{bottom:367.226667pt;}
.y88{bottom:375.306667pt;}
.yb7{bottom:379.386667pt;}
.y5c{bottom:380.426667pt;}
.y2b{bottom:383.626667pt;}
.y87{bottom:391.706667pt;}
.y5b{bottom:396.826667pt;}
.yb6{bottom:398.346667pt;}
.y2a{bottom:399.946667pt;}
.y86{bottom:412.746667pt;}
.y5a{bottom:413.226667pt;}
.y29{bottom:416.266667pt;}
.yb5{bottom:417.306667pt;}
.y85{bottom:429.146667pt;}
.y59{bottom:429.546667pt;}
.y28{bottom:432.666667pt;}
.yb4{bottom:436.346667pt;}
.y58{bottom:445.946667pt;}
.y27{bottom:448.986667pt;}
.y84{bottom:450.186667pt;}
.yb3{bottom:450.586667pt;}
.y57{bottom:462.266667pt;}
.yb2{bottom:464.826667pt;}
.y26{bottom:465.386667pt;}
.y83{bottom:466.586667pt;}
.y56{bottom:478.666667pt;}
.yb1{bottom:479.146667pt;}
.y25{bottom:481.706667pt;}
.y82{bottom:487.626667pt;}
.yb0{bottom:493.386667pt;}
.y55{bottom:494.986667pt;}
.y24{bottom:498.106667pt;}
.yaf{bottom:507.626667pt;}
.y81{bottom:508.666667pt;}
.y54{bottom:511.306667pt;}
.y23{bottom:514.426667pt;}
.yae{bottom:521.866667pt;}
.y53{bottom:527.706667pt;}
.y80{bottom:529.786667pt;}
.y22{bottom:530.826667pt;}
.yad{bottom:536.186667pt;}
.y7f{bottom:546.186667pt;}
.y21{bottom:547.146667pt;}
.y52{bottom:548.666667pt;}
.yac{bottom:550.426667pt;}
.y7e{bottom:562.586667pt;}
.y20{bottom:563.466667pt;}
.yab{bottom:564.666667pt;}
.y51{bottom:565.146667pt;}
.y7d{bottom:578.906667pt;}
.y50{bottom:581.466667pt;}
.y1f{bottom:584.506667pt;}
.yaa{bottom:593.146667pt;}
.y7c{bottom:595.306667pt;}
.y4f{bottom:597.866667pt;}
.y1e{bottom:598.586667pt;}
.ya9{bottom:607.493333pt;}
.y7b{bottom:611.653333pt;}
.y1d{bottom:612.693333pt;}
.y4e{bottom:614.213333pt;}
.ya8{bottom:621.733333pt;}
.y1c{bottom:626.773333pt;}
.y4d{bottom:630.613333pt;}
.y7a{bottom:632.693333pt;}
.ya7{bottom:635.973333pt;}
.y1b{bottom:640.853333pt;}
.y4c{bottom:646.933333pt;}
.ya6{bottom:650.213333pt;}
.y79{bottom:653.733333pt;}
.y1a{bottom:654.853333pt;}
.y4b{bottom:663.333333pt;}
.ya5{bottom:664.533333pt;}
.y19{bottom:668.933333pt;}
.y78{bottom:674.853333pt;}
.ya4{bottom:678.773333pt;}
.y4a{bottom:679.653333pt;}
.y18{bottom:683.013333pt;}
.y77{bottom:691.253333pt;}
.ya3{bottom:693.013333pt;}
.y49{bottom:695.973333pt;}
.y17{bottom:697.093333pt;}
.ya2{bottom:707.253333pt;}
.y76{bottom:707.653333pt;}
.y16{bottom:711.493333pt;}
.y48{bottom:712.373333pt;}
.ya1{bottom:723.653333pt;}
.y75{bottom:723.973333pt;}
.y47{bottom:728.693333pt;}
.y15{bottom:729.413333pt;}
.y9f{bottom:734.693333pt;}
.y74{bottom:740.293333pt;}
.y14{bottom:743.813333pt;}
.y46{bottom:745.093333pt;}
.y9e{bottom:754.053333pt;}
.y73{bottom:756.693333pt;}
.y13{bottom:758.213333pt;}
.y45{bottom:761.413333pt;}
.y12{bottom:772.613333pt;}
.y72{bottom:773.013333pt;}
.y9d{bottom:775.093333pt;}
.y44{bottom:777.813333pt;}
.y11{bottom:786.693333pt;}
.y71{bottom:789.413333pt;}
.y9c{bottom:791.573333pt;}
.y43{bottom:794.133333pt;}
.y10{bottom:801.093333pt;}
.y70{bottom:805.733333pt;}
.y42{bottom:810.453333pt;}
.y9b{bottom:812.533333pt;}
.yf{bottom:815.173333pt;}
.y6f{bottom:822.133333pt;}
.y41{bottom:826.853333pt;}
.y9a{bottom:829.013333pt;}
.ye{bottom:829.573333pt;}
.y6e{bottom:838.453333pt;}
.y40{bottom:843.173333pt;}
.yd{bottom:843.653333pt;}
.y99{bottom:849.973333pt;}
.y6d{bottom:854.853333pt;}
.yc{bottom:858.053333pt;}
.y3f{bottom:859.573333pt;}
.y98{bottom:866.453333pt;}
.y6c{bottom:871.173333pt;}
.yb{bottom:872.453333pt;}
.y3e{bottom:875.893333pt;}
.ya{bottom:886.293333pt;}
.y97{bottom:887.413333pt;}
.y6b{bottom:892.213333pt;}
.y3d{bottom:892.293333pt;}
.y9{bottom:901.733333pt;}
.y96{bottom:903.893333pt;}
.y3c{bottom:908.613333pt;}
.y95{bottom:924.853333pt;}
.y3b{bottom:924.933333pt;}
.y8{bottom:929.893333pt;}
.y3a{bottom:941.333333pt;}
.ya0{bottom:943.013333pt;}
.y1{bottom:1054.000000pt;}
.hd{height:29.717188pt;}
.h4{height:31.920000pt;}
.h3{height:32.577187pt;}
.h6{height:33.375000pt;}
.h2{height:36.070312pt;}
.h8{height:37.032187pt;}
.hb{height:40.640625pt;}
.h9{height:41.765625pt;}
.hc{height:41.770312pt;}
.ha{height:46.499062pt;}
.h5{height:50.240000pt;}
.h7{height:83.531250pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:16.800000pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x3{left:9.120000pt;}
.x2{left:50.480000pt;}
.x4{left:112.239988pt;}
.x1{left:113.279988pt;}
.x5{left:606.133322pt;}
}




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