
    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_4558d41e55a9042c4ede5e4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_3598d76655754c21b72f14a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_e4c689f7cf60da480ead2c0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.036000;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_902350f4530623056b4da565.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.039000;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_2ffc5645dac1c52eaccf81ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939000;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_7c164c94312d8052f3e7eeda.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-2.280000px;}
.ls28{letter-spacing:-2.220000px;}
.ls24{letter-spacing:-1.560000px;}
.ls17{letter-spacing:-0.768000px;}
.ls25{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.285000px;}
.ls1f{letter-spacing:-0.057000px;}
.ls11{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.070800px;}
.ls19{letter-spacing:0.285000px;}
.ls2{letter-spacing:0.459000px;}
.ls1c{letter-spacing:0.484500px;}
.ls1a{letter-spacing:0.486000px;}
.ls27{letter-spacing:0.549600px;}
.ls5{letter-spacing:0.550200px;}
.ls15{letter-spacing:0.550800px;}
.ls8{letter-spacing:0.570000px;}
.ls16{letter-spacing:0.590400px;}
.ls3{letter-spacing:0.630000px;}
.ls1d{letter-spacing:1.054500px;}
.ls13{letter-spacing:1.140000px;}
.ls14{letter-spacing:1.262400px;}
.lsb{letter-spacing:1.690200px;}
.lse{letter-spacing:1.690800px;}
.ls1{letter-spacing:1.707600px;}
.ls10{letter-spacing:1.710000px;}
.ls21{letter-spacing:2.175000px;}
.ls26{letter-spacing:2.693400px;}
.ls4{letter-spacing:2.745000px;}
.ls0{letter-spacing:3.313200px;}
.lsa{letter-spacing:3.885000px;}
.ls22{letter-spacing:9.156600px;}
.ls23{letter-spacing:9.157200px;}
.ls6{letter-spacing:9.726600px;}
.ls7{letter-spacing:9.727200px;}
.lsf{letter-spacing:10.011600px;}
.lsc{letter-spacing:10.866600px;}
.lsd{letter-spacing:10.867200px;}
.ls12{letter-spacing:18.810000px;}
.ls9{letter-spacing:19.380000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-37.677000px;}
.ws0{word-spacing:-34.003200px;}
.ws4{word-spacing:-18.867000px;}
.ws23{word-spacing:-18.354000px;}
.ws42{word-spacing:-18.012000px;}
.ws3e{word-spacing:-17.556000px;}
.ws25{word-spacing:-17.271000px;}
.ws21{word-spacing:-17.185500px;}
.ws20{word-spacing:-16.615500px;}
.ws3a{word-spacing:-16.587000px;}
.wsa{word-spacing:-16.359000px;}
.ws3d{word-spacing:-16.302000px;}
.ws1f{word-spacing:-16.074000px;}
.ws17{word-spacing:-15.846000px;}
.ws3b{word-spacing:-15.447000px;}
.ws26{word-spacing:-14.991000px;}
.ws1d{word-spacing:-14.706000px;}
.ws1{word-spacing:-14.683200px;}
.wsd{word-spacing:-14.193000px;}
.ws1c{word-spacing:-14.022000px;}
.ws37{word-spacing:-13.680000px;}
.ws34{word-spacing:-13.566000px;}
.ws12{word-spacing:-12.816000px;}
.ws19{word-spacing:-12.483000px;}
.ws2c{word-spacing:-12.426000px;}
.ws2e{word-spacing:-11.799000px;}
.wse{word-spacing:-11.685000px;}
.ws3c{word-spacing:-11.172000px;}
.ws38{word-spacing:-10.887000px;}
.ws39{word-spacing:-10.203000px;}
.ws2a{word-spacing:-9.804000px;}
.ws1a{word-spacing:-9.405000px;}
.wsf{word-spacing:-9.348000px;}
.ws27{word-spacing:-8.721000px;}
.ws2{word-spacing:-8.379000px;}
.ws16{word-spacing:-8.265000px;}
.ws28{word-spacing:-8.037000px;}
.ws40{word-spacing:-7.752000px;}
.ws35{word-spacing:-7.467000px;}
.ws31{word-spacing:-7.410000px;}
.ws18{word-spacing:-7.182000px;}
.ws10{word-spacing:-7.125000px;}
.ws30{word-spacing:-4.503000px;}
.ws11{word-spacing:-3.990000px;}
.ws14{word-spacing:-3.534000px;}
.ws5{word-spacing:-1.296360px;}
.ws33{word-spacing:-0.570000px;}
.ws15{word-spacing:-0.228000px;}
.ws6{word-spacing:0.000000px;}
.ws2f{word-spacing:0.969000px;}
.ws32{word-spacing:1.560000px;}
.ws41{word-spacing:2.220000px;}
.ws29{word-spacing:2.280000px;}
.ws22{word-spacing:3.234120px;}
.ws24{word-spacing:6.768000px;}
.ws36{word-spacing:7.068000px;}
.ws7{word-spacing:7.614000px;}
.ws3f{word-spacing:8.037000px;}
.wsc{word-spacing:9.120000px;}
.ws2d{word-spacing:9.690000px;}
.ws8{word-spacing:10.143000px;}
.ws1b{word-spacing:10.260000px;}
.ws9{word-spacing:21.375000px;}
.ws1e{word-spacing:58.995000px;}
.ws2b{word-spacing:59.850000px;}
.wsb{word-spacing:89.889000px;}
.ws13{word-spacing:90.459000px;}
._17{margin-left:-18.259560px;}
._18{margin-left:-11.248560px;}
._c{margin-left:-10.032000px;}
._a{margin-left:-8.208000px;}
._14{margin-left:-7.098600px;}
._6{margin-left:-4.939200px;}
._12{margin-left:-3.343440px;}
._9{margin-left:-2.337000px;}
._1{margin-left:-1.330560px;}
._2{width:1.932480px;}
._7{width:2.985240px;}
._0{width:4.255680px;}
._1e{width:5.510760px;}
._1f{width:6.783000px;}
._f{width:8.239560px;}
._d{width:9.321960px;}
._4{width:10.962240px;}
._b{width:12.255000px;}
._8{width:13.596600px;}
._e{width:15.637320px;}
._13{width:16.644000px;}
._3{width:19.590720px;}
._10{width:20.857080px;}
._16{width:22.401000px;}
._19{width:26.402040px;}
._1b{width:35.625000px;}
._1c{width:47.606040px;}
._1a{width:56.373000px;}
._15{width:61.277040px;}
._1d{width:62.283600px;}
._5{width:91.200000px;}
._20{width:1598.230200px;}
._11{width:1615.510200px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs4{font-size:45.600000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:105.600000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:16.263750px;}
.y1{bottom:107.234700px;}
.y1b{bottom:154.430850px;}
.y45{bottom:155.384700px;}
.y68{bottom:156.436200px;}
.y8f{bottom:161.155950px;}
.y1a{bottom:171.758850px;}
.y44{bottom:173.980950px;}
.y8e{bottom:179.609700px;}
.y67{bottom:181.444200px;}
.y43{bottom:192.577200px;}
.y19{bottom:195.461850px;}
.y8d{bottom:198.063450px;}
.y66{bottom:202.200150px;}
.y42{bottom:211.173450px;}
.y18{bottom:214.087800px;}
.y8c{bottom:216.517200px;}
.y41{bottom:229.769700px;}
.y17{bottom:232.087800px;}
.y8b{bottom:234.970950px;}
.y65{bottom:246.384000px;}
.y8a{bottom:253.424700px;}
.y40{bottom:254.747700px;}
.y64{bottom:265.008750px;}
.y89{bottom:271.878450px;}
.y3f{bottom:275.473650px;}
.y16{bottom:275.557500px;}
.y63{bottom:283.633500px;}
.y88{bottom:290.332200px;}
.y15{bottom:292.885500px;}
.y3e{bottom:294.073650px;}
.y62{bottom:302.258250px;}
.y87{bottom:308.785950px;}
.y14{bottom:310.213500px;}
.y61{bottom:320.883000px;}
.y86{bottom:327.239700px;}
.y13{bottom:327.541500px;}
.y3d{bottom:338.215500px;}
.y60{bottom:339.507750px;}
.y12{bottom:344.869500px;}
.y85{bottom:345.693450px;}
.y3c{bottom:356.811750px;}
.y5f{bottom:358.132500px;}
.y11{bottom:362.197500px;}
.y84{bottom:364.147200px;}
.y3b{bottom:375.408000px;}
.y5e{bottom:376.757250px;}
.y10{bottom:379.525500px;}
.y83{bottom:382.600950px;}
.y3a{bottom:394.004250px;}
.y5d{bottom:395.382000px;}
.yf{bottom:396.853500px;}
.y82{bottom:401.054700px;}
.y39{bottom:412.600500px;}
.ye{bottom:414.181500px;}
.y81{bottom:419.508450px;}
.y5c{bottom:420.390000px;}
.y38{bottom:431.196750px;}
.yd{bottom:431.509500px;}
.y80{bottom:437.962200px;}
.y5b{bottom:441.145950px;}
.yc{bottom:448.837500px;}
.y37{bottom:449.793000px;}
.y7f{bottom:456.415950px;}
.yb{bottom:466.165500px;}
.y36{bottom:468.389250px;}
.y7e{bottom:474.869700px;}
.ya{bottom:483.493500px;}
.y5a{bottom:485.287800px;}
.y35{bottom:486.985500px;}
.y7d{bottom:499.697700px;}
.y9{bottom:500.821500px;}
.y34{bottom:511.963350px;}
.y8{bottom:518.149500px;}
.y7c{bottom:520.273650px;}
.y33{bottom:532.689450px;}
.y7b{bottom:538.723650px;}
.y7{bottom:541.852500px;}
.y59{bottom:542.264250px;}
.y6{bottom:560.478450px;}
.y58{bottom:560.889000px;}
.y32{bottom:576.876150px;}
.y57{bottom:579.513750px;}
.y7a{bottom:582.674250px;}
.y31{bottom:595.472400px;}
.y56{bottom:598.138500px;}
.y79{bottom:601.128000px;}
.y5{bottom:603.990300px;}
.y30{bottom:614.068650px;}
.y55{bottom:616.763250px;}
.y78{bottom:619.581750px;}
.y2f{bottom:632.664900px;}
.y54{bottom:635.388000px;}
.y77{bottom:638.035500px;}
.y2e{bottom:651.261150px;}
.y53{bottom:654.012750px;}
.y4{bottom:658.758150px;}
.y76{bottom:662.863350px;}
.y2d{bottom:669.857400px;}
.y52{bottom:672.637500px;}
.y3{bottom:677.384100px;}
.y75{bottom:683.439450px;}
.y2c{bottom:688.453650px;}
.y51{bottom:691.262250px;}
.y9c{bottom:696.517350px;}
.y74{bottom:701.889450px;}
.y2b{bottom:707.049900px;}
.y50{bottom:709.887000px;}
.y9b{bottom:715.270350px;}
.y2a{bottom:725.646150px;}
.y4f{bottom:728.511750px;}
.y9a{bottom:734.023350px;}
.y29{bottom:744.242400px;}
.y73{bottom:745.809900px;}
.y4e{bottom:747.136500px;}
.y99{bottom:752.776350px;}
.y28{bottom:762.838650px;}
.y2{bottom:763.415550px;}
.y72{bottom:764.263650px;}
.y4d{bottom:765.761250px;}
.y98{bottom:771.529350px;}
.y27{bottom:781.434900px;}
.y71{bottom:782.717400px;}
.y4c{bottom:784.386000px;}
.y97{bottom:790.282350px;}
.y26{bottom:800.031150px;}
.y70{bottom:801.171150px;}
.y4b{bottom:803.010750px;}
.y96{bottom:809.035350px;}
.y25{bottom:818.627400px;}
.y6f{bottom:819.624900px;}
.y4a{bottom:821.635500px;}
.y95{bottom:827.788350px;}
.y24{bottom:837.223650px;}
.y6e{bottom:838.078650px;}
.y94{bottom:846.541350px;}
.y49{bottom:846.643500px;}
.y23{bottom:855.819900px;}
.y6d{bottom:856.532400px;}
.y93{bottom:865.294350px;}
.y48{bottom:867.399300px;}
.y22{bottom:874.416150px;}
.y6c{bottom:874.986150px;}
.y92{bottom:884.047350px;}
.y21{bottom:893.012400px;}
.y6b{bottom:893.439900px;}
.y91{bottom:909.175350px;}
.y47{bottom:911.551650px;}
.y20{bottom:911.608650px;}
.y6a{bottom:911.893650px;}
.y90{bottom:930.051150px;}
.y46{bottom:930.176400px;}
.y1f{bottom:930.204900px;}
.y69{bottom:930.347400px;}
.y1e{bottom:948.801150px;}
.y1d{bottom:994.994550px;}
.h8{height:25.632000px;}
.h9{height:38.592000px;}
.h7{height:42.294000px;}
.h5{height:43.416000px;}
.h6{height:44.100000px;}
.h2{height:44.520000px;}
.ha{height:45.828000px;}
.h4{height:48.792000px;}
.h3{height:112.992000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x7{left:57.519750px;}
.x2{left:127.559100px;}
.x4{left:148.820100px;}
.xa{left:157.298700px;}
.x5{left:176.450850px;}
.x6{left:216.849600px;}
.x9{left:334.780200px;}
.x3{left:336.150300px;}
.xb{left:396.136200px;}
.x1{left:399.939600px;}
.x8{left:435.939600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-2.026667pt;}
.ls28{letter-spacing:-1.973333pt;}
.ls24{letter-spacing:-1.386667pt;}
.ls17{letter-spacing:-0.682667pt;}
.ls25{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.253333pt;}
.ls1f{letter-spacing:-0.050667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.062933pt;}
.ls19{letter-spacing:0.253333pt;}
.ls2{letter-spacing:0.408000pt;}
.ls1c{letter-spacing:0.430667pt;}
.ls1a{letter-spacing:0.432000pt;}
.ls27{letter-spacing:0.488533pt;}
.ls5{letter-spacing:0.489067pt;}
.ls15{letter-spacing:0.489600pt;}
.ls8{letter-spacing:0.506667pt;}
.ls16{letter-spacing:0.524800pt;}
.ls3{letter-spacing:0.560000pt;}
.ls1d{letter-spacing:0.937333pt;}
.ls13{letter-spacing:1.013333pt;}
.ls14{letter-spacing:1.122133pt;}
.lsb{letter-spacing:1.502400pt;}
.lse{letter-spacing:1.502933pt;}
.ls1{letter-spacing:1.517867pt;}
.ls10{letter-spacing:1.520000pt;}
.ls21{letter-spacing:1.933333pt;}
.ls26{letter-spacing:2.394133pt;}
.ls4{letter-spacing:2.440000pt;}
.ls0{letter-spacing:2.945067pt;}
.lsa{letter-spacing:3.453333pt;}
.ls22{letter-spacing:8.139200pt;}
.ls23{letter-spacing:8.139733pt;}
.ls6{letter-spacing:8.645867pt;}
.ls7{letter-spacing:8.646400pt;}
.lsf{letter-spacing:8.899200pt;}
.lsc{letter-spacing:9.659200pt;}
.lsd{letter-spacing:9.659733pt;}
.ls12{letter-spacing:16.720000pt;}
.ls9{letter-spacing:17.226667pt;}
.ws3{word-spacing:-33.490667pt;}
.ws0{word-spacing:-30.225067pt;}
.ws4{word-spacing:-16.770667pt;}
.ws23{word-spacing:-16.314667pt;}
.ws42{word-spacing:-16.010667pt;}
.ws3e{word-spacing:-15.605333pt;}
.ws25{word-spacing:-15.352000pt;}
.ws21{word-spacing:-15.276000pt;}
.ws20{word-spacing:-14.769333pt;}
.ws3a{word-spacing:-14.744000pt;}
.wsa{word-spacing:-14.541333pt;}
.ws3d{word-spacing:-14.490667pt;}
.ws1f{word-spacing:-14.288000pt;}
.ws17{word-spacing:-14.085333pt;}
.ws3b{word-spacing:-13.730667pt;}
.ws26{word-spacing:-13.325333pt;}
.ws1d{word-spacing:-13.072000pt;}
.ws1{word-spacing:-13.051733pt;}
.wsd{word-spacing:-12.616000pt;}
.ws1c{word-spacing:-12.464000pt;}
.ws37{word-spacing:-12.160000pt;}
.ws34{word-spacing:-12.058667pt;}
.ws12{word-spacing:-11.392000pt;}
.ws19{word-spacing:-11.096000pt;}
.ws2c{word-spacing:-11.045333pt;}
.ws2e{word-spacing:-10.488000pt;}
.wse{word-spacing:-10.386667pt;}
.ws3c{word-spacing:-9.930667pt;}
.ws38{word-spacing:-9.677333pt;}
.ws39{word-spacing:-9.069333pt;}
.ws2a{word-spacing:-8.714667pt;}
.ws1a{word-spacing:-8.360000pt;}
.wsf{word-spacing:-8.309333pt;}
.ws27{word-spacing:-7.752000pt;}
.ws2{word-spacing:-7.448000pt;}
.ws16{word-spacing:-7.346667pt;}
.ws28{word-spacing:-7.144000pt;}
.ws40{word-spacing:-6.890667pt;}
.ws35{word-spacing:-6.637333pt;}
.ws31{word-spacing:-6.586667pt;}
.ws18{word-spacing:-6.384000pt;}
.ws10{word-spacing:-6.333333pt;}
.ws30{word-spacing:-4.002667pt;}
.ws11{word-spacing:-3.546667pt;}
.ws14{word-spacing:-3.141333pt;}
.ws5{word-spacing:-1.152320pt;}
.ws33{word-spacing:-0.506667pt;}
.ws15{word-spacing:-0.202667pt;}
.ws6{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.861333pt;}
.ws32{word-spacing:1.386667pt;}
.ws41{word-spacing:1.973333pt;}
.ws29{word-spacing:2.026667pt;}
.ws22{word-spacing:2.874773pt;}
.ws24{word-spacing:6.016000pt;}
.ws36{word-spacing:6.282667pt;}
.ws7{word-spacing:6.768000pt;}
.ws3f{word-spacing:7.144000pt;}
.wsc{word-spacing:8.106667pt;}
.ws2d{word-spacing:8.613333pt;}
.ws8{word-spacing:9.016000pt;}
.ws1b{word-spacing:9.120000pt;}
.ws9{word-spacing:19.000000pt;}
.ws1e{word-spacing:52.440000pt;}
.ws2b{word-spacing:53.200000pt;}
.wsb{word-spacing:79.901333pt;}
.ws13{word-spacing:80.408000pt;}
._17{margin-left:-16.230720pt;}
._18{margin-left:-9.998720pt;}
._c{margin-left:-8.917333pt;}
._a{margin-left:-7.296000pt;}
._14{margin-left:-6.309867pt;}
._6{margin-left:-4.390400pt;}
._12{margin-left:-2.971947pt;}
._9{margin-left:-2.077333pt;}
._1{margin-left:-1.182720pt;}
._2{width:1.717760pt;}
._7{width:2.653547pt;}
._0{width:3.782827pt;}
._1e{width:4.898453pt;}
._1f{width:6.029333pt;}
._f{width:7.324053pt;}
._d{width:8.286187pt;}
._4{width:9.744213pt;}
._b{width:10.893333pt;}
._8{width:12.085867pt;}
._e{width:13.899840pt;}
._13{width:14.794667pt;}
._3{width:17.413973pt;}
._10{width:18.539627pt;}
._16{width:19.912000pt;}
._19{width:23.468480pt;}
._1b{width:31.666667pt;}
._1c{width:42.316480pt;}
._1a{width:50.109333pt;}
._15{width:54.468480pt;}
._1d{width:55.363200pt;}
._5{width:81.066667pt;}
._20{width:1420.649067pt;}
._11{width:1436.009067pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:40.533333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:93.866667pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:14.456667pt;}
.y1{bottom:95.319733pt;}
.y1b{bottom:137.271867pt;}
.y45{bottom:138.119733pt;}
.y68{bottom:139.054400pt;}
.y8f{bottom:143.249733pt;}
.y1a{bottom:152.674533pt;}
.y44{bottom:154.649733pt;}
.y8e{bottom:159.653067pt;}
.y67{bottom:161.283733pt;}
.y43{bottom:171.179733pt;}
.y19{bottom:173.743867pt;}
.y8d{bottom:176.056400pt;}
.y66{bottom:179.733467pt;}
.y42{bottom:187.709733pt;}
.y18{bottom:190.300267pt;}
.y8c{bottom:192.459733pt;}
.y41{bottom:204.239733pt;}
.y17{bottom:206.300267pt;}
.y8b{bottom:208.863067pt;}
.y65{bottom:219.008000pt;}
.y8a{bottom:225.266400pt;}
.y40{bottom:226.442400pt;}
.y64{bottom:235.563333pt;}
.y89{bottom:241.669733pt;}
.y3f{bottom:244.865467pt;}
.y16{bottom:244.940000pt;}
.y63{bottom:252.118667pt;}
.y88{bottom:258.073067pt;}
.y15{bottom:260.342667pt;}
.y3e{bottom:261.398800pt;}
.y62{bottom:268.674000pt;}
.y87{bottom:274.476400pt;}
.y14{bottom:275.745333pt;}
.y61{bottom:285.229333pt;}
.y86{bottom:290.879733pt;}
.y13{bottom:291.148000pt;}
.y3d{bottom:300.636000pt;}
.y60{bottom:301.784667pt;}
.y12{bottom:306.550667pt;}
.y85{bottom:307.283067pt;}
.y3c{bottom:317.166000pt;}
.y5f{bottom:318.340000pt;}
.y11{bottom:321.953333pt;}
.y84{bottom:323.686400pt;}
.y3b{bottom:333.696000pt;}
.y5e{bottom:334.895333pt;}
.y10{bottom:337.356000pt;}
.y83{bottom:340.089733pt;}
.y3a{bottom:350.226000pt;}
.y5d{bottom:351.450667pt;}
.yf{bottom:352.758667pt;}
.y82{bottom:356.493067pt;}
.y39{bottom:366.756000pt;}
.ye{bottom:368.161333pt;}
.y81{bottom:372.896400pt;}
.y5c{bottom:373.680000pt;}
.y38{bottom:383.286000pt;}
.yd{bottom:383.564000pt;}
.y80{bottom:389.299733pt;}
.y5b{bottom:392.129733pt;}
.yc{bottom:398.966667pt;}
.y37{bottom:399.816000pt;}
.y7f{bottom:405.703067pt;}
.yb{bottom:414.369333pt;}
.y36{bottom:416.346000pt;}
.y7e{bottom:422.106400pt;}
.ya{bottom:429.772000pt;}
.y5a{bottom:431.366933pt;}
.y35{bottom:432.876000pt;}
.y7d{bottom:444.175733pt;}
.y9{bottom:445.174667pt;}
.y34{bottom:455.078533pt;}
.y8{bottom:460.577333pt;}
.y7c{bottom:462.465467pt;}
.y33{bottom:473.501733pt;}
.y7b{bottom:478.865467pt;}
.y7{bottom:481.646667pt;}
.y59{bottom:482.012667pt;}
.y6{bottom:498.203067pt;}
.y58{bottom:498.568000pt;}
.y32{bottom:512.778800pt;}
.y57{bottom:515.123333pt;}
.y7a{bottom:517.932667pt;}
.y31{bottom:529.308800pt;}
.y56{bottom:531.678667pt;}
.y79{bottom:534.336000pt;}
.y5{bottom:536.880267pt;}
.y30{bottom:545.838800pt;}
.y55{bottom:548.234000pt;}
.y78{bottom:550.739333pt;}
.y2f{bottom:562.368800pt;}
.y54{bottom:564.789333pt;}
.y77{bottom:567.142667pt;}
.y2e{bottom:578.898800pt;}
.y53{bottom:581.344667pt;}
.y4{bottom:585.562800pt;}
.y76{bottom:589.211867pt;}
.y2d{bottom:595.428800pt;}
.y52{bottom:597.900000pt;}
.y3{bottom:602.119200pt;}
.y75{bottom:607.501733pt;}
.y2c{bottom:611.958800pt;}
.y51{bottom:614.455333pt;}
.y9c{bottom:619.126533pt;}
.y74{bottom:623.901733pt;}
.y2b{bottom:628.488800pt;}
.y50{bottom:631.010667pt;}
.y9b{bottom:635.795867pt;}
.y2a{bottom:645.018800pt;}
.y4f{bottom:647.566000pt;}
.y9a{bottom:652.465200pt;}
.y29{bottom:661.548800pt;}
.y73{bottom:662.942133pt;}
.y4e{bottom:664.121333pt;}
.y99{bottom:669.134533pt;}
.y28{bottom:678.078800pt;}
.y2{bottom:678.591600pt;}
.y72{bottom:679.345467pt;}
.y4d{bottom:680.676667pt;}
.y98{bottom:685.803867pt;}
.y27{bottom:694.608800pt;}
.y71{bottom:695.748800pt;}
.y4c{bottom:697.232000pt;}
.y97{bottom:702.473200pt;}
.y26{bottom:711.138800pt;}
.y70{bottom:712.152133pt;}
.y4b{bottom:713.787333pt;}
.y96{bottom:719.142533pt;}
.y25{bottom:727.668800pt;}
.y6f{bottom:728.555467pt;}
.y4a{bottom:730.342667pt;}
.y95{bottom:735.811867pt;}
.y24{bottom:744.198800pt;}
.y6e{bottom:744.958800pt;}
.y94{bottom:752.481200pt;}
.y49{bottom:752.572000pt;}
.y23{bottom:760.728800pt;}
.y6d{bottom:761.362133pt;}
.y93{bottom:769.150533pt;}
.y48{bottom:771.021600pt;}
.y22{bottom:777.258800pt;}
.y6c{bottom:777.765467pt;}
.y92{bottom:785.819867pt;}
.y21{bottom:793.788800pt;}
.y6b{bottom:794.168800pt;}
.y91{bottom:808.155867pt;}
.y47{bottom:810.268133pt;}
.y20{bottom:810.318800pt;}
.y6a{bottom:810.572133pt;}
.y90{bottom:826.712133pt;}
.y46{bottom:826.823467pt;}
.y1f{bottom:826.848800pt;}
.y69{bottom:826.975467pt;}
.y1e{bottom:843.378800pt;}
.y1d{bottom:884.439600pt;}
.h8{height:22.784000pt;}
.h9{height:34.304000pt;}
.h7{height:37.594667pt;}
.h5{height:38.592000pt;}
.h6{height:39.200000pt;}
.h2{height:39.573333pt;}
.ha{height:40.736000pt;}
.h4{height:43.370667pt;}
.h3{height:100.437333pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x7{left:51.128667pt;}
.x2{left:113.385867pt;}
.x4{left:132.284533pt;}
.xa{left:139.821067pt;}
.x5{left:156.845200pt;}
.x6{left:192.755200pt;}
.x9{left:297.582400pt;}
.x3{left:298.800267pt;}
.xb{left:352.121067pt;}
.x1{left:355.501867pt;}
.x8{left:387.501867pt;}
}




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