
    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_3c4973f3a000c10d6b21c5b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a1a127c275a92619fca64adc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5d473374463eefdddcaa3d74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-3.000000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.860000px;}
.ls7{letter-spacing:3.000000px;}
.ls5{letter-spacing:6.000000px;}
.ls4{letter-spacing:7.500000px;}
.ls6{letter-spacing:9.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;}
}
.ws0{word-spacing:-45.000000px;}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.500000px;}
.ws6{word-spacing:-16.320000px;}
.ws9{word-spacing:-15.012000px;}
.ws2{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-13.320000px;}
._1c{margin-left:-9.426000px;}
._c{margin-left:-7.620000px;}
._8{margin-left:-5.820000px;}
._7{margin-left:-4.200000px;}
._a{margin-left:-3.060000px;}
._1{margin-left:-1.980000px;}
._4{width:1.500000px;}
._3{width:3.060000px;}
._0{width:5.040000px;}
._6{width:6.660000px;}
._10{width:7.980000px;}
._d{width:9.360000px;}
._9{width:10.500000px;}
._e{width:11.700000px;}
._f{width:13.020000px;}
._1b{width:14.874000px;}
._15{width:16.440000px;}
._12{width:17.640000px;}
._11{width:18.840000px;}
._14{width:20.070000px;}
._19{width:22.290000px;}
._1a{width:23.406000px;}
._18{width:24.834000px;}
._17{width:28.500000px;}
._13{width:37.500000px;}
._b{width:1710.000000px;}
._5{width:1845.036000px;}
._16{width:1854.000000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:88.875000px;}
.y120{bottom:124.500000px;}
.yb2{bottom:129.375000px;}
.y7a{bottom:130.125000px;}
.yeb{bottom:131.250000px;}
.y39{bottom:132.375000px;}
.y4b{bottom:132.750000px;}
.y11f{bottom:138.000000px;}
.yb1{bottom:144.375000px;}
.yea{bottom:144.750000px;}
.y1b{bottom:145.125000px;}
.y38{bottom:147.375000px;}
.y4a{bottom:147.750000px;}
.y11e{bottom:151.500000px;}
.ye9{bottom:158.250000px;}
.yb0{bottom:159.375000px;}
.y79{bottom:160.125000px;}
.y37{bottom:162.375000px;}
.y49{bottom:162.750000px;}
.y1a{bottom:172.875000px;}
.y11d{bottom:174.375000px;}
.y78{bottom:175.125000px;}
.y36{bottom:177.375000px;}
.y48{bottom:177.750000px;}
.ye8{bottom:181.875000px;}
.yaf{bottom:184.875000px;}
.y19{bottom:187.875000px;}
.y77{bottom:190.125000px;}
.y35{bottom:192.375000px;}
.ye7{bottom:195.375000px;}
.yae{bottom:199.875000px;}
.y11c{bottom:201.375000px;}
.y18{bottom:202.875000px;}
.y8b{bottom:205.125000px;}
.y34{bottom:207.375000px;}
.y47{bottom:207.750000px;}
.ye6{bottom:208.875000px;}
.y17{bottom:217.875000px;}
.y76{bottom:220.125000px;}
.y33{bottom:222.375000px;}
.y46{bottom:222.750000px;}
.y11b{bottom:224.250000px;}
.yad{bottom:225.000000px;}
.y75{bottom:235.125000px;}
.y32{bottom:237.375000px;}
.y45{bottom:237.750000px;}
.y16{bottom:245.625000px;}
.ye5{bottom:246.375000px;}
.y8a{bottom:250.125000px;}
.y11a{bottom:251.250000px;}
.y31{bottom:252.375000px;}
.ye4{bottom:259.875000px;}
.y15{bottom:260.625000px;}
.y119{bottom:264.750000px;}
.y74{bottom:265.125000px;}
.y44{bottom:267.750000px;}
.ye3{bottom:273.375000px;}
.y14{bottom:275.625000px;}
.y118{bottom:278.250000px;}
.y73{bottom:280.125000px;}
.y30{bottom:282.375000px;}
.y43{bottom:282.750000px;}
.ye2{bottom:286.875000px;}
.y13{bottom:290.625000px;}
.y117{bottom:291.750000px;}
.y72{bottom:295.125000px;}
.y2f{bottom:297.375000px;}
.y42{bottom:297.750000px;}
.y71{bottom:310.125000px;}
.ye1{bottom:310.875000px;}
.y2e{bottom:312.375000px;}
.y41{bottom:312.750000px;}
.y116{bottom:314.625000px;}
.y12{bottom:318.375000px;}
.ye0{bottom:324.375000px;}
.y70{bottom:325.125000px;}
.y2d{bottom:327.375000px;}
.y40{bottom:327.750000px;}
.y115{bottom:328.125000px;}
.y11{bottom:333.375000px;}
.ydf{bottom:337.875000px;}
.y89{bottom:340.125000px;}
.y2c{bottom:342.375000px;}
.y165{bottom:342.750000px;}
.y114{bottom:351.000000px;}
.y6f{bottom:355.125000px;}
.y2b{bottom:357.375000px;}
.y3f{bottom:357.750000px;}
.y10{bottom:361.125000px;}
.yde{bottom:361.875000px;}
.y113{bottom:364.500000px;}
.y6e{bottom:370.125000px;}
.y2a{bottom:372.375000px;}
.y3e{bottom:372.750000px;}
.ydd{bottom:375.375000px;}
.y88{bottom:385.125000px;}
.yac{bottom:387.375000px;}
.y3d{bottom:387.750000px;}
.ydc{bottom:388.875000px;}
.y87{bottom:400.125000px;}
.y112{bottom:400.875000px;}
.y6d{bottom:402.375000px;}
.y3c{bottom:402.750000px;}
.y29{bottom:404.625000px;}
.ydb{bottom:412.875000px;}
.y86{bottom:415.125000px;}
.y6c{bottom:417.375000px;}
.y28{bottom:419.625000px;}
.y111{bottom:423.750000px;}
.yda{bottom:426.375000px;}
.y8e{bottom:430.125000px;}
.y6b{bottom:432.375000px;}
.y3b{bottom:432.750000px;}
.y27{bottom:434.625000px;}
.yf{bottom:436.125000px;}
.y110{bottom:437.250000px;}
.yd9{bottom:439.875000px;}
.y144{bottom:442.500000px;}
.y164{bottom:443.250000px;}
.y85{bottom:445.125000px;}
.y6a{bottom:447.375000px;}
.y3a{bottom:447.750000px;}
.y26{bottom:449.625000px;}
.y10f{bottom:450.750000px;}
.y143{bottom:456.000000px;}
.y163{bottom:456.750000px;}
.y84{bottom:460.125000px;}
.y69{bottom:462.375000px;}
.yd8{bottom:463.500000px;}
.ye{bottom:463.875000px;}
.y162{bottom:470.250000px;}
.y10e{bottom:473.625000px;}
.y83{bottom:475.125000px;}
.yd7{bottom:477.000000px;}
.y25{bottom:477.375000px;}
.yd{bottom:478.875000px;}
.y142{bottom:480.000000px;}
.y161{bottom:483.750000px;}
.y10d{bottom:487.125000px;}
.y82{bottom:490.125000px;}
.yd6{bottom:490.500000px;}
.y9a{bottom:492.375000px;}
.y141{bottom:493.500000px;}
.yc{bottom:493.875000px;}
.y10c{bottom:500.625000px;}
.yd5{bottom:504.000000px;}
.y68{bottom:505.125000px;}
.y140{bottom:507.000000px;}
.y99{bottom:507.375000px;}
.yb{bottom:508.875000px;}
.y160{bottom:510.375000px;}
.y10b{bottom:514.125000px;}
.y67{bottom:520.125000px;}
.y98{bottom:522.375000px;}
.y15f{bottom:523.875000px;}
.y10a{bottom:527.625000px;}
.yd4{bottom:528.000000px;}
.y13f{bottom:530.625000px;}
.y66{bottom:535.125000px;}
.ya{bottom:536.625000px;}
.y97{bottom:537.375000px;}
.yd3{bottom:541.500000px;}
.y13e{bottom:544.125000px;}
.y65{bottom:550.125000px;}
.y109{bottom:550.500000px;}
.y9{bottom:551.625000px;}
.yd2{bottom:555.000000px;}
.y108{bottom:564.000000px;}
.y8d{bottom:565.125000px;}
.y8{bottom:566.625000px;}
.y13d{bottom:567.750000px;}
.yaa{bottom:577.875000px;}
.yd1{bottom:579.000000px;}
.y81{bottom:580.125000px;}
.y13c{bottom:581.250000px;}
.y7{bottom:581.625000px;}
.y107{bottom:586.875000px;}
.y15e{bottom:591.000000px;}
.yd0{bottom:592.500000px;}
.ya9{bottom:592.875000px;}
.y80{bottom:595.125000px;}
.y106{bottom:600.375000px;}
.y15d{bottom:604.500000px;}
.y13b{bottom:604.875000px;}
.ycf{bottom:606.000000px;}
.ya8{bottom:607.875000px;}
.y6{bottom:609.375000px;}
.y7f{bottom:610.125000px;}
.y105{bottom:613.875000px;}
.y15c{bottom:618.000000px;}
.y13a{bottom:618.375000px;}
.ya7{bottom:622.875000px;}
.y5{bottom:624.375000px;}
.y64{bottom:625.125000px;}
.yce{bottom:630.000000px;}
.y15b{bottom:631.500000px;}
.y139{bottom:631.875000px;}
.y104{bottom:636.750000px;}
.y63{bottom:640.125000px;}
.ycd{bottom:643.500000px;}
.y15a{bottom:645.000000px;}
.y138{bottom:645.375000px;}
.y103{bottom:650.250000px;}
.ya6{bottom:650.625000px;}
.y4{bottom:652.500000px;}
.y62{bottom:655.125000px;}
.ycc{bottom:657.000000px;}
.y102{bottom:663.750000px;}
.ya5{bottom:665.625000px;}
.y137{bottom:669.000000px;}
.y61{bottom:670.125000px;}
.y159{bottom:671.625000px;}
.y23{bottom:678.750000px;}
.ya4{bottom:680.625000px;}
.ycb{bottom:681.000000px;}
.y136{bottom:682.500000px;}
.y60{bottom:685.125000px;}
.y101{bottom:686.625000px;}
.y22{bottom:693.750000px;}
.yca{bottom:694.500000px;}
.ya3{bottom:695.625000px;}
.y135{bottom:696.000000px;}
.y158{bottom:698.625000px;}
.y7e{bottom:700.125000px;}
.yc9{bottom:708.000000px;}
.y21{bottom:708.750000px;}
.y157{bottom:712.125000px;}
.y100{bottom:713.625000px;}
.y5f{bottom:715.125000px;}
.y134{bottom:720.000000px;}
.ya2{bottom:720.375000px;}
.yc8{bottom:721.500000px;}
.y5e{bottom:730.125000px;}
.y133{bottom:733.500000px;}
.ya1{bottom:735.375000px;}
.yff{bottom:736.500000px;}
.y20{bottom:736.875000px;}
.y156{bottom:738.750000px;}
.y5d{bottom:745.125000px;}
.y3{bottom:746.250000px;}
.yfe{bottom:750.000000px;}
.ya0{bottom:750.375000px;}
.y155{bottom:752.250000px;}
.y132{bottom:757.125000px;}
.yc7{bottom:758.625000px;}
.y7d{bottom:760.125000px;}
.y96{bottom:762.375000px;}
.yfd{bottom:763.500000px;}
.y9f{bottom:765.375000px;}
.y154{bottom:765.750000px;}
.y131{bottom:770.625000px;}
.y5c{bottom:775.125000px;}
.y95{bottom:777.375000px;}
.y153{bottom:779.250000px;}
.yc6{bottom:782.625000px;}
.yfc{bottom:786.375000px;}
.y5b{bottom:790.125000px;}
.y94{bottom:792.375000px;}
.y130{bottom:794.250000px;}
.yc5{bottom:796.125000px;}
.yfb{bottom:799.875000px;}
.y5a{bottom:805.125000px;}
.y152{bottom:805.875000px;}
.y93{bottom:807.375000px;}
.y12f{bottom:807.750000px;}
.y151{bottom:819.375000px;}
.y59{bottom:820.125000px;}
.y12e{bottom:821.250000px;}
.y92{bottom:822.375000px;}
.yfa{bottom:822.750000px;}
.yc4{bottom:833.625000px;}
.y58{bottom:835.125000px;}
.yf9{bottom:836.250000px;}
.y91{bottom:837.375000px;}
.y12d{bottom:844.875000px;}
.y150{bottom:846.000000px;}
.yf8{bottom:849.750000px;}
.y57{bottom:850.125000px;}
.y90{bottom:852.375000px;}
.yc3{bottom:857.625000px;}
.y12c{bottom:858.375000px;}
.y14f{bottom:859.500000px;}
.y56{bottom:865.125000px;}
.y8f{bottom:867.375000px;}
.yc2{bottom:871.125000px;}
.y12b{bottom:871.875000px;}
.yf7{bottom:872.625000px;}
.y14e{bottom:873.000000px;}
.y8c{bottom:880.125000px;}
.yab{bottom:882.375000px;}
.yc1{bottom:884.625000px;}
.yf6{bottom:886.125000px;}
.y55{bottom:895.125000px;}
.y12a{bottom:895.500000px;}
.y1f{bottom:897.375000px;}
.yc0{bottom:898.125000px;}
.yf5{bottom:899.625000px;}
.y14d{bottom:900.000000px;}
.y129{bottom:909.000000px;}
.y54{bottom:910.125000px;}
.ybf{bottom:911.625000px;}
.y1e{bottom:912.375000px;}
.yf4{bottom:913.125000px;}
.y14c{bottom:913.500000px;}
.y53{bottom:925.125000px;}
.y14b{bottom:927.000000px;}
.y9e{bottom:927.375000px;}
.y128{bottom:933.000000px;}
.ybe{bottom:935.625000px;}
.yf3{bottom:936.000000px;}
.y52{bottom:940.125000px;}
.y14a{bottom:940.500000px;}
.y9d{bottom:942.375000px;}
.y127{bottom:946.500000px;}
.ybd{bottom:949.125000px;}
.yf2{bottom:949.500000px;}
.y149{bottom:954.000000px;}
.y7c{bottom:955.125000px;}
.y9c{bottom:957.375000px;}
.y126{bottom:960.000000px;}
.y1d{bottom:961.500000px;}
.yf1{bottom:963.000000px;}
.y51{bottom:970.125000px;}
.y9b{bottom:972.375000px;}
.ybc{bottom:972.750000px;}
.yf0{bottom:976.500000px;}
.y148{bottom:980.625000px;}
.y125{bottom:983.625000px;}
.y50{bottom:985.125000px;}
.ybb{bottom:986.250000px;}
.yb6{bottom:987.375000px;}
.y1c{bottom:988.500000px;}
.yef{bottom:990.000000px;}
.y147{bottom:994.125000px;}
.y124{bottom:997.125000px;}
.y4f{bottom:1000.125000px;}
.yb5{bottom:1002.375000px;}
.y146{bottom:1007.625000px;}
.yba{bottom:1010.250000px;}
.y123{bottom:1010.625000px;}
.yee{bottom:1012.875000px;}
.y4e{bottom:1015.125000px;}
.yb4{bottom:1017.375000px;}
.y145{bottom:1021.125000px;}
.yb9{bottom:1023.750000px;}
.yed{bottom:1026.375000px;}
.y7b{bottom:1030.125000px;}
.yb3{bottom:1032.375000px;}
.y122{bottom:1034.250000px;}
.yb8{bottom:1037.250000px;}
.yec{bottom:1039.875000px;}
.y4d{bottom:1045.125000px;}
.y121{bottom:1047.750000px;}
.y4c{bottom:1060.125000px;}
.yb7{bottom:1061.250000px;}
.y1{bottom:1065.000000px;}
.y24{bottom:1107.375000px;}
.h2{height:47.109375px;}
.hb{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:54.421875px;}
.h8{height:58.857422px;}
.h4{height:58.886719px;}
.h5{height:60.468750px;}
.h6{height:64.775391px;}
.h7{height:66.515625px;}
.h3{height:108.843750px;}
.h1{height:181.406250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:97.687500px;}
.x4{left:114.562500px;}
.x1{left:364.312500px;}
.x3{left:476.062500px;}
.x5{left:492.937500px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.653333pt;}
.ls7{letter-spacing:2.666667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls4{letter-spacing:6.666667pt;}
.ls6{letter-spacing:8.000000pt;}
.ws0{word-spacing:-40.000000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.666667pt;}
.ws6{word-spacing:-14.506667pt;}
.ws9{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-11.840000pt;}
._1c{margin-left:-8.378667pt;}
._c{margin-left:-6.773333pt;}
._8{margin-left:-5.173333pt;}
._7{margin-left:-3.733333pt;}
._a{margin-left:-2.720000pt;}
._1{margin-left:-1.760000pt;}
._4{width:1.333333pt;}
._3{width:2.720000pt;}
._0{width:4.480000pt;}
._6{width:5.920000pt;}
._10{width:7.093333pt;}
._d{width:8.320000pt;}
._9{width:9.333333pt;}
._e{width:10.400000pt;}
._f{width:11.573333pt;}
._1b{width:13.221333pt;}
._15{width:14.613333pt;}
._12{width:15.680000pt;}
._11{width:16.746667pt;}
._14{width:17.840000pt;}
._19{width:19.813333pt;}
._1a{width:20.805333pt;}
._18{width:22.074667pt;}
._17{width:25.333333pt;}
._13{width:33.333333pt;}
._b{width:1520.000000pt;}
._5{width:1640.032000pt;}
._16{width:1648.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:79.000000pt;}
.y120{bottom:110.666667pt;}
.yb2{bottom:115.000000pt;}
.y7a{bottom:115.666667pt;}
.yeb{bottom:116.666667pt;}
.y39{bottom:117.666667pt;}
.y4b{bottom:118.000000pt;}
.y11f{bottom:122.666667pt;}
.yb1{bottom:128.333333pt;}
.yea{bottom:128.666667pt;}
.y1b{bottom:129.000000pt;}
.y38{bottom:131.000000pt;}
.y4a{bottom:131.333333pt;}
.y11e{bottom:134.666667pt;}
.ye9{bottom:140.666667pt;}
.yb0{bottom:141.666667pt;}
.y79{bottom:142.333333pt;}
.y37{bottom:144.333333pt;}
.y49{bottom:144.666667pt;}
.y1a{bottom:153.666667pt;}
.y11d{bottom:155.000000pt;}
.y78{bottom:155.666667pt;}
.y36{bottom:157.666667pt;}
.y48{bottom:158.000000pt;}
.ye8{bottom:161.666667pt;}
.yaf{bottom:164.333333pt;}
.y19{bottom:167.000000pt;}
.y77{bottom:169.000000pt;}
.y35{bottom:171.000000pt;}
.ye7{bottom:173.666667pt;}
.yae{bottom:177.666667pt;}
.y11c{bottom:179.000000pt;}
.y18{bottom:180.333333pt;}
.y8b{bottom:182.333333pt;}
.y34{bottom:184.333333pt;}
.y47{bottom:184.666667pt;}
.ye6{bottom:185.666667pt;}
.y17{bottom:193.666667pt;}
.y76{bottom:195.666667pt;}
.y33{bottom:197.666667pt;}
.y46{bottom:198.000000pt;}
.y11b{bottom:199.333333pt;}
.yad{bottom:200.000000pt;}
.y75{bottom:209.000000pt;}
.y32{bottom:211.000000pt;}
.y45{bottom:211.333333pt;}
.y16{bottom:218.333333pt;}
.ye5{bottom:219.000000pt;}
.y8a{bottom:222.333333pt;}
.y11a{bottom:223.333333pt;}
.y31{bottom:224.333333pt;}
.ye4{bottom:231.000000pt;}
.y15{bottom:231.666667pt;}
.y119{bottom:235.333333pt;}
.y74{bottom:235.666667pt;}
.y44{bottom:238.000000pt;}
.ye3{bottom:243.000000pt;}
.y14{bottom:245.000000pt;}
.y118{bottom:247.333333pt;}
.y73{bottom:249.000000pt;}
.y30{bottom:251.000000pt;}
.y43{bottom:251.333333pt;}
.ye2{bottom:255.000000pt;}
.y13{bottom:258.333333pt;}
.y117{bottom:259.333333pt;}
.y72{bottom:262.333333pt;}
.y2f{bottom:264.333333pt;}
.y42{bottom:264.666667pt;}
.y71{bottom:275.666667pt;}
.ye1{bottom:276.333333pt;}
.y2e{bottom:277.666667pt;}
.y41{bottom:278.000000pt;}
.y116{bottom:279.666667pt;}
.y12{bottom:283.000000pt;}
.ye0{bottom:288.333333pt;}
.y70{bottom:289.000000pt;}
.y2d{bottom:291.000000pt;}
.y40{bottom:291.333333pt;}
.y115{bottom:291.666667pt;}
.y11{bottom:296.333333pt;}
.ydf{bottom:300.333333pt;}
.y89{bottom:302.333333pt;}
.y2c{bottom:304.333333pt;}
.y165{bottom:304.666667pt;}
.y114{bottom:312.000000pt;}
.y6f{bottom:315.666667pt;}
.y2b{bottom:317.666667pt;}
.y3f{bottom:318.000000pt;}
.y10{bottom:321.000000pt;}
.yde{bottom:321.666667pt;}
.y113{bottom:324.000000pt;}
.y6e{bottom:329.000000pt;}
.y2a{bottom:331.000000pt;}
.y3e{bottom:331.333333pt;}
.ydd{bottom:333.666667pt;}
.y88{bottom:342.333333pt;}
.yac{bottom:344.333333pt;}
.y3d{bottom:344.666667pt;}
.ydc{bottom:345.666667pt;}
.y87{bottom:355.666667pt;}
.y112{bottom:356.333333pt;}
.y6d{bottom:357.666667pt;}
.y3c{bottom:358.000000pt;}
.y29{bottom:359.666667pt;}
.ydb{bottom:367.000000pt;}
.y86{bottom:369.000000pt;}
.y6c{bottom:371.000000pt;}
.y28{bottom:373.000000pt;}
.y111{bottom:376.666667pt;}
.yda{bottom:379.000000pt;}
.y8e{bottom:382.333333pt;}
.y6b{bottom:384.333333pt;}
.y3b{bottom:384.666667pt;}
.y27{bottom:386.333333pt;}
.yf{bottom:387.666667pt;}
.y110{bottom:388.666667pt;}
.yd9{bottom:391.000000pt;}
.y144{bottom:393.333333pt;}
.y164{bottom:394.000000pt;}
.y85{bottom:395.666667pt;}
.y6a{bottom:397.666667pt;}
.y3a{bottom:398.000000pt;}
.y26{bottom:399.666667pt;}
.y10f{bottom:400.666667pt;}
.y143{bottom:405.333333pt;}
.y163{bottom:406.000000pt;}
.y84{bottom:409.000000pt;}
.y69{bottom:411.000000pt;}
.yd8{bottom:412.000000pt;}
.ye{bottom:412.333333pt;}
.y162{bottom:418.000000pt;}
.y10e{bottom:421.000000pt;}
.y83{bottom:422.333333pt;}
.yd7{bottom:424.000000pt;}
.y25{bottom:424.333333pt;}
.yd{bottom:425.666667pt;}
.y142{bottom:426.666667pt;}
.y161{bottom:430.000000pt;}
.y10d{bottom:433.000000pt;}
.y82{bottom:435.666667pt;}
.yd6{bottom:436.000000pt;}
.y9a{bottom:437.666667pt;}
.y141{bottom:438.666667pt;}
.yc{bottom:439.000000pt;}
.y10c{bottom:445.000000pt;}
.yd5{bottom:448.000000pt;}
.y68{bottom:449.000000pt;}
.y140{bottom:450.666667pt;}
.y99{bottom:451.000000pt;}
.yb{bottom:452.333333pt;}
.y160{bottom:453.666667pt;}
.y10b{bottom:457.000000pt;}
.y67{bottom:462.333333pt;}
.y98{bottom:464.333333pt;}
.y15f{bottom:465.666667pt;}
.y10a{bottom:469.000000pt;}
.yd4{bottom:469.333333pt;}
.y13f{bottom:471.666667pt;}
.y66{bottom:475.666667pt;}
.ya{bottom:477.000000pt;}
.y97{bottom:477.666667pt;}
.yd3{bottom:481.333333pt;}
.y13e{bottom:483.666667pt;}
.y65{bottom:489.000000pt;}
.y109{bottom:489.333333pt;}
.y9{bottom:490.333333pt;}
.yd2{bottom:493.333333pt;}
.y108{bottom:501.333333pt;}
.y8d{bottom:502.333333pt;}
.y8{bottom:503.666667pt;}
.y13d{bottom:504.666667pt;}
.yaa{bottom:513.666667pt;}
.yd1{bottom:514.666667pt;}
.y81{bottom:515.666667pt;}
.y13c{bottom:516.666667pt;}
.y7{bottom:517.000000pt;}
.y107{bottom:521.666667pt;}
.y15e{bottom:525.333333pt;}
.yd0{bottom:526.666667pt;}
.ya9{bottom:527.000000pt;}
.y80{bottom:529.000000pt;}
.y106{bottom:533.666667pt;}
.y15d{bottom:537.333333pt;}
.y13b{bottom:537.666667pt;}
.ycf{bottom:538.666667pt;}
.ya8{bottom:540.333333pt;}
.y6{bottom:541.666667pt;}
.y7f{bottom:542.333333pt;}
.y105{bottom:545.666667pt;}
.y15c{bottom:549.333333pt;}
.y13a{bottom:549.666667pt;}
.ya7{bottom:553.666667pt;}
.y5{bottom:555.000000pt;}
.y64{bottom:555.666667pt;}
.yce{bottom:560.000000pt;}
.y15b{bottom:561.333333pt;}
.y139{bottom:561.666667pt;}
.y104{bottom:566.000000pt;}
.y63{bottom:569.000000pt;}
.ycd{bottom:572.000000pt;}
.y15a{bottom:573.333333pt;}
.y138{bottom:573.666667pt;}
.y103{bottom:578.000000pt;}
.ya6{bottom:578.333333pt;}
.y4{bottom:580.000000pt;}
.y62{bottom:582.333333pt;}
.ycc{bottom:584.000000pt;}
.y102{bottom:590.000000pt;}
.ya5{bottom:591.666667pt;}
.y137{bottom:594.666667pt;}
.y61{bottom:595.666667pt;}
.y159{bottom:597.000000pt;}
.y23{bottom:603.333333pt;}
.ya4{bottom:605.000000pt;}
.ycb{bottom:605.333333pt;}
.y136{bottom:606.666667pt;}
.y60{bottom:609.000000pt;}
.y101{bottom:610.333333pt;}
.y22{bottom:616.666667pt;}
.yca{bottom:617.333333pt;}
.ya3{bottom:618.333333pt;}
.y135{bottom:618.666667pt;}
.y158{bottom:621.000000pt;}
.y7e{bottom:622.333333pt;}
.yc9{bottom:629.333333pt;}
.y21{bottom:630.000000pt;}
.y157{bottom:633.000000pt;}
.y100{bottom:634.333333pt;}
.y5f{bottom:635.666667pt;}
.y134{bottom:640.000000pt;}
.ya2{bottom:640.333333pt;}
.yc8{bottom:641.333333pt;}
.y5e{bottom:649.000000pt;}
.y133{bottom:652.000000pt;}
.ya1{bottom:653.666667pt;}
.yff{bottom:654.666667pt;}
.y20{bottom:655.000000pt;}
.y156{bottom:656.666667pt;}
.y5d{bottom:662.333333pt;}
.y3{bottom:663.333333pt;}
.yfe{bottom:666.666667pt;}
.ya0{bottom:667.000000pt;}
.y155{bottom:668.666667pt;}
.y132{bottom:673.000000pt;}
.yc7{bottom:674.333333pt;}
.y7d{bottom:675.666667pt;}
.y96{bottom:677.666667pt;}
.yfd{bottom:678.666667pt;}
.y9f{bottom:680.333333pt;}
.y154{bottom:680.666667pt;}
.y131{bottom:685.000000pt;}
.y5c{bottom:689.000000pt;}
.y95{bottom:691.000000pt;}
.y153{bottom:692.666667pt;}
.yc6{bottom:695.666667pt;}
.yfc{bottom:699.000000pt;}
.y5b{bottom:702.333333pt;}
.y94{bottom:704.333333pt;}
.y130{bottom:706.000000pt;}
.yc5{bottom:707.666667pt;}
.yfb{bottom:711.000000pt;}
.y5a{bottom:715.666667pt;}
.y152{bottom:716.333333pt;}
.y93{bottom:717.666667pt;}
.y12f{bottom:718.000000pt;}
.y151{bottom:728.333333pt;}
.y59{bottom:729.000000pt;}
.y12e{bottom:730.000000pt;}
.y92{bottom:731.000000pt;}
.yfa{bottom:731.333333pt;}
.yc4{bottom:741.000000pt;}
.y58{bottom:742.333333pt;}
.yf9{bottom:743.333333pt;}
.y91{bottom:744.333333pt;}
.y12d{bottom:751.000000pt;}
.y150{bottom:752.000000pt;}
.yf8{bottom:755.333333pt;}
.y57{bottom:755.666667pt;}
.y90{bottom:757.666667pt;}
.yc3{bottom:762.333333pt;}
.y12c{bottom:763.000000pt;}
.y14f{bottom:764.000000pt;}
.y56{bottom:769.000000pt;}
.y8f{bottom:771.000000pt;}
.yc2{bottom:774.333333pt;}
.y12b{bottom:775.000000pt;}
.yf7{bottom:775.666667pt;}
.y14e{bottom:776.000000pt;}
.y8c{bottom:782.333333pt;}
.yab{bottom:784.333333pt;}
.yc1{bottom:786.333333pt;}
.yf6{bottom:787.666667pt;}
.y55{bottom:795.666667pt;}
.y12a{bottom:796.000000pt;}
.y1f{bottom:797.666667pt;}
.yc0{bottom:798.333333pt;}
.yf5{bottom:799.666667pt;}
.y14d{bottom:800.000000pt;}
.y129{bottom:808.000000pt;}
.y54{bottom:809.000000pt;}
.ybf{bottom:810.333333pt;}
.y1e{bottom:811.000000pt;}
.yf4{bottom:811.666667pt;}
.y14c{bottom:812.000000pt;}
.y53{bottom:822.333333pt;}
.y14b{bottom:824.000000pt;}
.y9e{bottom:824.333333pt;}
.y128{bottom:829.333333pt;}
.ybe{bottom:831.666667pt;}
.yf3{bottom:832.000000pt;}
.y52{bottom:835.666667pt;}
.y14a{bottom:836.000000pt;}
.y9d{bottom:837.666667pt;}
.y127{bottom:841.333333pt;}
.ybd{bottom:843.666667pt;}
.yf2{bottom:844.000000pt;}
.y149{bottom:848.000000pt;}
.y7c{bottom:849.000000pt;}
.y9c{bottom:851.000000pt;}
.y126{bottom:853.333333pt;}
.y1d{bottom:854.666667pt;}
.yf1{bottom:856.000000pt;}
.y51{bottom:862.333333pt;}
.y9b{bottom:864.333333pt;}
.ybc{bottom:864.666667pt;}
.yf0{bottom:868.000000pt;}
.y148{bottom:871.666667pt;}
.y125{bottom:874.333333pt;}
.y50{bottom:875.666667pt;}
.ybb{bottom:876.666667pt;}
.yb6{bottom:877.666667pt;}
.y1c{bottom:878.666667pt;}
.yef{bottom:880.000000pt;}
.y147{bottom:883.666667pt;}
.y124{bottom:886.333333pt;}
.y4f{bottom:889.000000pt;}
.yb5{bottom:891.000000pt;}
.y146{bottom:895.666667pt;}
.yba{bottom:898.000000pt;}
.y123{bottom:898.333333pt;}
.yee{bottom:900.333333pt;}
.y4e{bottom:902.333333pt;}
.yb4{bottom:904.333333pt;}
.y145{bottom:907.666667pt;}
.yb9{bottom:910.000000pt;}
.yed{bottom:912.333333pt;}
.y7b{bottom:915.666667pt;}
.yb3{bottom:917.666667pt;}
.y122{bottom:919.333333pt;}
.yb8{bottom:922.000000pt;}
.yec{bottom:924.333333pt;}
.y4d{bottom:929.000000pt;}
.y121{bottom:931.333333pt;}
.y4c{bottom:942.333333pt;}
.yb7{bottom:943.333333pt;}
.y1{bottom:946.666667pt;}
.y24{bottom:984.333333pt;}
.h2{height:41.875000pt;}
.hb{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:48.375000pt;}
.h8{height:52.317708pt;}
.h4{height:52.343750pt;}
.h5{height:53.750000pt;}
.h6{height:57.578125pt;}
.h7{height:59.125000pt;}
.h3{height:96.750000pt;}
.h1{height:161.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:86.833333pt;}
.x4{left:101.833333pt;}
.x1{left:323.833333pt;}
.x3{left:423.166667pt;}
.x5{left:438.166667pt;}
}




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