
    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_0bf03d1bc7c8baae444a9dc8.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_81772e3560104016fe4360ed.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4dfbea95cd70a9e22e6dda0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_539ab1f213f756b2deffaddd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_523d6859b699cc4cbb997132.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_5feef1266d29d7253c586dde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_18b83161bd8015256beb03d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_7622dd4f8f524023a47628be.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_80de5299f0d9c2e8d7af1473.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_dbd4d81ad32b1ed213370456.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.926000px;}
.lsc{letter-spacing:-1.908000px;}
.ls8{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-1.134000px;}
.lse{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.486600px;}
.ls10{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.447600px;}
.ls3{letter-spacing:-0.305400px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.908000px;}
.ls1{letter-spacing:3.600000px;}
.ls9{letter-spacing:6.480000px;}
.ls15{letter-spacing:10.546560px;}
.ls14{letter-spacing:40.786560px;}
.ls12{letter-spacing:69.586560px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws3{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws7{word-spacing:-14.184000px;}
.ws9{word-spacing:-14.148000px;}
.ws5{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.212000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2539.166400px;}
._4{margin-left:-1448.940960px;}
._6{margin-left:-1446.276600px;}
._5{margin-left:-996.923520px;}
._7{margin-left:-577.680480px;}
._8{margin-left:-11.181840px;}
._a{margin-left:-5.914080px;}
._c{margin-left:-4.792320px;}
._b{margin-left:-3.312000px;}
._0{margin-left:-2.122560px;}
._2{margin-left:-1.061280px;}
._1{width:1.061280px;}
._9{width:2.387520px;}
._14{width:3.490560px;}
._f{width:4.492800px;}
._e{width:5.846400px;}
._10{width:6.975360px;}
._11{width:8.781120px;}
._15{width:10.281600px;}
._16{width:11.384640px;}
._17{width:12.553920px;}
._12{width:13.674240px;}
._18{width:16.125120px;}
._13{width:17.144640px;}
._19{width:18.527040px;}
._1a{width:19.903680px;}
._1b{width:21.584160px;}
._1c{width:23.600640px;}
._1d{width:24.950400px;}
._d{width:189.655200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:11.160000px;}
.ycf{bottom:30.954000px;}
.ycc{bottom:34.554000px;}
.yce{bottom:50.754000px;}
.y6{bottom:60.480000px;}
.ycd{bottom:70.599000px;}
.y6b{bottom:94.716000px;}
.y96{bottom:96.516000px;}
.y33{bottom:103.716000px;}
.ya2{bottom:105.516000px;}
.y6a{bottom:114.516000px;}
.y95{bottom:116.316000px;}
.ycb{bottom:123.156000px;}
.y32{bottom:123.516000px;}
.ya1{bottom:125.316000px;}
.yc9{bottom:126.756000px;}
.y69{bottom:134.316000px;}
.y94{bottom:136.116000px;}
.y31{bottom:143.316000px;}
.ya0{bottom:145.116000px;}
.yc8{bottom:146.556000px;}
.y68{bottom:154.110000px;}
.y93{bottom:155.910000px;}
.y30{bottom:163.110000px;}
.y9f{bottom:164.910000px;}
.yc7{bottom:166.350000px;}
.y67{bottom:173.910000px;}
.y92{bottom:175.710000px;}
.y2f{bottom:182.910000px;}
.y9e{bottom:184.710000px;}
.yc6{bottom:186.510000px;}
.y66{bottom:193.755000px;}
.y91{bottom:195.555000px;}
.y2e{bottom:203.115000px;}
.y9d{bottom:204.555000px;}
.yc5{bottom:205.995000px;}
.y65{bottom:213.555000px;}
.y90{bottom:215.355000px;}
.y2d{bottom:222.915000px;}
.y9c{bottom:223.995000px;}
.yc4{bottom:226.155000px;}
.y64{bottom:233.355000px;}
.y8f{bottom:235.155000px;}
.y2c{bottom:242.715000px;}
.yc3{bottom:245.955000px;}
.y63{bottom:252.795000px;}
.y9b{bottom:253.155000px;}
.y8e{bottom:255.315000px;}
.y2b{bottom:262.515000px;}
.yc2{bottom:265.755000px;}
.y62{bottom:273.315000px;}
.y8d{bottom:275.115000px;}
.y2a{bottom:282.315000px;}
.yc1{bottom:285.555000px;}
.y61{bottom:292.755000px;}
.y9a{bottom:293.115000px;}
.y8c{bottom:294.915000px;}
.y29{bottom:302.115000px;}
.yc0{bottom:305.355000px;}
.y60{bottom:312.915000px;}
.y8b{bottom:314.715000px;}
.y28{bottom:321.945000px;}
.ybf{bottom:325.185000px;}
.y5f{bottom:332.745000px;}
.y8a{bottom:334.545000px;}
.y27{bottom:341.745000px;}
.ybe{bottom:344.985000px;}
.y5e{bottom:352.545000px;}
.y89{bottom:354.345000px;}
.y26{bottom:361.545000px;}
.ybd{bottom:364.785000px;}
.y5d{bottom:372.345000px;}
.y88{bottom:374.145000px;}
.y25{bottom:381.345000px;}
.ybc{bottom:384.945000px;}
.y5c{bottom:392.145000px;}
.y87{bottom:393.945000px;}
.y24{bottom:401.505000px;}
.ybb{bottom:404.745000px;}
.y5b{bottom:411.945000px;}
.y86{bottom:413.745000px;}
.y23{bottom:421.305000px;}
.yba{bottom:424.545000px;}
.y5a{bottom:431.745000px;}
.y85{bottom:433.545000px;}
.y22{bottom:441.105000px;}
.yb9{bottom:444.345000px;}
.y59{bottom:451.590000px;}
.y84{bottom:453.750000px;}
.y21{bottom:460.950000px;}
.yb8{bottom:464.190000px;}
.y99{bottom:471.390000px;}
.y58{bottom:471.750000px;}
.y83{bottom:473.550000px;}
.y20{bottom:480.750000px;}
.yb7{bottom:483.990000px;}
.y98{bottom:491.190000px;}
.y57{bottom:491.550000px;}
.y82{bottom:493.350000px;}
.y1f{bottom:500.550000px;}
.yb6{bottom:503.430000px;}
.y56{bottom:511.350000px;}
.y81{bottom:513.150000px;}
.y1e{bottom:520.350000px;}
.y55{bottom:531.150000px;}
.yb5{bottom:532.590000px;}
.y80{bottom:532.950000px;}
.y1d{bottom:540.150000px;}
.y54{bottom:550.950000px;}
.yb4{bottom:552.390000px;}
.y7f{bottom:552.750000px;}
.y1c{bottom:559.950000px;}
.y53{bottom:570.750000px;}
.yb3{bottom:572.190000px;}
.y7e{bottom:572.580000px;}
.y1b{bottom:579.780000px;}
.y52{bottom:590.580000px;}
.y7d{bottom:592.380000px;}
.y1a{bottom:599.580000px;}
.y51{bottom:610.380000px;}
.y7c{bottom:612.180000px;}
.y19{bottom:619.740000px;}
.y50{bottom:630.180000px;}
.y7b{bottom:631.980000px;}
.y18{bottom:641.700000px;}
.y4f{bottom:649.980000px;}
.y7a{bottom:651.780000px;}
.y4e{bottom:670.140000px;}
.y17{bottom:670.500000px;}
.yb2{bottom:671.580000px;}
.y79{bottom:680.940000px;}
.y4d{bottom:689.940000px;}
.y16{bottom:690.300000px;}
.yb1{bottom:691.380000px;}
.y78{bottom:700.770000px;}
.y4c{bottom:709.770000px;}
.y15{bottom:710.130000px;}
.yb0{bottom:711.210000px;}
.y77{bottom:720.570000px;}
.y4b{bottom:729.570000px;}
.y14{bottom:729.930000px;}
.yaf{bottom:731.010000px;}
.y76{bottom:740.370000px;}
.y4a{bottom:749.370000px;}
.y13{bottom:749.730000px;}
.yae{bottom:750.810000px;}
.y75{bottom:760.170000px;}
.y49{bottom:769.170000px;}
.y12{bottom:769.890000px;}
.yad{bottom:770.250000px;}
.y74{bottom:779.970000px;}
.y48{bottom:788.970000px;}
.y11{bottom:789.690000px;}
.y73{bottom:799.770000px;}
.y47{bottom:808.770000px;}
.y10{bottom:809.490000px;}
.y72{bottom:819.570000px;}
.y46{bottom:828.615000px;}
.yf{bottom:829.335000px;}
.y71{bottom:839.415000px;}
.y45{bottom:848.415000px;}
.ye{bottom:849.135000px;}
.yac{bottom:859.215000px;}
.y70{bottom:859.575000px;}
.y44{bottom:868.575000px;}
.yd{bottom:868.935000px;}
.yab{bottom:879.015000px;}
.y6f{bottom:879.375000px;}
.y43{bottom:888.375000px;}
.yc{bottom:890.895000px;}
.y6e{bottom:899.175000px;}
.y42{bottom:908.175000px;}
.yb{bottom:910.695000px;}
.y6d{bottom:918.615000px;}
.yaa{bottom:918.975000px;}
.yca{bottom:927.615000px;}
.y41{bottom:927.975000px;}
.ya{bottom:930.855000px;}
.ya9{bottom:938.775000px;}
.y40{bottom:947.775000px;}
.y9{bottom:952.485000px;}
.ya8{bottom:958.605000px;}
.y3f{bottom:967.605000px;}
.y8{bottom:975.525000px;}
.ya7{bottom:978.405000px;}
.y3e{bottom:987.405000px;}
.ya6{bottom:998.205000px;}
.y3d{bottom:1007.205000px;}
.y7{bottom:1007.565000px;}
.ya5{bottom:1018.005000px;}
.y3c{bottom:1027.005000px;}
.ya4{bottom:1037.805000px;}
.y3b{bottom:1046.805000px;}
.y5{bottom:1051.845000px;}
.ya3{bottom:1057.605000px;}
.y3a{bottom:1066.605000px;}
.y6c{bottom:1066.965000px;}
.y4{bottom:1082.490000px;}
.y39{bottom:1086.810000px;}
.y38{bottom:1106.610000px;}
.y3{bottom:1113.090000px;}
.y37{bottom:1126.410000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1146.210000px;}
.y97{bottom:1165.650000px;}
.y35{bottom:1166.010000px;}
.y1{bottom:1177.530000px;}
.y34{bottom:1193.010000px;}
.hb{height:2.826563px;}
.h7{height:42.229688px;}
.h8{height:50.520937px;}
.h5{height:59.357813px;}
.h6{height:60.952500px;}
.h9{height:62.163910px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:84.276000px;}
.h2{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:211.035000px;}
.w4{width:580.935000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.560000px;}
.x2{left:53.315987px;}
.x1{left:54.395987px;}
.x5{left:69.515987px;}
.x3{left:74.915987px;}
.x4{left:81.035987px;}
.x6{left:96.515987px;}
.x7{left:190.869000px;}
.x8{left:265.065000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.712000pt;}
.lsc{letter-spacing:-1.696000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-1.008000pt;}
.lse{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.432533pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.397867pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.696000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls15{letter-spacing:9.374720pt;}
.ls14{letter-spacing:36.254720pt;}
.ls12{letter-spacing:61.854720pt;}
.wsa{word-spacing:-53.760000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws3{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.608000pt;}
.ws9{word-spacing:-12.576000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.744000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2257.036800pt;}
._4{margin-left:-1287.947520pt;}
._6{margin-left:-1285.579200pt;}
._5{margin-left:-886.154240pt;}
._7{margin-left:-513.493760pt;}
._8{margin-left:-9.939413pt;}
._a{margin-left:-5.256960pt;}
._c{margin-left:-4.259840pt;}
._b{margin-left:-2.944000pt;}
._0{margin-left:-1.886720pt;}
._2{margin-left:-0.943360pt;}
._1{width:0.943360pt;}
._9{width:2.122240pt;}
._14{width:3.102720pt;}
._f{width:3.993600pt;}
._e{width:5.196800pt;}
._10{width:6.200320pt;}
._11{width:7.805440pt;}
._15{width:9.139200pt;}
._16{width:10.119680pt;}
._17{width:11.159040pt;}
._12{width:12.154880pt;}
._18{width:14.333440pt;}
._13{width:15.239680pt;}
._19{width:16.468480pt;}
._1a{width:17.692160pt;}
._1b{width:19.185920pt;}
._1c{width:20.978347pt;}
._1d{width:22.178133pt;}
._d{width:168.582400pt;}
.fs3{font-size:2.560000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:9.920000pt;}
.ycf{bottom:27.514667pt;}
.ycc{bottom:30.714667pt;}
.yce{bottom:45.114667pt;}
.y6{bottom:53.760000pt;}
.ycd{bottom:62.754667pt;}
.y6b{bottom:84.192000pt;}
.y96{bottom:85.792000pt;}
.y33{bottom:92.192000pt;}
.ya2{bottom:93.792000pt;}
.y6a{bottom:101.792000pt;}
.y95{bottom:103.392000pt;}
.ycb{bottom:109.472000pt;}
.y32{bottom:109.792000pt;}
.ya1{bottom:111.392000pt;}
.yc9{bottom:112.672000pt;}
.y69{bottom:119.392000pt;}
.y94{bottom:120.992000pt;}
.y31{bottom:127.392000pt;}
.ya0{bottom:128.992000pt;}
.yc8{bottom:130.272000pt;}
.y68{bottom:136.986667pt;}
.y93{bottom:138.586667pt;}
.y30{bottom:144.986667pt;}
.y9f{bottom:146.586667pt;}
.yc7{bottom:147.866667pt;}
.y67{bottom:154.586667pt;}
.y92{bottom:156.186667pt;}
.y2f{bottom:162.586667pt;}
.y9e{bottom:164.186667pt;}
.yc6{bottom:165.786667pt;}
.y66{bottom:172.226667pt;}
.y91{bottom:173.826667pt;}
.y2e{bottom:180.546667pt;}
.y9d{bottom:181.826667pt;}
.yc5{bottom:183.106667pt;}
.y65{bottom:189.826667pt;}
.y90{bottom:191.426667pt;}
.y2d{bottom:198.146667pt;}
.y9c{bottom:199.106667pt;}
.yc4{bottom:201.026667pt;}
.y64{bottom:207.426667pt;}
.y8f{bottom:209.026667pt;}
.y2c{bottom:215.746667pt;}
.yc3{bottom:218.626667pt;}
.y63{bottom:224.706667pt;}
.y9b{bottom:225.026667pt;}
.y8e{bottom:226.946667pt;}
.y2b{bottom:233.346667pt;}
.yc2{bottom:236.226667pt;}
.y62{bottom:242.946667pt;}
.y8d{bottom:244.546667pt;}
.y2a{bottom:250.946667pt;}
.yc1{bottom:253.826667pt;}
.y61{bottom:260.226667pt;}
.y9a{bottom:260.546667pt;}
.y8c{bottom:262.146667pt;}
.y29{bottom:268.546667pt;}
.yc0{bottom:271.426667pt;}
.y60{bottom:278.146667pt;}
.y8b{bottom:279.746667pt;}
.y28{bottom:286.173333pt;}
.ybf{bottom:289.053333pt;}
.y5f{bottom:295.773333pt;}
.y8a{bottom:297.373333pt;}
.y27{bottom:303.773333pt;}
.ybe{bottom:306.653333pt;}
.y5e{bottom:313.373333pt;}
.y89{bottom:314.973333pt;}
.y26{bottom:321.373333pt;}
.ybd{bottom:324.253333pt;}
.y5d{bottom:330.973333pt;}
.y88{bottom:332.573333pt;}
.y25{bottom:338.973333pt;}
.ybc{bottom:342.173333pt;}
.y5c{bottom:348.573333pt;}
.y87{bottom:350.173333pt;}
.y24{bottom:356.893333pt;}
.ybb{bottom:359.773333pt;}
.y5b{bottom:366.173333pt;}
.y86{bottom:367.773333pt;}
.y23{bottom:374.493333pt;}
.yba{bottom:377.373333pt;}
.y5a{bottom:383.773333pt;}
.y85{bottom:385.373333pt;}
.y22{bottom:392.093333pt;}
.yb9{bottom:394.973333pt;}
.y59{bottom:401.413333pt;}
.y84{bottom:403.333333pt;}
.y21{bottom:409.733333pt;}
.yb8{bottom:412.613333pt;}
.y99{bottom:419.013333pt;}
.y58{bottom:419.333333pt;}
.y83{bottom:420.933333pt;}
.y20{bottom:427.333333pt;}
.yb7{bottom:430.213333pt;}
.y98{bottom:436.613333pt;}
.y57{bottom:436.933333pt;}
.y82{bottom:438.533333pt;}
.y1f{bottom:444.933333pt;}
.yb6{bottom:447.493333pt;}
.y56{bottom:454.533333pt;}
.y81{bottom:456.133333pt;}
.y1e{bottom:462.533333pt;}
.y55{bottom:472.133333pt;}
.yb5{bottom:473.413333pt;}
.y80{bottom:473.733333pt;}
.y1d{bottom:480.133333pt;}
.y54{bottom:489.733333pt;}
.yb4{bottom:491.013333pt;}
.y7f{bottom:491.333333pt;}
.y1c{bottom:497.733333pt;}
.y53{bottom:507.333333pt;}
.yb3{bottom:508.613333pt;}
.y7e{bottom:508.960000pt;}
.y1b{bottom:515.360000pt;}
.y52{bottom:524.960000pt;}
.y7d{bottom:526.560000pt;}
.y1a{bottom:532.960000pt;}
.y51{bottom:542.560000pt;}
.y7c{bottom:544.160000pt;}
.y19{bottom:550.880000pt;}
.y50{bottom:560.160000pt;}
.y7b{bottom:561.760000pt;}
.y18{bottom:570.400000pt;}
.y4f{bottom:577.760000pt;}
.y7a{bottom:579.360000pt;}
.y4e{bottom:595.680000pt;}
.y17{bottom:596.000000pt;}
.yb2{bottom:596.960000pt;}
.y79{bottom:605.280000pt;}
.y4d{bottom:613.280000pt;}
.y16{bottom:613.600000pt;}
.yb1{bottom:614.560000pt;}
.y78{bottom:622.906667pt;}
.y4c{bottom:630.906667pt;}
.y15{bottom:631.226667pt;}
.yb0{bottom:632.186667pt;}
.y77{bottom:640.506667pt;}
.y4b{bottom:648.506667pt;}
.y14{bottom:648.826667pt;}
.yaf{bottom:649.786667pt;}
.y76{bottom:658.106667pt;}
.y4a{bottom:666.106667pt;}
.y13{bottom:666.426667pt;}
.yae{bottom:667.386667pt;}
.y75{bottom:675.706667pt;}
.y49{bottom:683.706667pt;}
.y12{bottom:684.346667pt;}
.yad{bottom:684.666667pt;}
.y74{bottom:693.306667pt;}
.y48{bottom:701.306667pt;}
.y11{bottom:701.946667pt;}
.y73{bottom:710.906667pt;}
.y47{bottom:718.906667pt;}
.y10{bottom:719.546667pt;}
.y72{bottom:728.506667pt;}
.y46{bottom:736.546667pt;}
.yf{bottom:737.186667pt;}
.y71{bottom:746.146667pt;}
.y45{bottom:754.146667pt;}
.ye{bottom:754.786667pt;}
.yac{bottom:763.746667pt;}
.y70{bottom:764.066667pt;}
.y44{bottom:772.066667pt;}
.yd{bottom:772.386667pt;}
.yab{bottom:781.346667pt;}
.y6f{bottom:781.666667pt;}
.y43{bottom:789.666667pt;}
.yc{bottom:791.906667pt;}
.y6e{bottom:799.266667pt;}
.y42{bottom:807.266667pt;}
.yb{bottom:809.506667pt;}
.y6d{bottom:816.546667pt;}
.yaa{bottom:816.866667pt;}
.yca{bottom:824.546667pt;}
.y41{bottom:824.866667pt;}
.ya{bottom:827.426667pt;}
.ya9{bottom:834.466667pt;}
.y40{bottom:842.466667pt;}
.y9{bottom:846.653333pt;}
.ya8{bottom:852.093333pt;}
.y3f{bottom:860.093333pt;}
.y8{bottom:867.133333pt;}
.ya7{bottom:869.693333pt;}
.y3e{bottom:877.693333pt;}
.ya6{bottom:887.293333pt;}
.y3d{bottom:895.293333pt;}
.y7{bottom:895.613333pt;}
.ya5{bottom:904.893333pt;}
.y3c{bottom:912.893333pt;}
.ya4{bottom:922.493333pt;}
.y3b{bottom:930.493333pt;}
.y5{bottom:934.973333pt;}
.ya3{bottom:940.093333pt;}
.y3a{bottom:948.093333pt;}
.y6c{bottom:948.413333pt;}
.y4{bottom:962.213333pt;}
.y39{bottom:966.053333pt;}
.y38{bottom:983.653333pt;}
.y3{bottom:989.413333pt;}
.y37{bottom:1001.253333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.853333pt;}
.y97{bottom:1036.133333pt;}
.y35{bottom:1036.453333pt;}
.y1{bottom:1046.693333pt;}
.y34{bottom:1060.453333pt;}
.hb{height:2.512500pt;}
.h7{height:37.537500pt;}
.h8{height:44.907500pt;}
.h5{height:52.762500pt;}
.h6{height:54.180000pt;}
.h9{height:55.256809pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:74.912000pt;}
.h2{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.586667pt;}
.w4{width:516.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.720000pt;}
.x2{left:47.391988pt;}
.x1{left:48.351988pt;}
.x5{left:61.791988pt;}
.x3{left:66.591988pt;}
.x4{left:72.031988pt;}
.x6{left:85.791988pt;}
.x7{left:169.661333pt;}
.x8{left:235.613333pt;}
}




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