
    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_182f579b6a59a885dbc672cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_c99b8e1adae8151b60b589fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ce42c5f8dcf28d3d9bde6903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_ddc021c4fbe0f70986c6ec1d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f84da5a40ea1670d5e7e071.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_ed013c5977fd5ef8d7f0e385.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d9ff80465b5c3a26d539619a.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1dc954bce77a272c2034b0b7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9f0cfa0315a6ec4a342e2003.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ea717883abcccea5fcd72c92.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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;}
.ls3{letter-spacing:-0.198000px;}
.ls6{letter-spacing:-0.139200px;}
.ls7{letter-spacing:-0.014280px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.089280px;}
.lsc{letter-spacing:0.095040px;}
.lse{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.151200px;}
.lsb{letter-spacing:0.256800px;}
.ls4{letter-spacing:0.331800px;}
.ls0{letter-spacing:3.396000px;}
.lsd{letter-spacing:41.563872px;}
.ls9{letter-spacing:70.975872px;}
.lsa{letter-spacing:151.865280px;}
.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:-54.576000px;}
.ws0{word-spacing:-27.973440px;}
.ws1{word-spacing:-17.430240px;}
.ws9{word-spacing:-12.338520px;}
.ws8{word-spacing:-12.157920px;}
.wsa{word-spacing:-12.136320px;}
.ws2{word-spacing:-12.006720px;}
.ws7{word-spacing:-11.992440px;}
.ws6{word-spacing:-11.867520px;}
.ws4{word-spacing:-11.808720px;}
.wsb{word-spacing:-9.242496px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-11.947488px;}
._9{margin-left:-10.680768px;}
._0{margin-left:-9.536400px;}
._c{margin-left:-8.281776px;}
._3{margin-left:-4.958928px;}
._2{margin-left:-3.051648px;}
._1{margin-left:-2.034432px;}
._4{margin-left:-1.017216px;}
._8{width:1.287552px;}
._5{width:2.998224px;}
._6{width:4.210272px;}
._7{width:5.471232px;}
._16{width:7.131120px;}
._15{width:8.250144px;}
._11{width:9.550800px;}
._12{width:10.860624px;}
._10{width:13.549968px;}
._f{width:14.626368px;}
._17{width:16.528992px;}
._13{width:18.228384px;}
._b{width:84.125856px;}
._a{width:138.185280px;}
._14{width:151.865280px;}
._e{width:639.353280px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:40.896000px;}
.fs5{font-size:45.216000px;}
.fs0{font-size:54.576000px;}
.fs2{font-size:63.792000px;}
.fs3{font-size:72.576000px;}
.fs1{font-size:127.152000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.700000px;}
.y34{bottom:2.730000px;}
.y58{bottom:2.745000px;}
.y22{bottom:4.095000px;}
.y20{bottom:4.110000px;}
.y5b{bottom:15.150000px;}
.y83{bottom:15.270000px;}
.y33{bottom:15.300000px;}
.y82{bottom:27.690000px;}
.y57{bottom:27.720000px;}
.y86{bottom:27.855000px;}
.y56{bottom:40.245000px;}
.y85{bottom:40.275000px;}
.y3{bottom:187.815000px;}
.y7f{bottom:248.010000px;}
.y1c{bottom:251.130000px;}
.y7e{bottom:266.430000px;}
.y1b{bottom:269.565000px;}
.y54{bottom:272.850000px;}
.y7d{bottom:284.730000px;}
.y53{bottom:291.270000px;}
.y1a{bottom:297.030000px;}
.y5a{bottom:302.370000px;}
.y7c{bottom:303.990000px;}
.y52{bottom:309.705000px;}
.y19{bottom:315.465000px;}
.y7b{bottom:322.410000px;}
.y87{bottom:329.250000px;}
.y51{bottom:333.465000px;}
.y59{bottom:334.830000px;}
.y7a{bottom:340.710000px;}
.y18{bottom:344.130000px;}
.y84{bottom:349.170000px;}
.y79{bottom:359.820000px;}
.y50{bottom:363.240000px;}
.y17{bottom:364.470000px;}
.y78{bottom:379.080000px;}
.y4f{bottom:381.675000px;}
.y16{bottom:383.730000px;}
.y77{bottom:397.515000px;}
.y4e{bottom:406.365000px;}
.y81{bottom:406.800000px;}
.y15{bottom:411.150000px;}
.y76{bottom:415.800000px;}
.y75{bottom:435.060000px;}
.y4d{bottom:438.195000px;}
.y14{bottom:438.735000px;}
.y80{bottom:451.830000px;}
.y74{bottom:454.170000px;}
.y4c{bottom:456.630000px;}
.y31{bottom:461.955000px;}
.y13{bottom:466.170000px;}
.y4b{bottom:475.050000px;}
.y73{bottom:478.050000px;}
.y30{bottom:490.470000px;}
.y4a{bottom:493.485000px;}
.y12{bottom:493.740000px;}
.y72{bottom:507.525000px;}
.y49{bottom:511.920000px;}
.y2f{bottom:514.515000px;}
.y11{bottom:521.175000px;}
.y71{bottom:522.540000px;}
.y48{bottom:530.355000px;}
.y2e{bottom:538.665000px;}
.y70{bottom:540.975000px;}
.y47{bottom:548.640000px;}
.y10{bottom:548.790000px;}
.y2d{bottom:562.680000px;}
.y6f{bottom:565.710000px;}
.y46{bottom:567.075000px;}
.yf{bottom:576.210000px;}
.y55{bottom:582.765000px;}
.y2c{bottom:586.875000px;}
.y45{bottom:591.765000px;}
.y6e{bottom:597.390000px;}
.ye{bottom:603.795000px;}
.y2b{bottom:610.890000px;}
.y6d{bottom:612.390000px;}
.y98{bottom:618.405000px;}
.y44{bottom:623.700000px;}
.yd{bottom:631.230000px;}
.y6c{bottom:631.515000px;}
.y97{bottom:633.135000px;}
.y2a{bottom:635.040000px;}
.y43{bottom:642.135000px;}
.y96{bottom:648.000000px;}
.y6b{bottom:649.950000px;}
.yc{bottom:658.800000px;}
.y29{bottom:659.085000px;}
.y42{bottom:660.450000px;}
.y95{bottom:668.340000px;}
.y6a{bottom:669.165000px;}
.y41{bottom:678.855000px;}
.y28{bottom:683.250000px;}
.yb{bottom:686.235000px;}
.y69{bottom:687.450000px;}
.y40{bottom:697.290000px;}
.y94{bottom:698.115000px;}
.y68{bottom:705.885000px;}
.y27{bottom:707.250000px;}
.ya{bottom:714.630000px;}
.y3f{bottom:715.710000px;}
.y93{bottom:716.550000px;}
.y67{bottom:725.010000px;}
.y26{bottom:731.415000px;}
.y3e{bottom:734.145000px;}
.y92{bottom:734.970000px;}
.y9{bottom:744.405000px;}
.y66{bottom:748.905000px;}
.y3d{bottom:752.580000px;}
.y91{bottom:753.405000px;}
.y25{bottom:759.270000px;}
.y3c{bottom:770.865000px;}
.y90{bottom:771.690000px;}
.y8{bottom:772.815000px;}
.y65{bottom:778.530000px;}
.y3b{bottom:789.300000px;}
.y8f{bottom:790.950000px;}
.y24{bottom:795.855000px;}
.y64{bottom:797.790000px;}
.y7{bottom:799.560000px;}
.y3a{bottom:807.735000px;}
.y8e{bottom:809.250000px;}
.y23{bottom:809.385000px;}
.y63{bottom:816.195000px;}
.y39{bottom:826.170000px;}
.y21{bottom:826.995000px;}
.y8d{bottom:827.670000px;}
.y62{bottom:834.510000px;}
.y6{bottom:836.970000px;}
.y1f{bottom:844.590000px;}
.y8c{bottom:846.930000px;}
.y61{bottom:853.740000px;}
.y38{bottom:863.025000px;}
.y8b{bottom:865.230000px;}
.y60{bottom:872.025000px;}
.y5{bottom:874.230000px;}
.y37{bottom:881.310000px;}
.y1e{bottom:884.055000px;}
.y8a{bottom:884.490000px;}
.y32{bottom:885.420000px;}
.y5f{bottom:891.285000px;}
.y36{bottom:899.745000px;}
.y89{bottom:902.910000px;}
.y5e{bottom:909.720000px;}
.y4{bottom:911.625000px;}
.y35{bottom:924.585000px;}
.y88{bottom:926.640000px;}
.y5d{bottom:928.005000px;}
.y1d{bottom:928.830000px;}
.y2{bottom:944.820000px;}
.y1{bottom:957.780000px;}
.hf{height:13.788000px;}
.h4{height:17.064000px;}
.hc{height:26.208000px;}
.h7{height:26.352000px;}
.he{height:30.136641px;}
.hb{height:38.772000px;}
.h8{height:40.676344px;}
.h1{height:46.208391px;}
.ha{height:51.336000px;}
.h3{height:54.011391px;}
.hd{height:56.095528px;}
.h6{height:61.448625px;}
.h5{height:74.312437px;}
.h9{height:74.596691px;}
.h2{height:107.657016px;}
.h0{height:1188.000000px;}
.w3{width:132.552000px;}
.w2{width:132.588000px;}
.w4{width:259.950000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:2.595000px;}
.x5{left:5.868000px;}
.x4{left:76.032000px;}
.x2{left:81.899986px;}
.x9{left:94.463986px;}
.xd{left:102.383986px;}
.xa{left:106.883986px;}
.xe{left:122.867986px;}
.x1{left:202.214986px;}
.x6{left:209.160000px;}
.x3{left:244.799986px;}
.x7{left:342.285000px;}
.x8{left:475.380000px;}
.xb{left:652.035000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.176000pt;}
.ls6{letter-spacing:-0.123733pt;}
.ls7{letter-spacing:-0.012693pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.079360pt;}
.lsc{letter-spacing:0.084480pt;}
.lse{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.134400pt;}
.lsb{letter-spacing:0.228267pt;}
.ls4{letter-spacing:0.294933pt;}
.ls0{letter-spacing:3.018667pt;}
.lsd{letter-spacing:36.945664pt;}
.ls9{letter-spacing:63.089664pt;}
.lsa{letter-spacing:134.991360pt;}
.ws3{word-spacing:-48.512000pt;}
.ws0{word-spacing:-24.865280pt;}
.ws1{word-spacing:-15.493547pt;}
.ws9{word-spacing:-10.967573pt;}
.ws8{word-spacing:-10.807040pt;}
.wsa{word-spacing:-10.787840pt;}
.ws2{word-spacing:-10.672640pt;}
.ws7{word-spacing:-10.659947pt;}
.ws6{word-spacing:-10.548907pt;}
.ws4{word-spacing:-10.496640pt;}
.wsb{word-spacing:-8.215552pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-10.619989pt;}
._9{margin-left:-9.494016pt;}
._0{margin-left:-8.476800pt;}
._c{margin-left:-7.361579pt;}
._3{margin-left:-4.407936pt;}
._2{margin-left:-2.712576pt;}
._1{margin-left:-1.808384pt;}
._4{margin-left:-0.904192pt;}
._8{width:1.144491pt;}
._5{width:2.665088pt;}
._6{width:3.742464pt;}
._7{width:4.863317pt;}
._16{width:6.338773pt;}
._15{width:7.333461pt;}
._11{width:8.489600pt;}
._12{width:9.653888pt;}
._10{width:12.044416pt;}
._f{width:13.001216pt;}
._17{width:14.692437pt;}
._13{width:16.203008pt;}
._b{width:74.778539pt;}
._a{width:122.831360pt;}
._14{width:134.991360pt;}
._e{width:568.314027pt;}
.fs4{font-size:36.352000pt;}
.fs5{font-size:40.192000pt;}
.fs0{font-size:48.512000pt;}
.fs2{font-size:56.704000pt;}
.fs3{font-size:64.512000pt;}
.fs1{font-size:113.024000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.400000pt;}
.y34{bottom:2.426667pt;}
.y58{bottom:2.440000pt;}
.y22{bottom:3.640000pt;}
.y20{bottom:3.653333pt;}
.y5b{bottom:13.466667pt;}
.y83{bottom:13.573333pt;}
.y33{bottom:13.600000pt;}
.y82{bottom:24.613333pt;}
.y57{bottom:24.640000pt;}
.y86{bottom:24.760000pt;}
.y56{bottom:35.773333pt;}
.y85{bottom:35.800000pt;}
.y3{bottom:166.946667pt;}
.y7f{bottom:220.453333pt;}
.y1c{bottom:223.226667pt;}
.y7e{bottom:236.826667pt;}
.y1b{bottom:239.613333pt;}
.y54{bottom:242.533333pt;}
.y7d{bottom:253.093333pt;}
.y53{bottom:258.906667pt;}
.y1a{bottom:264.026667pt;}
.y5a{bottom:268.773333pt;}
.y7c{bottom:270.213333pt;}
.y52{bottom:275.293333pt;}
.y19{bottom:280.413333pt;}
.y7b{bottom:286.586667pt;}
.y87{bottom:292.666667pt;}
.y51{bottom:296.413333pt;}
.y59{bottom:297.626667pt;}
.y7a{bottom:302.853333pt;}
.y18{bottom:305.893333pt;}
.y84{bottom:310.373333pt;}
.y79{bottom:319.840000pt;}
.y50{bottom:322.880000pt;}
.y17{bottom:323.973333pt;}
.y78{bottom:336.960000pt;}
.y4f{bottom:339.266667pt;}
.y16{bottom:341.093333pt;}
.y77{bottom:353.346667pt;}
.y4e{bottom:361.213333pt;}
.y81{bottom:361.600000pt;}
.y15{bottom:365.466667pt;}
.y76{bottom:369.600000pt;}
.y75{bottom:386.720000pt;}
.y4d{bottom:389.506667pt;}
.y14{bottom:389.986667pt;}
.y80{bottom:401.626667pt;}
.y74{bottom:403.706667pt;}
.y4c{bottom:405.893333pt;}
.y31{bottom:410.626667pt;}
.y13{bottom:414.373333pt;}
.y4b{bottom:422.266667pt;}
.y73{bottom:424.933333pt;}
.y30{bottom:435.973333pt;}
.y4a{bottom:438.653333pt;}
.y12{bottom:438.880000pt;}
.y72{bottom:451.133333pt;}
.y49{bottom:455.040000pt;}
.y2f{bottom:457.346667pt;}
.y11{bottom:463.266667pt;}
.y71{bottom:464.480000pt;}
.y48{bottom:471.426667pt;}
.y2e{bottom:478.813333pt;}
.y70{bottom:480.866667pt;}
.y47{bottom:487.680000pt;}
.y10{bottom:487.813333pt;}
.y2d{bottom:500.160000pt;}
.y6f{bottom:502.853333pt;}
.y46{bottom:504.066667pt;}
.yf{bottom:512.186667pt;}
.y55{bottom:518.013333pt;}
.y2c{bottom:521.666667pt;}
.y45{bottom:526.013333pt;}
.y6e{bottom:531.013333pt;}
.ye{bottom:536.706667pt;}
.y2b{bottom:543.013333pt;}
.y6d{bottom:544.346667pt;}
.y98{bottom:549.693333pt;}
.y44{bottom:554.400000pt;}
.yd{bottom:561.093333pt;}
.y6c{bottom:561.346667pt;}
.y97{bottom:562.786667pt;}
.y2a{bottom:564.480000pt;}
.y43{bottom:570.786667pt;}
.y96{bottom:576.000000pt;}
.y6b{bottom:577.733333pt;}
.yc{bottom:585.600000pt;}
.y29{bottom:585.853333pt;}
.y42{bottom:587.066667pt;}
.y95{bottom:594.080000pt;}
.y6a{bottom:594.813333pt;}
.y41{bottom:603.426667pt;}
.y28{bottom:607.333333pt;}
.yb{bottom:609.986667pt;}
.y69{bottom:611.066667pt;}
.y40{bottom:619.813333pt;}
.y94{bottom:620.546667pt;}
.y68{bottom:627.453333pt;}
.y27{bottom:628.666667pt;}
.ya{bottom:635.226667pt;}
.y3f{bottom:636.186667pt;}
.y93{bottom:636.933333pt;}
.y67{bottom:644.453333pt;}
.y26{bottom:650.146667pt;}
.y3e{bottom:652.573333pt;}
.y92{bottom:653.306667pt;}
.y9{bottom:661.693333pt;}
.y66{bottom:665.693333pt;}
.y3d{bottom:668.960000pt;}
.y91{bottom:669.693333pt;}
.y25{bottom:674.906667pt;}
.y3c{bottom:685.213333pt;}
.y90{bottom:685.946667pt;}
.y8{bottom:686.946667pt;}
.y65{bottom:692.026667pt;}
.y3b{bottom:701.600000pt;}
.y8f{bottom:703.066667pt;}
.y24{bottom:707.426667pt;}
.y64{bottom:709.146667pt;}
.y7{bottom:710.720000pt;}
.y3a{bottom:717.986667pt;}
.y8e{bottom:719.333333pt;}
.y23{bottom:719.453333pt;}
.y63{bottom:725.506667pt;}
.y39{bottom:734.373333pt;}
.y21{bottom:735.106667pt;}
.y8d{bottom:735.706667pt;}
.y62{bottom:741.786667pt;}
.y6{bottom:743.973333pt;}
.y1f{bottom:750.746667pt;}
.y8c{bottom:752.826667pt;}
.y61{bottom:758.880000pt;}
.y38{bottom:767.133333pt;}
.y8b{bottom:769.093333pt;}
.y60{bottom:775.133333pt;}
.y5{bottom:777.093333pt;}
.y37{bottom:783.386667pt;}
.y1e{bottom:785.826667pt;}
.y8a{bottom:786.213333pt;}
.y32{bottom:787.040000pt;}
.y5f{bottom:792.253333pt;}
.y36{bottom:799.773333pt;}
.y89{bottom:802.586667pt;}
.y5e{bottom:808.640000pt;}
.y4{bottom:810.333333pt;}
.y35{bottom:821.853333pt;}
.y88{bottom:823.680000pt;}
.y5d{bottom:824.893333pt;}
.y1d{bottom:825.626667pt;}
.y2{bottom:839.840000pt;}
.y1{bottom:851.360000pt;}
.hf{height:12.256000pt;}
.h4{height:15.168000pt;}
.hc{height:23.296000pt;}
.h7{height:23.424000pt;}
.he{height:26.788125pt;}
.hb{height:34.464000pt;}
.h8{height:36.156750pt;}
.h1{height:41.074125pt;}
.ha{height:45.632000pt;}
.h3{height:48.010125pt;}
.hd{height:49.862691pt;}
.h6{height:54.621000pt;}
.h5{height:66.055500pt;}
.h9{height:66.308170pt;}
.h2{height:95.695125pt;}
.h0{height:1056.000000pt;}
.w3{width:117.824000pt;}
.w2{width:117.856000pt;}
.w4{width:231.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.306667pt;}
.x5{left:5.216000pt;}
.x4{left:67.584000pt;}
.x2{left:72.799988pt;}
.x9{left:83.967988pt;}
.xd{left:91.007988pt;}
.xa{left:95.007988pt;}
.xe{left:109.215988pt;}
.x1{left:179.746655pt;}
.x6{left:185.920000pt;}
.x3{left:217.599988pt;}
.x7{left:304.253333pt;}
.x8{left:422.560000pt;}
.xb{left:579.586667pt;}
}




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