
    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_73d25960630b7429dbbfe6c3.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_169edf17a135155daf7e0b4b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_58fef23c6fb55d541a72d627.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_654f513b042666eabb767ff4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222168;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_9309f61cf5d2befd5cc1d138.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_db76369dcead82c1fb009e2b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v2{vertical-align:-12.240000px;}
.v4{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.640000px;}
.v3{vertical-align:14.400000px;}
.v6{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.390000px;}
.ls10{letter-spacing:-0.378600px;}
.ls15{letter-spacing:-0.369600px;}
.ls11{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.213600px;}
.ls5{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.025920px;}
.ls4{letter-spacing:-0.018720px;}
.ls1d{letter-spacing:-0.017280px;}
.ls1c{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.008640px;}
.ls16{letter-spacing:0.017280px;}
.ls18{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.028080px;}
.ls19{letter-spacing:0.034560px;}
.ls14{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.147000px;}
.ls1a{letter-spacing:0.190080px;}
.ls9{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.291600px;}
.ls1{letter-spacing:0.341280px;}
.lse{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.350400px;}
.lsd{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.720000px;}
.ls1e{letter-spacing:5.580000px;}
.ls20{letter-spacing:21.221280px;}
.lsa{letter-spacing:74.700000px;}
.ls1f{letter-spacing:1065.576000px;}
.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;}
}
.ws2{word-spacing:-84.240000px;}
.ws9{word-spacing:-21.420000px;}
.wsd{word-spacing:-21.410400px;}
.wsa{word-spacing:-21.401400px;}
.ws8{word-spacing:-21.351600px;}
.ws6{word-spacing:-21.312000px;}
.ws3{word-spacing:-21.207000px;}
.wse{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws5{word-spacing:-20.846400px;}
.wsc{word-spacing:-20.700000px;}
.wsf{word-spacing:-20.690400px;}
.wsb{word-spacing:-20.681400px;}
.ws4{word-spacing:-20.670000px;}
.ws16{word-spacing:-19.474560px;}
.ws13{word-spacing:-19.465920px;}
.ws10{word-spacing:-19.457280px;}
.ws15{word-spacing:-19.448640px;}
.ws12{word-spacing:-19.440000px;}
.ws11{word-spacing:-19.431360px;}
.ws14{word-spacing:-19.422720px;}
.ws17{word-spacing:-19.414080px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-2574.784320px;}
._12{margin-left:-1828.535760px;}
._13{margin-left:-1289.211360px;}
._11{margin-left:-22.212000px;}
._1a{margin-left:-6.065280px;}
._6{margin-left:-4.212000px;}
._d{margin-left:-3.030000px;}
._0{margin-left:-1.600560px;}
._1{width:1.009920px;}
._8{width:2.864160px;}
._7{width:4.548960px;}
._26{width:5.645760px;}
._25{width:6.824640px;}
._2d{width:7.912080px;}
._c{width:9.521520px;}
._5{width:11.161200px;}
._4{width:12.467520px;}
._14{width:13.743840px;}
._2{width:15.198960px;}
._3{width:16.260720px;}
._b{width:18.111600px;}
._27{width:19.567920px;}
._28{width:22.070880px;}
._9{width:23.587200px;}
._a{width:24.719040px;}
._22{width:26.731200px;}
._23{width:27.765840px;}
._31{width:28.943520px;}
._29{width:31.505760px;}
._24{width:32.975760px;}
._32{width:34.243200px;}
._18{width:35.717760px;}
._17{width:37.149840px;}
._2e{width:38.299200px;}
._19{width:39.312960px;}
._2b{width:40.856400px;}
._2c{width:41.867280px;}
._2a{width:43.299360px;}
._2f{width:46.668960px;}
._30{width:47.932560px;}
._15{width:48.943440px;}
._16{width:50.316240px;}
._1b{width:52.493040px;}
._1f{width:64.258560px;}
._e{width:66.092160px;}
._21{width:72.081120px;}
._20{width:73.364400px;}
._1e{width:74.383920px;}
._1c{width:78.343200px;}
._1d{width:79.354080px;}
._f{width:499.594560px;}
._33{width:843.240000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:4.140000px;}
.y3c{bottom:7.920000px;}
.y45{bottom:9.180000px;}
.y49{bottom:14.400000px;}
.y41{bottom:14.580000px;}
.y4b{bottom:15.660000px;}
.y4e{bottom:16.245000px;}
.y35{bottom:19.980000px;}
.y37{bottom:26.460000px;}
.y32{bottom:27.360000px;}
.y3e{bottom:30.420000px;}
.y3b{bottom:30.465000px;}
.y44{bottom:31.530000px;}
.y48{bottom:36.900000px;}
.y40{bottom:37.080000px;}
.y3{bottom:38.376000px;}
.y4d{bottom:38.745000px;}
.y34{bottom:42.300000px;}
.y2{bottom:62.676000px;}
.y2f{bottom:110.736000px;}
.y53{bottom:133.956000px;}
.y2e{bottom:134.856000px;}
.y52{bottom:158.070000px;}
.y2d{bottom:159.150000px;}
.y51{bottom:182.190000px;}
.y2c{bottom:183.270000px;}
.y50{bottom:206.310000px;}
.y2b{bottom:207.390000px;}
.y4f{bottom:230.610000px;}
.y2a{bottom:231.510000px;}
.y29{bottom:255.630000px;}
.y4c{bottom:260.310000px;}
.y28{bottom:279.795000px;}
.y27{bottom:303.915000px;}
.y26{bottom:328.215000px;}
.y4a{bottom:336.495000px;}
.y25{bottom:352.335000px;}
.y24{bottom:376.455000px;}
.y47{bottom:389.595000px;}
.y23{bottom:400.575000px;}
.y22{bottom:424.695000px;}
.y21{bottom:448.815000px;}
.y46{bottom:463.935000px;}
.y30{bottom:473.115000px;}
.y20{bottom:476.175000px;}
.y1f{bottom:497.235000px;}
.y1e{bottom:521.355000px;}
.y43{bottom:527.835000px;}
.y1d{bottom:545.475000px;}
.y1c{bottom:569.625000px;}
.y1b{bottom:593.745000px;}
.y42{bottom:596.805000px;}
.y1a{bottom:618.045000px;}
.y19{bottom:642.165000px;}
.y18{bottom:666.285000px;}
.y3f{bottom:671.145000px;}
.y17{bottom:690.405000px;}
.y16{bottom:714.525000px;}
.y15{bottom:738.645000px;}
.y3d{bottom:745.665000px;}
.y14{bottom:762.765000px;}
.y13{bottom:787.065000px;}
.y12{bottom:811.185000px;}
.y3a{bottom:813.525000px;}
.y11{bottom:835.305000px;}
.y10{bottom:859.470000px;}
.y38{bottom:881.430000px;}
.yf{bottom:883.590000px;}
.ye{bottom:907.710000px;}
.yd{bottom:932.010000px;}
.y36{bottom:945.330000px;}
.yc{bottom:956.130000px;}
.yb{bottom:980.250000px;}
.ya{bottom:1004.370000px;}
.y33{bottom:1009.230000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y31{bottom:1088.970000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h12{height:34.020000px;}
.hc{height:44.820000px;}
.h7{height:45.756000px;}
.he{height:48.780000px;}
.hd{height:48.816000px;}
.h10{height:49.896000px;}
.h11{height:55.080000px;}
.hf{height:55.260000px;}
.h13{height:57.096000px;}
.h9{height:60.660000px;}
.ha{height:76.317188px;}
.h4{height:77.329687px;}
.hb{height:77.531484px;}
.h8{height:78.367500px;}
.h6{height:78.604805px;}
.h5{height:80.764805px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h14{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:147.816000px;}
.w3{width:179.130000px;}
.w4{width:179.850000px;}
.w6{width:189.750000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:12.960000px;}
.x1{left:85.319987px;}
.x18{left:86.400000px;}
.x14{left:93.779987px;}
.x13{left:97.379987px;}
.x8{left:98.639987px;}
.x6{left:108.215987px;}
.x1c{left:112.355987px;}
.x16{left:117.935987px;}
.x3{left:124.775987px;}
.x11{left:139.355987px;}
.xf{left:146.375987px;}
.xb{left:188.849987px;}
.xc{left:230.969987px;}
.x7{left:246.269987px;}
.x1a{left:266.610000px;}
.xd{left:311.114987px;}
.xe{left:349.994987px;}
.xa{left:352.874987px;}
.x15{left:360.794987px;}
.x4{left:393.374987px;}
.x9{left:405.614987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.x10{left:473.474987px;}
.x17{left:495.794987px;}
.x1b{left:596.265000px;}
.x12{left:601.124987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v2{vertical-align:-10.880000pt;}
.v4{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.680000pt;}
.v3{vertical-align:12.800000pt;}
.v6{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.346667pt;}
.ls10{letter-spacing:-0.336533pt;}
.ls15{letter-spacing:-0.328533pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.189867pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls1d{letter-spacing:-0.015360pt;}
.ls1c{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.007680pt;}
.ls16{letter-spacing:0.015360pt;}
.ls18{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.024960pt;}
.ls19{letter-spacing:0.030720pt;}
.ls14{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.130667pt;}
.ls1a{letter-spacing:0.168960pt;}
.ls9{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.259200pt;}
.ls1{letter-spacing:0.303360pt;}
.lse{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.311467pt;}
.lsd{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:4.960000pt;}
.ls20{letter-spacing:18.863360pt;}
.lsa{letter-spacing:66.400000pt;}
.ls1f{letter-spacing:947.178667pt;}
.ws2{word-spacing:-74.880000pt;}
.ws9{word-spacing:-19.040000pt;}
.wsd{word-spacing:-19.031467pt;}
.wsa{word-spacing:-19.023467pt;}
.ws8{word-spacing:-18.979200pt;}
.ws6{word-spacing:-18.944000pt;}
.ws3{word-spacing:-18.850667pt;}
.wse{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws5{word-spacing:-18.530133pt;}
.wsc{word-spacing:-18.400000pt;}
.wsf{word-spacing:-18.391467pt;}
.wsb{word-spacing:-18.383467pt;}
.ws4{word-spacing:-18.373333pt;}
.ws16{word-spacing:-17.310720pt;}
.ws13{word-spacing:-17.303040pt;}
.ws10{word-spacing:-17.295360pt;}
.ws15{word-spacing:-17.287680pt;}
.ws12{word-spacing:-17.280000pt;}
.ws11{word-spacing:-17.272320pt;}
.ws14{word-spacing:-17.264640pt;}
.ws17{word-spacing:-17.256960pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-2288.697173pt;}
._12{margin-left:-1625.365120pt;}
._13{margin-left:-1145.965653pt;}
._11{margin-left:-19.744000pt;}
._1a{margin-left:-5.391360pt;}
._6{margin-left:-3.744000pt;}
._d{margin-left:-2.693333pt;}
._0{margin-left:-1.422720pt;}
._1{width:0.897707pt;}
._8{width:2.545920pt;}
._7{width:4.043520pt;}
._26{width:5.018453pt;}
._25{width:6.066347pt;}
._2d{width:7.032960pt;}
._c{width:8.463573pt;}
._5{width:9.921067pt;}
._4{width:11.082240pt;}
._14{width:12.216747pt;}
._2{width:13.510187pt;}
._3{width:14.453973pt;}
._b{width:16.099200pt;}
._27{width:17.393707pt;}
._28{width:19.618560pt;}
._9{width:20.966400pt;}
._a{width:21.972480pt;}
._22{width:23.761067pt;}
._23{width:24.680747pt;}
._31{width:25.727573pt;}
._29{width:28.005120pt;}
._24{width:29.311787pt;}
._32{width:30.438400pt;}
._18{width:31.749120pt;}
._17{width:33.022080pt;}
._2e{width:34.043733pt;}
._19{width:34.944853pt;}
._2b{width:36.316800pt;}
._2c{width:37.215360pt;}
._2a{width:38.488320pt;}
._2f{width:41.483520pt;}
._30{width:42.606720pt;}
._15{width:43.505280pt;}
._16{width:44.725547pt;}
._1b{width:46.660480pt;}
._1f{width:57.118720pt;}
._e{width:58.748587pt;}
._21{width:64.072107pt;}
._20{width:65.212800pt;}
._1e{width:66.119040pt;}
._1c{width:69.638400pt;}
._1d{width:70.536960pt;}
._f{width:444.084053pt;}
._33{width:749.546667pt;}
.fs2{font-size:45.440000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.680000pt;}
.y3c{bottom:7.040000pt;}
.y45{bottom:8.160000pt;}
.y49{bottom:12.800000pt;}
.y41{bottom:12.960000pt;}
.y4b{bottom:13.920000pt;}
.y4e{bottom:14.440000pt;}
.y35{bottom:17.760000pt;}
.y37{bottom:23.520000pt;}
.y32{bottom:24.320000pt;}
.y3e{bottom:27.040000pt;}
.y3b{bottom:27.080000pt;}
.y44{bottom:28.026667pt;}
.y48{bottom:32.800000pt;}
.y40{bottom:32.960000pt;}
.y3{bottom:34.112000pt;}
.y4d{bottom:34.440000pt;}
.y34{bottom:37.600000pt;}
.y2{bottom:55.712000pt;}
.y2f{bottom:98.432000pt;}
.y53{bottom:119.072000pt;}
.y2e{bottom:119.872000pt;}
.y52{bottom:140.506667pt;}
.y2d{bottom:141.466667pt;}
.y51{bottom:161.946667pt;}
.y2c{bottom:162.906667pt;}
.y50{bottom:183.386667pt;}
.y2b{bottom:184.346667pt;}
.y4f{bottom:204.986667pt;}
.y2a{bottom:205.786667pt;}
.y29{bottom:227.226667pt;}
.y4c{bottom:231.386667pt;}
.y28{bottom:248.706667pt;}
.y27{bottom:270.146667pt;}
.y26{bottom:291.746667pt;}
.y4a{bottom:299.106667pt;}
.y25{bottom:313.186667pt;}
.y24{bottom:334.626667pt;}
.y47{bottom:346.306667pt;}
.y23{bottom:356.066667pt;}
.y22{bottom:377.506667pt;}
.y21{bottom:398.946667pt;}
.y46{bottom:412.386667pt;}
.y30{bottom:420.546667pt;}
.y20{bottom:423.266667pt;}
.y1f{bottom:441.986667pt;}
.y1e{bottom:463.426667pt;}
.y43{bottom:469.186667pt;}
.y1d{bottom:484.866667pt;}
.y1c{bottom:506.333333pt;}
.y1b{bottom:527.773333pt;}
.y42{bottom:530.493333pt;}
.y1a{bottom:549.373333pt;}
.y19{bottom:570.813333pt;}
.y18{bottom:592.253333pt;}
.y3f{bottom:596.573333pt;}
.y17{bottom:613.693333pt;}
.y16{bottom:635.133333pt;}
.y15{bottom:656.573333pt;}
.y3d{bottom:662.813333pt;}
.y14{bottom:678.013333pt;}
.y13{bottom:699.613333pt;}
.y12{bottom:721.053333pt;}
.y3a{bottom:723.133333pt;}
.y11{bottom:742.493333pt;}
.y10{bottom:763.973333pt;}
.y38{bottom:783.493333pt;}
.yf{bottom:785.413333pt;}
.ye{bottom:806.853333pt;}
.yd{bottom:828.453333pt;}
.y36{bottom:840.293333pt;}
.yc{bottom:849.893333pt;}
.yb{bottom:871.333333pt;}
.ya{bottom:892.773333pt;}
.y33{bottom:897.093333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y31{bottom:967.973333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h12{height:30.240000pt;}
.hc{height:39.840000pt;}
.h7{height:40.672000pt;}
.he{height:43.360000pt;}
.hd{height:43.392000pt;}
.h10{height:44.352000pt;}
.h11{height:48.960000pt;}
.hf{height:49.120000pt;}
.h13{height:50.752000pt;}
.h9{height:53.920000pt;}
.ha{height:67.837500pt;}
.h4{height:68.737500pt;}
.hb{height:68.916875pt;}
.h8{height:69.660000pt;}
.h6{height:69.870937pt;}
.h5{height:71.790938pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h14{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:131.392000pt;}
.w3{width:159.226667pt;}
.w4{width:159.866667pt;}
.w6{width:168.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:11.520000pt;}
.x1{left:75.839988pt;}
.x18{left:76.800000pt;}
.x14{left:83.359988pt;}
.x13{left:86.559988pt;}
.x8{left:87.679988pt;}
.x6{left:96.191988pt;}
.x1c{left:99.871988pt;}
.x16{left:104.831988pt;}
.x3{left:110.911988pt;}
.x11{left:123.871988pt;}
.xf{left:130.111988pt;}
.xb{left:167.866655pt;}
.xc{left:205.306655pt;}
.x7{left:218.906655pt;}
.x1a{left:236.986667pt;}
.xd{left:276.546655pt;}
.xe{left:311.106655pt;}
.xa{left:313.666655pt;}
.x15{left:320.706655pt;}
.x4{left:349.666655pt;}
.x9{left:360.546655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.x10{left:420.866655pt;}
.x17{left:440.706655pt;}
.x1b{left:530.013333pt;}
.x12{left:534.333322pt;}
}




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