
    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_d0058a071dfabc7d6e16ca4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_5163921fae867cb881ddc6e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_720e82e3cd4e242da12bc9cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_43149ed52d9130c9d83ff881.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9943a162a9b25d782a669f9e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c0a8e6bc4b02b9f7af17f170.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7c2be1365e1b2069060ca3ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_9d619709e7def4ad07b98a94.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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:-56.880000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.369600px;}
.ls6{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.322800px;}
.ls8{letter-spacing:-0.028080px;}
.ls12{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.172080px;}
.ls11{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181440px;}
.ls7{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378600px;}
.ls2{letter-spacing:0.378720px;}
.ls10{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.485280px;}
.lsa{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.522720px;}
.lsf{letter-spacing:11.340000px;}
.ls14{letter-spacing:27.180000px;}
.ls0{letter-spacing:87.840000px;}
.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;}
}
.wsb{word-spacing:-84.618600px;}
.ws9{word-spacing:-84.600000px;}
.wsa{word-spacing:-84.240000px;}
.wsc{word-spacing:-83.898600px;}
.ws3{word-spacing:-83.880000px;}
.ws0{word-spacing:-24.300000px;}
.ws6{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.041280px;}
.ws5{word-spacing:-21.031920px;}
.ws2{word-spacing:-20.737200px;}
.ws8{word-spacing:-20.700000px;}
.wse{word-spacing:-20.690400px;}
.ws7{word-spacing:0.000000px;}
._2a{margin-left:-6.402240px;}
._14{margin-left:-5.054400px;}
._15{margin-left:-3.998400px;}
._18{margin-left:-2.527200px;}
._1{margin-left:-1.296000px;}
._0{width:1.176000px;}
._4{width:2.330400px;}
._1b{width:3.771360px;}
._1a{width:4.801680px;}
._a{width:6.033360px;}
._9{width:7.192800px;}
._5{width:8.676720px;}
._6{width:9.856080px;}
._b{width:11.456640px;}
._16{width:13.144080px;}
._1f{width:14.267040px;}
._1d{width:15.279840px;}
._d{width:16.822560px;}
._3{width:18.312480px;}
._c{width:19.880640px;}
._e{width:22.492080px;}
._13{width:24.261120px;}
._12{width:25.356240px;}
._32{width:26.369280px;}
._1c{width:27.377280px;}
._11{width:28.610640px;}
._10{width:29.629200px;}
._7{width:30.747600px;}
._8{width:31.790880px;}
._28{width:32.937840px;}
._22{width:34.117200px;}
._23{width:35.266560px;}
._17{width:36.334080px;}
._f{width:38.782800px;}
._20{width:40.626480px;}
._27{width:41.985600px;}
._2e{width:43.443840px;}
._21{width:45.236880px;}
._19{width:47.712240px;}
._24{width:48.723120px;}
._2f{width:49.734240px;}
._2b{width:50.829120px;}
._2d{width:55.682640px;}
._30{width:57.011040px;}
._31{width:58.426080px;}
._26{width:60.400080px;}
._2{width:63.180000px;}
._29{width:73.658160px;}
._25{width:98.256000px;}
._2c{width:111.786480px;}
._1e{width:191.484000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.960000px;}
.ya{bottom:5.400000px;}
.y3{bottom:5.760000px;}
.y9{bottom:7.560000px;}
.y6{bottom:8.820000px;}
.yb{bottom:12.060000px;}
.y5{bottom:20.340000px;}
.y8{bottom:36.180000px;}
.y54{bottom:99.396000px;}
.y30{bottom:117.036000px;}
.y53{bottom:127.296000px;}
.y2f{bottom:144.756000px;}
.y52{bottom:155.010000px;}
.y2e{bottom:172.470000px;}
.y51{bottom:182.730000px;}
.y2d{bottom:200.190000px;}
.y50{bottom:210.630000px;}
.y2c{bottom:228.090000px;}
.y4f{bottom:238.350000px;}
.y2b{bottom:255.810000px;}
.y4e{bottom:266.070000px;}
.y2a{bottom:283.530000px;}
.y4d{bottom:293.790000px;}
.y29{bottom:311.430000px;}
.y4c{bottom:321.690000px;}
.y28{bottom:339.195000px;}
.y4b{bottom:349.455000px;}
.y27{bottom:366.915000px;}
.y4a{bottom:377.175000px;}
.y26{bottom:394.635000px;}
.y49{bottom:405.075000px;}
.y25{bottom:422.535000px;}
.y48{bottom:432.795000px;}
.y24{bottom:450.255000px;}
.y47{bottom:460.515000px;}
.y23{bottom:477.975000px;}
.y46{bottom:488.235000px;}
.y22{bottom:505.695000px;}
.y45{bottom:516.135000px;}
.y21{bottom:533.595000px;}
.y44{bottom:543.855000px;}
.y20{bottom:561.315000px;}
.y43{bottom:571.575000px;}
.y1f{bottom:589.035000px;}
.y42{bottom:599.295000px;}
.y1e{bottom:616.965000px;}
.y41{bottom:627.225000px;}
.y1d{bottom:644.685000px;}
.y40{bottom:654.945000px;}
.y1c{bottom:672.405000px;}
.y3f{bottom:682.665000px;}
.y1b{bottom:700.125000px;}
.y3e{bottom:710.565000px;}
.y1a{bottom:728.025000px;}
.y3d{bottom:738.285000px;}
.y19{bottom:755.745000px;}
.y3c{bottom:766.005000px;}
.y18{bottom:783.465000px;}
.y3b{bottom:793.725000px;}
.y17{bottom:811.365000px;}
.y3a{bottom:821.625000px;}
.y16{bottom:839.085000px;}
.y39{bottom:849.345000px;}
.y15{bottom:866.805000px;}
.y38{bottom:877.110000px;}
.y14{bottom:894.570000px;}
.y37{bottom:905.010000px;}
.y13{bottom:922.470000px;}
.y36{bottom:932.730000px;}
.y12{bottom:950.190000px;}
.y35{bottom:960.450000px;}
.y11{bottom:977.910000px;}
.y34{bottom:988.170000px;}
.y10{bottom:1005.810000px;}
.y33{bottom:1016.070000px;}
.yf{bottom:1033.530000px;}
.y32{bottom:1043.790000px;}
.ye{bottom:1061.250000px;}
.y31{bottom:1071.510000px;}
.yd{bottom:1099.410000px;}
.yc{bottom:1127.130000px;}
.y7{bottom:1151.280000px;}
.y4{bottom:1166.940000px;}
.y1{bottom:1199.520000px;}
.h6{height:15.682500px;}
.h2{height:20.700000px;}
.h5{height:21.780000px;}
.h8{height:27.720000px;}
.h4{height:53.709961px;}
.he{height:61.575820px;}
.h7{height:65.884219px;}
.h9{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:82.635820px;}
.hc{height:82.676953px;}
.hb{height:84.898125px;}
.ha{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:44.100000px;}
.w6{width:54.216000px;}
.w5{width:742.830000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x6{left:8.640000px;}
.xb{left:15.120000px;}
.x4{left:35.640000px;}
.x9{left:50.076000px;}
.x8{left:54.720000px;}
.x2{left:63.900000px;}
.x7{left:84.959987px;}
.xc{left:127.475987px;}
.xd{left:168.329987px;}
.x15{left:206.669987px;}
.x14{left:268.049987px;}
.x18{left:271.109987px;}
.x10{left:289.154987px;}
.xe{left:290.414987px;}
.x11{left:297.794987px;}
.x12{left:310.034987px;}
.x13{left:367.994987px;}
.x16{left:373.574987px;}
.x17{left:377.534987px;}
.x5{left:420.015000px;}
.xf{left:446.474987px;}
.xa{left:797.550000px;}
.x3{left:844.560000px;}
@media print{
.v1{vertical-align:-50.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.328533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.286933pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.152960pt;}
.ls11{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161280pt;}
.ls7{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336533pt;}
.ls2{letter-spacing:0.336640pt;}
.ls10{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.431360pt;}
.lsa{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.464640pt;}
.lsf{letter-spacing:10.080000pt;}
.ls14{letter-spacing:24.160000pt;}
.ls0{letter-spacing:78.080000pt;}
.wsb{word-spacing:-75.216533pt;}
.ws9{word-spacing:-75.200000pt;}
.wsa{word-spacing:-74.880000pt;}
.wsc{word-spacing:-74.576533pt;}
.ws3{word-spacing:-74.560000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.703360pt;}
.ws5{word-spacing:-18.695040pt;}
.ws2{word-spacing:-18.433067pt;}
.ws8{word-spacing:-18.400000pt;}
.wse{word-spacing:-18.391467pt;}
.ws7{word-spacing:0.000000pt;}
._2a{margin-left:-5.690880pt;}
._14{margin-left:-4.492800pt;}
._15{margin-left:-3.554133pt;}
._18{margin-left:-2.246400pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.045333pt;}
._4{width:2.071467pt;}
._1b{width:3.352320pt;}
._1a{width:4.268160pt;}
._a{width:5.362987pt;}
._9{width:6.393600pt;}
._5{width:7.712640pt;}
._6{width:8.760960pt;}
._b{width:10.183680pt;}
._16{width:11.683627pt;}
._1f{width:12.681813pt;}
._1d{width:13.582080pt;}
._d{width:14.953387pt;}
._3{width:16.277760pt;}
._c{width:17.671680pt;}
._e{width:19.992960pt;}
._13{width:21.565440pt;}
._12{width:22.538880pt;}
._32{width:23.439360pt;}
._1c{width:24.335360pt;}
._11{width:25.431680pt;}
._10{width:26.337067pt;}
._7{width:27.331200pt;}
._8{width:28.258560pt;}
._28{width:29.278080pt;}
._22{width:30.326400pt;}
._23{width:31.348053pt;}
._17{width:32.296960pt;}
._f{width:34.473600pt;}
._20{width:36.112427pt;}
._27{width:37.320533pt;}
._2e{width:38.616747pt;}
._21{width:40.210560pt;}
._19{width:42.410880pt;}
._24{width:43.309440pt;}
._2f{width:44.208213pt;}
._2b{width:45.181440pt;}
._2d{width:49.495680pt;}
._30{width:50.676480pt;}
._31{width:51.934293pt;}
._26{width:53.688960pt;}
._2{width:56.160000pt;}
._29{width:65.473920pt;}
._25{width:87.338667pt;}
._2c{width:99.365760pt;}
._1e{width:170.208000pt;}
.fs2{font-size:5.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.520000pt;}
.ya{bottom:4.800000pt;}
.y3{bottom:5.120000pt;}
.y9{bottom:6.720000pt;}
.y6{bottom:7.840000pt;}
.yb{bottom:10.720000pt;}
.y5{bottom:18.080000pt;}
.y8{bottom:32.160000pt;}
.y54{bottom:88.352000pt;}
.y30{bottom:104.032000pt;}
.y53{bottom:113.152000pt;}
.y2f{bottom:128.672000pt;}
.y52{bottom:137.786667pt;}
.y2e{bottom:153.306667pt;}
.y51{bottom:162.426667pt;}
.y2d{bottom:177.946667pt;}
.y50{bottom:187.226667pt;}
.y2c{bottom:202.746667pt;}
.y4f{bottom:211.866667pt;}
.y2b{bottom:227.386667pt;}
.y4e{bottom:236.506667pt;}
.y2a{bottom:252.026667pt;}
.y4d{bottom:261.146667pt;}
.y29{bottom:276.826667pt;}
.y4c{bottom:285.946667pt;}
.y28{bottom:301.506667pt;}
.y4b{bottom:310.626667pt;}
.y27{bottom:326.146667pt;}
.y4a{bottom:335.266667pt;}
.y26{bottom:350.786667pt;}
.y49{bottom:360.066667pt;}
.y25{bottom:375.586667pt;}
.y48{bottom:384.706667pt;}
.y24{bottom:400.226667pt;}
.y47{bottom:409.346667pt;}
.y23{bottom:424.866667pt;}
.y46{bottom:433.986667pt;}
.y22{bottom:449.506667pt;}
.y45{bottom:458.786667pt;}
.y21{bottom:474.306667pt;}
.y44{bottom:483.426667pt;}
.y20{bottom:498.946667pt;}
.y43{bottom:508.066667pt;}
.y1f{bottom:523.586667pt;}
.y42{bottom:532.706667pt;}
.y1e{bottom:548.413333pt;}
.y41{bottom:557.533333pt;}
.y1d{bottom:573.053333pt;}
.y40{bottom:582.173333pt;}
.y1c{bottom:597.693333pt;}
.y3f{bottom:606.813333pt;}
.y1b{bottom:622.333333pt;}
.y3e{bottom:631.613333pt;}
.y1a{bottom:647.133333pt;}
.y3d{bottom:656.253333pt;}
.y19{bottom:671.773333pt;}
.y3c{bottom:680.893333pt;}
.y18{bottom:696.413333pt;}
.y3b{bottom:705.533333pt;}
.y17{bottom:721.213333pt;}
.y3a{bottom:730.333333pt;}
.y16{bottom:745.853333pt;}
.y39{bottom:754.973333pt;}
.y15{bottom:770.493333pt;}
.y38{bottom:779.653333pt;}
.y14{bottom:795.173333pt;}
.y37{bottom:804.453333pt;}
.y13{bottom:819.973333pt;}
.y36{bottom:829.093333pt;}
.y12{bottom:844.613333pt;}
.y35{bottom:853.733333pt;}
.y11{bottom:869.253333pt;}
.y34{bottom:878.373333pt;}
.y10{bottom:894.053333pt;}
.y33{bottom:903.173333pt;}
.yf{bottom:918.693333pt;}
.y32{bottom:927.813333pt;}
.ye{bottom:943.333333pt;}
.y31{bottom:952.453333pt;}
.yd{bottom:977.253333pt;}
.yc{bottom:1001.893333pt;}
.y7{bottom:1023.360000pt;}
.y4{bottom:1037.280000pt;}
.y1{bottom:1066.240000pt;}
.h6{height:13.940000pt;}
.h2{height:18.400000pt;}
.h5{height:19.360000pt;}
.h8{height:24.640000pt;}
.h4{height:47.742188pt;}
.he{height:54.734062pt;}
.h7{height:58.563750pt;}
.h9{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:73.454062pt;}
.hc{height:73.490625pt;}
.hb{height:75.465000pt;}
.ha{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.200000pt;}
.w6{width:48.192000pt;}
.w5{width:660.293333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x6{left:7.680000pt;}
.xb{left:13.440000pt;}
.x4{left:31.680000pt;}
.x9{left:44.512000pt;}
.x8{left:48.640000pt;}
.x2{left:56.800000pt;}
.x7{left:75.519988pt;}
.xc{left:113.311988pt;}
.xd{left:149.626655pt;}
.x15{left:183.706655pt;}
.x14{left:238.266655pt;}
.x18{left:240.986655pt;}
.x10{left:257.026655pt;}
.xe{left:258.146655pt;}
.x11{left:264.706655pt;}
.x12{left:275.586655pt;}
.x13{left:327.106655pt;}
.x16{left:332.066655pt;}
.x17{left:335.586655pt;}
.x5{left:373.346667pt;}
.xf{left:396.866655pt;}
.xa{left:708.933333pt;}
.x3{left:750.720000pt;}
}




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