
    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_c8f8560b596368d57c6ccce7.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_8e62be5274dac9fc19f41eb6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_6479974f8de208725232b1a4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bfe664757207a9fbc6442e77.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_239dbcdd059dd0c0b5567d3a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_71d9791c8f009e5ec90e4f07.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_e67fd35686e77303046e7a16.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902344;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_13dbcc26ddcc2e947b92de39.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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_b3c7d1a176b54034f5adb8e1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_820d519d40133b503c531e60.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;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;}
.ls1f{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.840000px;}
.ls11{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.060000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls19{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.152000px;}
.ls2{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.436000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws0{word-spacing:-8.496000px;}
.ws4{word-spacing:-7.614000px;}
.ws7{word-spacing:-1.152000px;}
.ws20{word-spacing:-0.936000px;}
.ws6{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.600000px;}
.ws1d{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.420000px;}
.ws1e{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.120000px;}
.wse{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.060000px;}
.ws10{word-spacing:0.120000px;}
.wsa{word-spacing:0.144000px;}
.ws8{word-spacing:0.216000px;}
.ws14{word-spacing:0.300000px;}
.ws9{word-spacing:0.360000px;}
.ws16{word-spacing:0.420000px;}
.ws15{word-spacing:0.540000px;}
.ws19{word-spacing:0.576000px;}
.wsc{word-spacing:0.720000px;}
.ws13{word-spacing:0.780000px;}
.ws17{word-spacing:0.840000px;}
.ws1f{word-spacing:0.864000px;}
.wsb{word-spacing:0.936000px;}
.ws23{word-spacing:0.960000px;}
.ws3{word-spacing:1.800000px;}
.ws1{word-spacing:4.200000px;}
.ws5{word-spacing:4.536000px;}
.ws1c{word-spacing:8.136000px;}
.ws12{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._d{margin-left:-12.600000px;}
._e{margin-left:-11.406000px;}
._8{margin-left:-7.668000px;}
._1{margin-left:-5.964000px;}
._c{margin-left:-4.800000px;}
._9{margin-left:-3.078000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.432000px;}
._f{width:4.438800px;}
._6{width:5.467200px;}
._a{width:6.710400px;}
._4{width:8.568000px;}
._b{width:10.149600px;}
._7{width:11.340000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y6b{bottom:119.838150px;}
.y47{bottom:119.988150px;}
.y22{bottom:120.588600px;}
.y6a{bottom:139.488150px;}
.y46{bottom:139.638150px;}
.y21{bottom:142.332600px;}
.y8f{bottom:155.596050px;}
.y69{bottom:159.138150px;}
.y20{bottom:164.076600px;}
.y45{bottom:167.792100px;}
.y8e{bottom:174.346050px;}
.y1f{bottom:185.820600px;}
.y68{bottom:187.274100px;}
.y44{bottom:190.292100px;}
.y8d{bottom:193.096050px;}
.y1e{bottom:207.564600px;}
.y67{bottom:209.630100px;}
.y8c{bottom:211.846050px;}
.y43{bottom:212.792100px;}
.y66{bottom:231.986100px;}
.y8b{bottom:241.846050px;}
.y1d{bottom:251.064600px;}
.y65{bottom:254.342100px;}
.y42{bottom:257.792100px;}
.y1c{bottom:270.114600px;}
.y41{bottom:277.592100px;}
.y8a{bottom:283.096050px;}
.y1b{bottom:289.164600px;}
.y40{bottom:297.392100px;}
.y64{bottom:299.042100px;}
.y89{bottom:302.896050px;}
.y1a{bottom:308.214600px;}
.y3f{bottom:317.192100px;}
.y63{bottom:318.692100px;}
.y88{bottom:322.696050px;}
.y19{bottom:327.264600px;}
.y3e{bottom:336.992100px;}
.y62{bottom:338.342100px;}
.y87{bottom:342.496050px;}
.y18{bottom:346.314600px;}
.y3d{bottom:356.792100px;}
.y61{bottom:357.992100px;}
.y86{bottom:362.296050px;}
.y17{bottom:365.364600px;}
.y3c{bottom:376.592100px;}
.y60{bottom:377.642100px;}
.y85{bottom:382.096050px;}
.y16{bottom:384.414600px;}
.y3b{bottom:396.392100px;}
.y5f{bottom:397.292100px;}
.y84{bottom:401.896050px;}
.y15{bottom:403.464600px;}
.y3a{bottom:416.192100px;}
.y5e{bottom:416.942100px;}
.y83{bottom:421.696050px;}
.y14{bottom:422.514600px;}
.y5d{bottom:436.592100px;}
.y82{bottom:441.496050px;}
.y13{bottom:441.564600px;}
.y39{bottom:444.496050px;}
.y5c{bottom:456.242100px;}
.y12{bottom:460.614600px;}
.y81{bottom:461.296050px;}
.y38{bottom:466.996050px;}
.y5b{bottom:475.892100px;}
.y11{bottom:479.664600px;}
.y80{bottom:481.096050px;}
.y37{bottom:489.496050px;}
.y5a{bottom:495.542100px;}
.y10{bottom:498.714600px;}
.y7f{bottom:500.896050px;}
.y36{bottom:511.996050px;}
.y59{bottom:515.192100px;}
.yf{bottom:517.764600px;}
.y7e{bottom:520.696050px;}
.y35{bottom:534.496050px;}
.ye{bottom:536.814600px;}
.y7d{bottom:540.496050px;}
.y58{bottom:543.328050px;}
.y7c{bottom:560.296050px;}
.yd{bottom:564.410550px;}
.y57{bottom:565.684050px;}
.y34{bottom:579.496050px;}
.y7b{bottom:580.096050px;}
.yc{bottom:586.154550px;}
.y56{bottom:588.040050px;}
.y33{bottom:599.296050px;}
.y7a{bottom:599.896050px;}
.yb{bottom:607.898550px;}
.y55{bottom:610.396050px;}
.y32{bottom:619.096050px;}
.y79{bottom:619.696050px;}
.ya{bottom:629.642550px;}
.y31{bottom:638.896050px;}
.y78{bottom:648.000000px;}
.y9{bottom:651.386550px;}
.y54{bottom:655.096050px;}
.y30{bottom:658.696050px;}
.y77{bottom:670.500000px;}
.y8{bottom:673.130550px;}
.y53{bottom:674.746050px;}
.y2f{bottom:678.496050px;}
.y76{bottom:693.000000px;}
.y52{bottom:694.396050px;}
.y7{bottom:694.874550px;}
.y2e{bottom:698.296050px;}
.y51{bottom:714.046050px;}
.y75{bottom:715.500000px;}
.y6{bottom:716.618550px;}
.y2d{bottom:718.096050px;}
.y50{bottom:733.696050px;}
.y2c{bottom:737.896050px;}
.y74{bottom:738.000000px;}
.y5{bottom:738.368550px;}
.y4f{bottom:753.346050px;}
.y2b{bottom:757.696050px;}
.y73{bottom:760.500000px;}
.y2a{bottom:777.496050px;}
.y4e{bottom:781.488000px;}
.y72{bottom:783.000000px;}
.y4{bottom:784.854300px;}
.y29{bottom:797.296050px;}
.y4d{bottom:803.844000px;}
.y71{bottom:805.500000px;}
.y3{bottom:807.354300px;}
.y28{bottom:817.096050px;}
.y4c{bottom:826.200000px;}
.y27{bottom:836.896050px;}
.y70{bottom:850.500000px;}
.y26{bottom:856.696050px;}
.y6f{bottom:870.300000px;}
.y4b{bottom:870.900000px;}
.y2{bottom:874.500000px;}
.y25{bottom:876.496050px;}
.y6e{bottom:890.100000px;}
.y4a{bottom:890.550000px;}
.y24{bottom:904.794000px;}
.y6d{bottom:909.900000px;}
.y49{bottom:910.200000px;}
.y23{bottom:927.150000px;}
.y6c{bottom:929.700000px;}
.y48{bottom:929.850000px;}
.h5{height:35.991211px;}
.h1{height:39.990234px;}
.h4{height:47.988281px;}
.h3{height:50.580000px;}
.h7{height:50.947266px;}
.h6{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x7{left:82.381950px;}
.x6{left:97.263750px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x8{left:135.528750px;}
.x4{left:142.263750px;}
.x1{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.746667pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls19{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls2{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls1{letter-spacing:9.546667pt;}
.ws0{word-spacing:-7.552000pt;}
.ws4{word-spacing:-6.768000pt;}
.ws7{word-spacing:-1.024000pt;}
.ws20{word-spacing:-0.832000pt;}
.ws6{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.533333pt;}
.ws1d{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.373333pt;}
.ws1e{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.106667pt;}
.wse{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053333pt;}
.ws10{word-spacing:0.106667pt;}
.wsa{word-spacing:0.128000pt;}
.ws8{word-spacing:0.192000pt;}
.ws14{word-spacing:0.266667pt;}
.ws9{word-spacing:0.320000pt;}
.ws16{word-spacing:0.373333pt;}
.ws15{word-spacing:0.480000pt;}
.ws19{word-spacing:0.512000pt;}
.wsc{word-spacing:0.640000pt;}
.ws13{word-spacing:0.693333pt;}
.ws17{word-spacing:0.746667pt;}
.ws1f{word-spacing:0.768000pt;}
.wsb{word-spacing:0.832000pt;}
.ws23{word-spacing:0.853333pt;}
.ws3{word-spacing:1.600000pt;}
.ws1{word-spacing:3.733333pt;}
.ws5{word-spacing:4.032000pt;}
.ws1c{word-spacing:7.232000pt;}
.ws12{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._d{margin-left:-11.200000pt;}
._e{margin-left:-10.138667pt;}
._8{margin-left:-6.816000pt;}
._1{margin-left:-5.301333pt;}
._c{margin-left:-4.266667pt;}
._9{margin-left:-2.736000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.050667pt;}
._f{width:3.945600pt;}
._6{width:4.859733pt;}
._a{width:5.964800pt;}
._4{width:7.616000pt;}
._b{width:9.021867pt;}
._7{width:10.080000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y6b{bottom:106.522800pt;}
.y47{bottom:106.656133pt;}
.y22{bottom:107.189867pt;}
.y6a{bottom:123.989467pt;}
.y46{bottom:124.122800pt;}
.y21{bottom:126.517867pt;}
.y8f{bottom:138.307600pt;}
.y69{bottom:141.456133pt;}
.y20{bottom:145.845867pt;}
.y45{bottom:149.148533pt;}
.y8e{bottom:154.974267pt;}
.y1f{bottom:165.173867pt;}
.y68{bottom:166.465867pt;}
.y44{bottom:169.148533pt;}
.y8d{bottom:171.640933pt;}
.y1e{bottom:184.501867pt;}
.y67{bottom:186.337867pt;}
.y8c{bottom:188.307600pt;}
.y43{bottom:189.148533pt;}
.y66{bottom:206.209867pt;}
.y8b{bottom:214.974267pt;}
.y1d{bottom:223.168533pt;}
.y65{bottom:226.081867pt;}
.y42{bottom:229.148533pt;}
.y1c{bottom:240.101867pt;}
.y41{bottom:246.748533pt;}
.y8a{bottom:251.640933pt;}
.y1b{bottom:257.035200pt;}
.y40{bottom:264.348533pt;}
.y64{bottom:265.815200pt;}
.y89{bottom:269.240933pt;}
.y1a{bottom:273.968533pt;}
.y3f{bottom:281.948533pt;}
.y63{bottom:283.281867pt;}
.y88{bottom:286.840933pt;}
.y19{bottom:290.901867pt;}
.y3e{bottom:299.548533pt;}
.y62{bottom:300.748533pt;}
.y87{bottom:304.440933pt;}
.y18{bottom:307.835200pt;}
.y3d{bottom:317.148533pt;}
.y61{bottom:318.215200pt;}
.y86{bottom:322.040933pt;}
.y17{bottom:324.768533pt;}
.y3c{bottom:334.748533pt;}
.y60{bottom:335.681867pt;}
.y85{bottom:339.640933pt;}
.y16{bottom:341.701867pt;}
.y3b{bottom:352.348533pt;}
.y5f{bottom:353.148533pt;}
.y84{bottom:357.240933pt;}
.y15{bottom:358.635200pt;}
.y3a{bottom:369.948533pt;}
.y5e{bottom:370.615200pt;}
.y83{bottom:374.840933pt;}
.y14{bottom:375.568533pt;}
.y5d{bottom:388.081867pt;}
.y82{bottom:392.440933pt;}
.y13{bottom:392.501867pt;}
.y39{bottom:395.107600pt;}
.y5c{bottom:405.548533pt;}
.y12{bottom:409.435200pt;}
.y81{bottom:410.040933pt;}
.y38{bottom:415.107600pt;}
.y5b{bottom:423.015200pt;}
.y11{bottom:426.368533pt;}
.y80{bottom:427.640933pt;}
.y37{bottom:435.107600pt;}
.y5a{bottom:440.481867pt;}
.y10{bottom:443.301867pt;}
.y7f{bottom:445.240933pt;}
.y36{bottom:455.107600pt;}
.y59{bottom:457.948533pt;}
.yf{bottom:460.235200pt;}
.y7e{bottom:462.840933pt;}
.y35{bottom:475.107600pt;}
.ye{bottom:477.168533pt;}
.y7d{bottom:480.440933pt;}
.y58{bottom:482.958267pt;}
.y7c{bottom:498.040933pt;}
.yd{bottom:501.698267pt;}
.y57{bottom:502.830267pt;}
.y34{bottom:515.107600pt;}
.y7b{bottom:515.640933pt;}
.yc{bottom:521.026267pt;}
.y56{bottom:522.702267pt;}
.y33{bottom:532.707600pt;}
.y7a{bottom:533.240933pt;}
.yb{bottom:540.354267pt;}
.y55{bottom:542.574267pt;}
.y32{bottom:550.307600pt;}
.y79{bottom:550.840933pt;}
.ya{bottom:559.682267pt;}
.y31{bottom:567.907600pt;}
.y78{bottom:576.000000pt;}
.y9{bottom:579.010267pt;}
.y54{bottom:582.307600pt;}
.y30{bottom:585.507600pt;}
.y77{bottom:596.000000pt;}
.y8{bottom:598.338267pt;}
.y53{bottom:599.774267pt;}
.y2f{bottom:603.107600pt;}
.y76{bottom:616.000000pt;}
.y52{bottom:617.240933pt;}
.y7{bottom:617.666267pt;}
.y2e{bottom:620.707600pt;}
.y51{bottom:634.707600pt;}
.y75{bottom:636.000000pt;}
.y6{bottom:636.994267pt;}
.y2d{bottom:638.307600pt;}
.y50{bottom:652.174267pt;}
.y2c{bottom:655.907600pt;}
.y74{bottom:656.000000pt;}
.y5{bottom:656.327600pt;}
.y4f{bottom:669.640933pt;}
.y2b{bottom:673.507600pt;}
.y73{bottom:676.000000pt;}
.y2a{bottom:691.107600pt;}
.y4e{bottom:694.656000pt;}
.y72{bottom:696.000000pt;}
.y4{bottom:697.648267pt;}
.y29{bottom:708.707600pt;}
.y4d{bottom:714.528000pt;}
.y71{bottom:716.000000pt;}
.y3{bottom:717.648267pt;}
.y28{bottom:726.307600pt;}
.y4c{bottom:734.400000pt;}
.y27{bottom:743.907600pt;}
.y70{bottom:756.000000pt;}
.y26{bottom:761.507600pt;}
.y6f{bottom:773.600000pt;}
.y4b{bottom:774.133333pt;}
.y2{bottom:777.333333pt;}
.y25{bottom:779.107600pt;}
.y6e{bottom:791.200000pt;}
.y4a{bottom:791.600000pt;}
.y24{bottom:804.261333pt;}
.y6d{bottom:808.800000pt;}
.y49{bottom:809.066667pt;}
.y23{bottom:824.133333pt;}
.y6c{bottom:826.400000pt;}
.y48{bottom:826.533333pt;}
.h5{height:31.992188pt;}
.h1{height:35.546875pt;}
.h4{height:42.656250pt;}
.h3{height:44.960000pt;}
.h7{height:45.286458pt;}
.h6{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x7{left:73.228400pt;}
.x6{left:86.456667pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x8{left:120.470000pt;}
.x4{left:126.456667pt;}
.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; }
  