
    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_c2e012a74ed15db136784ede.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_9912ea82004cc698da39c5c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_342837391f27f478c6e44bee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_5ae5d42c5af3033f3a6494f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_8a829510e43c3e0bdb7933cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_27c5c87b1d5504d8e57ad136.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_70b7a3ee643e182c0e95d2df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_22c8ccca7c28595f2a35883a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a43158bcb44767ce9f36502.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.709473;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:ffa;src:url('chunks/assets/font_87c99d9a7a2abfaee7f4e058.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.812500;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:ffb;src:url('chunks/assets/font_17d71d006b8ee3cbbee4fc2e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.960938;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:ffc;src:url('chunks/assets/font_4d5f4d62f2c7f0d749a594ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v1{vertical-align:-11.519995px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.106523px;}
.ls3{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.325370px;}
.ls7{letter-spacing:30.275988px;}
.ls2{letter-spacing:75.443010px;}
.ls4{letter-spacing:82.153767px;}
.ls1{letter-spacing:82.223967px;}
.ls9{letter-spacing:86.124926px;}
.lsa{letter-spacing:98.267001px;}
.ls5{letter-spacing:98.976920px;}
.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;}
}
.wsb{word-spacing:-287.999885px;}
.wsa{word-spacing:-90.143964px;}
.ws2{word-spacing:-71.999971px;}
.ws1{word-spacing:-63.450695px;}
.ws14{word-spacing:-46.962632px;}
.ws13{word-spacing:-46.637261px;}
.ws10{word-spacing:-45.071982px;}
.ws19{word-spacing:-43.434703px;}
.ws3{word-spacing:-39.059984px;}
.ws4{word-spacing:-38.015985px;}
.ws6{word-spacing:-35.999986px;}
.ws5{word-spacing:-33.707507px;}
.ws12{word-spacing:-28.439989px;}
.ws17{word-spacing:-7.226662px;}
.ws1a{word-spacing:-3.302600px;}
.ws1b{word-spacing:-3.141305px;}
.ws7{word-spacing:-2.591999px;}
.ws18{word-spacing:-0.746570px;}
.ws15{word-spacing:-0.162559px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.325454px;}
.ws11{word-spacing:0.458656px;}
.ws16{word-spacing:0.488181px;}
.wsd{word-spacing:3.887963px;}
.wsc{word-spacing:3.887998px;}
.wse{word-spacing:3.889651px;}
.wsf{word-spacing:4.609686px;}
.ws9{word-spacing:550.799780px;}
.ws8{word-spacing:1405.683437px;}
._8{margin-left:-30.383764px;}
._4{margin-left:-13.247923px;}
._a{margin-left:-12.203821px;}
._e{margin-left:-6.741383px;}
._c{margin-left:-4.699983px;}
._9{margin-left:-3.599999px;}
._1{margin-left:-2.411966px;}
._2{margin-left:-1.188103px;}
._0{width:1.008052px;}
._3{width:2.771997px;}
._12{width:28.768979px;}
._5{width:33.951529px;}
._d{width:38.714672px;}
._b{width:44.964033px;}
._6{width:46.306781px;}
._10{width:47.673407px;}
._f{width:65.185166px;}
._11{width:202.186672px;}
._7{width:694.547826px;}
.fc3{color:rgb(255,153,0);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(25,68,49);}
.fsb{font-size:59.759976px;}
.fs5{font-size:71.999971px;}
.fs9{font-size:84.239966px;}
.fs8{font-size:95.759962px;}
.fs3{font-size:107.999957px;}
.fsd{font-size:113.759954px;}
.fse{font-size:120.239952px;}
.fsf{font-size:131.759947px;}
.fs4{font-size:143.999942px;}
.fs6{font-size:156.239938px;}
.fs1{font-size:167.759933px;}
.fsa{font-size:192.239923px;}
.fsc{font-size:215.999914px;}
.fs2{font-size:228.239909px;}
.fs7{font-size:239.759904px;}
.fs0{font-size:287.999885px;}
.y0{bottom:0.000000px;}
.y22{bottom:12.420034px;}
.yc{bottom:20.340034px;}
.y38{bottom:68.280330px;}
.y15{bottom:72.960328px;}
.y54{bottom:80.520325px;}
.y42{bottom:119.940309px;}
.y60{bottom:122.100308px;}
.y2a{bottom:123.000308px;}
.y49{bottom:126.060307px;}
.y20{bottom:145.500299px;}
.y53{bottom:149.280297px;}
.y7b{bottom:152.700296px;}
.y29{bottom:155.400295px;}
.y95{bottom:156.660294px;}
.y65{bottom:172.680288px;}
.y41{bottom:184.740283px;}
.y5f{bottom:186.540282px;}
.y28{bottom:187.800282px;}
.y73{bottom:201.840276px;}
.y1f{bottom:203.640276px;}
.y94{bottom:205.260275px;}
.y14{bottom:210.840273px;}
.y7a{bottom:213.540272px;}
.y52{bottom:218.220270px;}
.y27{bottom:220.200269px;}
.y5e{bottom:221.100269px;}
.y9a{bottom:239.280261px;}
.y40{bottom:249.540257px;}
.y26{bottom:252.600256px;}
.y93{bottom:253.860255px;}
.y2{bottom:256.560254px;}
.y51{bottom:257.100254px;}
.y1e{bottom:261.780252px;}
.y64{bottom:271.680248px;}
.y79{bottom:274.200247px;}
.y72{bottom:275.100247px;}
.ya{bottom:278.160246px;}
.y13{bottom:284.100243px;}
.y99{bottom:285.360243px;}
.y5d{bottom:285.720243px;}
.y89{bottom:288.960241px;}
.y92{bottom:293.460240px;}
.y9{bottom:304.080235px;}
.y3f{bottom:314.340231px;}
.y48{bottom:314.520231px;}
.y1d{bottom:319.740229px;}
.y5c{bottom:320.280229px;}
.y50{bottom:326.040227px;}
.y8{bottom:330.000225px;}
.y98{bottom:331.260224px;}
.y91{bottom:333.060224px;}
.y78{bottom:335.040223px;}
.y1{bottom:342.960220px;}
.y30{bottom:345.660219px;}
.y88{bottom:347.640218px;}
.y71{bottom:348.180218px;}
.y12{bottom:357.180214px;}
.y4f{bottom:364.920211px;}
.y47{bottom:366.360210px;}
.y1c{bottom:377.880206px;}
.y97{bottom:378.960205px;}
.y3e{bottom:379.140205px;}
.y63{bottom:379.680205px;}
.y90{bottom:381.660204px;}
.y5b{bottom:384.900203px;}
.y7{bottom:385.980203px;}
.y2f{bottom:392.100200px;}
.y77{bottom:395.880199px;}
.y8d{bottom:402.540196px;}
.y1b{bottom:405.960195px;}
.y87{bottom:406.500194px;}
.y6{bottom:411.900192px;}
.y5a{bottom:419.460189px;}
.y2e{bottom:420.900189px;}
.y70{bottom:421.440188px;}
.y96{bottom:424.860187px;}
.y8f{bottom:430.260185px;}
.y11{bottom:430.440185px;}
.y6b{bottom:430.980185px;}
.y4e{bottom:433.680184px;}
.y3d{bottom:443.940179px;}
.y2d{bottom:449.700177px;}
.y25{bottom:452.040176px;}
.y80{bottom:456.180175px;}
.y76{bottom:456.540174px;}
.y5{bottom:462.480172px;}
.y1a{bottom:464.100171px;}
.y86{bottom:465.360171px;}
.y8e{bottom:469.860169px;}
.y8c{bottom:470.040169px;}
.y4d{bottom:472.560168px;}
.y2c{bottom:479.040165px;}
.y59{bottom:483.900163px;}
.y6f{bottom:494.700159px;}
.y62{bottom:496.680158px;}
.y10{bottom:503.700156px;}
.y6a{bottom:506.400154px;}
.y3c{bottom:508.740154px;}
.y2b{bottom:511.440152px;}
.y75{bottom:517.380150px;}
.y58{bottom:518.460150px;}
.y19{bottom:522.060148px;}
.y85{bottom:524.040147px;}
.y7f{bottom:526.560146px;}
.y4{bottom:530.880145px;}
.y46{bottom:532.320144px;}
.y8b{bottom:537.360142px;}
.y4c{bottom:541.500140px;}
.y6e{bottom:567.780130px;}
.y3b{bottom:573.540128px;}
.yf{bottom:576.780126px;}
.y74{bottom:578.220126px;}
.y18{bottom:580.200125px;}
.y4b{bottom:580.380125px;}
.y35{bottom:581.820124px;}
.y84{bottom:582.900124px;}
.y57{bottom:583.080124px;}
.y7e{bottom:596.940118px;}
.y67{bottom:601.260116px;}
.y8a{bottom:604.860115px;}
.y34{bottom:610.620113px;}
.y56{bottom:617.640110px;}
.y61{bottom:622.680108px;}
.ye{bottom:633.840103px;}
.y3a{bottom:638.340102px;}
.y33{bottom:639.420101px;}
.y83{bottom:641.760100px;}
.y9c{bottom:657.060094px;}
.y24{bottom:662.460092px;}
.y7d{bottom:667.140090px;}
.y32{bottom:668.220090px;}
.y45{bottom:674.160087px;}
.y17{bottom:691.440080px;}
.y31{bottom:697.560078px;}
.y3{bottom:699.180077px;}
.y39{bottom:703.140076px;}
.y6d{bottom:708.180074px;}
.yd{bottom:720.240069px;}
.y81{bottom:727.440066px;}
.y55{bottom:727.980066px;}
.y44{bottom:731.760064px;}
.y69{bottom:732.480064px;}
.y23{bottom:734.460063px;}
.y68{bottom:734.640063px;}
.y7c{bottom:737.520062px;}
.y4a{bottom:739.680061px;}
.y82{bottom:748.500058px;}
.y66{bottom:751.920056px;}
.y9b{bottom:756.960054px;}
.y37{bottom:760.380053px;}
.y6c{bottom:772.980048px;}
.y16{bottom:777.840046px;}
.yb{bottom:786.300000px;}
.y36{bottom:789.180041px;}
.y43{bottom:789.360041px;}
.y21{bottom:794.040000px;}
.h12{height:45.695372px;}
.h8{height:52.417948px;}
.ha{height:57.240000px;}
.h6{height:64.980000px;}
.hd{height:72.755127px;}
.he{height:73.222705px;}
.hc{height:82.054655px;}
.hf{height:82.676920px;}
.h19{height:82.820357px;}
.h1d{height:87.537973px;}
.h1c{height:95.924844px;}
.h16{height:104.062458px;}
.h7{height:104.835896px;}
.h14{height:110.109331px;}
.h4{height:112.640580px;}
.h9{height:113.746947px;}
.h1e{height:118.008937px;}
.h2{height:122.133818px;}
.h1a{height:125.406512px;}
.h11{height:133.009751px;}
.h10{height:141.328068px;}
.h18{height:157.253843px;}
.h1b{height:162.953372px;}
.h17{height:174.968368px;}
.hb{height:183.332036px;}
.h1{height:209.671791px;}
.h15{height:217.687413px;}
.h13{height:231.749907px;}
.h3{height:238.047092px;}
.h0{height:892.500000px;}
.h5{height:1263.000000px;}
.w3{width:487.800000px;}
.w2{width:858.060000px;}
.w1{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1c{left:120.225852px;}
.x2c{left:130.845848px;}
.x13{left:151.546439px;}
.x1{left:160.546436px;}
.x17{left:181.426427px;}
.xb{left:192.586423px;}
.x20{left:201.226420px;}
.x5{left:211.485600px;}
.x6{left:219.226412px;}
.x2d{left:222.106411px;}
.x2e{left:228.586409px;}
.xc{left:233.086407px;}
.x2{left:235.426406px;}
.x1b{left:237.946405px;}
.x21{left:241.726403px;}
.x31{left:251.626399px;}
.x16{left:255.226398px;}
.x19{left:256.846397px;}
.x35{left:265.666394px;}
.x33{left:269.986392px;}
.x32{left:273.586391px;}
.x27{left:278.986388px;}
.x9{left:290.506384px;}
.x29{left:294.466382px;}
.xa{left:302.746379px;}
.x1f{left:308.506377px;}
.x2b{left:330.106368px;}
.x30{left:346.846361px;}
.x1e{left:364.846354px;}
.xd{left:387.525600px;}
.x10{left:403.366339px;}
.x1a{left:410.746336px;}
.xe{left:415.606334px;}
.x26{left:421.186332px;}
.x2f{left:455.206318px;}
.xf{left:460.786316px;}
.x18{left:462.226315px;}
.x37{left:469.606312px;}
.x36{left:521.806291px;}
.x3{left:535.846286px;}
.x7{left:545.746282px;}
.x4{left:548.266281px;}
.x34{left:559.426276px;}
.x11{left:576.526269px;}
.x22{left:586.246266px;}
.x23{left:590.746264px;}
.x24{left:597.226261px;}
.x25{left:599.746260px;}
.x2a{left:622.246251px;}
.x8{left:626.746249px;}
.x12{left:738.706205px;}
.x14{left:888.646145px;}
.x1d{left:930.226128px;}
.x15{left:942.646123px;}
.x28{left:1082.686067px;}
@media print{
.v1{vertical-align:-10.239996pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.094688pt;}
.ls3{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.289218pt;}
.ls7{letter-spacing:26.911989pt;}
.ls2{letter-spacing:67.060453pt;}
.ls4{letter-spacing:73.025571pt;}
.ls1{letter-spacing:73.087971pt;}
.ls9{letter-spacing:76.555489pt;}
.lsa{letter-spacing:87.348445pt;}
.ls5{letter-spacing:87.979485pt;}
.wsb{word-spacing:-255.999898pt;}
.wsa{word-spacing:-80.127968pt;}
.ws2{word-spacing:-63.999974pt;}
.ws1{word-spacing:-56.400617pt;}
.ws14{word-spacing:-41.744562pt;}
.ws13{word-spacing:-41.455343pt;}
.ws10{word-spacing:-40.063984pt;}
.ws19{word-spacing:-38.608625pt;}
.ws3{word-spacing:-34.719986pt;}
.ws4{word-spacing:-33.791986pt;}
.ws6{word-spacing:-31.999987pt;}
.ws5{word-spacing:-29.962228pt;}
.ws12{word-spacing:-25.279990pt;}
.ws17{word-spacing:-6.423699pt;}
.ws1a{word-spacing:-2.935644pt;}
.ws1b{word-spacing:-2.792271pt;}
.ws7{word-spacing:-2.303999pt;}
.ws18{word-spacing:-0.663618pt;}
.ws15{word-spacing:-0.144497pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.289293pt;}
.ws11{word-spacing:0.407694pt;}
.ws16{word-spacing:0.433939pt;}
.wsd{word-spacing:3.455967pt;}
.wsc{word-spacing:3.455999pt;}
.wse{word-spacing:3.457467pt;}
.wsf{word-spacing:4.097498pt;}
.ws9{word-spacing:489.599804pt;}
.ws8{word-spacing:1249.496388pt;}
._8{margin-left:-27.007790pt;}
._4{margin-left:-11.775931pt;}
._a{margin-left:-10.847841pt;}
._e{margin-left:-5.992340pt;}
._c{margin-left:-4.177763pt;}
._9{margin-left:-3.199999pt;}
._1{margin-left:-2.143970pt;}
._2{margin-left:-1.056091pt;}
._0{width:0.896046pt;}
._3{width:2.463997pt;}
._12{width:25.572426pt;}
._5{width:30.179137pt;}
._d{width:34.413042pt;}
._b{width:39.968029pt;}
._6{width:41.161584pt;}
._10{width:42.376362pt;}
._f{width:57.942370pt;}
._11{width:179.721487pt;}
._7{width:617.375845pt;}
.fsb{font-size:53.119979pt;}
.fs5{font-size:63.999974pt;}
.fs9{font-size:74.879970pt;}
.fs8{font-size:85.119966pt;}
.fs3{font-size:95.999962pt;}
.fsd{font-size:101.119960pt;}
.fse{font-size:106.879957pt;}
.fsf{font-size:117.119953pt;}
.fs4{font-size:127.999949pt;}
.fs6{font-size:138.879944pt;}
.fs1{font-size:149.119940pt;}
.fsa{font-size:170.879932pt;}
.fsc{font-size:191.999923pt;}
.fs2{font-size:202.879919pt;}
.fs7{font-size:213.119915pt;}
.fs0{font-size:255.999898pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:11.040031pt;}
.yc{bottom:18.080031pt;}
.y38{bottom:60.693626pt;}
.y15{bottom:64.853625pt;}
.y54{bottom:71.573622pt;}
.y42{bottom:106.613608pt;}
.y60{bottom:108.533607pt;}
.y2a{bottom:109.333607pt;}
.y49{bottom:112.053606pt;}
.y20{bottom:129.333599pt;}
.y53{bottom:132.693598pt;}
.y7b{bottom:135.733596pt;}
.y29{bottom:138.133595pt;}
.y95{bottom:139.253595pt;}
.y65{bottom:153.493589pt;}
.y41{bottom:164.213585pt;}
.y5f{bottom:165.813584pt;}
.y28{bottom:166.933584pt;}
.y73{bottom:179.413579pt;}
.y1f{bottom:181.013578pt;}
.y94{bottom:182.453578pt;}
.y14{bottom:187.413576pt;}
.y7a{bottom:189.813575pt;}
.y52{bottom:193.973573pt;}
.y27{bottom:195.733572pt;}
.y5e{bottom:196.533572pt;}
.y9a{bottom:212.693566pt;}
.y40{bottom:221.813562pt;}
.y26{bottom:224.533561pt;}
.y93{bottom:225.653560pt;}
.y2{bottom:228.053559pt;}
.y51{bottom:228.533559pt;}
.y1e{bottom:232.693558pt;}
.y64{bottom:241.493554pt;}
.y79{bottom:243.733553pt;}
.y72{bottom:244.533553pt;}
.ya{bottom:247.253552pt;}
.y13{bottom:252.533550pt;}
.y99{bottom:253.653549pt;}
.y5d{bottom:253.973549pt;}
.y89{bottom:256.853548pt;}
.y92{bottom:260.853546pt;}
.y9{bottom:270.293543pt;}
.y3f{bottom:279.413539pt;}
.y48{bottom:279.573539pt;}
.y1d{bottom:284.213537pt;}
.y5c{bottom:284.693537pt;}
.y50{bottom:289.813535pt;}
.y8{bottom:293.333533pt;}
.y98{bottom:294.453533pt;}
.y91{bottom:296.053532pt;}
.y78{bottom:297.813532pt;}
.y1{bottom:304.853529pt;}
.y30{bottom:307.253528pt;}
.y88{bottom:309.013527pt;}
.y71{bottom:309.493527pt;}
.y12{bottom:317.493524pt;}
.y4f{bottom:324.373521pt;}
.y47{bottom:325.653520pt;}
.y1c{bottom:335.893516pt;}
.y97{bottom:336.853516pt;}
.y3e{bottom:337.013516pt;}
.y63{bottom:337.493516pt;}
.y90{bottom:339.253515pt;}
.y5b{bottom:342.133514pt;}
.y7{bottom:343.093513pt;}
.y2f{bottom:348.533511pt;}
.y77{bottom:351.893510pt;}
.y8d{bottom:357.813508pt;}
.y1b{bottom:360.853506pt;}
.y87{bottom:361.333506pt;}
.y6{bottom:366.133504pt;}
.y5a{bottom:372.853502pt;}
.y2e{bottom:374.133501pt;}
.y70{bottom:374.613501pt;}
.y96{bottom:377.653500pt;}
.y8f{bottom:382.453498pt;}
.y11{bottom:382.613498pt;}
.y6b{bottom:383.093497pt;}
.y4e{bottom:385.493496pt;}
.y3d{bottom:394.613493pt;}
.y2d{bottom:399.733491pt;}
.y25{bottom:401.813490pt;}
.y80{bottom:405.493488pt;}
.y76{bottom:405.813488pt;}
.y5{bottom:411.093486pt;}
.y1a{bottom:412.533486pt;}
.y86{bottom:413.653485pt;}
.y8e{bottom:417.653484pt;}
.y8c{bottom:417.813484pt;}
.y4d{bottom:420.053483pt;}
.y2c{bottom:425.813480pt;}
.y59{bottom:430.133479pt;}
.y6f{bottom:439.733475pt;}
.y62{bottom:441.493474pt;}
.y10{bottom:447.733472pt;}
.y6a{bottom:450.133471pt;}
.y3c{bottom:452.213470pt;}
.y2b{bottom:454.613469pt;}
.y75{bottom:459.893467pt;}
.y58{bottom:460.853466pt;}
.y19{bottom:464.053465pt;}
.y85{bottom:465.813464pt;}
.y7f{bottom:468.053463pt;}
.y4{bottom:471.893462pt;}
.y46{bottom:473.173461pt;}
.y8b{bottom:477.653460pt;}
.y4c{bottom:481.333458pt;}
.y6e{bottom:504.693449pt;}
.y3b{bottom:509.813447pt;}
.yf{bottom:512.693446pt;}
.y74{bottom:513.973445pt;}
.y18{bottom:515.733444pt;}
.y4b{bottom:515.893444pt;}
.y35{bottom:517.173444pt;}
.y84{bottom:518.133443pt;}
.y57{bottom:518.293443pt;}
.y7e{bottom:530.613438pt;}
.y67{bottom:534.453437pt;}
.y8a{bottom:537.653436pt;}
.y34{bottom:542.773434pt;}
.y56{bottom:549.013431pt;}
.y61{bottom:553.493429pt;}
.ye{bottom:563.413425pt;}
.y3a{bottom:567.413424pt;}
.y33{bottom:568.373423pt;}
.y83{bottom:570.453422pt;}
.y9c{bottom:584.053417pt;}
.y24{bottom:588.853415pt;}
.y7d{bottom:593.013413pt;}
.y32{bottom:593.973413pt;}
.y45{bottom:599.253411pt;}
.y17{bottom:614.613405pt;}
.y31{bottom:620.053403pt;}
.y3{bottom:621.493402pt;}
.y39{bottom:625.013401pt;}
.y6d{bottom:629.493399pt;}
.yd{bottom:640.213395pt;}
.y81{bottom:646.613392pt;}
.y55{bottom:647.093392pt;}
.y44{bottom:650.453390pt;}
.y69{bottom:651.093390pt;}
.y23{bottom:652.853390pt;}
.y68{bottom:653.013389pt;}
.y7c{bottom:655.573388pt;}
.y4a{bottom:657.493388pt;}
.y82{bottom:665.333385pt;}
.y66{bottom:668.373383pt;}
.y9b{bottom:672.853382pt;}
.y37{bottom:675.893380pt;}
.y6c{bottom:687.093376pt;}
.y16{bottom:691.413374pt;}
.yb{bottom:698.933333pt;}
.y36{bottom:701.493370pt;}
.y43{bottom:701.653370pt;}
.y21{bottom:705.813333pt;}
.h12{height:40.618109pt;}
.h8{height:46.593731pt;}
.ha{height:50.880000pt;}
.h6{height:57.760000pt;}
.hd{height:64.671224pt;}
.he{height:65.086849pt;}
.hc{height:72.937471pt;}
.hf{height:73.490596pt;}
.h19{height:73.618096pt;}
.h1d{height:77.811531pt;}
.h1c{height:85.266528pt;}
.h16{height:92.499963pt;}
.h7{height:93.187463pt;}
.h14{height:97.874961pt;}
.h4{height:100.124960pt;}
.h9{height:101.108397pt;}
.h1e{height:104.896833pt;}
.h2{height:108.563394pt;}
.h1a{height:111.472455pt;}
.h11{height:118.230890pt;}
.h10{height:125.624950pt;}
.h18{height:139.781194pt;}
.h1b{height:144.847442pt;}
.h17{height:155.527438pt;}
.hb{height:162.961810pt;}
.h1{height:186.374925pt;}
.h15{height:193.499923pt;}
.h13{height:205.999918pt;}
.h3{height:211.597415pt;}
.h0{height:793.333333pt;}
.h5{height:1122.666667pt;}
.w3{width:433.600000pt;}
.w2{width:762.720000pt;}
.w1{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:106.867424pt;}
.x2c{left:116.307420pt;}
.x13{left:134.707946pt;}
.x1{left:142.707943pt;}
.x17{left:161.267935pt;}
.xb{left:171.187932pt;}
.x20{left:178.867928pt;}
.x5{left:187.987200pt;}
.x6{left:194.867922pt;}
.x2d{left:197.427921pt;}
.x2e{left:203.187919pt;}
.xc{left:207.187917pt;}
.x2{left:209.267916pt;}
.x1b{left:211.507915pt;}
.x21{left:214.867914pt;}
.x31{left:223.667911pt;}
.x16{left:226.867909pt;}
.x19{left:228.307909pt;}
.x35{left:236.147906pt;}
.x33{left:239.987904pt;}
.x32{left:243.187903pt;}
.x27{left:247.987901pt;}
.x9{left:258.227897pt;}
.x29{left:261.747895pt;}
.xa{left:269.107892pt;}
.x1f{left:274.227890pt;}
.x2b{left:293.427883pt;}
.x30{left:308.307877pt;}
.x1e{left:324.307870pt;}
.xd{left:344.467200pt;}
.x10{left:358.547857pt;}
.x1a{left:365.107854pt;}
.xe{left:369.427852pt;}
.x26{left:374.387850pt;}
.x2f{left:404.627838pt;}
.xf{left:409.587836pt;}
.x18{left:410.867836pt;}
.x37{left:417.427833pt;}
.x36{left:463.827814pt;}
.x3{left:476.307809pt;}
.x7{left:485.107806pt;}
.x4{left:487.347805pt;}
.x34{left:497.267801pt;}
.x11{left:512.467795pt;}
.x22{left:521.107792pt;}
.x23{left:525.107790pt;}
.x24{left:530.867788pt;}
.x25{left:533.107787pt;}
.x2a{left:553.107779pt;}
.x8{left:557.107777pt;}
.x12{left:656.627737pt;}
.x14{left:789.907684pt;}
.x1d{left:826.867669pt;}
.x15{left:837.907665pt;}
.x28{left:962.387615pt;}
}




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