
    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_dbb7ae9cc179f6b2f17d6d86.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_e8007dcf55a131beb22ad98c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_414a44fac99db655f1ef733b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_d43bac3efb5196adc71e72ad.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_470534b9c9f788ab6d89f535.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_8b5d4c33537d666a9c7b3664.woff')format("woff");}.ff6{font-family:ff6;line-height:0.918945;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:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.096000px;}
.ls3{letter-spacing:1.200000px;}
.ls0{letter-spacing:2.100000px;}
.ls5{letter-spacing:2.934600px;}
.ls2{letter-spacing:3.511200px;}
.ls4{letter-spacing:4.164000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.100000px;}
.ws18{word-spacing:-15.000000px;}
.ws3{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.450000px;}
.ws5{word-spacing:-1.800000px;}
.ws3f{word-spacing:-1.488000px;}
.ws27{word-spacing:-1.440000px;}
.ws38{word-spacing:-1.296000px;}
.ws2f{word-spacing:-1.248000px;}
.ws33{word-spacing:-1.056000px;}
.ws2a{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.432000px;}
.ws37{word-spacing:-0.096000px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:0.144000px;}
.ws21{word-spacing:0.528000px;}
.ws30{word-spacing:0.912000px;}
.ws29{word-spacing:1.008000px;}
.ws1a{word-spacing:1.104000px;}
.wse{word-spacing:1.200000px;}
.ws24{word-spacing:1.296000px;}
.ws8{word-spacing:1.350000px;}
.ws44{word-spacing:1.392000px;}
.ws6{word-spacing:1.500000px;}
.ws19{word-spacing:1.584000px;}
.ws4{word-spacing:1.650000px;}
.wsc{word-spacing:1.920000px;}
.ws40{word-spacing:2.016000px;}
.ws26{word-spacing:2.064000px;}
.ws1e{word-spacing:2.208000px;}
.ws1b{word-spacing:2.352000px;}
.ws32{word-spacing:2.544000px;}
.ws1c{word-spacing:2.784000px;}
.ws34{word-spacing:2.832000px;}
.ws25{word-spacing:2.928000px;}
.wsd{word-spacing:3.360000px;}
.ws31{word-spacing:3.408000px;}
.ws1d{word-spacing:3.504000px;}
.ws28{word-spacing:3.552000px;}
.ws3b{word-spacing:3.792000px;}
.ws12{word-spacing:3.900000px;}
.ws2e{word-spacing:3.936000px;}
.ws1f{word-spacing:4.416000px;}
.ws2b{word-spacing:4.608000px;}
.ws2d{word-spacing:4.704000px;}
.ws23{word-spacing:4.848000px;}
.ws2c{word-spacing:4.896000px;}
.ws3a{word-spacing:5.616000px;}
.ws3c{word-spacing:5.664000px;}
.ws17{word-spacing:6.180000px;}
.ws3d{word-spacing:6.576000px;}
.wsa{word-spacing:6.960000px;}
.ws3e{word-spacing:7.296000px;}
.ws42{word-spacing:7.824000px;}
.ws41{word-spacing:8.928000px;}
.wsf{word-spacing:9.360000px;}
.ws22{word-spacing:9.744000px;}
.ws20{word-spacing:10.176000px;}
.ws16{word-spacing:10.380000px;}
.ws43{word-spacing:11.328000px;}
.ws10{word-spacing:11.340000px;}
.ws35{word-spacing:12.288000px;}
.wsb{word-spacing:13.200000px;}
.ws13{word-spacing:17.520000px;}
.ws14{word-spacing:17.880000px;}
.ws36{word-spacing:18.000000px;}
.ws11{word-spacing:18.120000px;}
.ws15{word-spacing:20.700000px;}
._1{margin-left:-8.573400px;}
._6{margin-left:-7.123200px;}
._7{margin-left:-5.694600px;}
._5{margin-left:-4.406400px;}
._4{margin-left:-3.105000px;}
._0{margin-left:-1.201200px;}
._3{width:1.122000px;}
._f{width:3.016800px;}
._2{width:4.334400px;}
._e{width:5.557800px;}
._9{width:6.561600px;}
._12{width:7.620600px;}
._8{width:8.666400px;}
._d{width:9.816000px;}
._c{width:10.968000px;}
._10{width:13.221000px;}
._11{width:17.172000px;}
._b{width:18.398400px;}
._a{width:20.820000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:127.867500px;}
.yb6{bottom:166.945500px;}
.y85{bottom:175.076550px;}
.y23{bottom:175.091700px;}
.y82{bottom:176.048400px;}
.y88{bottom:179.546700px;}
.yb5{bottom:181.345500px;}
.y7e{bottom:183.580500px;}
.y8b{bottom:185.706450px;}
.y5f{bottom:187.820400px;}
.y84{bottom:189.476550px;}
.y81{bottom:190.448400px;}
.y22{bottom:193.091700px;}
.y87{bottom:193.946700px;}
.yb4{bottom:195.745500px;}
.y7d{bottom:197.980500px;}
.y8a{bottom:200.106450px;}
.y5e{bottom:202.220400px;}
.y83{bottom:203.876550px;}
.y80{bottom:204.848400px;}
.y86{bottom:208.346700px;}
.y21{bottom:211.091700px;}
.y7b{bottom:211.645500px;}
.y7c{bottom:212.380500px;}
.y89{bottom:214.506450px;}
.y5d{bottom:216.620400px;}
.y7f{bottom:219.248400px;}
.yb3{bottom:225.145500px;}
.y7a{bottom:226.045500px;}
.y20{bottom:229.091700px;}
.yb2{bottom:239.545500px;}
.y79{bottom:240.445500px;}
.y5c{bottom:245.420400px;}
.yb1{bottom:253.945500px;}
.y41{bottom:260.245500px;}
.y1f{bottom:265.091700px;}
.yb0{bottom:268.345500px;}
.y78{bottom:269.245500px;}
.y40{bottom:274.645500px;}
.y5b{bottom:277.820400px;}
.yaf{bottom:282.745500px;}
.y3f{bottom:289.045500px;}
.yae{bottom:297.145500px;}
.y1e{bottom:301.091700px;}
.y77{bottom:301.645500px;}
.y5a{bottom:310.220400px;}
.yad{bottom:311.545500px;}
.y3e{bottom:317.845500px;}
.y1d{bottom:319.091700px;}
.yac{bottom:325.945500px;}
.y76{bottom:334.045500px;}
.y1c{bottom:337.091700px;}
.yab{bottom:340.345500px;}
.y59{bottom:346.220400px;}
.y3d{bottom:350.245500px;}
.yaa{bottom:354.745500px;}
.y1b{bottom:355.091700px;}
.y58{bottom:360.620400px;}
.ya9{bottom:369.145500px;}
.y75{bottom:370.045500px;}
.y1a{bottom:373.091700px;}
.y57{bottom:375.020250px;}
.y3c{bottom:382.645500px;}
.ya8{bottom:383.545500px;}
.y74{bottom:384.445500px;}
.y19{bottom:391.091700px;}
.ya7{bottom:397.945500px;}
.y56{bottom:403.820400px;}
.y18{bottom:409.091700px;}
.ya6{bottom:412.345500px;}
.y73{bottom:413.245500px;}
.y3b{bottom:418.645500px;}
.ya5{bottom:426.745500px;}
.y17{bottom:427.091700px;}
.y3a{bottom:433.045500px;}
.y55{bottom:436.220400px;}
.ya4{bottom:441.145500px;}
.y16{bottom:445.091700px;}
.y72{bottom:445.645500px;}
.y39{bottom:447.445500px;}
.ya3{bottom:455.545500px;}
.y38{bottom:461.845500px;}
.y15{bottom:463.091700px;}
.y54{bottom:468.620400px;}
.ya2{bottom:469.945500px;}
.y71{bottom:478.045500px;}
.y14{bottom:481.091700px;}
.ya1{bottom:484.345500px;}
.y37{bottom:490.645500px;}
.ya0{bottom:498.745500px;}
.y13{bottom:499.091700px;}
.y53{bottom:504.620400px;}
.y9f{bottom:513.145500px;}
.y70{bottom:514.045500px;}
.y12{bottom:517.091700px;}
.y52{bottom:519.020250px;}
.y36{bottom:523.045500px;}
.y9e{bottom:527.545500px;}
.y6f{bottom:528.445500px;}
.y51{bottom:533.420400px;}
.y9d{bottom:541.945500px;}
.y6e{bottom:542.845500px;}
.y11{bottom:553.091700px;}
.y35{bottom:555.445500px;}
.y9c{bottom:556.345500px;}
.y50{bottom:562.220400px;}
.y9b{bottom:570.745500px;}
.y6d{bottom:571.645500px;}
.y9a{bottom:585.145500px;}
.y10{bottom:589.091700px;}
.y34{bottom:591.445500px;}
.y4f{bottom:594.620400px;}
.y99{bottom:599.545500px;}
.y6c{bottom:602.245500px;}
.yf{bottom:603.491700px;}
.y33{bottom:605.845500px;}
.y98{bottom:613.945500px;}
.ye{bottom:617.891700px;}
.y32{bottom:620.245500px;}
.y4e{bottom:627.020250px;}
.y97{bottom:628.345500px;}
.yd{bottom:632.291700px;}
.y6b{bottom:632.845500px;}
.yc{bottom:646.691700px;}
.y31{bottom:649.045500px;}
.y96{bottom:657.745500px;}
.y4d{bottom:663.020250px;}
.y6a{bottom:668.845500px;}
.yb{bottom:675.491700px;}
.y4c{bottom:677.420400px;}
.y30{bottom:681.445500px;}
.y69{bottom:683.245500px;}
.ya{bottom:689.891700px;}
.y95{bottom:690.745500px;}
.y4b{bottom:691.820400px;}
.y68{bottom:697.645500px;}
.y94{bottom:705.145500px;}
.y2f{bottom:713.845500px;}
.y93{bottom:719.545500px;}
.y4a{bottom:720.620400px;}
.y9{bottom:722.291700px;}
.y67{bottom:726.445500px;}
.y8{bottom:742.946700px;}
.y92{bottom:747.445500px;}
.y2e{bottom:749.845500px;}
.y49{bottom:753.020250px;}
.y7{bottom:754.691700px;}
.y66{bottom:758.845500px;}
.y2d{bottom:764.245500px;}
.y6{bottom:770.891850px;}
.y91{bottom:773.845500px;}
.y2c{bottom:778.645500px;}
.y48{bottom:785.420400px;}
.y5{bottom:787.091700px;}
.y65{bottom:787.645500px;}
.y90{bottom:806.245500px;}
.y2b{bottom:807.445500px;}
.y4{bottom:807.746700px;}
.y47{bottom:821.420400px;}
.y64{bottom:823.645500px;}
.y46{bottom:835.820400px;}
.y3{bottom:837.491700px;}
.y63{bottom:838.045500px;}
.y2a{bottom:839.845500px;}
.y8f{bottom:842.245500px;}
.y45{bottom:850.220250px;}
.y8e{bottom:856.645500px;}
.y62{bottom:866.845500px;}
.y29{bottom:872.245500px;}
.y2{bottom:873.491700px;}
.y44{bottom:879.020250px;}
.y8d{bottom:885.445500px;}
.y1{bottom:893.291700px;}
.y61{bottom:899.245500px;}
.y28{bottom:908.245500px;}
.y43{bottom:911.420400px;}
.y60{bottom:913.645500px;}
.y8c{bottom:914.845500px;}
.y26{bottom:930.393900px;}
.y42{bottom:943.820400px;}
.y27{bottom:944.245500px;}
.y25{bottom:944.793750px;}
.h4{height:26.264355px;}
.h6{height:32.531250px;}
.hc{height:33.328125px;}
.h7{height:33.351562px;}
.h5{height:37.520508px;}
.hb{height:40.664062px;}
.h8{height:41.689453px;}
.ha{height:42.117188px;}
.h2{height:44.730469px;}
.h3{height:48.982617px;}
.h9{height:52.646484px;}
.h0{height:1057.960500px;}
.h1{height:1058.250000px;}
.w1{width:764.250000px;}
.w0{width:764.575500px;}
.x0{left:0.000000px;}
.xf{left:103.783500px;}
.xa{left:108.035400px;}
.xe{left:109.098450px;}
.x1e{left:125.043300px;}
.xc{left:129.295350px;}
.x1{left:139.692750px;}
.x11{left:173.124750px;}
.x14{left:188.493900px;}
.x8{left:205.671450px;}
.x5{left:212.821650px;}
.x7{left:226.762650px;}
.x1a{left:227.931150px;}
.x15{left:231.377400px;}
.x1c{left:233.348850px;}
.x3{left:239.193150px;}
.x13{left:240.416850px;}
.x18{left:241.665600px;}
.x12{left:251.652150px;}
.x17{left:253.461450px;}
.x1b{left:255.845250px;}
.x19{left:259.990650px;}
.x6{left:262.646400px;}
.x16{left:265.938300px;}
.x2{left:283.636050px;}
.x4{left:289.707000px;}
.x9{left:321.042450px;}
.xb{left:327.753300px;}
.x1d{left:333.070350px;}
.x10{left:348.345000px;}
.x1f{left:557.948400px;}
.x20{left:565.249200px;}
.xd{left:638.291250px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.085333pt;}
.ls3{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.866667pt;}
.ls5{letter-spacing:2.608533pt;}
.ls2{letter-spacing:3.121067pt;}
.ls4{letter-spacing:3.701333pt;}
.ws0{word-spacing:-15.200000pt;}
.ws18{word-spacing:-13.333333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.400000pt;}
.ws5{word-spacing:-1.600000pt;}
.ws3f{word-spacing:-1.322667pt;}
.ws27{word-spacing:-1.280000pt;}
.ws38{word-spacing:-1.152000pt;}
.ws2f{word-spacing:-1.109333pt;}
.ws33{word-spacing:-0.938667pt;}
.ws2a{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.384000pt;}
.ws37{word-spacing:-0.085333pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:0.128000pt;}
.ws21{word-spacing:0.469333pt;}
.ws30{word-spacing:0.810667pt;}
.ws29{word-spacing:0.896000pt;}
.ws1a{word-spacing:0.981333pt;}
.wse{word-spacing:1.066667pt;}
.ws24{word-spacing:1.152000pt;}
.ws8{word-spacing:1.200000pt;}
.ws44{word-spacing:1.237333pt;}
.ws6{word-spacing:1.333333pt;}
.ws19{word-spacing:1.408000pt;}
.ws4{word-spacing:1.466667pt;}
.wsc{word-spacing:1.706667pt;}
.ws40{word-spacing:1.792000pt;}
.ws26{word-spacing:1.834667pt;}
.ws1e{word-spacing:1.962667pt;}
.ws1b{word-spacing:2.090667pt;}
.ws32{word-spacing:2.261333pt;}
.ws1c{word-spacing:2.474667pt;}
.ws34{word-spacing:2.517333pt;}
.ws25{word-spacing:2.602667pt;}
.wsd{word-spacing:2.986667pt;}
.ws31{word-spacing:3.029333pt;}
.ws1d{word-spacing:3.114667pt;}
.ws28{word-spacing:3.157333pt;}
.ws3b{word-spacing:3.370667pt;}
.ws12{word-spacing:3.466667pt;}
.ws2e{word-spacing:3.498667pt;}
.ws1f{word-spacing:3.925333pt;}
.ws2b{word-spacing:4.096000pt;}
.ws2d{word-spacing:4.181333pt;}
.ws23{word-spacing:4.309333pt;}
.ws2c{word-spacing:4.352000pt;}
.ws3a{word-spacing:4.992000pt;}
.ws3c{word-spacing:5.034667pt;}
.ws17{word-spacing:5.493333pt;}
.ws3d{word-spacing:5.845333pt;}
.wsa{word-spacing:6.186667pt;}
.ws3e{word-spacing:6.485333pt;}
.ws42{word-spacing:6.954667pt;}
.ws41{word-spacing:7.936000pt;}
.wsf{word-spacing:8.320000pt;}
.ws22{word-spacing:8.661333pt;}
.ws20{word-spacing:9.045333pt;}
.ws16{word-spacing:9.226667pt;}
.ws43{word-spacing:10.069333pt;}
.ws10{word-spacing:10.080000pt;}
.ws35{word-spacing:10.922667pt;}
.wsb{word-spacing:11.733333pt;}
.ws13{word-spacing:15.573333pt;}
.ws14{word-spacing:15.893333pt;}
.ws36{word-spacing:16.000000pt;}
.ws11{word-spacing:16.106667pt;}
.ws15{word-spacing:18.400000pt;}
._1{margin-left:-7.620800pt;}
._6{margin-left:-6.331733pt;}
._7{margin-left:-5.061867pt;}
._5{margin-left:-3.916800pt;}
._4{margin-left:-2.760000pt;}
._0{margin-left:-1.067733pt;}
._3{width:0.997333pt;}
._f{width:2.681600pt;}
._2{width:3.852800pt;}
._e{width:4.940267pt;}
._9{width:5.832533pt;}
._12{width:6.773867pt;}
._8{width:7.703467pt;}
._d{width:8.725333pt;}
._c{width:9.749333pt;}
._10{width:11.752000pt;}
._11{width:15.264000pt;}
._b{width:16.354133pt;}
._a{width:18.506667pt;}
.fs3{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:113.660000pt;}
.yb6{bottom:148.396000pt;}
.y85{bottom:155.623600pt;}
.y23{bottom:155.637067pt;}
.y82{bottom:156.487467pt;}
.y88{bottom:159.597067pt;}
.yb5{bottom:161.196000pt;}
.y7e{bottom:163.182667pt;}
.y8b{bottom:165.072400pt;}
.y5f{bottom:166.951467pt;}
.y84{bottom:168.423600pt;}
.y81{bottom:169.287467pt;}
.y22{bottom:171.637067pt;}
.y87{bottom:172.397067pt;}
.yb4{bottom:173.996000pt;}
.y7d{bottom:175.982667pt;}
.y8a{bottom:177.872400pt;}
.y5e{bottom:179.751467pt;}
.y83{bottom:181.223600pt;}
.y80{bottom:182.087467pt;}
.y86{bottom:185.197067pt;}
.y21{bottom:187.637067pt;}
.y7b{bottom:188.129333pt;}
.y7c{bottom:188.782667pt;}
.y89{bottom:190.672400pt;}
.y5d{bottom:192.551467pt;}
.y7f{bottom:194.887467pt;}
.yb3{bottom:200.129333pt;}
.y7a{bottom:200.929333pt;}
.y20{bottom:203.637067pt;}
.yb2{bottom:212.929333pt;}
.y79{bottom:213.729333pt;}
.y5c{bottom:218.151467pt;}
.yb1{bottom:225.729333pt;}
.y41{bottom:231.329333pt;}
.y1f{bottom:235.637067pt;}
.yb0{bottom:238.529333pt;}
.y78{bottom:239.329333pt;}
.y40{bottom:244.129333pt;}
.y5b{bottom:246.951467pt;}
.yaf{bottom:251.329333pt;}
.y3f{bottom:256.929333pt;}
.yae{bottom:264.129333pt;}
.y1e{bottom:267.637067pt;}
.y77{bottom:268.129333pt;}
.y5a{bottom:275.751467pt;}
.yad{bottom:276.929333pt;}
.y3e{bottom:282.529333pt;}
.y1d{bottom:283.637067pt;}
.yac{bottom:289.729333pt;}
.y76{bottom:296.929333pt;}
.y1c{bottom:299.637067pt;}
.yab{bottom:302.529333pt;}
.y59{bottom:307.751467pt;}
.y3d{bottom:311.329333pt;}
.yaa{bottom:315.329333pt;}
.y1b{bottom:315.637067pt;}
.y58{bottom:320.551467pt;}
.ya9{bottom:328.129333pt;}
.y75{bottom:328.929333pt;}
.y1a{bottom:331.637067pt;}
.y57{bottom:333.351333pt;}
.y3c{bottom:340.129333pt;}
.ya8{bottom:340.929333pt;}
.y74{bottom:341.729333pt;}
.y19{bottom:347.637067pt;}
.ya7{bottom:353.729333pt;}
.y56{bottom:358.951467pt;}
.y18{bottom:363.637067pt;}
.ya6{bottom:366.529333pt;}
.y73{bottom:367.329333pt;}
.y3b{bottom:372.129333pt;}
.ya5{bottom:379.329333pt;}
.y17{bottom:379.637067pt;}
.y3a{bottom:384.929333pt;}
.y55{bottom:387.751467pt;}
.ya4{bottom:392.129333pt;}
.y16{bottom:395.637067pt;}
.y72{bottom:396.129333pt;}
.y39{bottom:397.729333pt;}
.ya3{bottom:404.929333pt;}
.y38{bottom:410.529333pt;}
.y15{bottom:411.637067pt;}
.y54{bottom:416.551467pt;}
.ya2{bottom:417.729333pt;}
.y71{bottom:424.929333pt;}
.y14{bottom:427.637067pt;}
.ya1{bottom:430.529333pt;}
.y37{bottom:436.129333pt;}
.ya0{bottom:443.329333pt;}
.y13{bottom:443.637067pt;}
.y53{bottom:448.551467pt;}
.y9f{bottom:456.129333pt;}
.y70{bottom:456.929333pt;}
.y12{bottom:459.637067pt;}
.y52{bottom:461.351333pt;}
.y36{bottom:464.929333pt;}
.y9e{bottom:468.929333pt;}
.y6f{bottom:469.729333pt;}
.y51{bottom:474.151467pt;}
.y9d{bottom:481.729333pt;}
.y6e{bottom:482.529333pt;}
.y11{bottom:491.637067pt;}
.y35{bottom:493.729333pt;}
.y9c{bottom:494.529333pt;}
.y50{bottom:499.751467pt;}
.y9b{bottom:507.329333pt;}
.y6d{bottom:508.129333pt;}
.y9a{bottom:520.129333pt;}
.y10{bottom:523.637067pt;}
.y34{bottom:525.729333pt;}
.y4f{bottom:528.551467pt;}
.y99{bottom:532.929333pt;}
.y6c{bottom:535.329333pt;}
.yf{bottom:536.437067pt;}
.y33{bottom:538.529333pt;}
.y98{bottom:545.729333pt;}
.ye{bottom:549.237067pt;}
.y32{bottom:551.329333pt;}
.y4e{bottom:557.351333pt;}
.y97{bottom:558.529333pt;}
.yd{bottom:562.037067pt;}
.y6b{bottom:562.529333pt;}
.yc{bottom:574.837067pt;}
.y31{bottom:576.929333pt;}
.y96{bottom:584.662667pt;}
.y4d{bottom:589.351333pt;}
.y6a{bottom:594.529333pt;}
.yb{bottom:600.437067pt;}
.y4c{bottom:602.151467pt;}
.y30{bottom:605.729333pt;}
.y69{bottom:607.329333pt;}
.ya{bottom:613.237067pt;}
.y95{bottom:613.996000pt;}
.y4b{bottom:614.951467pt;}
.y68{bottom:620.129333pt;}
.y94{bottom:626.796000pt;}
.y2f{bottom:634.529333pt;}
.y93{bottom:639.596000pt;}
.y4a{bottom:640.551467pt;}
.y9{bottom:642.037067pt;}
.y67{bottom:645.729333pt;}
.y8{bottom:660.397067pt;}
.y92{bottom:664.396000pt;}
.y2e{bottom:666.529333pt;}
.y49{bottom:669.351333pt;}
.y7{bottom:670.837067pt;}
.y66{bottom:674.529333pt;}
.y2d{bottom:679.329333pt;}
.y6{bottom:685.237200pt;}
.y91{bottom:687.862667pt;}
.y2c{bottom:692.129333pt;}
.y48{bottom:698.151467pt;}
.y5{bottom:699.637067pt;}
.y65{bottom:700.129333pt;}
.y90{bottom:716.662667pt;}
.y2b{bottom:717.729333pt;}
.y4{bottom:717.997067pt;}
.y47{bottom:730.151467pt;}
.y64{bottom:732.129333pt;}
.y46{bottom:742.951467pt;}
.y3{bottom:744.437067pt;}
.y63{bottom:744.929333pt;}
.y2a{bottom:746.529333pt;}
.y8f{bottom:748.662667pt;}
.y45{bottom:755.751333pt;}
.y8e{bottom:761.462667pt;}
.y62{bottom:770.529333pt;}
.y29{bottom:775.329333pt;}
.y2{bottom:776.437067pt;}
.y44{bottom:781.351333pt;}
.y8d{bottom:787.062667pt;}
.y1{bottom:794.037067pt;}
.y61{bottom:799.329333pt;}
.y28{bottom:807.329333pt;}
.y43{bottom:810.151467pt;}
.y60{bottom:812.129333pt;}
.y8c{bottom:813.196000pt;}
.y26{bottom:827.016800pt;}
.y42{bottom:838.951467pt;}
.y27{bottom:839.329333pt;}
.y25{bottom:839.816667pt;}
.h4{height:23.346094pt;}
.h6{height:28.916667pt;}
.hc{height:29.625000pt;}
.h7{height:29.645833pt;}
.h5{height:33.351562pt;}
.hb{height:36.145833pt;}
.h8{height:37.057292pt;}
.ha{height:37.437500pt;}
.h2{height:39.760417pt;}
.h3{height:43.540104pt;}
.h9{height:46.796875pt;}
.h0{height:940.409333pt;}
.h1{height:940.666667pt;}
.w1{width:679.333333pt;}
.w0{width:679.622667pt;}
.x0{left:0.000000pt;}
.xf{left:92.252000pt;}
.xa{left:96.031467pt;}
.xe{left:96.976400pt;}
.x1e{left:111.149600pt;}
.xc{left:114.929200pt;}
.x1{left:124.171333pt;}
.x11{left:153.888667pt;}
.x14{left:167.550133pt;}
.x8{left:182.819067pt;}
.x5{left:189.174800pt;}
.x7{left:201.566800pt;}
.x1a{left:202.605467pt;}
.x15{left:205.668800pt;}
.x1c{left:207.421200pt;}
.x3{left:212.616133pt;}
.x13{left:213.703867pt;}
.x18{left:214.813867pt;}
.x12{left:223.690800pt;}
.x17{left:225.299067pt;}
.x1b{left:227.418000pt;}
.x19{left:231.102800pt;}
.x6{left:233.463467pt;}
.x16{left:236.389600pt;}
.x2{left:252.120933pt;}
.x4{left:257.517333pt;}
.x9{left:285.371067pt;}
.xb{left:291.336267pt;}
.x1d{left:296.062533pt;}
.x10{left:309.640000pt;}
.x1f{left:495.954133pt;}
.x20{left:502.443733pt;}
.xd{left:567.370000pt;}
}




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