
    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_4dcf30c8c671ca978b7dfdc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_64ec96bcdb559a95bf662a3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_8762f4f24740f44120820d8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_356dea07c1260b1b0ba09cf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173340;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_0431b5c4ae710504a9e115c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680176;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_e753f5b54f0297ce28f4d218.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_eb21aefd04b63139039c0cea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.026855;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_77d7cb0ec667e1d77fc42cc8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.974609;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);}
.v2{vertical-align:-15.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls4{letter-spacing:-1.020000px;}
.lse{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.336000px;}
.ls3{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.456000px;}
.lsc{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.600000px;}
.ls0{letter-spacing:1.030800px;}
.ls1{letter-spacing:1.200000px;}
.lsa{letter-spacing:8.580000px;}
.ls6{letter-spacing:63.690000px;}
.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:-60.000000px;}
.ws2{word-spacing:-17.220000px;}
.ws8{word-spacing:-16.980000px;}
.ws5{word-spacing:-16.800000px;}
.ws7{word-spacing:-16.740000px;}
.ws0{word-spacing:-16.620000px;}
.ws6{word-spacing:-16.200000px;}
.ws4{word-spacing:-10.969200px;}
.ws9{word-spacing:-10.512000px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-9.270000px;}
._4{margin-left:-2.484000px;}
._1{margin-left:-1.296000px;}
._0{width:1.488000px;}
._5{width:2.760000px;}
._9{width:4.716000px;}
._13{width:5.778000px;}
._7{width:6.780000px;}
._8{width:7.920000px;}
._b{width:9.264000px;}
._a{width:10.440000px;}
._11{width:11.832000px;}
._20{width:12.942000px;}
._12{width:13.950000px;}
._1d{width:15.096000px;}
._f{width:17.676000px;}
._10{width:18.822000px;}
._14{width:20.226000px;}
._15{width:21.240000px;}
._1f{width:22.482000px;}
._21{width:23.586000px;}
._1b{width:25.380000px;}
._1c{width:27.084000px;}
._18{width:28.506000px;}
._17{width:29.592000px;}
._16{width:31.320000px;}
._22{width:32.868000px;}
._e{width:35.220000px;}
._d{width:36.552000px;}
._c{width:37.728000px;}
._23{width:39.468000px;}
._1a{width:47.520000px;}
._19{width:48.888000px;}
._3{width:199.152000px;}
._2{width:459.090000px;}
._6{width:460.278000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.000000px;}
.y9c{bottom:3.015000px;}
.y9a{bottom:3.300000px;}
.y2{bottom:9.300000px;}
.y25{bottom:12.600000px;}
.y9e{bottom:21.585000px;}
.ya1{bottom:21.600000px;}
.y29{bottom:26.400000px;}
.y27{bottom:40.215000px;}
.y24{bottom:40.245000px;}
.y7{bottom:56.700000px;}
.y3{bottom:72.930000px;}
.y6{bottom:82.800000px;}
.y5{bottom:105.000000px;}
.y5b{bottom:119.100000px;}
.yba{bottom:121.800000px;}
.y44{bottom:122.100000px;}
.ybb{bottom:122.700000px;}
.y5a{bottom:135.600000px;}
.yb8{bottom:145.500000px;}
.y43{bottom:149.400000px;}
.y22{bottom:152.100000px;}
.y7d{bottom:156.030000px;}
.y59{bottom:162.030000px;}
.yb7{bottom:163.245000px;}
.y93{bottom:172.830000px;}
.y42{bottom:177.030000px;}
.y7c{bottom:178.530000px;}
.y28{bottom:179.430000px;}
.yb6{bottom:179.745000px;}
.y92{bottom:195.330000px;}
.yb5{bottom:196.530000px;}
.y7b{bottom:201.945000px;}
.y41{bottom:204.630000px;}
.y58{bottom:204.945000px;}
.yb4{bottom:213.030000px;}
.y26{bottom:226.230000px;}
.y7a{bottom:229.530000px;}
.y40{bottom:232.245000px;}
.y57{bottom:232.530000px;}
.yb3{bottom:246.030000px;}
.y79{bottom:257.130000px;}
.y8c{bottom:259.530000px;}
.y3f{bottom:259.830000px;}
.y56{bottom:260.130000px;}
.yb2{bottom:262.530000px;}
.yb1{bottom:279.030000px;}
.y78{bottom:284.745000px;}
.y23{bottom:286.530000px;}
.y8b{bottom:287.130000px;}
.y3e{bottom:287.445000px;}
.y55{bottom:287.745000px;}
.yb0{bottom:295.830000px;}
.y77{bottom:312.375000px;}
.y8a{bottom:314.775000px;}
.y3d{bottom:315.075000px;}
.y54{bottom:315.375000px;}
.yaf{bottom:328.875000px;}
.y76{bottom:339.975000px;}
.y89{bottom:342.375000px;}
.y3c{bottom:342.675000px;}
.y53{bottom:342.975000px;}
.yae{bottom:345.375000px;}
.yad{bottom:361.875000px;}
.y75{bottom:367.575000px;}
.y88{bottom:369.975000px;}
.y3b{bottom:370.275000px;}
.y52{bottom:370.575000px;}
.y21{bottom:375.675000px;}
.yac{bottom:388.275000px;}
.y74{bottom:395.175000px;}
.y87{bottom:397.575000px;}
.y3a{bottom:397.875000px;}
.y51{bottom:398.175000px;}
.y20{bottom:403.275000px;}
.y73{bottom:422.775000px;}
.y86{bottom:425.175000px;}
.y39{bottom:425.475000px;}
.y50{bottom:425.775000px;}
.y1f{bottom:430.875000px;}
.y72{bottom:450.405000px;}
.yab{bottom:452.205000px;}
.y91{bottom:452.820000px;}
.y38{bottom:453.120000px;}
.y4f{bottom:453.405000px;}
.y1e{bottom:458.505000px;}
.y71{bottom:477.705000px;}
.yaa{bottom:479.820000px;}
.y85{bottom:480.405000px;}
.y37{bottom:480.705000px;}
.y4e{bottom:481.620000px;}
.y1d{bottom:486.120000px;}
.y70{bottom:505.320000px;}
.ya9{bottom:507.405000px;}
.y90{bottom:508.005000px;}
.y36{bottom:508.320000px;}
.y4d{bottom:509.205000px;}
.y1c{bottom:513.405000px;}
.y6f{bottom:532.905000px;}
.ya8{bottom:535.005000px;}
.y84{bottom:535.605000px;}
.y35{bottom:535.905000px;}
.y1b{bottom:541.005000px;}
.y6e{bottom:560.505000px;}
.ya7{bottom:562.605000px;}
.y83{bottom:563.205000px;}
.y4c{bottom:563.505000px;}
.y34{bottom:564.105000px;}
.y1a{bottom:568.605000px;}
.y6d{bottom:588.105000px;}
.ya6{bottom:590.205000px;}
.y8f{bottom:590.820000px;}
.y4b{bottom:591.105000px;}
.y33{bottom:591.705000px;}
.y19{bottom:596.205000px;}
.y6c{bottom:615.750000px;}
.ya5{bottom:617.850000px;}
.y32{bottom:618.450000px;}
.y4a{bottom:618.750000px;}
.y18{bottom:623.850000px;}
.ya4{bottom:633.750000px;}
.y6b{bottom:643.350000px;}
.y31{bottom:646.050000px;}
.y49{bottom:646.350000px;}
.y17{bottom:651.450000px;}
.ya3{bottom:652.650000px;}
.y6a{bottom:670.950000px;}
.y30{bottom:673.650000px;}
.y48{bottom:673.950000px;}
.y16{bottom:679.050000px;}
.ya2{bottom:690.150000px;}
.y69{bottom:698.550000px;}
.y2f{bottom:701.250000px;}
.y47{bottom:701.550000px;}
.y15{bottom:706.650000px;}
.ya0{bottom:709.350000px;}
.y68{bottom:726.150000px;}
.y2e{bottom:728.850000px;}
.y82{bottom:729.150000px;}
.y46{bottom:729.750000px;}
.y14{bottom:734.250000px;}
.y9f{bottom:746.895000px;}
.y67{bottom:753.780000px;}
.y2d{bottom:756.480000px;}
.y45{bottom:757.380000px;}
.y13{bottom:761.880000px;}
.y66{bottom:781.380000px;}
.y2c{bottom:784.080000px;}
.y9d{bottom:784.395000px;}
.y12{bottom:794.580000px;}
.y65{bottom:808.980000px;}
.y2b{bottom:811.695000px;}
.y9b{bottom:822.180000px;}
.y11{bottom:833.295000px;}
.y64{bottom:836.580000px;}
.y2a{bottom:839.295000px;}
.y99{bottom:841.080000px;}
.y98{bottom:860.295000px;}
.y63{bottom:864.195000px;}
.y10{bottom:866.580000px;}
.y97{bottom:879.480000px;}
.y62{bottom:891.795000px;}
.yf{bottom:894.225000px;}
.yb9{bottom:894.525000px;}
.y96{bottom:898.725000px;}
.y94{bottom:917.925000px;}
.y61{bottom:919.425000px;}
.ye{bottom:921.825000px;}
.y81{bottom:922.125000px;}
.y60{bottom:947.025000px;}
.yd{bottom:949.425000px;}
.y80{bottom:949.725000px;}
.y5f{bottom:974.625000px;}
.yc{bottom:977.025000px;}
.y7f{bottom:977.325000px;}
.y5e{bottom:1002.525000px;}
.yb{bottom:1004.625000px;}
.y7e{bottom:1004.925000px;}
.y5d{bottom:1029.525000px;}
.ya{bottom:1032.225000px;}
.y5c{bottom:1059.570000px;}
.y9{bottom:1059.855000px;}
.y8e{bottom:1060.170000px;}
.y8{bottom:1087.455000px;}
.y8d{bottom:1087.755000px;}
.y4{bottom:1115.070000px;}
.y1{bottom:1130.070000px;}
.h14{height:18.300000px;}
.h15{height:18.337500px;}
.h16{height:18.600000px;}
.h11{height:34.245820px;}
.h12{height:34.365820px;}
.h4{height:35.414062px;}
.h17{height:36.900000px;}
.h18{height:36.937500px;}
.h5{height:37.453125px;}
.hc{height:40.253906px;}
.hb{height:41.400000px;}
.h13{height:42.134766px;}
.h7{height:44.279297px;}
.h10{height:46.816406px;}
.hf{height:49.130859px;}
.he{height:49.965820px;}
.ha{height:55.200000px;}
.h8{height:55.237500px;}
.h3{height:55.517578px;}
.h9{height:57.919922px;}
.hd{height:59.853516px;}
.h6{height:81.087891px;}
.h2{height:87.937500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:235.275000px;}
.w3{width:324.120000px;}
.w2{width:324.405000px;}
.w5{width:435.450000px;}
.w6{width:637.125000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xa{left:43.230000px;}
.xb{left:111.330000px;}
.x1{left:119.437500px;}
.x5{left:127.537500px;}
.x7{left:155.145000px;}
.xe{left:163.560000px;}
.xc{left:195.060000px;}
.x2{left:240.082500px;}
.xd{left:350.505000px;}
.x9{left:359.820000px;}
.x8{left:378.405000px;}
.x3{left:443.850000px;}
.x6{left:765.570000px;}
@media print{
.v2{vertical-align:-13.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls4{letter-spacing:-0.906667pt;}
.lse{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.298667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.405333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.916267pt;}
.ls1{letter-spacing:1.066667pt;}
.lsa{letter-spacing:7.626667pt;}
.ls6{letter-spacing:56.613333pt;}
.ws3{word-spacing:-53.333333pt;}
.ws2{word-spacing:-15.306667pt;}
.ws8{word-spacing:-15.093333pt;}
.ws5{word-spacing:-14.933333pt;}
.ws7{word-spacing:-14.880000pt;}
.ws0{word-spacing:-14.773333pt;}
.ws6{word-spacing:-14.400000pt;}
.ws4{word-spacing:-9.750400pt;}
.ws9{word-spacing:-9.344000pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-8.240000pt;}
._4{margin-left:-2.208000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.322667pt;}
._5{width:2.453333pt;}
._9{width:4.192000pt;}
._13{width:5.136000pt;}
._7{width:6.026667pt;}
._8{width:7.040000pt;}
._b{width:8.234667pt;}
._a{width:9.280000pt;}
._11{width:10.517333pt;}
._20{width:11.504000pt;}
._12{width:12.400000pt;}
._1d{width:13.418667pt;}
._f{width:15.712000pt;}
._10{width:16.730667pt;}
._14{width:17.978667pt;}
._15{width:18.880000pt;}
._1f{width:19.984000pt;}
._21{width:20.965333pt;}
._1b{width:22.560000pt;}
._1c{width:24.074667pt;}
._18{width:25.338667pt;}
._17{width:26.304000pt;}
._16{width:27.840000pt;}
._22{width:29.216000pt;}
._e{width:31.306667pt;}
._d{width:32.490667pt;}
._c{width:33.536000pt;}
._23{width:35.082667pt;}
._1a{width:42.240000pt;}
._19{width:43.456000pt;}
._3{width:177.024000pt;}
._2{width:408.080000pt;}
._6{width:409.136000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:2.666667pt;}
.y9c{bottom:2.680000pt;}
.y9a{bottom:2.933333pt;}
.y2{bottom:8.266667pt;}
.y25{bottom:11.200000pt;}
.y9e{bottom:19.186667pt;}
.ya1{bottom:19.200000pt;}
.y29{bottom:23.466667pt;}
.y27{bottom:35.746667pt;}
.y24{bottom:35.773333pt;}
.y7{bottom:50.400000pt;}
.y3{bottom:64.826667pt;}
.y6{bottom:73.600000pt;}
.y5{bottom:93.333333pt;}
.y5b{bottom:105.866667pt;}
.yba{bottom:108.266667pt;}
.y44{bottom:108.533333pt;}
.ybb{bottom:109.066667pt;}
.y5a{bottom:120.533333pt;}
.yb8{bottom:129.333333pt;}
.y43{bottom:132.800000pt;}
.y22{bottom:135.200000pt;}
.y7d{bottom:138.693333pt;}
.y59{bottom:144.026667pt;}
.yb7{bottom:145.106667pt;}
.y93{bottom:153.626667pt;}
.y42{bottom:157.360000pt;}
.y7c{bottom:158.693333pt;}
.y28{bottom:159.493333pt;}
.yb6{bottom:159.773333pt;}
.y92{bottom:173.626667pt;}
.yb5{bottom:174.693333pt;}
.y7b{bottom:179.506667pt;}
.y41{bottom:181.893333pt;}
.y58{bottom:182.173333pt;}
.yb4{bottom:189.360000pt;}
.y26{bottom:201.093333pt;}
.y7a{bottom:204.026667pt;}
.y40{bottom:206.440000pt;}
.y57{bottom:206.693333pt;}
.yb3{bottom:218.693333pt;}
.y79{bottom:228.560000pt;}
.y8c{bottom:230.693333pt;}
.y3f{bottom:230.960000pt;}
.y56{bottom:231.226667pt;}
.yb2{bottom:233.360000pt;}
.yb1{bottom:248.026667pt;}
.y78{bottom:253.106667pt;}
.y23{bottom:254.693333pt;}
.y8b{bottom:255.226667pt;}
.y3e{bottom:255.506667pt;}
.y55{bottom:255.773333pt;}
.yb0{bottom:262.960000pt;}
.y77{bottom:277.666667pt;}
.y8a{bottom:279.800000pt;}
.y3d{bottom:280.066667pt;}
.y54{bottom:280.333333pt;}
.yaf{bottom:292.333333pt;}
.y76{bottom:302.200000pt;}
.y89{bottom:304.333333pt;}
.y3c{bottom:304.600000pt;}
.y53{bottom:304.866667pt;}
.yae{bottom:307.000000pt;}
.yad{bottom:321.666667pt;}
.y75{bottom:326.733333pt;}
.y88{bottom:328.866667pt;}
.y3b{bottom:329.133333pt;}
.y52{bottom:329.400000pt;}
.y21{bottom:333.933333pt;}
.yac{bottom:345.133333pt;}
.y74{bottom:351.266667pt;}
.y87{bottom:353.400000pt;}
.y3a{bottom:353.666667pt;}
.y51{bottom:353.933333pt;}
.y20{bottom:358.466667pt;}
.y73{bottom:375.800000pt;}
.y86{bottom:377.933333pt;}
.y39{bottom:378.200000pt;}
.y50{bottom:378.466667pt;}
.y1f{bottom:383.000000pt;}
.y72{bottom:400.360000pt;}
.yab{bottom:401.960000pt;}
.y91{bottom:402.506667pt;}
.y38{bottom:402.773333pt;}
.y4f{bottom:403.026667pt;}
.y1e{bottom:407.560000pt;}
.y71{bottom:424.626667pt;}
.yaa{bottom:426.506667pt;}
.y85{bottom:427.026667pt;}
.y37{bottom:427.293333pt;}
.y4e{bottom:428.106667pt;}
.y1d{bottom:432.106667pt;}
.y70{bottom:449.173333pt;}
.ya9{bottom:451.026667pt;}
.y90{bottom:451.560000pt;}
.y36{bottom:451.840000pt;}
.y4d{bottom:452.626667pt;}
.y1c{bottom:456.360000pt;}
.y6f{bottom:473.693333pt;}
.ya8{bottom:475.560000pt;}
.y84{bottom:476.093333pt;}
.y35{bottom:476.360000pt;}
.y1b{bottom:480.893333pt;}
.y6e{bottom:498.226667pt;}
.ya7{bottom:500.093333pt;}
.y83{bottom:500.626667pt;}
.y4c{bottom:500.893333pt;}
.y34{bottom:501.426667pt;}
.y1a{bottom:505.426667pt;}
.y6d{bottom:522.760000pt;}
.ya6{bottom:524.626667pt;}
.y8f{bottom:525.173333pt;}
.y4b{bottom:525.426667pt;}
.y33{bottom:525.960000pt;}
.y19{bottom:529.960000pt;}
.y6c{bottom:547.333333pt;}
.ya5{bottom:549.200000pt;}
.y32{bottom:549.733333pt;}
.y4a{bottom:550.000000pt;}
.y18{bottom:554.533333pt;}
.ya4{bottom:563.333333pt;}
.y6b{bottom:571.866667pt;}
.y31{bottom:574.266667pt;}
.y49{bottom:574.533333pt;}
.y17{bottom:579.066667pt;}
.ya3{bottom:580.133333pt;}
.y6a{bottom:596.400000pt;}
.y30{bottom:598.800000pt;}
.y48{bottom:599.066667pt;}
.y16{bottom:603.600000pt;}
.ya2{bottom:613.466667pt;}
.y69{bottom:620.933333pt;}
.y2f{bottom:623.333333pt;}
.y47{bottom:623.600000pt;}
.y15{bottom:628.133333pt;}
.ya0{bottom:630.533333pt;}
.y68{bottom:645.466667pt;}
.y2e{bottom:647.866667pt;}
.y82{bottom:648.133333pt;}
.y46{bottom:648.666667pt;}
.y14{bottom:652.666667pt;}
.y9f{bottom:663.906667pt;}
.y67{bottom:670.026667pt;}
.y2d{bottom:672.426667pt;}
.y45{bottom:673.226667pt;}
.y13{bottom:677.226667pt;}
.y66{bottom:694.560000pt;}
.y2c{bottom:696.960000pt;}
.y9d{bottom:697.240000pt;}
.y12{bottom:706.293333pt;}
.y65{bottom:719.093333pt;}
.y2b{bottom:721.506667pt;}
.y9b{bottom:730.826667pt;}
.y11{bottom:740.706667pt;}
.y64{bottom:743.626667pt;}
.y2a{bottom:746.040000pt;}
.y99{bottom:747.626667pt;}
.y98{bottom:764.706667pt;}
.y63{bottom:768.173333pt;}
.y10{bottom:770.293333pt;}
.y97{bottom:781.760000pt;}
.y62{bottom:792.706667pt;}
.yf{bottom:794.866667pt;}
.yb9{bottom:795.133333pt;}
.y96{bottom:798.866667pt;}
.y94{bottom:815.933333pt;}
.y61{bottom:817.266667pt;}
.ye{bottom:819.400000pt;}
.y81{bottom:819.666667pt;}
.y60{bottom:841.800000pt;}
.yd{bottom:843.933333pt;}
.y80{bottom:844.200000pt;}
.y5f{bottom:866.333333pt;}
.yc{bottom:868.466667pt;}
.y7f{bottom:868.733333pt;}
.y5e{bottom:891.133333pt;}
.yb{bottom:893.000000pt;}
.y7e{bottom:893.266667pt;}
.y5d{bottom:915.133333pt;}
.ya{bottom:917.533333pt;}
.y5c{bottom:941.840000pt;}
.y9{bottom:942.093333pt;}
.y8e{bottom:942.373333pt;}
.y8{bottom:966.626667pt;}
.y8d{bottom:966.893333pt;}
.y4{bottom:991.173333pt;}
.y1{bottom:1004.506667pt;}
.h14{height:16.266667pt;}
.h15{height:16.300000pt;}
.h16{height:16.533333pt;}
.h11{height:30.440729pt;}
.h12{height:30.547396pt;}
.h4{height:31.479167pt;}
.h17{height:32.800000pt;}
.h18{height:32.833333pt;}
.h5{height:33.291667pt;}
.hc{height:35.781250pt;}
.hb{height:36.800000pt;}
.h13{height:37.453125pt;}
.h7{height:39.359375pt;}
.h10{height:41.614583pt;}
.hf{height:43.671875pt;}
.he{height:44.414062pt;}
.ha{height:49.066667pt;}
.h8{height:49.100000pt;}
.h3{height:49.348958pt;}
.h9{height:51.484375pt;}
.hd{height:53.203125pt;}
.h6{height:72.078125pt;}
.h2{height:78.166667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:209.133333pt;}
.w3{width:288.106667pt;}
.w2{width:288.360000pt;}
.w5{width:387.066667pt;}
.w6{width:566.333333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xa{left:38.426667pt;}
.xb{left:98.960000pt;}
.x1{left:106.166667pt;}
.x5{left:113.366667pt;}
.x7{left:137.906667pt;}
.xe{left:145.386667pt;}
.xc{left:173.386667pt;}
.x2{left:213.406667pt;}
.xd{left:311.560000pt;}
.x9{left:319.840000pt;}
.x8{left:336.360000pt;}
.x3{left:394.533333pt;}
.x6{left:680.506667pt;}
}




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