
    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_56f73b2027242afd6343aa89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_3ce463cc730e5396f5276405.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_c761e1b80fb49cff42cdc72b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e47e9bf8c2d70350a3179fc3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2bd1823aaa9d5830c89cfce8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_98685c03e9f78e29a228889b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_ae790acedb699ae6fe3c6bac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_125fded9e7e7612a72842562.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.732000px;}
.ls10{letter-spacing:-0.597600px;}
.ls4{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.529200px;}
.lsd{letter-spacing:-0.478200px;}
.ls5{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.270600px;}
.lse{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.085200px;}
.ls9{letter-spacing:-0.036000px;}
.ls6{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.126600px;}
.ls12{letter-spacing:0.126720px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls11{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.478080px;}
.lsf{letter-spacing:0.708000px;}
.ls14{letter-spacing:0.846000px;}
.ls13{letter-spacing:0.846720px;}
.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;}
}
.wse{word-spacing:-13.993200px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.273800px;}
.wsc{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws1{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.wsa{word-spacing:-10.134600px;}
.ws3{word-spacing:-9.187200px;}
.wsb{word-spacing:-9.092400px;}
.ws8{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.884000px;}
.ws4{word-spacing:-6.652800px;}
.ws9{word-spacing:0.000000px;}
._17{margin-left:-3.539520px;}
._d{margin-left:-2.316960px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._10{width:3.062880px;}
._b{width:4.189200px;}
._a{width:5.438160px;}
._c{width:6.513840px;}
._13{width:8.127360px;}
._1b{width:9.448560px;}
._12{width:11.300640px;}
._8{width:14.521680px;}
._9{width:15.798480px;}
._14{width:16.971840px;}
._7{width:18.226800px;}
._6{width:19.302480px;}
._f{width:20.694960px;}
._15{width:21.985440px;}
._1a{width:23.246640px;}
._1c{width:25.577280px;}
._1d{width:27.196800px;}
._e{width:29.162880px;}
._16{width:30.244560px;}
._26{width:32.449680px;}
._1e{width:36.632880px;}
._27{width:43.086960px;}
._18{width:47.432400px;}
._11{width:50.616720px;}
._22{width:68.610480px;}
._23{width:69.939840px;}
._0{width:75.000000px;}
._21{width:76.492800px;}
._29{width:85.881120px;}
._2a{width:87.400320px;}
._28{width:101.711520px;}
._24{width:147.672960px;}
._25{width:149.489760px;}
._20{width:156.278400px;}
._1f{width:157.782000px;}
._3{width:181.080000px;}
._4{width:194.109840px;}
._5{width:202.852800px;}
._19{width:1140.967200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y55{bottom:5.580000px;}
.y54{bottom:26.280000px;}
.y53{bottom:45.000000px;}
.y52{bottom:55.620000px;}
.y7{bottom:56.340000px;}
.y57{bottom:56.520000px;}
.y51{bottom:66.240000px;}
.y6{bottom:70.056000px;}
.y50{bottom:76.680000px;}
.y4f{bottom:94.320000px;}
.y92{bottom:120.636000px;}
.y3f{bottom:137.736000px;}
.y91{bottom:138.276000px;}
.y4e{bottom:147.240000px;}
.y3e{bottom:155.190000px;}
.y90{bottom:155.730000px;}
.y4d{bottom:161.280000px;}
.y3d{bottom:172.830000px;}
.y8f{bottom:173.370000px;}
.y4c{bottom:175.500000px;}
.y4b{bottom:189.540000px;}
.y3c{bottom:190.470000px;}
.y8e{bottom:191.010000px;}
.y4a{bottom:203.580000px;}
.y3b{bottom:207.930000px;}
.y8d{bottom:208.470000px;}
.y49{bottom:217.620000px;}
.y3a{bottom:225.570000px;}
.y8c{bottom:226.110000px;}
.y48{bottom:231.660000px;}
.y39{bottom:243.210000px;}
.y8b{bottom:243.750000px;}
.y47{bottom:247.005000px;}
.y38{bottom:260.850000px;}
.y8a{bottom:261.210000px;}
.y46{bottom:266.445000px;}
.y37{bottom:278.310000px;}
.y89{bottom:278.850000px;}
.y45{bottom:280.665000px;}
.y44{bottom:294.705000px;}
.y36{bottom:295.950000px;}
.y88{bottom:296.490000px;}
.y43{bottom:308.745000px;}
.y35{bottom:313.590000px;}
.y87{bottom:314.130000px;}
.y42{bottom:322.785000px;}
.y34{bottom:331.050000px;}
.y86{bottom:331.590000px;}
.y41{bottom:337.185000px;}
.y33{bottom:348.735000px;}
.y85{bottom:349.275000px;}
.y32{bottom:366.375000px;}
.y84{bottom:366.915000px;}
.y31{bottom:383.835000px;}
.y83{bottom:384.375000px;}
.y30{bottom:401.475000px;}
.y82{bottom:402.015000px;}
.y2f{bottom:419.115000px;}
.y81{bottom:419.655000px;}
.y2e{bottom:436.755000px;}
.y80{bottom:437.115000px;}
.y2d{bottom:454.215000px;}
.y7f{bottom:454.755000px;}
.y2c{bottom:471.855000px;}
.y7e{bottom:472.395000px;}
.y2b{bottom:489.495000px;}
.y7d{bottom:490.035000px;}
.y2a{bottom:506.955000px;}
.y7c{bottom:507.495000px;}
.y29{bottom:524.595000px;}
.y7b{bottom:525.135000px;}
.y28{bottom:542.235000px;}
.y7a{bottom:542.775000px;}
.y27{bottom:559.695000px;}
.y79{bottom:560.235000px;}
.y26{bottom:577.335000px;}
.y78{bottom:577.875000px;}
.y25{bottom:594.975000px;}
.y77{bottom:595.515000px;}
.y24{bottom:612.645000px;}
.y76{bottom:613.005000px;}
.y40{bottom:628.125000px;}
.y23{bottom:630.105000px;}
.y75{bottom:630.645000px;}
.y74{bottom:648.285000px;}
.y22{bottom:649.905000px;}
.y73{bottom:665.745000px;}
.y21{bottom:667.545000px;}
.y72{bottom:683.385000px;}
.y20{bottom:685.185000px;}
.y71{bottom:701.025000px;}
.y1f{bottom:702.825000px;}
.y70{bottom:718.665000px;}
.y1e{bottom:720.285000px;}
.y6f{bottom:736.125000px;}
.y1d{bottom:737.925000px;}
.y6e{bottom:753.765000px;}
.y1c{bottom:755.565000px;}
.y6d{bottom:771.405000px;}
.y1b{bottom:773.025000px;}
.y6c{bottom:788.865000px;}
.y1a{bottom:790.665000px;}
.y6b{bottom:806.505000px;}
.y19{bottom:808.305000px;}
.y6a{bottom:824.145000px;}
.y18{bottom:825.765000px;}
.y69{bottom:841.605000px;}
.y17{bottom:843.405000px;}
.y68{bottom:859.245000px;}
.y16{bottom:861.045000px;}
.y67{bottom:876.930000px;}
.y15{bottom:878.550000px;}
.y66{bottom:894.570000px;}
.y14{bottom:896.190000px;}
.y65{bottom:912.030000px;}
.y13{bottom:913.830000px;}
.y64{bottom:929.670000px;}
.y12{bottom:931.470000px;}
.y63{bottom:947.310000px;}
.y11{bottom:948.930000px;}
.y62{bottom:964.770000px;}
.y10{bottom:966.570000px;}
.y61{bottom:982.410000px;}
.yf{bottom:984.210000px;}
.y60{bottom:1000.050000px;}
.ye{bottom:1001.130000px;}
.yd{bottom:1015.170000px;}
.y5f{bottom:1017.510000px;}
.yc{bottom:1030.110000px;}
.y5e{bottom:1035.150000px;}
.yb{bottom:1049.190000px;}
.y5d{bottom:1052.790000px;}
.ya{bottom:1067.730000px;}
.y5c{bottom:1070.430000px;}
.y5b{bottom:1087.890000px;}
.y9{bottom:1090.590000px;}
.y5a{bottom:1105.530000px;}
.y8{bottom:1112.550000px;}
.y59{bottom:1123.170000px;}
.y5{bottom:1133.250000px;}
.y58{bottom:1140.660000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y56{bottom:1197.540000px;}
.hb{height:30.480469px;}
.h5{height:33.683203px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h6{height:50.597578px;}
.h8{height:56.084062px;}
.h7{height:65.837812px;}
.h9{height:349.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xa{left:113.616000px;}
.x6{left:128.195987px;}
.x5{left:132.155987px;}
.xb{left:134.994000px;}
.x3{left:137.195987px;}
.xd{left:144.035987px;}
.x9{left:150.509987px;}
.x7{left:335.414987px;}
.x8{left:336.494987px;}
.x4{left:400.934987px;}
.x2{left:448.274987px;}
.xc{left:462.314987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.650667pt;}
.ls10{letter-spacing:-0.531200pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.470400pt;}
.lsd{letter-spacing:-0.425067pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.240533pt;}
.lse{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.112533pt;}
.ls12{letter-spacing:0.112640pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls11{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.424960pt;}
.lsf{letter-spacing:0.629333pt;}
.ls14{letter-spacing:0.752000pt;}
.ls13{letter-spacing:0.752640pt;}
.wse{word-spacing:-12.438400pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.798933pt;}
.wsc{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws1{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.wsa{word-spacing:-9.008533pt;}
.ws3{word-spacing:-8.166400pt;}
.wsb{word-spacing:-8.082133pt;}
.ws8{word-spacing:-7.040000pt;}
.ws7{word-spacing:-7.008000pt;}
.ws4{word-spacing:-5.913600pt;}
.ws9{word-spacing:0.000000pt;}
._17{margin-left:-3.146240pt;}
._d{margin-left:-2.059520pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._10{width:2.722560pt;}
._b{width:3.723733pt;}
._a{width:4.833920pt;}
._c{width:5.790080pt;}
._13{width:7.224320pt;}
._1b{width:8.398720pt;}
._12{width:10.045013pt;}
._8{width:12.908160pt;}
._9{width:14.043093pt;}
._14{width:15.086080pt;}
._7{width:16.201600pt;}
._6{width:17.157760pt;}
._f{width:18.395520pt;}
._15{width:19.542613pt;}
._1a{width:20.663680pt;}
._1c{width:22.735360pt;}
._1d{width:24.174933pt;}
._e{width:25.922560pt;}
._16{width:26.884053pt;}
._26{width:28.844160pt;}
._1e{width:32.562560pt;}
._27{width:38.299520pt;}
._18{width:42.162133pt;}
._11{width:44.992640pt;}
._22{width:60.987093pt;}
._23{width:62.168747pt;}
._0{width:66.666667pt;}
._21{width:67.993600pt;}
._29{width:76.338773pt;}
._2a{width:77.689173pt;}
._28{width:90.410240pt;}
._24{width:131.264853pt;}
._25{width:132.879787pt;}
._20{width:138.914133pt;}
._1f{width:140.250667pt;}
._3{width:160.960000pt;}
._4{width:172.542080pt;}
._5{width:180.313600pt;}
._19{width:1014.193067pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:4.960000pt;}
.y54{bottom:23.360000pt;}
.y53{bottom:40.000000pt;}
.y52{bottom:49.440000pt;}
.y7{bottom:50.080000pt;}
.y57{bottom:50.240000pt;}
.y51{bottom:58.880000pt;}
.y6{bottom:62.272000pt;}
.y50{bottom:68.160000pt;}
.y4f{bottom:83.840000pt;}
.y92{bottom:107.232000pt;}
.y3f{bottom:122.432000pt;}
.y91{bottom:122.912000pt;}
.y4e{bottom:130.880000pt;}
.y3e{bottom:137.946667pt;}
.y90{bottom:138.426667pt;}
.y4d{bottom:143.360000pt;}
.y3d{bottom:153.626667pt;}
.y8f{bottom:154.106667pt;}
.y4c{bottom:156.000000pt;}
.y4b{bottom:168.480000pt;}
.y3c{bottom:169.306667pt;}
.y8e{bottom:169.786667pt;}
.y4a{bottom:180.960000pt;}
.y3b{bottom:184.826667pt;}
.y8d{bottom:185.306667pt;}
.y49{bottom:193.440000pt;}
.y3a{bottom:200.506667pt;}
.y8c{bottom:200.986667pt;}
.y48{bottom:205.920000pt;}
.y39{bottom:216.186667pt;}
.y8b{bottom:216.666667pt;}
.y47{bottom:219.560000pt;}
.y38{bottom:231.866667pt;}
.y8a{bottom:232.186667pt;}
.y46{bottom:236.840000pt;}
.y37{bottom:247.386667pt;}
.y89{bottom:247.866667pt;}
.y45{bottom:249.480000pt;}
.y44{bottom:261.960000pt;}
.y36{bottom:263.066667pt;}
.y88{bottom:263.546667pt;}
.y43{bottom:274.440000pt;}
.y35{bottom:278.746667pt;}
.y87{bottom:279.226667pt;}
.y42{bottom:286.920000pt;}
.y34{bottom:294.266667pt;}
.y86{bottom:294.746667pt;}
.y41{bottom:299.720000pt;}
.y33{bottom:309.986667pt;}
.y85{bottom:310.466667pt;}
.y32{bottom:325.666667pt;}
.y84{bottom:326.146667pt;}
.y31{bottom:341.186667pt;}
.y83{bottom:341.666667pt;}
.y30{bottom:356.866667pt;}
.y82{bottom:357.346667pt;}
.y2f{bottom:372.546667pt;}
.y81{bottom:373.026667pt;}
.y2e{bottom:388.226667pt;}
.y80{bottom:388.546667pt;}
.y2d{bottom:403.746667pt;}
.y7f{bottom:404.226667pt;}
.y2c{bottom:419.426667pt;}
.y7e{bottom:419.906667pt;}
.y2b{bottom:435.106667pt;}
.y7d{bottom:435.586667pt;}
.y2a{bottom:450.626667pt;}
.y7c{bottom:451.106667pt;}
.y29{bottom:466.306667pt;}
.y7b{bottom:466.786667pt;}
.y28{bottom:481.986667pt;}
.y7a{bottom:482.466667pt;}
.y27{bottom:497.506667pt;}
.y79{bottom:497.986667pt;}
.y26{bottom:513.186667pt;}
.y78{bottom:513.666667pt;}
.y25{bottom:528.866667pt;}
.y77{bottom:529.346667pt;}
.y24{bottom:544.573333pt;}
.y76{bottom:544.893333pt;}
.y40{bottom:558.333333pt;}
.y23{bottom:560.093333pt;}
.y75{bottom:560.573333pt;}
.y74{bottom:576.253333pt;}
.y22{bottom:577.693333pt;}
.y73{bottom:591.773333pt;}
.y21{bottom:593.373333pt;}
.y72{bottom:607.453333pt;}
.y20{bottom:609.053333pt;}
.y71{bottom:623.133333pt;}
.y1f{bottom:624.733333pt;}
.y70{bottom:638.813333pt;}
.y1e{bottom:640.253333pt;}
.y6f{bottom:654.333333pt;}
.y1d{bottom:655.933333pt;}
.y6e{bottom:670.013333pt;}
.y1c{bottom:671.613333pt;}
.y6d{bottom:685.693333pt;}
.y1b{bottom:687.133333pt;}
.y6c{bottom:701.213333pt;}
.y1a{bottom:702.813333pt;}
.y6b{bottom:716.893333pt;}
.y19{bottom:718.493333pt;}
.y6a{bottom:732.573333pt;}
.y18{bottom:734.013333pt;}
.y69{bottom:748.093333pt;}
.y17{bottom:749.693333pt;}
.y68{bottom:763.773333pt;}
.y16{bottom:765.373333pt;}
.y67{bottom:779.493333pt;}
.y15{bottom:780.933333pt;}
.y66{bottom:795.173333pt;}
.y14{bottom:796.613333pt;}
.y65{bottom:810.693333pt;}
.y13{bottom:812.293333pt;}
.y64{bottom:826.373333pt;}
.y12{bottom:827.973333pt;}
.y63{bottom:842.053333pt;}
.y11{bottom:843.493333pt;}
.y62{bottom:857.573333pt;}
.y10{bottom:859.173333pt;}
.y61{bottom:873.253333pt;}
.yf{bottom:874.853333pt;}
.y60{bottom:888.933333pt;}
.ye{bottom:889.893333pt;}
.yd{bottom:902.373333pt;}
.y5f{bottom:904.453333pt;}
.yc{bottom:915.653333pt;}
.y5e{bottom:920.133333pt;}
.yb{bottom:932.613333pt;}
.y5d{bottom:935.813333pt;}
.ya{bottom:949.093333pt;}
.y5c{bottom:951.493333pt;}
.y5b{bottom:967.013333pt;}
.y9{bottom:969.413333pt;}
.y5a{bottom:982.693333pt;}
.y8{bottom:988.933333pt;}
.y59{bottom:998.373333pt;}
.y5{bottom:1007.333333pt;}
.y58{bottom:1013.920000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y56{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.h5{height:29.940625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h6{height:44.975625pt;}
.h8{height:49.852500pt;}
.h7{height:58.522500pt;}
.h9{height:311.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xa{left:100.992000pt;}
.x6{left:113.951988pt;}
.x5{left:117.471988pt;}
.xb{left:119.994667pt;}
.x3{left:121.951988pt;}
.xd{left:128.031988pt;}
.x9{left:133.786655pt;}
.x7{left:298.146655pt;}
.x8{left:299.106655pt;}
.x4{left:356.386655pt;}
.x2{left:398.466655pt;}
.xc{left:410.946655pt;}
}




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