
    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_b7ee6d4ecd0f50b3f42bd1cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_80255618e0c86d278f0a3c67.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_571ed90edcaa7e03dcf5f14c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1663c92e5bccceb908d94e25.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_1b2d92a3a754393c32ee5a45.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9bf177083fa9e989d44cc051.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_0210505ed92fb252c5d63eb7.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000001px;}
.ls7{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:11.664000px;}
.ls3{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.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 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.208000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-4.752000px;}
._c{margin-left:-3.582240px;}
._3{margin-left:-2.083680px;}
._2{margin-left:-1.008000px;}
._0{width:1.723680px;}
._4{width:3.130560px;}
._a{width:4.292640px;}
._b{width:5.499360px;}
._5{width:6.984000px;}
._6{width:8.064000px;}
._7{width:9.648000px;}
._8{width:11.232000px;}
._12{width:12.312000px;}
._18{width:13.320000px;}
._f{width:14.328000px;}
._10{width:15.696000px;}
._d{width:19.296000px;}
._e{width:20.956320px;}
._16{width:22.104000px;}
._14{width:24.120000px;}
._15{width:25.632000px;}
._17{width:27.648000px;}
._19{width:29.448000px;}
._11{width:31.320000px;}
._9{width:38.664000px;}
._1{width:141.870226px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc3{color:rgb(68,68,68);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs4{font-size:2.880000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:22.140000px;}
.y5{bottom:26.640000px;}
.y6f{bottom:29.520000px;}
.y3d{bottom:29.700000px;}
.y48{bottom:29.730000px;}
.y50{bottom:29.745000px;}
.y3{bottom:31.140000px;}
.y6d{bottom:33.870000px;}
.y4{bottom:42.120000px;}
.y4a{bottom:45.180000px;}
.y22{bottom:45.390000px;}
.y6a{bottom:56.205000px;}
.y4b{bottom:60.660000px;}
.y7c{bottom:111.816000px;}
.y57{bottom:111.996000px;}
.y8f{bottom:118.656000px;}
.y20{bottom:131.076000px;}
.y68{bottom:132.516000px;}
.y7b{bottom:142.776000px;}
.y56{bottom:143.136000px;}
.y8e{bottom:149.616000px;}
.y9f{bottom:161.490000px;}
.y1f{bottom:162.030000px;}
.y67{bottom:163.650000px;}
.y7a{bottom:173.910000px;}
.y55{bottom:174.090000px;}
.y8d{bottom:180.750000px;}
.y1e{bottom:192.990000px;}
.y66{bottom:194.610000px;}
.y54{bottom:205.230000px;}
.y9e{bottom:207.930000px;}
.y79{bottom:219.810000px;}
.y65{bottom:225.750000px;}
.y8c{bottom:226.650000px;}
.y1d{bottom:239.070000px;}
.y53{bottom:250.950000px;}
.y9d{bottom:254.730000px;}
.y64{bottom:256.710000px;}
.y8b{bottom:257.790000px;}
.y1c{bottom:270.210000px;}
.y78{bottom:281.910000px;}
.y63{bottom:287.850000px;}
.y8a{bottom:288.750000px;}
.y52{bottom:296.850000px;}
.y9c{bottom:300.810000px;}
.y1b{bottom:301.170000px;}
.y77{bottom:313.050000px;}
.y62{bottom:318.810000px;}
.y89{bottom:319.890000px;}
.y51{bottom:327.990000px;}
.y9b{bottom:331.950000px;}
.y1a{bottom:332.310000px;}
.y39{bottom:343.140000px;}
.y76{bottom:344.010000px;}
.y38{bottom:344.745000px;}
.y4f{bottom:345.450000px;}
.y21{bottom:348.705000px;}
.y61{bottom:349.950000px;}
.y88{bottom:350.850000px;}
.y9a{bottom:362.910000px;}
.y19{bottom:363.270000px;}
.y75{bottom:375.195000px;}
.y60{bottom:380.955000px;}
.y4e{bottom:392.295000px;}
.y99{bottom:393.915000px;}
.y18{bottom:394.455000px;}
.y87{bottom:396.975000px;}
.y74{bottom:406.155000px;}
.y5f{bottom:411.915000px;}
.y98{bottom:425.055000px;}
.y86{bottom:428.115000px;}
.y73{bottom:437.295000px;}
.y4d{bottom:439.095000px;}
.y17{bottom:440.535000px;}
.y37{bottom:443.055000px;}
.y97{bottom:456.015000px;}
.y85{bottom:459.075000px;}
.y72{bottom:468.255000px;}
.y36{bottom:474.015000px;}
.y4c{bottom:485.895000px;}
.y16{bottom:486.435000px;}
.y96{bottom:487.155000px;}
.y84{bottom:490.215000px;}
.y71{bottom:499.395000px;}
.y35{bottom:505.155000px;}
.y15{bottom:517.575000px;}
.y95{bottom:518.115000px;}
.y5e{bottom:520.095000px;}
.y83{bottom:521.175000px;}
.y49{bottom:532.695000px;}
.y34{bottom:536.115000px;}
.y70{bottom:545.115000px;}
.y14{bottom:548.535000px;}
.y94{bottom:549.255000px;}
.y5d{bottom:551.235000px;}
.y6e{bottom:561.855000px;}
.y33{bottom:567.255000px;}
.y93{bottom:580.215000px;}
.y5c{bottom:582.195000px;}
.y13{bottom:594.615000px;}
.y6c{bottom:607.755000px;}
.y47{bottom:610.455000px;}
.y92{bottom:611.355000px;}
.y32{bottom:613.335000px;}
.y12{bottom:625.785000px;}
.y91{bottom:642.345000px;}
.y31{bottom:644.325000px;}
.y11{bottom:656.745000px;}
.y46{bottom:657.285000px;}
.y30{bottom:675.465000px;}
.y10{bottom:687.885000px;}
.y90{bottom:691.125000px;}
.y45{bottom:704.085000px;}
.y2f{bottom:706.425000px;}
.yf{bottom:718.845000px;}
.y2e{bottom:737.565000px;}
.y44{bottom:750.885000px;}
.y5b{bottom:752.505000px;}
.ye{bottom:764.925000px;}
.y2d{bottom:768.525000px;}
.y3a{bottom:780.765000px;}
.y5a{bottom:783.465000px;}
.y43{bottom:797.685000px;}
.y82{bottom:799.665000px;}
.yd{bottom:812.085000px;}
.y2c{bottom:814.605000px;}
.y6b{bottom:814.965000px;}
.y81{bottom:830.625000px;}
.y42{bottom:844.485000px;}
.y2b{bottom:845.565000px;}
.yc{bottom:860.145000px;}
.y69{bottom:861.045000px;}
.y80{bottom:861.765000px;}
.y2a{bottom:876.705000px;}
.y41{bottom:891.330000px;}
.y7f{bottom:892.770000px;}
.y29{bottom:907.710000px;}
.yb{bottom:908.070000px;}
.y59{bottom:922.830000px;}
.y7e{bottom:923.910000px;}
.y40{bottom:938.130000px;}
.y28{bottom:938.850000px;}
.y58{bottom:953.790000px;}
.ya{bottom:954.510000px;}
.y27{bottom:969.810000px;}
.y3f{bottom:984.930000px;}
.y9{bottom:1000.950000px;}
.y26{bottom:1015.890000px;}
.y3e{bottom:1031.730000px;}
.y7d{bottom:1031.910000px;}
.y8{bottom:1046.670000px;}
.y25{bottom:1047.030000px;}
.y7{bottom:1077.630000px;}
.y24{bottom:1077.990000px;}
.y3b{bottom:1078.530000px;}
.y6{bottom:1108.770000px;}
.y23{bottom:1109.130000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1215.360000px;}
.he{height:2.826563px;}
.h15{height:45.885000px;}
.hf{height:46.080000px;}
.h11{height:46.116000px;}
.h4{height:50.229844px;}
.hc{height:50.273438px;}
.h5{height:50.760000px;}
.h3{height:57.948750px;}
.hb{height:62.121000px;}
.h16{height:65.884219px;}
.h9{height:70.664062px;}
.ha{height:71.613281px;}
.h7{height:72.562500px;}
.h8{height:73.722656px;}
.h10{height:74.004654px;}
.h12{height:77.040000px;}
.h2{height:80.283164px;}
.h6{height:95.245664px;}
.h14{height:207.210000px;}
.h13{height:218.370000px;}
.hd{height:780.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:37.980000px;}
.w2{width:50.040000px;}
.w3{width:53.451000px;}
.w4{width:302.790000px;}
.w7{width:348.375000px;}
.w9{width:350.520000px;}
.w8{width:351.195000px;}
.wa{width:351.201000px;}
.w5{width:398.955000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:6.810000px;}
.x11{left:8.091000px;}
.x10{left:42.465000px;}
.x6{left:127.656000px;}
.x1{left:148.896000px;}
.x7{left:151.230000px;}
.xe{left:170.130000px;}
.xf{left:181.110000px;}
.x15{left:191.550000px;}
.xd{left:232.050000px;}
.x2{left:235.110000px;}
.xb{left:259.590000px;}
.x8{left:315.255000px;}
.x16{left:331.995000px;}
.xa{left:354.675000px;}
.x17{left:414.975000px;}
.xc{left:425.775000px;}
.x12{left:430.455000px;}
.x13{left:438.375000px;}
.x14{left:477.075000px;}
.x9{left:478.515000px;}
.x4{left:758.520000px;}
.x3{left:819.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.ls7{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:10.368000pt;}
.ls3{letter-spacing:30.208000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.296000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-4.224000pt;}
._c{margin-left:-3.184213pt;}
._3{margin-left:-1.852160pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.532160pt;}
._4{width:2.782720pt;}
._a{width:3.815680pt;}
._b{width:4.888320pt;}
._5{width:6.208000pt;}
._6{width:7.168000pt;}
._7{width:8.576000pt;}
._8{width:9.984000pt;}
._12{width:10.944000pt;}
._18{width:11.840000pt;}
._f{width:12.736000pt;}
._10{width:13.952000pt;}
._d{width:17.152000pt;}
._e{width:18.627840pt;}
._16{width:19.648000pt;}
._14{width:21.440000pt;}
._15{width:22.784000pt;}
._17{width:24.576000pt;}
._19{width:26.176000pt;}
._11{width:27.840000pt;}
._9{width:34.368000pt;}
._1{width:126.106867pt;}
.fs4{font-size:2.560000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:19.680000pt;}
.y5{bottom:23.680000pt;}
.y6f{bottom:26.240000pt;}
.y3d{bottom:26.400000pt;}
.y48{bottom:26.426667pt;}
.y50{bottom:26.440000pt;}
.y3{bottom:27.680000pt;}
.y6d{bottom:30.106667pt;}
.y4{bottom:37.440000pt;}
.y4a{bottom:40.160000pt;}
.y22{bottom:40.346667pt;}
.y6a{bottom:49.960000pt;}
.y4b{bottom:53.920000pt;}
.y7c{bottom:99.392000pt;}
.y57{bottom:99.552000pt;}
.y8f{bottom:105.472000pt;}
.y20{bottom:116.512000pt;}
.y68{bottom:117.792000pt;}
.y7b{bottom:126.912000pt;}
.y56{bottom:127.232000pt;}
.y8e{bottom:132.992000pt;}
.y9f{bottom:143.546667pt;}
.y1f{bottom:144.026667pt;}
.y67{bottom:145.466667pt;}
.y7a{bottom:154.586667pt;}
.y55{bottom:154.746667pt;}
.y8d{bottom:160.666667pt;}
.y1e{bottom:171.546667pt;}
.y66{bottom:172.986667pt;}
.y54{bottom:182.426667pt;}
.y9e{bottom:184.826667pt;}
.y79{bottom:195.386667pt;}
.y65{bottom:200.666667pt;}
.y8c{bottom:201.466667pt;}
.y1d{bottom:212.506667pt;}
.y53{bottom:223.066667pt;}
.y9d{bottom:226.426667pt;}
.y64{bottom:228.186667pt;}
.y8b{bottom:229.146667pt;}
.y1c{bottom:240.186667pt;}
.y78{bottom:250.586667pt;}
.y63{bottom:255.866667pt;}
.y8a{bottom:256.666667pt;}
.y52{bottom:263.866667pt;}
.y9c{bottom:267.386667pt;}
.y1b{bottom:267.706667pt;}
.y77{bottom:278.266667pt;}
.y62{bottom:283.386667pt;}
.y89{bottom:284.346667pt;}
.y51{bottom:291.546667pt;}
.y9b{bottom:295.066667pt;}
.y1a{bottom:295.386667pt;}
.y39{bottom:305.013333pt;}
.y76{bottom:305.786667pt;}
.y38{bottom:306.440000pt;}
.y4f{bottom:307.066667pt;}
.y21{bottom:309.960000pt;}
.y61{bottom:311.066667pt;}
.y88{bottom:311.866667pt;}
.y9a{bottom:322.586667pt;}
.y19{bottom:322.906667pt;}
.y75{bottom:333.506667pt;}
.y60{bottom:338.626667pt;}
.y4e{bottom:348.706667pt;}
.y99{bottom:350.146667pt;}
.y18{bottom:350.626667pt;}
.y87{bottom:352.866667pt;}
.y74{bottom:361.026667pt;}
.y5f{bottom:366.146667pt;}
.y98{bottom:377.826667pt;}
.y86{bottom:380.546667pt;}
.y73{bottom:388.706667pt;}
.y4d{bottom:390.306667pt;}
.y17{bottom:391.586667pt;}
.y37{bottom:393.826667pt;}
.y97{bottom:405.346667pt;}
.y85{bottom:408.066667pt;}
.y72{bottom:416.226667pt;}
.y36{bottom:421.346667pt;}
.y4c{bottom:431.906667pt;}
.y16{bottom:432.386667pt;}
.y96{bottom:433.026667pt;}
.y84{bottom:435.746667pt;}
.y71{bottom:443.906667pt;}
.y35{bottom:449.026667pt;}
.y15{bottom:460.066667pt;}
.y95{bottom:460.546667pt;}
.y5e{bottom:462.306667pt;}
.y83{bottom:463.266667pt;}
.y49{bottom:473.506667pt;}
.y34{bottom:476.546667pt;}
.y70{bottom:484.546667pt;}
.y14{bottom:487.586667pt;}
.y94{bottom:488.226667pt;}
.y5d{bottom:489.986667pt;}
.y6e{bottom:499.426667pt;}
.y33{bottom:504.226667pt;}
.y93{bottom:515.746667pt;}
.y5c{bottom:517.506667pt;}
.y13{bottom:528.546667pt;}
.y6c{bottom:540.226667pt;}
.y47{bottom:542.626667pt;}
.y92{bottom:543.426667pt;}
.y32{bottom:545.186667pt;}
.y12{bottom:556.253333pt;}
.y91{bottom:570.973333pt;}
.y31{bottom:572.733333pt;}
.y11{bottom:583.773333pt;}
.y46{bottom:584.253333pt;}
.y30{bottom:600.413333pt;}
.y10{bottom:611.453333pt;}
.y90{bottom:614.333333pt;}
.y45{bottom:625.853333pt;}
.y2f{bottom:627.933333pt;}
.yf{bottom:638.973333pt;}
.y2e{bottom:655.613333pt;}
.y44{bottom:667.453333pt;}
.y5b{bottom:668.893333pt;}
.ye{bottom:679.933333pt;}
.y2d{bottom:683.133333pt;}
.y3a{bottom:694.013333pt;}
.y5a{bottom:696.413333pt;}
.y43{bottom:709.053333pt;}
.y82{bottom:710.813333pt;}
.yd{bottom:721.853333pt;}
.y2c{bottom:724.093333pt;}
.y6b{bottom:724.413333pt;}
.y81{bottom:738.333333pt;}
.y42{bottom:750.653333pt;}
.y2b{bottom:751.613333pt;}
.yc{bottom:764.573333pt;}
.y69{bottom:765.373333pt;}
.y80{bottom:766.013333pt;}
.y2a{bottom:779.293333pt;}
.y41{bottom:792.293333pt;}
.y7f{bottom:793.573333pt;}
.y29{bottom:806.853333pt;}
.yb{bottom:807.173333pt;}
.y59{bottom:820.293333pt;}
.y7e{bottom:821.253333pt;}
.y40{bottom:833.893333pt;}
.y28{bottom:834.533333pt;}
.y58{bottom:847.813333pt;}
.ya{bottom:848.453333pt;}
.y27{bottom:862.053333pt;}
.y3f{bottom:875.493333pt;}
.y9{bottom:889.733333pt;}
.y26{bottom:903.013333pt;}
.y3e{bottom:917.093333pt;}
.y7d{bottom:917.253333pt;}
.y8{bottom:930.373333pt;}
.y25{bottom:930.693333pt;}
.y7{bottom:957.893333pt;}
.y24{bottom:958.213333pt;}
.y3b{bottom:958.693333pt;}
.y6{bottom:985.573333pt;}
.y23{bottom:985.893333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1080.320000pt;}
.he{height:2.512500pt;}
.h15{height:40.786667pt;}
.hf{height:40.960000pt;}
.h11{height:40.992000pt;}
.h4{height:44.648750pt;}
.hc{height:44.687500pt;}
.h5{height:45.120000pt;}
.h3{height:51.510000pt;}
.hb{height:55.218667pt;}
.h16{height:58.563750pt;}
.h9{height:62.812500pt;}
.ha{height:63.656250pt;}
.h7{height:64.500000pt;}
.h8{height:65.531250pt;}
.h10{height:65.781915pt;}
.h12{height:68.480000pt;}
.h2{height:71.362813pt;}
.h6{height:84.662813pt;}
.h14{height:184.186667pt;}
.h13{height:194.106667pt;}
.hd{height:694.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:33.760000pt;}
.w2{width:44.480000pt;}
.w3{width:47.512000pt;}
.w4{width:269.146667pt;}
.w7{width:309.666667pt;}
.w9{width:311.573333pt;}
.w8{width:312.173333pt;}
.wa{width:312.178667pt;}
.w5{width:354.626667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.053333pt;}
.x11{left:7.192000pt;}
.x10{left:37.746667pt;}
.x6{left:113.472000pt;}
.x1{left:132.352000pt;}
.x7{left:134.426667pt;}
.xe{left:151.226667pt;}
.xf{left:160.986667pt;}
.x15{left:170.266667pt;}
.xd{left:206.266667pt;}
.x2{left:208.986667pt;}
.xb{left:230.746667pt;}
.x8{left:280.226667pt;}
.x16{left:295.106667pt;}
.xa{left:315.266667pt;}
.x17{left:368.866667pt;}
.xc{left:378.466667pt;}
.x12{left:382.626667pt;}
.x13{left:389.666667pt;}
.x14{left:424.066667pt;}
.x9{left:425.346667pt;}
.x4{left:674.240000pt;}
.x3{left:728.453333pt;}
}




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