
    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_cbe55cd0e598110a613779fe.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2fa827b3a46e569030d9a072.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f83941b1badbc4fab16ca853.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_10a328b76b86b76277836f88.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_19a38eaa6d4f25567495e397.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089844;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_98b94495cf5fe7479bbd79c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_be0f17f26236556495018ed5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01de3e2a60be299042ff9d42.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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.444600px;}
.ls18{letter-spacing:-0.438000px;}
.lsb{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.lsd{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.018360px;}
.ls19{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.099600px;}
.ls12{letter-spacing:0.114120px;}
.ls7{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.185520px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:5.853600px;}
.ls17{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-60.120000px;}
.ws8{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.326000px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.208040px;}
.ws6{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.788400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-4.261558px;}
._6{margin-left:-3.246600px;}
._8{margin-left:-2.229000px;}
._0{margin-left:-1.110000px;}
._1{width:1.198284px;}
._2{width:2.934600px;}
._4{width:4.749600px;}
._3{width:5.788680px;}
._5{width:6.905281px;}
._9{width:8.257354px;}
._a{width:9.439526px;}
._d{width:10.820914px;}
._e{width:12.048120px;}
._10{width:14.335800px;}
._f{width:15.409080px;}
._11{width:17.795520px;}
._12{width:19.423920px;}
._c{width:25.226520px;}
._b{width:26.272440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y95{bottom:7.830000px;}
.y9a{bottom:7.860000px;}
.y97{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7a{bottom:114.150000px;}
.y10c{bottom:116.130000px;}
.ye0{bottom:123.330000px;}
.yb8{bottom:126.570000px;}
.y93{bottom:133.590000px;}
.y10b{bottom:133.680000px;}
.y28{bottom:135.030000px;}
.ydf{bottom:140.970000px;}
.y5a{bottom:143.670000px;}
.yb7{bottom:144.120000px;}
.y79{bottom:149.700000px;}
.yde{bottom:158.520000px;}
.y10a{bottom:160.320000px;}
.yb6{bottom:161.760000px;}
.y92{bottom:164.640000px;}
.y27{bottom:172.020000px;}
.y59{bottom:179.310000px;}
.y78{bottom:183.270000px;}
.ydd{bottom:185.070000px;}
.y109{bottom:186.870000px;}
.y26{bottom:189.570000px;}
.y91{bottom:195.690000px;}
.y58{bottom:196.860000px;}
.ydc{bottom:202.710000px;}
.y108{bottom:204.510000px;}
.y25{bottom:207.210000px;}
.y112{bottom:213.510000px;}
.y57{bottom:214.500000px;}
.y24{bottom:224.760000px;}
.y90{bottom:226.740000px;}
.ydb{bottom:229.260000px;}
.y86{bottom:230.160000px;}
.y107{bottom:231.060000px;}
.y56{bottom:232.050000px;}
.y23{bottom:242.400000px;}
.yda{bottom:246.900000px;}
.y106{bottom:248.610000px;}
.y55{bottom:249.600000px;}
.yb5{bottom:249.690000px;}
.y8f{bottom:257.790000px;}
.y22{bottom:259.950000px;}
.y85{bottom:261.210000px;}
.y54{bottom:267.240000px;}
.yd9{bottom:273.450000px;}
.y105{bottom:275.250000px;}
.y53{bottom:284.790000px;}
.y73{bottom:287.670000px;}
.y8e{bottom:288.840000px;}
.yd8{bottom:291.000000px;}
.y84{bottom:292.260000px;}
.y104{bottom:292.800000px;}
.y21{bottom:295.500000px;}
.y52{bottom:302.430000px;}
.yd7{bottom:308.640000px;}
.y111{bottom:310.440000px;}
.y20{bottom:313.140000px;}
.y103{bottom:319.440000px;}
.y51{bottom:319.980000px;}
.y72{bottom:323.310000px;}
.y8d{bottom:327.090000px;}
.y83{bottom:330.420000px;}
.y1f{bottom:330.690000px;}
.yd6{bottom:335.190000px;}
.y102{bottom:336.990000px;}
.y50{bottom:337.530000px;}
.yb4{bottom:337.620000px;}
.y8c{bottom:344.640000px;}
.y71{bottom:346.530000px;}
.y1e{bottom:348.240000px;}
.yd5{bottom:352.830000px;}
.y110{bottom:354.540000px;}
.yb3{bottom:355.170000px;}
.y101{bottom:363.540000px;}
.y82{bottom:363.990000px;}
.y4f{bottom:364.170000px;}
.y1d{bottom:365.880000px;}
.y8a{bottom:367.590000px;}
.yb2{bottom:372.720000px;}
.y8b{bottom:378.210000px;}
.yd4{bottom:379.380000px;}
.y100{bottom:381.180000px;}
.y1c{bottom:383.430000px;}
.yd3{bottom:396.930000px;}
.yff{bottom:398.730000px;}
.y4e{bottom:399.720000px;}
.y1b{bottom:401.070000px;}
.y89{bottom:405.840000px;}
.yb1{bottom:408.360000px;}
.y4d{bottom:417.360000px;}
.y1a{bottom:418.620000px;}
.y88{bottom:423.390000px;}
.yd2{bottom:423.570000px;}
.yfe{bottom:425.370000px;}
.yb0{bottom:425.910000px;}
.y4c{bottom:434.910000px;}
.y19{bottom:436.170000px;}
.yd1{bottom:441.120000px;}
.yfd{bottom:442.920000px;}
.yaf{bottom:443.550000px;}
.y18{bottom:453.810000px;}
.y87{bottom:456.960000px;}
.yfc{bottom:460.470000px;}
.yae{bottom:461.100000px;}
.y4b{bottom:461.460000px;}
.yd0{bottom:467.760000px;}
.y17{bottom:471.390000px;}
.ycf{bottom:485.340000px;}
.y77{bottom:485.970000px;}
.yfb{bottom:487.140000px;}
.y16{bottom:489.030000px;}
.yad{bottom:496.680000px;}
.y4a{bottom:497.130000px;}
.yfa{bottom:504.690000px;}
.y15{bottom:506.580000px;}
.y76{bottom:509.190000px;}
.yce{bottom:511.890000px;}
.y49{bottom:514.680000px;}
.ycd{bottom:529.530000px;}
.yf9{bottom:531.330000px;}
.y48{bottom:532.230000px;}
.yac{bottom:532.320000px;}
.y14{bottom:542.130000px;}
.ycc{bottom:547.080000px;}
.yf8{bottom:548.880000px;}
.y47{bottom:549.870000px;}
.y13{bottom:559.770000px;}
.yf7{bottom:566.430000px;}
.y46{bottom:567.420000px;}
.yab{bottom:567.510000px;}
.ycb{bottom:573.630000px;}
.y12{bottom:577.320000px;}
.yca{bottom:591.270000px;}
.yf6{bottom:593.070000px;}
.y45{bottom:594.060000px;}
.y11{bottom:594.960000px;}
.yaa{bottom:603.060000px;}
.yf5{bottom:610.620000px;}
.yc9{bottom:618.180000px;}
.ya9{bottom:620.610000px;}
.y44{bottom:629.970000px;}
.y10{bottom:630.510000px;}
.yf4{bottom:637.260000px;}
.ya8{bottom:638.250000px;}
.yf{bottom:648.060000px;}
.yf3{bottom:654.810000px;}
.ya7{bottom:655.800000px;}
.ye{bottom:665.700000px;}
.yc8{bottom:666.420000px;}
.y10f{bottom:672.360000px;}
.ya6{bottom:673.350000px;}
.y70{bottom:676.140000px;}
.y43{bottom:678.210000px;}
.yf2{bottom:681.360000px;}
.yc7{bottom:684.060000px;}
.ya5{bottom:690.990000px;}
.y6f{bottom:693.690000px;}
.y81{bottom:693.870000px;}
.y42{bottom:695.760000px;}
.yf1{bottom:699.000000px;}
.yd{bottom:701.250000px;}
.yc6{bottom:710.970000px;}
.y6e{bottom:711.330000px;}
.y41{bottom:713.400000px;}
.yf0{bottom:716.550000px;}
.ya4{bottom:717.900000px;}
.yc{bottom:718.890000px;}
.y6d{bottom:728.880000px;}
.y40{bottom:730.950000px;}
.yef{bottom:743.190000px;}
.yb{bottom:745.800000px;}
.y6c{bottom:746.520000px;}
.yc5{bottom:747.960000px;}
.y3f{bottom:748.590000px;}
.yee{bottom:760.740000px;}
.ya3{bottom:763.530000px;}
.y6b{bottom:764.070000px;}
.y3e{bottom:766.140000px;}
.yc4{bottom:774.870000px;}
.y6a{bottom:781.620000px;}
.y3d{bottom:783.690000px;}
.yed{bottom:787.290000px;}
.ya2{bottom:790.890000px;}
.ya{bottom:794.040000px;}
.y69{bottom:799.260000px;}
.y3c{bottom:801.330000px;}
.yec{bottom:804.930000px;}
.yc3{bottom:811.860000px;}
.y68{bottom:816.810000px;}
.ya1{bottom:818.250000px;}
.y3b{bottom:818.880000px;}
.y75{bottom:820.770000px;}
.yc2{bottom:829.500000px;}
.y9{bottom:829.860000px;}
.yeb{bottom:831.480000px;}
.y67{bottom:834.450000px;}
.y3a{bottom:836.520000px;}
.y74{bottom:843.990000px;}
.ya0{bottom:845.520000px;}
.yea{bottom:849.030000px;}
.y39{bottom:854.070000px;}
.yc1{bottom:856.410000px;}
.y8{bottom:865.860000px;}
.ye9{bottom:866.670000px;}
.y66{bottom:870.000000px;}
.y38{bottom:871.620000px;}
.y9f{bottom:872.880000px;}
.y65{bottom:887.550000px;}
.y37{bottom:889.260000px;}
.ye8{bottom:893.220000px;}
.yc0{bottom:893.760000px;}
.y9e{bottom:900.240000px;}
.y7{bottom:901.860000px;}
.y36{bottom:906.810000px;}
.ye7{bottom:910.860000px;}
.y64{bottom:914.460000px;}
.y6{bottom:923.640000px;}
.y9d{bottom:927.600000px;}
.y10e{bottom:928.410000px;}
.ye6{bottom:937.410000px;}
.y5{bottom:941.640000px;}
.ybf{bottom:942.000000px;}
.y35{bottom:942.450000px;}
.y9c{bottom:954.870000px;}
.ye5{bottom:954.960000px;}
.ybe{bottom:959.550000px;}
.y34{bottom:960.000000px;}
.y63{bottom:962.700000px;}
.y10d{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.ybd{bottom:977.190000px;}
.y33{bottom:977.550000px;}
.y62{bottom:981.150000px;}
.ye4{bottom:981.600000px;}
.y9b{bottom:982.230000px;}
.ybc{bottom:994.740000px;}
.y32{bottom:995.190000px;}
.ye3{bottom:999.150000px;}
.y61{bottom:1007.790000px;}
.y99{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.ybb{bottom:1012.320000px;}
.y31{bottom:1012.770000px;}
.ye2{bottom:1016.820000px;}
.yba{bottom:1029.960000px;}
.y30{bottom:1030.320000px;}
.ye1{bottom:1034.370000px;}
.y80{bottom:1034.820000px;}
.y98{bottom:1036.890000px;}
.y60{bottom:1043.370000px;}
.y2f{bottom:1047.960000px;}
.y7f{bottom:1052.370000px;}
.yb9{bottom:1056.870000px;}
.y5f{bottom:1060.920000px;}
.y96{bottom:1064.250000px;}
.y2e{bottom:1065.510000px;}
.y7e{bottom:1069.920000px;}
.y5e{bottom:1078.560000px;}
.y2d{bottom:1083.150000px;}
.y7d{bottom:1087.560000px;}
.y94{bottom:1091.610000px;}
.y5d{bottom:1096.110000px;}
.y2c{bottom:1100.700000px;}
.y7c{bottom:1105.110000px;}
.y5c{bottom:1113.750000px;}
.y7b{bottom:1122.750000px;}
.y2b{bottom:1127.610000px;}
.y5b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:26.550000px;}
.h10{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.221191px;}
.h7{height:50.902383px;}
.h8{height:52.399512px;}
.h9{height:55.779258px;}
.h5{height:57.419824px;}
.ha{height:60.960938px;}
.h11{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:73.108301px;}
.hd{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:69.120000px;}
.w8{width:71.580000px;}
.w9{width:86.580000px;}
.w6{width:123.750000px;}
.wa{width:129.330000px;}
.w7{width:132.480000px;}
.w5{width:138.270000px;}
.w3{width:262.740000px;}
.w4{width:492.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:71.729987px;}
.x11{left:81.809987px;}
.xf{left:84.779987px;}
.x1a{left:111.239987px;}
.xb{left:144.449987px;}
.x5{left:160.919987px;}
.x7{left:164.009987px;}
.x9{left:185.429987px;}
.x2{left:191.459987px;}
.x15{left:207.750000px;}
.x14{left:332.310000px;}
.x10{left:418.349987px;}
.x12{left:423.839987px;}
.x16{left:465.600000px;}
.x17{left:537.900000px;}
.x18{left:625.200000px;}
.x6{left:633.389987px;}
.x4{left:644.639987px;}
.x8{left:648.059987px;}
.xa{left:652.559987px;}
.x19{left:755.340000px;}
.x3{left:800.339987px;}
.xc{left:802.139987px;}
.xe{left:816.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.395200pt;}
.ls18{letter-spacing:-0.389333pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.lsd{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.016320pt;}
.ls19{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.088533pt;}
.ls12{letter-spacing:0.101440pt;}
.ls7{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.164907pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:5.203200pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.wsc{word-spacing:-53.440000pt;}
.ws8{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.845333pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.740480pt;}
.ws6{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.367467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-3.788051pt;}
._6{margin-left:-2.885867pt;}
._8{margin-left:-1.981334pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.065141pt;}
._2{width:2.608533pt;}
._4{width:4.221867pt;}
._3{width:5.145493pt;}
._5{width:6.138028pt;}
._9{width:7.339870pt;}
._a{width:8.390690pt;}
._d{width:9.618590pt;}
._e{width:10.709440pt;}
._10{width:12.742933pt;}
._f{width:13.696960pt;}
._11{width:15.818240pt;}
._12{width:17.265707pt;}
._c{width:22.423573pt;}
._b{width:23.353280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:6.960000pt;}
.y9a{bottom:6.986667pt;}
.y97{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7a{bottom:101.466667pt;}
.y10c{bottom:103.226667pt;}
.ye0{bottom:109.626667pt;}
.yb8{bottom:112.506667pt;}
.y93{bottom:118.746667pt;}
.y10b{bottom:118.826667pt;}
.y28{bottom:120.026667pt;}
.ydf{bottom:125.306667pt;}
.y5a{bottom:127.706667pt;}
.yb7{bottom:128.106667pt;}
.y79{bottom:133.066667pt;}
.yde{bottom:140.906667pt;}
.y10a{bottom:142.506667pt;}
.yb6{bottom:143.786667pt;}
.y92{bottom:146.346667pt;}
.y27{bottom:152.906667pt;}
.y59{bottom:159.386667pt;}
.y78{bottom:162.906667pt;}
.ydd{bottom:164.506667pt;}
.y109{bottom:166.106667pt;}
.y26{bottom:168.506667pt;}
.y91{bottom:173.946667pt;}
.y58{bottom:174.986667pt;}
.ydc{bottom:180.186667pt;}
.y108{bottom:181.786667pt;}
.y25{bottom:184.186667pt;}
.y112{bottom:189.786667pt;}
.y57{bottom:190.666667pt;}
.y24{bottom:199.786667pt;}
.y90{bottom:201.546667pt;}
.ydb{bottom:203.786667pt;}
.y86{bottom:204.586667pt;}
.y107{bottom:205.386667pt;}
.y56{bottom:206.266667pt;}
.y23{bottom:215.466667pt;}
.yda{bottom:219.466667pt;}
.y106{bottom:220.986667pt;}
.y55{bottom:221.866667pt;}
.yb5{bottom:221.946667pt;}
.y8f{bottom:229.146667pt;}
.y22{bottom:231.066667pt;}
.y85{bottom:232.186667pt;}
.y54{bottom:237.546667pt;}
.yd9{bottom:243.066667pt;}
.y105{bottom:244.666667pt;}
.y53{bottom:253.146667pt;}
.y73{bottom:255.706667pt;}
.y8e{bottom:256.746667pt;}
.yd8{bottom:258.666667pt;}
.y84{bottom:259.786667pt;}
.y104{bottom:260.266667pt;}
.y21{bottom:262.666667pt;}
.y52{bottom:268.826667pt;}
.yd7{bottom:274.346667pt;}
.y111{bottom:275.946667pt;}
.y20{bottom:278.346667pt;}
.y103{bottom:283.946667pt;}
.y51{bottom:284.426667pt;}
.y72{bottom:287.386667pt;}
.y8d{bottom:290.746667pt;}
.y83{bottom:293.706667pt;}
.y1f{bottom:293.946667pt;}
.yd6{bottom:297.946667pt;}
.y102{bottom:299.546667pt;}
.y50{bottom:300.026667pt;}
.yb4{bottom:300.106667pt;}
.y8c{bottom:306.346667pt;}
.y71{bottom:308.026667pt;}
.y1e{bottom:309.546667pt;}
.yd5{bottom:313.626667pt;}
.y110{bottom:315.146667pt;}
.yb3{bottom:315.706667pt;}
.y101{bottom:323.146667pt;}
.y82{bottom:323.546667pt;}
.y4f{bottom:323.706667pt;}
.y1d{bottom:325.226667pt;}
.y8a{bottom:326.746667pt;}
.yb2{bottom:331.306667pt;}
.y8b{bottom:336.186667pt;}
.yd4{bottom:337.226667pt;}
.y100{bottom:338.826667pt;}
.y1c{bottom:340.826667pt;}
.yd3{bottom:352.826667pt;}
.yff{bottom:354.426667pt;}
.y4e{bottom:355.306667pt;}
.y1b{bottom:356.506667pt;}
.y89{bottom:360.746667pt;}
.yb1{bottom:362.986667pt;}
.y4d{bottom:370.986667pt;}
.y1a{bottom:372.106667pt;}
.y88{bottom:376.346667pt;}
.yd2{bottom:376.506667pt;}
.yfe{bottom:378.106667pt;}
.yb0{bottom:378.586667pt;}
.y4c{bottom:386.586667pt;}
.y19{bottom:387.706667pt;}
.yd1{bottom:392.106667pt;}
.yfd{bottom:393.706667pt;}
.yaf{bottom:394.266667pt;}
.y18{bottom:403.386667pt;}
.y87{bottom:406.186667pt;}
.yfc{bottom:409.306667pt;}
.yae{bottom:409.866667pt;}
.y4b{bottom:410.186667pt;}
.yd0{bottom:415.786667pt;}
.y17{bottom:419.013333pt;}
.ycf{bottom:431.413333pt;}
.y77{bottom:431.973333pt;}
.yfb{bottom:433.013333pt;}
.y16{bottom:434.693333pt;}
.yad{bottom:441.493333pt;}
.y4a{bottom:441.893333pt;}
.yfa{bottom:448.613333pt;}
.y15{bottom:450.293333pt;}
.y76{bottom:452.613333pt;}
.yce{bottom:455.013333pt;}
.y49{bottom:457.493333pt;}
.ycd{bottom:470.693333pt;}
.yf9{bottom:472.293333pt;}
.y48{bottom:473.093333pt;}
.yac{bottom:473.173333pt;}
.y14{bottom:481.893333pt;}
.ycc{bottom:486.293333pt;}
.yf8{bottom:487.893333pt;}
.y47{bottom:488.773333pt;}
.y13{bottom:497.573333pt;}
.yf7{bottom:503.493333pt;}
.y46{bottom:504.373333pt;}
.yab{bottom:504.453333pt;}
.ycb{bottom:509.893333pt;}
.y12{bottom:513.173333pt;}
.yca{bottom:525.573333pt;}
.yf6{bottom:527.173333pt;}
.y45{bottom:528.053333pt;}
.y11{bottom:528.853333pt;}
.yaa{bottom:536.053333pt;}
.yf5{bottom:542.773333pt;}
.yc9{bottom:549.493333pt;}
.ya9{bottom:551.653333pt;}
.y44{bottom:559.973333pt;}
.y10{bottom:560.453333pt;}
.yf4{bottom:566.453333pt;}
.ya8{bottom:567.333333pt;}
.yf{bottom:576.053333pt;}
.yf3{bottom:582.053333pt;}
.ya7{bottom:582.933333pt;}
.ye{bottom:591.733333pt;}
.yc8{bottom:592.373333pt;}
.y10f{bottom:597.653333pt;}
.ya6{bottom:598.533333pt;}
.y70{bottom:601.013333pt;}
.y43{bottom:602.853333pt;}
.yf2{bottom:605.653333pt;}
.yc7{bottom:608.053333pt;}
.ya5{bottom:614.213333pt;}
.y6f{bottom:616.613333pt;}
.y81{bottom:616.773333pt;}
.y42{bottom:618.453333pt;}
.yf1{bottom:621.333333pt;}
.yd{bottom:623.333333pt;}
.yc6{bottom:631.973333pt;}
.y6e{bottom:632.293333pt;}
.y41{bottom:634.133333pt;}
.yf0{bottom:636.933333pt;}
.ya4{bottom:638.133333pt;}
.yc{bottom:639.013333pt;}
.y6d{bottom:647.893333pt;}
.y40{bottom:649.733333pt;}
.yef{bottom:660.613333pt;}
.yb{bottom:662.933333pt;}
.y6c{bottom:663.573333pt;}
.yc5{bottom:664.853333pt;}
.y3f{bottom:665.413333pt;}
.yee{bottom:676.213333pt;}
.ya3{bottom:678.693333pt;}
.y6b{bottom:679.173333pt;}
.y3e{bottom:681.013333pt;}
.yc4{bottom:688.773333pt;}
.y6a{bottom:694.773333pt;}
.y3d{bottom:696.613333pt;}
.yed{bottom:699.813333pt;}
.ya2{bottom:703.013333pt;}
.ya{bottom:705.813333pt;}
.y69{bottom:710.453333pt;}
.y3c{bottom:712.293333pt;}
.yec{bottom:715.493333pt;}
.yc3{bottom:721.653333pt;}
.y68{bottom:726.053333pt;}
.ya1{bottom:727.333333pt;}
.y3b{bottom:727.893333pt;}
.y75{bottom:729.573333pt;}
.yc2{bottom:737.333333pt;}
.y9{bottom:737.653333pt;}
.yeb{bottom:739.093333pt;}
.y67{bottom:741.733333pt;}
.y3a{bottom:743.573333pt;}
.y74{bottom:750.213333pt;}
.ya0{bottom:751.573333pt;}
.yea{bottom:754.693333pt;}
.y39{bottom:759.173333pt;}
.yc1{bottom:761.253333pt;}
.y8{bottom:769.653333pt;}
.ye9{bottom:770.373333pt;}
.y66{bottom:773.333333pt;}
.y38{bottom:774.773333pt;}
.y9f{bottom:775.893333pt;}
.y65{bottom:788.933333pt;}
.y37{bottom:790.453333pt;}
.ye8{bottom:793.973333pt;}
.yc0{bottom:794.453333pt;}
.y9e{bottom:800.213333pt;}
.y7{bottom:801.653333pt;}
.y36{bottom:806.053333pt;}
.ye7{bottom:809.653333pt;}
.y64{bottom:812.853333pt;}
.y6{bottom:821.013333pt;}
.y9d{bottom:824.533333pt;}
.y10e{bottom:825.253333pt;}
.ye6{bottom:833.253333pt;}
.y5{bottom:837.013333pt;}
.ybf{bottom:837.333333pt;}
.y35{bottom:837.733333pt;}
.y9c{bottom:848.773333pt;}
.ye5{bottom:848.853333pt;}
.ybe{bottom:852.933333pt;}
.y34{bottom:853.333333pt;}
.y63{bottom:855.733333pt;}
.y10d{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.ybd{bottom:868.613333pt;}
.y33{bottom:868.933333pt;}
.y62{bottom:872.133333pt;}
.ye4{bottom:872.533333pt;}
.y9b{bottom:873.093333pt;}
.ybc{bottom:884.213333pt;}
.y32{bottom:884.613333pt;}
.ye3{bottom:888.133333pt;}
.y61{bottom:895.813333pt;}
.y99{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.ybb{bottom:899.840000pt;}
.y31{bottom:900.240000pt;}
.ye2{bottom:903.840000pt;}
.yba{bottom:915.520000pt;}
.y30{bottom:915.840000pt;}
.ye1{bottom:919.440000pt;}
.y80{bottom:919.840000pt;}
.y98{bottom:921.680000pt;}
.y60{bottom:927.440000pt;}
.y2f{bottom:931.520000pt;}
.y7f{bottom:935.440000pt;}
.yb9{bottom:939.440000pt;}
.y5f{bottom:943.040000pt;}
.y96{bottom:946.000000pt;}
.y2e{bottom:947.120000pt;}
.y7e{bottom:951.040000pt;}
.y5e{bottom:958.720000pt;}
.y2d{bottom:962.800000pt;}
.y7d{bottom:966.720000pt;}
.y94{bottom:970.320000pt;}
.y5d{bottom:974.320000pt;}
.y2c{bottom:978.400000pt;}
.y7c{bottom:982.320000pt;}
.y5c{bottom:990.000000pt;}
.y7b{bottom:998.000000pt;}
.y2b{bottom:1002.320000pt;}
.y5b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h10{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.863281pt;}
.h7{height:45.246562pt;}
.h8{height:46.577344pt;}
.h9{height:49.581562pt;}
.h5{height:51.039844pt;}
.ha{height:54.187500pt;}
.h11{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.985156pt;}
.hd{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:61.440000pt;}
.w8{width:63.626667pt;}
.w9{width:76.960000pt;}
.w6{width:110.000000pt;}
.wa{width:114.960000pt;}
.w7{width:117.760000pt;}
.w5{width:122.906667pt;}
.w3{width:233.546667pt;}
.w4{width:437.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:63.759988pt;}
.x11{left:72.719988pt;}
.xf{left:75.359988pt;}
.x1a{left:98.879988pt;}
.xb{left:128.399988pt;}
.x5{left:143.039988pt;}
.x7{left:145.786655pt;}
.x9{left:164.826655pt;}
.x2{left:170.186655pt;}
.x15{left:184.666667pt;}
.x14{left:295.386667pt;}
.x10{left:371.866655pt;}
.x12{left:376.746655pt;}
.x16{left:413.866667pt;}
.x17{left:478.133333pt;}
.x18{left:555.733333pt;}
.x6{left:563.013322pt;}
.x4{left:573.013322pt;}
.x8{left:576.053322pt;}
.xa{left:580.053322pt;}
.x19{left:671.413333pt;}
.x3{left:711.413322pt;}
.xc{left:713.013322pt;}
.xe{left:726.053322pt;}
}




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