
    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_94363c53e6acb14e4ce2c1dd.woff')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_e392dda73936d51e4bf30526.woff')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_e5fcaa19d8fa5e288b0e9c2c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_5dc536fbb96a4a2c2ce3b399.woff')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_3cab9cba45e912c8587c138e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68c3a0a1d5bc1b60fac6b4f5.woff')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_cb831bfc45030f6d94299355.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f96420c5b9d79a7d90e8eeae.woff')format("woff");}.ff8{font-family:ff8;line-height:1.056152;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.684000px;}
.ls13{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.440000px;}
.lsf{letter-spacing:6.480000px;}
.ls15{letter-spacing:7.200000px;}
.ls1d{letter-spacing:7.920000px;}
.ls18{letter-spacing:15.840000px;}
.lsc{letter-spacing:18.720000px;}
.lsd{letter-spacing:22.320000px;}
.ls1a{letter-spacing:23.040000px;}
.ls19{letter-spacing:23.220000px;}
.lse{letter-spacing:26.640000px;}
.ls1b{letter-spacing:28.800000px;}
.ls1c{letter-spacing:36.720000px;}
.ls5{letter-spacing:65.700000px;}
.ls14{letter-spacing:169.200000px;}
.lsa{letter-spacing:374.400000px;}
.ls2{letter-spacing:375.840000px;}
.ls1{letter-spacing:935.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.240000px;}
.ws5{word-spacing:-38.880000px;}
.ws9{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-3.888000px;}
._1a{margin-left:-2.628000px;}
._1{margin-left:-1.080000px;}
._0{width:1.116000px;}
._c{width:2.160000px;}
._a{width:3.744000px;}
._12{width:5.256000px;}
._18{width:6.696000px;}
._3{width:8.352000px;}
._b{width:9.360000px;}
._4{width:10.368000px;}
._9{width:11.520000px;}
._8{width:12.744000px;}
._1d{width:13.752000px;}
._f{width:14.832000px;}
._20{width:16.416000px;}
._16{width:19.404000px;}
._7{width:20.880000px;}
._15{width:22.464000px;}
._13{width:24.480000px;}
._5{width:26.280000px;}
._6{width:27.576000px;}
._1b{width:28.884000px;}
._1c{width:30.744000px;}
._d{width:32.760000px;}
._e{width:33.912000px;}
._1e{width:35.928000px;}
._1f{width:37.092000px;}
._22{width:38.268000px;}
._21{width:39.456000px;}
._17{width:41.904000px;}
._10{width:52.848000px;}
._11{width:53.928000px;}
._14{width:65.556720px;}
._23{width:374.760000px;}
._2{width:847.620000px;}
._24{width:1727.208000px;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:66.456000px;}
.y8{bottom:110.016000px;}
.y28{bottom:119.016000px;}
.y63{bottom:131.616000px;}
.y27{bottom:141.336000px;}
.y94{bottom:162.390000px;}
.y62{bottom:162.750000px;}
.y47{bottom:163.650000px;}
.y26{bottom:164.550000px;}
.y7{bottom:166.530000px;}
.y93{bottom:183.090000px;}
.y61{bottom:193.710000px;}
.y46{bottom:194.610000px;}
.y92{bottom:221.790000px;}
.y60{bottom:224.850000px;}
.y45{bottom:225.750000px;}
.y25{bottom:231.690000px;}
.y5f{bottom:255.810000px;}
.y44{bottom:256.710000px;}
.y91{bottom:260.490000px;}
.y24{bottom:262.830000px;}
.y90{bottom:281.190000px;}
.y5e{bottom:286.995000px;}
.y43{bottom:287.895000px;}
.y23{bottom:293.835000px;}
.y6{bottom:305.535000px;}
.y5d{bottom:317.955000px;}
.y42{bottom:318.855000px;}
.y8f{bottom:319.935000px;}
.y22{bottom:333.615000px;}
.y5{bottom:336.675000px;}
.y8e{bottom:340.635000px;}
.y5c{bottom:348.915000px;}
.y71{bottom:349.995000px;}
.y41{bottom:358.995000px;}
.y8d{bottom:361.335000px;}
.y70{bottom:380.955000px;}
.y8c{bottom:382.035000px;}
.y21{bottom:382.935000px;}
.y5b{bottom:389.055000px;}
.y40{bottom:389.955000px;}
.y6f{bottom:411.915000px;}
.y20{bottom:414.075000px;}
.y8b{bottom:420.735000px;}
.y3f{bottom:420.915000px;}
.y5a{bottom:429.015000px;}
.y8a{bottom:441.435000px;}
.y1f{bottom:445.035000px;}
.y3e{bottom:452.055000px;}
.y89{bottom:462.135000px;}
.y59{bottom:469.155000px;}
.y4{bottom:475.635000px;}
.y1e{bottom:476.175000px;}
.y88{bottom:482.835000px;}
.y3d{bottom:483.015000px;}
.y1d{bottom:507.135000px;}
.y58{bottom:509.115000px;}
.y6e{bottom:514.155000px;}
.y87{bottom:521.535000px;}
.y3c{bottom:523.155000px;}
.y1c{bottom:538.275000px;}
.y86{bottom:542.235000px;}
.y6d{bottom:545.115000px;}
.y57{bottom:549.255000px;}
.y3b{bottom:554.115000px;}
.y1b{bottom:569.265000px;}
.y6c{bottom:576.285000px;}
.y85{bottom:580.965000px;}
.y3a{bottom:585.285000px;}
.y56{bottom:589.245000px;}
.y84{bottom:601.665000px;}
.y6b{bottom:607.245000px;}
.y1a{bottom:609.405000px;}
.y3{bottom:614.805000px;}
.y39{bottom:616.245000px;}
.y83{bottom:622.365000px;}
.y55{bottom:629.385000px;}
.y6a{bottom:638.385000px;}
.y19{bottom:640.365000px;}
.y2{bottom:645.765000px;}
.y38{bottom:647.385000px;}
.y82{bottom:661.065000px;}
.y54{bottom:669.345000px;}
.y18{bottom:671.505000px;}
.y81{bottom:681.765000px;}
.y37{bottom:687.345000px;}
.y53{bottom:700.485000px;}
.y17{bottom:702.465000px;}
.y69{bottom:709.485000px;}
.y36{bottom:718.485000px;}
.y52{bottom:740.445000px;}
.y80{bottom:741.165000px;}
.y16{bottom:742.605000px;}
.y35{bottom:749.445000px;}
.y7f{bottom:761.865000px;}
.y51{bottom:771.585000px;}
.y15{bottom:773.565000px;}
.y7e{bottom:782.565000px;}
.y34{bottom:789.585000px;}
.y50{bottom:802.545000px;}
.y14{bottom:804.705000px;}
.y33{bottom:820.545000px;}
.y7d{bottom:821.265000px;}
.y4f{bottom:833.685000px;}
.y13{bottom:835.665000px;}
.y7c{bottom:841.965000px;}
.y32{bottom:851.730000px;}
.y4e{bottom:864.690000px;}
.y12{bottom:866.670000px;}
.y7b{bottom:880.710000px;}
.y31{bottom:882.690000px;}
.y4d{bottom:895.830000px;}
.y11{bottom:897.810000px;}
.y7a{bottom:901.410000px;}
.y68{bottom:904.470000px;}
.y30{bottom:913.830000px;}
.y4c{bottom:926.790000px;}
.y10{bottom:928.770000px;}
.y79{bottom:940.110000px;}
.y2f{bottom:944.790000px;}
.y67{bottom:953.790000px;}
.y4b{bottom:957.930000px;}
.yf{bottom:959.910000px;}
.y78{bottom:960.810000px;}
.y2e{bottom:975.930000px;}
.y77{bottom:981.510000px;}
.y66{bottom:984.930000px;}
.y4a{bottom:988.890000px;}
.ye{bottom:999.510000px;}
.y76{bottom:1002.210000px;}
.y2d{bottom:1006.890000px;}
.y65{bottom:1015.890000px;}
.y9a{bottom:1018.770000px;}
.y49{bottom:1028.670000px;}
.y1{bottom:1031.730000px;}
.y2c{bottom:1038.030000px;}
.y99{bottom:1039.470000px;}
.y75{bottom:1040.910000px;}
.y64{bottom:1047.030000px;}
.yd{bottom:1049.370000px;}
.y98{bottom:1060.170000px;}
.y74{bottom:1061.610000px;}
.y2b{bottom:1068.990000px;}
.y48{bottom:1077.990000px;}
.y73{bottom:1082.310000px;}
.y97{bottom:1098.870000px;}
.yc{bottom:1108.770000px;}
.y2a{bottom:1109.130000px;}
.y96{bottom:1119.570000px;}
.y72{bottom:1139.760000px;}
.yb{bottom:1139.940000px;}
.y29{bottom:1140.120000px;}
.y95{bottom:1140.300000px;}
.y9{bottom:1184.580000px;}
.h7{height:37.771172px;}
.h8{height:58.651172px;}
.h5{height:60.082031px;}
.h9{height:60.503906px;}
.h6{height:65.884219px;}
.h3{height:66.757500px;}
.h4{height:70.664062px;}
.h2{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:170.129987px;}
.x2{left:207.029987px;}
.xc{left:223.229987px;}
.x7{left:313.634987px;}
.x4{left:383.114987px;}
.xa{left:386.174987px;}
.x5{left:387.974987px;}
.x3{left:406.154987px;}
.x9{left:423.074987px;}
.x6{left:424.334987px;}
.xb{left:439.454987px;}
.x8{left:473.834987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.608000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsf{letter-spacing:5.760000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls18{letter-spacing:14.080000pt;}
.lsc{letter-spacing:16.640000pt;}
.lsd{letter-spacing:19.840000pt;}
.ls1a{letter-spacing:20.480000pt;}
.ls19{letter-spacing:20.640000pt;}
.lse{letter-spacing:23.680000pt;}
.ls1b{letter-spacing:25.600000pt;}
.ls1c{letter-spacing:32.640000pt;}
.ls5{letter-spacing:58.400000pt;}
.ls14{letter-spacing:150.400000pt;}
.lsa{letter-spacing:332.800000pt;}
.ls2{letter-spacing:334.080000pt;}
.ls1{letter-spacing:831.520000pt;}
.ws2{word-spacing:-42.880000pt;}
.ws5{word-spacing:-34.560000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-3.456000pt;}
._1a{margin-left:-2.336000pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.992000pt;}
._c{width:1.920000pt;}
._a{width:3.328000pt;}
._12{width:4.672000pt;}
._18{width:5.952000pt;}
._3{width:7.424000pt;}
._b{width:8.320000pt;}
._4{width:9.216000pt;}
._9{width:10.240000pt;}
._8{width:11.328000pt;}
._1d{width:12.224000pt;}
._f{width:13.184000pt;}
._20{width:14.592000pt;}
._16{width:17.248000pt;}
._7{width:18.560000pt;}
._15{width:19.968000pt;}
._13{width:21.760000pt;}
._5{width:23.360000pt;}
._6{width:24.512000pt;}
._1b{width:25.674667pt;}
._1c{width:27.328000pt;}
._d{width:29.120000pt;}
._e{width:30.144000pt;}
._1e{width:31.936000pt;}
._1f{width:32.970667pt;}
._22{width:34.016000pt;}
._21{width:35.072000pt;}
._17{width:37.248000pt;}
._10{width:46.976000pt;}
._11{width:47.936000pt;}
._14{width:58.272640pt;}
._23{width:333.120000pt;}
._2{width:753.440000pt;}
._24{width:1535.296000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:59.072000pt;}
.y8{bottom:97.792000pt;}
.y28{bottom:105.792000pt;}
.y63{bottom:116.992000pt;}
.y27{bottom:125.632000pt;}
.y94{bottom:144.346667pt;}
.y62{bottom:144.666667pt;}
.y47{bottom:145.466667pt;}
.y26{bottom:146.266667pt;}
.y7{bottom:148.026667pt;}
.y93{bottom:162.746667pt;}
.y61{bottom:172.186667pt;}
.y46{bottom:172.986667pt;}
.y92{bottom:197.146667pt;}
.y60{bottom:199.866667pt;}
.y45{bottom:200.666667pt;}
.y25{bottom:205.946667pt;}
.y5f{bottom:227.386667pt;}
.y44{bottom:228.186667pt;}
.y91{bottom:231.546667pt;}
.y24{bottom:233.626667pt;}
.y90{bottom:249.946667pt;}
.y5e{bottom:255.106667pt;}
.y43{bottom:255.906667pt;}
.y23{bottom:261.186667pt;}
.y6{bottom:271.586667pt;}
.y5d{bottom:282.626667pt;}
.y42{bottom:283.426667pt;}
.y8f{bottom:284.386667pt;}
.y22{bottom:296.546667pt;}
.y5{bottom:299.266667pt;}
.y8e{bottom:302.786667pt;}
.y5c{bottom:310.146667pt;}
.y71{bottom:311.106667pt;}
.y41{bottom:319.106667pt;}
.y8d{bottom:321.186667pt;}
.y70{bottom:338.626667pt;}
.y8c{bottom:339.586667pt;}
.y21{bottom:340.386667pt;}
.y5b{bottom:345.826667pt;}
.y40{bottom:346.626667pt;}
.y6f{bottom:366.146667pt;}
.y20{bottom:368.066667pt;}
.y8b{bottom:373.986667pt;}
.y3f{bottom:374.146667pt;}
.y5a{bottom:381.346667pt;}
.y8a{bottom:392.386667pt;}
.y1f{bottom:395.586667pt;}
.y3e{bottom:401.826667pt;}
.y89{bottom:410.786667pt;}
.y59{bottom:417.026667pt;}
.y4{bottom:422.786667pt;}
.y1e{bottom:423.266667pt;}
.y88{bottom:429.186667pt;}
.y3d{bottom:429.346667pt;}
.y1d{bottom:450.786667pt;}
.y58{bottom:452.546667pt;}
.y6e{bottom:457.026667pt;}
.y87{bottom:463.586667pt;}
.y3c{bottom:465.026667pt;}
.y1c{bottom:478.466667pt;}
.y86{bottom:481.986667pt;}
.y6d{bottom:484.546667pt;}
.y57{bottom:488.226667pt;}
.y3b{bottom:492.546667pt;}
.y1b{bottom:506.013333pt;}
.y6c{bottom:512.253333pt;}
.y85{bottom:516.413333pt;}
.y3a{bottom:520.253333pt;}
.y56{bottom:523.773333pt;}
.y84{bottom:534.813333pt;}
.y6b{bottom:539.773333pt;}
.y1a{bottom:541.693333pt;}
.y3{bottom:546.493333pt;}
.y39{bottom:547.773333pt;}
.y83{bottom:553.213333pt;}
.y55{bottom:559.453333pt;}
.y6a{bottom:567.453333pt;}
.y19{bottom:569.213333pt;}
.y2{bottom:574.013333pt;}
.y38{bottom:575.453333pt;}
.y82{bottom:587.613333pt;}
.y54{bottom:594.973333pt;}
.y18{bottom:596.893333pt;}
.y81{bottom:606.013333pt;}
.y37{bottom:610.973333pt;}
.y53{bottom:622.653333pt;}
.y17{bottom:624.413333pt;}
.y69{bottom:630.653333pt;}
.y36{bottom:638.653333pt;}
.y52{bottom:658.173333pt;}
.y80{bottom:658.813333pt;}
.y16{bottom:660.093333pt;}
.y35{bottom:666.173333pt;}
.y7f{bottom:677.213333pt;}
.y51{bottom:685.853333pt;}
.y15{bottom:687.613333pt;}
.y7e{bottom:695.613333pt;}
.y34{bottom:701.853333pt;}
.y50{bottom:713.373333pt;}
.y14{bottom:715.293333pt;}
.y33{bottom:729.373333pt;}
.y7d{bottom:730.013333pt;}
.y4f{bottom:741.053333pt;}
.y13{bottom:742.813333pt;}
.y7c{bottom:748.413333pt;}
.y32{bottom:757.093333pt;}
.y4e{bottom:768.613333pt;}
.y12{bottom:770.373333pt;}
.y7b{bottom:782.853333pt;}
.y31{bottom:784.613333pt;}
.y4d{bottom:796.293333pt;}
.y11{bottom:798.053333pt;}
.y7a{bottom:801.253333pt;}
.y68{bottom:803.973333pt;}
.y30{bottom:812.293333pt;}
.y4c{bottom:823.813333pt;}
.y10{bottom:825.573333pt;}
.y79{bottom:835.653333pt;}
.y2f{bottom:839.813333pt;}
.y67{bottom:847.813333pt;}
.y4b{bottom:851.493333pt;}
.yf{bottom:853.253333pt;}
.y78{bottom:854.053333pt;}
.y2e{bottom:867.493333pt;}
.y77{bottom:872.453333pt;}
.y66{bottom:875.493333pt;}
.y4a{bottom:879.013333pt;}
.ye{bottom:888.453333pt;}
.y76{bottom:890.853333pt;}
.y2d{bottom:895.013333pt;}
.y65{bottom:903.013333pt;}
.y9a{bottom:905.573333pt;}
.y49{bottom:914.373333pt;}
.y1{bottom:917.093333pt;}
.y2c{bottom:922.693333pt;}
.y99{bottom:923.973333pt;}
.y75{bottom:925.253333pt;}
.y64{bottom:930.693333pt;}
.yd{bottom:932.773333pt;}
.y98{bottom:942.373333pt;}
.y74{bottom:943.653333pt;}
.y2b{bottom:950.213333pt;}
.y48{bottom:958.213333pt;}
.y73{bottom:962.053333pt;}
.y97{bottom:976.773333pt;}
.yc{bottom:985.573333pt;}
.y2a{bottom:985.893333pt;}
.y96{bottom:995.173333pt;}
.y72{bottom:1013.120000pt;}
.yb{bottom:1013.280000pt;}
.y29{bottom:1013.440000pt;}
.y95{bottom:1013.600000pt;}
.y9{bottom:1052.960000pt;}
.h7{height:33.574375pt;}
.h8{height:52.134375pt;}
.h5{height:53.406250pt;}
.h9{height:53.781250pt;}
.h6{height:58.563750pt;}
.h3{height:59.340000pt;}
.h4{height:62.812500pt;}
.h2{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:151.226655pt;}
.x2{left:184.026655pt;}
.xc{left:198.426655pt;}
.x7{left:278.786655pt;}
.x4{left:340.546655pt;}
.xa{left:343.266655pt;}
.x5{left:344.866655pt;}
.x3{left:361.026655pt;}
.x9{left:376.066655pt;}
.x6{left:377.186655pt;}
.xb{left:390.626655pt;}
.x8{left:421.186655pt;}
}




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