
    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_6bfa1b426702dd750594e6f1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_90e57585587842ea08d204f8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24fb26fda891391840ca6c16.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_33f4e9f90fab189cbef7db00.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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);}
.v2{vertical-align:-77.736000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.566400px;}
.ls15{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls8{letter-spacing:25.344000px;}
.ls7{letter-spacing:25.488000px;}
.ls0{letter-spacing:26.064000px;}
.lsd{letter-spacing:41.706720px;}
.lsc{letter-spacing:44.586720px;}
.lse{letter-spacing:66.960000px;}
.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;}
}
.ws5{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws8{word-spacing:-15.300000px;}
.wse{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.373600px;}
.ws1{word-spacing:-12.329400px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-5.112000px;}
._0{margin-left:-3.168000px;}
._1{margin-left:-1.440000px;}
._3{width:1.452000px;}
._1d{width:2.508000px;}
._24{width:4.104000px;}
._20{width:5.256000px;}
._6{width:6.408000px;}
._7{width:7.560000px;}
._f{width:8.640000px;}
._1f{width:9.996000px;}
._e{width:11.160000px;}
._17{width:12.312000px;}
._21{width:13.536000px;}
._16{width:14.544000px;}
._1b{width:15.744000px;}
._12{width:16.848000px;}
._2e{width:18.525600px;}
._10{width:19.656000px;}
._c{width:20.664000px;}
._1c{width:21.672000px;}
._b{width:22.824000px;}
._a{width:24.264000px;}
._25{width:25.836000px;}
._15{width:27.216000px;}
._d{width:28.656000px;}
._18{width:29.808000px;}
._13{width:30.816000px;}
._8{width:31.968000px;}
._9{width:33.312000px;}
._22{width:35.280000px;}
._23{width:36.432000px;}
._28{width:38.220000px;}
._26{width:40.104000px;}
._2{width:41.688000px;}
._4{width:44.136000px;}
._5{width:45.360000px;}
._11{width:46.512000px;}
._2c{width:47.808000px;}
._27{width:49.176000px;}
._19{width:51.408000px;}
._1a{width:52.416000px;}
._2b{width:58.752000px;}
._2d{width:60.120000px;}
._29{width:68.472000px;}
._2a{width:69.912000px;}
._14{width:78.696000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.780000px;}
.yb0{bottom:3.960000px;}
.yae{bottom:14.940000px;}
.y34{bottom:42.840000px;}
.y33{bottom:62.280000px;}
.ybc{bottom:65.016000px;}
.y29{bottom:66.240000px;}
.y1d{bottom:66.636000px;}
.yac{bottom:73.476000px;}
.yc8{bottom:78.696000px;}
.y32{bottom:81.720000px;}
.ybb{bottom:84.456000px;}
.y89{bottom:84.636000px;}
.y1c{bottom:86.076000px;}
.ydd{bottom:91.476000px;}
.yab{bottom:92.916000px;}
.yc1{bottom:93.456000px;}
.y28{bottom:96.840000px;}
.yc7{bottom:98.316000px;}
.y31{bottom:101.340000px;}
.y7a{bottom:102.816000px;}
.yba{bottom:103.896000px;}
.y1b{bottom:105.696000px;}
.ydc{bottom:108.036000px;}
.yaa{bottom:112.536000px;}
.yc0{bottom:112.896000px;}
.y27{bottom:117.180000px;}
.yc6{bottom:117.756000px;}
.y30{bottom:120.780000px;}
.y79{bottom:122.436000px;}
.yb9{bottom:123.516000px;}
.ydb{bottom:124.416000px;}
.y1a{bottom:125.136000px;}
.ya9{bottom:131.976000px;}
.ybf{bottom:132.516000px;}
.yc5{bottom:133.416000px;}
.y2f{bottom:140.220000px;}
.yda{bottom:140.976000px;}
.y78{bottom:141.876000px;}
.y19{bottom:144.576000px;}
.y26{bottom:147.780000px;}
.ya8{bottom:151.410000px;}
.ybe{bottom:151.950000px;}
.yc4{bottom:152.850000px;}
.yd9{bottom:157.530000px;}
.y2e{bottom:159.840000px;}
.y77{bottom:161.310000px;}
.yb8{bottom:162.390000px;}
.y6a{bottom:162.570000px;}
.y18{bottom:164.190000px;}
.y25{bottom:168.120000px;}
.ya7{bottom:171.030000px;}
.ybd{bottom:171.390000px;}
.yd8{bottom:173.910000px;}
.y2d{bottom:179.280000px;}
.y76{bottom:180.930000px;}
.y69{bottom:182.010000px;}
.y17{bottom:183.630000px;}
.ya6{bottom:190.470000px;}
.yb7{bottom:191.010000px;}
.y24{bottom:198.720000px;}
.y75{bottom:200.370000px;}
.y68{bottom:201.630000px;}
.y16{bottom:203.070000px;}
.yd7{bottom:207.030000px;}
.ya5{bottom:209.910000px;}
.yb6{bottom:210.450000px;}
.y2c{bottom:218.385000px;}
.y23{bottom:219.240000px;}
.y74{bottom:219.810000px;}
.y67{bottom:221.070000px;}
.y15{bottom:222.690000px;}
.yd6{bottom:223.410000px;}
.ya4{bottom:229.530000px;}
.yb5{bottom:229.890000px;}
.y2b{bottom:237.825000px;}
.y73{bottom:239.430000px;}
.yd5{bottom:239.970000px;}
.y66{bottom:240.510000px;}
.y14{bottom:242.130000px;}
.y22{bottom:243.210000px;}
.ya3{bottom:248.970000px;}
.yb4{bottom:249.510000px;}
.yd4{bottom:256.530000px;}
.y72{bottom:258.870000px;}
.y65{bottom:260.130000px;}
.y13{bottom:261.570000px;}
.yb2{bottom:265.170000px;}
.y21{bottom:267.150000px;}
.ya2{bottom:268.410000px;}
.yd3{bottom:272.910000px;}
.y71{bottom:278.310000px;}
.y64{bottom:279.570000px;}
.y12{bottom:281.190000px;}
.yb1{bottom:284.655000px;}
.ya1{bottom:288.075000px;}
.yd2{bottom:289.515000px;}
.y20{bottom:291.270000px;}
.y70{bottom:297.975000px;}
.y63{bottom:299.055000px;}
.y11{bottom:300.675000px;}
.yd1{bottom:306.075000px;}
.ya0{bottom:307.515000px;}
.y6f{bottom:317.415000px;}
.y62{bottom:318.675000px;}
.y10{bottom:320.115000px;}
.yd0{bottom:322.455000px;}
.y9f{bottom:326.955000px;}
.y61{bottom:338.115000px;}
.ycf{bottom:339.015000px;}
.yf{bottom:339.735000px;}
.y9e{bottom:346.575000px;}
.yce{bottom:355.575000px;}
.y6e{bottom:356.295000px;}
.y60{bottom:357.555000px;}
.ye{bottom:359.175000px;}
.y9d{bottom:366.015000px;}
.ycd{bottom:371.955000px;}
.y5f{bottom:377.175000px;}
.yd{bottom:378.615000px;}
.y9c{bottom:385.455000px;}
.ycc{bottom:388.515000px;}
.y5e{bottom:396.615000px;}
.yc{bottom:398.235000px;}
.y9b{bottom:405.075000px;}
.y6d{bottom:414.975000px;}
.y5d{bottom:416.055000px;}
.yb{bottom:417.675000px;}
.ycb{bottom:421.455000px;}
.y9a{bottom:424.515000px;}
.y5c{bottom:435.675000px;}
.ya{bottom:437.115000px;}
.yca{bottom:438.015000px;}
.y99{bottom:443.955000px;}
.y6c{bottom:445.935000px;}
.y5b{bottom:455.115000px;}
.y9{bottom:456.735000px;}
.y98{bottom:463.575000px;}
.y5a{bottom:474.555000px;}
.y8{bottom:476.175000px;}
.y88{bottom:477.975000px;}
.y97{bottom:483.015000px;}
.y59{bottom:494.175000px;}
.y7{bottom:495.615000px;}
.yc3{bottom:497.055000px;}
.y87{bottom:497.415000px;}
.y96{bottom:502.455000px;}
.y58{bottom:513.615000px;}
.y6{bottom:515.235000px;}
.yc2{bottom:516.675000px;}
.y95{bottom:522.075000px;}
.y86{bottom:528.555000px;}
.y57{bottom:533.055000px;}
.y5{bottom:534.675000px;}
.y94{bottom:541.515000px;}
.y56{bottom:552.675000px;}
.y4{bottom:554.115000px;}
.y93{bottom:560.955000px;}
.y55{bottom:572.145000px;}
.y3{bottom:573.765000px;}
.y92{bottom:580.605000px;}
.y54{bottom:591.585000px;}
.y2{bottom:593.205000px;}
.y91{bottom:600.045000px;}
.yc9{bottom:611.025000px;}
.y53{bottom:611.205000px;}
.y1e{bottom:612.645000px;}
.y90{bottom:619.485000px;}
.yaf{bottom:621.465000px;}
.y52{bottom:630.645000px;}
.y1{bottom:632.265000px;}
.y8f{bottom:639.105000px;}
.yad{bottom:641.085000px;}
.y2a{bottom:647.925000px;}
.y51{bottom:650.085000px;}
.y8e{bottom:667.545000px;}
.y50{bottom:669.705000px;}
.y4f{bottom:689.145000px;}
.y4e{bottom:708.585000px;}
.y8d{bottom:717.045000px;}
.y4d{bottom:728.205000px;}
.y4c{bottom:747.645000px;}
.y4b{bottom:767.085000px;}
.y8c{bottom:775.545000px;}
.y4a{bottom:786.705000px;}
.y8b{bottom:794.985000px;}
.y49{bottom:806.145000px;}
.y48{bottom:825.585000px;}
.y8a{bottom:828.825000px;}
.y47{bottom:845.205000px;}
.y46{bottom:864.690000px;}
.y45{bottom:884.130000px;}
.y1f{bottom:901.410000px;}
.y44{bottom:903.750000px;}
.y43{bottom:923.190000px;}
.y42{bottom:942.630000px;}
.y41{bottom:962.250000px;}
.y85{bottom:971.610000px;}
.y40{bottom:981.690000px;}
.y84{bottom:992.130000px;}
.y3f{bottom:1001.130000px;}
.y83{bottom:1011.750000px;}
.ye9{bottom:1014.630000px;}
.y3e{bottom:1020.750000px;}
.y82{bottom:1031.190000px;}
.ye8{bottom:1033.530000px;}
.y3d{bottom:1040.190000px;}
.ye7{bottom:1050.090000px;}
.y81{bottom:1050.630000px;}
.y3c{bottom:1059.630000px;}
.ye6{bottom:1066.650000px;}
.y80{bottom:1070.250000px;}
.y3b{bottom:1079.250000px;}
.ye5{bottom:1083.030000px;}
.y7f{bottom:1089.690000px;}
.y3a{bottom:1098.690000px;}
.ye4{bottom:1099.590000px;}
.y7e{bottom:1109.130000px;}
.ye3{bottom:1116.150000px;}
.y39{bottom:1118.130000px;}
.y7d{bottom:1128.750000px;}
.ye2{bottom:1132.560000px;}
.y38{bottom:1137.780000px;}
.y7c{bottom:1148.220000px;}
.ye1{bottom:1149.120000px;}
.y37{bottom:1157.220000px;}
.ye0{bottom:1165.680000px;}
.y7b{bottom:1167.660000px;}
.y36{bottom:1176.660000px;}
.ydf{bottom:1182.060000px;}
.y6b{bottom:1196.100000px;}
.y35{bottom:1196.280000px;}
.yde{bottom:1198.620000px;}
.h15{height:19.440000px;}
.h11{height:19.476000px;}
.hf{height:19.620000px;}
.h13{height:50.510039px;}
.hb{height:52.066406px;}
.hd{height:58.651172px;}
.hc{height:60.855469px;}
.h10{height:61.423863px;}
.h9{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:74.004654px;}
.h5{height:74.680922px;}
.h4{height:74.704922px;}
.h8{height:82.676953px;}
.h7{height:105.996094px;}
.ha{height:253.470000px;}
.h6{height:310.530000px;}
.he{height:336.810000px;}
.h14{height:344.190000px;}
.h12{height:344.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:397.515000px;}
.w5{width:397.695000px;}
.w3{width:816.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.620000px;}
.x5{left:38.340000px;}
.x1{left:48.959987px;}
.x9{left:60.479987px;}
.x2{left:70.199987px;}
.xf{left:195.870000px;}
.x10{left:203.610000px;}
.xb{left:250.949987px;}
.xd{left:390.675000px;}
.xa{left:411.194987px;}
.xe{left:446.475000px;}
.x11{left:457.274987px;}
.x3{left:461.414987px;}
.xc{left:472.934987px;}
.x4{left:482.654987px;}
.x7{left:515.444987px;}
.x8{left:823.649987px;}
@media print{
.v2{vertical-align:-69.098667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.503467pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls8{letter-spacing:22.528000pt;}
.ls7{letter-spacing:22.656000pt;}
.ls0{letter-spacing:23.168000pt;}
.lsd{letter-spacing:37.072640pt;}
.lsc{letter-spacing:39.632640pt;}
.lse{letter-spacing:59.520000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.776533pt;}
.ws1{word-spacing:-10.959467pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-4.544000pt;}
._0{margin-left:-2.816000pt;}
._1{margin-left:-1.280000pt;}
._3{width:1.290667pt;}
._1d{width:2.229333pt;}
._24{width:3.648000pt;}
._20{width:4.672000pt;}
._6{width:5.696000pt;}
._7{width:6.720000pt;}
._f{width:7.680000pt;}
._1f{width:8.885333pt;}
._e{width:9.920000pt;}
._17{width:10.944000pt;}
._21{width:12.032000pt;}
._16{width:12.928000pt;}
._1b{width:13.994667pt;}
._12{width:14.976000pt;}
._2e{width:16.467200pt;}
._10{width:17.472000pt;}
._c{width:18.368000pt;}
._1c{width:19.264000pt;}
._b{width:20.288000pt;}
._a{width:21.568000pt;}
._25{width:22.965333pt;}
._15{width:24.192000pt;}
._d{width:25.472000pt;}
._18{width:26.496000pt;}
._13{width:27.392000pt;}
._8{width:28.416000pt;}
._9{width:29.610667pt;}
._22{width:31.360000pt;}
._23{width:32.384000pt;}
._28{width:33.973333pt;}
._26{width:35.648000pt;}
._2{width:37.056000pt;}
._4{width:39.232000pt;}
._5{width:40.320000pt;}
._11{width:41.344000pt;}
._2c{width:42.496000pt;}
._27{width:43.712000pt;}
._19{width:45.696000pt;}
._1a{width:46.592000pt;}
._2b{width:52.224000pt;}
._2d{width:53.440000pt;}
._29{width:60.864000pt;}
._2a{width:62.144000pt;}
._14{width:69.952000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:3.360000pt;}
.yb0{bottom:3.520000pt;}
.yae{bottom:13.280000pt;}
.y34{bottom:38.080000pt;}
.y33{bottom:55.360000pt;}
.ybc{bottom:57.792000pt;}
.y29{bottom:58.880000pt;}
.y1d{bottom:59.232000pt;}
.yac{bottom:65.312000pt;}
.yc8{bottom:69.952000pt;}
.y32{bottom:72.640000pt;}
.ybb{bottom:75.072000pt;}
.y89{bottom:75.232000pt;}
.y1c{bottom:76.512000pt;}
.ydd{bottom:81.312000pt;}
.yab{bottom:82.592000pt;}
.yc1{bottom:83.072000pt;}
.y28{bottom:86.080000pt;}
.yc7{bottom:87.392000pt;}
.y31{bottom:90.080000pt;}
.y7a{bottom:91.392000pt;}
.yba{bottom:92.352000pt;}
.y1b{bottom:93.952000pt;}
.ydc{bottom:96.032000pt;}
.yaa{bottom:100.032000pt;}
.yc0{bottom:100.352000pt;}
.y27{bottom:104.160000pt;}
.yc6{bottom:104.672000pt;}
.y30{bottom:107.360000pt;}
.y79{bottom:108.832000pt;}
.yb9{bottom:109.792000pt;}
.ydb{bottom:110.592000pt;}
.y1a{bottom:111.232000pt;}
.ya9{bottom:117.312000pt;}
.ybf{bottom:117.792000pt;}
.yc5{bottom:118.592000pt;}
.y2f{bottom:124.640000pt;}
.yda{bottom:125.312000pt;}
.y78{bottom:126.112000pt;}
.y19{bottom:128.512000pt;}
.y26{bottom:131.360000pt;}
.ya8{bottom:134.586667pt;}
.ybe{bottom:135.066667pt;}
.yc4{bottom:135.866667pt;}
.yd9{bottom:140.026667pt;}
.y2e{bottom:142.080000pt;}
.y77{bottom:143.386667pt;}
.yb8{bottom:144.346667pt;}
.y6a{bottom:144.506667pt;}
.y18{bottom:145.946667pt;}
.y25{bottom:149.440000pt;}
.ya7{bottom:152.026667pt;}
.ybd{bottom:152.346667pt;}
.yd8{bottom:154.586667pt;}
.y2d{bottom:159.360000pt;}
.y76{bottom:160.826667pt;}
.y69{bottom:161.786667pt;}
.y17{bottom:163.226667pt;}
.ya6{bottom:169.306667pt;}
.yb7{bottom:169.786667pt;}
.y24{bottom:176.640000pt;}
.y75{bottom:178.106667pt;}
.y68{bottom:179.226667pt;}
.y16{bottom:180.506667pt;}
.yd7{bottom:184.026667pt;}
.ya5{bottom:186.586667pt;}
.yb6{bottom:187.066667pt;}
.y2c{bottom:194.120000pt;}
.y23{bottom:194.880000pt;}
.y74{bottom:195.386667pt;}
.y67{bottom:196.506667pt;}
.y15{bottom:197.946667pt;}
.yd6{bottom:198.586667pt;}
.ya4{bottom:204.026667pt;}
.yb5{bottom:204.346667pt;}
.y2b{bottom:211.400000pt;}
.y73{bottom:212.826667pt;}
.yd5{bottom:213.306667pt;}
.y66{bottom:213.786667pt;}
.y14{bottom:215.226667pt;}
.y22{bottom:216.186667pt;}
.ya3{bottom:221.306667pt;}
.yb4{bottom:221.786667pt;}
.yd4{bottom:228.026667pt;}
.y72{bottom:230.106667pt;}
.y65{bottom:231.226667pt;}
.y13{bottom:232.506667pt;}
.yb2{bottom:235.706667pt;}
.y21{bottom:237.466667pt;}
.ya2{bottom:238.586667pt;}
.yd3{bottom:242.586667pt;}
.y71{bottom:247.386667pt;}
.y64{bottom:248.506667pt;}
.y12{bottom:249.946667pt;}
.yb1{bottom:253.026667pt;}
.ya1{bottom:256.066667pt;}
.yd2{bottom:257.346667pt;}
.y20{bottom:258.906667pt;}
.y70{bottom:264.866667pt;}
.y63{bottom:265.826667pt;}
.y11{bottom:267.266667pt;}
.yd1{bottom:272.066667pt;}
.ya0{bottom:273.346667pt;}
.y6f{bottom:282.146667pt;}
.y62{bottom:283.266667pt;}
.y10{bottom:284.546667pt;}
.yd0{bottom:286.626667pt;}
.y9f{bottom:290.626667pt;}
.y61{bottom:300.546667pt;}
.ycf{bottom:301.346667pt;}
.yf{bottom:301.986667pt;}
.y9e{bottom:308.066667pt;}
.yce{bottom:316.066667pt;}
.y6e{bottom:316.706667pt;}
.y60{bottom:317.826667pt;}
.ye{bottom:319.266667pt;}
.y9d{bottom:325.346667pt;}
.ycd{bottom:330.626667pt;}
.y5f{bottom:335.266667pt;}
.yd{bottom:336.546667pt;}
.y9c{bottom:342.626667pt;}
.ycc{bottom:345.346667pt;}
.y5e{bottom:352.546667pt;}
.yc{bottom:353.986667pt;}
.y9b{bottom:360.066667pt;}
.y6d{bottom:368.866667pt;}
.y5d{bottom:369.826667pt;}
.yb{bottom:371.266667pt;}
.ycb{bottom:374.626667pt;}
.y9a{bottom:377.346667pt;}
.y5c{bottom:387.266667pt;}
.ya{bottom:388.546667pt;}
.yca{bottom:389.346667pt;}
.y99{bottom:394.626667pt;}
.y6c{bottom:396.386667pt;}
.y5b{bottom:404.546667pt;}
.y9{bottom:405.986667pt;}
.y98{bottom:412.066667pt;}
.y5a{bottom:421.826667pt;}
.y8{bottom:423.266667pt;}
.y88{bottom:424.866667pt;}
.y97{bottom:429.346667pt;}
.y59{bottom:439.266667pt;}
.y7{bottom:440.546667pt;}
.yc3{bottom:441.826667pt;}
.y87{bottom:442.146667pt;}
.y96{bottom:446.626667pt;}
.y58{bottom:456.546667pt;}
.y6{bottom:457.986667pt;}
.yc2{bottom:459.266667pt;}
.y95{bottom:464.066667pt;}
.y86{bottom:469.826667pt;}
.y57{bottom:473.826667pt;}
.y5{bottom:475.266667pt;}
.y94{bottom:481.346667pt;}
.y56{bottom:491.266667pt;}
.y4{bottom:492.546667pt;}
.y93{bottom:498.626667pt;}
.y55{bottom:508.573333pt;}
.y3{bottom:510.013333pt;}
.y92{bottom:516.093333pt;}
.y54{bottom:525.853333pt;}
.y2{bottom:527.293333pt;}
.y91{bottom:533.373333pt;}
.yc9{bottom:543.133333pt;}
.y53{bottom:543.293333pt;}
.y1e{bottom:544.573333pt;}
.y90{bottom:550.653333pt;}
.yaf{bottom:552.413333pt;}
.y52{bottom:560.573333pt;}
.y1{bottom:562.013333pt;}
.y8f{bottom:568.093333pt;}
.yad{bottom:569.853333pt;}
.y2a{bottom:575.933333pt;}
.y51{bottom:577.853333pt;}
.y8e{bottom:593.373333pt;}
.y50{bottom:595.293333pt;}
.y4f{bottom:612.573333pt;}
.y4e{bottom:629.853333pt;}
.y8d{bottom:637.373333pt;}
.y4d{bottom:647.293333pt;}
.y4c{bottom:664.573333pt;}
.y4b{bottom:681.853333pt;}
.y8c{bottom:689.373333pt;}
.y4a{bottom:699.293333pt;}
.y8b{bottom:706.653333pt;}
.y49{bottom:716.573333pt;}
.y48{bottom:733.853333pt;}
.y8a{bottom:736.733333pt;}
.y47{bottom:751.293333pt;}
.y46{bottom:768.613333pt;}
.y45{bottom:785.893333pt;}
.y1f{bottom:801.253333pt;}
.y44{bottom:803.333333pt;}
.y43{bottom:820.613333pt;}
.y42{bottom:837.893333pt;}
.y41{bottom:855.333333pt;}
.y85{bottom:863.653333pt;}
.y40{bottom:872.613333pt;}
.y84{bottom:881.893333pt;}
.y3f{bottom:889.893333pt;}
.y83{bottom:899.333333pt;}
.ye9{bottom:901.893333pt;}
.y3e{bottom:907.333333pt;}
.y82{bottom:916.613333pt;}
.ye8{bottom:918.693333pt;}
.y3d{bottom:924.613333pt;}
.ye7{bottom:933.413333pt;}
.y81{bottom:933.893333pt;}
.y3c{bottom:941.893333pt;}
.ye6{bottom:948.133333pt;}
.y80{bottom:951.333333pt;}
.y3b{bottom:959.333333pt;}
.ye5{bottom:962.693333pt;}
.y7f{bottom:968.613333pt;}
.y3a{bottom:976.613333pt;}
.ye4{bottom:977.413333pt;}
.y7e{bottom:985.893333pt;}
.ye3{bottom:992.133333pt;}
.y39{bottom:993.893333pt;}
.y7d{bottom:1003.333333pt;}
.ye2{bottom:1006.720000pt;}
.y38{bottom:1011.360000pt;}
.y7c{bottom:1020.640000pt;}
.ye1{bottom:1021.440000pt;}
.y37{bottom:1028.640000pt;}
.ye0{bottom:1036.160000pt;}
.y7b{bottom:1037.920000pt;}
.y36{bottom:1045.920000pt;}
.ydf{bottom:1050.720000pt;}
.y6b{bottom:1063.200000pt;}
.y35{bottom:1063.360000pt;}
.yde{bottom:1065.440000pt;}
.h15{height:17.280000pt;}
.h11{height:17.312000pt;}
.hf{height:17.440000pt;}
.h13{height:44.897813pt;}
.hb{height:46.281250pt;}
.hd{height:52.134375pt;}
.hc{height:54.093750pt;}
.h10{height:54.598989pt;}
.h9{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:65.781915pt;}
.h5{height:66.383042pt;}
.h4{height:66.404375pt;}
.h8{height:73.490625pt;}
.h7{height:94.218750pt;}
.ha{height:225.306667pt;}
.h6{height:276.026667pt;}
.he{height:299.386667pt;}
.h14{height:305.946667pt;}
.h12{height:305.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:353.346667pt;}
.w5{width:353.506667pt;}
.w3{width:725.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.440000pt;}
.x5{left:34.080000pt;}
.x1{left:43.519988pt;}
.x9{left:53.759988pt;}
.x2{left:62.399988pt;}
.xf{left:174.106667pt;}
.x10{left:180.986667pt;}
.xb{left:223.066655pt;}
.xd{left:347.266667pt;}
.xa{left:365.506655pt;}
.xe{left:396.866667pt;}
.x11{left:406.466655pt;}
.x3{left:410.146655pt;}
.xc{left:420.386655pt;}
.x4{left:429.026655pt;}
.x7{left:458.173322pt;}
.x8{left:732.133322pt;}
}




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