
    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_08d8457e630c17ac8640f118.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_53377a2e1c32266ee902b25a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0df4430dd181ebbb671f868e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_a2459edd02a91dfe7ef336b9.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_92f5d98f0380152839df0787.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957520;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:ff9;src:url('chunks/assets/font_8af2443215fd07770ea19f4f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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:ffa;src:url('chunks/assets/font_21e7456cc0dff7f5f3378d7f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.235920px;}
.ls6{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:11.466720px;}
.ls7{letter-spacing:16.506720px;}
.lse{letter-spacing:41.682720px;}
.ls8{letter-spacing:91.362720px;}
.lsa{letter-spacing:126.156000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-3.760800px;}
._e{margin-left:-2.725680px;}
._0{margin-left:-1.376880px;}
._2{width:1.489920px;}
._8{width:2.513760px;}
._1{width:3.855840px;}
._c{width:5.143440px;}
._d{width:6.212640px;}
._7{width:7.233360px;}
._6{width:8.246880px;}
._b{width:10.042080px;}
._a{width:11.533680px;}
._12{width:12.608640px;}
._11{width:13.928880px;}
._f{width:16.199040px;}
._10{width:17.270640px;}
._13{width:19.003680px;}
._16{width:20.961840px;}
._14{width:22.055520px;}
._15{width:23.481600px;}
._18{width:25.103280px;}
._1e{width:26.413920px;}
._1f{width:30.123120px;}
._1c{width:43.027200px;}
._19{width:45.298080px;}
._1a{width:46.373760px;}
._1d{width:81.277680px;}
._5{width:85.656000px;}
._1b{width:89.703840px;}
._17{width:118.030080px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.240000px;}
.y99{bottom:3.285000px;}
.y93{bottom:11.700000px;}
.y9f{bottom:11.880000px;}
.y9a{bottom:11.925000px;}
.y92{bottom:20.340000px;}
.y9d{bottom:20.520000px;}
.y98{bottom:20.565000px;}
.yb{bottom:36.720000px;}
.y96{bottom:37.620000px;}
.y9c{bottom:37.800000px;}
.ya{bottom:56.880000px;}
.y9{bottom:75.456000px;}
.y90{bottom:112.176000px;}
.y6e{bottom:113.616000px;}
.yaf{bottom:116.676000px;}
.y3b{bottom:124.776000px;}
.y8f{bottom:129.276000px;}
.y6d{bottom:130.896000px;}
.yae{bottom:133.956000px;}
.y3a{bottom:141.876000px;}
.y8e{bottom:146.556000px;}
.y6c{bottom:148.176000px;}
.yad{bottom:151.230000px;}
.y39{bottom:159.150000px;}
.y8d{bottom:163.830000px;}
.y6b{bottom:165.450000px;}
.yac{bottom:168.510000px;}
.y38{bottom:178.590000px;}
.y8c{bottom:181.110000px;}
.y6a{bottom:182.730000px;}
.yab{bottom:185.610000px;}
.y37{bottom:195.870000px;}
.y8b{bottom:198.390000px;}
.y69{bottom:200.010000px;}
.yaa{bottom:202.890000px;}
.y36{bottom:213.150000px;}
.y8a{bottom:215.670000px;}
.y68{bottom:217.110000px;}
.ya9{bottom:220.170000px;}
.y35{bottom:230.430000px;}
.y89{bottom:232.770000px;}
.y67{bottom:234.390000px;}
.ya8{bottom:237.450000px;}
.y34{bottom:247.710000px;}
.y88{bottom:250.050000px;}
.y66{bottom:251.670000px;}
.ya7{bottom:254.730000px;}
.y33{bottom:264.990000px;}
.y87{bottom:267.330000px;}
.y65{bottom:268.950000px;}
.ya6{bottom:271.830000px;}
.y32{bottom:282.270000px;}
.y86{bottom:284.610000px;}
.y64{bottom:286.230000px;}
.ya5{bottom:291.630000px;}
.y31{bottom:299.370000px;}
.y85{bottom:301.890000px;}
.y63{bottom:303.330000px;}
.y30{bottom:316.650000px;}
.y84{bottom:319.215000px;}
.y62{bottom:320.655000px;}
.ya4{bottom:330.555000px;}
.y2f{bottom:333.975000px;}
.y83{bottom:336.315000px;}
.y61{bottom:337.935000px;}
.y2e{bottom:351.255000px;}
.y82{bottom:353.595000px;}
.y60{bottom:355.215000px;}
.y2d{bottom:368.535000px;}
.ya3{bottom:369.615000px;}
.y81{bottom:370.875000px;}
.y5f{bottom:372.495000px;}
.y2c{bottom:385.815000px;}
.y80{bottom:388.155000px;}
.y5e{bottom:389.775000px;}
.y2b{bottom:402.915000px;}
.y7f{bottom:405.435000px;}
.y5d{bottom:406.875000px;}
.ya2{bottom:408.675000px;}
.y2a{bottom:420.195000px;}
.y7e{bottom:422.535000px;}
.y5c{bottom:424.155000px;}
.y29{bottom:437.475000px;}
.y7d{bottom:439.815000px;}
.y5b{bottom:441.435000px;}
.y28{bottom:454.755000px;}
.y7c{bottom:457.095000px;}
.y5a{bottom:458.715000px;}
.ya1{bottom:466.995000px;}
.y27{bottom:472.035000px;}
.y7b{bottom:474.375000px;}
.y59{bottom:475.995000px;}
.y26{bottom:489.135000px;}
.y7a{bottom:491.655000px;}
.y58{bottom:493.275000px;}
.y25{bottom:506.415000px;}
.y79{bottom:508.935000px;}
.y57{bottom:510.375000px;}
.y24{bottom:523.695000px;}
.y78{bottom:526.035000px;}
.y56{bottom:527.655000px;}
.y23{bottom:540.975000px;}
.y77{bottom:543.315000px;}
.y55{bottom:544.935000px;}
.y22{bottom:558.255000px;}
.y76{bottom:560.595000px;}
.y54{bottom:562.215000px;}
.y21{bottom:575.565000px;}
.y75{bottom:577.905000px;}
.y53{bottom:579.525000px;}
.y20{bottom:592.665000px;}
.y74{bottom:595.185000px;}
.y52{bottom:596.805000px;}
.y1f{bottom:612.285000px;}
.y73{bottom:612.465000px;}
.y51{bottom:613.905000px;}
.y72{bottom:629.565000px;}
.y1e{bottom:629.925000px;}
.y50{bottom:631.185000px;}
.y71{bottom:646.845000px;}
.y4f{bottom:648.465000px;}
.y1d{bottom:648.825000px;}
.y70{bottom:664.125000px;}
.y4e{bottom:665.745000px;}
.y1c{bottom:667.905000px;}
.y6f{bottom:681.405000px;}
.y4d{bottom:683.025000px;}
.y1b{bottom:686.805000px;}
.y4c{bottom:700.125000px;}
.ya0{bottom:701.025000px;}
.y1a{bottom:705.885000px;}
.y4b{bottom:717.405000px;}
.y9e{bottom:722.805000px;}
.y19{bottom:724.785000px;}
.y4a{bottom:734.685000px;}
.y18{bottom:743.685000px;}
.y49{bottom:751.965000px;}
.y9b{bottom:761.685000px;}
.y17{bottom:762.765000px;}
.y48{bottom:769.245000px;}
.y16{bottom:781.665000px;}
.y47{bottom:786.525000px;}
.y15{bottom:800.745000px;}
.y46{bottom:803.625000px;}
.y97{bottom:818.025000px;}
.y14{bottom:819.690000px;}
.y45{bottom:820.950000px;}
.y44{bottom:838.230000px;}
.y13{bottom:838.590000px;}
.y43{bottom:855.510000px;}
.y95{bottom:857.130000px;}
.y12{bottom:857.670000px;}
.y42{bottom:872.790000px;}
.y11{bottom:876.570000px;}
.y41{bottom:890.070000px;}
.y10{bottom:895.650000px;}
.y40{bottom:907.170000px;}
.yf{bottom:914.190000px;}
.y91{bottom:915.630000px;}
.y3f{bottom:924.450000px;}
.ye{bottom:932.190000px;}
.y3e{bottom:941.730000px;}
.yd{bottom:952.890000px;}
.y3d{bottom:959.010000px;}
.yc{bottom:973.410000px;}
.y3c{bottom:976.290000px;}
.y8{bottom:994.650000px;}
.y7{bottom:1013.370000px;}
.y6{bottom:1029.210000px;}
.y5{bottom:1047.030000px;}
.y4{bottom:1063.770000px;}
.y3{bottom:1105.740000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.he{height:17.280000px;}
.ha{height:34.380000px;}
.h11{height:34.416000px;}
.h10{height:34.560000px;}
.hc{height:34.596000px;}
.h4{height:42.164648px;}
.h9{height:43.302656px;}
.h8{height:43.506914px;}
.hf{height:45.461953px;}
.h7{height:46.736719px;}
.h5{height:48.410156px;}
.h3{height:50.800781px;}
.hb{height:51.660000px;}
.hd{height:51.840000px;}
.h1{height:53.573906px;}
.h2{height:59.383125px;}
.h6{height:65.884219px;}
.h0{height:1188.000000px;}
.w2{width:2.700000px;}
.w4{width:3.780000px;}
.w3{width:25.560000px;}
.wc{width:28.620000px;}
.wb{width:38.880000px;}
.w11{width:39.060000px;}
.w7{width:40.500000px;}
.wf{width:51.300000px;}
.w8{width:51.480000px;}
.w9{width:58.140000px;}
.we{width:71.676000px;}
.w6{width:72.216000px;}
.w10{width:78.336000px;}
.wa{width:78.876000px;}
.w5{width:225.570000px;}
.wd{width:251.670000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:1.080000px;}
.x1{left:108.035986px;}
.x2d{left:110.376000px;}
.x2b{left:115.775986px;}
.x7{left:119.915986px;}
.x1d{left:121.716000px;}
.x18{left:122.975986px;}
.x2e{left:125.136000px;}
.x16{left:127.115986px;}
.x1b{left:128.735986px;}
.x2f{left:130.176000px;}
.x1f{left:131.616000px;}
.xc{left:133.775986px;}
.x2{left:135.755986px;}
.x30{left:158.070000px;}
.x17{left:162.029986px;}
.x20{left:164.550000px;}
.x31{left:167.970000px;}
.x4{left:169.769986px;}
.x32{left:172.830000px;}
.x21{left:175.530000px;}
.x8{left:178.949986px;}
.x22{left:180.390000px;}
.x2a{left:182.369986px;}
.x23{left:185.430000px;}
.x3a{left:195.869986px;}
.xd{left:206.669986px;}
.x9{left:207.929986px;}
.x11{left:235.649986px;}
.x10{left:252.389986px;}
.x3b{left:256.889986px;}
.x1c{left:303.914986px;}
.xe{left:335.234986px;}
.x14{left:352.334986px;}
.x13{left:357.914986px;}
.xf{left:361.154986px;}
.x19{left:365.114986px;}
.xb{left:368.714986px;}
.x12{left:370.874986px;}
.x2c{left:372.674986px;}
.x1a{left:385.634986px;}
.x15{left:387.794986px;}
.x6{left:409.034986px;}
.x24{left:413.175000px;}
.x3c{left:416.774986px;}
.x5{left:424.874986px;}
.x33{left:426.855000px;}
.xa{left:459.074986px;}
.x25{left:487.725000px;}
.x34{left:500.865000px;}
.x3{left:531.104986px;}
.x35{left:543.705000px;}
.x26{left:584.205000px;}
.x36{left:597.345000px;}
.x27{left:644.505000px;}
.x37{left:657.645000px;}
.x28{left:725.730000px;}
.x38{left:738.150000px;}
.x29{left:766.770000px;}
.x39{left:779.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.209707pt;}
.ls6{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:10.192640pt;}
.ls7{letter-spacing:14.672640pt;}
.lse{letter-spacing:37.051307pt;}
.ls8{letter-spacing:81.211307pt;}
.lsa{letter-spacing:112.138667pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-3.342933pt;}
._e{margin-left:-2.422827pt;}
._0{margin-left:-1.223893pt;}
._2{width:1.324373pt;}
._8{width:2.234453pt;}
._1{width:3.427413pt;}
._c{width:4.571947pt;}
._d{width:5.522347pt;}
._7{width:6.429653pt;}
._6{width:7.330560pt;}
._b{width:8.926293pt;}
._a{width:10.252160pt;}
._12{width:11.207680pt;}
._11{width:12.381227pt;}
._f{width:14.399147pt;}
._10{width:15.351680pt;}
._13{width:16.892160pt;}
._16{width:18.632747pt;}
._14{width:19.604907pt;}
._15{width:20.872533pt;}
._18{width:22.314027pt;}
._1e{width:23.479040pt;}
._1f{width:26.776107pt;}
._1c{width:38.246400pt;}
._19{width:40.264960pt;}
._1a{width:41.221120pt;}
._1d{width:72.246827pt;}
._5{width:76.138667pt;}
._1b{width:79.736747pt;}
._17{width:104.915627pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:2.880000pt;}
.y99{bottom:2.920000pt;}
.y93{bottom:10.400000pt;}
.y9f{bottom:10.560000pt;}
.y9a{bottom:10.600000pt;}
.y92{bottom:18.080000pt;}
.y9d{bottom:18.240000pt;}
.y98{bottom:18.280000pt;}
.yb{bottom:32.640000pt;}
.y96{bottom:33.440000pt;}
.y9c{bottom:33.600000pt;}
.ya{bottom:50.560000pt;}
.y9{bottom:67.072000pt;}
.y90{bottom:99.712000pt;}
.y6e{bottom:100.992000pt;}
.yaf{bottom:103.712000pt;}
.y3b{bottom:110.912000pt;}
.y8f{bottom:114.912000pt;}
.y6d{bottom:116.352000pt;}
.yae{bottom:119.072000pt;}
.y3a{bottom:126.112000pt;}
.y8e{bottom:130.272000pt;}
.y6c{bottom:131.712000pt;}
.yad{bottom:134.426667pt;}
.y39{bottom:141.466667pt;}
.y8d{bottom:145.626667pt;}
.y6b{bottom:147.066667pt;}
.yac{bottom:149.786667pt;}
.y38{bottom:158.746667pt;}
.y8c{bottom:160.986667pt;}
.y6a{bottom:162.426667pt;}
.yab{bottom:164.986667pt;}
.y37{bottom:174.106667pt;}
.y8b{bottom:176.346667pt;}
.y69{bottom:177.786667pt;}
.yaa{bottom:180.346667pt;}
.y36{bottom:189.466667pt;}
.y8a{bottom:191.706667pt;}
.y68{bottom:192.986667pt;}
.ya9{bottom:195.706667pt;}
.y35{bottom:204.826667pt;}
.y89{bottom:206.906667pt;}
.y67{bottom:208.346667pt;}
.ya8{bottom:211.066667pt;}
.y34{bottom:220.186667pt;}
.y88{bottom:222.266667pt;}
.y66{bottom:223.706667pt;}
.ya7{bottom:226.426667pt;}
.y33{bottom:235.546667pt;}
.y87{bottom:237.626667pt;}
.y65{bottom:239.066667pt;}
.ya6{bottom:241.626667pt;}
.y32{bottom:250.906667pt;}
.y86{bottom:252.986667pt;}
.y64{bottom:254.426667pt;}
.ya5{bottom:259.226667pt;}
.y31{bottom:266.106667pt;}
.y85{bottom:268.346667pt;}
.y63{bottom:269.626667pt;}
.y30{bottom:281.466667pt;}
.y84{bottom:283.746667pt;}
.y62{bottom:285.026667pt;}
.ya4{bottom:293.826667pt;}
.y2f{bottom:296.866667pt;}
.y83{bottom:298.946667pt;}
.y61{bottom:300.386667pt;}
.y2e{bottom:312.226667pt;}
.y82{bottom:314.306667pt;}
.y60{bottom:315.746667pt;}
.y2d{bottom:327.586667pt;}
.ya3{bottom:328.546667pt;}
.y81{bottom:329.666667pt;}
.y5f{bottom:331.106667pt;}
.y2c{bottom:342.946667pt;}
.y80{bottom:345.026667pt;}
.y5e{bottom:346.466667pt;}
.y2b{bottom:358.146667pt;}
.y7f{bottom:360.386667pt;}
.y5d{bottom:361.666667pt;}
.ya2{bottom:363.266667pt;}
.y2a{bottom:373.506667pt;}
.y7e{bottom:375.586667pt;}
.y5c{bottom:377.026667pt;}
.y29{bottom:388.866667pt;}
.y7d{bottom:390.946667pt;}
.y5b{bottom:392.386667pt;}
.y28{bottom:404.226667pt;}
.y7c{bottom:406.306667pt;}
.y5a{bottom:407.746667pt;}
.ya1{bottom:415.106667pt;}
.y27{bottom:419.586667pt;}
.y7b{bottom:421.666667pt;}
.y59{bottom:423.106667pt;}
.y26{bottom:434.786667pt;}
.y7a{bottom:437.026667pt;}
.y58{bottom:438.466667pt;}
.y25{bottom:450.146667pt;}
.y79{bottom:452.386667pt;}
.y57{bottom:453.666667pt;}
.y24{bottom:465.506667pt;}
.y78{bottom:467.586667pt;}
.y56{bottom:469.026667pt;}
.y23{bottom:480.866667pt;}
.y77{bottom:482.946667pt;}
.y55{bottom:484.386667pt;}
.y22{bottom:496.226667pt;}
.y76{bottom:498.306667pt;}
.y54{bottom:499.746667pt;}
.y21{bottom:511.613333pt;}
.y75{bottom:513.693333pt;}
.y53{bottom:515.133333pt;}
.y20{bottom:526.813333pt;}
.y74{bottom:529.053333pt;}
.y52{bottom:530.493333pt;}
.y1f{bottom:544.253333pt;}
.y73{bottom:544.413333pt;}
.y51{bottom:545.693333pt;}
.y72{bottom:559.613333pt;}
.y1e{bottom:559.933333pt;}
.y50{bottom:561.053333pt;}
.y71{bottom:574.973333pt;}
.y4f{bottom:576.413333pt;}
.y1d{bottom:576.733333pt;}
.y70{bottom:590.333333pt;}
.y4e{bottom:591.773333pt;}
.y1c{bottom:593.693333pt;}
.y6f{bottom:605.693333pt;}
.y4d{bottom:607.133333pt;}
.y1b{bottom:610.493333pt;}
.y4c{bottom:622.333333pt;}
.ya0{bottom:623.133333pt;}
.y1a{bottom:627.453333pt;}
.y4b{bottom:637.693333pt;}
.y9e{bottom:642.493333pt;}
.y19{bottom:644.253333pt;}
.y4a{bottom:653.053333pt;}
.y18{bottom:661.053333pt;}
.y49{bottom:668.413333pt;}
.y9b{bottom:677.053333pt;}
.y17{bottom:678.013333pt;}
.y48{bottom:683.773333pt;}
.y16{bottom:694.813333pt;}
.y47{bottom:699.133333pt;}
.y15{bottom:711.773333pt;}
.y46{bottom:714.333333pt;}
.y97{bottom:727.133333pt;}
.y14{bottom:728.613333pt;}
.y45{bottom:729.733333pt;}
.y44{bottom:745.093333pt;}
.y13{bottom:745.413333pt;}
.y43{bottom:760.453333pt;}
.y95{bottom:761.893333pt;}
.y12{bottom:762.373333pt;}
.y42{bottom:775.813333pt;}
.y11{bottom:779.173333pt;}
.y41{bottom:791.173333pt;}
.y10{bottom:796.133333pt;}
.y40{bottom:806.373333pt;}
.yf{bottom:812.613333pt;}
.y91{bottom:813.893333pt;}
.y3f{bottom:821.733333pt;}
.ye{bottom:828.613333pt;}
.y3e{bottom:837.093333pt;}
.yd{bottom:847.013333pt;}
.y3d{bottom:852.453333pt;}
.yc{bottom:865.253333pt;}
.y3c{bottom:867.813333pt;}
.y8{bottom:884.133333pt;}
.y7{bottom:900.773333pt;}
.y6{bottom:914.853333pt;}
.y5{bottom:930.693333pt;}
.y4{bottom:945.573333pt;}
.y3{bottom:982.880000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.he{height:15.360000pt;}
.ha{height:30.560000pt;}
.h11{height:30.592000pt;}
.h10{height:30.720000pt;}
.hc{height:30.752000pt;}
.h4{height:37.479688pt;}
.h9{height:38.491250pt;}
.h8{height:38.672812pt;}
.hf{height:40.410625pt;}
.h7{height:41.543750pt;}
.h5{height:43.031250pt;}
.h3{height:45.156250pt;}
.hb{height:45.920000pt;}
.hd{height:46.080000pt;}
.h1{height:47.621250pt;}
.h2{height:52.785000pt;}
.h6{height:58.563750pt;}
.h0{height:1056.000000pt;}
.w2{width:2.400000pt;}
.w4{width:3.360000pt;}
.w3{width:22.720000pt;}
.wc{width:25.440000pt;}
.wb{width:34.560000pt;}
.w11{width:34.720000pt;}
.w7{width:36.000000pt;}
.wf{width:45.600000pt;}
.w8{width:45.760000pt;}
.w9{width:51.680000pt;}
.we{width:63.712000pt;}
.w6{width:64.192000pt;}
.w10{width:69.632000pt;}
.wa{width:70.112000pt;}
.w5{width:200.506667pt;}
.wd{width:223.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:0.960000pt;}
.x1{left:96.031988pt;}
.x2d{left:98.112000pt;}
.x2b{left:102.911988pt;}
.x7{left:106.591988pt;}
.x1d{left:108.192000pt;}
.x18{left:109.311988pt;}
.x2e{left:111.232000pt;}
.x16{left:112.991988pt;}
.x1b{left:114.431988pt;}
.x2f{left:115.712000pt;}
.x1f{left:116.992000pt;}
.xc{left:118.911988pt;}
.x2{left:120.671988pt;}
.x30{left:140.506667pt;}
.x17{left:144.026655pt;}
.x20{left:146.266667pt;}
.x31{left:149.306667pt;}
.x4{left:150.906655pt;}
.x32{left:153.626667pt;}
.x21{left:156.026667pt;}
.x8{left:159.066655pt;}
.x22{left:160.346667pt;}
.x2a{left:162.106655pt;}
.x23{left:164.826667pt;}
.x3a{left:174.106655pt;}
.xd{left:183.706655pt;}
.x9{left:184.826655pt;}
.x11{left:209.466655pt;}
.x10{left:224.346655pt;}
.x3b{left:228.346655pt;}
.x1c{left:270.146655pt;}
.xe{left:297.986655pt;}
.x14{left:313.186655pt;}
.x13{left:318.146655pt;}
.xf{left:321.026655pt;}
.x19{left:324.546655pt;}
.xb{left:327.746655pt;}
.x12{left:329.666655pt;}
.x2c{left:331.266655pt;}
.x1a{left:342.786655pt;}
.x15{left:344.706655pt;}
.x6{left:363.586655pt;}
.x24{left:367.266667pt;}
.x3c{left:370.466655pt;}
.x5{left:377.666655pt;}
.x33{left:379.426667pt;}
.xa{left:408.066655pt;}
.x25{left:433.533333pt;}
.x34{left:445.213333pt;}
.x3{left:472.093321pt;}
.x35{left:483.293333pt;}
.x26{left:519.293333pt;}
.x36{left:530.973333pt;}
.x27{left:572.893333pt;}
.x37{left:584.573333pt;}
.x28{left:645.093333pt;}
.x38{left:656.133333pt;}
.x29{left:681.573333pt;}
.x39{left:692.773333pt;}
}




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