
    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_b263afd89fbe13fb23dbc689.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_8aa165ba28cdd211a55a210e.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_3008696aa184efaae393cb62.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dc68d7368a1119f58641ce15.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2767576d5d26429545595a98.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_2e42633b2805eb04e39d047f.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_2db73e7595903e49a2b9b91d.woff')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.140000px;}
.ls17{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.936000px;}
.ls14{letter-spacing:2.376000px;}
.ls8{letter-spacing:4.260000px;}
.ls5{letter-spacing:4.560000px;}
.ls18{letter-spacing:4.752000px;}
.ls11{letter-spacing:8.400000px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.lsa{letter-spacing:75.240000px;}
.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:-48.528000px;}
.ws6{word-spacing:-40.440000px;}
.ws8{word-spacing:-32.352000px;}
.wsb{word-spacing:-32.112000px;}
.ws9{word-spacing:-31.824000px;}
.ws5{word-spacing:-16.860000px;}
.wsa{word-spacing:-13.488000px;}
.ws7{word-spacing:-12.336000px;}
.ws0{word-spacing:-8.520000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:34.740000px;}
.ws3{word-spacing:184.560000px;}
._0{margin-left:-948.900000px;}
._d{margin-left:-19.896000px;}
._13{margin-left:-9.600000px;}
._c{margin-left:-7.560000px;}
._1{margin-left:-5.940000px;}
._e{margin-left:-4.152000px;}
._6{margin-left:-3.120000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._7{width:2.892000px;}
._4{width:4.200000px;}
._8{width:5.328000px;}
._9{width:7.068000px;}
._5{width:8.520000px;}
._b{width:9.840000px;}
._a{width:10.848000px;}
._f{width:12.048000px;}
._10{width:13.104000px;}
._14{width:15.048000px;}
._15{width:16.320000px;}
._12{width:57.468000px;}
._11{width:70.020000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:55.500000px;}
.y23{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y8b{bottom:117.222300px;}
.y66{bottom:117.225150px;}
.y21{bottom:117.368550px;}
.y3a{bottom:118.498800px;}
.yb6{bottom:119.094150px;}
.y51{bottom:120.785850px;}
.yb5{bottom:137.094150px;}
.y65{bottom:138.969150px;}
.y20{bottom:139.112550px;}
.y8a{bottom:139.128300px;}
.y39{bottom:139.648800px;}
.y50{bottom:142.691850px;}
.yb4{bottom:155.094150px;}
.y64{bottom:160.713150px;}
.y38{bottom:160.798800px;}
.y1f{bottom:160.856550px;}
.y89{bottom:161.034300px;}
.y4f{bottom:164.597850px;}
.yb3{bottom:173.094150px;}
.y63{bottom:182.457150px;}
.y1e{bottom:182.600550px;}
.y88{bottom:182.940300px;}
.y4e{bottom:186.503850px;}
.yb2{bottom:191.094150px;}
.y62{bottom:204.201150px;}
.y1d{bottom:204.344550px;}
.y87{bottom:204.846300px;}
.y4d{bottom:208.409850px;}
.yb1{bottom:220.344150px;}
.y61{bottom:225.945150px;}
.y1c{bottom:226.088550px;}
.y86{bottom:226.752300px;}
.y4c{bottom:230.315850px;}
.y60{bottom:247.689150px;}
.y1b{bottom:247.832550px;}
.y85{bottom:248.658300px;}
.y4b{bottom:252.221850px;}
.yb0{bottom:261.594150px;}
.y5f{bottom:268.983150px;}
.y1a{bottom:269.576550px;}
.y84{bottom:270.564300px;}
.y4a{bottom:274.127850px;}
.yaf{bottom:279.444150px;}
.y5e{bottom:290.277150px;}
.y19{bottom:291.320550px;}
.y83{bottom:292.470300px;}
.y49{bottom:296.033850px;}
.yae{bottom:297.294150px;}
.y5d{bottom:311.577150px;}
.y18{bottom:313.064550px;}
.y82{bottom:314.376300px;}
.yad{bottom:315.144150px;}
.y48{bottom:317.933850px;}
.yac{bottom:332.994150px;}
.y17{bottom:334.808550px;}
.y81{bottom:336.282300px;}
.yab{bottom:350.844150px;}
.y5c{bottom:355.113150px;}
.y16{bottom:356.552550px;}
.y80{bottom:358.188300px;}
.y47{bottom:362.921850px;}
.yaa{bottom:368.694150px;}
.y5b{bottom:376.407150px;}
.y15{bottom:378.296550px;}
.y7f{bottom:380.094300px;}
.y46{bottom:384.827850px;}
.ya9{bottom:386.544150px;}
.y5a{bottom:397.701150px;}
.y14{bottom:400.040550px;}
.y7e{bottom:402.000300px;}
.ya8{bottom:404.394150px;}
.y45{bottom:406.733850px;}
.y59{bottom:418.995150px;}
.y13{bottom:421.784550px;}
.ya7{bottom:422.244150px;}
.y7d{bottom:423.900300px;}
.ya6{bottom:440.094150px;}
.y58{bottom:440.289150px;}
.y12{bottom:443.528550px;}
.ya5{bottom:457.944150px;}
.y57{bottom:461.583150px;}
.y11{bottom:465.272550px;}
.y7c{bottom:467.574000px;}
.ya4{bottom:475.794150px;}
.y56{bottom:482.877150px;}
.y10{bottom:487.016550px;}
.y7b{bottom:489.480000px;}
.y37{bottom:493.004100px;}
.ya3{bottom:493.644150px;}
.yf{bottom:508.760550px;}
.y7a{bottom:511.386000px;}
.ya2{bottom:511.494150px;}
.ya1{bottom:529.344150px;}
.ye{bottom:530.504550px;}
.y79{bottom:533.292000px;}
.y36{bottom:535.003950px;}
.ya0{bottom:547.194150px;}
.yd{bottom:552.248550px;}
.y78{bottom:555.198000px;}
.y35{bottom:556.153950px;}
.y9f{bottom:571.428000px;}
.yc{bottom:573.992550px;}
.y77{bottom:577.104000px;}
.y34{bottom:577.303950px;}
.yb{bottom:595.736550px;}
.y33{bottom:598.453950px;}
.y76{bottom:599.010000px;}
.y9e{bottom:613.128000px;}
.ya{bottom:617.480550px;}
.y32{bottom:619.603950px;}
.y75{bottom:620.916000px;}
.y9d{bottom:628.128000px;}
.y9{bottom:639.224550px;}
.y31{bottom:640.753950px;}
.y74{bottom:642.822000px;}
.y9c{bottom:643.128000px;}
.y9b{bottom:658.128000px;}
.y8{bottom:660.968550px;}
.y30{bottom:661.903950px;}
.y73{bottom:664.728000px;}
.y9a{bottom:673.128000px;}
.y7{bottom:682.718550px;}
.y2f{bottom:683.053950px;}
.y72{bottom:686.634000px;}
.y99{bottom:688.128000px;}
.y98{bottom:703.128000px;}
.y2e{bottom:704.203950px;}
.y71{bottom:708.540000px;}
.y97{bottom:718.128000px;}
.y44{bottom:718.904100px;}
.y2d{bottom:725.353950px;}
.y6{bottom:727.718550px;}
.y70{bottom:730.446000px;}
.y96{bottom:733.128000px;}
.y2c{bottom:746.503950px;}
.y95{bottom:748.128000px;}
.y6f{bottom:752.352000px;}
.y43{bottom:760.855950px;}
.y94{bottom:763.128000px;}
.y2b{bottom:767.653950px;}
.y5{bottom:769.854300px;}
.y6e{bottom:774.258000px;}
.y93{bottom:778.128000px;}
.y42{bottom:782.761950px;}
.y2a{bottom:788.803950px;}
.y4{bottom:792.354300px;}
.y92{bottom:793.128000px;}
.y6d{bottom:796.164000px;}
.y41{bottom:804.667950px;}
.y91{bottom:808.128000px;}
.y29{bottom:809.953950px;}
.y6c{bottom:818.070000px;}
.y90{bottom:823.128000px;}
.y40{bottom:826.573950px;}
.y28{bottom:831.103950px;}
.y6b{bottom:839.976000px;}
.y55{bottom:843.600000px;}
.y8f{bottom:844.500000px;}
.y3f{bottom:848.479950px;}
.y27{bottom:852.253950px;}
.y3{bottom:859.500000px;}
.y6a{bottom:861.882000px;}
.y3e{bottom:870.385950px;}
.y69{bottom:883.788000px;}
.y54{bottom:885.612000px;}
.y8e{bottom:886.488000px;}
.y2{bottom:889.500000px;}
.y3d{bottom:892.291950px;}
.y26{bottom:894.553950px;}
.y68{bottom:905.694000px;}
.y53{bottom:906.906000px;}
.y8d{bottom:907.494000px;}
.y3c{bottom:914.197950px;}
.y25{bottom:915.703950px;}
.y67{bottom:927.600000px;}
.y52{bottom:928.200000px;}
.y8c{bottom:928.500000px;}
.y3b{bottom:936.103950px;}
.y24{bottom:936.853950px;}
.h7{height:39.888000px;}
.h5{height:39.990234px;}
.h8{height:40.757812px;}
.h6{height:49.860000px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.381950px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x5{left:135.000000px;}
.x6{left:263.415000px;}
.x1{left:635.390550px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.013333pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.832000pt;}
.ls14{letter-spacing:2.112000pt;}
.ls8{letter-spacing:3.786667pt;}
.ls5{letter-spacing:4.053333pt;}
.ls18{letter-spacing:4.224000pt;}
.ls11{letter-spacing:7.466667pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.lsa{letter-spacing:66.880000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws6{word-spacing:-35.946667pt;}
.ws8{word-spacing:-28.757333pt;}
.wsb{word-spacing:-28.544000pt;}
.ws9{word-spacing:-28.288000pt;}
.ws5{word-spacing:-14.986667pt;}
.wsa{word-spacing:-11.989333pt;}
.ws7{word-spacing:-10.965333pt;}
.ws0{word-spacing:-7.573333pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:30.880000pt;}
.ws3{word-spacing:164.053333pt;}
._0{margin-left:-843.466667pt;}
._d{margin-left:-17.685333pt;}
._13{margin-left:-8.533333pt;}
._c{margin-left:-6.720000pt;}
._1{margin-left:-5.280000pt;}
._e{margin-left:-3.690667pt;}
._6{margin-left:-2.773333pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._7{width:2.570667pt;}
._4{width:3.733333pt;}
._8{width:4.736000pt;}
._9{width:6.282667pt;}
._5{width:7.573333pt;}
._b{width:8.746667pt;}
._a{width:9.642667pt;}
._f{width:10.709333pt;}
._10{width:11.648000pt;}
._14{width:13.376000pt;}
._15{width:14.506667pt;}
._12{width:51.082667pt;}
._11{width:62.240000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:49.333333pt;}
.y23{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y8b{bottom:104.197600pt;}
.y66{bottom:104.200133pt;}
.y21{bottom:104.327600pt;}
.y3a{bottom:105.332267pt;}
.yb6{bottom:105.861467pt;}
.y51{bottom:107.365200pt;}
.yb5{bottom:121.861467pt;}
.y65{bottom:123.528133pt;}
.y20{bottom:123.655600pt;}
.y8a{bottom:123.669600pt;}
.y39{bottom:124.132267pt;}
.y50{bottom:126.837200pt;}
.yb4{bottom:137.861467pt;}
.y64{bottom:142.856133pt;}
.y38{bottom:142.932267pt;}
.y1f{bottom:142.983600pt;}
.y89{bottom:143.141600pt;}
.y4f{bottom:146.309200pt;}
.yb3{bottom:153.861467pt;}
.y63{bottom:162.184133pt;}
.y1e{bottom:162.311600pt;}
.y88{bottom:162.613600pt;}
.y4e{bottom:165.781200pt;}
.yb2{bottom:169.861467pt;}
.y62{bottom:181.512133pt;}
.y1d{bottom:181.639600pt;}
.y87{bottom:182.085600pt;}
.y4d{bottom:185.253200pt;}
.yb1{bottom:195.861467pt;}
.y61{bottom:200.840133pt;}
.y1c{bottom:200.967600pt;}
.y86{bottom:201.557600pt;}
.y4c{bottom:204.725200pt;}
.y60{bottom:220.168133pt;}
.y1b{bottom:220.295600pt;}
.y85{bottom:221.029600pt;}
.y4b{bottom:224.197200pt;}
.yb0{bottom:232.528133pt;}
.y5f{bottom:239.096133pt;}
.y1a{bottom:239.623600pt;}
.y84{bottom:240.501600pt;}
.y4a{bottom:243.669200pt;}
.yaf{bottom:248.394800pt;}
.y5e{bottom:258.024133pt;}
.y19{bottom:258.951600pt;}
.y83{bottom:259.973600pt;}
.y49{bottom:263.141200pt;}
.yae{bottom:264.261467pt;}
.y5d{bottom:276.957467pt;}
.y18{bottom:278.279600pt;}
.y82{bottom:279.445600pt;}
.yad{bottom:280.128133pt;}
.y48{bottom:282.607867pt;}
.yac{bottom:295.994800pt;}
.y17{bottom:297.607600pt;}
.y81{bottom:298.917600pt;}
.yab{bottom:311.861467pt;}
.y5c{bottom:315.656133pt;}
.y16{bottom:316.935600pt;}
.y80{bottom:318.389600pt;}
.y47{bottom:322.597200pt;}
.yaa{bottom:327.728133pt;}
.y5b{bottom:334.584133pt;}
.y15{bottom:336.263600pt;}
.y7f{bottom:337.861600pt;}
.y46{bottom:342.069200pt;}
.ya9{bottom:343.594800pt;}
.y5a{bottom:353.512133pt;}
.y14{bottom:355.591600pt;}
.y7e{bottom:357.333600pt;}
.ya8{bottom:359.461467pt;}
.y45{bottom:361.541200pt;}
.y59{bottom:372.440133pt;}
.y13{bottom:374.919600pt;}
.ya7{bottom:375.328133pt;}
.y7d{bottom:376.800267pt;}
.ya6{bottom:391.194800pt;}
.y58{bottom:391.368133pt;}
.y12{bottom:394.247600pt;}
.ya5{bottom:407.061467pt;}
.y57{bottom:410.296133pt;}
.y11{bottom:413.575600pt;}
.y7c{bottom:415.621333pt;}
.ya4{bottom:422.928133pt;}
.y56{bottom:429.224133pt;}
.y10{bottom:432.903600pt;}
.y7b{bottom:435.093333pt;}
.y37{bottom:438.225867pt;}
.ya3{bottom:438.794800pt;}
.yf{bottom:452.231600pt;}
.y7a{bottom:454.565333pt;}
.ya2{bottom:454.661467pt;}
.ya1{bottom:470.528133pt;}
.ye{bottom:471.559600pt;}
.y79{bottom:474.037333pt;}
.y36{bottom:475.559067pt;}
.ya0{bottom:486.394800pt;}
.yd{bottom:490.887600pt;}
.y78{bottom:493.509333pt;}
.y35{bottom:494.359067pt;}
.y9f{bottom:507.936000pt;}
.yc{bottom:510.215600pt;}
.y77{bottom:512.981333pt;}
.y34{bottom:513.159067pt;}
.yb{bottom:529.543600pt;}
.y33{bottom:531.959067pt;}
.y76{bottom:532.453333pt;}
.y9e{bottom:545.002667pt;}
.ya{bottom:548.871600pt;}
.y32{bottom:550.759067pt;}
.y75{bottom:551.925333pt;}
.y9d{bottom:558.336000pt;}
.y9{bottom:568.199600pt;}
.y31{bottom:569.559067pt;}
.y74{bottom:571.397333pt;}
.y9c{bottom:571.669333pt;}
.y9b{bottom:585.002667pt;}
.y8{bottom:587.527600pt;}
.y30{bottom:588.359067pt;}
.y73{bottom:590.869333pt;}
.y9a{bottom:598.336000pt;}
.y7{bottom:606.860933pt;}
.y2f{bottom:607.159067pt;}
.y72{bottom:610.341333pt;}
.y99{bottom:611.669333pt;}
.y98{bottom:625.002667pt;}
.y2e{bottom:625.959067pt;}
.y71{bottom:629.813333pt;}
.y97{bottom:638.336000pt;}
.y44{bottom:639.025867pt;}
.y2d{bottom:644.759067pt;}
.y6{bottom:646.860933pt;}
.y70{bottom:649.285333pt;}
.y96{bottom:651.669333pt;}
.y2c{bottom:663.559067pt;}
.y95{bottom:665.002667pt;}
.y6f{bottom:668.757333pt;}
.y43{bottom:676.316400pt;}
.y94{bottom:678.336000pt;}
.y2b{bottom:682.359067pt;}
.y5{bottom:684.314933pt;}
.y6e{bottom:688.229333pt;}
.y93{bottom:691.669333pt;}
.y42{bottom:695.788400pt;}
.y2a{bottom:701.159067pt;}
.y4{bottom:704.314933pt;}
.y92{bottom:705.002667pt;}
.y6d{bottom:707.701333pt;}
.y41{bottom:715.260400pt;}
.y91{bottom:718.336000pt;}
.y29{bottom:719.959067pt;}
.y6c{bottom:727.173333pt;}
.y90{bottom:731.669333pt;}
.y40{bottom:734.732400pt;}
.y28{bottom:738.759067pt;}
.y6b{bottom:746.645333pt;}
.y55{bottom:749.866667pt;}
.y8f{bottom:750.666667pt;}
.y3f{bottom:754.204400pt;}
.y27{bottom:757.559067pt;}
.y3{bottom:764.000000pt;}
.y6a{bottom:766.117333pt;}
.y3e{bottom:773.676400pt;}
.y69{bottom:785.589333pt;}
.y54{bottom:787.210667pt;}
.y8e{bottom:787.989333pt;}
.y2{bottom:790.666667pt;}
.y3d{bottom:793.148400pt;}
.y26{bottom:795.159067pt;}
.y68{bottom:805.061333pt;}
.y53{bottom:806.138667pt;}
.y8d{bottom:806.661333pt;}
.y3c{bottom:812.620400pt;}
.y25{bottom:813.959067pt;}
.y67{bottom:824.533333pt;}
.y52{bottom:825.066667pt;}
.y8c{bottom:825.333333pt;}
.y3b{bottom:832.092400pt;}
.y24{bottom:832.759067pt;}
.h7{height:35.456000pt;}
.h5{height:35.546875pt;}
.h8{height:36.229167pt;}
.h6{height:44.320000pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.228400pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x5{left:120.000000pt;}
.x6{left:234.146667pt;}
.x1{left:564.791600pt;}
}




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