
    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_b9ae65f317df1b0f5528ea7a.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_9b5704de46c7a0b6e3fcbf09.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_6be6c3e37ef483fe1a9e9d38.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_13c0a8e801d9534e3d5d6c7a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27623ca8b095d7efd6b39220.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9fc508c23ad87e314625d584.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7f158bf33cc941d44a1cf80f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2352f9dd8e0a2e9236998901.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_fe268d01a52f001e4bfe7d43.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_33c57b41bfdc0f55ad6cb9f9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.678711;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:ffb;src:url('chunks/assets/font_e90c7999bf056c78b32bdf01.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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;}
.ls6{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.864000px;}
.ls3{letter-spacing:0.936000px;}
.ls7{letter-spacing:1.368000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:8.460000px;}
.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;}
}
.ws22{word-spacing:-20.376000px;}
.ws7{word-spacing:-8.496000px;}
.ws3{word-spacing:-8.460000px;}
.wsa{word-spacing:-1.368000px;}
.ws6{word-spacing:-0.936000px;}
.ws14{word-spacing:-0.864000px;}
.ws26{word-spacing:-0.792000px;}
.ws21{word-spacing:-0.600000px;}
.ws23{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.420000px;}
.wsb{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.300000px;}
.ws15{word-spacing:-0.288000px;}
.wse{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.120000px;}
.ws20{word-spacing:-0.072000px;}
.ws28{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws25{word-spacing:0.060000px;}
.ws4{word-spacing:0.072000px;}
.ws19{word-spacing:0.144000px;}
.ws1e{word-spacing:0.216000px;}
.ws8{word-spacing:0.240000px;}
.ws27{word-spacing:0.288000px;}
.wsc{word-spacing:0.300000px;}
.ws11{word-spacing:0.360000px;}
.ws1f{word-spacing:0.576000px;}
.ws12{word-spacing:0.648000px;}
.ws16{word-spacing:0.720000px;}
.ws1a{word-spacing:0.936000px;}
.ws5{word-spacing:0.960000px;}
.ws2{word-spacing:1.800000px;}
.ws10{word-spacing:2.880000px;}
.ws9{word-spacing:4.200000px;}
.ws1d{word-spacing:5.256000px;}
.ws24{word-spacing:10.656000px;}
.ws0{word-spacing:146.196000px;}
._c{margin-left:-948.820800px;}
._10{margin-left:-12.721200px;}
._12{margin-left:-10.512000px;}
._f{margin-left:-7.612800px;}
._7{margin-left:-6.444000px;}
._11{margin-left:-5.336400px;}
._6{margin-left:-3.960000px;}
._b{margin-left:-2.958000px;}
._0{margin-left:-1.782000px;}
._3{width:1.596000px;}
._2{width:3.432000px;}
._8{width:4.464000px;}
._4{width:5.467200px;}
._9{width:7.330800px;}
._1{width:8.568000px;}
._e{width:9.740400px;}
._a{width:11.232000px;}
._5{width:12.600000px;}
._d{width:21.758400px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y8c{bottom:119.388150px;}
.y67{bottom:119.492100px;}
.yaf{bottom:121.142100px;}
.y1f{bottom:121.660650px;}
.y44{bottom:122.388150px;}
.y8b{bottom:138.288150px;}
.yae{bottom:139.142100px;}
.y66{bottom:139.292100px;}
.y1e{bottom:141.760650px;}
.y43{bottom:142.188150px;}
.yad{bottom:157.142100px;}
.y65{bottom:158.342100px;}
.y42{bottom:161.388150px;}
.y1d{bottom:161.860650px;}
.y8a{bottom:165.692100px;}
.yac{bottom:175.142100px;}
.y64{bottom:177.392100px;}
.y1c{bottom:181.960650px;}
.y89{bottom:187.292100px;}
.y41{bottom:189.068100px;}
.y63{bottom:196.442100px;}
.y1b{bottom:202.060650px;}
.yab{bottom:203.642100px;}
.y88{bottom:208.892100px;}
.y40{bottom:210.974100px;}
.y1a{bottom:222.160650px;}
.y62{bottom:224.074050px;}
.y87{bottom:230.492100px;}
.y3f{bottom:232.880100px;}
.y19{bottom:242.260650px;}
.yaa{bottom:243.392100px;}
.y61{bottom:245.818050px;}
.y86{bottom:252.092100px;}
.y3e{bottom:254.786100px;}
.y18{bottom:262.360650px;}
.ya9{bottom:262.442100px;}
.y60{bottom:267.562050px;}
.y85{bottom:273.692100px;}
.y3d{bottom:276.692100px;}
.ya8{bottom:281.492100px;}
.y17{bottom:282.460650px;}
.y5f{bottom:289.306050px;}
.ya7{bottom:300.542100px;}
.y16{bottom:302.560650px;}
.y5e{bottom:311.050050px;}
.y84{bottom:315.992100px;}
.y3c{bottom:319.592100px;}
.y15{bottom:331.146600px;}
.y5d{bottom:332.794050px;}
.y83{bottom:334.892100px;}
.ya6{bottom:338.642100px;}
.y3b{bottom:338.792100px;}
.y82{bottom:353.792100px;}
.y14{bottom:353.952600px;}
.y5c{bottom:354.538050px;}
.ya5{bottom:357.692100px;}
.y3a{bottom:357.992100px;}
.y81{bottom:372.692100px;}
.y5b{bottom:376.282050px;}
.ya4{bottom:376.742100px;}
.y13{bottom:376.758600px;}
.y39{bottom:377.192100px;}
.y80{bottom:391.592100px;}
.y38{bottom:396.392100px;}
.y12{bottom:399.564600px;}
.ya3{bottom:404.350050px;}
.y7f{bottom:410.492100px;}
.y37{bottom:415.592100px;}
.y5a{bottom:418.888050px;}
.ya2{bottom:426.094050px;}
.y7e{bottom:429.392100px;}
.y59{bottom:440.632050px;}
.y36{bottom:443.260050px;}
.y11{bottom:444.264600px;}
.ya1{bottom:447.838050px;}
.y7d{bottom:456.796050px;}
.y58{bottom:462.376050px;}
.y10{bottom:464.364600px;}
.y35{bottom:465.166050px;}
.ya0{bottom:469.582050px;}
.y7c{bottom:478.396050px;}
.y57{bottom:484.120050px;}
.yf{bottom:484.464600px;}
.y34{bottom:487.072050px;}
.y9f{bottom:491.326050px;}
.y7b{bottom:499.996050px;}
.ye{bottom:504.564600px;}
.y56{bottom:505.864050px;}
.y33{bottom:508.978050px;}
.y9e{bottom:513.070050px;}
.y7a{bottom:521.596050px;}
.yd{bottom:524.664600px;}
.y32{bottom:530.884050px;}
.y9d{bottom:534.814050px;}
.y79{bottom:543.196050px;}
.yc{bottom:544.764600px;}
.y55{bottom:548.470050px;}
.y31{bottom:552.790050px;}
.y9c{bottom:556.558050px;}
.yb{bottom:564.864600px;}
.y54{bottom:570.214050px;}
.y30{bottom:574.696050px;}
.y9b{bottom:578.302050px;}
.ya{bottom:584.964600px;}
.y78{bottom:585.496050px;}
.y53{bottom:591.958050px;}
.y9a{bottom:600.046050px;}
.y77{bottom:604.396050px;}
.y9{bottom:605.064600px;}
.y2f{bottom:617.596050px;}
.y76{bottom:623.296050px;}
.y8{bottom:633.656550px;}
.y52{bottom:634.564050px;}
.y2e{bottom:636.796050px;}
.y75{bottom:642.196050px;}
.y99{bottom:642.646050px;}
.y2d{bottom:655.996050px;}
.y51{bottom:656.308050px;}
.y7{bottom:656.462550px;}
.y74{bottom:661.096050px;}
.y98{bottom:661.696050px;}
.y2c{bottom:675.196050px;}
.y50{bottom:678.052050px;}
.y6{bottom:679.268550px;}
.y73{bottom:679.996050px;}
.y97{bottom:680.746050px;}
.y2b{bottom:694.396050px;}
.y72{bottom:698.896050px;}
.y4f{bottom:699.796050px;}
.y5{bottom:702.068550px;}
.y2a{bottom:713.596050px;}
.y71{bottom:717.796050px;}
.y96{bottom:718.846050px;}
.y29{bottom:732.796050px;}
.y70{bottom:736.696050px;}
.y95{bottom:737.896050px;}
.y4e{bottom:742.396050px;}
.y28{bottom:751.996050px;}
.y6f{bottom:755.596050px;}
.y94{bottom:756.946050px;}
.y4d{bottom:761.446050px;}
.y4{bottom:769.854300px;}
.y27{bottom:771.196050px;}
.y4c{bottom:780.496050px;}
.y6e{bottom:783.000150px;}
.y93{bottom:784.518000px;}
.y26{bottom:790.396050px;}
.y3{bottom:792.354300px;}
.y4b{bottom:799.546050px;}
.y6d{bottom:804.600150px;}
.y92{bottom:806.262000px;}
.y25{bottom:818.070000px;}
.y4a{bottom:818.596050px;}
.y6c{bottom:826.200150px;}
.y91{bottom:828.006000px;}
.y49{bottom:837.646050px;}
.y24{bottom:839.976000px;}
.y6b{bottom:847.800150px;}
.y90{bottom:849.750000px;}
.y48{bottom:856.696050px;}
.y2{bottom:859.500000px;}
.y23{bottom:861.882000px;}
.y6a{bottom:869.400150px;}
.y22{bottom:883.788000px;}
.y47{bottom:884.262000px;}
.y8f{bottom:892.350000px;}
.y21{bottom:905.694000px;}
.y46{bottom:906.006000px;}
.y8e{bottom:911.400000px;}
.y69{bottom:911.700000px;}
.y20{bottom:927.600000px;}
.y45{bottom:927.750000px;}
.y8d{bottom:930.450000px;}
.y68{bottom:930.600000px;}
.h5{height:39.990234px;}
.h4{height:47.988281px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h6{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x2{left:82.381950px;}
.x3{left:97.263750px;}
.x6{left:112.495950px;}
.x5{left:127.381950px;}
.x8{left:135.528750px;}
.x7{left:142.263750px;}
.x4{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.832000pt;}
.ls7{letter-spacing:1.216000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws22{word-spacing:-18.112000pt;}
.ws7{word-spacing:-7.552000pt;}
.ws3{word-spacing:-7.520000pt;}
.wsa{word-spacing:-1.216000pt;}
.ws6{word-spacing:-0.832000pt;}
.ws14{word-spacing:-0.768000pt;}
.ws26{word-spacing:-0.704000pt;}
.ws21{word-spacing:-0.533333pt;}
.ws23{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.373333pt;}
.wsb{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.266667pt;}
.ws15{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws20{word-spacing:-0.064000pt;}
.ws28{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws25{word-spacing:0.053333pt;}
.ws4{word-spacing:0.064000pt;}
.ws19{word-spacing:0.128000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws8{word-spacing:0.213333pt;}
.ws27{word-spacing:0.256000pt;}
.wsc{word-spacing:0.266667pt;}
.ws11{word-spacing:0.320000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws12{word-spacing:0.576000pt;}
.ws16{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.832000pt;}
.ws5{word-spacing:0.853333pt;}
.ws2{word-spacing:1.600000pt;}
.ws10{word-spacing:2.560000pt;}
.ws9{word-spacing:3.733333pt;}
.ws1d{word-spacing:4.672000pt;}
.ws24{word-spacing:9.472000pt;}
.ws0{word-spacing:129.952000pt;}
._c{margin-left:-843.396267pt;}
._10{margin-left:-11.307733pt;}
._12{margin-left:-9.344000pt;}
._f{margin-left:-6.766933pt;}
._7{margin-left:-5.728000pt;}
._11{margin-left:-4.743467pt;}
._6{margin-left:-3.520000pt;}
._b{margin-left:-2.629333pt;}
._0{margin-left:-1.584000pt;}
._3{width:1.418667pt;}
._2{width:3.050667pt;}
._8{width:3.968000pt;}
._4{width:4.859733pt;}
._9{width:6.516267pt;}
._1{width:7.616000pt;}
._e{width:8.658133pt;}
._a{width:9.984000pt;}
._5{width:11.200000pt;}
._d{width:19.340800pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y8c{bottom:106.122800pt;}
.y67{bottom:106.215200pt;}
.yaf{bottom:107.681867pt;}
.y1f{bottom:108.142800pt;}
.y44{bottom:108.789467pt;}
.y8b{bottom:122.922800pt;}
.yae{bottom:123.681867pt;}
.y66{bottom:123.815200pt;}
.y1e{bottom:126.009467pt;}
.y43{bottom:126.389467pt;}
.yad{bottom:139.681867pt;}
.y65{bottom:140.748533pt;}
.y42{bottom:143.456133pt;}
.y1d{bottom:143.876133pt;}
.y8a{bottom:147.281867pt;}
.yac{bottom:155.681867pt;}
.y64{bottom:157.681867pt;}
.y1c{bottom:161.742800pt;}
.y89{bottom:166.481867pt;}
.y41{bottom:168.060533pt;}
.y63{bottom:174.615200pt;}
.y1b{bottom:179.609467pt;}
.yab{bottom:181.015200pt;}
.y88{bottom:185.681867pt;}
.y40{bottom:187.532533pt;}
.y1a{bottom:197.476133pt;}
.y62{bottom:199.176933pt;}
.y87{bottom:204.881867pt;}
.y3f{bottom:207.004533pt;}
.y19{bottom:215.342800pt;}
.yaa{bottom:216.348533pt;}
.y61{bottom:218.504933pt;}
.y86{bottom:224.081867pt;}
.y3e{bottom:226.476533pt;}
.y18{bottom:233.209467pt;}
.ya9{bottom:233.281867pt;}
.y60{bottom:237.832933pt;}
.y85{bottom:243.281867pt;}
.y3d{bottom:245.948533pt;}
.ya8{bottom:250.215200pt;}
.y17{bottom:251.076133pt;}
.y5f{bottom:257.160933pt;}
.ya7{bottom:267.148533pt;}
.y16{bottom:268.942800pt;}
.y5e{bottom:276.488933pt;}
.y84{bottom:280.881867pt;}
.y3c{bottom:284.081867pt;}
.y15{bottom:294.352533pt;}
.y5d{bottom:295.816933pt;}
.y83{bottom:297.681867pt;}
.ya6{bottom:301.015200pt;}
.y3b{bottom:301.148533pt;}
.y82{bottom:314.481867pt;}
.y14{bottom:314.624533pt;}
.y5c{bottom:315.144933pt;}
.ya5{bottom:317.948533pt;}
.y3a{bottom:318.215200pt;}
.y81{bottom:331.281867pt;}
.y5b{bottom:334.472933pt;}
.ya4{bottom:334.881867pt;}
.y13{bottom:334.896533pt;}
.y39{bottom:335.281867pt;}
.y80{bottom:348.081867pt;}
.y38{bottom:352.348533pt;}
.y12{bottom:355.168533pt;}
.ya3{bottom:359.422267pt;}
.y7f{bottom:364.881867pt;}
.y37{bottom:369.415200pt;}
.y5a{bottom:372.344933pt;}
.ya2{bottom:378.750267pt;}
.y7e{bottom:381.681867pt;}
.y59{bottom:391.672933pt;}
.y36{bottom:394.008933pt;}
.y11{bottom:394.901867pt;}
.ya1{bottom:398.078267pt;}
.y7d{bottom:406.040933pt;}
.y58{bottom:411.000933pt;}
.y10{bottom:412.768533pt;}
.y35{bottom:413.480933pt;}
.ya0{bottom:417.406267pt;}
.y7c{bottom:425.240933pt;}
.y57{bottom:430.328933pt;}
.yf{bottom:430.635200pt;}
.y34{bottom:432.952933pt;}
.y9f{bottom:436.734267pt;}
.y7b{bottom:444.440933pt;}
.ye{bottom:448.501867pt;}
.y56{bottom:449.656933pt;}
.y33{bottom:452.424933pt;}
.y9e{bottom:456.062267pt;}
.y7a{bottom:463.640933pt;}
.yd{bottom:466.368533pt;}
.y32{bottom:471.896933pt;}
.y9d{bottom:475.390267pt;}
.y79{bottom:482.840933pt;}
.yc{bottom:484.235200pt;}
.y55{bottom:487.528933pt;}
.y31{bottom:491.368933pt;}
.y9c{bottom:494.718267pt;}
.yb{bottom:502.101867pt;}
.y54{bottom:506.856933pt;}
.y30{bottom:510.840933pt;}
.y9b{bottom:514.046267pt;}
.ya{bottom:519.968533pt;}
.y78{bottom:520.440933pt;}
.y53{bottom:526.184933pt;}
.y9a{bottom:533.374267pt;}
.y77{bottom:537.240933pt;}
.y9{bottom:537.835200pt;}
.y2f{bottom:548.974267pt;}
.y76{bottom:554.040933pt;}
.y8{bottom:563.250267pt;}
.y52{bottom:564.056933pt;}
.y2e{bottom:566.040933pt;}
.y75{bottom:570.840933pt;}
.y99{bottom:571.240933pt;}
.y2d{bottom:583.107600pt;}
.y51{bottom:583.384933pt;}
.y7{bottom:583.522267pt;}
.y74{bottom:587.640933pt;}
.y98{bottom:588.174267pt;}
.y2c{bottom:600.174267pt;}
.y50{bottom:602.712933pt;}
.y6{bottom:603.794267pt;}
.y73{bottom:604.440933pt;}
.y97{bottom:605.107600pt;}
.y2b{bottom:617.240933pt;}
.y72{bottom:621.240933pt;}
.y4f{bottom:622.040933pt;}
.y5{bottom:624.060933pt;}
.y2a{bottom:634.307600pt;}
.y71{bottom:638.040933pt;}
.y96{bottom:638.974267pt;}
.y29{bottom:651.374267pt;}
.y70{bottom:654.840933pt;}
.y95{bottom:655.907600pt;}
.y4e{bottom:659.907600pt;}
.y28{bottom:668.440933pt;}
.y6f{bottom:671.640933pt;}
.y94{bottom:672.840933pt;}
.y4d{bottom:676.840933pt;}
.y4{bottom:684.314933pt;}
.y27{bottom:685.507600pt;}
.y4c{bottom:693.774267pt;}
.y6e{bottom:696.000133pt;}
.y93{bottom:697.349333pt;}
.y26{bottom:702.574267pt;}
.y3{bottom:704.314933pt;}
.y4b{bottom:710.707600pt;}
.y6d{bottom:715.200133pt;}
.y92{bottom:716.677333pt;}
.y25{bottom:727.173333pt;}
.y4a{bottom:727.640933pt;}
.y6c{bottom:734.400133pt;}
.y91{bottom:736.005333pt;}
.y49{bottom:744.574267pt;}
.y24{bottom:746.645333pt;}
.y6b{bottom:753.600133pt;}
.y90{bottom:755.333333pt;}
.y48{bottom:761.507600pt;}
.y2{bottom:764.000000pt;}
.y23{bottom:766.117333pt;}
.y6a{bottom:772.800133pt;}
.y22{bottom:785.589333pt;}
.y47{bottom:786.010667pt;}
.y8f{bottom:793.200000pt;}
.y21{bottom:805.061333pt;}
.y46{bottom:805.338667pt;}
.y8e{bottom:810.133333pt;}
.y69{bottom:810.400000pt;}
.y20{bottom:824.533333pt;}
.y45{bottom:824.666667pt;}
.y8d{bottom:827.066667pt;}
.y68{bottom:827.200000pt;}
.h5{height:35.546875pt;}
.h4{height:42.656250pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h6{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x2{left:73.228400pt;}
.x3{left:86.456667pt;}
.x6{left:99.996400pt;}
.x5{left:113.228400pt;}
.x8{left:120.470000pt;}
.x7{left:126.456667pt;}
.x4{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; }
  