
    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_c43ae87ec00d843279c93fb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_20f4bb1d42f87adf0b5ccfde.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.054000;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_c4d1d9c35790d8e9514a5e5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191000;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_a8763c47c0ae31977fbbbfdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.054000;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_4de8b3df2e69e2b02201c33a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_beb06c24dc7b8a773a325804.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_596197336f97edd1d17d2aa7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.033619;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_166b28fe279429d4ff7e4724.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_43c7c65d837d6a9e391fed38.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f6b8b05b026e1d602f193cb0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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;}
.m3{transform:matrix(0.183658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183658,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.202419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202419,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.235304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235304,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236958,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.279205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279205,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-3.801000px;}
.ls17{letter-spacing:-0.882000px;}
.ls14{letter-spacing:-0.420240px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.216300px;}
.lsd{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.435000px;}
.lsa{letter-spacing:0.900000px;}
.ls13{letter-spacing:0.927000px;}
.ls2{letter-spacing:1.027500px;}
.ls10{letter-spacing:1.065000px;}
.lsf{letter-spacing:1.252500px;}
.ls4{letter-spacing:1.282500px;}
.ls11{letter-spacing:1.359600px;}
.lse{letter-spacing:1.575000px;}
.lsc{letter-spacing:1.815000px;}
.ls6{letter-spacing:2.205000px;}
.ls3{letter-spacing:2.287500px;}
.lsb{letter-spacing:3.410100px;}
.ls7{letter-spacing:4.245000px;}
.ls16{letter-spacing:4.320000px;}
.ls5{letter-spacing:6.442500px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._26{margin-left:-14.400000px;}
._28{margin-left:-9.375000px;}
._19{margin-left:-8.302500px;}
._1d{margin-left:-6.960000px;}
._10{margin-left:-4.875000px;}
._a{margin-left:-3.540000px;}
._9{margin-left:-2.250000px;}
._6{margin-left:-1.125000px;}
._1{width:1.800000px;}
._0{width:3.480000px;}
._15{width:4.552500px;}
._b{width:5.572500px;}
._17{width:6.855000px;}
._3{width:7.875000px;}
._c{width:9.420000px;}
._18{width:10.507500px;}
._1c{width:12.480000px;}
._16{width:13.912500px;}
._12{width:14.992500px;}
._27{width:16.192500px;}
._13{width:17.257500px;}
._21{width:18.468000px;}
._1f{width:20.415000px;}
._29{width:21.420000px;}
._14{width:22.440000px;}
._1e{width:23.932500px;}
._1a{width:25.140000px;}
._1b{width:26.242500px;}
._4{width:28.125000px;}
._d{width:29.257500px;}
._7{width:30.645000px;}
._5{width:32.520000px;}
._8{width:33.780000px;}
._20{width:34.905000px;}
._2{width:35.925000px;}
._e{width:37.672500px;}
._22{width:39.210000px;}
._11{width:40.425000px;}
._f{width:41.887500px;}
._24{width:42.909600px;}
._25{width:44.822100px;}
._23{width:45.878400px;}
.fc4{color:transparent;}
.fc2{color:rgb(140,143,142);}
.fc1{color:rgb(223,111,72);}
.fc3{color:rgb(233,130,94);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:25.200000px;}
.fsc{font-size:37.440000px;}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsb{font-size:61.800000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs1{font-size:84.000000px;}
.fsd{font-size:86.400000px;}
.fs9{font-size:108.600000px;}
.fs3{font-size:180.000000px;}
.fsa{font-size:263.400600px;}
.y0{bottom:0.000000px;}
.y57{bottom:39.000000px;}
.y84{bottom:52.500000px;}
.y56{bottom:54.000000px;}
.ya8{bottom:63.000000px;}
.y55{bottom:69.000000px;}
.y83{bottom:75.000000px;}
.ya7{bottom:88.500000px;}
.y82{bottom:97.500000px;}
.y19{bottom:102.000000px;}
.ya6{bottom:112.500000px;}
.y81{bottom:120.000000px;}
.y18{bottom:121.500000px;}
.ya5{bottom:136.500000px;}
.y17{bottom:141.000000px;}
.y80{bottom:142.500000px;}
.ya4{bottom:162.000000px;}
.y7f{bottom:165.000000px;}
.y16{bottom:180.000000px;}
.ya3{bottom:186.000000px;}
.y7e{bottom:187.500000px;}
.y15{bottom:199.500000px;}
.ya2{bottom:211.500000px;}
.y7d{bottom:217.500000px;}
.y14{bottom:219.000000px;}
.ya1{bottom:235.500000px;}
.y13{bottom:238.500000px;}
.y7c{bottom:240.000000px;}
.y12{bottom:258.000000px;}
.ya0{bottom:259.500000px;}
.y7b{bottom:262.500000px;}
.y11{bottom:277.500000px;}
.y7a{bottom:285.000000px;}
.y10{bottom:297.000000px;}
.y79{bottom:307.500000px;}
.y9f{bottom:309.000000px;}
.yf{bottom:316.500000px;}
.y78{bottom:330.000000px;}
.y9e{bottom:334.500000px;}
.ye{bottom:336.000000px;}
.y33{bottom:343.500000px;}
.y4d{bottom:345.000000px;}
.y77{bottom:352.500000px;}
.y9d{bottom:358.500000px;}
.y32{bottom:366.000000px;}
.y4c{bottom:367.500000px;}
.y76{bottom:375.000000px;}
.y9c{bottom:382.500000px;}
.y31{bottom:388.500000px;}
.y4b{bottom:397.500000px;}
.y9b{bottom:408.000000px;}
.y30{bottom:411.000000px;}
.y4a{bottom:420.000000px;}
.y9a{bottom:432.000000px;}
.y2f{bottom:433.500000px;}
.y49{bottom:442.500000px;}
.y75{bottom:450.000000px;}
.y2e{bottom:456.000000px;}
.y99{bottom:457.500000px;}
.y48{bottom:465.000000px;}
.y74{bottom:472.500000px;}
.y2d{bottom:478.500000px;}
.y98{bottom:481.500000px;}
.y47{bottom:487.500000px;}
.yd{bottom:492.000000px;}
.y73{bottom:495.000000px;}
.y2c{bottom:501.000000px;}
.y97{bottom:505.500000px;}
.y46{bottom:510.000000px;}
.yc{bottom:511.500000px;}
.y72{bottom:517.500000px;}
.y2b{bottom:523.500000px;}
.yb{bottom:531.000000px;}
.y45{bottom:532.500000px;}
.y71{bottom:540.000000px;}
.y2a{bottom:546.000000px;}
.ya{bottom:550.500000px;}
.y44{bottom:555.000000px;}
.y70{bottom:562.500000px;}
.y29{bottom:568.500000px;}
.y88{bottom:570.000000px;}
.y43{bottom:577.500000px;}
.y96{bottom:580.500000px;}
.y6f{bottom:585.000000px;}
.y9{bottom:589.500000px;}
.yaf{bottom:590.057106px;}
.y28{bottom:591.000000px;}
.y42{bottom:600.000000px;}
.yae{bottom:603.375006px;}
.y95{bottom:604.500000px;}
.y6e{bottom:607.500000px;}
.y8{bottom:609.000000px;}
.y27{bottom:613.500000px;}
.yad{bottom:621.720006px;}
.y41{bottom:622.500000px;}
.y87{bottom:625.500000px;}
.yb1{bottom:626.775006px;}
.y7{bottom:628.500000px;}
.y6d{bottom:630.000000px;}
.yb0{bottom:634.695006px;}
.y26{bottom:636.000000px;}
.y40{bottom:645.000000px;}
.y6{bottom:648.000000px;}
.y6c{bottom:652.500000px;}
.yac{bottom:653.775006px;}
.y94{bottom:654.000000px;}
.y25{bottom:658.500000px;}
.y86{bottom:663.000000px;}
.y3f{bottom:667.500000px;}
.y6b{bottom:675.000000px;}
.y85{bottom:678.000000px;}
.y24{bottom:681.000000px;}
.y5{bottom:687.000000px;}
.y3e{bottom:690.000000px;}
.y6a{bottom:697.500000px;}
.y23{bottom:703.500000px;}
.y4{bottom:706.500000px;}
.y3d{bottom:712.500000px;}
.y69{bottom:720.000000px;}
.y3{bottom:726.000000px;}
.y93{bottom:727.500000px;}
.y3c{bottom:735.000000px;}
.y68{bottom:742.500000px;}
.y92{bottom:751.500000px;}
.y3b{bottom:757.500000px;}
.y2{bottom:765.000000px;}
.y54{bottom:769.500000px;}
.y91{bottom:777.000000px;}
.y3a{bottom:780.000000px;}
.y1{bottom:784.500000px;}
.y67{bottom:787.500000px;}
.y53{bottom:793.500000px;}
.y39{bottom:802.500000px;}
.y90{bottom:807.000000px;}
.y66{bottom:810.000000px;}
.y52{bottom:817.500000px;}
.y38{bottom:825.000000px;}
.y8f{bottom:829.500000px;}
.y65{bottom:832.500000px;}
.y51{bottom:841.500000px;}
.y37{bottom:847.500000px;}
.y8e{bottom:852.000000px;}
.y64{bottom:855.000000px;}
.y50{bottom:865.500000px;}
.y36{bottom:870.000000px;}
.y8d{bottom:874.500000px;}
.y63{bottom:877.500000px;}
.y4f{bottom:889.500000px;}
.yaa{bottom:891.000000px;}
.y35{bottom:892.500000px;}
.y8c{bottom:897.000000px;}
.y62{bottom:907.500000px;}
.y4e{bottom:913.500000px;}
.y34{bottom:915.000000px;}
.y8b{bottom:919.500000px;}
.y61{bottom:930.000000px;}
.ya9{bottom:939.000000px;}
.y8a{bottom:942.000000px;}
.y60{bottom:952.500000px;}
.y22{bottom:963.000000px;}
.y89{bottom:964.500000px;}
.y5f{bottom:975.000000px;}
.y21{bottom:984.000000px;}
.y20{bottom:1005.000000px;}
.yab{bottom:1008.000000px;}
.y1f{bottom:1026.000000px;}
.y5e{bottom:1027.500000px;}
.y5d{bottom:1050.000000px;}
.y1e{bottom:1065.000000px;}
.y5c{bottom:1072.500000px;}
.y5b{bottom:1095.000000px;}
.y5a{bottom:1117.500000px;}
.y1d{bottom:1120.500000px;}
.y59{bottom:1140.000000px;}
.y58{bottom:1162.500000px;}
.y1b{bottom:1176.000000px;}
.y1a{bottom:1203.000000px;}
.y1c{bottom:1222.500000px;}
.hf{height:24.935040px;}
.h11{height:26.282813px;}
.ha{height:46.752000px;}
.h4{height:52.596000px;}
.h9{height:55.450195px;}
.h2{height:58.440000px;}
.h6{height:60.264000px;}
.he{height:64.455469px;}
.h8{height:65.808105px;}
.h7{height:70.128000px;}
.h3{height:70.308000px;}
.h10{height:84.796875px;}
.hc{height:106.584961px;}
.h5{height:150.660000px;}
.hd{height:258.513284px;}
.h0{height:1262.880000px;}
.hb{height:1262.880006px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799998px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:42.519690px;}
.x1a{left:63.000000px;}
.x23{left:89.787405px;}
.x21{left:91.439760px;}
.x20{left:105.359595px;}
.x1f{left:131.759760px;}
.x18{left:155.698650px;}
.x17{left:163.888800px;}
.x1c{left:169.500000px;}
.x1b{left:196.287405px;}
.x2b{left:344.646299px;}
.x2a{left:353.294999px;}
.x29{left:377.429999px;}
.x22{left:415.819500px;}
.x2c{left:451.814998px;}
.x28{left:468.000000px;}
.x2d{left:481.334999px;}
.x2e{left:514.079998px;}
.x1e{left:520.500000px;}
.x8{left:545.399460px;}
.x1d{left:547.287450px;}
.x1{left:553.229280px;}
.x2{left:555.148905px;}
.x16{left:575.398770px;}
.x10{left:585.299055px;}
.x4{left:587.249130px;}
.x13{left:595.499865px;}
.x15{left:608.249265px;}
.x11{left:621.599265px;}
.xe{left:627.449475px;}
.x26{left:630.000000px;}
.x3{left:635.849670px;}
.x12{left:637.199850px;}
.x14{left:642.449025px;}
.x24{left:644.879340px;}
.xc{left:653.399190px;}
.x9{left:664.364550px;}
.x27{left:671.540745px;}
.x25{left:687.719610px;}
.x7{left:694.049550px;}
.x5{left:701.819850px;}
.xd{left:707.099700px;}
.xa{left:729.449700px;}
.xb{left:734.399550px;}
.xf{left:741.899250px;}
.x6{left:749.549700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-3.378667pt;}
.ls17{letter-spacing:-0.784000pt;}
.ls14{letter-spacing:-0.373547pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.192267pt;}
.lsd{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.386667pt;}
.lsa{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.824000pt;}
.ls2{letter-spacing:0.913333pt;}
.ls10{letter-spacing:0.946667pt;}
.lsf{letter-spacing:1.113333pt;}
.ls4{letter-spacing:1.140000pt;}
.ls11{letter-spacing:1.208533pt;}
.lse{letter-spacing:1.400000pt;}
.lsc{letter-spacing:1.613333pt;}
.ls6{letter-spacing:1.960000pt;}
.ls3{letter-spacing:2.033333pt;}
.lsb{letter-spacing:3.031200pt;}
.ls7{letter-spacing:3.773333pt;}
.ls16{letter-spacing:3.840000pt;}
.ls5{letter-spacing:5.726667pt;}
.ws0{word-spacing:0.000000pt;}
._26{margin-left:-12.800000pt;}
._28{margin-left:-8.333333pt;}
._19{margin-left:-7.380000pt;}
._1d{margin-left:-6.186667pt;}
._10{margin-left:-4.333333pt;}
._a{margin-left:-3.146667pt;}
._9{margin-left:-2.000000pt;}
._6{margin-left:-1.000000pt;}
._1{width:1.600000pt;}
._0{width:3.093333pt;}
._15{width:4.046667pt;}
._b{width:4.953333pt;}
._17{width:6.093333pt;}
._3{width:7.000000pt;}
._c{width:8.373333pt;}
._18{width:9.340000pt;}
._1c{width:11.093333pt;}
._16{width:12.366667pt;}
._12{width:13.326667pt;}
._27{width:14.393333pt;}
._13{width:15.340000pt;}
._21{width:16.416000pt;}
._1f{width:18.146667pt;}
._29{width:19.040000pt;}
._14{width:19.946667pt;}
._1e{width:21.273333pt;}
._1a{width:22.346667pt;}
._1b{width:23.326667pt;}
._4{width:25.000000pt;}
._d{width:26.006667pt;}
._7{width:27.240000pt;}
._5{width:28.906667pt;}
._8{width:30.026667pt;}
._20{width:31.026667pt;}
._2{width:31.933333pt;}
._e{width:33.486667pt;}
._22{width:34.853333pt;}
._11{width:35.933333pt;}
._f{width:37.233333pt;}
._24{width:38.141867pt;}
._25{width:39.841867pt;}
._23{width:40.780800pt;}
.fse{font-size:22.400000pt;}
.fsc{font-size:33.280000pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsb{font-size:54.933333pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs1{font-size:74.666667pt;}
.fsd{font-size:76.800000pt;}
.fs9{font-size:96.533333pt;}
.fs3{font-size:160.000000pt;}
.fsa{font-size:234.133867pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:34.666667pt;}
.y84{bottom:46.666667pt;}
.y56{bottom:48.000000pt;}
.ya8{bottom:56.000000pt;}
.y55{bottom:61.333333pt;}
.y83{bottom:66.666667pt;}
.ya7{bottom:78.666667pt;}
.y82{bottom:86.666667pt;}
.y19{bottom:90.666667pt;}
.ya6{bottom:100.000000pt;}
.y81{bottom:106.666667pt;}
.y18{bottom:108.000000pt;}
.ya5{bottom:121.333333pt;}
.y17{bottom:125.333333pt;}
.y80{bottom:126.666667pt;}
.ya4{bottom:144.000000pt;}
.y7f{bottom:146.666667pt;}
.y16{bottom:160.000000pt;}
.ya3{bottom:165.333333pt;}
.y7e{bottom:166.666667pt;}
.y15{bottom:177.333333pt;}
.ya2{bottom:188.000000pt;}
.y7d{bottom:193.333333pt;}
.y14{bottom:194.666667pt;}
.ya1{bottom:209.333333pt;}
.y13{bottom:212.000000pt;}
.y7c{bottom:213.333333pt;}
.y12{bottom:229.333333pt;}
.ya0{bottom:230.666667pt;}
.y7b{bottom:233.333333pt;}
.y11{bottom:246.666667pt;}
.y7a{bottom:253.333333pt;}
.y10{bottom:264.000000pt;}
.y79{bottom:273.333333pt;}
.y9f{bottom:274.666667pt;}
.yf{bottom:281.333333pt;}
.y78{bottom:293.333333pt;}
.y9e{bottom:297.333333pt;}
.ye{bottom:298.666667pt;}
.y33{bottom:305.333333pt;}
.y4d{bottom:306.666667pt;}
.y77{bottom:313.333333pt;}
.y9d{bottom:318.666667pt;}
.y32{bottom:325.333333pt;}
.y4c{bottom:326.666667pt;}
.y76{bottom:333.333333pt;}
.y9c{bottom:340.000000pt;}
.y31{bottom:345.333333pt;}
.y4b{bottom:353.333333pt;}
.y9b{bottom:362.666667pt;}
.y30{bottom:365.333333pt;}
.y4a{bottom:373.333333pt;}
.y9a{bottom:384.000000pt;}
.y2f{bottom:385.333333pt;}
.y49{bottom:393.333333pt;}
.y75{bottom:400.000000pt;}
.y2e{bottom:405.333333pt;}
.y99{bottom:406.666667pt;}
.y48{bottom:413.333333pt;}
.y74{bottom:420.000000pt;}
.y2d{bottom:425.333333pt;}
.y98{bottom:428.000000pt;}
.y47{bottom:433.333333pt;}
.yd{bottom:437.333333pt;}
.y73{bottom:440.000000pt;}
.y2c{bottom:445.333333pt;}
.y97{bottom:449.333333pt;}
.y46{bottom:453.333333pt;}
.yc{bottom:454.666667pt;}
.y72{bottom:460.000000pt;}
.y2b{bottom:465.333333pt;}
.yb{bottom:472.000000pt;}
.y45{bottom:473.333333pt;}
.y71{bottom:480.000000pt;}
.y2a{bottom:485.333333pt;}
.ya{bottom:489.333333pt;}
.y44{bottom:493.333333pt;}
.y70{bottom:500.000000pt;}
.y29{bottom:505.333333pt;}
.y88{bottom:506.666667pt;}
.y43{bottom:513.333333pt;}
.y96{bottom:516.000000pt;}
.y6f{bottom:520.000000pt;}
.y9{bottom:524.000000pt;}
.yaf{bottom:524.495205pt;}
.y28{bottom:525.333333pt;}
.y42{bottom:533.333333pt;}
.yae{bottom:536.333339pt;}
.y95{bottom:537.333333pt;}
.y6e{bottom:540.000000pt;}
.y8{bottom:541.333333pt;}
.y27{bottom:545.333333pt;}
.yad{bottom:552.640005pt;}
.y41{bottom:553.333333pt;}
.y87{bottom:556.000000pt;}
.yb1{bottom:557.133339pt;}
.y7{bottom:558.666667pt;}
.y6d{bottom:560.000000pt;}
.yb0{bottom:564.173339pt;}
.y26{bottom:565.333333pt;}
.y40{bottom:573.333333pt;}
.y6{bottom:576.000000pt;}
.y6c{bottom:580.000000pt;}
.yac{bottom:581.133339pt;}
.y94{bottom:581.333333pt;}
.y25{bottom:585.333333pt;}
.y86{bottom:589.333333pt;}
.y3f{bottom:593.333333pt;}
.y6b{bottom:600.000000pt;}
.y85{bottom:602.666667pt;}
.y24{bottom:605.333333pt;}
.y5{bottom:610.666667pt;}
.y3e{bottom:613.333333pt;}
.y6a{bottom:620.000000pt;}
.y23{bottom:625.333333pt;}
.y4{bottom:628.000000pt;}
.y3d{bottom:633.333333pt;}
.y69{bottom:640.000000pt;}
.y3{bottom:645.333333pt;}
.y93{bottom:646.666667pt;}
.y3c{bottom:653.333333pt;}
.y68{bottom:660.000000pt;}
.y92{bottom:668.000000pt;}
.y3b{bottom:673.333333pt;}
.y2{bottom:680.000000pt;}
.y54{bottom:684.000000pt;}
.y91{bottom:690.666667pt;}
.y3a{bottom:693.333333pt;}
.y1{bottom:697.333333pt;}
.y67{bottom:700.000000pt;}
.y53{bottom:705.333333pt;}
.y39{bottom:713.333333pt;}
.y90{bottom:717.333333pt;}
.y66{bottom:720.000000pt;}
.y52{bottom:726.666667pt;}
.y38{bottom:733.333333pt;}
.y8f{bottom:737.333333pt;}
.y65{bottom:740.000000pt;}
.y51{bottom:748.000000pt;}
.y37{bottom:753.333333pt;}
.y8e{bottom:757.333333pt;}
.y64{bottom:760.000000pt;}
.y50{bottom:769.333333pt;}
.y36{bottom:773.333333pt;}
.y8d{bottom:777.333333pt;}
.y63{bottom:780.000000pt;}
.y4f{bottom:790.666667pt;}
.yaa{bottom:792.000000pt;}
.y35{bottom:793.333333pt;}
.y8c{bottom:797.333333pt;}
.y62{bottom:806.666667pt;}
.y4e{bottom:812.000000pt;}
.y34{bottom:813.333333pt;}
.y8b{bottom:817.333333pt;}
.y61{bottom:826.666667pt;}
.ya9{bottom:834.666667pt;}
.y8a{bottom:837.333333pt;}
.y60{bottom:846.666667pt;}
.y22{bottom:856.000000pt;}
.y89{bottom:857.333333pt;}
.y5f{bottom:866.666667pt;}
.y21{bottom:874.666667pt;}
.y20{bottom:893.333333pt;}
.yab{bottom:896.000000pt;}
.y1f{bottom:912.000000pt;}
.y5e{bottom:913.333333pt;}
.y5d{bottom:933.333333pt;}
.y1e{bottom:946.666667pt;}
.y5c{bottom:953.333333pt;}
.y5b{bottom:973.333333pt;}
.y5a{bottom:993.333333pt;}
.y1d{bottom:996.000000pt;}
.y59{bottom:1013.333333pt;}
.y58{bottom:1033.333333pt;}
.y1b{bottom:1045.333333pt;}
.y1a{bottom:1069.333333pt;}
.y1c{bottom:1086.666667pt;}
.hf{height:22.164480pt;}
.h11{height:23.362500pt;}
.ha{height:41.557333pt;}
.h4{height:46.752000pt;}
.h9{height:49.289062pt;}
.h2{height:51.946667pt;}
.h6{height:53.568000pt;}
.he{height:57.293750pt;}
.h8{height:58.496094pt;}
.h7{height:62.336000pt;}
.h3{height:62.496000pt;}
.h10{height:75.375000pt;}
.hc{height:94.742188pt;}
.h5{height:133.920000pt;}
.hd{height:229.789586pt;}
.h0{height:1122.560000pt;}
.hb{height:1122.560005pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599999pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:37.795280pt;}
.x1a{left:56.000000pt;}
.x23{left:79.811027pt;}
.x21{left:81.279787pt;}
.x20{left:93.652973pt;}
.x1f{left:117.119787pt;}
.x18{left:138.398800pt;}
.x17{left:145.678933pt;}
.x1c{left:150.666667pt;}
.x1b{left:174.477693pt;}
.x2b{left:306.352265pt;}
.x2a{left:314.039999pt;}
.x29{left:335.493332pt;}
.x22{left:369.617333pt;}
.x2c{left:401.613332pt;}
.x28{left:416.000000pt;}
.x2d{left:427.853332pt;}
.x2e{left:456.959999pt;}
.x1e{left:462.666667pt;}
.x8{left:484.799520pt;}
.x1d{left:486.477733pt;}
.x1{left:491.759360pt;}
.x2{left:493.465693pt;}
.x16{left:511.465573pt;}
.x10{left:520.265827pt;}
.x4{left:521.999227pt;}
.x13{left:529.333213pt;}
.x15{left:540.666013pt;}
.x11{left:552.532680pt;}
.xe{left:557.732867pt;}
.x26{left:560.000000pt;}
.x3{left:565.199707pt;}
.x12{left:566.399867pt;}
.x14{left:571.065800pt;}
.x24{left:573.226080pt;}
.xc{left:580.799280pt;}
.x9{left:590.546267pt;}
.x27{left:596.925107pt;}
.x25{left:611.306320pt;}
.x7{left:616.932933pt;}
.x5{left:623.839867pt;}
.xd{left:628.533067pt;}
.xa{left:648.399733pt;}
.xb{left:652.799600pt;}
.xf{left:659.466000pt;}
.x6{left:666.266400pt;}
}




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