
    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_b572a4674ca434d5ee2f6915.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_ab847f429246f8dcb043e9c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979000;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_42862a6ce01060839ed483d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_95bed5dcde252d5ab5aa3741.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_9df5a92b6b035d0d0d5e8441.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980000;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_9bdf9ab8cf5001ea25894b11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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_496ecb638cbc9bb74d59a070.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_c27b8ca84f55a1ae40d5097a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000257px;}
.ls3{letter-spacing:0.343200px;}
.ls4{letter-spacing:0.349800px;}
.ls5{letter-spacing:0.369600px;}
.ls6{letter-spacing:0.382800px;}
.ls2{letter-spacing:0.389400px;}
.ls7{letter-spacing:0.402600px;}
.ls0{letter-spacing:0.415800px;}
.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:-21.376311px;}
.ws3{word-spacing:-16.032234px;}
.ws1{word-spacing:-0.076893px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-13.763903px;}
._1{margin-left:-11.024564px;}
._9{margin-left:-9.919224px;}
._5{margin-left:-8.535123px;}
._6{margin-left:-7.074156px;}
._3{margin-left:-5.690082px;}
._4{margin-left:-3.537078px;}
._0{margin-left:-1.384074px;}
._7{width:1.384074px;}
._2{width:2.681651px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:57.669905px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:76.893000px;}
.fs3{font-size:76.893206px;}
.fs6{font-size:81.699032px;}
.fs7{font-size:86.504857px;}
.fs8{font-size:96.116508px;}
.fs5{font-size:105.728159px;}
.fs4{font-size:148.980587px;}
.fs2{font-size:148.980600px;}
.y0{bottom:0.000000px;}
.y6d{bottom:12.768240px;}
.ye3{bottom:15.171150px;}
.yb1{bottom:18.174780px;}
.y4d{bottom:18.775515px;}
.y61{bottom:19.376250px;}
.yae{bottom:21.178425px;}
.y34{bottom:22.980615px;}
.yc3{bottom:24.782790px;}
.y13{bottom:33.203777px;}
.y82{bottom:34.394445px;}
.y83{bottom:34.995180px;}
.y6c{bottom:41.603190px;}
.y1{bottom:42.000000px;}
.ye2{bottom:44.006100px;}
.y4c{bottom:47.610465px;}
.y60{bottom:48.211200px;}
.yad{bottom:50.013375px;}
.y33{bottom:51.815565px;}
.yc2{bottom:53.617740px;}
.y12{bottom:62.038652px;}
.y81{bottom:63.229395px;}
.y6b{bottom:70.438140px;}
.y2{bottom:75.000000px;}
.y5f{bottom:77.046150px;}
.yac{bottom:78.848400px;}
.y32{bottom:80.650500px;}
.yc1{bottom:82.452750px;}
.y11{bottom:90.873527px;}
.y80{bottom:92.064300px;}
.y6a{bottom:99.273150px;}
.yf4{bottom:105.280350px;}
.y5e{bottom:105.881100px;}
.ye1{bottom:106.481850px;}
.yab{bottom:107.683350px;}
.y31{bottom:109.485450px;}
.yc0{bottom:111.287700px;}
.y10{bottom:119.708402px;}
.y7f{bottom:120.899250px;}
.y69{bottom:128.108100px;}
.yf3{bottom:134.115300px;}
.y5d{bottom:134.716050px;}
.ye0{bottom:135.316800px;}
.yaa{bottom:136.518300px;}
.y30{bottom:138.320400px;}
.ybf{bottom:140.122650px;}
.yf{bottom:148.543277px;}
.y7e{bottom:149.734200px;}
.y68{bottom:156.943050px;}
.y5c{bottom:163.551000px;}
.ydf{bottom:164.151750px;}
.y2f{bottom:167.155350px;}
.ye{bottom:177.378152px;}
.y7d{bottom:178.569150px;}
.y67{bottom:185.778000px;}
.yde{bottom:192.986700px;}
.y4e{bottom:195.990300px;}
.yf2{bottom:196.591050px;}
.ybe{bottom:197.792550px;}
.yd{bottom:206.213027px;}
.y7c{bottom:207.404100px;}
.ya9{bottom:213.411450px;}
.y66{bottom:214.612950px;}
.ydd{bottom:221.821650px;}
.y98{bottom:223.623750px;}
.y2e{bottom:224.825250px;}
.yf1{bottom:225.426000px;}
.ybd{bottom:226.627500px;}
.yc{bottom:235.047902px;}
.y7b{bottom:236.239050px;}
.ya8{bottom:242.246400px;}
.y65{bottom:243.447900px;}
.ydc{bottom:250.656600px;}
.y97{bottom:252.458700px;}
.y2d{bottom:253.660200px;}
.yf0{bottom:254.260950px;}
.ybc{bottom:255.462450px;}
.y7a{bottom:265.074000px;}
.ya7{bottom:271.081350px;}
.y5b{bottom:280.092300px;}
.y96{bottom:281.293650px;}
.y2c{bottom:282.495150px;}
.yef{bottom:283.095900px;}
.ybb{bottom:284.297400px;}
.y79{bottom:293.908950px;}
.y4b{bottom:297.513300px;}
.ya6{bottom:299.916300px;}
.yfa{bottom:301.718400px;}
.ydb{bottom:308.326500px;}
.y5a{bottom:308.927250px;}
.y95{bottom:310.128600px;}
.y2b{bottom:311.330100px;}
.yee{bottom:311.930850px;}
.yba{bottom:313.132350px;}
.y78{bottom:322.743900px;}
.yb{bottom:325.147275px;}
.y4a{bottom:326.348250px;}
.ya5{bottom:328.751250px;}
.y64{bottom:329.952750px;}
.yf9{bottom:330.553350px;}
.yda{bottom:337.161450px;}
.y59{bottom:337.762200px;}
.y2a{bottom:340.165050px;}
.yb9{bottom:341.967300px;}
.y77{bottom:351.578850px;}
.ya{bottom:353.982150px;}
.y49{bottom:355.183200px;}
.ya4{bottom:357.586200px;}
.y63{bottom:358.787700px;}
.yd9{bottom:365.996400px;}
.y58{bottom:366.597150px;}
.y29{bottom:369.000000px;}
.y76{bottom:380.413800px;}
.y9{bottom:382.817025px;}
.y48{bottom:384.018150px;}
.yb8{bottom:385.219650px;}
.ya3{bottom:386.421150px;}
.y94{bottom:388.223250px;}
.yd8{bottom:394.831350px;}
.y57{bottom:395.432100px;}
.y28{bottom:397.834950px;}
.y75{bottom:409.248750px;}
.y8{bottom:411.651900px;}
.y47{bottom:412.853100px;}
.yb7{bottom:414.054600px;}
.ya2{bottom:415.256100px;}
.y93{bottom:417.058200px;}
.yd7{bottom:423.666300px;}
.y56{bottom:424.267050px;}
.y27{bottom:426.669900px;}
.y62{bottom:435.680850px;}
.y74{bottom:438.083700px;}
.y7{bottom:440.486775px;}
.y46{bottom:441.688050px;}
.yb6{bottom:442.889550px;}
.ya1{bottom:444.091050px;}
.y92{bottom:445.893150px;}
.yd6{bottom:452.501250px;}
.y55{bottom:453.102000px;}
.y26{bottom:455.504850px;}
.y6{bottom:469.321650px;}
.y45{bottom:470.523150px;}
.yb5{bottom:471.724500px;}
.ya0{bottom:472.926000px;}
.y91{bottom:474.728100px;}
.yd5{bottom:481.336200px;}
.y54{bottom:481.936950px;}
.y38{bottom:484.339800px;}
.y73{bottom:495.753600px;}
.y44{bottom:499.358100px;}
.yb4{bottom:500.559450px;}
.y9f{bottom:501.760950px;}
.y90{bottom:503.563050px;}
.yd4{bottom:510.171150px;}
.y53{bottom:510.771900px;}
.y25{bottom:513.174750px;}
.y72{bottom:524.588550px;}
.yb3{bottom:526.991550px;}
.yd1{bottom:527.592300px;}
.y43{bottom:528.193050px;}
.y9e{bottom:530.595900px;}
.y8f{bottom:532.398000px;}
.yd3{bottom:539.006100px;}
.y52{bottom:539.606850px;}
.y24{bottom:542.009700px;}
.y71{bottom:553.423500px;}
.yd0{bottom:556.427250px;}
.y42{bottom:557.028000px;}
.y9d{bottom:559.430850px;}
.y8e{bottom:561.232950px;}
.yd2{bottom:567.841050px;}
.y23{bottom:570.844650px;}
.y70{bottom:582.258450px;}
.ycf{bottom:585.262200px;}
.y41{bottom:585.862950px;}
.y9c{bottom:588.265800px;}
.yb2{bottom:591.870150px;}
.y51{bottom:594.873750px;}
.y5{bottom:596.676000px;}
.y22{bottom:599.679600px;}
.yb0{bottom:602.082600px;}
.y6f{bottom:611.093400px;}
.yce{bottom:614.097150px;}
.y40{bottom:614.697900px;}
.y9b{bottom:617.100750px;}
.yf8{bottom:618.903000px;}
.y50{bottom:623.708700px;}
.y37{bottom:628.514550px;}
.y6e{bottom:639.928350px;}
.ycd{bottom:642.932100px;}
.y3f{bottom:643.532850px;}
.y9a{bottom:645.935700px;}
.yf7{bottom:647.737950px;}
.y8d{bottom:652.543650px;}
.y21{bottom:657.349500px;}
.yed{bottom:668.763300px;}
.ycc{bottom:671.767050px;}
.y3e{bottom:672.367800px;}
.y99{bottom:674.770650px;}
.yf6{bottom:676.572900px;}
.y8c{bottom:681.378600px;}
.y20{bottom:686.184450px;}
.yec{bottom:697.598250px;}
.ycb{bottom:700.602000px;}
.y3d{bottom:701.202750px;}
.y4{bottom:709.612800px;}
.y8b{bottom:710.213550px;}
.y1f{bottom:715.019400px;}
.yaf{bottom:722.228100px;}
.yeb{bottom:726.433200px;}
.yca{bottom:729.436950px;}
.y3c{bottom:730.037700px;}
.y8a{bottom:739.048500px;}
.y1e{bottom:743.854350px;}
.yea{bottom:755.268150px;}
.yc9{bottom:758.271900px;}
.y3b{bottom:758.872650px;}
.y89{bottom:767.883450px;}
.y1d{bottom:772.689300px;}
.ye9{bottom:784.103100px;}
.y4f{bottom:784.703850px;}
.yc8{bottom:787.106850px;}
.y3a{bottom:787.707600px;}
.y88{bottom:796.718400px;}
.y1c{bottom:801.524250px;}
.ye8{bottom:812.938050px;}
.yc7{bottom:815.941800px;}
.y39{bottom:816.542550px;}
.y87{bottom:825.553350px;}
.y1b{bottom:830.359200px;}
.ye7{bottom:841.773000px;}
.yc6{bottom:844.776750px;}
.y36{bottom:859.194150px;}
.ye6{bottom:870.607950px;}
.yc5{bottom:873.611700px;}
.y86{bottom:883.223250px;}
.y1a{bottom:888.029100px;}
.yc4{bottom:902.446650px;}
.y85{bottom:912.058200px;}
.y19{bottom:916.864050px;}
.y3{bottom:931.281600px;}
.ye5{bottom:940.292550px;}
.y84{bottom:940.893150px;}
.y18{bottom:945.699000px;}
.y17{bottom:974.533950px;}
.ye4{bottom:995.559450px;}
.y35{bottom:1003.368900px;}
.y16{bottom:1032.203850px;}
.y15{bottom:1061.038800px;}
.yf5{bottom:1070.650500px;}
.y14{bottom:1089.873750px;}
.hf{height:42.156700px;}
.h10{height:44.405827px;}
.h4{height:56.208783px;}
.h9{height:56.208934px;}
.h3{height:59.207610px;}
.h7{height:59.207769px;}
.h6{height:60.361005px;}
.h8{height:60.361167px;}
.h1{height:62.841797px;}
.hc{height:64.133740px;}
.hd{height:67.906313px;}
.he{height:75.451459px;}
.hb{height:82.996605px;}
.ha{height:116.949761px;}
.h5{height:116.949771px;}
.h2{height:1111.500000px;}
.h0{height:1263.000000px;}
.w1{width:742.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:31.237800px;}
.x1a{left:32.670000px;}
.x1c{left:50.480370px;}
.x18{left:59.870970px;}
.x1e{left:61.158915px;}
.x2{left:75.000000px;}
.x19{left:79.296150px;}
.x4{left:84.678600px;}
.x25{left:110.762250px;}
.x21{left:136.129800px;}
.x1d{left:156.295050px;}
.x20{left:159.623100px;}
.x1f{left:162.867000px;}
.x28{left:172.699800px;}
.x27{left:219.837600px;}
.x3{left:238.465050px;}
.x23{left:247.223700px;}
.x24{left:261.850200px;}
.x22{left:297.403650px;}
.x26{left:308.238450px;}
.x7{left:312.330648px;}
.xa{left:360.773238px;}
.x6{left:363.387600px;}
.xb{left:386.743849px;}
.x8{left:397.258967px;}
.xf{left:402.487800px;}
.x17{left:410.930550px;}
.x14{left:411.988950px;}
.x9{left:415.790179px;}
.x10{left:420.703200px;}
.xd{left:431.613600px;}
.x15{left:457.211850px;}
.x16{left:504.212700px;}
.xe{left:527.482500px;}
.x11{left:534.162600px;}
.x12{left:791.656800px;}
.x1b{left:792.774000px;}
.x13{left:794.437500px;}
.xc{left:800.223450px;}
.x1{left:802.477500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000229pt;}
.ls3{letter-spacing:0.305067pt;}
.ls4{letter-spacing:0.310933pt;}
.ls5{letter-spacing:0.328533pt;}
.ls6{letter-spacing:0.340267pt;}
.ls2{letter-spacing:0.346133pt;}
.ls7{letter-spacing:0.357867pt;}
.ls0{letter-spacing:0.369600pt;}
.ws2{word-spacing:-19.001166pt;}
.ws3{word-spacing:-14.250874pt;}
.ws1{word-spacing:-0.068350pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-12.234580pt;}
._1{margin-left:-9.799613pt;}
._9{margin-left:-8.817088pt;}
._5{margin-left:-7.586776pt;}
._6{margin-left:-6.288139pt;}
._3{margin-left:-5.057851pt;}
._4{margin-left:-3.144069pt;}
._0{margin-left:-1.230288pt;}
._7{width:1.230288pt;}
._2{width:2.383690pt;}
.fs9{font-size:51.262138pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:68.349333pt;}
.fs3{font-size:68.349517pt;}
.fs6{font-size:72.621362pt;}
.fs7{font-size:76.893206pt;}
.fs8{font-size:85.436896pt;}
.fs5{font-size:93.980586pt;}
.fs4{font-size:132.427189pt;}
.fs2{font-size:132.427200pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:11.349547pt;}
.ye3{bottom:13.485467pt;}
.yb1{bottom:16.155360pt;}
.y4d{bottom:16.689347pt;}
.y61{bottom:17.223333pt;}
.yae{bottom:18.825267pt;}
.y34{bottom:20.427213pt;}
.yc3{bottom:22.029147pt;}
.y13{bottom:29.514469pt;}
.y82{bottom:30.572840pt;}
.y83{bottom:31.106827pt;}
.y6c{bottom:36.980613pt;}
.y1{bottom:37.333333pt;}
.ye2{bottom:39.116533pt;}
.y4c{bottom:42.320413pt;}
.y60{bottom:42.854400pt;}
.yad{bottom:44.456333pt;}
.y33{bottom:46.058280pt;}
.yc2{bottom:47.660213pt;}
.y12{bottom:55.145469pt;}
.y81{bottom:56.203907pt;}
.y6b{bottom:62.611680pt;}
.y2{bottom:66.666667pt;}
.y5f{bottom:68.485467pt;}
.yac{bottom:70.087467pt;}
.y32{bottom:71.689333pt;}
.yc1{bottom:73.291333pt;}
.y11{bottom:80.776469pt;}
.y80{bottom:81.834933pt;}
.y6a{bottom:88.242800pt;}
.yf4{bottom:93.582533pt;}
.y5e{bottom:94.116533pt;}
.ye1{bottom:94.650533pt;}
.yab{bottom:95.718533pt;}
.y31{bottom:97.320400pt;}
.yc0{bottom:98.922400pt;}
.y10{bottom:106.407469pt;}
.y7f{bottom:107.466000pt;}
.y69{bottom:113.873867pt;}
.yf3{bottom:119.213600pt;}
.y5d{bottom:119.747600pt;}
.ye0{bottom:120.281600pt;}
.yaa{bottom:121.349600pt;}
.y30{bottom:122.951467pt;}
.ybf{bottom:124.553467pt;}
.yf{bottom:132.038469pt;}
.y7e{bottom:133.097067pt;}
.y68{bottom:139.504933pt;}
.y5c{bottom:145.378667pt;}
.ydf{bottom:145.912667pt;}
.y2f{bottom:148.582533pt;}
.ye{bottom:157.669469pt;}
.y7d{bottom:158.728133pt;}
.y67{bottom:165.136000pt;}
.yde{bottom:171.543733pt;}
.y4e{bottom:174.213600pt;}
.yf2{bottom:174.747600pt;}
.ybe{bottom:175.815600pt;}
.yd{bottom:183.300469pt;}
.y7c{bottom:184.359200pt;}
.ya9{bottom:189.699067pt;}
.y66{bottom:190.767067pt;}
.ydd{bottom:197.174800pt;}
.y98{bottom:198.776667pt;}
.y2e{bottom:199.844667pt;}
.yf1{bottom:200.378667pt;}
.ybd{bottom:201.446667pt;}
.yc{bottom:208.931469pt;}
.y7b{bottom:209.990267pt;}
.ya8{bottom:215.330133pt;}
.y65{bottom:216.398133pt;}
.ydc{bottom:222.805867pt;}
.y97{bottom:224.407733pt;}
.y2d{bottom:225.475733pt;}
.yf0{bottom:226.009733pt;}
.ybc{bottom:227.077733pt;}
.y7a{bottom:235.621333pt;}
.ya7{bottom:240.961200pt;}
.y5b{bottom:248.970933pt;}
.y96{bottom:250.038800pt;}
.y2c{bottom:251.106800pt;}
.yef{bottom:251.640800pt;}
.ybb{bottom:252.708800pt;}
.y79{bottom:261.252400pt;}
.y4b{bottom:264.456267pt;}
.ya6{bottom:266.592267pt;}
.yfa{bottom:268.194133pt;}
.ydb{bottom:274.068000pt;}
.y5a{bottom:274.602000pt;}
.y95{bottom:275.669867pt;}
.y2b{bottom:276.737867pt;}
.yee{bottom:277.271867pt;}
.yba{bottom:278.339867pt;}
.y78{bottom:286.883467pt;}
.yb{bottom:289.019800pt;}
.y4a{bottom:290.087333pt;}
.ya5{bottom:292.223333pt;}
.y64{bottom:293.291333pt;}
.yf9{bottom:293.825200pt;}
.yda{bottom:299.699067pt;}
.y59{bottom:300.233067pt;}
.y2a{bottom:302.368933pt;}
.yb9{bottom:303.970933pt;}
.y77{bottom:312.514533pt;}
.ya{bottom:314.650800pt;}
.y49{bottom:315.718400pt;}
.ya4{bottom:317.854400pt;}
.y63{bottom:318.922400pt;}
.yd9{bottom:325.330133pt;}
.y58{bottom:325.864133pt;}
.y29{bottom:328.000000pt;}
.y76{bottom:338.145600pt;}
.y9{bottom:340.281800pt;}
.y48{bottom:341.349467pt;}
.yb8{bottom:342.417467pt;}
.ya3{bottom:343.485467pt;}
.y94{bottom:345.087333pt;}
.yd8{bottom:350.961200pt;}
.y57{bottom:351.495200pt;}
.y28{bottom:353.631067pt;}
.y75{bottom:363.776667pt;}
.y8{bottom:365.912800pt;}
.y47{bottom:366.980533pt;}
.yb7{bottom:368.048533pt;}
.ya2{bottom:369.116533pt;}
.y93{bottom:370.718400pt;}
.yd7{bottom:376.592267pt;}
.y56{bottom:377.126267pt;}
.y27{bottom:379.262133pt;}
.y62{bottom:387.271867pt;}
.y74{bottom:389.407733pt;}
.y7{bottom:391.543800pt;}
.y46{bottom:392.611600pt;}
.yb6{bottom:393.679600pt;}
.ya1{bottom:394.747600pt;}
.y92{bottom:396.349467pt;}
.yd6{bottom:402.223333pt;}
.y55{bottom:402.757333pt;}
.y26{bottom:404.893200pt;}
.y6{bottom:417.174800pt;}
.y45{bottom:418.242800pt;}
.yb5{bottom:419.310667pt;}
.ya0{bottom:420.378667pt;}
.y91{bottom:421.980533pt;}
.yd5{bottom:427.854400pt;}
.y54{bottom:428.388400pt;}
.y38{bottom:430.524267pt;}
.y73{bottom:440.669867pt;}
.y44{bottom:443.873867pt;}
.yb4{bottom:444.941733pt;}
.y9f{bottom:446.009733pt;}
.y90{bottom:447.611600pt;}
.yd4{bottom:453.485467pt;}
.y53{bottom:454.019467pt;}
.y25{bottom:456.155333pt;}
.y72{bottom:466.300933pt;}
.yb3{bottom:468.436933pt;}
.yd1{bottom:468.970933pt;}
.y43{bottom:469.504933pt;}
.y9e{bottom:471.640800pt;}
.y8f{bottom:473.242667pt;}
.yd3{bottom:479.116533pt;}
.y52{bottom:479.650533pt;}
.y24{bottom:481.786400pt;}
.y71{bottom:491.932000pt;}
.yd0{bottom:494.602000pt;}
.y42{bottom:495.136000pt;}
.y9d{bottom:497.271867pt;}
.y8e{bottom:498.873733pt;}
.yd2{bottom:504.747600pt;}
.y23{bottom:507.417467pt;}
.y70{bottom:517.563067pt;}
.ycf{bottom:520.233067pt;}
.y41{bottom:520.767067pt;}
.y9c{bottom:522.902933pt;}
.yb2{bottom:526.106800pt;}
.y51{bottom:528.776667pt;}
.y5{bottom:530.378667pt;}
.y22{bottom:533.048533pt;}
.yb0{bottom:535.184533pt;}
.y6f{bottom:543.194133pt;}
.yce{bottom:545.864133pt;}
.y40{bottom:546.398133pt;}
.y9b{bottom:548.534000pt;}
.yf8{bottom:550.136000pt;}
.y50{bottom:554.407733pt;}
.y37{bottom:558.679600pt;}
.y6e{bottom:568.825200pt;}
.ycd{bottom:571.495200pt;}
.y3f{bottom:572.029200pt;}
.y9a{bottom:574.165067pt;}
.yf7{bottom:575.767067pt;}
.y8d{bottom:580.038800pt;}
.y21{bottom:584.310667pt;}
.yed{bottom:594.456267pt;}
.ycc{bottom:597.126267pt;}
.y3e{bottom:597.660267pt;}
.y99{bottom:599.796133pt;}
.yf6{bottom:601.398133pt;}
.y8c{bottom:605.669867pt;}
.y20{bottom:609.941733pt;}
.yec{bottom:620.087333pt;}
.ycb{bottom:622.757333pt;}
.y3d{bottom:623.291333pt;}
.y4{bottom:630.766933pt;}
.y8b{bottom:631.300933pt;}
.y1f{bottom:635.572800pt;}
.yaf{bottom:641.980533pt;}
.yeb{bottom:645.718400pt;}
.yca{bottom:648.388400pt;}
.y3c{bottom:648.922400pt;}
.y8a{bottom:656.932000pt;}
.y1e{bottom:661.203867pt;}
.yea{bottom:671.349467pt;}
.yc9{bottom:674.019467pt;}
.y3b{bottom:674.553467pt;}
.y89{bottom:682.563067pt;}
.y1d{bottom:686.834933pt;}
.ye9{bottom:696.980533pt;}
.y4f{bottom:697.514533pt;}
.yc8{bottom:699.650533pt;}
.y3a{bottom:700.184533pt;}
.y88{bottom:708.194133pt;}
.y1c{bottom:712.466000pt;}
.ye8{bottom:722.611600pt;}
.yc7{bottom:725.281600pt;}
.y39{bottom:725.815600pt;}
.y87{bottom:733.825200pt;}
.y1b{bottom:738.097067pt;}
.ye7{bottom:748.242667pt;}
.yc6{bottom:750.912667pt;}
.y36{bottom:763.728133pt;}
.ye6{bottom:773.873733pt;}
.yc5{bottom:776.543733pt;}
.y86{bottom:785.087333pt;}
.y1a{bottom:789.359200pt;}
.yc4{bottom:802.174800pt;}
.y85{bottom:810.718400pt;}
.y19{bottom:814.990267pt;}
.y3{bottom:827.805867pt;}
.ye5{bottom:835.815600pt;}
.y84{bottom:836.349467pt;}
.y18{bottom:840.621333pt;}
.y17{bottom:866.252400pt;}
.ye4{bottom:884.941733pt;}
.y35{bottom:891.883467pt;}
.y16{bottom:917.514533pt;}
.y15{bottom:943.145600pt;}
.yf5{bottom:951.689333pt;}
.y14{bottom:968.776667pt;}
.hf{height:37.472623pt;}
.h10{height:39.471846pt;}
.h4{height:49.963363pt;}
.h9{height:49.963497pt;}
.h3{height:52.628987pt;}
.h7{height:52.629128pt;}
.h6{height:53.654227pt;}
.h8{height:53.654371pt;}
.h1{height:55.859375pt;}
.hc{height:57.007769pt;}
.hd{height:60.361167pt;}
.he{height:67.067963pt;}
.hb{height:73.774760pt;}
.ha{height:103.955343pt;}
.h5{height:103.955352pt;}
.h2{height:988.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:660.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:27.766933pt;}
.x1a{left:29.040000pt;}
.x1c{left:44.871440pt;}
.x18{left:53.218640pt;}
.x1e{left:54.363480pt;}
.x2{left:66.666667pt;}
.x19{left:70.485467pt;}
.x4{left:75.269867pt;}
.x25{left:98.455333pt;}
.x21{left:121.004267pt;}
.x1d{left:138.928933pt;}
.x20{left:141.887200pt;}
.x1f{left:144.770667pt;}
.x28{left:153.510933pt;}
.x27{left:195.411200pt;}
.x3{left:211.968933pt;}
.x23{left:219.754400pt;}
.x24{left:232.755733pt;}
.x22{left:264.358800pt;}
.x26{left:273.989733pt;}
.x7{left:277.627243pt;}
.xa{left:320.687323pt;}
.x6{left:323.011200pt;}
.xb{left:343.772310pt;}
.x8{left:353.119081pt;}
.xf{left:357.766933pt;}
.x17{left:365.271600pt;}
.x14{left:366.212400pt;}
.x9{left:369.591271pt;}
.x10{left:373.958400pt;}
.xd{left:383.656533pt;}
.x15{left:406.410533pt;}
.x16{left:448.189067pt;}
.xe{left:468.873333pt;}
.x11{left:474.811200pt;}
.x12{left:703.694933pt;}
.x1b{left:704.688000pt;}
.x13{left:706.166667pt;}
.xc{left:711.309733pt;}
.x1{left:713.313333pt;}
}




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