
    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_902161b4901e7b054b590a70.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_20eb38fff384dac8d4cca7d9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2c791db36960abb9919ac991.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_37c21b68a7efe5eb2c76d05c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063477;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_5980545a50c1d5f355efc02f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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);}
.v1{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v7{vertical-align:-15.120000px;}
.v8{vertical-align:-12.960000px;}
.va{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:5.760000px;}
.v5{vertical-align:12.960000px;}
.v4{vertical-align:21.060000px;}
.v2{vertical-align:23.760000px;}
.v9{vertical-align:42.480000px;}
.v6{vertical-align:48.240000px;}
.vc{vertical-align:49.680000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.334200px;}
.ls9{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.132600px;}
.ls1b{letter-spacing:-0.054720px;}
.ls17{letter-spacing:-0.051840px;}
.ls19{letter-spacing:-0.027360px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:2.536560px;}
.ls12{letter-spacing:3.268080px;}
.lsf{letter-spacing:4.509360px;}
.ls6{letter-spacing:16.750080px;}
.lse{letter-spacing:16.828560px;}
.ls15{letter-spacing:16.925760px;}
.ls14{letter-spacing:17.470080px;}
.ls11{letter-spacing:17.668080px;}
.ls13{letter-spacing:20.428560px;}
.ls10{letter-spacing:20.548080px;}
.ls5{letter-spacing:21.245760px;}
.lsd{letter-spacing:21.517200px;}
.ls8{letter-spacing:88.738560px;}
.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;}
}
.ws10{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.840000px;}
.wse{word-spacing:-15.788160px;}
.wsd{word-spacing:-15.505800px;}
.ws5{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.220000px;}
.ws13{word-spacing:-14.192640px;}
.ws8{word-spacing:-13.939200px;}
.ws12{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.806600px;}
.ws0{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:-0.789120px;}
.ws9{word-spacing:-0.138240px;}
.wsc{word-spacing:-0.069120px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:2.810880px;}
._16{margin-left:-6.415920px;}
._14{margin-left:-4.901760px;}
._2{margin-left:-2.967840px;}
._0{margin-left:-1.324800px;}
._1{width:1.456800px;}
._7{width:2.689200px;}
._6{width:4.100880px;}
._c{width:5.739840px;}
._b{width:6.872400px;}
._a{width:7.948080px;}
._17{width:8.994240px;}
._11{width:10.002240px;}
._12{width:11.335680px;}
._f{width:12.430080px;}
._10{width:13.454160px;}
._13{width:14.680320px;}
._3{width:16.175040px;}
._15{width:17.619840px;}
._d{width:19.160400px;}
._5{width:20.446800px;}
._4{width:22.230720px;}
._e{width:23.642400px;}
._8{width:25.375440px;}
._9{width:26.615760px;}
._18{width:58.938720px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fsb{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.240000px;}
.y95{bottom:3.420000px;}
.y11{bottom:14.400000px;}
.y18{bottom:21.240000px;}
.y30{bottom:29.340000px;}
.y17{bottom:38.520000px;}
.y2f{bottom:46.620000px;}
.y16{bottom:55.650000px;}
.y2e{bottom:63.900000px;}
.y15{bottom:72.930000px;}
.y2d{bottom:81.180000px;}
.y14{bottom:90.210000px;}
.y19{bottom:95.430000px;}
.y2c{bottom:98.505000px;}
.y13{bottom:105.150000px;}
.y2b{bottom:115.785000px;}
.y2a{bottom:133.065000px;}
.y29{bottom:150.165000px;}
.y9b{bottom:159.300000px;}
.y41{bottom:164.730000px;}
.y28{bottom:167.445000px;}
.yba{bottom:173.190000px;}
.y38{bottom:176.625000px;}
.y74{bottom:181.110000px;}
.y40{bottom:183.630000px;}
.y9a{bottom:183.810000px;}
.y27{bottom:184.725000px;}
.ye5{bottom:186.330000px;}
.yb9{bottom:191.190000px;}
.y37{bottom:193.725000px;}
.yac{bottom:199.650000px;}
.y99{bottom:201.990000px;}
.y26{bottom:202.005000px;}
.y3f{bottom:202.710000px;}
.ye4{bottom:207.210000px;}
.y73{bottom:208.290000px;}
.y36{bottom:211.005000px;}
.y25{bottom:219.285000px;}
.y98{bottom:220.170000px;}
.y3e{bottom:221.610000px;}
.ye3{bottom:223.590000px;}
.yab{bottom:226.830000px;}
.y35{bottom:228.285000px;}
.y72{bottom:231.870000px;}
.y24{bottom:236.565000px;}
.y97{bottom:238.170000px;}
.y70{bottom:239.250000px;}
.ye2{bottom:239.970000px;}
.y3d{bottom:240.690000px;}
.y6f{bottom:242.490000px;}
.yaa{bottom:245.010000px;}
.y34{bottom:245.565000px;}
.y23{bottom:253.665000px;}
.y96{bottom:256.350000px;}
.y3c{bottom:259.590000px;}
.y71{bottom:260.670000px;}
.ye1{bottom:260.850000px;}
.y33{bottom:262.845000px;}
.ya9{bottom:263.190000px;}
.y39{bottom:268.065000px;}
.y22{bottom:270.945000px;}
.y94{bottom:275.250000px;}
.ye0{bottom:277.230000px;}
.y32{bottom:277.785000px;}
.ya8{bottom:281.190000px;}
.y6e{bottom:282.450000px;}
.y3b{bottom:287.310000px;}
.y21{bottom:288.225000px;}
.ydf{bottom:298.110000px;}
.ya7{bottom:299.370000px;}
.y20{bottom:305.505000px;}
.y3a{bottom:306.030000px;}
.y93{bottom:306.390000px;}
.y6d{bottom:309.630000px;}
.yde{bottom:314.490000px;}
.ya6{bottom:317.550000px;}
.y1a{bottom:322.410000px;}
.y1f{bottom:322.785000px;}
.y6c{bottom:327.810000px;}
.y92{bottom:333.570000px;}
.ya5{bottom:335.550000px;}
.y1e{bottom:339.915000px;}
.y91{bottom:351.750000px;}
.y6b{bottom:354.990000px;}
.ydd{bottom:356.430000px;}
.y1d{bottom:357.195000px;}
.ya4{bottom:362.730000px;}
.y90{bottom:369.750000px;}
.y1c{bottom:374.475000px;}
.ydc{bottom:377.310000px;}
.y6a{bottom:382.710000px;}
.y8f{bottom:387.930000px;}
.y1b{bottom:389.415000px;}
.ya3{bottom:390.630000px;}
.ydb{bottom:398.190000px;}
.y69{bottom:400.890000px;}
.y8e{bottom:405.930000px;}
.ya2{bottom:414.435000px;}
.yda{bottom:414.615000px;}
.y8d{bottom:424.155000px;}
.y68{bottom:428.115000px;}
.yd9{bottom:435.495000px;}
.yb8{bottom:442.155000px;}
.y8c{bottom:442.335000px;}
.yd8{bottom:451.875000px;}
.y67{bottom:456.195000px;}
.yb7{bottom:460.335000px;}
.y8b{bottom:469.515000px;}
.yd7{bottom:472.755000px;}
.yb6{bottom:478.515000px;}
.y66{bottom:493.095000px;}
.yd6{bottom:493.635000px;}
.yb5{bottom:496.515000px;}
.y8a{bottom:497.415000px;}
.yd5{bottom:510.015000px;}
.y65{bottom:512.175000px;}
.yb4{bottom:523.695000px;}
.y89{bottom:525.315000px;}
.yd4{bottom:530.895000px;}
.y64{bottom:531.255000px;}
.y88{bottom:543.495000px;}
.yd3{bottom:547.275000px;}
.y63{bottom:550.155000px;}
.yb3{bottom:551.595000px;}
.y87{bottom:561.495000px;}
.yd2{bottom:563.655000px;}
.yb2{bottom:569.775000px;}
.y62{bottom:573.555000px;}
.y86{bottom:579.675000px;}
.yd1{bottom:584.535000px;}
.yb1{bottom:587.955000px;}
.y61{bottom:592.635000px;}
.y85{bottom:597.855000px;}
.yd0{bottom:600.915000px;}
.y12{bottom:606.675000px;}
.y60{bottom:611.535000px;}
.yb0{bottom:614.955000px;}
.ycf{bottom:621.795000px;}
.y84{bottom:625.035000px;}
.y5f{bottom:630.615000px;}
.yaf{bottom:638.715000px;}
.yce{bottom:642.675000px;}
.y5e{bottom:649.515000px;}
.y83{bottom:652.755000px;}
.ycd{bottom:659.085000px;}
.y5d{bottom:668.625000px;}
.y82{bottom:679.785000px;}
.ycc{bottom:679.965000px;}
.y5c{bottom:687.525000px;}
.y80{bottom:690.405000px;}
.ycb{bottom:696.345000px;}
.y81{bottom:699.225000px;}
.y5b{bottom:706.425000px;}
.y10{bottom:718.305000px;}
.y5a{bottom:725.505000px;}
.y7f{bottom:727.665000px;}
.yca{bottom:731.265000px;}
.y59{bottom:744.405000px;}
.y7e{bottom:754.665000px;}
.yc9{bottom:759.165000px;}
.yf{bottom:762.765000px;}
.y58{bottom:763.485000px;}
.ye{bottom:780.045000px;}
.y7d{bottom:781.845000px;}
.y57{bottom:782.385000px;}
.yc8{bottom:787.065000px;}
.ya1{bottom:792.465000px;}
.yd{bottom:797.325000px;}
.y56{bottom:801.465000px;}
.y7c{bottom:809.385000px;}
.yc{bottom:814.605000px;}
.yc7{bottom:814.965000px;}
.ya0{bottom:816.045000px;}
.y55{bottom:820.365000px;}
.y7b{bottom:832.965000px;}
.yc6{bottom:833.145000px;}
.yb{bottom:838.005000px;}
.y54{bottom:839.265000px;}
.ya{bottom:856.185000px;}
.y53{bottom:858.345000px;}
.yc5{bottom:860.325000px;}
.y9{bottom:874.185000px;}
.yae{bottom:875.985000px;}
.y52{bottom:877.245000px;}
.yc4{bottom:888.225000px;}
.yad{bottom:899.745000px;}
.y51{bottom:900.690000px;}
.yc3{bottom:906.450000px;}
.y8{bottom:911.670000px;}
.y50{bottom:919.770000px;}
.yf1{bottom:924.270000px;}
.yc2{bottom:924.450000px;}
.y4f{bottom:938.670000px;}
.yc1{bottom:942.630000px;}
.y7{bottom:944.430000px;}
.yf0{bottom:948.570000px;}
.y4e{bottom:957.750000px;}
.yc0{bottom:960.630000px;}
.yef{bottom:964.950000px;}
.y6{bottom:965.130000px;}
.y4d{bottom:976.650000px;}
.ybf{bottom:978.810000px;}
.yee{bottom:985.830000px;}
.y4c{bottom:995.730000px;}
.ybe{bottom:996.990000px;}
.y5{bottom:1003.830000px;}
.yed{bottom:1006.710000px;}
.y7a{bottom:1013.190000px;}
.y4b{bottom:1014.630000px;}
.ybd{bottom:1014.990000px;}
.yec{bottom:1027.590000px;}
.ybc{bottom:1033.170000px;}
.y4a{bottom:1033.530000px;}
.y4{bottom:1038.570000px;}
.y79{bottom:1040.190000px;}
.yeb{bottom:1043.970000px;}
.ybb{bottom:1051.350000px;}
.y49{bottom:1052.610000px;}
.y78{bottom:1058.370000px;}
.yea{bottom:1064.850000px;}
.y9f{bottom:1069.350000px;}
.y48{bottom:1071.510000px;}
.ye9{bottom:1081.230000px;}
.y77{bottom:1085.370000px;}
.y9e{bottom:1087.530000px;}
.y47{bottom:1090.590000px;}
.y76{bottom:1095.990000px;}
.ye8{bottom:1102.110000px;}
.y9d{bottom:1105.530000px;}
.y46{bottom:1113.810000px;}
.ye7{bottom:1118.490000px;}
.y9c{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.y75{bottom:1133.430000px;}
.ye6{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hd{height:17.657227px;}
.h1c{height:18.000000px;}
.h1d{height:18.180000px;}
.h17{height:38.228203px;}
.ha{height:40.500000px;}
.h6{height:41.304375px;}
.h5{height:48.802500px;}
.h15{height:53.398125px;}
.h20{height:55.824609px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h11{height:59.019609px;}
.h10{height:59.199609px;}
.h9{height:60.226875px;}
.h7{height:62.184375px;}
.h1f{height:63.019687px;}
.h2{height:65.010937px;}
.h1b{height:66.358125px;}
.hb{height:66.757500px;}
.h13{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.h1a{height:101.638125px;}
.h19{height:103.078125px;}
.h18{height:104.664375px;}
.hc{height:109.476000px;}
.h16{height:114.598125px;}
.h14{height:153.341016px;}
.h1e{height:238.530000px;}
.h12{height:281.910000px;}
.hf{height:393.735000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w3{width:237.990000px;}
.w7{width:239.430000px;}
.w8{width:259.230000px;}
.w6{width:342.435000px;}
.w9{width:396.615000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x2c{left:17.820000px;}
.x1e{left:70.920000px;}
.x1f{left:87.660000px;}
.x20{left:91.620000px;}
.x5{left:108.035987px;}
.x29{left:118.836000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x1c{left:155.730000px;}
.xc{left:158.969987px;}
.xa{left:185.250000px;}
.x15{left:210.089987px;}
.x2a{left:217.299000px;}
.x24{left:261.209987px;}
.x26{left:263.009987px;}
.x17{left:276.509987px;}
.x28{left:286.274987px;}
.x1b{left:300.134987px;}
.xe{left:309.494987px;}
.x18{left:310.934987px;}
.x3{left:314.354987px;}
.xf{left:315.614987px;}
.x22{left:317.234987px;}
.x12{left:331.094987px;}
.x19{left:352.334987px;}
.x8{left:360.795000px;}
.x11{left:363.494987px;}
.x10{left:371.414987px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x13{left:383.114987px;}
.x2b{left:388.335000px;}
.x1a{left:394.454987px;}
.x14{left:425.594987px;}
.x1d{left:498.165000px;}
.x21{left:616.424987px;}
.x25{left:658.229987px;}
.x27{left:662.729987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x23{left:763.889987px;}
.x4{left:781.349987px;}
.x16{left:820.409987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v7{vertical-align:-13.440000pt;}
.v8{vertical-align:-11.520000pt;}
.va{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.120000pt;}
.v5{vertical-align:11.520000pt;}
.v4{vertical-align:18.720000pt;}
.v2{vertical-align:21.120000pt;}
.v9{vertical-align:37.760000pt;}
.v6{vertical-align:42.880000pt;}
.vc{vertical-align:44.160000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.297067pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.117867pt;}
.ls1b{letter-spacing:-0.048640pt;}
.ls17{letter-spacing:-0.046080pt;}
.ls19{letter-spacing:-0.024320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:2.254720pt;}
.ls12{letter-spacing:2.904960pt;}
.lsf{letter-spacing:4.008320pt;}
.ls6{letter-spacing:14.888960pt;}
.lse{letter-spacing:14.958720pt;}
.ls15{letter-spacing:15.045120pt;}
.ls14{letter-spacing:15.528960pt;}
.ls11{letter-spacing:15.704960pt;}
.ls13{letter-spacing:18.158720pt;}
.ls10{letter-spacing:18.264960pt;}
.ls5{letter-spacing:18.885120pt;}
.lsd{letter-spacing:19.126400pt;}
.ls8{letter-spacing:78.878720pt;}
.ws10{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.080000pt;}
.wse{word-spacing:-14.033920pt;}
.wsd{word-spacing:-13.782933pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.640000pt;}
.ws13{word-spacing:-12.615680pt;}
.ws8{word-spacing:-12.390400pt;}
.ws12{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.272533pt;}
.ws0{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:-0.701440pt;}
.ws9{word-spacing:-0.122880pt;}
.wsc{word-spacing:-0.061440pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:2.498560pt;}
._16{margin-left:-5.703040pt;}
._14{margin-left:-4.357120pt;}
._2{margin-left:-2.638080pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.294933pt;}
._7{width:2.390400pt;}
._6{width:3.645227pt;}
._c{width:5.102080pt;}
._b{width:6.108800pt;}
._a{width:7.064960pt;}
._17{width:7.994880pt;}
._11{width:8.890880pt;}
._12{width:10.076160pt;}
._f{width:11.048960pt;}
._10{width:11.959253pt;}
._13{width:13.049173pt;}
._3{width:14.377813pt;}
._15{width:15.662080pt;}
._d{width:17.031467pt;}
._5{width:18.174933pt;}
._4{width:19.760640pt;}
._e{width:21.015467pt;}
._8{width:22.555947pt;}
._9{width:23.658453pt;}
._18{width:52.389973pt;}
.fs7{font-size:16.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fsb{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:2.880000pt;}
.y95{bottom:3.040000pt;}
.y11{bottom:12.800000pt;}
.y18{bottom:18.880000pt;}
.y30{bottom:26.080000pt;}
.y17{bottom:34.240000pt;}
.y2f{bottom:41.440000pt;}
.y16{bottom:49.466667pt;}
.y2e{bottom:56.800000pt;}
.y15{bottom:64.826667pt;}
.y2d{bottom:72.160000pt;}
.y14{bottom:80.186667pt;}
.y19{bottom:84.826667pt;}
.y2c{bottom:87.560000pt;}
.y13{bottom:93.466667pt;}
.y2b{bottom:102.920000pt;}
.y2a{bottom:118.280000pt;}
.y29{bottom:133.480000pt;}
.y9b{bottom:141.600000pt;}
.y41{bottom:146.426667pt;}
.y28{bottom:148.840000pt;}
.yba{bottom:153.946667pt;}
.y38{bottom:157.000000pt;}
.y74{bottom:160.986667pt;}
.y40{bottom:163.226667pt;}
.y9a{bottom:163.386667pt;}
.y27{bottom:164.200000pt;}
.ye5{bottom:165.626667pt;}
.yb9{bottom:169.946667pt;}
.y37{bottom:172.200000pt;}
.yac{bottom:177.466667pt;}
.y99{bottom:179.546667pt;}
.y26{bottom:179.560000pt;}
.y3f{bottom:180.186667pt;}
.ye4{bottom:184.186667pt;}
.y73{bottom:185.146667pt;}
.y36{bottom:187.560000pt;}
.y25{bottom:194.920000pt;}
.y98{bottom:195.706667pt;}
.y3e{bottom:196.986667pt;}
.ye3{bottom:198.746667pt;}
.yab{bottom:201.626667pt;}
.y35{bottom:202.920000pt;}
.y72{bottom:206.106667pt;}
.y24{bottom:210.280000pt;}
.y97{bottom:211.706667pt;}
.y70{bottom:212.666667pt;}
.ye2{bottom:213.306667pt;}
.y3d{bottom:213.946667pt;}
.y6f{bottom:215.546667pt;}
.yaa{bottom:217.786667pt;}
.y34{bottom:218.280000pt;}
.y23{bottom:225.480000pt;}
.y96{bottom:227.866667pt;}
.y3c{bottom:230.746667pt;}
.y71{bottom:231.706667pt;}
.ye1{bottom:231.866667pt;}
.y33{bottom:233.640000pt;}
.ya9{bottom:233.946667pt;}
.y39{bottom:238.280000pt;}
.y22{bottom:240.840000pt;}
.y94{bottom:244.666667pt;}
.ye0{bottom:246.426667pt;}
.y32{bottom:246.920000pt;}
.ya8{bottom:249.946667pt;}
.y6e{bottom:251.066667pt;}
.y3b{bottom:255.386667pt;}
.y21{bottom:256.200000pt;}
.ydf{bottom:264.986667pt;}
.ya7{bottom:266.106667pt;}
.y20{bottom:271.560000pt;}
.y3a{bottom:272.026667pt;}
.y93{bottom:272.346667pt;}
.y6d{bottom:275.226667pt;}
.yde{bottom:279.546667pt;}
.ya6{bottom:282.266667pt;}
.y1a{bottom:286.586667pt;}
.y1f{bottom:286.920000pt;}
.y6c{bottom:291.386667pt;}
.y92{bottom:296.506667pt;}
.ya5{bottom:298.266667pt;}
.y1e{bottom:302.146667pt;}
.y91{bottom:312.666667pt;}
.y6b{bottom:315.546667pt;}
.ydd{bottom:316.826667pt;}
.y1d{bottom:317.506667pt;}
.ya4{bottom:322.426667pt;}
.y90{bottom:328.666667pt;}
.y1c{bottom:332.866667pt;}
.ydc{bottom:335.386667pt;}
.y6a{bottom:340.186667pt;}
.y8f{bottom:344.826667pt;}
.y1b{bottom:346.146667pt;}
.ya3{bottom:347.226667pt;}
.ydb{bottom:353.946667pt;}
.y69{bottom:356.346667pt;}
.y8e{bottom:360.826667pt;}
.ya2{bottom:368.386667pt;}
.yda{bottom:368.546667pt;}
.y8d{bottom:377.026667pt;}
.y68{bottom:380.546667pt;}
.yd9{bottom:387.106667pt;}
.yb8{bottom:393.026667pt;}
.y8c{bottom:393.186667pt;}
.yd8{bottom:401.666667pt;}
.y67{bottom:405.506667pt;}
.yb7{bottom:409.186667pt;}
.y8b{bottom:417.346667pt;}
.yd7{bottom:420.226667pt;}
.yb6{bottom:425.346667pt;}
.y66{bottom:438.306667pt;}
.yd6{bottom:438.786667pt;}
.yb5{bottom:441.346667pt;}
.y8a{bottom:442.146667pt;}
.yd5{bottom:453.346667pt;}
.y65{bottom:455.266667pt;}
.yb4{bottom:465.506667pt;}
.y89{bottom:466.946667pt;}
.yd4{bottom:471.906667pt;}
.y64{bottom:472.226667pt;}
.y88{bottom:483.106667pt;}
.yd3{bottom:486.466667pt;}
.y63{bottom:489.026667pt;}
.yb3{bottom:490.306667pt;}
.y87{bottom:499.106667pt;}
.yd2{bottom:501.026667pt;}
.yb2{bottom:506.466667pt;}
.y62{bottom:509.826667pt;}
.y86{bottom:515.266667pt;}
.yd1{bottom:519.586667pt;}
.yb1{bottom:522.626667pt;}
.y61{bottom:526.786667pt;}
.y85{bottom:531.426667pt;}
.yd0{bottom:534.146667pt;}
.y12{bottom:539.266667pt;}
.y60{bottom:543.586667pt;}
.yb0{bottom:546.626667pt;}
.ycf{bottom:552.706667pt;}
.y84{bottom:555.586667pt;}
.y5f{bottom:560.546667pt;}
.yaf{bottom:567.746667pt;}
.yce{bottom:571.266667pt;}
.y5e{bottom:577.346667pt;}
.y83{bottom:580.226667pt;}
.ycd{bottom:585.853333pt;}
.y5d{bottom:594.333333pt;}
.y82{bottom:604.253333pt;}
.ycc{bottom:604.413333pt;}
.y5c{bottom:611.133333pt;}
.y80{bottom:613.693333pt;}
.ycb{bottom:618.973333pt;}
.y81{bottom:621.533333pt;}
.y5b{bottom:627.933333pt;}
.y10{bottom:638.493333pt;}
.y5a{bottom:644.893333pt;}
.y7f{bottom:646.813333pt;}
.yca{bottom:650.013333pt;}
.y59{bottom:661.693333pt;}
.y7e{bottom:670.813333pt;}
.yc9{bottom:674.813333pt;}
.yf{bottom:678.013333pt;}
.y58{bottom:678.653333pt;}
.ye{bottom:693.373333pt;}
.y7d{bottom:694.973333pt;}
.y57{bottom:695.453333pt;}
.yc8{bottom:699.613333pt;}
.ya1{bottom:704.413333pt;}
.yd{bottom:708.733333pt;}
.y56{bottom:712.413333pt;}
.y7c{bottom:719.453333pt;}
.yc{bottom:724.093333pt;}
.yc7{bottom:724.413333pt;}
.ya0{bottom:725.373333pt;}
.y55{bottom:729.213333pt;}
.y7b{bottom:740.413333pt;}
.yc6{bottom:740.573333pt;}
.yb{bottom:744.893333pt;}
.y54{bottom:746.013333pt;}
.ya{bottom:761.053333pt;}
.y53{bottom:762.973333pt;}
.yc5{bottom:764.733333pt;}
.y9{bottom:777.053333pt;}
.yae{bottom:778.653333pt;}
.y52{bottom:779.773333pt;}
.yc4{bottom:789.533333pt;}
.yad{bottom:799.773333pt;}
.y51{bottom:800.613333pt;}
.yc3{bottom:805.733333pt;}
.y8{bottom:810.373333pt;}
.y50{bottom:817.573333pt;}
.yf1{bottom:821.573333pt;}
.yc2{bottom:821.733333pt;}
.y4f{bottom:834.373333pt;}
.yc1{bottom:837.893333pt;}
.y7{bottom:839.493333pt;}
.yf0{bottom:843.173333pt;}
.y4e{bottom:851.333333pt;}
.yc0{bottom:853.893333pt;}
.yef{bottom:857.733333pt;}
.y6{bottom:857.893333pt;}
.y4d{bottom:868.133333pt;}
.ybf{bottom:870.053333pt;}
.yee{bottom:876.293333pt;}
.y4c{bottom:885.093333pt;}
.ybe{bottom:886.213333pt;}
.y5{bottom:892.293333pt;}
.yed{bottom:894.853333pt;}
.y7a{bottom:900.613333pt;}
.y4b{bottom:901.893333pt;}
.ybd{bottom:902.213333pt;}
.yec{bottom:913.413333pt;}
.ybc{bottom:918.373333pt;}
.y4a{bottom:918.693333pt;}
.y4{bottom:923.173333pt;}
.y79{bottom:924.613333pt;}
.yeb{bottom:927.973333pt;}
.ybb{bottom:934.533333pt;}
.y49{bottom:935.653333pt;}
.y78{bottom:940.773333pt;}
.yea{bottom:946.533333pt;}
.y9f{bottom:950.533333pt;}
.y48{bottom:952.453333pt;}
.ye9{bottom:961.093333pt;}
.y77{bottom:964.773333pt;}
.y9e{bottom:966.693333pt;}
.y47{bottom:969.413333pt;}
.y76{bottom:974.213333pt;}
.ye8{bottom:979.653333pt;}
.y9d{bottom:982.693333pt;}
.y46{bottom:990.053333pt;}
.ye7{bottom:994.213333pt;}
.y9c{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.y75{bottom:1007.493333pt;}
.ye6{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hd{height:15.695312pt;}
.h1c{height:16.000000pt;}
.h1d{height:16.160000pt;}
.h17{height:33.980625pt;}
.ha{height:36.000000pt;}
.h6{height:36.715000pt;}
.h5{height:43.380000pt;}
.h15{height:47.465000pt;}
.h20{height:49.621875pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h11{height:52.461875pt;}
.h10{height:52.621875pt;}
.h9{height:53.535000pt;}
.h7{height:55.275000pt;}
.h1f{height:56.017500pt;}
.h2{height:57.787500pt;}
.h1b{height:58.985000pt;}
.hb{height:59.340000pt;}
.h13{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.h1a{height:90.345000pt;}
.h19{height:91.625000pt;}
.h18{height:93.035000pt;}
.hc{height:97.312000pt;}
.h16{height:101.865000pt;}
.h14{height:136.303125pt;}
.h1e{height:212.026667pt;}
.h12{height:250.586667pt;}
.hf{height:349.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w3{width:211.546667pt;}
.w7{width:212.826667pt;}
.w8{width:230.426667pt;}
.w6{width:304.386667pt;}
.w9{width:352.546667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x2c{left:15.840000pt;}
.x1e{left:63.040000pt;}
.x1f{left:77.920000pt;}
.x20{left:81.440000pt;}
.x5{left:96.031988pt;}
.x29{left:105.632000pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x1c{left:138.426667pt;}
.xc{left:141.306655pt;}
.xa{left:164.666667pt;}
.x15{left:186.746655pt;}
.x2a{left:193.154667pt;}
.x24{left:232.186655pt;}
.x26{left:233.786655pt;}
.x17{left:245.786655pt;}
.x28{left:254.466655pt;}
.x1b{left:266.786655pt;}
.xe{left:275.106655pt;}
.x18{left:276.386655pt;}
.x3{left:279.426655pt;}
.xf{left:280.546655pt;}
.x22{left:281.986655pt;}
.x12{left:294.306655pt;}
.x19{left:313.186655pt;}
.x8{left:320.706667pt;}
.x11{left:323.106655pt;}
.x10{left:330.146655pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x13{left:340.546655pt;}
.x2b{left:345.186667pt;}
.x1a{left:350.626655pt;}
.x14{left:378.306655pt;}
.x1d{left:442.813333pt;}
.x21{left:547.933322pt;}
.x25{left:585.093322pt;}
.x27{left:589.093322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x23{left:679.013322pt;}
.x4{left:694.533322pt;}
.x16{left:729.253322pt;}
}




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