
    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_c3ca507e7a4663b77cd37a03.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_655513166928a8661aaea1df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2e4086bb2842b12146a5c6a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_0fff3c1c5d528d66f37490d5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1f4a6d51b030f75f4274186.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_d6d8b6e26a350a40665adaa7.woff2')format("woff");}.ff6{font-family:ff6;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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls7{letter-spacing:-1.584000px;}
.lsd{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.152000px;}
.lsc{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.501000px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.015840px;}
.ls3{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.936000px;}
.ls6{letter-spacing:1.296000px;}
.ls11{letter-spacing:1.584000px;}
.ls17{letter-spacing:1.728000px;}
.ls9{letter-spacing:2.088000px;}
.ls13{letter-spacing:2.160000px;}
.ls1a{letter-spacing:4.464000px;}
.lsf{letter-spacing:5.904000px;}
.ls10{letter-spacing:8.760000px;}
.ls2{letter-spacing:10.224000px;}
.ls16{letter-spacing:14.544000px;}
.ls20{letter-spacing:15.984000px;}
.ls1e{letter-spacing:18.469440px;}
.ls18{letter-spacing:18.984000px;}
.ls1f{letter-spacing:22.969440px;}
.ls1c{letter-spacing:23.160000px;}
.ls19{letter-spacing:26.064000px;}
.ls14{letter-spacing:28.944000px;}
.ls21{letter-spacing:29.989440px;}
.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;}
}
.ws8{word-spacing:-22.104000px;}
.ws5{word-spacing:-21.312000px;}
.ws7{word-spacing:-20.952000px;}
.wsf{word-spacing:-20.664000px;}
.ws11{word-spacing:-20.520000px;}
.ws0{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.232000px;}
.ws4{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.872000px;}
.wse{word-spacing:-19.512000px;}
.ws10{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.432000px;}
.wsb{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.210560px;}
.wsc{word-spacing:-12.709560px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-19.140000px;}
._1e{margin-left:-17.676000px;}
._1f{margin-left:-16.368000px;}
._19{margin-left:-15.156000px;}
._20{margin-left:-14.136000px;}
._1c{margin-left:-13.080000px;}
._1a{margin-left:-11.940000px;}
._1b{margin-left:-9.924000px;}
._1d{margin-left:-6.852000px;}
._22{margin-left:-5.124000px;}
._6{margin-left:-2.880000px;}
._0{margin-left:-1.584000px;}
._1{width:1.008000px;}
._2{width:2.136000px;}
._b{width:3.708000px;}
._d{width:5.112000px;}
._f{width:6.264000px;}
._e{width:7.620000px;}
._7{width:9.408000px;}
._5{width:11.016000px;}
._c{width:12.528000px;}
._17{width:13.824000px;}
._3{width:15.408000px;}
._4{width:16.860000px;}
._14{width:18.288000px;}
._15{width:21.888000px;}
._31{width:22.896000px;}
._16{width:23.904000px;}
._18{width:25.788000px;}
._23{width:27.180000px;}
._9{width:28.356000px;}
._8{width:29.676000px;}
._10{width:30.780000px;}
._a{width:32.652000px;}
._2e{width:34.464000px;}
._2c{width:35.556000px;}
._26{width:37.248000px;}
._25{width:38.352000px;}
._24{width:39.840000px;}
._37{width:40.848000px;}
._27{width:42.084000px;}
._29{width:44.136000px;}
._28{width:45.216000px;}
._2d{width:46.296000px;}
._11{width:47.376000px;}
._12{width:48.960000px;}
._13{width:50.256000px;}
._3a{width:51.564000px;}
._34{width:53.928000px;}
._2b{width:54.972000px;}
._2a{width:56.652000px;}
._2f{width:58.476000px;}
._33{width:64.584000px;}
._32{width:65.664000px;}
._30{width:67.056000px;}
._38{width:68.220000px;}
._36{width:92.460000px;}
._35{width:131.196000px;}
._39{width:1060.416000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:77.796000px;}
.y4f{bottom:146.232000px;}
.y2d{bottom:146.592000px;}
.y67{bottom:166.755000px;}
.y16{bottom:173.595000px;}
.y4e{bottom:187.635000px;}
.y2c{bottom:187.995000px;}
.y6b{bottom:195.915000px;}
.y66{bottom:208.155000px;}
.y15{bottom:214.995000px;}
.y4d{bottom:229.035000px;}
.y2b{bottom:229.395000px;}
.y65{bottom:249.555000px;}
.y6a{bottom:250.995000px;}
.y14{bottom:256.395000px;}
.y3a{bottom:259.275000px;}
.y4c{bottom:270.435000px;}
.y2a{bottom:270.795000px;}
.y64{bottom:290.985000px;}
.y13{bottom:297.825000px;}
.y39{bottom:300.705000px;}
.y69{bottom:306.465000px;}
.y4b{bottom:311.865000px;}
.y29{bottom:312.225000px;}
.y63{bottom:332.385000px;}
.y6d{bottom:333.825000px;}
.y12{bottom:339.225000px;}
.y38{bottom:342.105000px;}
.y4a{bottom:353.265000px;}
.y28{bottom:353.625000px;}
.y62{bottom:373.785000px;}
.y11{bottom:380.625000px;}
.y37{bottom:383.505000px;}
.y6c{bottom:389.265000px;}
.y49{bottom:394.665000px;}
.y27{bottom:395.025000px;}
.y61{bottom:415.230000px;}
.y10{bottom:422.070000px;}
.y36{bottom:432.510000px;}
.y48{bottom:436.110000px;}
.y26{bottom:436.470000px;}
.y60{bottom:456.630000px;}
.yf{bottom:472.110000px;}
.y47{bottom:477.510000px;}
.y25{bottom:477.870000px;}
.y35{bottom:481.470000px;}
.y5f{bottom:498.030000px;}
.ye{bottom:518.910000px;}
.y24{bottom:519.270000px;}
.y34{bottom:530.070000px;}
.y5e{bottom:539.460000px;}
.yd{bottom:560.340000px;}
.y23{bottom:560.700000px;}
.y33{bottom:579.060000px;}
.y5d{bottom:580.860000px;}
.y22{bottom:601.740000px;}
.y2e{bottom:602.100000px;}
.yc{bottom:610.020000px;}
.y5c{bottom:622.260000px;}
.y32{bottom:628.020000px;}
.y21{bottom:643.140000px;}
.y46{bottom:643.500000px;}
.y5b{bottom:663.660000px;}
.yb{bottom:665.100000px;}
.y31{bottom:669.450000px;}
.y20{bottom:684.570000px;}
.y45{bottom:684.930000px;}
.y5a{bottom:705.090000px;}
.y30{bottom:710.850000px;}
.ya{bottom:720.570000px;}
.y1f{bottom:725.970000px;}
.y44{bottom:726.330000px;}
.y59{bottom:746.490000px;}
.y2f{bottom:759.810000px;}
.y9{bottom:767.370000px;}
.y43{bottom:767.730000px;}
.y58{bottom:787.890000px;}
.y8{bottom:808.815000px;}
.y42{bottom:809.175000px;}
.y57{bottom:829.335000px;}
.y7{bottom:849.855000px;}
.y1e{bottom:850.215000px;}
.y41{bottom:850.575000px;}
.y56{bottom:870.735000px;}
.y6{bottom:891.255000px;}
.y1d{bottom:891.615000px;}
.y40{bottom:891.975000px;}
.y55{bottom:912.135000px;}
.y1c{bottom:933.045000px;}
.y3f{bottom:933.405000px;}
.y5{bottom:941.325000px;}
.y54{bottom:953.565000px;}
.y1b{bottom:974.445000px;}
.y3e{bottom:974.805000px;}
.y53{bottom:994.965000px;}
.y4{bottom:996.405000px;}
.y1a{bottom:1015.845000px;}
.y3d{bottom:1016.205000px;}
.y52{bottom:1036.365000px;}
.y3{bottom:1046.085000px;}
.y19{bottom:1057.245000px;}
.y3c{bottom:1057.605000px;}
.y51{bottom:1077.810000px;}
.y18{bottom:1098.690000px;}
.y3b{bottom:1099.050000px;}
.y68{bottom:1119.210000px;}
.y50{bottom:1140.090000px;}
.y17{bottom:1140.450000px;}
.y1{bottom:1193.010000px;}
.h2{height:75.093750px;}
.h4{height:82.681875px;}
.h5{height:82.693875px;}
.h7{height:82.801875px;}
.h6{height:82.861875px;}
.h3{height:100.625625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xe{left:106.236000px;}
.xc{left:127.476000px;}
.xa{left:148.752000px;}
.x13{left:159.555000px;}
.x10{left:166.755000px;}
.x5{left:222.555000px;}
.x6{left:249.585000px;}
.xb{left:327.750000px;}
.x8{left:331.350000px;}
.x7{left:366.270000px;}
.x9{left:419.220000px;}
.x14{left:446.580000px;}
.x4{left:467.820000px;}
.x3{left:636.735000px;}
.x12{left:766.770000px;}
.xf{left:775.050000px;}
.x11{left:776.850000px;}
.xd{left:782.970000px;}
.x2{left:786.930000px;}
.x1{left:789.450000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls7{letter-spacing:-1.408000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.024000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.445333pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.014080pt;}
.ls3{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.832000pt;}
.ls6{letter-spacing:1.152000pt;}
.ls11{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.536000pt;}
.ls9{letter-spacing:1.856000pt;}
.ls13{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:3.968000pt;}
.lsf{letter-spacing:5.248000pt;}
.ls10{letter-spacing:7.786667pt;}
.ls2{letter-spacing:9.088000pt;}
.ls16{letter-spacing:12.928000pt;}
.ls20{letter-spacing:14.208000pt;}
.ls1e{letter-spacing:16.417280pt;}
.ls18{letter-spacing:16.874667pt;}
.ls1f{letter-spacing:20.417280pt;}
.ls1c{letter-spacing:20.586667pt;}
.ls19{letter-spacing:23.168000pt;}
.ls14{letter-spacing:25.728000pt;}
.ls21{letter-spacing:26.657280pt;}
.ws8{word-spacing:-19.648000pt;}
.ws5{word-spacing:-18.944000pt;}
.ws7{word-spacing:-18.624000pt;}
.wsf{word-spacing:-18.368000pt;}
.ws11{word-spacing:-18.240000pt;}
.ws0{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.984000pt;}
.ws4{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.344000pt;}
.ws10{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.384000pt;}
.wsb{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.742720pt;}
.wsc{word-spacing:-11.297387pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-17.013333pt;}
._1e{margin-left:-15.712000pt;}
._1f{margin-left:-14.549333pt;}
._19{margin-left:-13.472000pt;}
._20{margin-left:-12.565333pt;}
._1c{margin-left:-11.626667pt;}
._1a{margin-left:-10.613333pt;}
._1b{margin-left:-8.821333pt;}
._1d{margin-left:-6.090667pt;}
._22{margin-left:-4.554667pt;}
._6{margin-left:-2.560000pt;}
._0{margin-left:-1.408000pt;}
._1{width:0.896000pt;}
._2{width:1.898667pt;}
._b{width:3.296000pt;}
._d{width:4.544000pt;}
._f{width:5.568000pt;}
._e{width:6.773333pt;}
._7{width:8.362667pt;}
._5{width:9.792000pt;}
._c{width:11.136000pt;}
._17{width:12.288000pt;}
._3{width:13.696000pt;}
._4{width:14.986667pt;}
._14{width:16.256000pt;}
._15{width:19.456000pt;}
._31{width:20.352000pt;}
._16{width:21.248000pt;}
._18{width:22.922667pt;}
._23{width:24.160000pt;}
._9{width:25.205333pt;}
._8{width:26.378667pt;}
._10{width:27.360000pt;}
._a{width:29.024000pt;}
._2e{width:30.634667pt;}
._2c{width:31.605333pt;}
._26{width:33.109333pt;}
._25{width:34.090667pt;}
._24{width:35.413333pt;}
._37{width:36.309333pt;}
._27{width:37.408000pt;}
._29{width:39.232000pt;}
._28{width:40.192000pt;}
._2d{width:41.152000pt;}
._11{width:42.112000pt;}
._12{width:43.520000pt;}
._13{width:44.672000pt;}
._3a{width:45.834667pt;}
._34{width:47.936000pt;}
._2b{width:48.864000pt;}
._2a{width:50.357333pt;}
._2f{width:51.978667pt;}
._33{width:57.408000pt;}
._32{width:58.368000pt;}
._30{width:59.605333pt;}
._38{width:60.640000pt;}
._36{width:82.186667pt;}
._35{width:116.618667pt;}
._39{width:942.592000pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:69.152000pt;}
.y4f{bottom:129.984000pt;}
.y2d{bottom:130.304000pt;}
.y67{bottom:148.226667pt;}
.y16{bottom:154.306667pt;}
.y4e{bottom:166.786667pt;}
.y2c{bottom:167.106667pt;}
.y6b{bottom:174.146667pt;}
.y66{bottom:185.026667pt;}
.y15{bottom:191.106667pt;}
.y4d{bottom:203.586667pt;}
.y2b{bottom:203.906667pt;}
.y65{bottom:221.826667pt;}
.y6a{bottom:223.106667pt;}
.y14{bottom:227.906667pt;}
.y3a{bottom:230.466667pt;}
.y4c{bottom:240.386667pt;}
.y2a{bottom:240.706667pt;}
.y64{bottom:258.653333pt;}
.y13{bottom:264.733333pt;}
.y39{bottom:267.293333pt;}
.y69{bottom:272.413333pt;}
.y4b{bottom:277.213333pt;}
.y29{bottom:277.533333pt;}
.y63{bottom:295.453333pt;}
.y6d{bottom:296.733333pt;}
.y12{bottom:301.533333pt;}
.y38{bottom:304.093333pt;}
.y4a{bottom:314.013333pt;}
.y28{bottom:314.333333pt;}
.y62{bottom:332.253333pt;}
.y11{bottom:338.333333pt;}
.y37{bottom:340.893333pt;}
.y6c{bottom:346.013333pt;}
.y49{bottom:350.813333pt;}
.y27{bottom:351.133333pt;}
.y61{bottom:369.093333pt;}
.y10{bottom:375.173333pt;}
.y36{bottom:384.453333pt;}
.y48{bottom:387.653333pt;}
.y26{bottom:387.973333pt;}
.y60{bottom:405.893333pt;}
.yf{bottom:419.653333pt;}
.y47{bottom:424.453333pt;}
.y25{bottom:424.773333pt;}
.y35{bottom:427.973333pt;}
.y5f{bottom:442.693333pt;}
.ye{bottom:461.253333pt;}
.y24{bottom:461.573333pt;}
.y34{bottom:471.173333pt;}
.y5e{bottom:479.520000pt;}
.yd{bottom:498.080000pt;}
.y23{bottom:498.400000pt;}
.y33{bottom:514.720000pt;}
.y5d{bottom:516.320000pt;}
.y22{bottom:534.880000pt;}
.y2e{bottom:535.200000pt;}
.yc{bottom:542.240000pt;}
.y5c{bottom:553.120000pt;}
.y32{bottom:558.240000pt;}
.y21{bottom:571.680000pt;}
.y46{bottom:572.000000pt;}
.y5b{bottom:589.920000pt;}
.yb{bottom:591.200000pt;}
.y31{bottom:595.066667pt;}
.y20{bottom:608.506667pt;}
.y45{bottom:608.826667pt;}
.y5a{bottom:626.746667pt;}
.y30{bottom:631.866667pt;}
.ya{bottom:640.506667pt;}
.y1f{bottom:645.306667pt;}
.y44{bottom:645.626667pt;}
.y59{bottom:663.546667pt;}
.y2f{bottom:675.386667pt;}
.y9{bottom:682.106667pt;}
.y43{bottom:682.426667pt;}
.y58{bottom:700.346667pt;}
.y8{bottom:718.946667pt;}
.y42{bottom:719.266667pt;}
.y57{bottom:737.186667pt;}
.y7{bottom:755.426667pt;}
.y1e{bottom:755.746667pt;}
.y41{bottom:756.066667pt;}
.y56{bottom:773.986667pt;}
.y6{bottom:792.226667pt;}
.y1d{bottom:792.546667pt;}
.y40{bottom:792.866667pt;}
.y55{bottom:810.786667pt;}
.y1c{bottom:829.373333pt;}
.y3f{bottom:829.693333pt;}
.y5{bottom:836.733333pt;}
.y54{bottom:847.613333pt;}
.y1b{bottom:866.173333pt;}
.y3e{bottom:866.493333pt;}
.y53{bottom:884.413333pt;}
.y4{bottom:885.693333pt;}
.y1a{bottom:902.973333pt;}
.y3d{bottom:903.293333pt;}
.y52{bottom:921.213333pt;}
.y3{bottom:929.853333pt;}
.y19{bottom:939.773333pt;}
.y3c{bottom:940.093333pt;}
.y51{bottom:958.053333pt;}
.y18{bottom:976.613333pt;}
.y3b{bottom:976.933333pt;}
.y68{bottom:994.853333pt;}
.y50{bottom:1013.413333pt;}
.y17{bottom:1013.733333pt;}
.y1{bottom:1060.453333pt;}
.h2{height:66.750000pt;}
.h4{height:73.495000pt;}
.h5{height:73.505667pt;}
.h7{height:73.601667pt;}
.h6{height:73.655000pt;}
.h3{height:89.445000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xe{left:94.432000pt;}
.xc{left:113.312000pt;}
.xa{left:132.224000pt;}
.x13{left:141.826667pt;}
.x10{left:148.226667pt;}
.x5{left:197.826667pt;}
.x6{left:221.853333pt;}
.xb{left:291.333333pt;}
.x8{left:294.533333pt;}
.x7{left:325.573333pt;}
.x9{left:372.640000pt;}
.x14{left:396.960000pt;}
.x4{left:415.840000pt;}
.x3{left:565.986667pt;}
.x12{left:681.573333pt;}
.xf{left:688.933333pt;}
.x11{left:690.533333pt;}
.xd{left:695.973333pt;}
.x2{left:699.493333pt;}
.x1{left:701.733333pt;}
}




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