
    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_9e46a7feca85ff68000ae78f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d76c108dd843580e841634af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_2ddc9a4e1503a8e2b3ec14d3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_71af0e8c5dc92ff199eee915.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6e083e823101a7f7dde95f50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_64157d2b992dd183e90abd26.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bbf895394962e7f449b605dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.346800px;}
.ls11{letter-spacing:-0.306600px;}
.lsa{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.153600px;}
.ls14{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.013320px;}
.lsf{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.450000px;}
.ls2{letter-spacing:0.900000px;}
.lsb{letter-spacing:3.690000px;}
.ls3{letter-spacing:5.580000px;}
.ls12{letter-spacing:24.228000px;}
.lse{letter-spacing:453.180000px;}
.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:-36.450000px;}
.ws8{word-spacing:-15.210000px;}
.ws5{word-spacing:-15.083280px;}
.ws2{word-spacing:-15.030000px;}
.ws6{word-spacing:-15.016680px;}
.ws3{word-spacing:-14.876400px;}
.ws9{word-spacing:-14.723400px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.356000px;}
.wsc{word-spacing:-12.780000px;}
.ws7{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-3.840480px;}
._2{margin-left:-2.643840px;}
._1{margin-left:-1.082160px;}
._0{width:1.415760px;}
._3{width:2.862000px;}
._6{width:3.973440px;}
._5{width:5.400000px;}
._7{width:7.166640px;}
._8{width:8.228880px;}
._e{width:9.859680px;}
._b{width:11.063280px;}
._c{width:12.441240px;}
._f{width:13.932120px;}
._d{width:16.773480px;}
._10{width:21.222000px;}
._15{width:22.356000px;}
._14{width:24.356160px;}
._13{width:25.380000px;}
._12{width:45.252000px;}
._16{width:61.560000px;}
._11{width:63.234000px;}
._a{width:329.352000px;}
._9{width:736.500000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y3{bottom:73.349908px;}
.ya5{bottom:93.509908px;}
.y58{bottom:105.479908px;}
.y2c{bottom:106.379908px;}
.y78{bottom:107.639908px;}
.ya4{bottom:111.329908px;}
.y57{bottom:125.369908px;}
.y77{bottom:125.459908px;}
.y2b{bottom:126.179908px;}
.ya3{bottom:129.239908px;}
.y56{bottom:145.169908px;}
.y2a{bottom:145.979908px;}
.y76{bottom:147.869908px;}
.ya2{bottom:151.559908px;}
.y55{bottom:164.969908px;}
.y75{bottom:165.689908px;}
.y29{bottom:165.869908px;}
.ya1{bottom:169.469908px;}
.y74{bottom:183.599908px;}
.y54{bottom:184.859908px;}
.y28{bottom:185.669908px;}
.ya0{bottom:191.789908px;}
.y53{bottom:204.659908px;}
.y27{bottom:205.559908px;}
.y73{bottom:205.919908px;}
.y9f{bottom:209.609908px;}
.y72{bottom:223.739908px;}
.y52{bottom:224.549908px;}
.y26{bottom:225.359908px;}
.y9e{bottom:227.519908px;}
.y51{bottom:244.349908px;}
.y25{bottom:245.159908px;}
.y71{bottom:246.149908px;}
.y9d{bottom:249.839908px;}
.y70{bottom:263.969908px;}
.y50{bottom:264.149908px;}
.y24{bottom:265.049908px;}
.y9c{bottom:267.659908px;}
.y4f{bottom:284.039908px;}
.y23{bottom:284.849908px;}
.y9b{bottom:285.569908px;}
.y6f{bottom:291.329908px;}
.y4e{bottom:303.839908px;}
.y22{bottom:304.739908px;}
.y9a{bottom:307.889908px;}
.y4d{bottom:323.729908px;}
.y21{bottom:324.539908px;}
.y99{bottom:325.709908px;}
.y6e{bottom:329.219908px;}
.yac{bottom:342.209908px;}
.y4c{bottom:343.559908px;}
.y98{bottom:343.649908px;}
.y20{bottom:344.369908px;}
.y6d{bottom:358.049908px;}
.yab{bottom:361.469908px;}
.y4b{bottom:363.359908px;}
.y1f{bottom:364.259908px;}
.y97{bottom:365.969908px;}
.yaa{bottom:379.379908px;}
.y4a{bottom:383.249908px;}
.y96{bottom:383.879908px;}
.y1e{bottom:384.059908px;}
.y6c{bottom:395.939908px;}
.y95{bottom:401.699908px;}
.y49{bottom:403.049908px;}
.y1d{bottom:412.949908px;}
.y6b{bottom:415.739908px;}
.y94{bottom:419.519908px;}
.y48{bottom:422.939908px;}
.y6a{bottom:435.539908px;}
.y93{bottom:441.929908px;}
.y47{bottom:442.739908px;}
.y1c{bottom:450.209908px;}
.y69{bottom:455.429908px;}
.y92{bottom:459.749908px;}
.y46{bottom:462.539908px;}
.y1b{bottom:468.029908px;}
.y68{bottom:475.229908px;}
.y91{bottom:477.569908px;}
.y45{bottom:482.429908px;}
.y1a{bottom:494.939908px;}
.y67{bottom:495.119908px;}
.y90{bottom:495.479908px;}
.y44{bottom:502.229908px;}
.y19{bottom:512.759908px;}
.y66{bottom:514.919908px;}
.y8f{bottom:517.799908px;}
.y43{bottom:522.119908px;}
.y18{bottom:530.579908px;}
.y65{bottom:534.719908px;}
.y8e{bottom:535.619908px;}
.y42{bottom:541.919908px;}
.y17{bottom:548.489908px;}
.y64{bottom:554.609908px;}
.y8d{bottom:558.029908px;}
.y41{bottom:561.719908px;}
.y16{bottom:566.309908px;}
.y63{bottom:574.409908px;}
.y8c{bottom:575.849908px;}
.y40{bottom:581.609908px;}
.y15{bottom:584.129908px;}
.y8b{bottom:593.669908px;}
.y62{bottom:594.299908px;}
.y3f{bottom:601.409908px;}
.y14{bottom:602.039908px;}
.ya9{bottom:611.579908px;}
.y61{bottom:614.099908px;}
.y8a{bottom:616.079908px;}
.y13{bottom:619.859908px;}
.y3e{bottom:621.299908px;}
.y60{bottom:633.929908px;}
.y12{bottom:637.709908px;}
.y3d{bottom:641.129908px;}
.y89{bottom:651.839908px;}
.y5f{bottom:653.819908px;}
.y11{bottom:655.619908px;}
.y3c{bottom:660.929908px;}
.y88{bottom:669.659908px;}
.y10{bottom:673.439908px;}
.y5e{bottom:673.619908px;}
.ya8{bottom:674.159908px;}
.y3b{bottom:680.819908px;}
.yf{bottom:691.349908px;}
.y87{bottom:691.979908px;}
.y5d{bottom:693.509908px;}
.y3a{bottom:700.619908px;}
.ye{bottom:709.169908px;}
.y86{bottom:709.889908px;}
.y5c{bottom:713.309908px;}
.y39{bottom:720.509908px;}
.yd{bottom:726.989908px;}
.y85{bottom:727.709908px;}
.y5b{bottom:733.109908px;}
.y38{bottom:740.309908px;}
.yc{bottom:744.899908px;}
.y84{bottom:750.029908px;}
.y5a{bottom:752.999908px;}
.y37{bottom:760.109908px;}
.y83{bottom:767.939908px;}
.y36{bottom:779.999908px;}
.yb{bottom:781.259908px;}
.y59{bottom:781.799908px;}
.y82{bottom:785.759908px;}
.y35{bottom:799.799908px;}
.ya{bottom:801.059908px;}
.ya7{bottom:803.579908px;}
.y81{bottom:808.079908px;}
.y34{bottom:819.689908px;}
.y9{bottom:820.949908px;}
.y80{bottom:825.989908px;}
.y33{bottom:839.489908px;}
.y8{bottom:840.749908px;}
.y7f{bottom:843.809908px;}
.y32{bottom:859.289908px;}
.y7e{bottom:866.219908px;}
.y31{bottom:879.179908px;}
.y7{bottom:879.269908px;}
.y7d{bottom:884.039908px;}
.y30{bottom:898.979908px;}
.y7c{bottom:901.859908px;}
.ya6{bottom:906.359908px;}
.y2f{bottom:918.869908px;}
.y6{bottom:919.049908px;}
.y7b{bottom:924.269908px;}
.y2e{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.y7a{bottom:942.119908px;}
.y2d{bottom:958.499908px;}
.y79{bottom:959.939908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.hc{height:52.971680px;}
.h3{height:52.998047px;}
.h8{height:54.421875px;}
.hb{height:56.320312px;}
.h6{height:58.975137px;}
.h7{height:59.004492px;}
.ha{height:59.038594px;}
.h9{height:60.589687px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x2{left:76.589989px;}
.xd{left:82.889989px;}
.x3{left:94.409989px;}
.x1{left:97.829989px;}
.xc{left:110.639989px;}
.x4{left:112.529989px;}
.xa{left:115.319989px;}
.xe{left:130.619989px;}
.x7{left:139.079989px;}
.x6{left:254.369989px;}
.x9{left:260.939989px;}
.x8{left:295.229989px;}
.xb{left:335.399989px;}
.x5{left:337.829989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.308267pt;}
.ls11{letter-spacing:-0.272533pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.136533pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.011840pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.400000pt;}
.ls2{letter-spacing:0.800000pt;}
.lsb{letter-spacing:3.280000pt;}
.ls3{letter-spacing:4.960000pt;}
.ls12{letter-spacing:21.536000pt;}
.lse{letter-spacing:402.826667pt;}
.wsa{word-spacing:-32.400000pt;}
.ws8{word-spacing:-13.520000pt;}
.ws5{word-spacing:-13.407360pt;}
.ws2{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.348160pt;}
.ws3{word-spacing:-13.223467pt;}
.ws9{word-spacing:-13.087467pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.872000pt;}
.wsc{word-spacing:-11.360000pt;}
.ws7{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-3.413760pt;}
._2{margin-left:-2.350080pt;}
._1{margin-left:-0.961920pt;}
._0{width:1.258453pt;}
._3{width:2.544000pt;}
._6{width:3.531947pt;}
._5{width:4.800000pt;}
._7{width:6.370347pt;}
._8{width:7.314560pt;}
._e{width:8.764160pt;}
._b{width:9.834027pt;}
._c{width:11.058880pt;}
._f{width:12.384107pt;}
._d{width:14.909760pt;}
._10{width:18.864000pt;}
._15{width:19.872000pt;}
._14{width:21.649920pt;}
._13{width:22.560000pt;}
._12{width:40.224000pt;}
._16{width:54.720000pt;}
._11{width:56.208000pt;}
._a{width:292.757333pt;}
._9{width:654.666667pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y3{bottom:65.199919pt;}
.ya5{bottom:83.119919pt;}
.y58{bottom:93.759919pt;}
.y2c{bottom:94.559919pt;}
.y78{bottom:95.679919pt;}
.ya4{bottom:98.959919pt;}
.y57{bottom:111.439919pt;}
.y77{bottom:111.519919pt;}
.y2b{bottom:112.159919pt;}
.ya3{bottom:114.879919pt;}
.y56{bottom:129.039919pt;}
.y2a{bottom:129.759919pt;}
.y76{bottom:131.439919pt;}
.ya2{bottom:134.719919pt;}
.y55{bottom:146.639919pt;}
.y75{bottom:147.279919pt;}
.y29{bottom:147.439919pt;}
.ya1{bottom:150.639919pt;}
.y74{bottom:163.199919pt;}
.y54{bottom:164.319919pt;}
.y28{bottom:165.039919pt;}
.ya0{bottom:170.479919pt;}
.y53{bottom:181.919919pt;}
.y27{bottom:182.719919pt;}
.y73{bottom:183.039919pt;}
.y9f{bottom:186.319919pt;}
.y72{bottom:198.879919pt;}
.y52{bottom:199.599919pt;}
.y26{bottom:200.319919pt;}
.y9e{bottom:202.239919pt;}
.y51{bottom:217.199919pt;}
.y25{bottom:217.919919pt;}
.y71{bottom:218.799919pt;}
.y9d{bottom:222.079919pt;}
.y70{bottom:234.639919pt;}
.y50{bottom:234.799919pt;}
.y24{bottom:235.599919pt;}
.y9c{bottom:237.919919pt;}
.y4f{bottom:252.479919pt;}
.y23{bottom:253.199919pt;}
.y9b{bottom:253.839919pt;}
.y6f{bottom:258.959919pt;}
.y4e{bottom:270.079919pt;}
.y22{bottom:270.879919pt;}
.y9a{bottom:273.679919pt;}
.y4d{bottom:287.759919pt;}
.y21{bottom:288.479919pt;}
.y99{bottom:289.519919pt;}
.y6e{bottom:292.639919pt;}
.yac{bottom:304.186585pt;}
.y4c{bottom:305.386585pt;}
.y98{bottom:305.466585pt;}
.y20{bottom:306.106585pt;}
.y6d{bottom:318.266585pt;}
.yab{bottom:321.306585pt;}
.y4b{bottom:322.986585pt;}
.y1f{bottom:323.786585pt;}
.y97{bottom:325.306585pt;}
.yaa{bottom:337.226585pt;}
.y4a{bottom:340.666585pt;}
.y96{bottom:341.226585pt;}
.y1e{bottom:341.386585pt;}
.y6c{bottom:351.946585pt;}
.y95{bottom:357.066585pt;}
.y49{bottom:358.266585pt;}
.y1d{bottom:367.066585pt;}
.y6b{bottom:369.546585pt;}
.y94{bottom:372.906585pt;}
.y48{bottom:375.946585pt;}
.y6a{bottom:387.146585pt;}
.y93{bottom:392.826585pt;}
.y47{bottom:393.546585pt;}
.y1c{bottom:400.186585pt;}
.y69{bottom:404.826585pt;}
.y92{bottom:408.666585pt;}
.y46{bottom:411.146585pt;}
.y1b{bottom:416.026585pt;}
.y68{bottom:422.426585pt;}
.y91{bottom:424.506585pt;}
.y45{bottom:428.826585pt;}
.y1a{bottom:439.946585pt;}
.y67{bottom:440.106585pt;}
.y90{bottom:440.426585pt;}
.y44{bottom:446.426585pt;}
.y19{bottom:455.786585pt;}
.y66{bottom:457.706585pt;}
.y8f{bottom:460.266585pt;}
.y43{bottom:464.106585pt;}
.y18{bottom:471.626585pt;}
.y65{bottom:475.306585pt;}
.y8e{bottom:476.106585pt;}
.y42{bottom:481.706585pt;}
.y17{bottom:487.546585pt;}
.y64{bottom:492.986585pt;}
.y8d{bottom:496.026585pt;}
.y41{bottom:499.306585pt;}
.y16{bottom:503.386585pt;}
.y63{bottom:510.586585pt;}
.y8c{bottom:511.866585pt;}
.y40{bottom:516.986585pt;}
.y15{bottom:519.226585pt;}
.y8b{bottom:527.706585pt;}
.y62{bottom:528.266585pt;}
.y3f{bottom:534.586585pt;}
.y14{bottom:535.146585pt;}
.ya9{bottom:543.626585pt;}
.y61{bottom:545.866585pt;}
.y8a{bottom:547.626585pt;}
.y13{bottom:550.986585pt;}
.y3e{bottom:552.266585pt;}
.y60{bottom:563.493252pt;}
.y12{bottom:566.853252pt;}
.y3d{bottom:569.893252pt;}
.y89{bottom:579.413252pt;}
.y5f{bottom:581.173252pt;}
.y11{bottom:582.773252pt;}
.y3c{bottom:587.493252pt;}
.y88{bottom:595.253252pt;}
.y10{bottom:598.613252pt;}
.y5e{bottom:598.773252pt;}
.ya8{bottom:599.253252pt;}
.y3b{bottom:605.173252pt;}
.yf{bottom:614.533252pt;}
.y87{bottom:615.093252pt;}
.y5d{bottom:616.453252pt;}
.y3a{bottom:622.773252pt;}
.ye{bottom:630.373252pt;}
.y86{bottom:631.013252pt;}
.y5c{bottom:634.053252pt;}
.y39{bottom:640.453252pt;}
.yd{bottom:646.213252pt;}
.y85{bottom:646.853252pt;}
.y5b{bottom:651.653252pt;}
.y38{bottom:658.053252pt;}
.yc{bottom:662.133252pt;}
.y84{bottom:666.693252pt;}
.y5a{bottom:669.333252pt;}
.y37{bottom:675.653252pt;}
.y83{bottom:682.613252pt;}
.y36{bottom:693.333252pt;}
.yb{bottom:694.453252pt;}
.y59{bottom:694.933252pt;}
.y82{bottom:698.453252pt;}
.y35{bottom:710.933252pt;}
.ya{bottom:712.053252pt;}
.ya7{bottom:714.293252pt;}
.y81{bottom:718.293252pt;}
.y34{bottom:728.613252pt;}
.y9{bottom:729.733252pt;}
.y80{bottom:734.213252pt;}
.y33{bottom:746.213252pt;}
.y8{bottom:747.333252pt;}
.y7f{bottom:750.053252pt;}
.y32{bottom:763.813252pt;}
.y7e{bottom:769.973252pt;}
.y31{bottom:781.493252pt;}
.y7{bottom:781.573252pt;}
.y7d{bottom:785.813252pt;}
.y30{bottom:799.093252pt;}
.y7c{bottom:801.653252pt;}
.ya6{bottom:805.653252pt;}
.y2f{bottom:816.773252pt;}
.y6{bottom:816.933252pt;}
.y7b{bottom:821.573252pt;}
.y2e{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.y7a{bottom:837.439919pt;}
.y2d{bottom:851.999919pt;}
.y79{bottom:853.279919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.hc{height:47.085938pt;}
.h3{height:47.109375pt;}
.h8{height:48.375000pt;}
.hb{height:50.062500pt;}
.h6{height:52.422344pt;}
.h7{height:52.448437pt;}
.ha{height:52.478750pt;}
.h9{height:53.857500pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x2{left:68.079990pt;}
.xd{left:73.679990pt;}
.x3{left:83.919990pt;}
.x1{left:86.959990pt;}
.xc{left:98.346657pt;}
.x4{left:100.026657pt;}
.xa{left:102.506657pt;}
.xe{left:116.106657pt;}
.x7{left:123.626657pt;}
.x6{left:226.106657pt;}
.x9{left:231.946657pt;}
.x8{left:262.426657pt;}
.xb{left:298.133323pt;}
.x5{left:300.293323pt;}
}




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