
    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_d1194fe1d7fd15d2f847ad2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_2a7f8e24ecf8a0da16bb4fae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_7f6ca4adc91a11cda18b8304.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_0924f48e7345609e71dac6bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_e768b90c988849b9f8534e7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_c649fa85362fa1eeccbe318c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_cd1636fd015396f75cca7583.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717285;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_d510221d827c4cd9f687c758.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.816406;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_4d914b6744f68332a8555eb6.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2fd7a2dabc9e3df5b5877b26.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.949219;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_f224be25dbe45397d2415238.woff2')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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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;}
.ls4{letter-spacing:-0.043200px;}
.ls20{letter-spacing:-0.033600px;}
.ls15{letter-spacing:-0.028800px;}
.ls1e{letter-spacing:-0.024000px;}
.ls5{letter-spacing:-0.019200px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001314px;}
.ls10{letter-spacing:0.001500px;}
.ls18{letter-spacing:0.009960px;}
.lsc{letter-spacing:0.011718px;}
.lse{letter-spacing:0.014064px;}
.ls0{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.016404px;}
.ls7{letter-spacing:0.018720px;}
.ls1a{letter-spacing:0.020400px;}
.ls2{letter-spacing:0.024000px;}
.ls13{letter-spacing:0.028800px;}
.lsf{letter-spacing:0.029686px;}
.lsb{letter-spacing:0.033600px;}
.ls6{letter-spacing:0.038400px;}
.ls1{letter-spacing:0.072000px;}
.ls12{letter-spacing:37.570056px;}
.ls11{letter-spacing:44.374620px;}
.lsd{letter-spacing:49.308402px;}
.ls1f{letter-spacing:52.831716px;}
.lsa{letter-spacing:55.702806px;}
.ls19{letter-spacing:58.112160px;}
.ls14{letter-spacing:64.570056px;}
.ls8{letter-spacing:68.093400px;}
.ls1d{letter-spacing:76.308402px;}
.ls1c{letter-spacing:79.831716px;}
.ls16{letter-spacing:91.570056px;}
.ls17{letter-spacing:103.308402px;}
.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;}
}
.ws3{word-spacing:-192.000000px;}
.ws5{word-spacing:-168.000000px;}
.ws9{word-spacing:-144.000000px;}
.ws6{word-spacing:-120.000000px;}
.wsb{word-spacing:-102.000000px;}
.ws4{word-spacing:-53.376000px;}
.wse{word-spacing:-46.737600px;}
.wsf{word-spacing:-46.670400px;}
.ws7{word-spacing:-41.293727px;}
.ws8{word-spacing:-41.264041px;}
.wsa{word-spacing:-40.060800px;}
.ws0{word-spacing:-38.016000px;}
.wsd{word-spacing:-33.384000px;}
.wsc{word-spacing:-28.356000px;}
.ws1{word-spacing:-26.688000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-28.656000px;}
._2{margin-left:-26.688000px;}
._3{margin-left:-5.124000px;}
._0{margin-left:-3.988800px;}
._5{margin-left:-2.988000px;}
._1{margin-left:-1.200000px;}
.fc4{color:rgb(194,20,24);}
.fc2{color:rgb(204,204,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,204);}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs9{font-size:148.431803px;}
.fs2{font-size:168.000000px;}
.fs7{font-size:192.000000px;}
.fs1{font-size:240.000000px;}
.fs8{font-size:264.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y3{bottom:7.799950px;}
.y61{bottom:9.599950px;}
.y2{bottom:30.599980px;}
.y99{bottom:53.099950px;}
.y4c{bottom:63.599965px;}
.y98{bottom:86.099980px;}
.y24{bottom:93.899950px;}
.y3d{bottom:94.199995px;}
.y4b{bottom:96.899965px;}
.y6d{bottom:117.149995px;}
.y97{bottom:117.899980px;}
.yae{bottom:119.699980px;}
.yf{bottom:123.839965px;}
.y16{bottom:128.399980px;}
.y32{bottom:130.559965px;}
.y3c{bottom:133.559965px;}
.ya4{bottom:135.719965px;}
.y4a{bottom:135.899980px;}
.y6c{bottom:145.649980px;}
.y23{bottom:146.879965px;}
.y7f{bottom:150.299965px;}
.y8b{bottom:153.899980px;}
.y96{bottom:158.099965px;}
.ye{bottom:158.339965px;}
.yad{bottom:159.059965px;}
.y56{bottom:172.199980px;}
.y6b{bottom:172.649980px;}
.y49{bottom:178.379965px;}
.y31{bottom:178.559965px;}
.y15{bottom:179.399980px;}
.y3b{bottom:181.199980px;}
.y75{bottom:188.099965px;}
.ya3{bottom:188.399980px;}
.y95{bottom:191.099965px;}
.yd{bottom:192.839965px;}
.y8a{bottom:195.719965px;}
.y7e{bottom:196.799965px;}
.y6a{bottom:199.529980px;}
.yac{bottom:205.559965px;}
.y22{bottom:206.399980px;}
.y55{bottom:211.199980px;}
.y3a{bottom:220.559965px;}
.y74{bottom:221.099965px;}
.y94{bottom:222.899980px;}
.y30{bottom:225.059965px;}
.ya2{bottom:228.899980px;}
.yc{bottom:230.459980px;}
.y14{bottom:232.379965px;}
.y60{bottom:236.699980px;}
.y48{bottom:240.059965px;}
.y7d{bottom:242.219965px;}
.y21{bottom:245.399980px;}
.y89{bottom:248.099965px;}
.y54{bottom:250.199980px;}
.y73{bottom:252.599965px;}
.yab{bottom:253.799965px;}
.y93{bottom:264.719965px;}
.ya1{bottom:267.899980px;}
.yb3{bottom:269.519965px;}
.y69{bottom:269.699980px;}
.y39{bottom:269.879965px;}
.y2f{bottom:273.059965px;}
.y5f{bottom:275.699980px;}
.y88{bottom:281.099965px;}
.yb{bottom:281.459980px;}
.y72{bottom:285.599965px;}
.y20{bottom:285.899980px;}
.y47{bottom:287.099965px;}
.y53{bottom:287.699980px;}
.y13{bottom:295.379965px;}
.yaa{bottom:299.219965px;}
.y68{bottom:308.699980px;}
.ya0{bottom:309.719965px;}
.y87{bottom:312.899980px;}
.y5e{bottom:313.199980px;}
.y46{bottom:318.599965px;}
.y92{bottom:320.219965px;}
.y2e{bottom:322.379965px;}
.y1f{bottom:324.899980px;}
.y52{bottom:326.699980px;}
.yb2{bottom:329.519965px;}
.y38{bottom:331.559965px;}
.ya{bottom:333.959980px;}
.y67{bottom:347.699980px;}
.y71{bottom:350.099965px;}
.y45{bottom:351.899980px;}
.y5d{bottom:352.199980px;}
.ya9{bottom:353.699980px;}
.y86{bottom:354.719965px;}
.y12{bottom:358.379965px;}
.y9f{bottom:364.559965px;}
.y51{bottom:365.699980px;}
.y1e{bottom:366.299965px;}
.y91{bottom:375.719965px;}
.y37{bottom:380.879965px;}
.y2d{bottom:383.099965px;}
.y9{bottom:384.119980px;}
.y66{bottom:385.199980px;}
.yb1{bottom:389.519965px;}
.y44{bottom:390.899980px;}
.y5c{bottom:391.199980px;}
.ya8{bottom:393.059965px;}
.y50{bottom:404.699980px;}
.y7c{bottom:405.599965px;}
.y85{bottom:408.599965px;}
.y1d{bottom:412.799965px;}
.y9e{bottom:413.219965px;}
.y2c{bottom:414.599965px;}
.y70{bottom:414.899980px;}
.y11{bottom:422.399980px;}
.y8{bottom:423.899980px;}
.y65{bottom:424.199980px;}
.y5b{bottom:430.559965px;}
.y90{bottom:430.799965px;}
.y43{bottom:432.059965px;}
.y7b{bottom:438.599965px;}
.ya7{bottom:440.699980px;}
.y84{bottom:441.599965px;}
.y4f{bottom:443.699980px;}
.y36{bottom:443.879965px;}
.y2b{bottom:447.599965px;}
.yb0{bottom:455.759965px;}
.y1c{bottom:457.799965px;}
.y64{bottom:463.559965px;}
.y9d{bottom:468.299965px;}
.y7{bottom:469.019965px;}
.y7a{bottom:470.099965px;}
.y83{bottom:473.399980px;}
.y10{bottom:473.879965px;}
.y8f{bottom:476.219965px;}
.y42{bottom:478.559965px;}
.y2a{bottom:479.399980px;}
.ya6{bottom:480.059965px;}
.y4e{bottom:483.059965px;}
.y79{bottom:503.099965px;}
.y1b{bottom:503.219965px;}
.y35{bottom:505.559965px;}
.y63{bottom:511.199980px;}
.y9c{bottom:513.719965px;}
.y82{bottom:515.219965px;}
.y29{bottom:519.599965px;}
.ya5{bottom:527.699980px;}
.y6{bottom:528.599965px;}
.y41{bottom:529.379965px;}
.y8e{bottom:531.299965px;}
.y78{bottom:534.599965px;}
.y5a{bottom:543.899980px;}
.yaf{bottom:549.599965px;}
.y62{bottom:550.559965px;}
.y28{bottom:552.599965px;}
.y34{bottom:554.879965px;}
.y1a{bottom:558.899980px;}
.y4d{bottom:565.559965px;}
.y6f{bottom:567.299965px;}
.y77{bottom:567.599965px;}
.y9b{bottom:568.799965px;}
.y81{bottom:570.719965px;}
.y8d{bottom:576.719965px;}
.y27{bottom:584.399980px;}
.y40{bottom:588.599965px;}
.y59{bottom:594.899980px;}
.y76{bottom:599.399980px;}
.y19{bottom:611.399980px;}
.y6e{bottom:612.719965px;}
.y9a{bottom:613.799965px;}
.y33{bottom:617.399980px;}
.y3f{bottom:622.559965px;}
.y80{bottom:626.219815px;}
.y26{bottom:626.399980px;}
.y5{bottom:628.499815px;}
.y8c{bottom:631.799965px;}
.y58{bottom:647.399980px;}
.y17{bottom:648.599965px;}
.y18{bottom:662.399830px;}
.y3e{bottom:671.399980px;}
.y57{bottom:698.399830px;}
.y4{bottom:700.499815px;}
.y25{bottom:729.599815px;}
.h2{height:52.488281px;}
.h8{height:69.890625px;}
.h6{height:82.054688px;}
.he{height:87.480469px;}
.h11{height:91.790039px;}
.h12{height:95.976562px;}
.hd{height:96.093750px;}
.hc{height:107.988281px;}
.h10{height:111.323852px;}
.h5{height:120.058594px;}
.h15{height:122.472656px;}
.hf{height:129.585938px;}
.h7{height:144.070312px;}
.hb{height:151.183594px;}
.h4{height:168.082031px;}
.h9{height:172.781250px;}
.h13{height:175.957031px;}
.h3{height:189.609375px;}
.h14{height:192.457031px;}
.ha{height:264.128906px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x26{left:28.800000px;}
.x2d{left:55.799985px;}
.x17{left:64.799985px;}
.x28{left:73.799985px;}
.x12{left:82.799985px;}
.x10{left:91.799985px;}
.x2e{left:96.299985px;}
.x18{left:100.799985px;}
.x2f{left:109.799985px;}
.x2b{left:114.299985px;}
.x13{left:123.299985px;}
.x29{left:127.799985px;}
.x3{left:133.108575px;}
.x14{left:136.799970px;}
.x19{left:141.299985px;}
.xb{left:143.236515px;}
.x1f{left:145.799985px;}
.x30{left:150.300000px;}
.x1a{left:154.800000px;}
.x2c{left:160.800000px;}
.x2a{left:168.300000px;}
.x15{left:169.800000px;}
.x27{left:177.300000px;}
.x25{left:178.800000px;}
.x1b{left:188.550030px;}
.x16{left:190.800000px;}
.x20{left:199.800000px;}
.x4{left:220.662285px;}
.x21{left:226.800030px;}
.x11{left:237.683775px;}
.x1e{left:260.602755px;}
.x8{left:301.037535px;}
.x6{left:326.686185px;}
.xe{left:329.081235px;}
.x1d{left:360.657450px;}
.xa{left:364.509885px;}
.x7{left:383.724285px;}
.x1c{left:410.702400px;}
.x2{left:441.770220px;}
.x1{left:458.276070px;}
.xf{left:472.277055px;}
.x31{left:487.800000px;}
.x22{left:511.003200px;}
.xd{left:530.462085px;}
.x5{left:539.034285px;}
.x9{left:541.143735px;}
.xc{left:547.132035px;}
.x34{left:589.710645px;}
.x35{left:620.072460px;}
.x32{left:656.104650px;}
.x23{left:671.069550px;}
.x24{left:709.073400px;}
.x33{left:758.131050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.038400pt;}
.ls20{letter-spacing:-0.029867pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls1e{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:-0.017067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001168pt;}
.ls10{letter-spacing:0.001333pt;}
.ls18{letter-spacing:0.008853pt;}
.lsc{letter-spacing:0.010416pt;}
.lse{letter-spacing:0.012501pt;}
.ls0{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.014581pt;}
.ls7{letter-spacing:0.016640pt;}
.ls1a{letter-spacing:0.018133pt;}
.ls2{letter-spacing:0.021333pt;}
.ls13{letter-spacing:0.025600pt;}
.lsf{letter-spacing:0.026388pt;}
.lsb{letter-spacing:0.029867pt;}
.ls6{letter-spacing:0.034133pt;}
.ls1{letter-spacing:0.064000pt;}
.ls12{letter-spacing:33.395605pt;}
.ls11{letter-spacing:39.444107pt;}
.lsd{letter-spacing:43.829691pt;}
.ls1f{letter-spacing:46.961525pt;}
.lsa{letter-spacing:49.513605pt;}
.ls19{letter-spacing:51.655253pt;}
.ls14{letter-spacing:57.395605pt;}
.ls8{letter-spacing:60.527467pt;}
.ls1d{letter-spacing:67.829691pt;}
.ls1c{letter-spacing:70.961525pt;}
.ls16{letter-spacing:81.395605pt;}
.ls17{letter-spacing:91.829691pt;}
.ws3{word-spacing:-170.666667pt;}
.ws5{word-spacing:-149.333333pt;}
.ws9{word-spacing:-128.000000pt;}
.ws6{word-spacing:-106.666667pt;}
.wsb{word-spacing:-90.666667pt;}
.ws4{word-spacing:-47.445333pt;}
.wse{word-spacing:-41.544533pt;}
.wsf{word-spacing:-41.484800pt;}
.ws7{word-spacing:-36.705536pt;}
.ws8{word-spacing:-36.679148pt;}
.wsa{word-spacing:-35.609600pt;}
.ws0{word-spacing:-33.792000pt;}
.wsd{word-spacing:-29.674667pt;}
.wsc{word-spacing:-25.205333pt;}
.ws1{word-spacing:-23.722667pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-25.472000pt;}
._2{margin-left:-23.722667pt;}
._3{margin-left:-4.554667pt;}
._0{margin-left:-3.545600pt;}
._5{margin-left:-2.656000pt;}
._1{margin-left:-1.066667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs9{font-size:131.939380pt;}
.fs2{font-size:149.333333pt;}
.fs7{font-size:170.666667pt;}
.fs1{font-size:213.333333pt;}
.fs8{font-size:234.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y3{bottom:6.933289pt;}
.y61{bottom:8.533289pt;}
.y2{bottom:27.199982pt;}
.y99{bottom:47.199956pt;}
.y4c{bottom:56.533302pt;}
.y98{bottom:76.533316pt;}
.y24{bottom:83.466622pt;}
.y3d{bottom:83.733329pt;}
.y4b{bottom:86.133302pt;}
.y6d{bottom:104.133329pt;}
.y97{bottom:104.799982pt;}
.yae{bottom:106.399982pt;}
.yf{bottom:110.079969pt;}
.y16{bottom:114.133316pt;}
.y32{bottom:116.053302pt;}
.y3c{bottom:118.719969pt;}
.ya4{bottom:120.639969pt;}
.y4a{bottom:120.799982pt;}
.y6c{bottom:129.466649pt;}
.y23{bottom:130.559969pt;}
.y7f{bottom:133.599969pt;}
.y8b{bottom:136.799982pt;}
.y96{bottom:140.533302pt;}
.ye{bottom:140.746636pt;}
.yad{bottom:141.386636pt;}
.y56{bottom:153.066649pt;}
.y6b{bottom:153.466649pt;}
.y49{bottom:158.559969pt;}
.y31{bottom:158.719969pt;}
.y15{bottom:159.466649pt;}
.y3b{bottom:161.066649pt;}
.y75{bottom:167.199969pt;}
.ya3{bottom:167.466649pt;}
.y95{bottom:169.866636pt;}
.yd{bottom:171.413302pt;}
.y8a{bottom:173.973302pt;}
.y7e{bottom:174.933302pt;}
.y6a{bottom:177.359982pt;}
.yac{bottom:182.719969pt;}
.y22{bottom:183.466649pt;}
.y55{bottom:187.733316pt;}
.y3a{bottom:196.053302pt;}
.y74{bottom:196.533302pt;}
.y94{bottom:198.133316pt;}
.y30{bottom:200.053302pt;}
.ya2{bottom:203.466649pt;}
.yc{bottom:204.853316pt;}
.y14{bottom:206.559969pt;}
.y60{bottom:210.399982pt;}
.y48{bottom:213.386636pt;}
.y7d{bottom:215.306636pt;}
.y21{bottom:218.133316pt;}
.y89{bottom:220.533302pt;}
.y54{bottom:222.399982pt;}
.y73{bottom:224.533302pt;}
.yab{bottom:225.599969pt;}
.y93{bottom:235.306636pt;}
.ya1{bottom:238.133316pt;}
.yb3{bottom:239.573302pt;}
.y69{bottom:239.733316pt;}
.y39{bottom:239.893302pt;}
.y2f{bottom:242.719969pt;}
.y5f{bottom:245.066649pt;}
.y88{bottom:249.866636pt;}
.yb{bottom:250.186649pt;}
.y72{bottom:253.866636pt;}
.y20{bottom:254.133316pt;}
.y47{bottom:255.199969pt;}
.y53{bottom:255.733316pt;}
.y13{bottom:262.559969pt;}
.yaa{bottom:265.973302pt;}
.y68{bottom:274.399982pt;}
.ya0{bottom:275.306636pt;}
.y87{bottom:278.133316pt;}
.y5e{bottom:278.399982pt;}
.y46{bottom:283.199969pt;}
.y92{bottom:284.639969pt;}
.y2e{bottom:286.559969pt;}
.y1f{bottom:288.799982pt;}
.y52{bottom:290.399982pt;}
.yb2{bottom:292.906636pt;}
.y38{bottom:294.719969pt;}
.ya{bottom:296.853316pt;}
.y67{bottom:309.066649pt;}
.y71{bottom:311.199969pt;}
.y45{bottom:312.799982pt;}
.y5d{bottom:313.066649pt;}
.ya9{bottom:314.399982pt;}
.y86{bottom:315.306636pt;}
.y12{bottom:318.559969pt;}
.y9f{bottom:324.053302pt;}
.y51{bottom:325.066649pt;}
.y1e{bottom:325.599969pt;}
.y91{bottom:333.973302pt;}
.y37{bottom:338.559969pt;}
.y2d{bottom:340.533302pt;}
.y9{bottom:341.439982pt;}
.y66{bottom:342.399982pt;}
.yb1{bottom:346.239969pt;}
.y44{bottom:347.466649pt;}
.y5c{bottom:347.733316pt;}
.ya8{bottom:349.386636pt;}
.y50{bottom:359.733316pt;}
.y7c{bottom:360.533302pt;}
.y85{bottom:363.199969pt;}
.y1d{bottom:366.933302pt;}
.y9e{bottom:367.306636pt;}
.y2c{bottom:368.533302pt;}
.y70{bottom:368.799982pt;}
.y11{bottom:375.466649pt;}
.y8{bottom:376.799982pt;}
.y65{bottom:377.066649pt;}
.y5b{bottom:382.719969pt;}
.y90{bottom:382.933302pt;}
.y43{bottom:384.053302pt;}
.y7b{bottom:389.866636pt;}
.ya7{bottom:391.733316pt;}
.y84{bottom:392.533302pt;}
.y4f{bottom:394.399982pt;}
.y36{bottom:394.559969pt;}
.y2b{bottom:397.866636pt;}
.yb0{bottom:405.119969pt;}
.y1c{bottom:406.933302pt;}
.y64{bottom:412.053302pt;}
.y9d{bottom:416.266636pt;}
.y7{bottom:416.906636pt;}
.y7a{bottom:417.866636pt;}
.y83{bottom:420.799982pt;}
.y10{bottom:421.226636pt;}
.y8f{bottom:423.306636pt;}
.y42{bottom:425.386636pt;}
.y2a{bottom:426.133316pt;}
.ya6{bottom:426.719969pt;}
.y4e{bottom:429.386636pt;}
.y79{bottom:447.199969pt;}
.y1b{bottom:447.306636pt;}
.y35{bottom:449.386636pt;}
.y63{bottom:454.399982pt;}
.y9c{bottom:456.639969pt;}
.y82{bottom:457.973302pt;}
.y29{bottom:461.866636pt;}
.ya5{bottom:469.066649pt;}
.y6{bottom:469.866636pt;}
.y41{bottom:470.559969pt;}
.y8e{bottom:472.266636pt;}
.y78{bottom:475.199969pt;}
.y5a{bottom:483.466649pt;}
.yaf{bottom:488.533302pt;}
.y62{bottom:489.386636pt;}
.y28{bottom:491.199969pt;}
.y34{bottom:493.226636pt;}
.y1a{bottom:496.799982pt;}
.y4d{bottom:502.719969pt;}
.y6f{bottom:504.266636pt;}
.y77{bottom:504.533302pt;}
.y9b{bottom:505.599969pt;}
.y81{bottom:507.306636pt;}
.y8d{bottom:512.639969pt;}
.y27{bottom:519.466649pt;}
.y40{bottom:523.199969pt;}
.y59{bottom:528.799982pt;}
.y76{bottom:532.799982pt;}
.y19{bottom:543.466649pt;}
.y6e{bottom:544.639969pt;}
.y9a{bottom:545.599969pt;}
.y33{bottom:548.799982pt;}
.y3f{bottom:553.386636pt;}
.y80{bottom:556.639836pt;}
.y26{bottom:556.799982pt;}
.y5{bottom:558.666502pt;}
.y8c{bottom:561.599969pt;}
.y58{bottom:575.466649pt;}
.y17{bottom:576.533302pt;}
.y18{bottom:588.799849pt;}
.y3e{bottom:596.799982pt;}
.y57{bottom:620.799849pt;}
.y4{bottom:622.666502pt;}
.y25{bottom:648.533169pt;}
.h2{height:46.656250pt;}
.h8{height:62.125000pt;}
.h6{height:72.937500pt;}
.he{height:77.760417pt;}
.h11{height:81.591146pt;}
.h12{height:85.312500pt;}
.hd{height:85.416667pt;}
.hc{height:95.989583pt;}
.h10{height:98.954535pt;}
.h5{height:106.718750pt;}
.h15{height:108.864583pt;}
.hf{height:115.187500pt;}
.h7{height:128.062500pt;}
.hb{height:134.385417pt;}
.h4{height:149.406250pt;}
.h9{height:153.583333pt;}
.h13{height:156.406250pt;}
.h3{height:168.541667pt;}
.h14{height:171.072917pt;}
.ha{height:234.781250pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x26{left:25.600000pt;}
.x2d{left:49.599987pt;}
.x17{left:57.599987pt;}
.x28{left:65.599987pt;}
.x12{left:73.599987pt;}
.x10{left:81.599987pt;}
.x2e{left:85.599987pt;}
.x18{left:89.599987pt;}
.x2f{left:97.599987pt;}
.x2b{left:101.599987pt;}
.x13{left:109.599987pt;}
.x29{left:113.599987pt;}
.x3{left:118.318733pt;}
.x14{left:121.599973pt;}
.x19{left:125.599987pt;}
.xb{left:127.321347pt;}
.x1f{left:129.599987pt;}
.x30{left:133.600000pt;}
.x1a{left:137.600000pt;}
.x2c{left:142.933333pt;}
.x2a{left:149.600000pt;}
.x15{left:150.933333pt;}
.x27{left:157.600000pt;}
.x25{left:158.933333pt;}
.x1b{left:167.600027pt;}
.x16{left:169.600000pt;}
.x20{left:177.600000pt;}
.x4{left:196.144253pt;}
.x21{left:201.600027pt;}
.x11{left:211.274467pt;}
.x1e{left:231.646893pt;}
.x8{left:267.588920pt;}
.x6{left:290.387720pt;}
.xe{left:292.516653pt;}
.x1d{left:320.584400pt;}
.xa{left:324.008787pt;}
.x7{left:341.088253pt;}
.x1c{left:365.068800pt;}
.x2{left:392.684640pt;}
.x1{left:407.356507pt;}
.xf{left:419.801827pt;}
.x31{left:433.600000pt;}
.x22{left:454.225067pt;}
.xd{left:471.521853pt;}
.x5{left:479.141587pt;}
.x9{left:481.016653pt;}
.xc{left:486.339587pt;}
.x34{left:524.187240pt;}
.x35{left:551.175520pt;}
.x32{left:583.204133pt;}
.x23{left:596.506267pt;}
.x24{left:630.287467pt;}
.x33{left:673.894267pt;}
}




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