
    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_00f5805e33421e6796e05d40.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_073602e6a9b870c3df970138.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_2b1d52a7fa26a7a981ae05a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.237305;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_d87c8095331ad153fac79d1e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.237305;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_cc1a332157de807c7dd370b3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_6293852158d9c0afa24301a4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_55bb5a2c45fa32e5a1312d0f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.743000px;}
.ls1e{letter-spacing:-2.967000px;}
.ls5{letter-spacing:-2.376000px;}
.ls11{letter-spacing:-1.863000px;}
.ls21{letter-spacing:-1.575000px;}
.lsc{letter-spacing:-1.518000px;}
.ls6{letter-spacing:-1.512000px;}
.lsf{letter-spacing:-1.104000px;}
.ls4{letter-spacing:-1.092000px;}
.ls10{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.759000px;}
.ls1a{letter-spacing:-0.690000px;}
.lse{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.345000px;}
.ls3{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000300px;}
.ls1c{letter-spacing:0.918000px;}
.ls7{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.573200px;}
.ls8{letter-spacing:2.400000px;}
.ls14{letter-spacing:3.618000px;}
.ls15{letter-spacing:3.996000px;}
.lsa{letter-spacing:5.460000px;}
.ls1{letter-spacing:6.000000px;}
.ls1f{letter-spacing:6.300000px;}
.ls1d{letter-spacing:7.182000px;}
.ls16{letter-spacing:7.398000px;}
.ls2{letter-spacing:8.400000px;}
.ls9{letter-spacing:8.550000px;}
.ls19{letter-spacing:8.748000px;}
.ls20{letter-spacing:8.820000px;}
.ls17{letter-spacing:9.450000px;}
.ls18{letter-spacing:25.704000px;}
.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;}
}
.ws21{word-spacing:-40.878000px;}
.ws8{word-spacing:-29.625000px;}
.ws1{word-spacing:-28.836000px;}
.ws0{word-spacing:-27.972000px;}
.ws28{word-spacing:-26.523000px;}
.ws20{word-spacing:-24.624000px;}
.ws22{word-spacing:-23.922000px;}
.ws1c{word-spacing:-22.572000px;}
.ws1f{word-spacing:-22.356000px;}
.ws10{word-spacing:-19.389000px;}
.ws1b{word-spacing:-19.170000px;}
.ws1a{word-spacing:-18.792000px;}
.ws2b{word-spacing:-17.703000px;}
.ws9{word-spacing:-17.262000px;}
.wsa{word-spacing:-17.043000px;}
.ws19{word-spacing:-16.974000px;}
.ws17{word-spacing:-16.353000px;}
.ws1e{word-spacing:-16.092000px;}
.wsf{word-spacing:-15.939000px;}
.ws29{word-spacing:-15.561000px;}
.wsb{word-spacing:-15.525000px;}
.ws11{word-spacing:-15.180000px;}
.ws1d{word-spacing:-15.174000px;}
.ws2c{word-spacing:-14.820000px;}
.ws2a{word-spacing:-13.986000px;}
.ws18{word-spacing:-11.303787px;}
.ws4{word-spacing:-8.400000px;}
.ws25{word-spacing:-7.659000px;}
.ws2d{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.wsc{word-spacing:-2.400000px;}
.ws7{word-spacing:-1.260000px;}
.ws2{word-spacing:0.000000px;}
.ws24{word-spacing:0.069000px;}
.ws27{word-spacing:0.207000px;}
.ws5{word-spacing:0.240000px;}
.wse{word-spacing:0.345000px;}
.ws12{word-spacing:0.660000px;}
.ws16{word-spacing:0.759000px;}
.ws14{word-spacing:0.828000px;}
.ws6{word-spacing:1.092000px;}
.ws13{word-spacing:1.518000px;}
.ws15{word-spacing:1.863000px;}
.ws26{word-spacing:2.967000px;}
.wsd{word-spacing:4.416000px;}
.ws23{word-spacing:10.074000px;}
._15{margin-left:-7.493400px;}
._b{margin-left:-5.832000px;}
._4{margin-left:-4.360800px;}
._6{margin-left:-2.564100px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._5{width:2.400300px;}
._a{width:3.822000px;}
._c{width:4.942500px;}
._7{width:5.987700px;}
._8{width:7.266600px;}
._9{width:8.579400px;}
._e{width:10.147200px;}
._d{width:11.830200px;}
._10{width:12.867300px;}
._13{width:13.902300px;}
._11{width:14.994600px;}
._12{width:16.617000px;}
._1b{width:22.393800px;}
._1a{width:23.833800px;}
._19{width:26.171400px;}
._18{width:31.689000px;}
._16{width:43.445160px;}
._f{width:445.732200px;}
._0{width:578.400000px;}
._3{width:940.552200px;}
._14{width:943.177200px;}
._17{width:947.227200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y74{bottom:92.641350px;}
.y22{bottom:99.130050px;}
.y4b{bottom:106.165350px;}
.y9b{bottom:106.296450px;}
.y73{bottom:112.892850px;}
.yb8{bottom:113.642250px;}
.y21{bottom:119.381550px;}
.y9a{bottom:126.544950px;}
.y4a{bottom:126.589350px;}
.y72{bottom:133.144350px;}
.yb7{bottom:133.892250px;}
.y20{bottom:139.633050px;}
.y99{bottom:145.036500px;}
.y49{bottom:147.013350px;}
.y71{bottom:153.395850px;}
.yb6{bottom:154.142250px;}
.y1f{bottom:159.884550px;}
.y98{bottom:162.289500px;}
.y48{bottom:167.437350px;}
.y70{bottom:173.647350px;}
.yb5{bottom:174.392250px;}
.y97{bottom:179.542500px;}
.y1e{bottom:180.136050px;}
.y47{bottom:187.861350px;}
.y6f{bottom:193.898850px;}
.yb4{bottom:194.642250px;}
.y96{bottom:196.795500px;}
.y1d{bottom:200.387550px;}
.y46{bottom:208.285350px;}
.y95{bottom:214.048500px;}
.y6e{bottom:214.150350px;}
.y1c{bottom:220.639050px;}
.y45{bottom:228.709350px;}
.y94{bottom:234.297000px;}
.y6d{bottom:234.401850px;}
.yb3{bottom:235.142250px;}
.y1b{bottom:240.890550px;}
.y44{bottom:249.133350px;}
.y93{bottom:252.791700px;}
.y6c{bottom:254.653350px;}
.yb2{bottom:255.392250px;}
.y1a{bottom:261.142050px;}
.y43{bottom:269.557350px;}
.y92{bottom:270.044700px;}
.y6b{bottom:274.904850px;}
.yb1{bottom:275.642250px;}
.y19{bottom:281.393550px;}
.y91{bottom:287.297700px;}
.y42{bottom:289.981350px;}
.y6a{bottom:295.156350px;}
.yb0{bottom:295.892250px;}
.y18{bottom:301.645050px;}
.y90{bottom:304.550700px;}
.y41{bottom:310.405350px;}
.y69{bottom:315.407850px;}
.yaf{bottom:316.142250px;}
.y17{bottom:321.896550px;}
.y8f{bottom:324.799200px;}
.y40{bottom:330.829350px;}
.y68{bottom:335.659350px;}
.yae{bottom:336.392250px;}
.y16{bottom:342.148050px;}
.y3f{bottom:351.253350px;}
.y67{bottom:355.910850px;}
.y15{bottom:362.399550px;}
.y8e{bottom:368.850000px;}
.yad{bottom:369.392250px;}
.y3e{bottom:371.677350px;}
.y66{bottom:376.162350px;}
.y14{bottom:382.651050px;}
.y8d{bottom:389.377500px;}
.y3d{bottom:392.101350px;}
.y65{bottom:396.413850px;}
.y13{bottom:402.902550px;}
.y8c{bottom:409.905000px;}
.yac{bottom:410.820600px;}
.y3c{bottom:412.525350px;}
.y64{bottom:416.665350px;}
.y12{bottom:423.154050px;}
.y8b{bottom:430.432500px;}
.yab{bottom:431.075100px;}
.y3b{bottom:432.949350px;}
.y63{bottom:436.916850px;}
.y11{bottom:443.405550px;}
.y8a{bottom:450.960000px;}
.y3a{bottom:453.373350px;}
.y62{bottom:457.168350px;}
.yaa{bottom:459.834600px;}
.y89{bottom:471.539400px;}
.y39{bottom:473.797350px;}
.y61{bottom:477.419850px;}
.y10{bottom:484.915500px;}
.ya9{bottom:488.594100px;}
.y88{bottom:492.066900px;}
.y38{bottom:494.221350px;}
.y60{bottom:497.671350px;}
.yf{bottom:505.915500px;}
.y87{bottom:512.594400px;}
.y37{bottom:514.645350px;}
.ya8{bottom:517.353600px;}
.y5f{bottom:517.922850px;}
.ye{bottom:526.915500px;}
.y86{bottom:533.121900px;}
.y36{bottom:535.069350px;}
.y5e{bottom:538.174350px;}
.ya7{bottom:546.113100px;}
.yd{bottom:547.915500px;}
.y85{bottom:553.649400px;}
.y35{bottom:555.493350px;}
.y5d{bottom:558.425850px;}
.ya6{bottom:566.367600px;}
.y84{bottom:574.176900px;}
.y34{bottom:575.917350px;}
.y5c{bottom:578.677350px;}
.y83{bottom:594.704400px;}
.ya5{bottom:595.127100px;}
.y33{bottom:596.341350px;}
.yc{bottom:598.652250px;}
.y5b{bottom:598.928850px;}
.y82{bottom:615.231900px;}
.ya4{bottom:615.381600px;}
.y32{bottom:616.765350px;}
.y5a{bottom:619.180350px;}
.yb{bottom:630.161250px;}
.ya3{bottom:635.636100px;}
.y81{bottom:635.785350px;}
.y31{bottom:637.189350px;}
.y59{bottom:639.431850px;}
.y80{bottom:656.312850px;}
.y30{bottom:657.613350px;}
.y58{bottom:659.683350px;}
.ya{bottom:661.670250px;}
.ya2{bottom:664.395600px;}
.y7f{bottom:676.840350px;}
.y2f{bottom:678.037350px;}
.y57{bottom:679.934850px;}
.ya1{bottom:684.650100px;}
.y9{bottom:693.179250px;}
.y7e{bottom:697.367850px;}
.y2e{bottom:698.461350px;}
.y56{bottom:700.186350px;}
.ya0{bottom:713.409600px;}
.y7d{bottom:717.953850px;}
.y2d{bottom:718.885350px;}
.y55{bottom:720.437850px;}
.y8{bottom:724.679250px;}
.y9f{bottom:733.664100px;}
.y7c{bottom:738.481350px;}
.y2c{bottom:739.309350px;}
.y54{bottom:740.689350px;}
.y7b{bottom:759.008850px;}
.y2b{bottom:759.733350px;}
.y53{bottom:760.940850px;}
.y9e{bottom:762.423600px;}
.y7a{bottom:779.536350px;}
.y2a{bottom:780.157350px;}
.y52{bottom:781.192350px;}
.y7{bottom:781.688850px;}
.y9d{bottom:782.678100px;}
.y79{bottom:800.063850px;}
.y29{bottom:800.581350px;}
.y51{bottom:801.443850px;}
.y6{bottom:811.193850px;}
.y9c{bottom:811.437600px;}
.y78{bottom:820.591350px;}
.y28{bottom:821.005350px;}
.y50{bottom:821.695350px;}
.y5{bottom:832.193850px;}
.y77{bottom:841.118850px;}
.y27{bottom:841.429350px;}
.y4f{bottom:841.946850px;}
.y76{bottom:861.646350px;}
.y4{bottom:861.698850px;}
.y26{bottom:861.853350px;}
.y4e{bottom:862.198350px;}
.y75{bottom:882.173850px;}
.y25{bottom:882.277350px;}
.y4d{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y24{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:948.189000px;}
.y4c{bottom:966.189000px;}
.hc{height:33.870539px;}
.h8{height:40.757812px;}
.hd{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h7{height:58.589355px;}
.ha{height:58.798828px;}
.he{height:61.738770px;}
.h2{height:63.684082px;}
.hb{height:67.411052px;}
.h9{height:67.618652px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:82.465500px;}
.x5{left:83.638050px;}
.x1{left:85.039350px;}
.x6{left:104.235000px;}
.x4{left:105.683550px;}
.x8{left:106.798650px;}
.x3{left:232.218000px;}
.x2{left:233.439750px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.882667pt;}
.ls1e{letter-spacing:-2.637333pt;}
.ls5{letter-spacing:-2.112000pt;}
.ls11{letter-spacing:-1.656000pt;}
.ls21{letter-spacing:-1.400000pt;}
.lsc{letter-spacing:-1.349333pt;}
.ls6{letter-spacing:-1.344000pt;}
.lsf{letter-spacing:-0.981333pt;}
.ls4{letter-spacing:-0.970667pt;}
.ls10{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.674667pt;}
.ls1a{letter-spacing:-0.613333pt;}
.lse{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.306667pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000267pt;}
.ls1c{letter-spacing:0.816000pt;}
.ls7{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.398400pt;}
.ls8{letter-spacing:2.133333pt;}
.ls14{letter-spacing:3.216000pt;}
.ls15{letter-spacing:3.552000pt;}
.lsa{letter-spacing:4.853333pt;}
.ls1{letter-spacing:5.333333pt;}
.ls1f{letter-spacing:5.600000pt;}
.ls1d{letter-spacing:6.384000pt;}
.ls16{letter-spacing:6.576000pt;}
.ls2{letter-spacing:7.466667pt;}
.ls9{letter-spacing:7.600000pt;}
.ls19{letter-spacing:7.776000pt;}
.ls20{letter-spacing:7.840000pt;}
.ls17{letter-spacing:8.400000pt;}
.ls18{letter-spacing:22.848000pt;}
.ws21{word-spacing:-36.336000pt;}
.ws8{word-spacing:-26.333333pt;}
.ws1{word-spacing:-25.632000pt;}
.ws0{word-spacing:-24.864000pt;}
.ws28{word-spacing:-23.576000pt;}
.ws20{word-spacing:-21.888000pt;}
.ws22{word-spacing:-21.264000pt;}
.ws1c{word-spacing:-20.064000pt;}
.ws1f{word-spacing:-19.872000pt;}
.ws10{word-spacing:-17.234667pt;}
.ws1b{word-spacing:-17.040000pt;}
.ws1a{word-spacing:-16.704000pt;}
.ws2b{word-spacing:-15.736000pt;}
.ws9{word-spacing:-15.344000pt;}
.wsa{word-spacing:-15.149333pt;}
.ws19{word-spacing:-15.088000pt;}
.ws17{word-spacing:-14.536000pt;}
.ws1e{word-spacing:-14.304000pt;}
.wsf{word-spacing:-14.168000pt;}
.ws29{word-spacing:-13.832000pt;}
.wsb{word-spacing:-13.800000pt;}
.ws11{word-spacing:-13.493333pt;}
.ws1d{word-spacing:-13.488000pt;}
.ws2c{word-spacing:-13.173333pt;}
.ws2a{word-spacing:-12.432000pt;}
.ws18{word-spacing:-10.047811pt;}
.ws4{word-spacing:-7.466667pt;}
.ws25{word-spacing:-6.808000pt;}
.ws2d{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.wsc{word-spacing:-2.133333pt;}
.ws7{word-spacing:-1.120000pt;}
.ws2{word-spacing:0.000000pt;}
.ws24{word-spacing:0.061333pt;}
.ws27{word-spacing:0.184000pt;}
.ws5{word-spacing:0.213333pt;}
.wse{word-spacing:0.306667pt;}
.ws12{word-spacing:0.586667pt;}
.ws16{word-spacing:0.674667pt;}
.ws14{word-spacing:0.736000pt;}
.ws6{word-spacing:0.970667pt;}
.ws13{word-spacing:1.349333pt;}
.ws15{word-spacing:1.656000pt;}
.ws26{word-spacing:2.637333pt;}
.wsd{word-spacing:3.925333pt;}
.ws23{word-spacing:8.954667pt;}
._15{margin-left:-6.660800pt;}
._b{margin-left:-5.184000pt;}
._4{margin-left:-3.876267pt;}
._6{margin-left:-2.279200pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._5{width:2.133600pt;}
._a{width:3.397333pt;}
._c{width:4.393333pt;}
._7{width:5.322400pt;}
._8{width:6.459200pt;}
._9{width:7.626133pt;}
._e{width:9.019733pt;}
._d{width:10.515733pt;}
._10{width:11.437600pt;}
._13{width:12.357600pt;}
._11{width:13.328533pt;}
._12{width:14.770667pt;}
._1b{width:19.905600pt;}
._1a{width:21.185600pt;}
._19{width:23.263467pt;}
._18{width:28.168000pt;}
._16{width:38.617920pt;}
._f{width:396.206400pt;}
._0{width:514.133333pt;}
._3{width:836.046400pt;}
._14{width:838.379733pt;}
._17{width:841.979733pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y74{bottom:82.347867pt;}
.y22{bottom:88.115600pt;}
.y4b{bottom:94.369200pt;}
.y9b{bottom:94.485733pt;}
.y73{bottom:100.349200pt;}
.yb8{bottom:101.015333pt;}
.y21{bottom:106.116933pt;}
.y9a{bottom:112.484400pt;}
.y4a{bottom:112.523867pt;}
.y72{bottom:118.350533pt;}
.yb7{bottom:119.015333pt;}
.y20{bottom:124.118267pt;}
.y99{bottom:128.921333pt;}
.y49{bottom:130.678533pt;}
.y71{bottom:136.351867pt;}
.yb6{bottom:137.015333pt;}
.y1f{bottom:142.119600pt;}
.y98{bottom:144.257333pt;}
.y48{bottom:148.833200pt;}
.y70{bottom:154.353200pt;}
.yb5{bottom:155.015333pt;}
.y97{bottom:159.593333pt;}
.y1e{bottom:160.120933pt;}
.y47{bottom:166.987867pt;}
.y6f{bottom:172.354533pt;}
.yb4{bottom:173.015333pt;}
.y96{bottom:174.929333pt;}
.y1d{bottom:178.122267pt;}
.y46{bottom:185.142533pt;}
.y95{bottom:190.265333pt;}
.y6e{bottom:190.355867pt;}
.y1c{bottom:196.123600pt;}
.y45{bottom:203.297200pt;}
.y94{bottom:208.264000pt;}
.y6d{bottom:208.357200pt;}
.yb3{bottom:209.015333pt;}
.y1b{bottom:214.124933pt;}
.y44{bottom:221.451867pt;}
.y93{bottom:224.703733pt;}
.y6c{bottom:226.358533pt;}
.yb2{bottom:227.015333pt;}
.y1a{bottom:232.126267pt;}
.y43{bottom:239.606533pt;}
.y92{bottom:240.039733pt;}
.y6b{bottom:244.359867pt;}
.yb1{bottom:245.015333pt;}
.y19{bottom:250.127600pt;}
.y91{bottom:255.375733pt;}
.y42{bottom:257.761200pt;}
.y6a{bottom:262.361200pt;}
.yb0{bottom:263.015333pt;}
.y18{bottom:268.128933pt;}
.y90{bottom:270.711733pt;}
.y41{bottom:275.915867pt;}
.y69{bottom:280.362533pt;}
.yaf{bottom:281.015333pt;}
.y17{bottom:286.130267pt;}
.y8f{bottom:288.710400pt;}
.y40{bottom:294.070533pt;}
.y68{bottom:298.363867pt;}
.yae{bottom:299.015333pt;}
.y16{bottom:304.131600pt;}
.y3f{bottom:312.225200pt;}
.y67{bottom:316.365200pt;}
.y15{bottom:322.132933pt;}
.y8e{bottom:327.866667pt;}
.yad{bottom:328.348667pt;}
.y3e{bottom:330.379867pt;}
.y66{bottom:334.366533pt;}
.y14{bottom:340.134267pt;}
.y8d{bottom:346.113333pt;}
.y3d{bottom:348.534533pt;}
.y65{bottom:352.367867pt;}
.y13{bottom:358.135600pt;}
.y8c{bottom:364.360000pt;}
.yac{bottom:365.173867pt;}
.y3c{bottom:366.689200pt;}
.y64{bottom:370.369200pt;}
.y12{bottom:376.136933pt;}
.y8b{bottom:382.606667pt;}
.yab{bottom:383.177867pt;}
.y3b{bottom:384.843867pt;}
.y63{bottom:388.370533pt;}
.y11{bottom:394.138267pt;}
.y8a{bottom:400.853333pt;}
.y3a{bottom:402.998533pt;}
.y62{bottom:406.371867pt;}
.yaa{bottom:408.741867pt;}
.y89{bottom:419.146133pt;}
.y39{bottom:421.153200pt;}
.y61{bottom:424.373200pt;}
.y10{bottom:431.036000pt;}
.ya9{bottom:434.305867pt;}
.y88{bottom:437.392800pt;}
.y38{bottom:439.307867pt;}
.y60{bottom:442.374533pt;}
.yf{bottom:449.702667pt;}
.y87{bottom:455.639467pt;}
.y37{bottom:457.462533pt;}
.ya8{bottom:459.869867pt;}
.y5f{bottom:460.375867pt;}
.ye{bottom:468.369333pt;}
.y86{bottom:473.886133pt;}
.y36{bottom:475.617200pt;}
.y5e{bottom:478.377200pt;}
.ya7{bottom:485.433867pt;}
.yd{bottom:487.036000pt;}
.y85{bottom:492.132800pt;}
.y35{bottom:493.771867pt;}
.y5d{bottom:496.378533pt;}
.ya6{bottom:503.437867pt;}
.y84{bottom:510.379467pt;}
.y34{bottom:511.926533pt;}
.y5c{bottom:514.379867pt;}
.y83{bottom:528.626133pt;}
.ya5{bottom:529.001867pt;}
.y33{bottom:530.081200pt;}
.yc{bottom:532.135333pt;}
.y5b{bottom:532.381200pt;}
.y82{bottom:546.872800pt;}
.ya4{bottom:547.005867pt;}
.y32{bottom:548.235867pt;}
.y5a{bottom:550.382533pt;}
.yb{bottom:560.143333pt;}
.ya3{bottom:565.009867pt;}
.y81{bottom:565.142533pt;}
.y31{bottom:566.390533pt;}
.y59{bottom:568.383867pt;}
.y80{bottom:583.389200pt;}
.y30{bottom:584.545200pt;}
.y58{bottom:586.385200pt;}
.ya{bottom:588.151333pt;}
.ya2{bottom:590.573867pt;}
.y7f{bottom:601.635867pt;}
.y2f{bottom:602.699867pt;}
.y57{bottom:604.386533pt;}
.ya1{bottom:608.577867pt;}
.y9{bottom:616.159333pt;}
.y7e{bottom:619.882533pt;}
.y2e{bottom:620.854533pt;}
.y56{bottom:622.387867pt;}
.ya0{bottom:634.141867pt;}
.y7d{bottom:638.181200pt;}
.y2d{bottom:639.009200pt;}
.y55{bottom:640.389200pt;}
.y8{bottom:644.159333pt;}
.y9f{bottom:652.145867pt;}
.y7c{bottom:656.427867pt;}
.y2c{bottom:657.163867pt;}
.y54{bottom:658.390533pt;}
.y7b{bottom:674.674533pt;}
.y2b{bottom:675.318533pt;}
.y53{bottom:676.391867pt;}
.y9e{bottom:677.709867pt;}
.y7a{bottom:692.921200pt;}
.y2a{bottom:693.473200pt;}
.y52{bottom:694.393200pt;}
.y7{bottom:694.834533pt;}
.y9d{bottom:695.713867pt;}
.y79{bottom:711.167867pt;}
.y29{bottom:711.627867pt;}
.y51{bottom:712.394533pt;}
.y6{bottom:721.061200pt;}
.y9c{bottom:721.277867pt;}
.y78{bottom:729.414533pt;}
.y28{bottom:729.782533pt;}
.y50{bottom:730.395867pt;}
.y5{bottom:739.727867pt;}
.y77{bottom:747.661200pt;}
.y27{bottom:747.937200pt;}
.y4f{bottom:748.397200pt;}
.y76{bottom:765.907867pt;}
.y4{bottom:765.954533pt;}
.y26{bottom:766.091867pt;}
.y4e{bottom:766.398533pt;}
.y75{bottom:784.154533pt;}
.y25{bottom:784.246533pt;}
.y4d{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y24{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:842.834667pt;}
.y4c{bottom:858.834667pt;}
.hc{height:30.107146pt;}
.h8{height:36.229167pt;}
.hd{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h7{height:52.079427pt;}
.ha{height:52.265625pt;}
.he{height:54.878906pt;}
.h2{height:56.608073pt;}
.hb{height:59.920935pt;}
.h9{height:60.105469pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:73.302667pt;}
.x5{left:74.344933pt;}
.x1{left:75.590533pt;}
.x6{left:92.653333pt;}
.x4{left:93.940933pt;}
.x8{left:94.932133pt;}
.x3{left:206.416000pt;}
.x2{left:207.502000pt;}
}




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