
    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_175dd78f00994f9fa5cbde60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_f39a2ad108dd8c3720e4c07c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_3095dce234b2018d546653c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_adae3784b87b22c0c979a4f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_8037e2a59a922550e67b641f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d2c2dc6ca27b82b22a764ea8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-3.744000px;}
.ls2{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.702000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.620000px;}
.lsa{letter-spacing:64.026720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws1{word-spacing:-24.642000px;}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-10.030320px;}
._1{margin-left:-8.611200px;}
._5{margin-left:-6.703200px;}
._c{margin-left:-5.075280px;}
._10{margin-left:-3.979680px;}
._a{margin-left:-2.777040px;}
._0{margin-left:-1.324800px;}
._2{width:1.250880px;}
._1a{width:2.342880px;}
._14{width:3.384000px;}
._17{width:4.649040px;}
._7{width:5.649840px;}
._12{width:7.214160px;}
._11{width:8.537040px;}
._e{width:9.792000px;}
._f{width:10.944000px;}
._16{width:12.072000px;}
._8{width:13.119120px;}
._6{width:14.231760px;}
._21{width:15.432240px;}
._1d{width:16.437600px;}
._13{width:19.584000px;}
._1e{width:20.884800px;}
._18{width:22.824000px;}
._19{width:23.916000px;}
._15{width:25.560000px;}
._1f{width:28.728000px;}
._20{width:29.920800px;}
._23{width:35.133600px;}
._1b{width:37.416000px;}
._1c{width:39.369600px;}
._b{width:40.698000px;}
._4{width:45.230880px;}
._9{width:48.167280px;}
._3{width:53.721360px;}
._d{width:66.068400px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.960000px;}
.y4{bottom:79.956000px;}
.y3{bottom:100.656000px;}
.y2{bottom:119.556000px;}
.y1{bottom:138.816000px;}
.yac{bottom:159.510000px;}
.y2f{bottom:178.410000px;}
.yab{bottom:180.210000px;}
.y48{bottom:183.630000px;}
.y86{bottom:183.990000px;}
.y6f{bottom:187.050000px;}
.y2e{bottom:199.110000px;}
.yaa{bottom:200.910000px;}
.y47{bottom:214.770000px;}
.y85{bottom:214.950000px;}
.y6e{bottom:218.010000px;}
.y2d{bottom:219.810000px;}
.y62{bottom:219.990000px;}
.ya9{bottom:221.610000px;}
.y2c{bottom:240.510000px;}
.ya8{bottom:242.310000px;}
.y46{bottom:245.730000px;}
.y84{bottom:246.090000px;}
.y6d{bottom:249.150000px;}
.y61{bottom:250.950000px;}
.y2b{bottom:261.210000px;}
.ya7{bottom:263.010000px;}
.y83{bottom:277.050000px;}
.y6c{bottom:280.110000px;}
.y2a{bottom:281.910000px;}
.y60{bottom:282.090000px;}
.ya6{bottom:283.710000px;}
.y45{bottom:291.090000px;}
.y29{bottom:302.610000px;}
.ya5{bottom:304.410000px;}
.y82{bottom:308.190000px;}
.y6b{bottom:311.250000px;}
.y5f{bottom:313.050000px;}
.y28{bottom:323.310000px;}
.y44{bottom:325.110000px;}
.y81{bottom:339.195000px;}
.y6a{bottom:342.255000px;}
.y27{bottom:344.055000px;}
.y5e{bottom:344.235000px;}
.ya4{bottom:345.855000px;}
.y43{bottom:356.115000px;}
.y26{bottom:364.755000px;}
.ya3{bottom:366.555000px;}
.y80{bottom:370.155000px;}
.y69{bottom:373.395000px;}
.y5d{bottom:375.195000px;}
.y25{bottom:385.455000px;}
.y42{bottom:387.255000px;}
.y7f{bottom:401.295000px;}
.y68{bottom:404.355000px;}
.y24{bottom:406.155000px;}
.ya2{bottom:407.955000px;}
.y41{bottom:418.215000px;}
.y23{bottom:426.855000px;}
.ya1{bottom:428.655000px;}
.y7e{bottom:432.255000px;}
.y67{bottom:435.495000px;}
.y5c{bottom:437.295000px;}
.y22{bottom:447.555000px;}
.y40{bottom:449.355000px;}
.y7d{bottom:463.395000px;}
.y66{bottom:466.455000px;}
.y21{bottom:468.255000px;}
.ya0{bottom:470.055000px;}
.y3f{bottom:480.315000px;}
.y9f{bottom:490.755000px;}
.y7c{bottom:494.355000px;}
.y65{bottom:497.595000px;}
.y5b{bottom:499.395000px;}
.y20{bottom:501.015000px;}
.y3e{bottom:511.455000px;}
.y1f{bottom:521.715000px;}
.y7b{bottom:525.495000px;}
.y64{bottom:528.555000px;}
.y9e{bottom:532.155000px;}
.y1e{bottom:542.415000px;}
.y5a{bottom:544.755000px;}
.y9d{bottom:552.855000px;}
.y7a{bottom:556.455000px;}
.y63{bottom:559.695000px;}
.y1d{bottom:563.115000px;}
.y3d{bottom:573.555000px;}
.y1c{bottom:583.815000px;}
.y79{bottom:587.595000px;}
.y59{bottom:590.655000px;}
.y9c{bottom:594.255000px;}
.y1b{bottom:604.545000px;}
.y9b{bottom:614.985000px;}
.y78{bottom:618.585000px;}
.y58{bottom:621.645000px;}
.y1a{bottom:625.245000px;}
.y3c{bottom:635.685000px;}
.y19{bottom:645.945000px;}
.y77{bottom:649.725000px;}
.y57{bottom:652.785000px;}
.y9a{bottom:656.385000px;}
.y18{bottom:666.645000px;}
.y99{bottom:677.085000px;}
.y56{bottom:683.745000px;}
.y17{bottom:687.345000px;}
.y76{bottom:695.085000px;}
.y3b{bottom:697.785000px;}
.y16{bottom:708.045000px;}
.y55{bottom:714.885000px;}
.y98{bottom:718.485000px;}
.y15{bottom:728.745000px;}
.y97{bottom:739.185000px;}
.y75{bottom:740.985000px;}
.y54{bottom:745.845000px;}
.y14{bottom:749.445000px;}
.y3a{bottom:759.705000px;}
.y96{bottom:759.885000px;}
.y13{bottom:770.145000px;}
.y53{bottom:776.985000px;}
.y95{bottom:780.585000px;}
.y74{bottom:784.005000px;}
.y39{bottom:790.845000px;}
.y12{bottom:801.105000px;}
.y94{bottom:801.285000px;}
.y52{bottom:807.945000px;}
.y73{bottom:815.145000px;}
.y11{bottom:821.805000px;}
.y93{bottom:821.985000px;}
.y51{bottom:839.085000px;}
.y10{bottom:842.505000px;}
.y92{bottom:842.685000px;}
.y72{bottom:846.105000px;}
.y38{bottom:852.945000px;}
.yf{bottom:863.205000px;}
.y91{bottom:863.385000px;}
.y50{bottom:870.045000px;}
.y37{bottom:883.950000px;}
.y90{bottom:884.130000px;}
.y71{bottom:889.170000px;}
.ye{bottom:894.390000px;}
.y4f{bottom:901.230000px;}
.y8f{bottom:904.830000px;}
.y36{bottom:915.090000px;}
.yd{bottom:916.350000px;}
.y70{bottom:920.310000px;}
.y8e{bottom:925.530000px;}
.yb2{bottom:928.950000px;}
.y4e{bottom:932.190000px;}
.yc{bottom:943.890000px;}
.y35{bottom:946.050000px;}
.y8d{bottom:946.230000px;}
.yb1{bottom:961.710000px;}
.y4d{bottom:963.330000px;}
.y8c{bottom:966.930000px;}
.yb{bottom:971.430000px;}
.y34{bottom:977.190000px;}
.y8b{bottom:987.630000px;}
.y4c{bottom:994.290000px;}
.ya{bottom:999.150000px;}
.y33{bottom:1008.150000px;}
.y8a{bottom:1008.330000px;}
.yb0{bottom:1014.990000px;}
.y4b{bottom:1025.430000px;}
.y9{bottom:1026.690000px;}
.y89{bottom:1029.030000px;}
.yaf{bottom:1035.690000px;}
.y32{bottom:1039.290000px;}
.y88{bottom:1049.730000px;}
.y8{bottom:1054.230000px;}
.y4a{bottom:1056.390000px;}
.y31{bottom:1070.250000px;}
.yae{bottom:1077.090000px;}
.y7{bottom:1081.950000px;}
.y87{bottom:1083.030000px;}
.y49{bottom:1087.530000px;}
.yad{bottom:1097.790000px;}
.y30{bottom:1115.610000px;}
.y6{bottom:1118.490000px;}
.h7{height:52.628906px;}
.h3{height:59.383125px;}
.h4{height:60.855469px;}
.h5{height:63.949219px;}
.h2{height:64.546875px;}
.h9{height:70.606406px;}
.h8{height:74.820586px;}
.h6{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x7{left:154.649987px;}
.x6{left:180.749987px;}
.x3{left:268.949987px;}
.x4{left:329.834987px;}
.x5{left:467.924987px;}
.x2{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-3.328000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.624000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.440000pt;}
.lsa{letter-spacing:56.912640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-21.904000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-8.915840pt;}
._1{margin-left:-7.654400pt;}
._5{margin-left:-5.958400pt;}
._c{margin-left:-4.511360pt;}
._10{margin-left:-3.537493pt;}
._a{margin-left:-2.468480pt;}
._0{margin-left:-1.177600pt;}
._2{width:1.111893pt;}
._1a{width:2.082560pt;}
._14{width:3.008000pt;}
._17{width:4.132480pt;}
._7{width:5.022080pt;}
._12{width:6.412587pt;}
._11{width:7.588480pt;}
._e{width:8.704000pt;}
._f{width:9.728000pt;}
._16{width:10.730667pt;}
._8{width:11.661440pt;}
._6{width:12.650453pt;}
._21{width:13.717547pt;}
._1d{width:14.611200pt;}
._13{width:17.408000pt;}
._1e{width:18.564267pt;}
._18{width:20.288000pt;}
._19{width:21.258667pt;}
._15{width:22.720000pt;}
._1f{width:25.536000pt;}
._20{width:26.596267pt;}
._23{width:31.229867pt;}
._1b{width:33.258667pt;}
._1c{width:34.995200pt;}
._b{width:36.176000pt;}
._4{width:40.205227pt;}
._9{width:42.815360pt;}
._3{width:47.752320pt;}
._d{width:58.727467pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.520000pt;}
.y4{bottom:71.072000pt;}
.y3{bottom:89.472000pt;}
.y2{bottom:106.272000pt;}
.y1{bottom:123.392000pt;}
.yac{bottom:141.786667pt;}
.y2f{bottom:158.586667pt;}
.yab{bottom:160.186667pt;}
.y48{bottom:163.226667pt;}
.y86{bottom:163.546667pt;}
.y6f{bottom:166.266667pt;}
.y2e{bottom:176.986667pt;}
.yaa{bottom:178.586667pt;}
.y47{bottom:190.906667pt;}
.y85{bottom:191.066667pt;}
.y6e{bottom:193.786667pt;}
.y2d{bottom:195.386667pt;}
.y62{bottom:195.546667pt;}
.ya9{bottom:196.986667pt;}
.y2c{bottom:213.786667pt;}
.ya8{bottom:215.386667pt;}
.y46{bottom:218.426667pt;}
.y84{bottom:218.746667pt;}
.y6d{bottom:221.466667pt;}
.y61{bottom:223.066667pt;}
.y2b{bottom:232.186667pt;}
.ya7{bottom:233.786667pt;}
.y83{bottom:246.266667pt;}
.y6c{bottom:248.986667pt;}
.y2a{bottom:250.586667pt;}
.y60{bottom:250.746667pt;}
.ya6{bottom:252.186667pt;}
.y45{bottom:258.746667pt;}
.y29{bottom:268.986667pt;}
.ya5{bottom:270.586667pt;}
.y82{bottom:273.946667pt;}
.y6b{bottom:276.666667pt;}
.y5f{bottom:278.266667pt;}
.y28{bottom:287.386667pt;}
.y44{bottom:288.986667pt;}
.y81{bottom:301.506667pt;}
.y6a{bottom:304.226667pt;}
.y27{bottom:305.826667pt;}
.y5e{bottom:305.986667pt;}
.ya4{bottom:307.426667pt;}
.y43{bottom:316.546667pt;}
.y26{bottom:324.226667pt;}
.ya3{bottom:325.826667pt;}
.y80{bottom:329.026667pt;}
.y69{bottom:331.906667pt;}
.y5d{bottom:333.506667pt;}
.y25{bottom:342.626667pt;}
.y42{bottom:344.226667pt;}
.y7f{bottom:356.706667pt;}
.y68{bottom:359.426667pt;}
.y24{bottom:361.026667pt;}
.ya2{bottom:362.626667pt;}
.y41{bottom:371.746667pt;}
.y23{bottom:379.426667pt;}
.ya1{bottom:381.026667pt;}
.y7e{bottom:384.226667pt;}
.y67{bottom:387.106667pt;}
.y5c{bottom:388.706667pt;}
.y22{bottom:397.826667pt;}
.y40{bottom:399.426667pt;}
.y7d{bottom:411.906667pt;}
.y66{bottom:414.626667pt;}
.y21{bottom:416.226667pt;}
.ya0{bottom:417.826667pt;}
.y3f{bottom:426.946667pt;}
.y9f{bottom:436.226667pt;}
.y7c{bottom:439.426667pt;}
.y65{bottom:442.306667pt;}
.y5b{bottom:443.906667pt;}
.y20{bottom:445.346667pt;}
.y3e{bottom:454.626667pt;}
.y1f{bottom:463.746667pt;}
.y7b{bottom:467.106667pt;}
.y64{bottom:469.826667pt;}
.y9e{bottom:473.026667pt;}
.y1e{bottom:482.146667pt;}
.y5a{bottom:484.226667pt;}
.y9d{bottom:491.426667pt;}
.y7a{bottom:494.626667pt;}
.y63{bottom:497.506667pt;}
.y1d{bottom:500.546667pt;}
.y3d{bottom:509.826667pt;}
.y1c{bottom:518.946667pt;}
.y79{bottom:522.306667pt;}
.y59{bottom:525.026667pt;}
.y9c{bottom:528.226667pt;}
.y1b{bottom:537.373333pt;}
.y9b{bottom:546.653333pt;}
.y78{bottom:549.853333pt;}
.y58{bottom:552.573333pt;}
.y1a{bottom:555.773333pt;}
.y3c{bottom:565.053333pt;}
.y19{bottom:574.173333pt;}
.y77{bottom:577.533333pt;}
.y57{bottom:580.253333pt;}
.y9a{bottom:583.453333pt;}
.y18{bottom:592.573333pt;}
.y99{bottom:601.853333pt;}
.y56{bottom:607.773333pt;}
.y17{bottom:610.973333pt;}
.y76{bottom:617.853333pt;}
.y3b{bottom:620.253333pt;}
.y16{bottom:629.373333pt;}
.y55{bottom:635.453333pt;}
.y98{bottom:638.653333pt;}
.y15{bottom:647.773333pt;}
.y97{bottom:657.053333pt;}
.y75{bottom:658.653333pt;}
.y54{bottom:662.973333pt;}
.y14{bottom:666.173333pt;}
.y3a{bottom:675.293333pt;}
.y96{bottom:675.453333pt;}
.y13{bottom:684.573333pt;}
.y53{bottom:690.653333pt;}
.y95{bottom:693.853333pt;}
.y74{bottom:696.893333pt;}
.y39{bottom:702.973333pt;}
.y12{bottom:712.093333pt;}
.y94{bottom:712.253333pt;}
.y52{bottom:718.173333pt;}
.y73{bottom:724.573333pt;}
.y11{bottom:730.493333pt;}
.y93{bottom:730.653333pt;}
.y51{bottom:745.853333pt;}
.y10{bottom:748.893333pt;}
.y92{bottom:749.053333pt;}
.y72{bottom:752.093333pt;}
.y38{bottom:758.173333pt;}
.yf{bottom:767.293333pt;}
.y91{bottom:767.453333pt;}
.y50{bottom:773.373333pt;}
.y37{bottom:785.733333pt;}
.y90{bottom:785.893333pt;}
.y71{bottom:790.373333pt;}
.ye{bottom:795.013333pt;}
.y4f{bottom:801.093333pt;}
.y8f{bottom:804.293333pt;}
.y36{bottom:813.413333pt;}
.yd{bottom:814.533333pt;}
.y70{bottom:818.053333pt;}
.y8e{bottom:822.693333pt;}
.yb2{bottom:825.733333pt;}
.y4e{bottom:828.613333pt;}
.yc{bottom:839.013333pt;}
.y35{bottom:840.933333pt;}
.y8d{bottom:841.093333pt;}
.yb1{bottom:854.853333pt;}
.y4d{bottom:856.293333pt;}
.y8c{bottom:859.493333pt;}
.yb{bottom:863.493333pt;}
.y34{bottom:868.613333pt;}
.y8b{bottom:877.893333pt;}
.y4c{bottom:883.813333pt;}
.ya{bottom:888.133333pt;}
.y33{bottom:896.133333pt;}
.y8a{bottom:896.293333pt;}
.yb0{bottom:902.213333pt;}
.y4b{bottom:911.493333pt;}
.y9{bottom:912.613333pt;}
.y89{bottom:914.693333pt;}
.yaf{bottom:920.613333pt;}
.y32{bottom:923.813333pt;}
.y88{bottom:933.093333pt;}
.y8{bottom:937.093333pt;}
.y4a{bottom:939.013333pt;}
.y31{bottom:951.333333pt;}
.yae{bottom:957.413333pt;}
.y7{bottom:961.733333pt;}
.y87{bottom:962.693333pt;}
.y49{bottom:966.693333pt;}
.yad{bottom:975.813333pt;}
.y30{bottom:991.653333pt;}
.y6{bottom:994.213333pt;}
.h7{height:46.781250pt;}
.h3{height:52.785000pt;}
.h4{height:54.093750pt;}
.h5{height:56.843750pt;}
.h2{height:57.375000pt;}
.h9{height:62.761250pt;}
.h8{height:66.507188pt;}
.h6{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x7{left:137.466655pt;}
.x6{left:160.666655pt;}
.x3{left:239.066655pt;}
.x4{left:293.186655pt;}
.x5{left:415.933322pt;}
.x2{left:718.373322pt;}
}




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