
    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_8148da4b6af7f1217843a5a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.248535;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_3596c8d043d12abe6701c983.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.248535;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_b89347b41675729b19ec7c74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls4{letter-spacing:-0.642000px;}
.ls3{letter-spacing:-0.541200px;}
.ls8{letter-spacing:-0.181200px;}
.ls5{letter-spacing:-0.150600px;}
.ls1a{letter-spacing:-0.064800px;}
.ls18{letter-spacing:-0.057960px;}
.ls15{letter-spacing:-0.034560px;}
.ls7{letter-spacing:-0.025200px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.023040px;}
.ls17{letter-spacing:0.025200px;}
.ls12{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.077760px;}
.ls9{letter-spacing:0.078480px;}
.ls14{letter-spacing:0.078600px;}
.ls10{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.137520px;}
.ls6{letter-spacing:0.178800px;}
.ls13{letter-spacing:0.191520px;}
.ls1c{letter-spacing:0.231600px;}
.lsa{letter-spacing:0.245520px;}
.ls25{letter-spacing:0.278280px;}
.ls19{letter-spacing:0.312600px;}
.ls16{letter-spacing:0.325200px;}
.ls26{letter-spacing:0.380400px;}
.lsb{letter-spacing:0.437760px;}
.ls0{letter-spacing:0.476280px;}
.lsd{letter-spacing:0.998280px;}
.ls24{letter-spacing:1.358280px;}
.ls23{letter-spacing:1.718280px;}
.lse{letter-spacing:2.078280px;}
.ls21{letter-spacing:2.798280px;}
.ls1f{letter-spacing:3.158280px;}
.ls20{letter-spacing:3.878280px;}
.ls1b{letter-spacing:12.878280px;}
.ls1e{letter-spacing:15.758280px;}
.ls1d{letter-spacing:16.118280px;}
.ls22{letter-spacing:17.918280px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc2{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.sc1{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);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.368000px;}
.ws12{word-spacing:-18.680146px;}
.ws11{word-spacing:-17.953320px;}
.wse{word-spacing:-17.830920px;}
.wsd{word-spacing:-17.721720px;}
.ws5{word-spacing:-17.046909px;}
.ws7{word-spacing:-16.351080px;}
.ws4{word-spacing:-16.172280px;}
.ws8{word-spacing:-16.021680px;}
.ws9{word-spacing:-15.991080px;}
.ws6{word-spacing:-15.631080px;}
.ws10{word-spacing:-15.338160px;}
.wsf{word-spacing:-15.300720px;}
.ws3{word-spacing:-14.598000px;}
.ws2{word-spacing:-14.526000px;}
.wsc{word-spacing:-13.204920px;}
.ws0{word-spacing:-12.879720px;}
.wsb{word-spacing:-12.845160px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-4.268520px;}
._9{margin-left:-2.492280px;}
._0{margin-left:-1.142280px;}
._3{width:1.054409px;}
._6{width:2.170656px;}
._4{width:3.359823px;}
._8{width:4.643034px;}
._5{width:5.703840px;}
._b{width:6.841800px;}
._1{width:8.052480px;}
._2{width:9.453967px;}
._14{width:11.264760px;}
._c{width:12.781440px;}
._12{width:13.821840px;}
._e{width:15.349711px;}
._f{width:16.668956px;}
._10{width:19.105200px;}
._1a{width:20.158951px;}
._d{width:21.213360px;}
._19{width:22.465080px;}
._18{width:24.573240px;}
._16{width:25.824960px;}
._1c{width:27.010471px;}
._1b{width:28.130760px;}
._15{width:29.646000px;}
._17{width:30.963600px;}
._11{width:35.278560px;}
._13{width:39.721831px;}
._a{width:849.594000px;}
.fc4{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fsb{font-size:2.880000px;}
.fs6{font-size:6.120000px;}
.fs4{font-size:24.120000px;}
.fsf{font-size:38.880000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fsc{font-size:63.371411px;}
.fs7{font-size:65.880000px;}
.fs10{font-size:69.442923px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:78.120000px;}
.fse{font-size:82.344887px;}
.fs8{font-size:83.880000px;}
.fs9{font-size:88.416399px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.720000px;}
.y39{bottom:3.780000px;}
.y35{bottom:4.680000px;}
.y32{bottom:7.560000px;}
.y9{bottom:13.590000px;}
.y89{bottom:14.040000px;}
.y5f{bottom:15.300000px;}
.y27{bottom:17.640000px;}
.yd{bottom:24.210000px;}
.y34{bottom:25.740000px;}
.y15{bottom:26.460000px;}
.y7{bottom:27.810000px;}
.y29{bottom:36.090000px;}
.y17{bottom:40.680000px;}
.y26{bottom:41.490000px;}
.y8{bottom:42.120000px;}
.yc{bottom:51.120000px;}
.y14{bottom:56.160000px;}
.y28{bottom:58.590000px;}
.y31{bottom:64.620000px;}
.y16{bottom:65.160000px;}
.yb{bottom:66.150000px;}
.y4{bottom:67.320000px;}
.y5d{bottom:78.750000px;}
.ya{bottom:78.840000px;}
.y25{bottom:87.120000px;}
.y3{bottom:88.470000px;}
.y30{bottom:91.710000px;}
.ybe{bottom:91.890000px;}
.y13{bottom:96.660000px;}
.ya5{bottom:97.920000px;}
.y5c{bottom:102.600000px;}
.y87{bottom:103.950000px;}
.y36{bottom:114.120000px;}
.y24{bottom:115.650000px;}
.ybd{bottom:116.730000px;}
.y5b{bottom:118.530000px;}
.y2f{bottom:120.270000px;}
.ya4{bottom:122.670000px;}
.y33{bottom:127.530000px;}
.y12{bottom:128.160000px;}
.y86{bottom:128.700000px;}
.y23{bottom:138.240000px;}
.y5{bottom:140.490000px;}
.ybc{bottom:141.480000px;}
.y2e{bottom:147.270000px;}
.ya3{bottom:147.510000px;}
.y5a{bottom:153.000000px;}
.y85{bottom:153.540000px;}
.y11{bottom:159.750000px;}
.y22{bottom:160.740000px;}
.ybb{bottom:166.320000px;}
.y2a{bottom:166.680000px;}
.y2d{bottom:169.770000px;}
.y59{bottom:177.840000px;}
.y84{bottom:178.290000px;}
.y21{bottom:183.330000px;}
.y10{bottom:191.250000px;}
.y2c{bottom:192.360000px;}
.y2b{bottom:193.890000px;}
.yf{bottom:195.750000px;}
.yba{bottom:197.100000px;}
.y58{bottom:202.590000px;}
.y83{bottom:203.040000px;}
.y20{bottom:211.860000px;}
.yb9{bottom:221.850000px;}
.y57{bottom:227.430000px;}
.y82{bottom:227.880000px;}
.y1f{bottom:234.360000px;}
.yb8{bottom:246.600000px;}
.y56{bottom:252.180000px;}
.y81{bottom:252.630000px;}
.y1e{bottom:256.860000px;}
.yb7{bottom:271.440000px;}
.y55{bottom:276.930000px;}
.y80{bottom:277.380000px;}
.y1d{bottom:279.450000px;}
.yb6{bottom:296.220000px;}
.y54{bottom:301.800000px;}
.y1c{bottom:301.950000px;}
.ya2{bottom:302.250000px;}
.y7f{bottom:308.190000px;}
.y1a{bottom:313.680000px;}
.yb5{bottom:321.060000px;}
.y1b{bottom:324.480000px;}
.y53{bottom:326.550000px;}
.ya1{bottom:327.000000px;}
.y7e{bottom:333.030000px;}
.yb4{bottom:345.810000px;}
.y52{bottom:351.300000px;}
.ya0{bottom:351.840000px;}
.y7d{bottom:357.780000px;}
.yb3{bottom:370.560000px;}
.y19{bottom:373.980000px;}
.y51{bottom:376.140000px;}
.y9f{bottom:376.590000px;}
.y7c{bottom:382.620000px;}
.yb2{bottom:395.400000px;}
.y50{bottom:400.890000px;}
.y9e{bottom:401.340000px;}
.y7b{bottom:407.370000px;}
.yb1{bottom:420.150000px;}
.y4f{bottom:425.730000px;}
.y9d{bottom:426.180000px;}
.y7a{bottom:432.120000px;}
.yb0{bottom:444.900000px;}
.y4e{bottom:450.480000px;}
.y9c{bottom:450.930000px;}
.y79{bottom:456.960000px;}
.yaf{bottom:469.740000px;}
.y4d{bottom:475.230000px;}
.y9b{bottom:475.680000px;}
.y78{bottom:481.710000px;}
.yae{bottom:494.490000px;}
.y4c{bottom:500.070000px;}
.y9a{bottom:500.520000px;}
.y77{bottom:506.550000px;}
.yad{bottom:519.330000px;}
.y4b{bottom:524.820000px;}
.y99{bottom:525.270000px;}
.y76{bottom:531.300000px;}
.y4a{bottom:549.660000px;}
.y98{bottom:550.110000px;}
.y75{bottom:556.050000px;}
.y49{bottom:574.410000px;}
.y97{bottom:574.860000px;}
.y74{bottom:580.890000px;}
.y48{bottom:599.160000px;}
.yac{bottom:599.610000px;}
.y73{bottom:605.640000px;}
.y47{bottom:624.000000px;}
.yab{bottom:624.450000px;}
.y96{bottom:630.390000px;}
.y72{bottom:636.420000px;}
.y46{bottom:648.750000px;}
.yaa{bottom:649.200000px;}
.y95{bottom:655.230000px;}
.y71{bottom:661.260000px;}
.y45{bottom:673.500000px;}
.ya9{bottom:674.040000px;}
.y94{bottom:680.010000px;}
.y70{bottom:686.040000px;}
.y44{bottom:698.370000px;}
.ya8{bottom:698.820000px;}
.y93{bottom:704.850000px;}
.y6f{bottom:710.790000px;}
.ye{bottom:713.400000px;}
.ya7{bottom:723.570000px;}
.y43{bottom:729.150000px;}
.y92{bottom:729.600000px;}
.y6e{bottom:735.630000px;}
.y42{bottom:753.900000px;}
.y91{bottom:754.350000px;}
.y6d{bottom:760.380000px;}
.y41{bottom:778.740000px;}
.y90{bottom:779.190000px;}
.y6c{bottom:785.130000px;}
.y40{bottom:803.490000px;}
.y8f{bottom:803.940000px;}
.y6b{bottom:809.970000px;}
.yc0{bottom:816.720000px;}
.y8e{bottom:828.780000px;}
.y6a{bottom:834.720000px;}
.y3f{bottom:846.240000px;}
.ybf{bottom:847.500000px;}
.y8d{bottom:853.530000px;}
.y69{bottom:859.560000px;}
.y8c{bottom:878.280000px;}
.y68{bottom:884.310000px;}
.y3e{bottom:890.610000px;}
.y8b{bottom:903.120000px;}
.y67{bottom:909.060000px;}
.y3d{bottom:919.860000px;}
.y2{bottom:925.530000px;}
.y8a{bottom:927.870000px;}
.y66{bottom:933.900000px;}
.y3c{bottom:949.200000px;}
.ya6{bottom:952.620000px;}
.y65{bottom:958.650000px;}
.y64{bottom:983.400000px;}
.y6{bottom:1005.900000px;}
.y63{bottom:1008.240000px;}
.y3b{bottom:1013.550000px;}
.y3a{bottom:1029.210000px;}
.y62{bottom:1032.990000px;}
.y38{bottom:1044.870000px;}
.y61{bottom:1057.830000px;}
.y37{bottom:1060.530000px;}
.y60{bottom:1082.610000px;}
.y5e{bottom:1106.100000px;}
.y88{bottom:1106.910000px;}
.y1{bottom:1121.220000px;}
.hf{height:2.695781px;}
.h9{height:5.728535px;}
.h16{height:15.660000px;}
.h6{height:22.577168px;}
.h1d{height:28.170000px;}
.h1c{height:29.430000px;}
.h1b{height:32.361680px;}
.h14{height:39.150000px;}
.h4{height:39.425801px;}
.h15{height:50.545898px;}
.h2{height:53.241680px;}
.h8{height:56.274434px;}
.h7{height:57.060000px;}
.h11{height:59.317868px;}
.hb{height:61.665996px;}
.h19{height:63.393047px;}
.h1a{height:65.001017px;}
.h5{height:67.394531px;}
.h17{height:73.123066px;}
.h12{height:73.530000px;}
.h18{height:77.077709px;}
.hc{height:78.514629px;}
.hd{height:82.760858px;}
.he{height:86.040000px;}
.h3{height:173.460000px;}
.h13{height:207.300000px;}
.ha{height:212.130000px;}
.h10{height:339.420000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w5{width:1.439985px;}
.wd{width:26.190000px;}
.w9{width:95.400000px;}
.w3{width:156.990000px;}
.w8{width:161.460000px;}
.wb{width:318.540000px;}
.wc{width:318.630000px;}
.w7{width:355.530000px;}
.wa{width:422.310000px;}
.w6{width:513.750000px;}
.w4{width:533.910000px;}
.w2{width:893.069987px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:4.410000px;}
.x5{left:8.100000px;}
.x14{left:17.730000px;}
.xa{left:21.780000px;}
.x3{left:28.620000px;}
.x11{left:41.940000px;}
.xf{left:57.060000px;}
.xe{left:59.670000px;}
.x9{left:71.190000px;}
.x12{left:87.300000px;}
.x10{left:92.610000px;}
.x8{left:97.380000px;}
.x15{left:101.460000px;}
.x19{left:102.720000px;}
.x1{left:127.619987px;}
.x2{left:142.500000px;}
.xc{left:148.800000px;}
.x28{left:153.089987px;}
.x1d{left:155.550000px;}
.x1f{left:159.659987px;}
.x21{left:166.499987px;}
.x16{left:174.420000px;}
.x23{left:183.539987px;}
.x1c{left:189.480000px;}
.x37{left:210.449987px;}
.x1e{left:219.540000px;}
.xd{left:234.810000px;}
.x20{left:238.889987px;}
.x26{left:241.049987px;}
.x2b{left:278.129987px;}
.x4{left:284.610000px;}
.x6{left:292.710000px;}
.x7{left:294.150000px;}
.x25{left:340.409987px;}
.x33{left:347.879987px;}
.x29{left:364.979987px;}
.x13{left:388.110000px;}
.x2e{left:398.909987px;}
.x34{left:426.449987px;}
.x2a{left:434.459987px;}
.x27{left:440.669987px;}
.x1b{left:446.160000px;}
.x2f{left:461.009987px;}
.x17{left:494.850000px;}
.x18{left:525.810000px;}
.x31{left:534.809987px;}
.x30{left:543.839987px;}
.x35{left:556.889987px;}
.x22{left:601.169987px;}
.x32{left:613.409987px;}
.xb{left:648.240000px;}
.x36{left:667.949987px;}
.x24{left:709.619987px;}
.x2c{left:735.180000px;}
.x1a{left:765.599987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls4{letter-spacing:-0.570667pt;}
.ls3{letter-spacing:-0.481067pt;}
.ls8{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:-0.133867pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls18{letter-spacing:-0.051520pt;}
.ls15{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:-0.022400pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.020480pt;}
.ls17{letter-spacing:0.022400pt;}
.ls12{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.069120pt;}
.ls9{letter-spacing:0.069760pt;}
.ls14{letter-spacing:0.069867pt;}
.ls10{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.122240pt;}
.ls6{letter-spacing:0.158933pt;}
.ls13{letter-spacing:0.170240pt;}
.ls1c{letter-spacing:0.205867pt;}
.lsa{letter-spacing:0.218240pt;}
.ls25{letter-spacing:0.247360pt;}
.ls19{letter-spacing:0.277867pt;}
.ls16{letter-spacing:0.289067pt;}
.ls26{letter-spacing:0.338133pt;}
.lsb{letter-spacing:0.389120pt;}
.ls0{letter-spacing:0.423360pt;}
.lsd{letter-spacing:0.887360pt;}
.ls24{letter-spacing:1.207360pt;}
.ls23{letter-spacing:1.527360pt;}
.lse{letter-spacing:1.847360pt;}
.ls21{letter-spacing:2.487360pt;}
.ls1f{letter-spacing:2.807360pt;}
.ls20{letter-spacing:3.447360pt;}
.ls1b{letter-spacing:11.447360pt;}
.ls1e{letter-spacing:14.007360pt;}
.ls1d{letter-spacing:14.327360pt;}
.ls22{letter-spacing:15.927360pt;}
.ws1{word-spacing:-17.216000pt;}
.ws12{word-spacing:-16.604574pt;}
.ws11{word-spacing:-15.958507pt;}
.wse{word-spacing:-15.849707pt;}
.wsd{word-spacing:-15.752640pt;}
.ws5{word-spacing:-15.152808pt;}
.ws7{word-spacing:-14.534293pt;}
.ws4{word-spacing:-14.375360pt;}
.ws8{word-spacing:-14.241493pt;}
.ws9{word-spacing:-14.214293pt;}
.ws6{word-spacing:-13.894293pt;}
.ws10{word-spacing:-13.633920pt;}
.wsf{word-spacing:-13.600640pt;}
.ws3{word-spacing:-12.976000pt;}
.ws2{word-spacing:-12.912000pt;}
.wsc{word-spacing:-11.737707pt;}
.ws0{word-spacing:-11.448640pt;}
.wsb{word-spacing:-11.417920pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-3.794240pt;}
._9{margin-left:-2.215360pt;}
._0{margin-left:-1.015360pt;}
._3{width:0.937253pt;}
._6{width:1.929472pt;}
._4{width:2.986509pt;}
._8{width:4.127141pt;}
._5{width:5.070080pt;}
._b{width:6.081600pt;}
._1{width:7.157760pt;}
._2{width:8.403526pt;}
._14{width:10.013120pt;}
._c{width:11.361280pt;}
._12{width:12.286080pt;}
._e{width:13.644187pt;}
._f{width:14.816850pt;}
._10{width:16.982400pt;}
._1a{width:17.919067pt;}
._d{width:18.856320pt;}
._19{width:19.968960pt;}
._18{width:21.842880pt;}
._16{width:22.955520pt;}
._1c{width:24.009307pt;}
._1b{width:25.005120pt;}
._15{width:26.352000pt;}
._17{width:27.523200pt;}
._11{width:31.358720pt;}
._13{width:35.308294pt;}
._a{width:755.194667pt;}
.fsb{font-size:2.560000pt;}
.fs6{font-size:5.440000pt;}
.fs4{font-size:21.440000pt;}
.fsf{font-size:34.560000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fsc{font-size:56.330143pt;}
.fs7{font-size:58.560000pt;}
.fs10{font-size:61.727043pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:69.440000pt;}
.fse{font-size:73.195455pt;}
.fs8{font-size:74.560000pt;}
.fs9{font-size:78.592355pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.640000pt;}
.y39{bottom:3.360000pt;}
.y35{bottom:4.160000pt;}
.y32{bottom:6.720000pt;}
.y9{bottom:12.080000pt;}
.y89{bottom:12.480000pt;}
.y5f{bottom:13.600000pt;}
.y27{bottom:15.680000pt;}
.yd{bottom:21.520000pt;}
.y34{bottom:22.880000pt;}
.y15{bottom:23.520000pt;}
.y7{bottom:24.720000pt;}
.y29{bottom:32.080000pt;}
.y17{bottom:36.160000pt;}
.y26{bottom:36.880000pt;}
.y8{bottom:37.440000pt;}
.yc{bottom:45.440000pt;}
.y14{bottom:49.920000pt;}
.y28{bottom:52.080000pt;}
.y31{bottom:57.440000pt;}
.y16{bottom:57.920000pt;}
.yb{bottom:58.800000pt;}
.y4{bottom:59.840000pt;}
.y5d{bottom:70.000000pt;}
.ya{bottom:70.080000pt;}
.y25{bottom:77.440000pt;}
.y3{bottom:78.640000pt;}
.y30{bottom:81.520000pt;}
.ybe{bottom:81.680000pt;}
.y13{bottom:85.920000pt;}
.ya5{bottom:87.040000pt;}
.y5c{bottom:91.200000pt;}
.y87{bottom:92.400000pt;}
.y36{bottom:101.440000pt;}
.y24{bottom:102.800000pt;}
.ybd{bottom:103.760000pt;}
.y5b{bottom:105.360000pt;}
.y2f{bottom:106.906667pt;}
.ya4{bottom:109.040000pt;}
.y33{bottom:113.360000pt;}
.y12{bottom:113.920000pt;}
.y86{bottom:114.400000pt;}
.y23{bottom:122.880000pt;}
.y5{bottom:124.880000pt;}
.ybc{bottom:125.760000pt;}
.y2e{bottom:130.906667pt;}
.ya3{bottom:131.120000pt;}
.y5a{bottom:136.000000pt;}
.y85{bottom:136.480000pt;}
.y11{bottom:142.000000pt;}
.y22{bottom:142.880000pt;}
.ybb{bottom:147.840000pt;}
.y2a{bottom:148.160000pt;}
.y2d{bottom:150.906667pt;}
.y59{bottom:158.080000pt;}
.y84{bottom:158.480000pt;}
.y21{bottom:162.960000pt;}
.y10{bottom:170.000000pt;}
.y2c{bottom:170.986667pt;}
.y2b{bottom:172.346667pt;}
.yf{bottom:174.000000pt;}
.yba{bottom:175.200000pt;}
.y58{bottom:180.080000pt;}
.y83{bottom:180.480000pt;}
.y20{bottom:188.320000pt;}
.yb9{bottom:197.200000pt;}
.y57{bottom:202.160000pt;}
.y82{bottom:202.560000pt;}
.y1f{bottom:208.320000pt;}
.yb8{bottom:219.200000pt;}
.y56{bottom:224.160000pt;}
.y81{bottom:224.560000pt;}
.y1e{bottom:228.320000pt;}
.yb7{bottom:241.280000pt;}
.y55{bottom:246.160000pt;}
.y80{bottom:246.560000pt;}
.y1d{bottom:248.400000pt;}
.yb6{bottom:263.306667pt;}
.y54{bottom:268.266667pt;}
.y1c{bottom:268.400000pt;}
.ya2{bottom:268.666667pt;}
.y7f{bottom:273.946667pt;}
.y1a{bottom:278.826667pt;}
.yb5{bottom:285.386667pt;}
.y1b{bottom:288.426667pt;}
.y53{bottom:290.266667pt;}
.ya1{bottom:290.666667pt;}
.y7e{bottom:296.026667pt;}
.yb4{bottom:307.386667pt;}
.y52{bottom:312.266667pt;}
.ya0{bottom:312.746667pt;}
.y7d{bottom:318.026667pt;}
.yb3{bottom:329.386667pt;}
.y19{bottom:332.426667pt;}
.y51{bottom:334.346667pt;}
.y9f{bottom:334.746667pt;}
.y7c{bottom:340.106667pt;}
.yb2{bottom:351.466667pt;}
.y50{bottom:356.346667pt;}
.y9e{bottom:356.746667pt;}
.y7b{bottom:362.106667pt;}
.yb1{bottom:373.466667pt;}
.y4f{bottom:378.426667pt;}
.y9d{bottom:378.826667pt;}
.y7a{bottom:384.106667pt;}
.yb0{bottom:395.466667pt;}
.y4e{bottom:400.426667pt;}
.y9c{bottom:400.826667pt;}
.y79{bottom:406.186667pt;}
.yaf{bottom:417.546667pt;}
.y4d{bottom:422.426667pt;}
.y9b{bottom:422.826667pt;}
.y78{bottom:428.186667pt;}
.yae{bottom:439.546667pt;}
.y4c{bottom:444.506667pt;}
.y9a{bottom:444.906667pt;}
.y77{bottom:450.266667pt;}
.yad{bottom:461.626667pt;}
.y4b{bottom:466.506667pt;}
.y99{bottom:466.906667pt;}
.y76{bottom:472.266667pt;}
.y4a{bottom:488.586667pt;}
.y98{bottom:488.986667pt;}
.y75{bottom:494.266667pt;}
.y49{bottom:510.586667pt;}
.y97{bottom:510.986667pt;}
.y74{bottom:516.346667pt;}
.y48{bottom:532.586667pt;}
.yac{bottom:532.986667pt;}
.y73{bottom:538.346667pt;}
.y47{bottom:554.666667pt;}
.yab{bottom:555.066667pt;}
.y96{bottom:560.346667pt;}
.y72{bottom:565.706667pt;}
.y46{bottom:576.666667pt;}
.yaa{bottom:577.066667pt;}
.y95{bottom:582.426667pt;}
.y71{bottom:587.786667pt;}
.y45{bottom:598.666667pt;}
.ya9{bottom:599.146667pt;}
.y94{bottom:604.453333pt;}
.y70{bottom:609.813333pt;}
.y44{bottom:620.773333pt;}
.ya8{bottom:621.173333pt;}
.y93{bottom:626.533333pt;}
.y6f{bottom:631.813333pt;}
.ye{bottom:634.133333pt;}
.ya7{bottom:643.173333pt;}
.y43{bottom:648.133333pt;}
.y92{bottom:648.533333pt;}
.y6e{bottom:653.893333pt;}
.y42{bottom:670.133333pt;}
.y91{bottom:670.533333pt;}
.y6d{bottom:675.893333pt;}
.y41{bottom:692.213333pt;}
.y90{bottom:692.613333pt;}
.y6c{bottom:697.893333pt;}
.y40{bottom:714.213333pt;}
.y8f{bottom:714.613333pt;}
.y6b{bottom:719.973333pt;}
.yc0{bottom:725.973333pt;}
.y8e{bottom:736.693333pt;}
.y6a{bottom:741.973333pt;}
.y3f{bottom:752.213333pt;}
.ybf{bottom:753.333333pt;}
.y8d{bottom:758.693333pt;}
.y69{bottom:764.053333pt;}
.y8c{bottom:780.693333pt;}
.y68{bottom:786.053333pt;}
.y3e{bottom:791.653333pt;}
.y8b{bottom:802.773333pt;}
.y67{bottom:808.053333pt;}
.y3d{bottom:817.653333pt;}
.y2{bottom:822.693333pt;}
.y8a{bottom:824.773333pt;}
.y66{bottom:830.133333pt;}
.y3c{bottom:843.733333pt;}
.ya6{bottom:846.773333pt;}
.y65{bottom:852.133333pt;}
.y64{bottom:874.133333pt;}
.y6{bottom:894.133333pt;}
.y63{bottom:896.213333pt;}
.y3b{bottom:900.933333pt;}
.y3a{bottom:914.853333pt;}
.y62{bottom:918.213333pt;}
.y38{bottom:928.773333pt;}
.y61{bottom:940.293333pt;}
.y37{bottom:942.693333pt;}
.y60{bottom:962.320000pt;}
.y5e{bottom:983.200000pt;}
.y88{bottom:983.920000pt;}
.y1{bottom:996.640000pt;}
.hf{height:2.396250pt;}
.h9{height:5.092031pt;}
.h16{height:13.920000pt;}
.h6{height:20.068594pt;}
.h1d{height:25.040000pt;}
.h1c{height:26.160000pt;}
.h1b{height:28.765937pt;}
.h14{height:34.800000pt;}
.h4{height:35.045156pt;}
.h15{height:44.929688pt;}
.h2{height:47.325938pt;}
.h8{height:50.021719pt;}
.h7{height:50.720000pt;}
.h11{height:52.726994pt;}
.hb{height:54.814219pt;}
.h19{height:56.349375pt;}
.h1a{height:57.778682pt;}
.h5{height:59.906250pt;}
.h17{height:64.998281pt;}
.h12{height:65.360000pt;}
.h18{height:68.513519pt;}
.hc{height:69.790781pt;}
.hd{height:73.565207pt;}
.he{height:76.480000pt;}
.h3{height:154.186667pt;}
.h13{height:184.266667pt;}
.ha{height:188.560000pt;}
.h10{height:301.706667pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w5{width:1.279987pt;}
.wd{width:23.280000pt;}
.w9{width:84.800000pt;}
.w3{width:139.546667pt;}
.w8{width:143.520000pt;}
.wb{width:283.146667pt;}
.wc{width:283.226667pt;}
.w7{width:316.026667pt;}
.wa{width:375.386667pt;}
.w6{width:456.666667pt;}
.w4{width:474.586667pt;}
.w2{width:793.839988pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:3.920000pt;}
.x5{left:7.200000pt;}
.x14{left:15.760000pt;}
.xa{left:19.360000pt;}
.x3{left:25.440000pt;}
.x11{left:37.280000pt;}
.xf{left:50.720000pt;}
.xe{left:53.040000pt;}
.x9{left:63.280000pt;}
.x12{left:77.600000pt;}
.x10{left:82.320000pt;}
.x8{left:86.560000pt;}
.x15{left:90.186667pt;}
.x19{left:91.306667pt;}
.x1{left:113.439988pt;}
.x2{left:126.666667pt;}
.xc{left:132.266667pt;}
.x28{left:136.079988pt;}
.x1d{left:138.266667pt;}
.x1f{left:141.919988pt;}
.x21{left:147.999988pt;}
.x16{left:155.040000pt;}
.x23{left:163.146655pt;}
.x1c{left:168.426667pt;}
.x37{left:187.066655pt;}
.x1e{left:195.146667pt;}
.xd{left:208.720000pt;}
.x20{left:212.346655pt;}
.x26{left:214.266655pt;}
.x2b{left:247.226655pt;}
.x4{left:252.986667pt;}
.x6{left:260.186667pt;}
.x7{left:261.466667pt;}
.x25{left:302.586655pt;}
.x33{left:309.226655pt;}
.x29{left:324.426655pt;}
.x13{left:344.986667pt;}
.x2e{left:354.586655pt;}
.x34{left:379.066655pt;}
.x2a{left:386.186655pt;}
.x27{left:391.706655pt;}
.x1b{left:396.586667pt;}
.x2f{left:409.786655pt;}
.x17{left:439.866667pt;}
.x18{left:467.386667pt;}
.x31{left:475.386655pt;}
.x30{left:483.413322pt;}
.x35{left:495.013322pt;}
.x22{left:534.373322pt;}
.x32{left:545.253322pt;}
.xb{left:576.213333pt;}
.x36{left:593.733322pt;}
.x24{left:630.773322pt;}
.x2c{left:653.493333pt;}
.x1a{left:680.533322pt;}
}




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