
    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_d1fb73e33af2a471092e73c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ecea80020c1d901edef445fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083984;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_1cef07820b3908850690a751.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.083984;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_b93283049952b3719a9b5b7b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e970b9f0c997fe5ae686a650.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_630a82583d2e00247c06b4f4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls6{letter-spacing:-1.440000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.612800px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-4.464000px;}
._e{margin-left:-3.116880px;}
._0{margin-left:-1.563120px;}
._1{width:1.203120px;}
._7{width:2.294640px;}
._5{width:3.672000px;}
._6{width:4.968000px;}
._f{width:6.912000px;}
._10{width:8.033760px;}
._11{width:9.164880px;}
._3{width:10.347120px;}
._2{width:11.592000px;}
._4{width:13.416000px;}
._19{width:14.592000px;}
._9{width:15.840000px;}
._17{width:16.899120px;}
._12{width:20.011680px;}
._8{width:22.176000px;}
._1a{width:23.184000px;}
._b{width:24.375120px;}
._18{width:25.403040px;}
._1b{width:26.672880px;}
._15{width:32.688000px;}
._16{width:33.696000px;}
._13{width:36.560160px;}
._14{width:37.725120px;}
._d{width:47.715120px;}
._c{width:49.032000px;}
._1e{width:69.696000px;}
._1f{width:71.136000px;}
._1d{width:82.841760px;}
._1c{width:84.075120px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:119.916000px;}
.y9b{bottom:120.636000px;}
.y25{bottom:123.876000px;}
.y53{bottom:125.676000px;}
.y24{bottom:146.196000px;}
.y52{bottom:146.376000px;}
.y6d{bottom:161.670000px;}
.y9a{bottom:165.450000px;}
.y51{bottom:167.070000px;}
.y23{bottom:168.510000px;}
.yb8{bottom:181.650000px;}
.y99{bottom:185.430000px;}
.y50{bottom:187.770000px;}
.y22{bottom:190.830000px;}
.yb7{bottom:202.350000px;}
.y6c{bottom:205.410000px;}
.y98{bottom:206.130000px;}
.y4f{bottom:208.470000px;}
.y21{bottom:213.150000px;}
.yb6{bottom:223.050000px;}
.y97{bottom:226.830000px;}
.y4e{bottom:229.170000px;}
.y20{bottom:235.470000px;}
.y6b{bottom:246.990000px;}
.y96{bottom:247.530000px;}
.y4d{bottom:249.870000px;}
.y1f{bottom:257.970000px;}
.yb5{bottom:265.170000px;}
.y6a{bottom:267.690000px;}
.y95{bottom:268.230000px;}
.y4c{bottom:270.570000px;}
.y1e{bottom:280.290000px;}
.y94{bottom:288.930000px;}
.y4b{bottom:291.270000px;}
.y1d{bottom:302.610000px;}
.y69{bottom:305.130000px;}
.y93{bottom:309.630000px;}
.yb4{bottom:309.990000px;}
.y4a{bottom:311.970000px;}
.y1c{bottom:324.930000px;}
.y92{bottom:330.330000px;}
.yb3{bottom:330.690000px;}
.y49{bottom:332.310000px;}
.y1b{bottom:347.295000px;}
.y91{bottom:351.075000px;}
.yb2{bottom:351.435000px;}
.y48{bottom:353.415000px;}
.y90{bottom:371.775000px;}
.yb1{bottom:372.135000px;}
.y47{bottom:374.115000px;}
.y1a{bottom:388.875000px;}
.y8f{bottom:392.475000px;}
.yb0{bottom:392.835000px;}
.y46{bottom:394.815000px;}
.y8e{bottom:413.175000px;}
.y45{bottom:415.515000px;}
.ycb{bottom:422.175000px;}
.y19{bottom:430.815000px;}
.y8d{bottom:433.875000px;}
.yaf{bottom:434.055000px;}
.y44{bottom:436.215000px;}
.y8c{bottom:454.575000px;}
.y43{bottom:456.915000px;}
.yca{bottom:463.215000px;}
.y18{bottom:472.575000px;}
.y8b{bottom:475.275000px;}
.yae{bottom:476.175000px;}
.y42{bottom:477.615000px;}
.y8a{bottom:495.975000px;}
.yad{bottom:496.875000px;}
.y41{bottom:498.315000px;}
.yc9{bottom:504.975000px;}
.y17{bottom:514.335000px;}
.y89{bottom:517.215000px;}
.yac{bottom:517.575000px;}
.y40{bottom:519.015000px;}
.yc8{bottom:525.675000px;}
.y16{bottom:535.035000px;}
.yab{bottom:538.275000px;}
.y3f{bottom:539.355000px;}
.y88{bottom:539.715000px;}
.yc7{bottom:546.375000px;}
.y15{bottom:555.735000px;}
.yaa{bottom:558.975000px;}
.y3e{bottom:560.055000px;}
.y87{bottom:560.955000px;}
.y14{bottom:576.255000px;}
.ya9{bottom:579.675000px;}
.y86{bottom:580.755000px;}
.y3d{bottom:581.115000px;}
.yc6{bottom:587.955000px;}
.y13{bottom:596.955000px;}
.ya8{bottom:600.375000px;}
.y85{bottom:601.455000px;}
.y3c{bottom:601.815000px;}
.y12{bottom:617.685000px;}
.ya7{bottom:621.105000px;}
.y84{bottom:622.185000px;}
.y3b{bottom:622.545000px;}
.yc5{bottom:629.745000px;}
.y11{bottom:638.385000px;}
.ya6{bottom:641.805000px;}
.y83{bottom:642.885000px;}
.y3a{bottom:643.245000px;}
.y10{bottom:659.085000px;}
.ya5{bottom:662.505000px;}
.y82{bottom:663.585000px;}
.y39{bottom:663.945000px;}
.yc4{bottom:671.505000px;}
.yf{bottom:679.785000px;}
.ya4{bottom:683.205000px;}
.y81{bottom:684.285000px;}
.y38{bottom:684.645000px;}
.y68{bottom:695.085000px;}
.ye{bottom:700.485000px;}
.y80{bottom:704.985000px;}
.y37{bottom:705.345000px;}
.yc3{bottom:714.705000px;}
.y67{bottom:715.785000px;}
.yd{bottom:721.185000px;}
.ya3{bottom:724.425000px;}
.y7f{bottom:725.685000px;}
.y36{bottom:726.045000px;}
.y66{bottom:736.485000px;}
.yc2{bottom:736.845000px;}
.yc{bottom:741.885000px;}
.y7e{bottom:746.385000px;}
.y35{bottom:746.745000px;}
.y65{bottom:757.185000px;}
.yc1{bottom:759.345000px;}
.yb{bottom:762.585000px;}
.ya2{bottom:766.545000px;}
.y7d{bottom:767.085000px;}
.y64{bottom:777.885000px;}
.y34{bottom:781.665000px;}
.ya{bottom:783.285000px;}
.ya1{bottom:787.245000px;}
.y7c{bottom:787.785000px;}
.yc0{bottom:793.725000px;}
.y63{bottom:798.585000px;}
.y33{bottom:807.765000px;}
.y7b{bottom:808.485000px;}
.ybf{bottom:815.865000px;}
.y62{bottom:819.105000px;}
.y9{bottom:824.685000px;}
.ya0{bottom:829.005000px;}
.y7a{bottom:829.185000px;}
.y32{bottom:833.865000px;}
.ybe{bottom:838.365000px;}
.y9f{bottom:849.705000px;}
.y79{bottom:849.885000px;}
.y61{bottom:861.045000px;}
.y8{bottom:868.785000px;}
.y9e{bottom:870.405000px;}
.y78{bottom:870.630000px;}
.y31{bottom:871.350000px;}
.ybd{bottom:872.790000px;}
.y60{bottom:885.390000px;}
.y77{bottom:891.330000px;}
.ybc{bottom:894.930000px;}
.y30{bottom:905.010000px;}
.y5f{bottom:909.510000px;}
.y76{bottom:912.030000px;}
.y7{bottom:923.550000px;}
.y2f{bottom:927.150000px;}
.ybb{bottom:929.490000px;}
.y75{bottom:932.730000px;}
.y5e{bottom:933.450000px;}
.y2e{bottom:949.470000px;}
.yba{bottom:951.630000px;}
.y9d{bottom:953.430000px;}
.y5d{bottom:954.150000px;}
.y6{bottom:958.290000px;}
.y2d{bottom:971.790000px;}
.yb9{bottom:973.950000px;}
.y74{bottom:974.490000px;}
.y5c{bottom:974.850000px;}
.y5{bottom:985.470000px;}
.y2c{bottom:994.110000px;}
.y9c{bottom:994.830000px;}
.y73{bottom:995.190000px;}
.y5b{bottom:995.550000px;}
.y4{bottom:1015.710000px;}
.y72{bottom:1015.890000px;}
.y5a{bottom:1016.250000px;}
.y2b{bottom:1028.670000px;}
.y71{bottom:1036.590000px;}
.y59{bottom:1036.950000px;}
.y2a{bottom:1050.810000px;}
.y3{bottom:1054.230000px;}
.y70{bottom:1057.290000px;}
.y58{bottom:1057.650000px;}
.y29{bottom:1073.130000px;}
.y6f{bottom:1077.990000px;}
.y57{bottom:1078.350000px;}
.y2{bottom:1091.490000px;}
.y28{bottom:1095.450000px;}
.y56{bottom:1099.050000px;}
.y27{bottom:1117.770000px;}
.y55{bottom:1119.750000px;}
.y1{bottom:1128.750000px;}
.y26{bottom:1140.300000px;}
.y54{bottom:1140.480000px;}
.h4{height:44.648438px;}
.h9{height:52.066406px;}
.h3{height:62.648438px;}
.h7{height:65.884219px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.ha{height:79.850391px;}
.h8{height:84.898125px;}
.h2{height:121.179375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:127.656000px;}
.x2{left:141.696000px;}
.x5{left:146.736000px;}
.xb{left:157.350000px;}
.x1{left:170.670000px;}
.xe{left:181.650000px;}
.x4{left:228.990000px;}
.xd{left:282.495000px;}
.xc{left:288.975000px;}
.x7{left:348.375000px;}
.x3{left:373.935000px;}
.x6{left:423.795000px;}
.x8{left:446.475000px;}
.xa{left:765.330000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.433600pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-3.968000pt;}
._e{margin-left:-2.770560pt;}
._0{margin-left:-1.389440pt;}
._1{width:1.069440pt;}
._7{width:2.039680pt;}
._5{width:3.264000pt;}
._6{width:4.416000pt;}
._f{width:6.144000pt;}
._10{width:7.141120pt;}
._11{width:8.146560pt;}
._3{width:9.197440pt;}
._2{width:10.304000pt;}
._4{width:11.925333pt;}
._19{width:12.970667pt;}
._9{width:14.080000pt;}
._17{width:15.021440pt;}
._12{width:17.788160pt;}
._8{width:19.712000pt;}
._1a{width:20.608000pt;}
._b{width:21.666773pt;}
._18{width:22.580480pt;}
._1b{width:23.709227pt;}
._15{width:29.056000pt;}
._16{width:29.952000pt;}
._13{width:32.497920pt;}
._14{width:33.533440pt;}
._d{width:42.413440pt;}
._c{width:43.584000pt;}
._1e{width:61.952000pt;}
._1f{width:63.232000pt;}
._1d{width:73.637120pt;}
._1c{width:74.733440pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:106.592000pt;}
.y9b{bottom:107.232000pt;}
.y25{bottom:110.112000pt;}
.y53{bottom:111.712000pt;}
.y24{bottom:129.952000pt;}
.y52{bottom:130.112000pt;}
.y6d{bottom:143.706667pt;}
.y9a{bottom:147.066667pt;}
.y51{bottom:148.506667pt;}
.y23{bottom:149.786667pt;}
.yb8{bottom:161.466667pt;}
.y99{bottom:164.826667pt;}
.y50{bottom:166.906667pt;}
.y22{bottom:169.626667pt;}
.yb7{bottom:179.866667pt;}
.y6c{bottom:182.586667pt;}
.y98{bottom:183.226667pt;}
.y4f{bottom:185.306667pt;}
.y21{bottom:189.466667pt;}
.yb6{bottom:198.266667pt;}
.y97{bottom:201.626667pt;}
.y4e{bottom:203.706667pt;}
.y20{bottom:209.306667pt;}
.y6b{bottom:219.546667pt;}
.y96{bottom:220.026667pt;}
.y4d{bottom:222.106667pt;}
.y1f{bottom:229.306667pt;}
.yb5{bottom:235.706667pt;}
.y6a{bottom:237.946667pt;}
.y95{bottom:238.426667pt;}
.y4c{bottom:240.506667pt;}
.y1e{bottom:249.146667pt;}
.y94{bottom:256.826667pt;}
.y4b{bottom:258.906667pt;}
.y1d{bottom:268.986667pt;}
.y69{bottom:271.226667pt;}
.y93{bottom:275.226667pt;}
.yb4{bottom:275.546667pt;}
.y4a{bottom:277.306667pt;}
.y1c{bottom:288.826667pt;}
.y92{bottom:293.626667pt;}
.yb3{bottom:293.946667pt;}
.y49{bottom:295.386667pt;}
.y1b{bottom:308.706667pt;}
.y91{bottom:312.066667pt;}
.yb2{bottom:312.386667pt;}
.y48{bottom:314.146667pt;}
.y90{bottom:330.466667pt;}
.yb1{bottom:330.786667pt;}
.y47{bottom:332.546667pt;}
.y1a{bottom:345.666667pt;}
.y8f{bottom:348.866667pt;}
.yb0{bottom:349.186667pt;}
.y46{bottom:350.946667pt;}
.y8e{bottom:367.266667pt;}
.y45{bottom:369.346667pt;}
.ycb{bottom:375.266667pt;}
.y19{bottom:382.946667pt;}
.y8d{bottom:385.666667pt;}
.yaf{bottom:385.826667pt;}
.y44{bottom:387.746667pt;}
.y8c{bottom:404.066667pt;}
.y43{bottom:406.146667pt;}
.yca{bottom:411.746667pt;}
.y18{bottom:420.066667pt;}
.y8b{bottom:422.466667pt;}
.yae{bottom:423.266667pt;}
.y42{bottom:424.546667pt;}
.y8a{bottom:440.866667pt;}
.yad{bottom:441.666667pt;}
.y41{bottom:442.946667pt;}
.yc9{bottom:448.866667pt;}
.y17{bottom:457.186667pt;}
.y89{bottom:459.746667pt;}
.yac{bottom:460.066667pt;}
.y40{bottom:461.346667pt;}
.yc8{bottom:467.266667pt;}
.y16{bottom:475.586667pt;}
.yab{bottom:478.466667pt;}
.y3f{bottom:479.426667pt;}
.y88{bottom:479.746667pt;}
.yc7{bottom:485.666667pt;}
.y15{bottom:493.986667pt;}
.yaa{bottom:496.866667pt;}
.y3e{bottom:497.826667pt;}
.y87{bottom:498.626667pt;}
.y14{bottom:512.226667pt;}
.ya9{bottom:515.266667pt;}
.y86{bottom:516.226667pt;}
.y3d{bottom:516.546667pt;}
.yc6{bottom:522.626667pt;}
.y13{bottom:530.626667pt;}
.ya8{bottom:533.666667pt;}
.y85{bottom:534.626667pt;}
.y3c{bottom:534.946667pt;}
.y12{bottom:549.053333pt;}
.ya7{bottom:552.093333pt;}
.y84{bottom:553.053333pt;}
.y3b{bottom:553.373333pt;}
.yc5{bottom:559.773333pt;}
.y11{bottom:567.453333pt;}
.ya6{bottom:570.493333pt;}
.y83{bottom:571.453333pt;}
.y3a{bottom:571.773333pt;}
.y10{bottom:585.853333pt;}
.ya5{bottom:588.893333pt;}
.y82{bottom:589.853333pt;}
.y39{bottom:590.173333pt;}
.yc4{bottom:596.893333pt;}
.yf{bottom:604.253333pt;}
.ya4{bottom:607.293333pt;}
.y81{bottom:608.253333pt;}
.y38{bottom:608.573333pt;}
.y68{bottom:617.853333pt;}
.ye{bottom:622.653333pt;}
.y80{bottom:626.653333pt;}
.y37{bottom:626.973333pt;}
.yc3{bottom:635.293333pt;}
.y67{bottom:636.253333pt;}
.yd{bottom:641.053333pt;}
.ya3{bottom:643.933333pt;}
.y7f{bottom:645.053333pt;}
.y36{bottom:645.373333pt;}
.y66{bottom:654.653333pt;}
.yc2{bottom:654.973333pt;}
.yc{bottom:659.453333pt;}
.y7e{bottom:663.453333pt;}
.y35{bottom:663.773333pt;}
.y65{bottom:673.053333pt;}
.yc1{bottom:674.973333pt;}
.yb{bottom:677.853333pt;}
.ya2{bottom:681.373333pt;}
.y7d{bottom:681.853333pt;}
.y64{bottom:691.453333pt;}
.y34{bottom:694.813333pt;}
.ya{bottom:696.253333pt;}
.ya1{bottom:699.773333pt;}
.y7c{bottom:700.253333pt;}
.yc0{bottom:705.533333pt;}
.y63{bottom:709.853333pt;}
.y33{bottom:718.013333pt;}
.y7b{bottom:718.653333pt;}
.ybf{bottom:725.213333pt;}
.y62{bottom:728.093333pt;}
.y9{bottom:733.053333pt;}
.ya0{bottom:736.893333pt;}
.y7a{bottom:737.053333pt;}
.y32{bottom:741.213333pt;}
.ybe{bottom:745.213333pt;}
.y9f{bottom:755.293333pt;}
.y79{bottom:755.453333pt;}
.y61{bottom:765.373333pt;}
.y8{bottom:772.253333pt;}
.y9e{bottom:773.693333pt;}
.y78{bottom:773.893333pt;}
.y31{bottom:774.533333pt;}
.ybd{bottom:775.813333pt;}
.y60{bottom:787.013333pt;}
.y77{bottom:792.293333pt;}
.ybc{bottom:795.493333pt;}
.y30{bottom:804.453333pt;}
.y5f{bottom:808.453333pt;}
.y76{bottom:810.693333pt;}
.y7{bottom:820.933333pt;}
.y2f{bottom:824.133333pt;}
.ybb{bottom:826.213333pt;}
.y75{bottom:829.093333pt;}
.y5e{bottom:829.733333pt;}
.y2e{bottom:843.973333pt;}
.yba{bottom:845.893333pt;}
.y9d{bottom:847.493333pt;}
.y5d{bottom:848.133333pt;}
.y6{bottom:851.813333pt;}
.y2d{bottom:863.813333pt;}
.yb9{bottom:865.733333pt;}
.y74{bottom:866.213333pt;}
.y5c{bottom:866.533333pt;}
.y5{bottom:875.973333pt;}
.y2c{bottom:883.653333pt;}
.y9c{bottom:884.293333pt;}
.y73{bottom:884.613333pt;}
.y5b{bottom:884.933333pt;}
.y4{bottom:902.853333pt;}
.y72{bottom:903.013333pt;}
.y5a{bottom:903.333333pt;}
.y2b{bottom:914.373333pt;}
.y71{bottom:921.413333pt;}
.y59{bottom:921.733333pt;}
.y2a{bottom:934.053333pt;}
.y3{bottom:937.093333pt;}
.y70{bottom:939.813333pt;}
.y58{bottom:940.133333pt;}
.y29{bottom:953.893333pt;}
.y6f{bottom:958.213333pt;}
.y57{bottom:958.533333pt;}
.y2{bottom:970.213333pt;}
.y28{bottom:973.733333pt;}
.y56{bottom:976.933333pt;}
.y27{bottom:993.573333pt;}
.y55{bottom:995.333333pt;}
.y1{bottom:1003.333333pt;}
.y26{bottom:1013.600000pt;}
.y54{bottom:1013.760000pt;}
.h4{height:39.687500pt;}
.h9{height:46.281250pt;}
.h3{height:55.687500pt;}
.h7{height:58.563750pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.ha{height:70.978125pt;}
.h8{height:75.465000pt;}
.h2{height:107.715000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:113.472000pt;}
.x2{left:125.952000pt;}
.x5{left:130.432000pt;}
.xb{left:139.866667pt;}
.x1{left:151.706667pt;}
.xe{left:161.466667pt;}
.x4{left:203.546667pt;}
.xd{left:251.106667pt;}
.xc{left:256.866667pt;}
.x7{left:309.666667pt;}
.x3{left:332.386667pt;}
.x6{left:376.706667pt;}
.x8{left:396.866667pt;}
.xa{left:680.293333pt;}
}




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