
    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_9438670fd21bc4e265405934.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ebc678efd89b6bafbca1ee2b.woff2')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_73b8f1061f49c664f1235fc7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1406849c12d5752dfe3a3bd9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074707;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_d51867e9461b7ec31e1b4152.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_6ef6328d10762e3c88c180e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063477;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_187e60efd0ebef4b77ba30ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916504;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_58985701b4c755d552b4c977.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_3bb092d4b57d5a6fd8cdb32d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_c23dab70503acb342c44db76.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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:-18.000000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:18.000000px;}
.ls6{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.126000px;}
.ls5{letter-spacing:-0.063600px;}
.ls7{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.279360px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls1{letter-spacing:29.496000px;}
.lsb{letter-spacing:64.908000px;}
.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;}
}
.wsc{word-spacing:-54.000000px;}
.ws2{word-spacing:-23.940000px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.464000px;}
.wsb{word-spacing:-13.374000px;}
.ws8{word-spacing:-13.176000px;}
.wsa{word-spacing:-12.816000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.996400px;}
.ws4{word-spacing:-7.560000px;}
.wsd{word-spacing:-0.048240px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.044000px;}
._3{width:1.218960px;}
._4{width:2.394000px;}
._8{width:4.158000px;}
._a{width:5.412000px;}
._5{width:6.798960px;}
._6{width:7.878240px;}
._c{width:8.938800px;}
._d{width:10.238160px;}
._f{width:11.394000px;}
._10{width:14.634000px;}
._e{width:16.896000px;}
._b{width:18.000000px;}
._9{width:19.116000px;}
._2{width:28.319040px;}
._1{width:29.998800px;}
._7{width:31.121760px;}
._11{width:163.578000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.700000px;}
.y6{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y9{bottom:20.520000px;}
.y7{bottom:60.480000px;}
.y8{bottom:65.880000px;}
.y5{bottom:76.680000px;}
.y4{bottom:97.920000px;}
.y7d{bottom:119.700000px;}
.y43{bottom:123.120000px;}
.y99{bottom:129.960000px;}
.y7c{bottom:137.880000px;}
.y42{bottom:141.480000px;}
.y98{bottom:150.300000px;}
.y7b{bottom:156.240000px;}
.y41{bottom:159.660000px;}
.y97{bottom:166.890000px;}
.y7a{bottom:174.630000px;}
.y40{bottom:178.050000px;}
.y96{bottom:182.190000px;}
.y79{bottom:192.810000px;}
.y3f{bottom:193.170000px;}
.y95{bottom:197.310000px;}
.y3e{bottom:208.470000px;}
.y94{bottom:210.810000px;}
.y78{bottom:211.170000px;}
.y93{bottom:224.490000px;}
.y3d{bottom:227.010000px;}
.y77{bottom:229.530000px;}
.y92{bottom:237.990000px;}
.y3c{bottom:245.190000px;}
.y76{bottom:247.710000px;}
.y91{bottom:251.670000px;}
.y3b{bottom:263.550000px;}
.y90{bottom:264.630000px;}
.y75{bottom:266.070000px;}
.y3a{bottom:278.670000px;}
.y74{bottom:284.430000px;}
.y39{bottom:293.970000px;}
.y73{bottom:299.550000px;}
.y38{bottom:309.270000px;}
.y72{bottom:314.850000px;}
.y37{bottom:324.570000px;}
.y71{bottom:333.390000px;}
.y36{bottom:339.870000px;}
.y70{bottom:351.570000px;}
.y35{bottom:355.170000px;}
.y6f{bottom:369.930000px;}
.y34{bottom:370.470000px;}
.y33{bottom:389.010000px;}
.y6e{bottom:389.550000px;}
.y32{bottom:407.415000px;}
.y6d{bottom:411.735000px;}
.y31{bottom:422.535000px;}
.y6c{bottom:426.855000px;}
.y30{bottom:437.835000px;}
.y6b{bottom:446.475000px;}
.y2f{bottom:453.135000px;}
.y6a{bottom:464.835000px;}
.y2e{bottom:468.435000px;}
.y69{bottom:480.135000px;}
.y2d{bottom:486.975000px;}
.y68{bottom:501.015000px;}
.y2c{bottom:505.155000px;}
.y2b{bottom:520.275000px;}
.y67{bottom:522.975000px;}
.y2a{bottom:535.575000px;}
.y66{bottom:538.275000px;}
.y29{bottom:550.875000px;}
.y65{bottom:557.895000px;}
.y28{bottom:566.175000px;}
.y64{bottom:576.075000px;}
.y27{bottom:581.655000px;}
.y63{bottom:591.375000px;}
.y26{bottom:600.015000px;}
.y62{bottom:610.995000px;}
.y25{bottom:624.675000px;}
.y61{bottom:629.175000px;}
.y24{bottom:645.735000px;}
.y60{bottom:647.535000px;}
.y5f{bottom:665.925000px;}
.y23{bottom:667.725000px;}
.y5e{bottom:684.285000px;}
.y22{bottom:686.085000px;}
.y5d{bottom:702.465000px;}
.y21{bottom:704.445000px;}
.y20{bottom:719.565000px;}
.y5c{bottom:720.825000px;}
.y1f{bottom:738.105000px;}
.y5b{bottom:739.185000px;}
.y1e{bottom:753.225000px;}
.y5a{bottom:757.365000px;}
.y1d{bottom:768.525000px;}
.y59{bottom:772.485000px;}
.y1c{bottom:783.825000px;}
.y58{bottom:791.025000px;}
.y8f{bottom:796.245000px;}
.y1b{bottom:802.185000px;}
.y57{bottom:806.145000px;}
.y1a{bottom:817.305000px;}
.y8e{bottom:820.905000px;}
.y56{bottom:821.445000px;}
.y19{bottom:835.845000px;}
.y55{bottom:836.745000px;}
.y8d{bottom:840.525000px;}
.y18{bottom:850.965000px;}
.y54{bottom:852.045000px;}
.y8c{bottom:858.885000px;}
.y17{bottom:866.265000px;}
.y53{bottom:870.585000px;}
.y8b{bottom:877.245000px;}
.y16{bottom:881.565000px;}
.y52{bottom:885.705000px;}
.y8a{bottom:892.365000px;}
.y15{bottom:896.910000px;}
.y51{bottom:904.290000px;}
.y89{bottom:907.710000px;}
.y14{bottom:915.450000px;}
.y50{bottom:919.410000px;}
.y88{bottom:923.010000px;}
.y13{bottom:934.710000px;}
.y87{bottom:938.310000px;}
.y4f{bottom:953.070000px;}
.y86{bottom:953.610000px;}
.y12{bottom:959.550000px;}
.y85{bottom:968.910000px;}
.y4e{bottom:971.430000px;}
.y11{bottom:983.670000px;}
.y84{bottom:984.210000px;}
.y4d{bottom:989.790000px;}
.y83{bottom:999.510000px;}
.y10{bottom:1003.470000px;}
.y4c{bottom:1008.150000px;}
.y82{bottom:1018.050000px;}
.y4b{bottom:1023.270000px;}
.yf{bottom:1023.810000px;}
.y81{bottom:1036.230000px;}
.y4a{bottom:1041.630000px;}
.y80{bottom:1051.530000px;}
.ye{bottom:1055.130000px;}
.y49{bottom:1059.990000px;}
.y7f{bottom:1071.150000px;}
.y48{bottom:1075.110000px;}
.yd{bottom:1082.310000px;}
.y7e{bottom:1089.330000px;}
.y47{bottom:1090.410000px;}
.y46{bottom:1108.950000px;}
.yc{bottom:1109.490000px;}
.y45{bottom:1127.130000px;}
.yb{bottom:1136.670000px;}
.y44{bottom:1145.520000px;}
.y3{bottom:1174.320000px;}
.y1{bottom:1191.240000px;}
.h5{height:5.653125px;}
.h6{height:17.640000px;}
.h2{height:18.540000px;}
.hb{height:30.087773px;}
.h8{height:32.580000px;}
.h10{height:42.327773px;}
.hd{height:47.381836px;}
.h7{height:47.980898px;}
.h11{height:50.218594px;}
.h12{height:52.435898px;}
.h3{height:52.998047px;}
.he{height:53.573906px;}
.h13{height:53.709961px;}
.hf{height:55.503491px;}
.hc{height:58.121719px;}
.ha{height:63.175781px;}
.h4{height:70.664062px;}
.h9{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:33.120000px;}
.w3{width:276.495000px;}
.w5{width:361.515000px;}
.w4{width:369.615000px;}
.w2{width:454.605000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x9{left:21.240000px;}
.x1{left:77.040000px;}
.xa{left:84.960000px;}
.x5{left:106.236000px;}
.xc{left:111.996000px;}
.xb{left:138.096000px;}
.xd{left:159.330000px;}
.x4{left:207.210000px;}
.x7{left:209.370000px;}
.x8{left:430.095000px;}
.x6{left:446.655000px;}
.x3{left:531.660000px;}
.xe{left:824.190000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:16.000000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.112000pt;}
.ls5{letter-spacing:-0.056533pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.248320pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls1{letter-spacing:26.218667pt;}
.lsb{letter-spacing:57.696000pt;}
.wsc{word-spacing:-48.000000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.968000pt;}
.wsb{word-spacing:-11.888000pt;}
.ws8{word-spacing:-11.712000pt;}
.wsa{word-spacing:-11.392000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.663467pt;}
.ws4{word-spacing:-6.720000pt;}
.wsd{word-spacing:-0.042880pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.928000pt;}
._3{width:1.083520pt;}
._4{width:2.128000pt;}
._8{width:3.696000pt;}
._a{width:4.810667pt;}
._5{width:6.043520pt;}
._6{width:7.002880pt;}
._c{width:7.945600pt;}
._d{width:9.100587pt;}
._f{width:10.128000pt;}
._10{width:13.008000pt;}
._e{width:15.018667pt;}
._b{width:16.000000pt;}
._9{width:16.992000pt;}
._2{width:25.172480pt;}
._1{width:26.665600pt;}
._7{width:27.663787pt;}
._11{width:145.402667pt;}
.fs2{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.400000pt;}
.y6{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y9{bottom:18.240000pt;}
.y7{bottom:53.760000pt;}
.y8{bottom:58.560000pt;}
.y5{bottom:68.160000pt;}
.y4{bottom:87.040000pt;}
.y7d{bottom:106.400000pt;}
.y43{bottom:109.440000pt;}
.y99{bottom:115.520000pt;}
.y7c{bottom:122.560000pt;}
.y42{bottom:125.760000pt;}
.y98{bottom:133.600000pt;}
.y7b{bottom:138.880000pt;}
.y41{bottom:141.920000pt;}
.y97{bottom:148.346667pt;}
.y7a{bottom:155.226667pt;}
.y40{bottom:158.266667pt;}
.y96{bottom:161.946667pt;}
.y79{bottom:171.386667pt;}
.y3f{bottom:171.706667pt;}
.y95{bottom:175.386667pt;}
.y3e{bottom:185.306667pt;}
.y94{bottom:187.386667pt;}
.y78{bottom:187.706667pt;}
.y93{bottom:199.546667pt;}
.y3d{bottom:201.786667pt;}
.y77{bottom:204.026667pt;}
.y92{bottom:211.546667pt;}
.y3c{bottom:217.946667pt;}
.y76{bottom:220.186667pt;}
.y91{bottom:223.706667pt;}
.y3b{bottom:234.266667pt;}
.y90{bottom:235.226667pt;}
.y75{bottom:236.506667pt;}
.y3a{bottom:247.706667pt;}
.y74{bottom:252.826667pt;}
.y39{bottom:261.306667pt;}
.y73{bottom:266.266667pt;}
.y38{bottom:274.906667pt;}
.y72{bottom:279.866667pt;}
.y37{bottom:288.506667pt;}
.y71{bottom:296.346667pt;}
.y36{bottom:302.106667pt;}
.y70{bottom:312.506667pt;}
.y35{bottom:315.706667pt;}
.y6f{bottom:328.826667pt;}
.y34{bottom:329.306667pt;}
.y33{bottom:345.786667pt;}
.y6e{bottom:346.266667pt;}
.y32{bottom:362.146667pt;}
.y6d{bottom:365.986667pt;}
.y31{bottom:375.586667pt;}
.y6c{bottom:379.426667pt;}
.y30{bottom:389.186667pt;}
.y6b{bottom:396.866667pt;}
.y2f{bottom:402.786667pt;}
.y6a{bottom:413.186667pt;}
.y2e{bottom:416.386667pt;}
.y69{bottom:426.786667pt;}
.y2d{bottom:432.866667pt;}
.y68{bottom:445.346667pt;}
.y2c{bottom:449.026667pt;}
.y2b{bottom:462.466667pt;}
.y67{bottom:464.866667pt;}
.y2a{bottom:476.066667pt;}
.y66{bottom:478.466667pt;}
.y29{bottom:489.666667pt;}
.y65{bottom:495.906667pt;}
.y28{bottom:503.266667pt;}
.y64{bottom:512.066667pt;}
.y27{bottom:517.026667pt;}
.y63{bottom:525.666667pt;}
.y26{bottom:533.346667pt;}
.y62{bottom:543.106667pt;}
.y25{bottom:555.266667pt;}
.y61{bottom:559.266667pt;}
.y24{bottom:573.986667pt;}
.y60{bottom:575.586667pt;}
.y5f{bottom:591.933333pt;}
.y23{bottom:593.533333pt;}
.y5e{bottom:608.253333pt;}
.y22{bottom:609.853333pt;}
.y5d{bottom:624.413333pt;}
.y21{bottom:626.173333pt;}
.y20{bottom:639.613333pt;}
.y5c{bottom:640.733333pt;}
.y1f{bottom:656.093333pt;}
.y5b{bottom:657.053333pt;}
.y1e{bottom:669.533333pt;}
.y5a{bottom:673.213333pt;}
.y1d{bottom:683.133333pt;}
.y59{bottom:686.653333pt;}
.y1c{bottom:696.733333pt;}
.y58{bottom:703.133333pt;}
.y8f{bottom:707.773333pt;}
.y1b{bottom:713.053333pt;}
.y57{bottom:716.573333pt;}
.y1a{bottom:726.493333pt;}
.y8e{bottom:729.693333pt;}
.y56{bottom:730.173333pt;}
.y19{bottom:742.973333pt;}
.y55{bottom:743.773333pt;}
.y8d{bottom:747.133333pt;}
.y18{bottom:756.413333pt;}
.y54{bottom:757.373333pt;}
.y8c{bottom:763.453333pt;}
.y17{bottom:770.013333pt;}
.y53{bottom:773.853333pt;}
.y8b{bottom:779.773333pt;}
.y16{bottom:783.613333pt;}
.y52{bottom:787.293333pt;}
.y8a{bottom:793.213333pt;}
.y15{bottom:797.253333pt;}
.y51{bottom:803.813333pt;}
.y89{bottom:806.853333pt;}
.y14{bottom:813.733333pt;}
.y50{bottom:817.253333pt;}
.y88{bottom:820.453333pt;}
.y13{bottom:830.853333pt;}
.y87{bottom:834.053333pt;}
.y4f{bottom:847.173333pt;}
.y86{bottom:847.653333pt;}
.y12{bottom:852.933333pt;}
.y85{bottom:861.253333pt;}
.y4e{bottom:863.493333pt;}
.y11{bottom:874.373333pt;}
.y84{bottom:874.853333pt;}
.y4d{bottom:879.813333pt;}
.y83{bottom:888.453333pt;}
.y10{bottom:891.973333pt;}
.y4c{bottom:896.133333pt;}
.y82{bottom:904.933333pt;}
.y4b{bottom:909.573333pt;}
.yf{bottom:910.053333pt;}
.y81{bottom:921.093333pt;}
.y4a{bottom:925.893333pt;}
.y80{bottom:934.693333pt;}
.ye{bottom:937.893333pt;}
.y49{bottom:942.213333pt;}
.y7f{bottom:952.133333pt;}
.y48{bottom:955.653333pt;}
.yd{bottom:962.053333pt;}
.y7e{bottom:968.293333pt;}
.y47{bottom:969.253333pt;}
.y46{bottom:985.733333pt;}
.yc{bottom:986.213333pt;}
.y45{bottom:1001.893333pt;}
.yb{bottom:1010.373333pt;}
.y44{bottom:1018.240000pt;}
.y3{bottom:1043.840000pt;}
.y1{bottom:1058.880000pt;}
.h5{height:5.025000pt;}
.h6{height:15.680000pt;}
.h2{height:16.480000pt;}
.hb{height:26.744687pt;}
.h8{height:28.960000pt;}
.h10{height:37.624687pt;}
.hd{height:42.117188pt;}
.h7{height:42.649687pt;}
.h11{height:44.638750pt;}
.h12{height:46.609688pt;}
.h3{height:47.109375pt;}
.he{height:47.621250pt;}
.h13{height:47.742188pt;}
.hf{height:49.336436pt;}
.hc{height:51.663750pt;}
.ha{height:56.156250pt;}
.h4{height:62.812500pt;}
.h9{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:29.440000pt;}
.w3{width:245.773333pt;}
.w5{width:321.346667pt;}
.w4{width:328.546667pt;}
.w2{width:404.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x9{left:18.880000pt;}
.x1{left:68.480000pt;}
.xa{left:75.520000pt;}
.x5{left:94.432000pt;}
.xc{left:99.552000pt;}
.xb{left:122.752000pt;}
.xd{left:141.626667pt;}
.x4{left:184.186667pt;}
.x7{left:186.106667pt;}
.x8{left:382.306667pt;}
.x6{left:397.026667pt;}
.x3{left:472.586667pt;}
.xe{left:732.613333pt;}
}




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