
    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_5e6b160c48667e8d4487f384.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_22762b10d9d62d53e46a8c7d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_83bf84dcb64ea12a2a451a00.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_02d0ef41c527648aa03f9902.woff')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_2d45ab8b25b70b2fe3bdee9a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.816000;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_e188eba643701f868edb1ede.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_618b62a96e51e63c8da34c6a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_2db73e7595903e49a2b9b91d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v1{vertical-align:183.600000px;}
.ls19{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.792000px;}
.ls4{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.688000px;}
.ls0{letter-spacing:8.460000px;}
.ls17{letter-spacing:8.784000px;}
.ls16{letter-spacing:9.144000px;}
.ls11{letter-spacing:9.504000px;}
.ls15{letter-spacing:9.720000px;}
.ls1{letter-spacing:10.740000px;}
.ls2{letter-spacing:10.759184px;}
.ls1c{letter-spacing:11.088000px;}
.lsc{letter-spacing:537.960000px;}
.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;}
}
.ws1{word-spacing:-80.880000px;}
.wsf{word-spacing:-49.248000px;}
.wsc{word-spacing:-49.032000px;}
.wsd{word-spacing:-48.744000px;}
.ws2{word-spacing:-48.528000px;}
.wse{word-spacing:-48.384000px;}
.ws5{word-spacing:-48.168000px;}
.ws3{word-spacing:-48.096000px;}
.ws4{word-spacing:-48.024000px;}
.ws8{word-spacing:-40.440000px;}
.wsa{word-spacing:-20.232000px;}
.wsb{word-spacing:-19.872000px;}
.ws9{word-spacing:-16.860000px;}
.ws0{word-spacing:-8.520000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:146.100000px;}
._0{margin-left:-948.900000px;}
._e{margin-left:-14.256000px;}
._f{margin-left:-10.500000px;}
._10{margin-left:-8.700000px;}
._7{margin-left:-7.080000px;}
._1{margin-left:-5.940000px;}
._9{margin-left:-4.032000px;}
._6{margin-left:-2.820000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._b{width:3.000000px;}
._4{width:4.200000px;}
._a{width:5.256000px;}
._8{width:6.540000px;}
._5{width:8.220000px;}
._c{width:9.936000px;}
._d{width:10.944000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:430.504200px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6e{bottom:117.078000px;}
.y92{bottom:118.110000px;}
.y20{bottom:118.314600px;}
.y48{bottom:119.028000px;}
.y6d{bottom:138.984000px;}
.y47{bottom:140.322000px;}
.y91{bottom:141.204000px;}
.y1f{bottom:141.264600px;}
.y6c{bottom:160.890000px;}
.y46{bottom:161.616000px;}
.y1e{bottom:164.214600px;}
.y90{bottom:164.298000px;}
.y6b{bottom:182.796000px;}
.y45{bottom:182.910000px;}
.y1d{bottom:187.164600px;}
.y8f{bottom:187.392000px;}
.y44{bottom:204.204000px;}
.y6a{bottom:204.702000px;}
.y1c{bottom:210.114600px;}
.y8e{bottom:210.486000px;}
.yb1{bottom:214.500000px;}
.y43{bottom:225.498000px;}
.y69{bottom:226.608000px;}
.y1b{bottom:233.064600px;}
.yb0{bottom:233.250000px;}
.y8d{bottom:233.580000px;}
.y42{bottom:246.792000px;}
.y68{bottom:248.514000px;}
.yaf{bottom:252.000000px;}
.y1a{bottom:256.014600px;}
.y8c{bottom:256.674000px;}
.y41{bottom:268.086000px;}
.y67{bottom:270.420000px;}
.yae{bottom:270.750000px;}
.y19{bottom:278.964600px;}
.y8b{bottom:279.768000px;}
.y40{bottom:289.380000px;}
.y66{bottom:292.326000px;}
.yad{bottom:300.750000px;}
.y18{bottom:301.914600px;}
.y8a{bottom:302.862000px;}
.y3f{bottom:310.674000px;}
.y65{bottom:314.232000px;}
.y17{bottom:324.864600px;}
.y89{bottom:325.956000px;}
.y3e{bottom:331.968000px;}
.y64{bottom:336.138000px;}
.yac{bottom:342.000000px;}
.y16{bottom:347.814600px;}
.y88{bottom:349.050000px;}
.y3d{bottom:353.262000px;}
.y63{bottom:358.044000px;}
.yab{bottom:364.500000px;}
.y15{bottom:370.764600px;}
.y87{bottom:372.144000px;}
.y3c{bottom:374.556000px;}
.y62{bottom:379.950000px;}
.yaa{bottom:387.000000px;}
.y14{bottom:393.714600px;}
.y86{bottom:395.238000px;}
.y3b{bottom:395.850000px;}
.y61{bottom:401.856000px;}
.ya9{bottom:409.500000px;}
.y13{bottom:416.664600px;}
.y3a{bottom:417.144000px;}
.y85{bottom:418.332000px;}
.y60{bottom:423.762000px;}
.ya8{bottom:432.000000px;}
.y39{bottom:438.438000px;}
.y12{bottom:439.614600px;}
.y84{bottom:441.426000px;}
.y5f{bottom:445.668000px;}
.ya7{bottom:454.500000px;}
.y38{bottom:459.732000px;}
.y11{bottom:462.564600px;}
.y83{bottom:464.520000px;}
.y5e{bottom:467.574000px;}
.ya6{bottom:477.000000px;}
.y37{bottom:481.026000px;}
.y10{bottom:485.514600px;}
.y82{bottom:487.614000px;}
.y5d{bottom:489.480000px;}
.ya5{bottom:499.500000px;}
.y36{bottom:502.320000px;}
.yf{bottom:508.464600px;}
.y81{bottom:510.708000px;}
.y5c{bottom:511.386000px;}
.ya4{bottom:522.000000px;}
.y35{bottom:523.614000px;}
.ye{bottom:531.414600px;}
.y5b{bottom:533.292000px;}
.y80{bottom:533.802000px;}
.ya3{bottom:544.500000px;}
.y34{bottom:544.908000px;}
.yd{bottom:554.364600px;}
.y5a{bottom:555.198000px;}
.y7f{bottom:556.896000px;}
.y33{bottom:566.202000px;}
.ya2{bottom:567.000000px;}
.y59{bottom:577.104000px;}
.yc{bottom:577.314600px;}
.y7e{bottom:579.990000px;}
.y32{bottom:587.496000px;}
.ya1{bottom:589.500000px;}
.y58{bottom:599.010000px;}
.yb{bottom:600.264600px;}
.y7d{bottom:603.084000px;}
.y31{bottom:608.790000px;}
.ya0{bottom:612.000000px;}
.y57{bottom:620.916000px;}
.ya{bottom:623.214600px;}
.y7c{bottom:626.178000px;}
.y30{bottom:630.084000px;}
.y9f{bottom:634.500000px;}
.y56{bottom:642.822000px;}
.y9{bottom:646.164600px;}
.y7b{bottom:649.272000px;}
.y2f{bottom:651.378000px;}
.y9e{bottom:657.000000px;}
.y55{bottom:664.728000px;}
.y7{bottom:669.114600px;}
.y7a{bottom:672.366000px;}
.y2e{bottom:672.672000px;}
.y9d{bottom:679.500000px;}
.y54{bottom:686.634000px;}
.y8{bottom:692.064600px;}
.y2d{bottom:693.966000px;}
.y79{bottom:695.460000px;}
.y9c{bottom:702.000000px;}
.y53{bottom:708.540000px;}
.y2c{bottom:715.260000px;}
.y78{bottom:718.554000px;}
.y9b{bottom:724.500000px;}
.y52{bottom:730.446000px;}
.y2b{bottom:736.554000px;}
.y77{bottom:741.648000px;}
.y9a{bottom:747.000000px;}
.y51{bottom:752.352000px;}
.y2a{bottom:757.848000px;}
.y76{bottom:764.742000px;}
.y99{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.y50{bottom:774.258000px;}
.y29{bottom:779.142000px;}
.y75{bottom:787.836000px;}
.y98{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.y4f{bottom:796.164000px;}
.y28{bottom:800.436000px;}
.y74{bottom:810.930000px;}
.y97{bottom:814.500000px;}
.y4e{bottom:818.070000px;}
.y27{bottom:821.730000px;}
.y73{bottom:834.024000px;}
.y96{bottom:837.000000px;}
.y4d{bottom:839.976000px;}
.y26{bottom:843.024000px;}
.y72{bottom:857.118000px;}
.y4{bottom:859.500000px;}
.y4c{bottom:861.882000px;}
.y25{bottom:864.318000px;}
.y71{bottom:880.212000px;}
.y95{bottom:882.000000px;}
.y4b{bottom:883.788000px;}
.y24{bottom:885.612000px;}
.y3{bottom:889.500000px;}
.y70{bottom:903.306000px;}
.y94{bottom:904.500000px;}
.y4a{bottom:905.694000px;}
.y23{bottom:906.906000px;}
.y2{bottom:919.500000px;}
.y6f{bottom:926.400000px;}
.y93{bottom:927.000000px;}
.y49{bottom:927.600000px;}
.y22{bottom:928.200000px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h6{height:62.947266px;}
.h2{height:101.894531px;}
.h5{height:347.847394px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x7{left:82.381950px;}
.x2{left:112.500000px;}
.x4{left:127.402800px;}
.x6{left:135.000000px;}
.x3{left:154.042800px;}
.x8{left:180.531450px;}
.x1{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v1{vertical-align:163.200000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls4{letter-spacing:3.840000pt;}
.lsf{letter-spacing:5.056000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls17{letter-spacing:7.808000pt;}
.ls16{letter-spacing:8.128000pt;}
.ls11{letter-spacing:8.448000pt;}
.ls15{letter-spacing:8.640000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls2{letter-spacing:9.563719pt;}
.ls1c{letter-spacing:9.856000pt;}
.lsc{letter-spacing:478.186667pt;}
.ws1{word-spacing:-71.893333pt;}
.wsf{word-spacing:-43.776000pt;}
.wsc{word-spacing:-43.584000pt;}
.wsd{word-spacing:-43.328000pt;}
.ws2{word-spacing:-43.136000pt;}
.wse{word-spacing:-43.008000pt;}
.ws5{word-spacing:-42.816000pt;}
.ws3{word-spacing:-42.752000pt;}
.ws4{word-spacing:-42.688000pt;}
.ws8{word-spacing:-35.946667pt;}
.wsa{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.664000pt;}
.ws9{word-spacing:-14.986667pt;}
.ws0{word-spacing:-7.573333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:129.866667pt;}
._0{margin-left:-843.466667pt;}
._e{margin-left:-12.672000pt;}
._f{margin-left:-9.333333pt;}
._10{margin-left:-7.733333pt;}
._7{margin-left:-6.293333pt;}
._1{margin-left:-5.280000pt;}
._9{margin-left:-3.584000pt;}
._6{margin-left:-2.506667pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._b{width:2.666667pt;}
._4{width:3.733333pt;}
._a{width:4.672000pt;}
._8{width:5.813333pt;}
._5{width:7.306667pt;}
._c{width:8.832000pt;}
._d{width:9.728000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:382.670400pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6e{bottom:104.069333pt;}
.y92{bottom:104.986667pt;}
.y20{bottom:105.168533pt;}
.y48{bottom:105.802667pt;}
.y6d{bottom:123.541333pt;}
.y47{bottom:124.730667pt;}
.y91{bottom:125.514667pt;}
.y1f{bottom:125.568533pt;}
.y6c{bottom:143.013333pt;}
.y46{bottom:143.658667pt;}
.y1e{bottom:145.968533pt;}
.y90{bottom:146.042667pt;}
.y6b{bottom:162.485333pt;}
.y45{bottom:162.586667pt;}
.y1d{bottom:166.368533pt;}
.y8f{bottom:166.570667pt;}
.y44{bottom:181.514667pt;}
.y6a{bottom:181.957333pt;}
.y1c{bottom:186.768533pt;}
.y8e{bottom:187.098667pt;}
.yb1{bottom:190.666667pt;}
.y43{bottom:200.442667pt;}
.y69{bottom:201.429333pt;}
.y1b{bottom:207.168533pt;}
.yb0{bottom:207.333333pt;}
.y8d{bottom:207.626667pt;}
.y42{bottom:219.370667pt;}
.y68{bottom:220.901333pt;}
.yaf{bottom:224.000000pt;}
.y1a{bottom:227.568533pt;}
.y8c{bottom:228.154667pt;}
.y41{bottom:238.298667pt;}
.y67{bottom:240.373333pt;}
.yae{bottom:240.666667pt;}
.y19{bottom:247.968533pt;}
.y8b{bottom:248.682667pt;}
.y40{bottom:257.226667pt;}
.y66{bottom:259.845333pt;}
.yad{bottom:267.333333pt;}
.y18{bottom:268.368533pt;}
.y8a{bottom:269.210667pt;}
.y3f{bottom:276.154667pt;}
.y65{bottom:279.317333pt;}
.y17{bottom:288.768533pt;}
.y89{bottom:289.738667pt;}
.y3e{bottom:295.082667pt;}
.y64{bottom:298.789333pt;}
.yac{bottom:304.000000pt;}
.y16{bottom:309.168533pt;}
.y88{bottom:310.266667pt;}
.y3d{bottom:314.010667pt;}
.y63{bottom:318.261333pt;}
.yab{bottom:324.000000pt;}
.y15{bottom:329.568533pt;}
.y87{bottom:330.794667pt;}
.y3c{bottom:332.938667pt;}
.y62{bottom:337.733333pt;}
.yaa{bottom:344.000000pt;}
.y14{bottom:349.968533pt;}
.y86{bottom:351.322667pt;}
.y3b{bottom:351.866667pt;}
.y61{bottom:357.205333pt;}
.ya9{bottom:364.000000pt;}
.y13{bottom:370.368533pt;}
.y3a{bottom:370.794667pt;}
.y85{bottom:371.850667pt;}
.y60{bottom:376.677333pt;}
.ya8{bottom:384.000000pt;}
.y39{bottom:389.722667pt;}
.y12{bottom:390.768533pt;}
.y84{bottom:392.378667pt;}
.y5f{bottom:396.149333pt;}
.ya7{bottom:404.000000pt;}
.y38{bottom:408.650667pt;}
.y11{bottom:411.168533pt;}
.y83{bottom:412.906667pt;}
.y5e{bottom:415.621333pt;}
.ya6{bottom:424.000000pt;}
.y37{bottom:427.578667pt;}
.y10{bottom:431.568533pt;}
.y82{bottom:433.434667pt;}
.y5d{bottom:435.093333pt;}
.ya5{bottom:444.000000pt;}
.y36{bottom:446.506667pt;}
.yf{bottom:451.968533pt;}
.y81{bottom:453.962667pt;}
.y5c{bottom:454.565333pt;}
.ya4{bottom:464.000000pt;}
.y35{bottom:465.434667pt;}
.ye{bottom:472.368533pt;}
.y5b{bottom:474.037333pt;}
.y80{bottom:474.490667pt;}
.ya3{bottom:484.000000pt;}
.y34{bottom:484.362667pt;}
.yd{bottom:492.768533pt;}
.y5a{bottom:493.509333pt;}
.y7f{bottom:495.018667pt;}
.y33{bottom:503.290667pt;}
.ya2{bottom:504.000000pt;}
.y59{bottom:512.981333pt;}
.yc{bottom:513.168533pt;}
.y7e{bottom:515.546667pt;}
.y32{bottom:522.218667pt;}
.ya1{bottom:524.000000pt;}
.y58{bottom:532.453333pt;}
.yb{bottom:533.568533pt;}
.y7d{bottom:536.074667pt;}
.y31{bottom:541.146667pt;}
.ya0{bottom:544.000000pt;}
.y57{bottom:551.925333pt;}
.ya{bottom:553.968533pt;}
.y7c{bottom:556.602667pt;}
.y30{bottom:560.074667pt;}
.y9f{bottom:564.000000pt;}
.y56{bottom:571.397333pt;}
.y9{bottom:574.368533pt;}
.y7b{bottom:577.130667pt;}
.y2f{bottom:579.002667pt;}
.y9e{bottom:584.000000pt;}
.y55{bottom:590.869333pt;}
.y7{bottom:594.768533pt;}
.y7a{bottom:597.658667pt;}
.y2e{bottom:597.930667pt;}
.y9d{bottom:604.000000pt;}
.y54{bottom:610.341333pt;}
.y8{bottom:615.168533pt;}
.y2d{bottom:616.858667pt;}
.y79{bottom:618.186667pt;}
.y9c{bottom:624.000000pt;}
.y53{bottom:629.813333pt;}
.y2c{bottom:635.786667pt;}
.y78{bottom:638.714667pt;}
.y9b{bottom:644.000000pt;}
.y52{bottom:649.285333pt;}
.y2b{bottom:654.714667pt;}
.y77{bottom:659.242667pt;}
.y9a{bottom:664.000000pt;}
.y51{bottom:668.757333pt;}
.y2a{bottom:673.642667pt;}
.y76{bottom:679.770667pt;}
.y99{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.y50{bottom:688.229333pt;}
.y29{bottom:692.570667pt;}
.y75{bottom:700.298667pt;}
.y98{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.y4f{bottom:707.701333pt;}
.y28{bottom:711.498667pt;}
.y74{bottom:720.826667pt;}
.y97{bottom:724.000000pt;}
.y4e{bottom:727.173333pt;}
.y27{bottom:730.426667pt;}
.y73{bottom:741.354667pt;}
.y96{bottom:744.000000pt;}
.y4d{bottom:746.645333pt;}
.y26{bottom:749.354667pt;}
.y72{bottom:761.882667pt;}
.y4{bottom:764.000000pt;}
.y4c{bottom:766.117333pt;}
.y25{bottom:768.282667pt;}
.y71{bottom:782.410667pt;}
.y95{bottom:784.000000pt;}
.y4b{bottom:785.589333pt;}
.y24{bottom:787.210667pt;}
.y3{bottom:790.666667pt;}
.y70{bottom:802.938667pt;}
.y94{bottom:804.000000pt;}
.y4a{bottom:805.061333pt;}
.y23{bottom:806.138667pt;}
.y2{bottom:817.333333pt;}
.y6f{bottom:823.466667pt;}
.y93{bottom:824.000000pt;}
.y49{bottom:824.533333pt;}
.y22{bottom:825.066667pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h6{height:55.953125pt;}
.h2{height:90.572917pt;}
.h5{height:309.197683pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x7{left:73.228400pt;}
.x2{left:100.000000pt;}
.x4{left:113.246933pt;}
.x6{left:120.000000pt;}
.x3{left:136.926933pt;}
.x8{left:160.472400pt;}
.x1{left:556.250000pt;}
}




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