
    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_b9e19ecd935089275fd5b6e6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e78533cd7b799faa55eacf72.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088867;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_e2522d3332598717be987c7e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ca0e92dde9f6b98e4292ec27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_a200d9d42206dd0ce62fbef6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_68079bb8b7130fd599dff7cb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_40a8e8f0a6b0a28f62e7c19b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3aeab413e87393ea09514fe7.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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.017280px;}
.ls21{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.004320px;}
.ls1e{letter-spacing:0.005754px;}
.ls1c{letter-spacing:0.008640px;}
.ls1d{letter-spacing:0.025920px;}
.ls0{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.034560px;}
.ls12{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.092880px;}
.lsd{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.350400px;}
.ls6{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.440000px;}
.ls7{letter-spacing:7.020000px;}
.ls3{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.620000px;}
.ls2{letter-spacing:11.340000px;}
.ls10{letter-spacing:12.060000px;}
.ls11{letter-spacing:12.780000px;}
.lsa{letter-spacing:14.220000px;}
.lsc{letter-spacing:19.260000px;}
.ls19{letter-spacing:19.440000px;}
.lsb{letter-spacing:26.460000px;}
.ls17{letter-spacing:28.062720px;}
.ls4{letter-spacing:30.780000px;}
.ls9{letter-spacing:42.300000px;}
.ls8{letter-spacing:43.020000px;}
.ls16{letter-spacing:632.160000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.410400px;}
.ws5{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws9{word-spacing:-19.474560px;}
.ws7{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.422720px;}
.wsa{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws2{word-spacing:0.000000px;}
._2b{margin-left:-6.149520px;}
._5{margin-left:-4.970160px;}
._6{margin-left:-3.959280px;}
._c{margin-left:-2.337840px;}
._0{margin-left:-1.263600px;}
._3{width:1.027200px;}
._e{width:2.932080px;}
._b{width:4.117920px;}
._d{width:5.401200px;}
._8{width:6.486480px;}
._a{width:8.002800px;}
._9{width:9.181920px;}
._4{width:10.782720px;}
._10{width:11.875440px;}
._25{width:12.930480px;}
._f{width:14.236560px;}
._15{width:15.816240px;}
._20{width:17.521920px;}
._7{width:19.213920px;}
._2c{width:21.056640px;}
._1{width:23.016000px;}
._2{width:24.411120px;}
._22{width:26.198640px;}
._1f{width:28.473120px;}
._17{width:29.820960px;}
._16{width:31.084560px;}
._23{width:32.432400px;}
._24{width:34.384560px;}
._1c{width:36.223200px;}
._1d{width:37.234080px;}
._11{width:38.244960px;}
._12{width:39.255840px;}
._21{width:40.435200px;}
._1b{width:41.872560px;}
._1a{width:43.383600px;}
._1e{width:45.291600px;}
._19{width:46.668960px;}
._14{width:48.505920px;}
._13{width:50.523120px;}
._2a{width:51.660000px;}
._26{width:55.598400px;}
._27{width:56.925360px;}
._28{width:59.136480px;}
._29{width:60.652800px;}
._18{width:63.011520px;}
._2d{width:73.405440px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5a{bottom:88.416000px;}
.y2d{bottom:99.036000px;}
.y59{bottom:105.696000px;}
.y58{bottom:110.916000px;}
.y63{bottom:122.976000px;}
.y2c{bottom:123.156000px;}
.y57{bottom:124.236000px;}
.y62{bottom:128.196000px;}
.y61{bottom:140.256000px;}
.y2b{bottom:147.456000px;}
.y60{bottom:157.530000px;}
.y56{bottom:159.150000px;}
.y74{bottom:162.210000px;}
.y5f{bottom:162.750000px;}
.y2a{bottom:171.570000px;}
.y5e{bottom:176.070000px;}
.y55{bottom:183.270000px;}
.y73{bottom:184.530000px;}
.y29{bottom:195.690000px;}
.y72{bottom:207.030000px;}
.y54{bottom:207.390000px;}
.y28{bottom:219.810000px;}
.y71{bottom:229.350000px;}
.y53{bottom:231.510000px;}
.y27{bottom:243.930000px;}
.y70{bottom:251.850000px;}
.y52{bottom:255.630000px;}
.y6f{bottom:274.215000px;}
.y51{bottom:279.795000px;}
.y26{bottom:280.155000px;}
.y5d{bottom:287.355000px;}
.y6e{bottom:296.715000px;}
.y50{bottom:303.915000px;}
.y25{bottom:304.275000px;}
.y6d{bottom:319.215000px;}
.y4f{bottom:328.215000px;}
.y24{bottom:328.395000px;}
.y6c{bottom:341.535000px;}
.y4e{bottom:352.335000px;}
.y23{bottom:352.515000px;}
.y6b{bottom:364.035000px;}
.y4d{bottom:376.455000px;}
.y22{bottom:376.815000px;}
.y6a{bottom:386.355000px;}
.y4c{bottom:400.575000px;}
.y21{bottom:400.935000px;}
.y69{bottom:408.855000px;}
.y4b{bottom:424.695000px;}
.y20{bottom:425.055000px;}
.y68{bottom:431.175000px;}
.y4a{bottom:448.815000px;}
.y1f{bottom:449.175000px;}
.y67{bottom:453.675000px;}
.y49{bottom:473.115000px;}
.y66{bottom:476.175000px;}
.y1e{bottom:485.355000px;}
.y48{bottom:497.235000px;}
.y65{bottom:498.495000px;}
.y5c{bottom:504.795000px;}
.y1d{bottom:509.475000px;}
.y47{bottom:521.355000px;}
.y1c{bottom:533.595000px;}
.y46{bottom:545.475000px;}
.y1b{bottom:557.745000px;}
.y45{bottom:569.625000px;}
.y1a{bottom:582.045000px;}
.y44{bottom:593.745000px;}
.y19{bottom:606.165000px;}
.y43{bottom:618.045000px;}
.y18{bottom:630.285000px;}
.y42{bottom:642.165000px;}
.y17{bottom:654.405000px;}
.y41{bottom:666.285000px;}
.y16{bottom:678.525000px;}
.y40{bottom:690.405000px;}
.y15{bottom:702.645000px;}
.y3f{bottom:714.525000px;}
.y14{bottom:726.765000px;}
.y3e{bottom:738.645000px;}
.y64{bottom:746.205000px;}
.y13{bottom:751.065000px;}
.y3d{bottom:762.765000px;}
.y12{bottom:775.185000px;}
.y3b{bottom:787.065000px;}
.y3c{bottom:794.625000px;}
.y11{bottom:799.305000px;}
.y3a{bottom:811.185000px;}
.y10{bottom:823.425000px;}
.y39{bottom:835.305000px;}
.yf{bottom:847.590000px;}
.y38{bottom:859.470000px;}
.ye{bottom:871.710000px;}
.y37{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y36{bottom:907.710000px;}
.yc{bottom:920.130000px;}
.y35{bottom:932.010000px;}
.yb{bottom:944.250000px;}
.y34{bottom:956.130000px;}
.ya{bottom:968.370000px;}
.y33{bottom:980.250000px;}
.y9{bottom:992.490000px;}
.y32{bottom:1004.370000px;}
.y8{bottom:1016.610000px;}
.y31{bottom:1028.490000px;}
.y5b{bottom:1036.050000px;}
.y30{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y2f{bottom:1076.730000px;}
.y6{bottom:1083.030000px;}
.y2e{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h7{height:38.158594px;}
.h6{height:52.998047px;}
.h8{height:58.651172px;}
.h3{height:73.545469px;}
.h5{height:74.244727px;}
.hb{height:76.317188px;}
.ha{height:79.925027px;}
.h9{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x14{left:95.039987px;}
.x4{left:96.839987px;}
.x1d{left:112.355987px;}
.x7{left:117.035987px;}
.x3{left:121.535987px;}
.xb{left:123.515987px;}
.x5{left:128.735987px;}
.x8{left:130.535987px;}
.x10{left:139.355987px;}
.x6{left:167.609987px;}
.x17{left:207.929973px;}
.x18{left:221.609987px;}
.xc{left:253.829987px;}
.xd{left:279.029987px;}
.xa{left:280.469987px;}
.x13{left:301.394987px;}
.x1b{left:313.454973px;}
.x1c{left:327.134987px;}
.xe{left:357.914987px;}
.x11{left:361.694973px;}
.x12{left:375.374987px;}
.x2{left:436.034987px;}
.x9{left:446.474987px;}
.xf{left:473.474987px;}
.x15{left:700.349973px;}
.x16{left:714.029987px;}
.x19{left:718.169973px;}
.x1a{left:731.849987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.015360pt;}
.ls21{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.003840pt;}
.ls1e{letter-spacing:0.005115pt;}
.ls1c{letter-spacing:0.007680pt;}
.ls1d{letter-spacing:0.023040pt;}
.ls0{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.030720pt;}
.ls12{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.082560pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.311467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls7{letter-spacing:6.240000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.440000pt;}
.ls2{letter-spacing:10.080000pt;}
.ls10{letter-spacing:10.720000pt;}
.ls11{letter-spacing:11.360000pt;}
.lsa{letter-spacing:12.640000pt;}
.lsc{letter-spacing:17.120000pt;}
.ls19{letter-spacing:17.280000pt;}
.lsb{letter-spacing:23.520000pt;}
.ls17{letter-spacing:24.944640pt;}
.ls4{letter-spacing:27.360000pt;}
.ls9{letter-spacing:37.600000pt;}
.ls8{letter-spacing:38.240000pt;}
.ls16{letter-spacing:561.920000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.031467pt;}
.ws5{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9{word-spacing:-17.310720pt;}
.ws7{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.264640pt;}
.wsa{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws2{word-spacing:0.000000pt;}
._2b{margin-left:-5.466240pt;}
._5{margin-left:-4.417920pt;}
._6{margin-left:-3.519360pt;}
._c{margin-left:-2.078080pt;}
._0{margin-left:-1.123200pt;}
._3{width:0.913067pt;}
._e{width:2.606293pt;}
._b{width:3.660373pt;}
._d{width:4.801067pt;}
._8{width:5.765760pt;}
._a{width:7.113600pt;}
._9{width:8.161707pt;}
._4{width:9.584640pt;}
._10{width:10.555947pt;}
._25{width:11.493760pt;}
._f{width:12.654720pt;}
._15{width:14.058880pt;}
._20{width:15.575040pt;}
._7{width:17.079040pt;}
._2c{width:18.717013pt;}
._1{width:20.458667pt;}
._2{width:21.698773pt;}
._22{width:23.287680pt;}
._1f{width:25.309440pt;}
._17{width:26.507520pt;}
._16{width:27.630720pt;}
._23{width:28.828800pt;}
._24{width:30.564053pt;}
._1c{width:32.198400pt;}
._1d{width:33.096960pt;}
._11{width:33.995520pt;}
._12{width:34.894080pt;}
._21{width:35.942400pt;}
._1b{width:37.220053pt;}
._1a{width:38.563200pt;}
._1e{width:40.259200pt;}
._19{width:41.483520pt;}
._14{width:43.116373pt;}
._13{width:44.909440pt;}
._2a{width:45.920000pt;}
._26{width:49.420800pt;}
._27{width:50.600320pt;}
._28{width:52.565760pt;}
._29{width:53.913600pt;}
._18{width:56.010240pt;}
._2d{width:65.249280pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5a{bottom:78.592000pt;}
.y2d{bottom:88.032000pt;}
.y59{bottom:93.952000pt;}
.y58{bottom:98.592000pt;}
.y63{bottom:109.312000pt;}
.y2c{bottom:109.472000pt;}
.y57{bottom:110.432000pt;}
.y62{bottom:113.952000pt;}
.y61{bottom:124.672000pt;}
.y2b{bottom:131.072000pt;}
.y60{bottom:140.026667pt;}
.y56{bottom:141.466667pt;}
.y74{bottom:144.186667pt;}
.y5f{bottom:144.666667pt;}
.y2a{bottom:152.506667pt;}
.y5e{bottom:156.506667pt;}
.y55{bottom:162.906667pt;}
.y73{bottom:164.026667pt;}
.y29{bottom:173.946667pt;}
.y72{bottom:184.026667pt;}
.y54{bottom:184.346667pt;}
.y28{bottom:195.386667pt;}
.y71{bottom:203.866667pt;}
.y53{bottom:205.786667pt;}
.y27{bottom:216.826667pt;}
.y70{bottom:223.866667pt;}
.y52{bottom:227.226667pt;}
.y6f{bottom:243.746667pt;}
.y51{bottom:248.706667pt;}
.y26{bottom:249.026667pt;}
.y5d{bottom:255.426667pt;}
.y6e{bottom:263.746667pt;}
.y50{bottom:270.146667pt;}
.y25{bottom:270.466667pt;}
.y6d{bottom:283.746667pt;}
.y4f{bottom:291.746667pt;}
.y24{bottom:291.906667pt;}
.y6c{bottom:303.586667pt;}
.y4e{bottom:313.186667pt;}
.y23{bottom:313.346667pt;}
.y6b{bottom:323.586667pt;}
.y4d{bottom:334.626667pt;}
.y22{bottom:334.946667pt;}
.y6a{bottom:343.426667pt;}
.y4c{bottom:356.066667pt;}
.y21{bottom:356.386667pt;}
.y69{bottom:363.426667pt;}
.y4b{bottom:377.506667pt;}
.y20{bottom:377.826667pt;}
.y68{bottom:383.266667pt;}
.y4a{bottom:398.946667pt;}
.y1f{bottom:399.266667pt;}
.y67{bottom:403.266667pt;}
.y49{bottom:420.546667pt;}
.y66{bottom:423.266667pt;}
.y1e{bottom:431.426667pt;}
.y48{bottom:441.986667pt;}
.y65{bottom:443.106667pt;}
.y5c{bottom:448.706667pt;}
.y1d{bottom:452.866667pt;}
.y47{bottom:463.426667pt;}
.y1c{bottom:474.306667pt;}
.y46{bottom:484.866667pt;}
.y1b{bottom:495.773333pt;}
.y45{bottom:506.333333pt;}
.y1a{bottom:517.373333pt;}
.y44{bottom:527.773333pt;}
.y19{bottom:538.813333pt;}
.y43{bottom:549.373333pt;}
.y18{bottom:560.253333pt;}
.y42{bottom:570.813333pt;}
.y17{bottom:581.693333pt;}
.y41{bottom:592.253333pt;}
.y16{bottom:603.133333pt;}
.y40{bottom:613.693333pt;}
.y15{bottom:624.573333pt;}
.y3f{bottom:635.133333pt;}
.y14{bottom:646.013333pt;}
.y3e{bottom:656.573333pt;}
.y64{bottom:663.293333pt;}
.y13{bottom:667.613333pt;}
.y3d{bottom:678.013333pt;}
.y12{bottom:689.053333pt;}
.y3b{bottom:699.613333pt;}
.y3c{bottom:706.333333pt;}
.y11{bottom:710.493333pt;}
.y3a{bottom:721.053333pt;}
.y10{bottom:731.933333pt;}
.y39{bottom:742.493333pt;}
.yf{bottom:753.413333pt;}
.y38{bottom:763.973333pt;}
.ye{bottom:774.853333pt;}
.y37{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y36{bottom:806.853333pt;}
.yc{bottom:817.893333pt;}
.y35{bottom:828.453333pt;}
.yb{bottom:839.333333pt;}
.y34{bottom:849.893333pt;}
.ya{bottom:860.773333pt;}
.y33{bottom:871.333333pt;}
.y9{bottom:882.213333pt;}
.y32{bottom:892.773333pt;}
.y8{bottom:903.653333pt;}
.y31{bottom:914.213333pt;}
.y5b{bottom:920.933333pt;}
.y30{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y2f{bottom:957.093333pt;}
.y6{bottom:962.693333pt;}
.y2e{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h7{height:33.918750pt;}
.h6{height:47.109375pt;}
.h8{height:52.134375pt;}
.h3{height:65.373750pt;}
.h5{height:65.995312pt;}
.hb{height:67.837500pt;}
.ha{height:71.044468pt;}
.h9{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x14{left:84.479988pt;}
.x4{left:86.079988pt;}
.x1d{left:99.871988pt;}
.x7{left:104.031988pt;}
.x3{left:108.031988pt;}
.xb{left:109.791988pt;}
.x5{left:114.431988pt;}
.x8{left:116.031988pt;}
.x10{left:123.871988pt;}
.x6{left:148.986655pt;}
.x17{left:184.826643pt;}
.x18{left:196.986655pt;}
.xc{left:225.626655pt;}
.xd{left:248.026655pt;}
.xa{left:249.306655pt;}
.x13{left:267.906655pt;}
.x1b{left:278.626643pt;}
.x1c{left:290.786655pt;}
.xe{left:318.146655pt;}
.x11{left:321.506643pt;}
.x12{left:333.666655pt;}
.x2{left:387.586655pt;}
.x9{left:396.866655pt;}
.xf{left:420.866655pt;}
.x15{left:622.533310pt;}
.x16{left:634.693322pt;}
.x19{left:638.373310pt;}
.x1a{left:650.533322pt;}
}




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