
    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_40ffdf37544aad979fda364b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_d69a1f2b14dff59b34ac52a5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_89d9d01272c13f842711d7d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_49516395709a65184890e342.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_6c131dcd09239423e766bb2b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_cc6c6699ea557589856b756b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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);}
.v1{vertical-align:-11.286000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.995000px;}
.ls1{letter-spacing:-2.016000px;}
.ls6{letter-spacing:-1.944000px;}
.lse{letter-spacing:-0.897000px;}
.lsf{letter-spacing:-0.345000px;}
.ls4{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.001863px;}
.ls5{letter-spacing:1.092000px;}
.ls7{letter-spacing:1.260000px;}
.ls8{letter-spacing:1.488000px;}
.lsb{letter-spacing:3.600000px;}
.ls9{letter-spacing:5.175000px;}
.lsa{letter-spacing:6.000000px;}
.ls2{letter-spacing:7.260000px;}
.ls10{letter-spacing:8.400000px;}
.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;}
}
.wsf{word-spacing:-49.542000px;}
.ws10{word-spacing:-48.645000px;}
.ws13{word-spacing:-29.475000px;}
.ws0{word-spacing:-28.404000px;}
.wsa{word-spacing:-26.250000px;}
.ws2{word-spacing:-19.389000px;}
.wse{word-spacing:-17.043000px;}
.ws14{word-spacing:-14.820000px;}
.ws1{word-spacing:-11.303787px;}
.ws5{word-spacing:-7.260000px;}
.wsc{word-spacing:-6.000000px;}
.wsd{word-spacing:-3.600000px;}
.ws9{word-spacing:-1.260000px;}
.ws8{word-spacing:-1.092000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.180000px;}
.ws7{word-spacing:0.240000px;}
.ws12{word-spacing:0.345000px;}
.ws11{word-spacing:0.759000px;}
.wsb{word-spacing:0.912000px;}
.ws4{word-spacing:2.016000px;}
._13{margin-left:-19.158300px;}
._15{margin-left:-7.217400px;}
._c{margin-left:-5.424000px;}
._a{margin-left:-3.870000px;}
._b{margin-left:-2.494800px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._9{width:2.140200px;}
._5{width:3.439800px;}
._4{width:5.027400px;}
._6{width:6.132000px;}
._8{width:7.381800px;}
._7{width:8.622600px;}
._11{width:10.419000px;}
._16{width:12.029400px;}
._12{width:13.172100px;}
._10{width:14.976600px;}
._1b{width:16.597500px;}
._1a{width:18.037500px;}
._e{width:22.135200px;}
._f{width:23.969700px;}
._19{width:30.387000px;}
._1c{width:33.279300px;}
._18{width:34.788600px;}
._1e{width:43.445160px;}
._d{width:163.310400px;}
._1f{width:446.182200px;}
._14{width:451.599600px;}
._0{width:578.400000px;}
._1d{width:940.057200px;}
._3{width:943.177200px;}
._17{width:947.227200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs6{font-size:40.227000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y48{bottom:106.165350px;}
.y7e{bottom:106.179150px;}
.y5b{bottom:106.247700px;}
.y1f{bottom:106.325100px;}
.ya3{bottom:109.294950px;}
.y47{bottom:126.589350px;}
.y7d{bottom:126.603150px;}
.y1e{bottom:126.628350px;}
.y5a{bottom:126.671700px;}
.y1d{bottom:146.931600px;}
.y46{bottom:147.013350px;}
.y7c{bottom:147.027150px;}
.y59{bottom:147.095700px;}
.ya2{bottom:153.158700px;}
.y1c{bottom:167.234850px;}
.y45{bottom:167.437350px;}
.y7b{bottom:167.451150px;}
.y58{bottom:167.519700px;}
.ya1{bottom:173.979450px;}
.y1b{bottom:187.615350px;}
.y44{bottom:187.861350px;}
.y7a{bottom:187.875150px;}
.y57{bottom:187.943700px;}
.ya0{bottom:194.800200px;}
.y1a{bottom:207.918600px;}
.y43{bottom:208.285350px;}
.y79{bottom:208.299150px;}
.y56{bottom:208.367700px;}
.y9f{bottom:215.620950px;}
.y19{bottom:228.221850px;}
.y42{bottom:228.709350px;}
.y78{bottom:228.723150px;}
.y55{bottom:228.791700px;}
.y9e{bottom:236.441700px;}
.y18{bottom:248.525100px;}
.y41{bottom:249.133350px;}
.y77{bottom:249.147150px;}
.y54{bottom:249.215700px;}
.y9d{bottom:257.262450px;}
.y17{bottom:268.828350px;}
.y40{bottom:269.557350px;}
.y76{bottom:269.571150px;}
.y53{bottom:269.639700px;}
.y9c{bottom:278.083200px;}
.y16{bottom:289.131600px;}
.y3f{bottom:289.981350px;}
.y75{bottom:289.995150px;}
.y52{bottom:290.063700px;}
.y9b{bottom:298.903950px;}
.y15{bottom:309.434850px;}
.y3e{bottom:310.405350px;}
.y74{bottom:310.419150px;}
.y51{bottom:310.487700px;}
.y9a{bottom:319.724700px;}
.y14{bottom:329.738100px;}
.y3d{bottom:330.829350px;}
.y73{bottom:330.843150px;}
.y50{bottom:330.911700px;}
.y99{bottom:340.545450px;}
.y13{bottom:350.041350px;}
.y3c{bottom:351.253350px;}
.y72{bottom:351.267150px;}
.y4f{bottom:351.335700px;}
.y98{bottom:361.366200px;}
.y12{bottom:370.344600px;}
.y3b{bottom:371.677350px;}
.y71{bottom:371.691150px;}
.y4e{bottom:371.759700px;}
.y97{bottom:382.186950px;}
.y11{bottom:390.647850px;}
.y3a{bottom:392.101350px;}
.y70{bottom:392.115150px;}
.y4d{bottom:392.183700px;}
.y96{bottom:403.007700px;}
.y10{bottom:410.951100px;}
.y39{bottom:412.525350px;}
.y6f{bottom:412.539150px;}
.y4c{bottom:412.604250px;}
.y95{bottom:423.828450px;}
.yf{bottom:431.254350px;}
.y38{bottom:432.949350px;}
.y6e{bottom:432.963150px;}
.y4b{bottom:433.024950px;}
.y94{bottom:444.649200px;}
.y37{bottom:453.373350px;}
.y6d{bottom:453.387150px;}
.y4a{bottom:453.445500px;}
.y93{bottom:465.469950px;}
.y36{bottom:473.797350px;}
.y6c{bottom:473.811150px;}
.yb6{bottom:483.941550px;}
.y92{bottom:486.290700px;}
.y35{bottom:494.221350px;}
.y6b{bottom:494.235150px;}
.yb5{bottom:504.191550px;}
.y91{bottom:507.111450px;}
.y34{bottom:514.645350px;}
.y6a{bottom:514.659150px;}
.ye{bottom:521.946600px;}
.yb4{bottom:524.441550px;}
.y90{bottom:527.932200px;}
.y33{bottom:535.069350px;}
.y69{bottom:535.083150px;}
.yd{bottom:543.006600px;}
.yb3{bottom:544.691550px;}
.y8f{bottom:548.752950px;}
.y32{bottom:555.493350px;}
.y68{bottom:555.507150px;}
.yc{bottom:564.066600px;}
.yb2{bottom:564.941550px;}
.y8e{bottom:569.573700px;}
.y31{bottom:575.917350px;}
.y67{bottom:575.931150px;}
.yb1{bottom:585.191550px;}
.y8d{bottom:590.394450px;}
.y30{bottom:596.341350px;}
.y66{bottom:596.355150px;}
.y8c{bottom:611.215200px;}
.yb{bottom:614.880150px;}
.y2f{bottom:616.765350px;}
.y65{bottom:616.779150px;}
.yb0{bottom:618.191550px;}
.y8b{bottom:632.035950px;}
.y2e{bottom:637.189350px;}
.y64{bottom:637.203150px;}
.ya{bottom:646.443150px;}
.y8a{bottom:652.856700px;}
.y2d{bottom:657.613350px;}
.y63{bottom:657.627150px;}
.yaf{bottom:659.683350px;}
.y89{bottom:673.677450px;}
.y9{bottom:678.006150px;}
.y2c{bottom:678.037350px;}
.y62{bottom:678.051150px;}
.yae{bottom:679.934850px;}
.y88{bottom:694.498200px;}
.y2b{bottom:698.461350px;}
.y61{bottom:698.475150px;}
.yad{bottom:700.186350px;}
.y8{bottom:709.569150px;}
.y87{bottom:715.318950px;}
.y2a{bottom:718.885350px;}
.y60{bottom:718.899150px;}
.yac{bottom:720.437850px;}
.y86{bottom:736.139700px;}
.y29{bottom:739.309350px;}
.y5f{bottom:739.323150px;}
.yab{bottom:740.689350px;}
.y7{bottom:741.128850px;}
.y85{bottom:756.960450px;}
.y28{bottom:759.733350px;}
.y5e{bottom:759.747150px;}
.yaa{bottom:760.940850px;}
.y84{bottom:777.781200px;}
.y27{bottom:780.157350px;}
.y5d{bottom:780.171150px;}
.ya9{bottom:781.192350px;}
.y83{bottom:798.601950px;}
.y26{bottom:800.581350px;}
.y5c{bottom:800.595150px;}
.ya8{bottom:801.443850px;}
.y6{bottom:802.449150px;}
.y82{bottom:819.422700px;}
.y25{bottom:821.005350px;}
.ya7{bottom:821.695350px;}
.y5{bottom:832.014150px;}
.y81{bottom:840.243450px;}
.y24{bottom:841.429350px;}
.ya6{bottom:841.946850px;}
.y4{bottom:853.074150px;}
.y80{bottom:861.064200px;}
.y23{bottom:861.853350px;}
.ya5{bottom:862.198350px;}
.y7f{bottom:881.880600px;}
.y22{bottom:882.277350px;}
.ya4{bottom:882.449850px;}
.y3{bottom:882.639150px;}
.y21{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.hf{height:34.714289px;}
.h9{height:37.593750px;}
.h10{height:46.992188px;}
.h3{height:49.341797px;}
.h4{height:50.947266px;}
.h11{height:51.884766px;}
.h7{height:58.589355px;}
.hc{height:58.602555px;}
.hb{height:58.603155px;}
.he{height:58.606755px;}
.hd{height:58.795155px;}
.ha{height:58.877955px;}
.h8{height:59.667480px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.937450px;}
.x8{left:82.459200px;}
.x6{left:83.637450px;}
.x1{left:85.039350px;}
.x5{left:105.717450px;}
.x4{left:230.513700px;}
.x2{left:232.076250px;}
.x3{left:233.583000px;}
@media print{
.v1{vertical-align:-10.032000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.106667pt;}
.ls1{letter-spacing:-1.792000pt;}
.ls6{letter-spacing:-1.728000pt;}
.lse{letter-spacing:-0.797333pt;}
.lsf{letter-spacing:-0.306667pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.001656pt;}
.ls5{letter-spacing:0.970667pt;}
.ls7{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.322667pt;}
.lsb{letter-spacing:3.200000pt;}
.ls9{letter-spacing:4.600000pt;}
.lsa{letter-spacing:5.333333pt;}
.ls2{letter-spacing:6.453333pt;}
.ls10{letter-spacing:7.466667pt;}
.wsf{word-spacing:-44.037333pt;}
.ws10{word-spacing:-43.240000pt;}
.ws13{word-spacing:-26.200000pt;}
.ws0{word-spacing:-25.248000pt;}
.wsa{word-spacing:-23.333333pt;}
.ws2{word-spacing:-17.234667pt;}
.wse{word-spacing:-15.149333pt;}
.ws14{word-spacing:-13.173333pt;}
.ws1{word-spacing:-10.047811pt;}
.ws5{word-spacing:-6.453333pt;}
.wsc{word-spacing:-5.333333pt;}
.wsd{word-spacing:-3.200000pt;}
.ws9{word-spacing:-1.120000pt;}
.ws8{word-spacing:-0.970667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.160000pt;}
.ws7{word-spacing:0.213333pt;}
.ws12{word-spacing:0.306667pt;}
.ws11{word-spacing:0.674667pt;}
.wsb{word-spacing:0.810667pt;}
.ws4{word-spacing:1.792000pt;}
._13{margin-left:-17.029600pt;}
._15{margin-left:-6.415467pt;}
._c{margin-left:-4.821333pt;}
._a{margin-left:-3.440000pt;}
._b{margin-left:-2.217600pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._9{width:1.902400pt;}
._5{width:3.057600pt;}
._4{width:4.468800pt;}
._6{width:5.450667pt;}
._8{width:6.561600pt;}
._7{width:7.664533pt;}
._11{width:9.261333pt;}
._16{width:10.692800pt;}
._12{width:11.708533pt;}
._10{width:13.312533pt;}
._1b{width:14.753333pt;}
._1a{width:16.033333pt;}
._e{width:19.675733pt;}
._f{width:21.306400pt;}
._19{width:27.010667pt;}
._1c{width:29.581600pt;}
._18{width:30.923200pt;}
._1e{width:38.617920pt;}
._d{width:145.164800pt;}
._1f{width:396.606400pt;}
._14{width:401.421867pt;}
._0{width:514.133333pt;}
._1d{width:835.606400pt;}
._3{width:838.379733pt;}
._17{width:841.979733pt;}
.fs8{font-size:27.984000pt;}
.fs6{font-size:35.757333pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y48{bottom:94.369200pt;}
.y7e{bottom:94.381467pt;}
.y5b{bottom:94.442400pt;}
.y1f{bottom:94.511200pt;}
.ya3{bottom:97.151067pt;}
.y47{bottom:112.523867pt;}
.y7d{bottom:112.536133pt;}
.y1e{bottom:112.558533pt;}
.y5a{bottom:112.597067pt;}
.y1d{bottom:130.605867pt;}
.y46{bottom:130.678533pt;}
.y7c{bottom:130.690800pt;}
.y59{bottom:130.751733pt;}
.ya2{bottom:136.141067pt;}
.y1c{bottom:148.653200pt;}
.y45{bottom:148.833200pt;}
.y7b{bottom:148.845467pt;}
.y58{bottom:148.906400pt;}
.ya1{bottom:154.648400pt;}
.y1b{bottom:166.769200pt;}
.y44{bottom:166.987867pt;}
.y7a{bottom:167.000133pt;}
.y57{bottom:167.061067pt;}
.ya0{bottom:173.155733pt;}
.y1a{bottom:184.816533pt;}
.y43{bottom:185.142533pt;}
.y79{bottom:185.154800pt;}
.y56{bottom:185.215733pt;}
.y9f{bottom:191.663067pt;}
.y19{bottom:202.863867pt;}
.y42{bottom:203.297200pt;}
.y78{bottom:203.309467pt;}
.y55{bottom:203.370400pt;}
.y9e{bottom:210.170400pt;}
.y18{bottom:220.911200pt;}
.y41{bottom:221.451867pt;}
.y77{bottom:221.464133pt;}
.y54{bottom:221.525067pt;}
.y9d{bottom:228.677733pt;}
.y17{bottom:238.958533pt;}
.y40{bottom:239.606533pt;}
.y76{bottom:239.618800pt;}
.y53{bottom:239.679733pt;}
.y9c{bottom:247.185067pt;}
.y16{bottom:257.005867pt;}
.y3f{bottom:257.761200pt;}
.y75{bottom:257.773467pt;}
.y52{bottom:257.834400pt;}
.y9b{bottom:265.692400pt;}
.y15{bottom:275.053200pt;}
.y3e{bottom:275.915867pt;}
.y74{bottom:275.928133pt;}
.y51{bottom:275.989067pt;}
.y9a{bottom:284.199733pt;}
.y14{bottom:293.100533pt;}
.y3d{bottom:294.070533pt;}
.y73{bottom:294.082800pt;}
.y50{bottom:294.143733pt;}
.y99{bottom:302.707067pt;}
.y13{bottom:311.147867pt;}
.y3c{bottom:312.225200pt;}
.y72{bottom:312.237467pt;}
.y4f{bottom:312.298400pt;}
.y98{bottom:321.214400pt;}
.y12{bottom:329.195200pt;}
.y3b{bottom:330.379867pt;}
.y71{bottom:330.392133pt;}
.y4e{bottom:330.453067pt;}
.y97{bottom:339.721733pt;}
.y11{bottom:347.242533pt;}
.y3a{bottom:348.534533pt;}
.y70{bottom:348.546800pt;}
.y4d{bottom:348.607733pt;}
.y96{bottom:358.229067pt;}
.y10{bottom:365.289867pt;}
.y39{bottom:366.689200pt;}
.y6f{bottom:366.701467pt;}
.y4c{bottom:366.759333pt;}
.y95{bottom:376.736400pt;}
.yf{bottom:383.337200pt;}
.y38{bottom:384.843867pt;}
.y6e{bottom:384.856133pt;}
.y4b{bottom:384.911067pt;}
.y94{bottom:395.243733pt;}
.y37{bottom:402.998533pt;}
.y6d{bottom:403.010800pt;}
.y4a{bottom:403.062667pt;}
.y93{bottom:413.751067pt;}
.y36{bottom:421.153200pt;}
.y6c{bottom:421.165467pt;}
.yb6{bottom:430.170267pt;}
.y92{bottom:432.258400pt;}
.y35{bottom:439.307867pt;}
.y6b{bottom:439.320133pt;}
.yb5{bottom:448.170267pt;}
.y91{bottom:450.765733pt;}
.y34{bottom:457.462533pt;}
.y6a{bottom:457.474800pt;}
.ye{bottom:463.952533pt;}
.yb4{bottom:466.170267pt;}
.y90{bottom:469.273067pt;}
.y33{bottom:475.617200pt;}
.y69{bottom:475.629467pt;}
.yd{bottom:482.672533pt;}
.yb3{bottom:484.170267pt;}
.y8f{bottom:487.780400pt;}
.y32{bottom:493.771867pt;}
.y68{bottom:493.784133pt;}
.yc{bottom:501.392533pt;}
.yb2{bottom:502.170267pt;}
.y8e{bottom:506.287733pt;}
.y31{bottom:511.926533pt;}
.y67{bottom:511.938800pt;}
.yb1{bottom:520.170267pt;}
.y8d{bottom:524.795067pt;}
.y30{bottom:530.081200pt;}
.y66{bottom:530.093467pt;}
.y8c{bottom:543.302400pt;}
.yb{bottom:546.560133pt;}
.y2f{bottom:548.235867pt;}
.y65{bottom:548.248133pt;}
.yb0{bottom:549.503600pt;}
.y8b{bottom:561.809733pt;}
.y2e{bottom:566.390533pt;}
.y64{bottom:566.402800pt;}
.ya{bottom:574.616133pt;}
.y8a{bottom:580.317067pt;}
.y2d{bottom:584.545200pt;}
.y63{bottom:584.557467pt;}
.yaf{bottom:586.385200pt;}
.y89{bottom:598.824400pt;}
.y9{bottom:602.672133pt;}
.y2c{bottom:602.699867pt;}
.y62{bottom:602.712133pt;}
.yae{bottom:604.386533pt;}
.y88{bottom:617.331733pt;}
.y2b{bottom:620.854533pt;}
.y61{bottom:620.866800pt;}
.yad{bottom:622.387867pt;}
.y8{bottom:630.728133pt;}
.y87{bottom:635.839067pt;}
.y2a{bottom:639.009200pt;}
.y60{bottom:639.021467pt;}
.yac{bottom:640.389200pt;}
.y86{bottom:654.346400pt;}
.y29{bottom:657.163867pt;}
.y5f{bottom:657.176133pt;}
.yab{bottom:658.390533pt;}
.y7{bottom:658.781200pt;}
.y85{bottom:672.853733pt;}
.y28{bottom:675.318533pt;}
.y5e{bottom:675.330800pt;}
.yaa{bottom:676.391867pt;}
.y84{bottom:691.361067pt;}
.y27{bottom:693.473200pt;}
.y5d{bottom:693.485467pt;}
.ya9{bottom:694.393200pt;}
.y83{bottom:709.868400pt;}
.y26{bottom:711.627867pt;}
.y5c{bottom:711.640133pt;}
.ya8{bottom:712.394533pt;}
.y6{bottom:713.288133pt;}
.y82{bottom:728.375733pt;}
.y25{bottom:729.782533pt;}
.ya7{bottom:730.395867pt;}
.y5{bottom:739.568133pt;}
.y81{bottom:746.883067pt;}
.y24{bottom:747.937200pt;}
.ya6{bottom:748.397200pt;}
.y4{bottom:758.288133pt;}
.y80{bottom:765.390400pt;}
.y23{bottom:766.091867pt;}
.ya5{bottom:766.398533pt;}
.y7f{bottom:783.893867pt;}
.y22{bottom:784.246533pt;}
.ya4{bottom:784.399867pt;}
.y3{bottom:784.568133pt;}
.y21{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.hf{height:30.857146pt;}
.h9{height:33.416667pt;}
.h10{height:41.770833pt;}
.h3{height:43.859375pt;}
.h4{height:45.286458pt;}
.h11{height:46.119792pt;}
.h7{height:52.079427pt;}
.hc{height:52.091160pt;}
.hb{height:52.091694pt;}
.he{height:52.094894pt;}
.hd{height:52.262360pt;}
.ha{height:52.335960pt;}
.h8{height:53.037760pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.944400pt;}
.x8{left:73.297067pt;}
.x6{left:74.344400pt;}
.x1{left:75.590533pt;}
.x5{left:93.971067pt;}
.x4{left:204.901067pt;}
.x2{left:206.290000pt;}
.x3{left:207.629333pt;}
}




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