
    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_d1f683611dae1b21558f3196.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d7d12aa347468de0c0ced32.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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_3ce31fb51f2323d41e9ad400.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_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f38fc9f9fbdc39623e6f555.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_08a21f9b401cb551fa0b5a5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_3f46244089f72f62787da3ac.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-8.760000px;}
.ls16{letter-spacing:-5.904000px;}
.lsa{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-0.756000px;}
.ls15{letter-spacing:-0.726000px;}
.ls6{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015840px;}
.lsf{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.lse{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.665280px;}
.ls10{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.152000px;}
.lsb{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.584000px;}
.ls18{letter-spacing:1.944000px;}
.ls19{letter-spacing:108.144000px;}
.ls17{letter-spacing:144.144000px;}
.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;}
}
.ws9{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.036000px;}
.ws7{word-spacing:-18.000000px;}
.wse{word-spacing:-17.964000px;}
.wsd{word-spacing:-17.496000px;}
.wsc{word-spacing:-17.352000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.240000px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.280000px;}
.ws8{word-spacing:0.000000px;}
._b{margin-left:-8.784000px;}
._8{margin-left:-7.021440px;}
._1f{margin-left:-5.361600px;}
._0{margin-left:-4.324320px;}
._6{margin-left:-2.722080px;}
._3{margin-left:-1.425600px;}
._1{width:1.045440px;}
._2{width:2.471040px;}
._7{width:3.543840px;}
._5{width:4.561920px;}
._4{width:5.959200px;}
._1c{width:7.286880px;}
._9{width:9.070560px;}
._1a{width:10.191840px;}
._1b{width:11.333280px;}
._14{width:12.393120px;}
._12{width:13.728000px;}
._13{width:14.956320px;}
._11{width:16.728000px;}
._19{width:19.978560px;}
._1e{width:20.980320px;}
._1d{width:22.093440px;}
._2c{width:23.204640px;}
._17{width:24.483360px;}
._18{width:25.533120px;}
._a{width:26.743200px;}
._c{width:28.080960px;}
._d{width:29.778240px;}
._10{width:31.705920px;}
._29{width:33.181440px;}
._16{width:34.413120px;}
._15{width:36.057600px;}
._e{width:38.019840px;}
._23{width:39.458400px;}
._f{width:40.512000px;}
._31{width:41.962560px;}
._22{width:46.838400px;}
._20{width:48.600000px;}
._21{width:50.321280px;}
._33{width:51.420960px;}
._32{width:52.454400px;}
._2f{width:54.075840px;}
._30{width:55.531680px;}
._36{width:57.840960px;}
._2d{width:59.944800px;}
._2e{width:61.152960px;}
._27{width:63.112800px;}
._28{width:64.424160px;}
._35{width:68.371680px;}
._2a{width:69.520800px;}
._2b{width:71.287200px;}
._26{width:82.220160px;}
._25{width:102.908160px;}
._24{width:104.280000px;}
._34{width:142.253280px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:4.035000px;}
.y92{bottom:4.065000px;}
.y8c{bottom:4.110000px;}
.y9e{bottom:5.475000px;}
.y98{bottom:5.865000px;}
.y83{bottom:18.540000px;}
.ya2{bottom:24.915000px;}
.y91{bottom:24.945000px;}
.y8b{bottom:24.990000px;}
.ya4{bottom:25.200000px;}
.y9d{bottom:26.355000px;}
.y97{bottom:26.385000px;}
.y88{bottom:26.460000px;}
.y8a{bottom:45.510000px;}
.y8e{bottom:45.720000px;}
.y2{bottom:46.440000px;}
.y9c{bottom:46.905000px;}
.ya0{bottom:47.190000px;}
.y96{bottom:47.265000px;}
.y87{bottom:47.340000px;}
.y9a{bottom:47.520000px;}
.y86{bottom:47.550000px;}
.y1{bottom:66.240000px;}
.y90{bottom:66.390000px;}
.y94{bottom:66.645000px;}
.y31{bottom:112.716000px;}
.y57{bottom:115.596000px;}
.y81{bottom:118.260000px;}
.yb5{bottom:140.436000px;}
.y30{bottom:144.036000px;}
.y52{bottom:146.556000px;}
.y7f{bottom:153.030000px;}
.y60{bottom:156.270000px;}
.ya8{bottom:161.310000px;}
.yb4{bottom:171.750000px;}
.y2f{bottom:174.990000px;}
.y51{bottom:177.510000px;}
.y7e{bottom:184.350000px;}
.y5f{bottom:187.590000px;}
.ya7{bottom:192.270000px;}
.yb3{bottom:202.755000px;}
.y2e{bottom:205.995000px;}
.y50{bottom:208.515000px;}
.y7d{bottom:215.355000px;}
.y5e{bottom:218.595000px;}
.ya6{bottom:223.275000px;}
.yb2{bottom:233.715000px;}
.y2d{bottom:236.955000px;}
.y4f{bottom:239.835000px;}
.ya3{bottom:240.195000px;}
.ya1{bottom:240.480000px;}
.y7c{bottom:246.315000px;}
.y5d{bottom:249.555000px;}
.yb1{bottom:264.675000px;}
.y2c{bottom:268.275000px;}
.y4e{bottom:270.795000px;}
.y5c{bottom:276.195000px;}
.y7b{bottom:277.275000px;}
.y9f{bottom:281.955000px;}
.y9b{bottom:282.240000px;}
.yb0{bottom:295.995000px;}
.y2b{bottom:299.235000px;}
.y4d{bottom:301.755000px;}
.y7a{bottom:308.595000px;}
.y69{bottom:315.795000px;}
.yaf{bottom:322.665000px;}
.y2a{bottom:330.225000px;}
.y4c{bottom:332.745000px;}
.y79{bottom:339.585000px;}
.y99{bottom:345.705000px;}
.y95{bottom:345.960000px;}
.y68{bottom:346.785000px;}
.y29{bottom:361.185000px;}
.y4b{bottom:364.065000px;}
.y78{bottom:370.545000px;}
.y67{bottom:377.745000px;}
.y28{bottom:392.505000px;}
.y4a{bottom:395.025000px;}
.y77{bottom:401.505000px;}
.y66{bottom:408.705000px;}
.y93{bottom:409.785000px;}
.y8f{bottom:410.040000px;}
.y27{bottom:423.465000px;}
.y49{bottom:425.985000px;}
.y76{bottom:432.825000px;}
.y65{bottom:440.025000px;}
.y26{bottom:454.470000px;}
.y48{bottom:456.990000px;}
.y75{bottom:463.830000px;}
.y64{bottom:471.030000px;}
.y25{bottom:485.430000px;}
.yb6{bottom:487.590000px;}
.y47{bottom:487.950000px;}
.y8d{bottom:492.990000px;}
.y89{bottom:493.200000px;}
.y74{bottom:494.790000px;}
.y63{bottom:501.990000px;}
.y24{bottom:516.750000px;}
.y46{bottom:519.270000px;}
.y73{bottom:525.750000px;}
.y62{bottom:532.950000px;}
.y23{bottom:547.350000px;}
.y45{bottom:550.230000px;}
.y85{bottom:555.270000px;}
.y80{bottom:555.480000px;}
.y72{bottom:557.070000px;}
.y61{bottom:559.590000px;}
.y22{bottom:578.700000px;}
.y44{bottom:581.220000px;}
.y71{bottom:588.060000px;}
.y21{bottom:609.300000px;}
.y43{bottom:612.180000px;}
.y70{bottom:619.020000px;}
.y84{bottom:619.560000px;}
.y20{bottom:640.620000px;}
.y42{bottom:643.500000px;}
.y6f{bottom:649.980000px;}
.y82{bottom:655.200000px;}
.y1f{bottom:671.580000px;}
.y41{bottom:674.460000px;}
.y6e{bottom:681.300000px;}
.yae{bottom:692.820000px;}
.y5b{bottom:696.420000px;}
.y1e{bottom:702.570000px;}
.y40{bottom:705.450000px;}
.y6d{bottom:712.290000px;}
.yad{bottom:723.810000px;}
.y5a{bottom:727.410000px;}
.y1d{bottom:733.530000px;}
.y3f{bottom:736.410000px;}
.y6c{bottom:743.250000px;}
.yac{bottom:755.130000px;}
.y59{bottom:758.730000px;}
.y1c{bottom:764.850000px;}
.y3e{bottom:767.730000px;}
.y6b{bottom:774.210000px;}
.y58{bottom:785.370000px;}
.yab{bottom:786.090000px;}
.y1b{bottom:796.170000px;}
.y3d{bottom:798.690000px;}
.y6a{bottom:801.210000px;}
.yaa{bottom:817.050000px;}
.y1a{bottom:827.175000px;}
.y3c{bottom:829.695000px;}
.ya9{bottom:844.095000px;}
.y19{bottom:857.775000px;}
.y3b{bottom:860.655000px;}
.y18{bottom:889.095000px;}
.y3a{bottom:891.975000px;}
.y17{bottom:907.815000px;}
.y16{bottom:917.895000px;}
.y39{bottom:922.935000px;}
.y15{bottom:928.335000px;}
.y14{bottom:938.775000px;}
.y13{bottom:949.215000px;}
.y56{bottom:953.565000px;}
.y38{bottom:953.925000px;}
.y12{bottom:959.325000px;}
.y11{bottom:969.765000px;}
.y10{bottom:980.205000px;}
.y37{bottom:984.885000px;}
.yf{bottom:990.645000px;}
.ye{bottom:1000.725000px;}
.yd{bottom:1011.165000px;}
.y55{bottom:1015.845000px;}
.y36{bottom:1016.205000px;}
.yc{bottom:1021.605000px;}
.yb{bottom:1032.765000px;}
.ya{bottom:1046.805000px;}
.y35{bottom:1047.165000px;}
.y9{bottom:1061.565000px;}
.y8{bottom:1075.965000px;}
.y54{bottom:1077.810000px;}
.y34{bottom:1078.170000px;}
.y7{bottom:1090.050000px;}
.y6{bottom:1104.090000px;}
.y53{bottom:1108.770000px;}
.y33{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.450000px;}
.y32{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.h8{height:26.033203px;}
.h4{height:33.528516px;}
.h10{height:34.920000px;}
.h9{height:35.332031px;}
.h6{height:36.034453px;}
.h19{height:41.400000px;}
.h7{height:46.638281px;}
.h5{height:47.891250px;}
.h3{height:50.229844px;}
.hc{height:50.800781px;}
.hd{height:52.066406px;}
.h14{height:61.920000px;}
.h17{height:63.360000px;}
.h18{height:63.396000px;}
.h12{height:63.720000px;}
.h11{height:63.756000px;}
.h2{height:65.010937px;}
.hb{height:70.664062px;}
.h13{height:70.805391px;}
.he{height:71.824219px;}
.ha{height:72.562500px;}
.h1a{height:74.004654px;}
.h15{height:82.800000px;}
.h16{height:82.836000px;}
.hf{height:134.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:52.560000px;}
.we{width:63.000000px;}
.wd{width:63.360000px;}
.wa{width:63.396000px;}
.wc{width:84.600000px;}
.w3{width:86.760000px;}
.w6{width:116.640000px;}
.w9{width:127.080000px;}
.w8{width:127.440000px;}
.w7{width:201.600000px;}
.w5{width:255.240000px;}
.w4{width:318.600000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:1.905000px;}
.x27{left:4.110000px;}
.x1e{left:6.915000px;}
.x28{left:8.025000px;}
.x20{left:10.230000px;}
.x23{left:11.370000px;}
.x26{left:12.750000px;}
.x18{left:16.560000px;}
.x21{left:17.790000px;}
.x1c{left:21.810000px;}
.x16{left:23.760000px;}
.x22{left:33.660000px;}
.x10{left:35.385000px;}
.x13{left:40.530000px;}
.x25{left:41.760000px;}
.x15{left:47.055000px;}
.x24{left:51.870000px;}
.x1f{left:56.190000px;}
.x12{left:84.390000px;}
.xf{left:90.210000px;}
.x2{left:106.235987px;}
.xb{left:114.480000px;}
.x5{left:120.995987px;}
.xd{left:122.145000px;}
.x3{left:149.831987px;}
.x7{left:159.554987px;}
.xc{left:201.600000px;}
.x6{left:231.914987px;}
.x17{left:265.785000px;}
.x11{left:318.600000px;}
.x1a{left:403.560000px;}
.xa{left:438.299987px;}
.x1{left:442.259987px;}
.x4{left:446.579987px;}
.xe{left:520.920000px;}
.x1b{left:585.000000px;}
.x14{left:649.080000px;}
.x1d{left:712.800000px;}
.x9{left:714.524987px;}
.x8{left:724.244987px;}
.x29{left:733.964987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-7.786667pt;}
.ls16{letter-spacing:-5.248000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.672000pt;}
.ls15{letter-spacing:-0.645333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.014080pt;}
.lsf{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.591360pt;}
.ls10{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.024000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.408000pt;}
.ls18{letter-spacing:1.728000pt;}
.ls19{letter-spacing:96.128000pt;}
.ls17{letter-spacing:128.128000pt;}
.ws9{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.032000pt;}
.ws7{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.968000pt;}
.wsd{word-spacing:-15.552000pt;}
.wsc{word-spacing:-15.424000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.213333pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.360000pt;}
.ws8{word-spacing:0.000000pt;}
._b{margin-left:-7.808000pt;}
._8{margin-left:-6.241280pt;}
._1f{margin-left:-4.765867pt;}
._0{margin-left:-3.843840pt;}
._6{margin-left:-2.419627pt;}
._3{margin-left:-1.267200pt;}
._1{width:0.929280pt;}
._2{width:2.196480pt;}
._7{width:3.150080pt;}
._5{width:4.055040pt;}
._4{width:5.297067pt;}
._1c{width:6.477227pt;}
._9{width:8.062720pt;}
._1a{width:9.059413pt;}
._1b{width:10.074027pt;}
._14{width:11.016107pt;}
._12{width:12.202667pt;}
._13{width:13.294507pt;}
._11{width:14.869333pt;}
._19{width:17.758720pt;}
._1e{width:18.649173pt;}
._1d{width:19.638613pt;}
._2c{width:20.626347pt;}
._17{width:21.762987pt;}
._18{width:22.696107pt;}
._a{width:23.771733pt;}
._c{width:24.960853pt;}
._d{width:26.469547pt;}
._10{width:28.183040pt;}
._29{width:29.494613pt;}
._16{width:30.589440pt;}
._15{width:32.051200pt;}
._e{width:33.795413pt;}
._23{width:35.074133pt;}
._f{width:36.010667pt;}
._31{width:37.300053pt;}
._22{width:41.634133pt;}
._20{width:43.200000pt;}
._21{width:44.730027pt;}
._33{width:45.707520pt;}
._32{width:46.626133pt;}
._2f{width:48.067413pt;}
._30{width:49.361493pt;}
._36{width:51.414187pt;}
._2d{width:53.284267pt;}
._2e{width:54.358187pt;}
._27{width:56.100267pt;}
._28{width:57.265920pt;}
._35{width:60.774827pt;}
._2a{width:61.796267pt;}
._2b{width:63.366400pt;}
._26{width:73.084587pt;}
._25{width:91.473920pt;}
._24{width:92.693333pt;}
._34{width:126.447360pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:3.586667pt;}
.y92{bottom:3.613333pt;}
.y8c{bottom:3.653333pt;}
.y9e{bottom:4.866667pt;}
.y98{bottom:5.213333pt;}
.y83{bottom:16.480000pt;}
.ya2{bottom:22.146667pt;}
.y91{bottom:22.173333pt;}
.y8b{bottom:22.213333pt;}
.ya4{bottom:22.400000pt;}
.y9d{bottom:23.426667pt;}
.y97{bottom:23.453333pt;}
.y88{bottom:23.520000pt;}
.y8a{bottom:40.453333pt;}
.y8e{bottom:40.640000pt;}
.y2{bottom:41.280000pt;}
.y9c{bottom:41.693333pt;}
.ya0{bottom:41.946667pt;}
.y96{bottom:42.013333pt;}
.y87{bottom:42.080000pt;}
.y9a{bottom:42.240000pt;}
.y86{bottom:42.266667pt;}
.y1{bottom:58.880000pt;}
.y90{bottom:59.013333pt;}
.y94{bottom:59.240000pt;}
.y31{bottom:100.192000pt;}
.y57{bottom:102.752000pt;}
.y81{bottom:105.120000pt;}
.yb5{bottom:124.832000pt;}
.y30{bottom:128.032000pt;}
.y52{bottom:130.272000pt;}
.y7f{bottom:136.026667pt;}
.y60{bottom:138.906667pt;}
.ya8{bottom:143.386667pt;}
.yb4{bottom:152.666667pt;}
.y2f{bottom:155.546667pt;}
.y51{bottom:157.786667pt;}
.y7e{bottom:163.866667pt;}
.y5f{bottom:166.746667pt;}
.ya7{bottom:170.906667pt;}
.yb3{bottom:180.226667pt;}
.y2e{bottom:183.106667pt;}
.y50{bottom:185.346667pt;}
.y7d{bottom:191.426667pt;}
.y5e{bottom:194.306667pt;}
.ya6{bottom:198.466667pt;}
.yb2{bottom:207.746667pt;}
.y2d{bottom:210.626667pt;}
.y4f{bottom:213.186667pt;}
.ya3{bottom:213.506667pt;}
.ya1{bottom:213.760000pt;}
.y7c{bottom:218.946667pt;}
.y5d{bottom:221.826667pt;}
.yb1{bottom:235.266667pt;}
.y2c{bottom:238.466667pt;}
.y4e{bottom:240.706667pt;}
.y5c{bottom:245.506667pt;}
.y7b{bottom:246.466667pt;}
.y9f{bottom:250.626667pt;}
.y9b{bottom:250.880000pt;}
.yb0{bottom:263.106667pt;}
.y2b{bottom:265.986667pt;}
.y4d{bottom:268.226667pt;}
.y7a{bottom:274.306667pt;}
.y69{bottom:280.706667pt;}
.yaf{bottom:286.813333pt;}
.y2a{bottom:293.533333pt;}
.y4c{bottom:295.773333pt;}
.y79{bottom:301.853333pt;}
.y99{bottom:307.293333pt;}
.y95{bottom:307.520000pt;}
.y68{bottom:308.253333pt;}
.y29{bottom:321.053333pt;}
.y4b{bottom:323.613333pt;}
.y78{bottom:329.373333pt;}
.y67{bottom:335.773333pt;}
.y28{bottom:348.893333pt;}
.y4a{bottom:351.133333pt;}
.y77{bottom:356.893333pt;}
.y66{bottom:363.293333pt;}
.y93{bottom:364.253333pt;}
.y8f{bottom:364.480000pt;}
.y27{bottom:376.413333pt;}
.y49{bottom:378.653333pt;}
.y76{bottom:384.733333pt;}
.y65{bottom:391.133333pt;}
.y26{bottom:403.973333pt;}
.y48{bottom:406.213333pt;}
.y75{bottom:412.293333pt;}
.y64{bottom:418.693333pt;}
.y25{bottom:431.493333pt;}
.yb6{bottom:433.413333pt;}
.y47{bottom:433.733333pt;}
.y8d{bottom:438.213333pt;}
.y89{bottom:438.400000pt;}
.y74{bottom:439.813333pt;}
.y63{bottom:446.213333pt;}
.y24{bottom:459.333333pt;}
.y46{bottom:461.573333pt;}
.y73{bottom:467.333333pt;}
.y62{bottom:473.733333pt;}
.y23{bottom:486.533333pt;}
.y45{bottom:489.093333pt;}
.y85{bottom:493.573333pt;}
.y80{bottom:493.760000pt;}
.y72{bottom:495.173333pt;}
.y61{bottom:497.413333pt;}
.y22{bottom:514.400000pt;}
.y44{bottom:516.640000pt;}
.y71{bottom:522.720000pt;}
.y21{bottom:541.600000pt;}
.y43{bottom:544.160000pt;}
.y70{bottom:550.240000pt;}
.y84{bottom:550.720000pt;}
.y20{bottom:569.440000pt;}
.y42{bottom:572.000000pt;}
.y6f{bottom:577.760000pt;}
.y82{bottom:582.400000pt;}
.y1f{bottom:596.960000pt;}
.y41{bottom:599.520000pt;}
.y6e{bottom:605.600000pt;}
.yae{bottom:615.840000pt;}
.y5b{bottom:619.040000pt;}
.y1e{bottom:624.506667pt;}
.y40{bottom:627.066667pt;}
.y6d{bottom:633.146667pt;}
.yad{bottom:643.386667pt;}
.y5a{bottom:646.586667pt;}
.y1d{bottom:652.026667pt;}
.y3f{bottom:654.586667pt;}
.y6c{bottom:660.666667pt;}
.yac{bottom:671.226667pt;}
.y59{bottom:674.426667pt;}
.y1c{bottom:679.866667pt;}
.y3e{bottom:682.426667pt;}
.y6b{bottom:688.186667pt;}
.y58{bottom:698.106667pt;}
.yab{bottom:698.746667pt;}
.y1b{bottom:707.706667pt;}
.y3d{bottom:709.946667pt;}
.y6a{bottom:712.186667pt;}
.yaa{bottom:726.266667pt;}
.y1a{bottom:735.266667pt;}
.y3c{bottom:737.506667pt;}
.ya9{bottom:750.306667pt;}
.y19{bottom:762.466667pt;}
.y3b{bottom:765.026667pt;}
.y18{bottom:790.306667pt;}
.y3a{bottom:792.866667pt;}
.y17{bottom:806.946667pt;}
.y16{bottom:815.906667pt;}
.y39{bottom:820.386667pt;}
.y15{bottom:825.186667pt;}
.y14{bottom:834.466667pt;}
.y13{bottom:843.746667pt;}
.y56{bottom:847.613333pt;}
.y38{bottom:847.933333pt;}
.y12{bottom:852.733333pt;}
.y11{bottom:862.013333pt;}
.y10{bottom:871.293333pt;}
.y37{bottom:875.453333pt;}
.yf{bottom:880.573333pt;}
.ye{bottom:889.533333pt;}
.yd{bottom:898.813333pt;}
.y55{bottom:902.973333pt;}
.y36{bottom:903.293333pt;}
.yc{bottom:908.093333pt;}
.yb{bottom:918.013333pt;}
.ya{bottom:930.493333pt;}
.y35{bottom:930.813333pt;}
.y9{bottom:943.613333pt;}
.y8{bottom:956.413333pt;}
.y54{bottom:958.053333pt;}
.y34{bottom:958.373333pt;}
.y7{bottom:968.933333pt;}
.y6{bottom:981.413333pt;}
.y53{bottom:985.573333pt;}
.y33{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.733333pt;}
.y32{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.h8{height:23.140625pt;}
.h4{height:29.803125pt;}
.h10{height:31.040000pt;}
.h9{height:31.406250pt;}
.h6{height:32.030625pt;}
.h19{height:36.800000pt;}
.h7{height:41.456250pt;}
.h5{height:42.570000pt;}
.h3{height:44.648750pt;}
.hc{height:45.156250pt;}
.hd{height:46.281250pt;}
.h14{height:55.040000pt;}
.h17{height:56.320000pt;}
.h18{height:56.352000pt;}
.h12{height:56.640000pt;}
.h11{height:56.672000pt;}
.h2{height:57.787500pt;}
.hb{height:62.812500pt;}
.h13{height:62.938125pt;}
.he{height:63.843750pt;}
.ha{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h15{height:73.600000pt;}
.h16{height:73.632000pt;}
.hf{height:119.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:46.720000pt;}
.we{width:56.000000pt;}
.wd{width:56.320000pt;}
.wa{width:56.352000pt;}
.wc{width:75.200000pt;}
.w3{width:77.120000pt;}
.w6{width:103.680000pt;}
.w9{width:112.960000pt;}
.w8{width:113.280000pt;}
.w7{width:179.200000pt;}
.w5{width:226.880000pt;}
.w4{width:283.200000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:1.693333pt;}
.x27{left:3.653333pt;}
.x1e{left:6.146667pt;}
.x28{left:7.133333pt;}
.x20{left:9.093333pt;}
.x23{left:10.106667pt;}
.x26{left:11.333333pt;}
.x18{left:14.720000pt;}
.x21{left:15.813333pt;}
.x1c{left:19.386667pt;}
.x16{left:21.120000pt;}
.x22{left:29.920000pt;}
.x10{left:31.453333pt;}
.x13{left:36.026667pt;}
.x25{left:37.120000pt;}
.x15{left:41.826667pt;}
.x24{left:46.106667pt;}
.x1f{left:49.946667pt;}
.x12{left:75.013333pt;}
.xf{left:80.186667pt;}
.x2{left:94.431988pt;}
.xb{left:101.760000pt;}
.x5{left:107.551988pt;}
.xd{left:108.573333pt;}
.x3{left:133.183988pt;}
.x7{left:141.826655pt;}
.xc{left:179.200000pt;}
.x6{left:206.146655pt;}
.x17{left:236.253333pt;}
.x11{left:283.200000pt;}
.x1a{left:358.720000pt;}
.xa{left:389.599988pt;}
.x1{left:393.119988pt;}
.x4{left:396.959988pt;}
.xe{left:463.040000pt;}
.x1b{left:520.000000pt;}
.x14{left:576.960000pt;}
.x1d{left:633.600000pt;}
.x9{left:635.133322pt;}
.x8{left:643.773322pt;}
.x29{left:652.413322pt;}
}




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