
    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_397d34c0535ddcc60aa27251.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_e17d9cfd98e7c1a794989e95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_8e7482a6666b02cdd43cc6df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_ae16fcb83061b3c0d2bfc7a0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3b1e9bb0a0e6e6117dd813de.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d279c1cb9f37de2b468a8b86.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_204c2fbb709eee1a4ef8ea55.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.752000px;}
.ls8{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.552000px;}
.ls5{letter-spacing:-0.372000px;}
.lsf{letter-spacing:-0.276000px;}
.ls15{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.732000px;}
.lsa{letter-spacing:0.768000px;}
.ls9{letter-spacing:0.798000px;}
.ls1{letter-spacing:0.828000px;}
.lse{letter-spacing:0.888000px;}
.ls11{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.200000px;}
.ls13{letter-spacing:1.320000px;}
.ls16{letter-spacing:1.800000px;}
.ls14{letter-spacing:167.448000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.200000px;}
.ws8{word-spacing:-21.828000px;}
.ws9{word-spacing:-21.648000px;}
.wsa{word-spacing:-21.600000px;}
.ws5{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.wsb{word-spacing:-20.904000px;}
.ws7{word-spacing:-20.724000px;}
.ws3{word-spacing:-20.448000px;}
.ws2{word-spacing:-19.800000px;}
.ws6{word-spacing:-19.248000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-2.352000px;}
._0{margin-left:-1.200000px;}
._1{width:1.110000px;}
._2{width:2.118000px;}
._5{width:3.720000px;}
._6{width:4.794000px;}
._7{width:5.838000px;}
._14{width:7.020000px;}
._10{width:8.154000px;}
._f{width:10.068000px;}
._12{width:11.616000px;}
._1b{width:12.624000px;}
._1a{width:13.860000px;}
._d{width:15.438000px;}
._e{width:16.560000px;}
._11{width:17.862000px;}
._35{width:18.888000px;}
._13{width:19.992000px;}
._18{width:22.326000px;}
._26{width:23.334000px;}
._19{width:25.506000px;}
._1f{width:26.586000px;}
._17{width:27.762000px;}
._16{width:29.088000px;}
._9{width:31.020000px;}
._8{width:32.424000px;}
._15{width:34.302000px;}
._b{width:36.312000px;}
._a{width:37.488000px;}
._1c{width:39.234000px;}
._25{width:40.848000px;}
._2c{width:42.672000px;}
._1e{width:44.040000px;}
._1d{width:45.048000px;}
._28{width:46.650000px;}
._27{width:48.660000px;}
._30{width:49.758000px;}
._2b{width:50.760000px;}
._29{width:52.164000px;}
._2d{width:53.760000px;}
._20{width:55.674000px;}
._22{width:56.874000px;}
._21{width:57.876000px;}
._24{width:63.336000px;}
._23{width:65.298000px;}
._4{width:67.266000px;}
._3{width:68.808000px;}
._2a{width:69.972000px;}
._34{width:75.300000px;}
._33{width:76.362000px;}
._2e{width:82.350000px;}
._2f{width:83.850000px;}
._37{width:137.472000px;}
._36{width:139.296000px;}
._31{width:146.988000px;}
._32{width:436.968000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs1{font-size:81.600000px;}
.fs0{font-size:84.000000px;}
.y6{bottom:-1.462500px;}
.y0{bottom:0.000000px;}
.y2e{bottom:16.800000px;}
.y39{bottom:17.092500px;}
.y35{bottom:17.100000px;}
.y37{bottom:17.400000px;}
.y3c{bottom:17.415000px;}
.y5{bottom:22.537500px;}
.y32{bottom:35.400000px;}
.y2c{bottom:53.115000px;}
.y33{bottom:53.400000px;}
.y3f{bottom:53.430000px;}
.y3b{bottom:53.715000px;}
.y4{bottom:59.700000px;}
.y2f{bottom:71.100000px;}
.y3e{bottom:71.430000px;}
.y31{bottom:71.700000px;}
.y3{bottom:87.637500px;}
.y2b{bottom:89.400000px;}
.y34{bottom:89.730000px;}
.y40{bottom:89.745000px;}
.y2d{bottom:125.400000px;}
.y23{bottom:125.737500px;}
.y38{bottom:141.637500px;}
.y22{bottom:161.730000px;}
.y5a{bottom:177.075000px;}
.y36{bottom:178.575000px;}
.y56{bottom:195.975000px;}
.y21{bottom:198.075000px;}
.y55{bottom:231.975000px;}
.y59{bottom:233.775000px;}
.y20{bottom:234.375000px;}
.y30{bottom:251.775000px;}
.y54{bottom:268.275000px;}
.y1f{bottom:270.375000px;}
.y53{bottom:304.575000px;}
.y1e{bottom:306.675000px;}
.y52{bottom:340.605000px;}
.y1d{bottom:343.005000px;}
.y2a{bottom:361.005000px;}
.y51{bottom:376.905000px;}
.y1c{bottom:379.320000px;}
.y50{bottom:413.205000px;}
.y1b{bottom:415.320000px;}
.y4f{bottom:449.505000px;}
.y1a{bottom:451.620000px;}
.y4e{bottom:485.505000px;}
.y28{bottom:487.320000px;}
.y19{bottom:487.905000px;}
.y4d{bottom:521.850000px;}
.y29{bottom:523.650000px;}
.y18{bottom:524.250000px;}
.y4c{bottom:558.150000px;}
.y17{bottom:560.250000px;}
.y4b{bottom:594.450000px;}
.y16{bottom:596.550000px;}
.y4a{bottom:630.450000px;}
.y57{bottom:632.250000px;}
.y15{bottom:632.850000px;}
.y49{bottom:666.750000px;}
.y14{bottom:669.150000px;}
.y48{bottom:703.080000px;}
.y13{bottom:705.195000px;}
.y47{bottom:739.380000px;}
.y12{bottom:741.480000px;}
.y46{bottom:775.380000px;}
.y11{bottom:777.795000px;}
.y45{bottom:811.695000px;}
.y10{bottom:814.080000px;}
.y44{bottom:848.025000px;}
.yf{bottom:850.125000px;}
.y43{bottom:884.325000px;}
.ye{bottom:886.425000px;}
.y42{bottom:920.325000px;}
.y58{bottom:922.125000px;}
.yd{bottom:922.725000px;}
.y41{bottom:956.025000px;}
.yc{bottom:959.025000px;}
.y3d{bottom:976.425000px;}
.yb{bottom:994.425000px;}
.y27{bottom:995.025000px;}
.ya{bottom:1031.370000px;}
.y9{bottom:1067.070000px;}
.y26{bottom:1067.670000px;}
.y3a{bottom:1085.655000px;}
.y8{bottom:1103.355000px;}
.y25{bottom:1103.955000px;}
.y7{bottom:1139.370000px;}
.y24{bottom:1139.955000px;}
.y2{bottom:1187.100000px;}
.y1{bottom:1211.100000px;}
.hb{height:36.037500px;}
.h4{height:45.600000px;}
.ha{height:58.652344px;}
.h5{height:68.947266px;}
.h9{height:72.300000px;}
.hc{height:72.600000px;}
.h3{height:79.980469px;}
.h6{height:82.441406px;}
.h2{height:84.656250px;}
.hd{height:86.338763px;}
.h8{height:108.637500px;}
.h7{height:144.900000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:45.300000px;}
.w6{width:125.737500px;}
.w5{width:127.537500px;}
.w3{width:142.537500px;}
.w7{width:144.637500px;}
.w4{width:173.475000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:9.300000px;}
.x15{left:21.900000px;}
.x1f{left:26.100000px;}
.x1e{left:27.300000px;}
.x10{left:29.400000px;}
.x27{left:34.500000px;}
.x26{left:36.000000px;}
.x19{left:37.200000px;}
.x18{left:39.000000px;}
.x23{left:43.500000px;}
.x12{left:51.345000px;}
.xf{left:52.807500px;}
.x17{left:55.485000px;}
.x1b{left:57.600000px;}
.x1d{left:60.030000px;}
.x22{left:63.600000px;}
.x20{left:65.137500px;}
.x21{left:67.245000px;}
.x13{left:70.245000px;}
.x1c{left:72.637500px;}
.x25{left:75.000000px;}
.x1{left:117.637500px;}
.xe{left:120.037500px;}
.xd{left:127.537500px;}
.xc{left:170.130000px;}
.x3{left:180.675000px;}
.x5{left:205.875000px;}
.x6{left:223.575000px;}
.x11{left:263.475000px;}
.xa{left:301.020000px;}
.x9{left:303.720000px;}
.x8{left:319.620000px;}
.x28{left:324.120000px;}
.xb{left:334.620000px;}
.x2{left:421.350000px;}
.x14{left:437.550000px;}
.x7{left:499.650000px;}
.x16{left:565.995000px;}
.x1a{left:692.625000px;}
.x4{left:788.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.557333pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.490667pt;}
.ls5{letter-spacing:-0.330667pt;}
.lsf{letter-spacing:-0.245333pt;}
.ls15{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.650667pt;}
.lsa{letter-spacing:0.682667pt;}
.ls9{letter-spacing:0.709333pt;}
.ls1{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.789333pt;}
.ls11{letter-spacing:0.896000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls13{letter-spacing:1.173333pt;}
.ls16{letter-spacing:1.600000pt;}
.ls14{letter-spacing:148.842667pt;}
.ws1{word-spacing:-19.733333pt;}
.ws8{word-spacing:-19.402667pt;}
.ws9{word-spacing:-19.242667pt;}
.wsa{word-spacing:-19.200000pt;}
.ws5{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.wsb{word-spacing:-18.581333pt;}
.ws7{word-spacing:-18.421333pt;}
.ws3{word-spacing:-18.176000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws6{word-spacing:-17.109333pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-2.090667pt;}
._0{margin-left:-1.066667pt;}
._1{width:0.986667pt;}
._2{width:1.882667pt;}
._5{width:3.306667pt;}
._6{width:4.261333pt;}
._7{width:5.189333pt;}
._14{width:6.240000pt;}
._10{width:7.248000pt;}
._f{width:8.949333pt;}
._12{width:10.325333pt;}
._1b{width:11.221333pt;}
._1a{width:12.320000pt;}
._d{width:13.722667pt;}
._e{width:14.720000pt;}
._11{width:15.877333pt;}
._35{width:16.789333pt;}
._13{width:17.770667pt;}
._18{width:19.845333pt;}
._26{width:20.741333pt;}
._19{width:22.672000pt;}
._1f{width:23.632000pt;}
._17{width:24.677333pt;}
._16{width:25.856000pt;}
._9{width:27.573333pt;}
._8{width:28.821333pt;}
._15{width:30.490667pt;}
._b{width:32.277333pt;}
._a{width:33.322667pt;}
._1c{width:34.874667pt;}
._25{width:36.309333pt;}
._2c{width:37.930667pt;}
._1e{width:39.146667pt;}
._1d{width:40.042667pt;}
._28{width:41.466667pt;}
._27{width:43.253333pt;}
._30{width:44.229333pt;}
._2b{width:45.120000pt;}
._29{width:46.368000pt;}
._2d{width:47.786667pt;}
._20{width:49.488000pt;}
._22{width:50.554667pt;}
._21{width:51.445333pt;}
._24{width:56.298667pt;}
._23{width:58.042667pt;}
._4{width:59.792000pt;}
._3{width:61.162667pt;}
._2a{width:62.197333pt;}
._34{width:66.933333pt;}
._33{width:67.877333pt;}
._2e{width:73.200000pt;}
._2f{width:74.533333pt;}
._37{width:122.197333pt;}
._36{width:123.818667pt;}
._31{width:130.656000pt;}
._32{width:388.416000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:72.533333pt;}
.fs0{font-size:74.666667pt;}
.y6{bottom:-1.300000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:14.933333pt;}
.y39{bottom:15.193333pt;}
.y35{bottom:15.200000pt;}
.y37{bottom:15.466667pt;}
.y3c{bottom:15.480000pt;}
.y5{bottom:20.033333pt;}
.y32{bottom:31.466667pt;}
.y2c{bottom:47.213333pt;}
.y33{bottom:47.466667pt;}
.y3f{bottom:47.493333pt;}
.y3b{bottom:47.746667pt;}
.y4{bottom:53.066667pt;}
.y2f{bottom:63.200000pt;}
.y3e{bottom:63.493333pt;}
.y31{bottom:63.733333pt;}
.y3{bottom:77.900000pt;}
.y2b{bottom:79.466667pt;}
.y34{bottom:79.760000pt;}
.y40{bottom:79.773333pt;}
.y2d{bottom:111.466667pt;}
.y23{bottom:111.766667pt;}
.y38{bottom:125.900000pt;}
.y22{bottom:143.760000pt;}
.y5a{bottom:157.400000pt;}
.y36{bottom:158.733333pt;}
.y56{bottom:174.200000pt;}
.y21{bottom:176.066667pt;}
.y55{bottom:206.200000pt;}
.y59{bottom:207.800000pt;}
.y20{bottom:208.333333pt;}
.y30{bottom:223.800000pt;}
.y54{bottom:238.466667pt;}
.y1f{bottom:240.333333pt;}
.y53{bottom:270.733333pt;}
.y1e{bottom:272.600000pt;}
.y52{bottom:302.760000pt;}
.y1d{bottom:304.893333pt;}
.y2a{bottom:320.893333pt;}
.y51{bottom:335.026667pt;}
.y1c{bottom:337.173333pt;}
.y50{bottom:367.293333pt;}
.y1b{bottom:369.173333pt;}
.y4f{bottom:399.560000pt;}
.y1a{bottom:401.440000pt;}
.y4e{bottom:431.560000pt;}
.y28{bottom:433.173333pt;}
.y19{bottom:433.693333pt;}
.y4d{bottom:463.866667pt;}
.y29{bottom:465.466667pt;}
.y18{bottom:466.000000pt;}
.y4c{bottom:496.133333pt;}
.y17{bottom:498.000000pt;}
.y4b{bottom:528.400000pt;}
.y16{bottom:530.266667pt;}
.y4a{bottom:560.400000pt;}
.y57{bottom:562.000000pt;}
.y15{bottom:562.533333pt;}
.y49{bottom:592.666667pt;}
.y14{bottom:594.800000pt;}
.y48{bottom:624.960000pt;}
.y13{bottom:626.840000pt;}
.y47{bottom:657.226667pt;}
.y12{bottom:659.093333pt;}
.y46{bottom:689.226667pt;}
.y11{bottom:691.373333pt;}
.y45{bottom:721.506667pt;}
.y10{bottom:723.626667pt;}
.y44{bottom:753.800000pt;}
.yf{bottom:755.666667pt;}
.y43{bottom:786.066667pt;}
.ye{bottom:787.933333pt;}
.y42{bottom:818.066667pt;}
.y58{bottom:819.666667pt;}
.yd{bottom:820.200000pt;}
.y41{bottom:849.800000pt;}
.yc{bottom:852.466667pt;}
.y3d{bottom:867.933333pt;}
.yb{bottom:883.933333pt;}
.y27{bottom:884.466667pt;}
.ya{bottom:916.773333pt;}
.y9{bottom:948.506667pt;}
.y26{bottom:949.040000pt;}
.y3a{bottom:965.026667pt;}
.y8{bottom:980.760000pt;}
.y25{bottom:981.293333pt;}
.y7{bottom:1012.773333pt;}
.y24{bottom:1013.293333pt;}
.y2{bottom:1055.200000pt;}
.y1{bottom:1076.533333pt;}
.hb{height:32.033333pt;}
.h4{height:40.533333pt;}
.ha{height:52.135417pt;}
.h5{height:61.286458pt;}
.h9{height:64.266667pt;}
.hc{height:64.533333pt;}
.h3{height:71.093750pt;}
.h6{height:73.281250pt;}
.h2{height:75.250000pt;}
.hd{height:76.745567pt;}
.h8{height:96.566667pt;}
.h7{height:128.800000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.266667pt;}
.w6{width:111.766667pt;}
.w5{width:113.366667pt;}
.w3{width:126.700000pt;}
.w7{width:128.566667pt;}
.w4{width:154.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:8.266667pt;}
.x15{left:19.466667pt;}
.x1f{left:23.200000pt;}
.x1e{left:24.266667pt;}
.x10{left:26.133333pt;}
.x27{left:30.666667pt;}
.x26{left:32.000000pt;}
.x19{left:33.066667pt;}
.x18{left:34.666667pt;}
.x23{left:38.666667pt;}
.x12{left:45.640000pt;}
.xf{left:46.940000pt;}
.x17{left:49.320000pt;}
.x1b{left:51.200000pt;}
.x1d{left:53.360000pt;}
.x22{left:56.533333pt;}
.x20{left:57.900000pt;}
.x21{left:59.773333pt;}
.x13{left:62.440000pt;}
.x1c{left:64.566667pt;}
.x25{left:66.666667pt;}
.x1{left:104.566667pt;}
.xe{left:106.700000pt;}
.xd{left:113.366667pt;}
.xc{left:151.226667pt;}
.x3{left:160.600000pt;}
.x5{left:183.000000pt;}
.x6{left:198.733333pt;}
.x11{left:234.200000pt;}
.xa{left:267.573333pt;}
.x9{left:269.973333pt;}
.x8{left:284.106667pt;}
.x28{left:288.106667pt;}
.xb{left:297.440000pt;}
.x2{left:374.533333pt;}
.x14{left:388.933333pt;}
.x7{left:444.133333pt;}
.x16{left:503.106667pt;}
.x1a{left:615.666667pt;}
.x4{left:701.066667pt;}
}




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