
    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_6333e44220c51232a274b1bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.566000;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_698c33f9f3f547c733b22c8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_9e7aab056cf4d305127d67f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097000;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_07f1a64290371756e087a59a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_9537fff8da40a9dc874d41a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_d416d27cb5bf37a49e8c8058.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097000;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_07f1a64290371756e087a59a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_1d744832823d20c7c54f6992.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.055000;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_9e7aab056cf4d305127d67f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097000;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_5ea10b6fb85ffbd2dcd40e36.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.055000;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_95aff356e91e52cd90ad5f06.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.157400px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-4.608000px;}
.ls2{letter-spacing:-2.100000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-28.224000px;}
.ws75{word-spacing:-15.540000px;}
.ws76{word-spacing:-13.440000px;}
.ws1{word-spacing:-9.324000px;}
.ws30{word-spacing:-7.194000px;}
.ws17{word-spacing:-6.534000px;}
.ws61{word-spacing:-6.336000px;}
.ws31{word-spacing:-6.204000px;}
.ws6f{word-spacing:-4.686000px;}
.ws63{word-spacing:-4.092000px;}
.ws37{word-spacing:-3.960000px;}
.ws68{word-spacing:-3.696000px;}
.ws70{word-spacing:-3.630000px;}
.ws67{word-spacing:-3.564000px;}
.ws40{word-spacing:-3.366000px;}
.ws1c{word-spacing:-3.102000px;}
.ws35{word-spacing:-3.036000px;}
.ws49{word-spacing:-2.904000px;}
.ws6e{word-spacing:-2.508000px;}
.ws2a{word-spacing:-2.310000px;}
.ws5d{word-spacing:-2.112000px;}
.ws7d{word-spacing:-2.100000px;}
.ws7e{word-spacing:-1.920000px;}
.ws3e{word-spacing:-1.914000px;}
.ws5e{word-spacing:-1.848000px;}
.ws57{word-spacing:-1.716000px;}
.ws5a{word-spacing:-0.924000px;}
.ws20{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.726000px;}
.ws7b{word-spacing:-0.540000px;}
.ws7c{word-spacing:-0.480000px;}
.ws0{word-spacing:-0.229928px;}
.ws15{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws5f{word-spacing:0.198000px;}
.ws60{word-spacing:0.264000px;}
.ws74{word-spacing:0.396000px;}
.ws58{word-spacing:0.462000px;}
.ws6b{word-spacing:0.528000px;}
.ws39{word-spacing:0.594000px;}
.ws3f{word-spacing:0.924000px;}
.ws59{word-spacing:0.990000px;}
.ws28{word-spacing:1.056000px;}
.ws6a{word-spacing:1.122000px;}
.ws62{word-spacing:1.188000px;}
.ws69{word-spacing:1.254000px;}
.ws29{word-spacing:1.386000px;}
.ws80{word-spacing:1.620000px;}
.ws51{word-spacing:1.650000px;}
.ws10{word-spacing:1.716000px;}
.wsa{word-spacing:1.782000px;}
.ws38{word-spacing:1.848000px;}
.ws16{word-spacing:1.914000px;}
.wsf{word-spacing:1.980000px;}
.ws13{word-spacing:2.706000px;}
.ws4c{word-spacing:3.102000px;}
.ws48{word-spacing:3.168000px;}
.ws4a{word-spacing:3.300000px;}
.ws1b{word-spacing:3.366000px;}
.ws7{word-spacing:3.498000px;}
.ws78{word-spacing:3.540000px;}
.ws5b{word-spacing:3.564000px;}
.ws3c{word-spacing:3.630000px;}
.wsb{word-spacing:3.696000px;}
.ws5c{word-spacing:3.762000px;}
.ws2d{word-spacing:3.828000px;}
.ws77{word-spacing:3.900000px;}
.ws6{word-spacing:4.026000px;}
.ws7f{word-spacing:4.140000px;}
.ws25{word-spacing:4.290000px;}
.wsd{word-spacing:4.422000px;}
.ws52{word-spacing:4.554000px;}
.ws36{word-spacing:4.608000px;}
.ws11{word-spacing:4.620000px;}
.ws2b{word-spacing:5.082000px;}
.ws3d{word-spacing:5.214000px;}
.ws46{word-spacing:5.280000px;}
.ws12{word-spacing:5.346000px;}
.ws2c{word-spacing:5.478000px;}
.ws26{word-spacing:5.544000px;}
.ws19{word-spacing:5.742000px;}
.ws3b{word-spacing:5.808000px;}
.ws9{word-spacing:5.874000px;}
.ws2f{word-spacing:5.940000px;}
.ws65{word-spacing:6.138000px;}
.ws2e{word-spacing:6.534000px;}
.ws8{word-spacing:6.666000px;}
.ws4e{word-spacing:6.864000px;}
.ws3a{word-spacing:6.996000px;}
.ws34{word-spacing:7.062000px;}
.ws7a{word-spacing:7.080000px;}
.ws4b{word-spacing:7.128000px;}
.ws66{word-spacing:7.260000px;}
.ws42{word-spacing:7.392000px;}
.ws55{word-spacing:7.524000px;}
.ws79{word-spacing:7.800000px;}
.ws4f{word-spacing:7.986000px;}
.ws4d{word-spacing:8.250000px;}
.wsc{word-spacing:8.316000px;}
.ws1a{word-spacing:8.448000px;}
.ws1d{word-spacing:8.514000px;}
.ws41{word-spacing:8.580000px;}
.ws45{word-spacing:9.504000px;}
.ws14{word-spacing:9.834000px;}
.ws71{word-spacing:9.900000px;}
.ws47{word-spacing:10.098000px;}
.ws6c{word-spacing:10.230000px;}
.ws72{word-spacing:11.682000px;}
.ws23{word-spacing:11.880000px;}
.ws64{word-spacing:12.474000px;}
.ws32{word-spacing:13.068000px;}
.ws53{word-spacing:13.266000px;}
.ws24{word-spacing:13.794000px;}
.ws6d{word-spacing:13.992000px;}
.ws56{word-spacing:14.520000px;}
.ws54{word-spacing:14.652000px;}
.ws50{word-spacing:14.718000px;}
.ws27{word-spacing:14.982000px;}
.ws33{word-spacing:15.114000px;}
.ws43{word-spacing:15.246000px;}
.ws1e{word-spacing:15.972000px;}
.ws4{word-spacing:17.160000px;}
.ws44{word-spacing:17.622000px;}
.ws5{word-spacing:18.348000px;}
.ws18{word-spacing:19.866000px;}
.ws73{word-spacing:20.196000px;}
.ws22{word-spacing:21.912000px;}
.wse{word-spacing:22.704000px;}
.ws21{word-spacing:25.344000px;}
._b{margin-left:-8.321048px;}
._4{margin-left:-5.610000px;}
._1{margin-left:-4.598556px;}
._0{margin-left:-3.448917px;}
._3{margin-left:-2.448600px;}
._2{margin-left:-1.282078px;}
._a{width:1.103878px;}
._5{width:2.133478px;}
._6{width:5.579395px;}
._8{width:9.570000px;}
._9{width:115.910161px;}
._7{width:125.570161px;}
.fc1{color:rgb(205,23,25);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.430600px;}
.fs1{font-size:31.270200px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:96.000000px;}
.fs5{font-size:126.000000px;}
.fs0{font-size:229.927800px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.884650px;}
.y21{bottom:128.834700px;}
.y48{bottom:129.874050px;}
.y20{bottom:129.900600px;}
.yb{bottom:144.576600px;}
.ya{bottom:155.376600px;}
.y9{bottom:166.176600px;}
.y8{bottom:176.976600px;}
.y7{bottom:187.776600px;}
.y6e{bottom:188.443950px;}
.y47{bottom:191.278500px;}
.y6{bottom:198.576600px;}
.y5{bottom:209.376600px;}
.y6d{bottom:212.451450px;}
.y46{bottom:215.286000px;}
.y6c{bottom:236.458950px;}
.y45{bottom:239.293500px;}
.y6b{bottom:260.466450px;}
.y44{bottom:263.301000px;}
.y1c{bottom:264.483000px;}
.y6a{bottom:284.473950px;}
.y43{bottom:287.308500px;}
.y1b{bottom:288.490500px;}
.y69{bottom:308.481450px;}
.y42{bottom:311.316000px;}
.y1a{bottom:312.498000px;}
.y68{bottom:332.488950px;}
.y41{bottom:335.323500px;}
.y19{bottom:336.505500px;}
.y67{bottom:356.496450px;}
.y40{bottom:359.331000px;}
.y18{bottom:360.513000px;}
.y66{bottom:380.503950px;}
.y3f{bottom:383.338500px;}
.y17{bottom:384.520500px;}
.y65{bottom:404.511450px;}
.y3e{bottom:407.346000px;}
.y16{bottom:408.528000px;}
.y64{bottom:428.518950px;}
.y3d{bottom:431.353500px;}
.y15{bottom:432.535500px;}
.y63{bottom:452.526450px;}
.y3c{bottom:455.361000px;}
.y14{bottom:456.543000px;}
.y82{bottom:476.078550px;}
.y62{bottom:476.533950px;}
.y3b{bottom:479.368500px;}
.y13{bottom:480.550500px;}
.y81{bottom:500.078550px;}
.y61{bottom:500.541450px;}
.y3a{bottom:503.376000px;}
.y12{bottom:504.558000px;}
.y80{bottom:524.078550px;}
.y60{bottom:524.548950px;}
.y39{bottom:527.383500px;}
.y11{bottom:528.565500px;}
.y7f{bottom:548.078550px;}
.y5f{bottom:548.556450px;}
.y38{bottom:551.391000px;}
.y10{bottom:552.573000px;}
.y5e{bottom:572.563950px;}
.y37{bottom:575.398500px;}
.yf{bottom:576.580500px;}
.y7e{bottom:596.078550px;}
.y5d{bottom:596.571450px;}
.y36{bottom:599.406000px;}
.ye{bottom:600.588000px;}
.y7d{bottom:620.078550px;}
.y5c{bottom:620.578950px;}
.y35{bottom:623.413500px;}
.yd{bottom:624.595500px;}
.y7c{bottom:644.078550px;}
.y5b{bottom:644.586450px;}
.y34{bottom:647.421000px;}
.y5a{bottom:668.593950px;}
.y33{bottom:671.428500px;}
.y1f{bottom:689.114100px;}
.y7b{bottom:692.078550px;}
.y59{bottom:692.601450px;}
.y32{bottom:695.436000px;}
.y7a{bottom:716.078550px;}
.y58{bottom:716.608950px;}
.y31{bottom:719.443500px;}
.y79{bottom:740.078550px;}
.y57{bottom:740.616450px;}
.y30{bottom:743.451000px;}
.y1e{bottom:757.154100px;}
.y56{bottom:764.623950px;}
.y2f{bottom:767.458500px;}
.y78{bottom:776.834550px;}
.y55{bottom:788.631450px;}
.y2e{bottom:791.466000px;}
.y54{bottom:812.638950px;}
.y2d{bottom:815.473500px;}
.y1d{bottom:825.194100px;}
.y77{bottom:833.588700px;}
.y53{bottom:836.646450px;}
.y2c{bottom:839.481000px;}
.y52{bottom:860.653950px;}
.y76{bottom:861.833700px;}
.y2b{bottom:863.488500px;}
.y51{bottom:884.661450px;}
.y75{bottom:885.833700px;}
.y2a{bottom:887.496000px;}
.yc{bottom:897.477600px;}
.y50{bottom:908.668950px;}
.y29{bottom:911.503500px;}
.y74{bottom:914.078700px;}
.y4f{bottom:932.676450px;}
.y28{bottom:935.511000px;}
.y73{bottom:938.078700px;}
.y4e{bottom:956.683950px;}
.y27{bottom:959.518500px;}
.y72{bottom:974.834700px;}
.y4d{bottom:980.691450px;}
.y26{bottom:983.526000px;}
.y4c{bottom:1004.698950px;}
.y1{bottom:1006.653000px;}
.y25{bottom:1007.533500px;}
.y4{bottom:1013.817750px;}
.y3{bottom:1020.715650px;}
.y4b{bottom:1028.706450px;}
.y71{bottom:1029.415050px;}
.y24{bottom:1031.541000px;}
.y4a{bottom:1052.713950px;}
.y70{bottom:1053.422550px;}
.y23{bottom:1055.548500px;}
.y49{bottom:1076.721450px;}
.y6f{bottom:1077.430050px;}
.y22{bottom:1079.556000px;}
.h5{height:23.544480px;}
.h4{height:25.016160px;}
.h7{height:31.500000px;}
.hb{height:41.040000px;}
.h6{height:43.056000px;}
.hd{height:49.662600px;}
.hf{height:52.500000px;}
.hc{height:53.820000px;}
.h9{height:57.750000px;}
.ha{height:59.202000px;}
.he{height:86.112000px;}
.h2{height:103.495500px;}
.h8{height:113.022000px;}
.h3{height:127.150073px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:155.380500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:60.699150px;}
.x4{left:127.559100px;}
.x7{left:129.685050px;}
.x5{left:170.078700px;}
.x6{left:174.862200px;}
.x8{left:341.077800px;}
.x1{left:371.373000px;}
.x3{left:374.292900px;}
.x9{left:756.609450px;}
@media print{
.v1{vertical-align:-3.695467pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-4.096000pt;}
.ls2{letter-spacing:-1.866667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-25.088000pt;}
.ws75{word-spacing:-13.813333pt;}
.ws76{word-spacing:-11.946667pt;}
.ws1{word-spacing:-8.288000pt;}
.ws30{word-spacing:-6.394667pt;}
.ws17{word-spacing:-5.808000pt;}
.ws61{word-spacing:-5.632000pt;}
.ws31{word-spacing:-5.514667pt;}
.ws6f{word-spacing:-4.165333pt;}
.ws63{word-spacing:-3.637333pt;}
.ws37{word-spacing:-3.520000pt;}
.ws68{word-spacing:-3.285333pt;}
.ws70{word-spacing:-3.226667pt;}
.ws67{word-spacing:-3.168000pt;}
.ws40{word-spacing:-2.992000pt;}
.ws1c{word-spacing:-2.757333pt;}
.ws35{word-spacing:-2.698667pt;}
.ws49{word-spacing:-2.581333pt;}
.ws6e{word-spacing:-2.229333pt;}
.ws2a{word-spacing:-2.053333pt;}
.ws5d{word-spacing:-1.877333pt;}
.ws7d{word-spacing:-1.866667pt;}
.ws7e{word-spacing:-1.706667pt;}
.ws3e{word-spacing:-1.701333pt;}
.ws5e{word-spacing:-1.642667pt;}
.ws57{word-spacing:-1.525333pt;}
.ws5a{word-spacing:-0.821333pt;}
.ws20{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.645333pt;}
.ws7b{word-spacing:-0.480000pt;}
.ws7c{word-spacing:-0.426667pt;}
.ws0{word-spacing:-0.204380pt;}
.ws15{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.176000pt;}
.ws60{word-spacing:0.234667pt;}
.ws74{word-spacing:0.352000pt;}
.ws58{word-spacing:0.410667pt;}
.ws6b{word-spacing:0.469333pt;}
.ws39{word-spacing:0.528000pt;}
.ws3f{word-spacing:0.821333pt;}
.ws59{word-spacing:0.880000pt;}
.ws28{word-spacing:0.938667pt;}
.ws6a{word-spacing:0.997333pt;}
.ws62{word-spacing:1.056000pt;}
.ws69{word-spacing:1.114667pt;}
.ws29{word-spacing:1.232000pt;}
.ws80{word-spacing:1.440000pt;}
.ws51{word-spacing:1.466667pt;}
.ws10{word-spacing:1.525333pt;}
.wsa{word-spacing:1.584000pt;}
.ws38{word-spacing:1.642667pt;}
.ws16{word-spacing:1.701333pt;}
.wsf{word-spacing:1.760000pt;}
.ws13{word-spacing:2.405333pt;}
.ws4c{word-spacing:2.757333pt;}
.ws48{word-spacing:2.816000pt;}
.ws4a{word-spacing:2.933333pt;}
.ws1b{word-spacing:2.992000pt;}
.ws7{word-spacing:3.109333pt;}
.ws78{word-spacing:3.146667pt;}
.ws5b{word-spacing:3.168000pt;}
.ws3c{word-spacing:3.226667pt;}
.wsb{word-spacing:3.285333pt;}
.ws5c{word-spacing:3.344000pt;}
.ws2d{word-spacing:3.402667pt;}
.ws77{word-spacing:3.466667pt;}
.ws6{word-spacing:3.578667pt;}
.ws7f{word-spacing:3.680000pt;}
.ws25{word-spacing:3.813333pt;}
.wsd{word-spacing:3.930667pt;}
.ws52{word-spacing:4.048000pt;}
.ws36{word-spacing:4.096000pt;}
.ws11{word-spacing:4.106667pt;}
.ws2b{word-spacing:4.517333pt;}
.ws3d{word-spacing:4.634667pt;}
.ws46{word-spacing:4.693333pt;}
.ws12{word-spacing:4.752000pt;}
.ws2c{word-spacing:4.869333pt;}
.ws26{word-spacing:4.928000pt;}
.ws19{word-spacing:5.104000pt;}
.ws3b{word-spacing:5.162667pt;}
.ws9{word-spacing:5.221333pt;}
.ws2f{word-spacing:5.280000pt;}
.ws65{word-spacing:5.456000pt;}
.ws2e{word-spacing:5.808000pt;}
.ws8{word-spacing:5.925333pt;}
.ws4e{word-spacing:6.101333pt;}
.ws3a{word-spacing:6.218667pt;}
.ws34{word-spacing:6.277333pt;}
.ws7a{word-spacing:6.293333pt;}
.ws4b{word-spacing:6.336000pt;}
.ws66{word-spacing:6.453333pt;}
.ws42{word-spacing:6.570667pt;}
.ws55{word-spacing:6.688000pt;}
.ws79{word-spacing:6.933333pt;}
.ws4f{word-spacing:7.098667pt;}
.ws4d{word-spacing:7.333333pt;}
.wsc{word-spacing:7.392000pt;}
.ws1a{word-spacing:7.509333pt;}
.ws1d{word-spacing:7.568000pt;}
.ws41{word-spacing:7.626667pt;}
.ws45{word-spacing:8.448000pt;}
.ws14{word-spacing:8.741333pt;}
.ws71{word-spacing:8.800000pt;}
.ws47{word-spacing:8.976000pt;}
.ws6c{word-spacing:9.093333pt;}
.ws72{word-spacing:10.384000pt;}
.ws23{word-spacing:10.560000pt;}
.ws64{word-spacing:11.088000pt;}
.ws32{word-spacing:11.616000pt;}
.ws53{word-spacing:11.792000pt;}
.ws24{word-spacing:12.261333pt;}
.ws6d{word-spacing:12.437333pt;}
.ws56{word-spacing:12.906667pt;}
.ws54{word-spacing:13.024000pt;}
.ws50{word-spacing:13.082667pt;}
.ws27{word-spacing:13.317333pt;}
.ws33{word-spacing:13.434667pt;}
.ws43{word-spacing:13.552000pt;}
.ws1e{word-spacing:14.197333pt;}
.ws4{word-spacing:15.253333pt;}
.ws44{word-spacing:15.664000pt;}
.ws5{word-spacing:16.309333pt;}
.ws18{word-spacing:17.658667pt;}
.ws73{word-spacing:17.952000pt;}
.ws22{word-spacing:19.477333pt;}
.wse{word-spacing:20.181333pt;}
.ws21{word-spacing:22.528000pt;}
._b{margin-left:-7.396487pt;}
._4{margin-left:-4.986667pt;}
._1{margin-left:-4.087605pt;}
._0{margin-left:-3.065704pt;}
._3{margin-left:-2.176533pt;}
._2{margin-left:-1.139625pt;}
._a{width:0.981225pt;}
._5{width:1.896425pt;}
._6{width:4.959462pt;}
._8{width:8.506667pt;}
._9{width:103.031254pt;}
._7{width:111.617921pt;}
.fs2{font-size:26.160533pt;}
.fs1{font-size:27.795733pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:85.333333pt;}
.fs5{font-size:112.000000pt;}
.fs0{font-size:204.380267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.230800pt;}
.y21{bottom:114.519733pt;}
.y48{bottom:115.443600pt;}
.y20{bottom:115.467200pt;}
.yb{bottom:128.512533pt;}
.ya{bottom:138.112533pt;}
.y9{bottom:147.712533pt;}
.y8{bottom:157.312533pt;}
.y7{bottom:166.912533pt;}
.y6e{bottom:167.505733pt;}
.y47{bottom:170.025333pt;}
.y6{bottom:176.512533pt;}
.y5{bottom:186.112533pt;}
.y6d{bottom:188.845733pt;}
.y46{bottom:191.365333pt;}
.y6c{bottom:210.185733pt;}
.y45{bottom:212.705333pt;}
.y6b{bottom:231.525733pt;}
.y44{bottom:234.045333pt;}
.y1c{bottom:235.096000pt;}
.y6a{bottom:252.865733pt;}
.y43{bottom:255.385333pt;}
.y1b{bottom:256.436000pt;}
.y69{bottom:274.205733pt;}
.y42{bottom:276.725333pt;}
.y1a{bottom:277.776000pt;}
.y68{bottom:295.545733pt;}
.y41{bottom:298.065333pt;}
.y19{bottom:299.116000pt;}
.y67{bottom:316.885733pt;}
.y40{bottom:319.405333pt;}
.y18{bottom:320.456000pt;}
.y66{bottom:338.225733pt;}
.y3f{bottom:340.745333pt;}
.y17{bottom:341.796000pt;}
.y65{bottom:359.565733pt;}
.y3e{bottom:362.085333pt;}
.y16{bottom:363.136000pt;}
.y64{bottom:380.905733pt;}
.y3d{bottom:383.425333pt;}
.y15{bottom:384.476000pt;}
.y63{bottom:402.245733pt;}
.y3c{bottom:404.765333pt;}
.y14{bottom:405.816000pt;}
.y82{bottom:423.180933pt;}
.y62{bottom:423.585733pt;}
.y3b{bottom:426.105333pt;}
.y13{bottom:427.156000pt;}
.y81{bottom:444.514267pt;}
.y61{bottom:444.925733pt;}
.y3a{bottom:447.445333pt;}
.y12{bottom:448.496000pt;}
.y80{bottom:465.847600pt;}
.y60{bottom:466.265733pt;}
.y39{bottom:468.785333pt;}
.y11{bottom:469.836000pt;}
.y7f{bottom:487.180933pt;}
.y5f{bottom:487.605733pt;}
.y38{bottom:490.125333pt;}
.y10{bottom:491.176000pt;}
.y5e{bottom:508.945733pt;}
.y37{bottom:511.465333pt;}
.yf{bottom:512.516000pt;}
.y7e{bottom:529.847600pt;}
.y5d{bottom:530.285733pt;}
.y36{bottom:532.805333pt;}
.ye{bottom:533.856000pt;}
.y7d{bottom:551.180933pt;}
.y5c{bottom:551.625733pt;}
.y35{bottom:554.145333pt;}
.yd{bottom:555.196000pt;}
.y7c{bottom:572.514267pt;}
.y5b{bottom:572.965733pt;}
.y34{bottom:575.485333pt;}
.y5a{bottom:594.305733pt;}
.y33{bottom:596.825333pt;}
.y1f{bottom:612.545867pt;}
.y7b{bottom:615.180933pt;}
.y59{bottom:615.645733pt;}
.y32{bottom:618.165333pt;}
.y7a{bottom:636.514267pt;}
.y58{bottom:636.985733pt;}
.y31{bottom:639.505333pt;}
.y79{bottom:657.847600pt;}
.y57{bottom:658.325733pt;}
.y30{bottom:660.845333pt;}
.y1e{bottom:673.025867pt;}
.y56{bottom:679.665733pt;}
.y2f{bottom:682.185333pt;}
.y78{bottom:690.519600pt;}
.y55{bottom:701.005733pt;}
.y2e{bottom:703.525333pt;}
.y54{bottom:722.345733pt;}
.y2d{bottom:724.865333pt;}
.y1d{bottom:733.505867pt;}
.y77{bottom:740.967733pt;}
.y53{bottom:743.685733pt;}
.y2c{bottom:746.205333pt;}
.y52{bottom:765.025733pt;}
.y76{bottom:766.074400pt;}
.y2b{bottom:767.545333pt;}
.y51{bottom:786.365733pt;}
.y75{bottom:787.407733pt;}
.y2a{bottom:788.885333pt;}
.yc{bottom:797.757867pt;}
.y50{bottom:807.705733pt;}
.y29{bottom:810.225333pt;}
.y74{bottom:812.514400pt;}
.y4f{bottom:829.045733pt;}
.y28{bottom:831.565333pt;}
.y73{bottom:833.847733pt;}
.y4e{bottom:850.385733pt;}
.y27{bottom:852.905333pt;}
.y72{bottom:866.519733pt;}
.y4d{bottom:871.725733pt;}
.y26{bottom:874.245333pt;}
.y4c{bottom:893.065733pt;}
.y1{bottom:894.802667pt;}
.y25{bottom:895.585333pt;}
.y4{bottom:901.171333pt;}
.y3{bottom:907.302800pt;}
.y4b{bottom:914.405733pt;}
.y71{bottom:915.035600pt;}
.y24{bottom:916.925333pt;}
.y4a{bottom:935.745733pt;}
.y70{bottom:936.375600pt;}
.y23{bottom:938.265333pt;}
.y49{bottom:957.085733pt;}
.y6f{bottom:957.715600pt;}
.y22{bottom:959.605333pt;}
.h5{height:20.928427pt;}
.h4{height:22.236587pt;}
.h7{height:28.000000pt;}
.hb{height:36.480000pt;}
.h6{height:38.272000pt;}
.hd{height:44.144533pt;}
.hf{height:46.666667pt;}
.hc{height:47.840000pt;}
.h9{height:51.333333pt;}
.ha{height:52.624000pt;}
.he{height:76.544000pt;}
.h2{height:91.996000pt;}
.h8{height:100.464000pt;}
.h3{height:113.022287pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:138.116000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:53.954800pt;}
.x4{left:113.385867pt;}
.x7{left:115.275600pt;}
.x5{left:151.181067pt;}
.x6{left:155.433067pt;}
.x8{left:303.180267pt;}
.x1{left:330.109333pt;}
.x3{left:332.704800pt;}
.x9{left:672.541733pt;}
}




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