
    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_63ad3721f665ffeb1698be75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e95b6301ceb91c7980e241f8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1486e6501396469230378776.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fc6ad84ab1c33258f151c12e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_802588d848f8ee83618418ea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_60eaf71e33dc3146a9bcc6e8.woff2')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_67f2bcd4f000d7e3a1f04751.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_72e88152259896ef87108beb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.045360px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.720000px;}
.ls13{letter-spacing:2.880000px;}
.ls14{letter-spacing:4.320000px;}
.ls9{letter-spacing:7.920000px;}
.lse{letter-spacing:19.296000px;}
.ls10{letter-spacing:24.480000px;}
.lsf{letter-spacing:32.400000px;}
.ls11{letter-spacing:33.840000px;}
.ls2{letter-spacing:846.156000px;}
.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;}
}
.wsa{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-12.014640px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-2.280000px;}
._2{margin-left:-1.008000px;}
._3{width:1.224000px;}
._b{width:2.664000px;}
._c{width:3.936000px;}
._1{width:5.616000px;}
._0{width:7.176000px;}
._1f{width:8.184000px;}
._4{width:9.216000px;}
._5{width:10.224000px;}
._7{width:11.376000px;}
._6{width:12.984000px;}
._9{width:14.136000px;}
._a{width:15.336000px;}
._d{width:16.896000px;}
._e{width:19.296000px;}
._15{width:20.328000px;}
._f{width:21.360000px;}
._11{width:22.896000px;}
._10{width:24.648000px;}
._16{width:26.640000px;}
._1b{width:28.188000px;}
._14{width:29.304000px;}
._12{width:30.672000px;}
._13{width:31.728000px;}
._1c{width:32.736000px;}
._1d{width:33.924000px;}
._1e{width:35.148000px;}
._2a{width:36.384000px;}
._17{width:37.584000px;}
._18{width:38.808000px;}
._27{width:41.256000px;}
._26{width:42.552000px;}
._19{width:44.280000px;}
._1a{width:45.300000px;}
._2f{width:58.128000px;}
._23{width:59.808000px;}
._22{width:60.888000px;}
._2b{width:70.344000px;}
._24{width:71.568000px;}
._25{width:72.840000px;}
._28{width:90.936000px;}
._29{width:92.604000px;}
._2c{width:107.928000px;}
._2d{width:109.080000px;}
._2e{width:110.148000px;}
._20{width:133.296000px;}
._21{width:179.004000px;}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:110.736000px;}
.ya4{bottom:115.236000px;}
.y5c{bottom:119.736000px;}
.y62{bottom:124.236000px;}
.y29{bottom:128.736000px;}
.y4b{bottom:133.236000px;}
.y70{bottom:137.736000px;}
.y81{bottom:150.510000px;}
.y93{bottom:152.130000px;}
.ya3{bottom:156.630000px;}
.y5b{bottom:161.130000px;}
.y61{bottom:165.630000px;}
.y28{bottom:170.130000px;}
.y4a{bottom:174.630000px;}
.y6f{bottom:179.130000px;}
.y80{bottom:191.910000px;}
.y9e{bottom:193.530000px;}
.y8f{bottom:198.030000px;}
.y5a{bottom:202.530000px;}
.y60{bottom:211.530000px;}
.y27{bottom:215.670000px;}
.y49{bottom:216.030000px;}
.y6e{bottom:220.530000px;}
.y7f{bottom:237.810000px;}
.y8e{bottom:239.430000px;}
.ya2{bottom:243.930000px;}
.y59{bottom:248.430000px;}
.y5f{bottom:252.930000px;}
.y48{bottom:257.430000px;}
.y26{bottom:261.930000px;}
.y7e{bottom:279.210000px;}
.y92{bottom:280.830000px;}
.y8d{bottom:285.330000px;}
.y86{bottom:289.830000px;}
.y58{bottom:294.330000px;}
.y47{bottom:298.830000px;}
.y25{bottom:303.330000px;}
.y3c{bottom:307.830000px;}
.y7d{bottom:320.610000px;}
.y9d{bottom:322.230000px;}
.y8c{bottom:326.730000px;}
.y85{bottom:331.275000px;}
.y57{bottom:335.775000px;}
.y5e{bottom:340.275000px;}
.y46{bottom:344.775000px;}
.y24{bottom:349.275000px;}
.y7c{bottom:366.555000px;}
.y8b{bottom:368.175000px;}
.ya1{bottom:372.675000px;}
.y56{bottom:377.175000px;}
.y5d{bottom:381.675000px;}
.y45{bottom:386.175000px;}
.y23{bottom:390.675000px;}
.y7b{bottom:407.955000px;}
.y91{bottom:409.395000px;}
.y8a{bottom:413.895000px;}
.y55{bottom:418.395000px;}
.y66{bottom:422.895000px;}
.y44{bottom:427.395000px;}
.y22{bottom:431.895000px;}
.y3b{bottom:436.395000px;}
.y9c{bottom:450.795000px;}
.y7a{bottom:453.855000px;}
.y89{bottom:455.295000px;}
.y54{bottom:459.795000px;}
.y65{bottom:464.295000px;}
.y43{bottom:468.795000px;}
.y21{bottom:473.295000px;}
.y3a{bottom:477.795000px;}
.y9b{bottom:492.195000px;}
.y79{bottom:495.255000px;}
.y88{bottom:496.695000px;}
.y53{bottom:501.195000px;}
.y64{bottom:505.695000px;}
.y42{bottom:510.195000px;}
.y20{bottom:514.695000px;}
.y39{bottom:519.195000px;}
.y78{bottom:536.655000px;}
.y90{bottom:538.095000px;}
.y52{bottom:542.595000px;}
.y6d{bottom:547.095000px;}
.y63{bottom:551.235000px;}
.y41{bottom:551.595000px;}
.y1f{bottom:556.095000px;}
.y38{bottom:560.595000px;}
.ye{bottom:561.495000px;}
.y95{bottom:579.495000px;}
.y77{bottom:582.555000px;}
.y51{bottom:583.995000px;}
.y84{bottom:588.495000px;}
.y40{bottom:592.995000px;}
.y1e{bottom:597.525000px;}
.y37{bottom:602.025000px;}
.yd{bottom:602.925000px;}
.y9a{bottom:620.925000px;}
.y76{bottom:623.985000px;}
.y50{bottom:625.425000px;}
.y83{bottom:629.925000px;}
.y3f{bottom:634.425000px;}
.y1d{bottom:638.925000px;}
.y36{bottom:643.425000px;}
.yc{bottom:648.825000px;}
.ya0{bottom:662.325000px;}
.y75{bottom:666.465000px;}
.y4f{bottom:666.825000px;}
.y82{bottom:671.325000px;}
.y3e{bottom:675.825000px;}
.y1c{bottom:680.325000px;}
.y35{bottom:684.825000px;}
.yb{bottom:694.725000px;}
.y4e{bottom:708.225000px;}
.y87{bottom:712.725000px;}
.y3d{bottom:717.225000px;}
.y1b{bottom:721.725000px;}
.y34{bottom:726.225000px;}
.ya{bottom:736.125000px;}
.y99{bottom:749.625000px;}
.y4d{bottom:754.125000px;}
.y6c{bottom:758.625000px;}
.y1a{bottom:763.125000px;}
.y33{bottom:767.625000px;}
.y9{bottom:782.025000px;}
.y9f{bottom:791.025000px;}
.y74{bottom:795.525000px;}
.y4c{bottom:799.665000px;}
.y6b{bottom:800.025000px;}
.y71{bottom:804.165000px;}
.y19{bottom:804.525000px;}
.y32{bottom:809.025000px;}
.y8{bottom:827.925000px;}
.y73{bottom:836.925000px;}
.y6a{bottom:841.425000px;}
.y18{bottom:845.925000px;}
.y31{bottom:850.425000px;}
.y7{bottom:876.210000px;}
.y98{bottom:878.370000px;}
.y69{bottom:882.870000px;}
.y17{bottom:887.370000px;}
.y30{bottom:891.870000px;}
.y6{bottom:915.270000px;}
.y97{bottom:919.770000px;}
.y68{bottom:924.270000px;}
.y16{bottom:928.770000px;}
.y2f{bottom:933.270000px;}
.y5{bottom:963.510000px;}
.y72{bottom:965.670000px;}
.y67{bottom:969.810000px;}
.y15{bottom:970.170000px;}
.y2e{bottom:974.670000px;}
.y4{bottom:1002.570000px;}
.y96{bottom:1007.070000px;}
.y14{bottom:1011.570000px;}
.y2d{bottom:1016.070000px;}
.y3{bottom:1048.110000px;}
.y13{bottom:1052.970000px;}
.y2c{bottom:1057.470000px;}
.y2{bottom:1094.370000px;}
.y2b{bottom:1098.870000px;}
.y1{bottom:1135.800000px;}
.y12{bottom:1139.940000px;}
.y2a{bottom:1140.300000px;}
.y11{bottom:1201.983000px;}
.y10{bottom:1218.183000px;}
.yf{bottom:1234.383000px;}
.h6{height:37.494141px;}
.h4{height:47.344922px;}
.h8{height:64.546875px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h2{height:72.562500px;}
.h3{height:74.704922px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:90.783000px;}
.x1{left:127.656000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.040320pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls9{letter-spacing:7.040000pt;}
.lse{letter-spacing:17.152000pt;}
.ls10{letter-spacing:21.760000pt;}
.lsf{letter-spacing:28.800000pt;}
.ls11{letter-spacing:30.080000pt;}
.ls2{letter-spacing:752.138667pt;}
.wsa{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.679680pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-2.026667pt;}
._2{margin-left:-0.896000pt;}
._3{width:1.088000pt;}
._b{width:2.368000pt;}
._c{width:3.498667pt;}
._1{width:4.992000pt;}
._0{width:6.378667pt;}
._1f{width:7.274667pt;}
._4{width:8.192000pt;}
._5{width:9.088000pt;}
._7{width:10.112000pt;}
._6{width:11.541333pt;}
._9{width:12.565333pt;}
._a{width:13.632000pt;}
._d{width:15.018667pt;}
._e{width:17.152000pt;}
._15{width:18.069333pt;}
._f{width:18.986667pt;}
._11{width:20.352000pt;}
._10{width:21.909333pt;}
._16{width:23.680000pt;}
._1b{width:25.056000pt;}
._14{width:26.048000pt;}
._12{width:27.264000pt;}
._13{width:28.202667pt;}
._1c{width:29.098667pt;}
._1d{width:30.154667pt;}
._1e{width:31.242667pt;}
._2a{width:32.341333pt;}
._17{width:33.408000pt;}
._18{width:34.496000pt;}
._27{width:36.672000pt;}
._26{width:37.824000pt;}
._19{width:39.360000pt;}
._1a{width:40.266667pt;}
._2f{width:51.669333pt;}
._23{width:53.162667pt;}
._22{width:54.122667pt;}
._2b{width:62.528000pt;}
._24{width:63.616000pt;}
._25{width:64.746667pt;}
._28{width:80.832000pt;}
._29{width:82.314667pt;}
._2c{width:95.936000pt;}
._2d{width:96.960000pt;}
._2e{width:97.909333pt;}
._20{width:118.485333pt;}
._21{width:159.114667pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:98.432000pt;}
.ya4{bottom:102.432000pt;}
.y5c{bottom:106.432000pt;}
.y62{bottom:110.432000pt;}
.y29{bottom:114.432000pt;}
.y4b{bottom:118.432000pt;}
.y70{bottom:122.432000pt;}
.y81{bottom:133.786667pt;}
.y93{bottom:135.226667pt;}
.ya3{bottom:139.226667pt;}
.y5b{bottom:143.226667pt;}
.y61{bottom:147.226667pt;}
.y28{bottom:151.226667pt;}
.y4a{bottom:155.226667pt;}
.y6f{bottom:159.226667pt;}
.y80{bottom:170.586667pt;}
.y9e{bottom:172.026667pt;}
.y8f{bottom:176.026667pt;}
.y5a{bottom:180.026667pt;}
.y60{bottom:188.026667pt;}
.y27{bottom:191.706667pt;}
.y49{bottom:192.026667pt;}
.y6e{bottom:196.026667pt;}
.y7f{bottom:211.386667pt;}
.y8e{bottom:212.826667pt;}
.ya2{bottom:216.826667pt;}
.y59{bottom:220.826667pt;}
.y5f{bottom:224.826667pt;}
.y48{bottom:228.826667pt;}
.y26{bottom:232.826667pt;}
.y7e{bottom:248.186667pt;}
.y92{bottom:249.626667pt;}
.y8d{bottom:253.626667pt;}
.y86{bottom:257.626667pt;}
.y58{bottom:261.626667pt;}
.y47{bottom:265.626667pt;}
.y25{bottom:269.626667pt;}
.y3c{bottom:273.626667pt;}
.y7d{bottom:284.986667pt;}
.y9d{bottom:286.426667pt;}
.y8c{bottom:290.426667pt;}
.y85{bottom:294.466667pt;}
.y57{bottom:298.466667pt;}
.y5e{bottom:302.466667pt;}
.y46{bottom:306.466667pt;}
.y24{bottom:310.466667pt;}
.y7c{bottom:325.826667pt;}
.y8b{bottom:327.266667pt;}
.ya1{bottom:331.266667pt;}
.y56{bottom:335.266667pt;}
.y5d{bottom:339.266667pt;}
.y45{bottom:343.266667pt;}
.y23{bottom:347.266667pt;}
.y7b{bottom:362.626667pt;}
.y91{bottom:363.906667pt;}
.y8a{bottom:367.906667pt;}
.y55{bottom:371.906667pt;}
.y66{bottom:375.906667pt;}
.y44{bottom:379.906667pt;}
.y22{bottom:383.906667pt;}
.y3b{bottom:387.906667pt;}
.y9c{bottom:400.706667pt;}
.y7a{bottom:403.426667pt;}
.y89{bottom:404.706667pt;}
.y54{bottom:408.706667pt;}
.y65{bottom:412.706667pt;}
.y43{bottom:416.706667pt;}
.y21{bottom:420.706667pt;}
.y3a{bottom:424.706667pt;}
.y9b{bottom:437.506667pt;}
.y79{bottom:440.226667pt;}
.y88{bottom:441.506667pt;}
.y53{bottom:445.506667pt;}
.y64{bottom:449.506667pt;}
.y42{bottom:453.506667pt;}
.y20{bottom:457.506667pt;}
.y39{bottom:461.506667pt;}
.y78{bottom:477.026667pt;}
.y90{bottom:478.306667pt;}
.y52{bottom:482.306667pt;}
.y6d{bottom:486.306667pt;}
.y63{bottom:489.986667pt;}
.y41{bottom:490.306667pt;}
.y1f{bottom:494.306667pt;}
.y38{bottom:498.306667pt;}
.ye{bottom:499.106667pt;}
.y95{bottom:515.106667pt;}
.y77{bottom:517.826667pt;}
.y51{bottom:519.106667pt;}
.y84{bottom:523.106667pt;}
.y40{bottom:527.106667pt;}
.y1e{bottom:531.133333pt;}
.y37{bottom:535.133333pt;}
.yd{bottom:535.933333pt;}
.y9a{bottom:551.933333pt;}
.y76{bottom:554.653333pt;}
.y50{bottom:555.933333pt;}
.y83{bottom:559.933333pt;}
.y3f{bottom:563.933333pt;}
.y1d{bottom:567.933333pt;}
.y36{bottom:571.933333pt;}
.yc{bottom:576.733333pt;}
.ya0{bottom:588.733333pt;}
.y75{bottom:592.413333pt;}
.y4f{bottom:592.733333pt;}
.y82{bottom:596.733333pt;}
.y3e{bottom:600.733333pt;}
.y1c{bottom:604.733333pt;}
.y35{bottom:608.733333pt;}
.yb{bottom:617.533333pt;}
.y4e{bottom:629.533333pt;}
.y87{bottom:633.533333pt;}
.y3d{bottom:637.533333pt;}
.y1b{bottom:641.533333pt;}
.y34{bottom:645.533333pt;}
.ya{bottom:654.333333pt;}
.y99{bottom:666.333333pt;}
.y4d{bottom:670.333333pt;}
.y6c{bottom:674.333333pt;}
.y1a{bottom:678.333333pt;}
.y33{bottom:682.333333pt;}
.y9{bottom:695.133333pt;}
.y9f{bottom:703.133333pt;}
.y74{bottom:707.133333pt;}
.y4c{bottom:710.813333pt;}
.y6b{bottom:711.133333pt;}
.y71{bottom:714.813333pt;}
.y19{bottom:715.133333pt;}
.y32{bottom:719.133333pt;}
.y8{bottom:735.933333pt;}
.y73{bottom:743.933333pt;}
.y6a{bottom:747.933333pt;}
.y18{bottom:751.933333pt;}
.y31{bottom:755.933333pt;}
.y7{bottom:778.853333pt;}
.y98{bottom:780.773333pt;}
.y69{bottom:784.773333pt;}
.y17{bottom:788.773333pt;}
.y30{bottom:792.773333pt;}
.y6{bottom:813.573333pt;}
.y97{bottom:817.573333pt;}
.y68{bottom:821.573333pt;}
.y16{bottom:825.573333pt;}
.y2f{bottom:829.573333pt;}
.y5{bottom:856.453333pt;}
.y72{bottom:858.373333pt;}
.y67{bottom:862.053333pt;}
.y15{bottom:862.373333pt;}
.y2e{bottom:866.373333pt;}
.y4{bottom:891.173333pt;}
.y96{bottom:895.173333pt;}
.y14{bottom:899.173333pt;}
.y2d{bottom:903.173333pt;}
.y3{bottom:931.653333pt;}
.y13{bottom:935.973333pt;}
.y2c{bottom:939.973333pt;}
.y2{bottom:972.773333pt;}
.y2b{bottom:976.773333pt;}
.y1{bottom:1009.600000pt;}
.y12{bottom:1013.280000pt;}
.y2a{bottom:1013.600000pt;}
.y11{bottom:1068.429333pt;}
.y10{bottom:1082.829333pt;}
.yf{bottom:1097.229333pt;}
.h6{height:33.328125pt;}
.h4{height:42.084375pt;}
.h8{height:57.375000pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h2{height:64.500000pt;}
.h3{height:66.404375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:80.696000pt;}
.x1{left:113.472000pt;}
}




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