
    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_6653caf7238f7dbd880f23ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_83b2c56c1776799f389fcd4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937012;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_516a8dc6caa8e56e72bb3212.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_e8e8a74352b36ef967386eb5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_962051c88a3863664c2b1dd1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_18993b739de725287559b06c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e6a1a47b092fa5e940955b04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_60d468fd3c9e74ad874dafb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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;}
.lsa{letter-spacing:-0.584400px;}
.ls7{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.460800px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.987840px;}
.ls4{letter-spacing:3.600000px;}
.ls2{letter-spacing:28.200000px;}
.lsc{letter-spacing:58.981440px;}
.lsb{letter-spacing:73.381440px;}
.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;}
}
.ws4{word-spacing:-20.880000px;}
.ws7{word-spacing:-18.291120px;}
.ws6{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.002784px;}
.ws0{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.506440px;}
.ws5{word-spacing:0.000000px;}
._3c{margin-left:-3.652320px;}
._7{margin-left:-2.220480px;}
._0{margin-left:-1.068480px;}
._1{width:1.244160px;}
._2{width:2.528640px;}
._3{width:3.934080px;}
._a{width:5.042400px;}
._21{width:6.841920px;}
._47{width:8.020320px;}
._24{width:9.521280px;}
._14{width:10.756800px;}
._15{width:13.055040px;}
._12{width:14.097600px;}
._11{width:15.451200px;}
._13{width:16.453440px;}
._16{width:18.062400px;}
._38{width:19.368000px;}
._39{width:20.632320px;}
._3b{width:21.925440px;}
._c{width:23.060160px;}
._b{width:24.229440px;}
._d{width:25.879680px;}
._5{width:27.403200px;}
._42{width:28.647360px;}
._41{width:29.658240px;}
._f{width:31.746240px;}
._10{width:33.315840px;}
._40{width:34.410240px;}
._2c{width:35.421120px;}
._25{width:36.581760px;}
._3a{width:38.419200px;}
._18{width:40.080960px;}
._17{width:41.351040px;}
._9{width:46.779840px;}
._1e{width:48.533760px;}
._1f{width:49.919040px;}
._43{width:51.514560px;}
._27{width:52.551360px;}
._26{width:54.604800px;}
._23{width:61.744320px;}
._22{width:63.316800px;}
._44{width:64.477440px;}
._2a{width:66.392640px;}
._1d{width:67.633920px;}
._1c{width:71.835840px;}
._1b{width:73.163520px;}
._3e{width:74.257920px;}
._e{width:76.086720px;}
._3d{width:77.757120px;}
._3f{width:79.225920px;}
._2e{width:83.376000px;}
._2f{width:84.504960px;}
._45{width:86.022720px;}
._31{width:90.884160px;}
._19{width:93.968640px;}
._1a{width:95.666880px;}
._6{width:105.569280px;}
._8{width:106.580160px;}
._46{width:108.000000px;}
._30{width:117.622080px;}
._4{width:118.681920px;}
._2b{width:121.354560px;}
._2d{width:123.336000px;}
._20{width:124.528320px;}
._28{width:144.665280px;}
._29{width:146.140320px;}
._32{width:173.283840px;}
._33{width:174.672000px;}
._36{width:194.544000px;}
._34{width:213.828480px;}
._35{width:420.828480px;}
._37{width:424.872000px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:66.384000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.076000px;}
.y41{bottom:17.280000px;}
.y46{bottom:17.325000px;}
.y5f{bottom:18.030000px;}
.y67{bottom:18.360000px;}
.y43{bottom:24.480000px;}
.y44{bottom:35.280000px;}
.y3f{bottom:35.640000px;}
.y66{bottom:40.680000px;}
.y5e{bottom:40.710000px;}
.y42{bottom:46.800000px;}
.y68{bottom:51.480000px;}
.y9{bottom:57.240000px;}
.y4b{bottom:62.670000px;}
.y65{bottom:63.000000px;}
.y5d{bottom:63.030000px;}
.y6a{bottom:63.045000px;}
.y8{bottom:73.116000px;}
.ya{bottom:76.680000px;}
.y5c{bottom:85.350000px;}
.y69{bottom:85.365000px;}
.y61{bottom:96.150000px;}
.y5b{bottom:107.670000px;}
.y5a{bottom:110.205000px;}
.y87{bottom:110.916000px;}
.y3d{bottom:122.796000px;}
.y24{bottom:125.676000px;}
.y64{bottom:129.990000px;}
.y59{bottom:132.525000px;}
.y71{bottom:136.476000px;}
.y52{bottom:143.685000px;}
.y98{bottom:146.196000px;}
.y86{bottom:147.276000px;}
.y63{bottom:152.310000px;}
.y58{bottom:154.845000px;}
.y3c{bottom:158.790000px;}
.y23{bottom:162.030000px;}
.y51{bottom:166.005000px;}
.y97{bottom:170.670000px;}
.y70{bottom:172.830000px;}
.y62{bottom:174.630000px;}
.y57{bottom:177.165000px;}
.y85{bottom:183.270000px;}
.y50{bottom:188.355000px;}
.y96{bottom:194.835000px;}
.y3b{bottom:195.195000px;}
.y22{bottom:198.435000px;}
.y49{bottom:199.515000px;}
.y4f{bottom:210.675000px;}
.y95{bottom:218.955000px;}
.y84{bottom:219.675000px;}
.y6f{bottom:221.115000px;}
.y48{bottom:221.835000px;}
.y3a{bottom:231.555000px;}
.y4e{bottom:232.995000px;}
.y21{bottom:234.435000px;}
.y94{bottom:243.075000px;}
.y56{bottom:244.155000px;}
.y4d{bottom:255.315000px;}
.y83{bottom:256.035000px;}
.y6e{bottom:257.115000px;}
.y55{bottom:266.475000px;}
.y93{bottom:267.195000px;}
.y20{bottom:270.795000px;}
.y4c{bottom:277.635000px;}
.y39{bottom:279.795000px;}
.y54{bottom:288.795000px;}
.y92{bottom:291.315000px;}
.y82{bottom:292.035000px;}
.y6d{bottom:293.475000px;}
.y53{bottom:311.115000px;}
.y91{bottom:315.435000px;}
.y38{bottom:315.795000px;}
.y1f{bottom:319.035000px;}
.y81{bottom:328.425000px;}
.y6c{bottom:329.865000px;}
.y90{bottom:339.585000px;}
.y37{bottom:352.185000px;}
.y1e{bottom:355.065000px;}
.y8f{bottom:363.705000px;}
.y6b{bottom:365.865000px;}
.y80{bottom:376.665000px;}
.y47{bottom:387.105000px;}
.y8e{bottom:387.825000px;}
.y36{bottom:388.545000px;}
.y1d{bottom:403.305000px;}
.y8d{bottom:411.945000px;}
.y7f{bottom:412.665000px;}
.y8c{bottom:436.065000px;}
.y35{bottom:436.425000px;}
.y1c{bottom:439.665000px;}
.y7e{bottom:460.950000px;}
.y34{bottom:472.830000px;}
.y1b{bottom:476.070000px;}
.y8b{bottom:484.710000px;}
.y60{bottom:490.830000px;}
.y7d{bottom:497.310000px;}
.y33{bottom:509.190000px;}
.y8a{bottom:521.070000px;}
.y1a{bottom:523.950000px;}
.y7c{bottom:545.550000px;}
.y32{bottom:557.430000px;}
.y19{bottom:560.310000px;}
.y31{bottom:593.460000px;}
.y7b{bottom:593.820000px;}
.y18{bottom:596.700000px;}
.y30{bottom:629.820000px;}
.y7a{bottom:642.060000px;}
.y17{bottom:644.940000px;}
.y2f{bottom:666.180000px;}
.y79{bottom:678.060000px;}
.y16{bottom:680.940000px;}
.y4a{bottom:682.740000px;}
.y2e{bottom:702.210000px;}
.y15{bottom:717.330000px;}
.y78{bottom:726.330000px;}
.y2d{bottom:738.570000px;}
.y89{bottom:750.450000px;}
.y14{bottom:753.690000px;}
.y77{bottom:762.690000px;}
.y2c{bottom:786.810000px;}
.y13{bottom:789.690000px;}
.y76{bottom:799.050000px;}
.y45{bottom:807.690000px;}
.y88{bottom:822.810000px;}
.y12{bottom:828.615000px;}
.y2b{bottom:835.095000px;}
.y3e{bottom:843.735000px;}
.y75{bottom:847.335000px;}
.y9e{bottom:866.415000px;}
.y11{bottom:867.135000px;}
.y2a{bottom:871.095000px;}
.y40{bottom:879.735000px;}
.y74{bottom:883.335000px;}
.y10{bottom:893.415000px;}
.y9d{bottom:905.655000px;}
.y29{bottom:907.455000px;}
.y9c{bottom:930.495000px;}
.yf{bottom:931.215000px;}
.y73{bottom:931.575000px;}
.y28{bottom:943.455000px;}
.y9b{bottom:955.005000px;}
.y72{bottom:967.965000px;}
.ye{bottom:979.485000px;}
.y27{bottom:979.845000px;}
.y9a{bottom:1003.965000px;}
.yd{bottom:1015.845000px;}
.y26{bottom:1016.205000px;}
.y99{bottom:1028.085000px;}
.yc{bottom:1051.845000px;}
.y25{bottom:1052.205000px;}
.y7{bottom:1104.810000px;}
.y6{bottom:1124.970000px;}
.y5{bottom:1145.130000px;}
.y4{bottom:1165.290000px;}
.y3{bottom:1185.450000px;}
.y2{bottom:1205.640000px;}
.y1{bottom:1225.800000px;}
.h4{height:21.960000px;}
.hc{height:33.480000px;}
.hf{height:33.516000px;}
.h3{height:50.294531px;}
.hd{height:50.484375px;}
.h2{height:53.302500px;}
.h5{height:53.418375px;}
.h6{height:56.563594px;}
.ha{height:58.561875px;}
.h7{height:64.719844px;}
.h8{height:67.207500px;}
.hb{height:69.480000px;}
.h11{height:70.664062px;}
.he{height:74.953125px;}
.h9{height:81.970312px;}
.h16{height:85.845399px;}
.h15{height:86.945625px;}
.h14{height:101.556000px;}
.h12{height:123.876000px;}
.h13{height:190.830000px;}
.h10{height:419.505000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:8.640000px;}
.w7{width:9.000000px;}
.wc{width:9.360000px;}
.w3{width:49.680000px;}
.w4{width:58.716000px;}
.wb{width:59.796000px;}
.wa{width:97.596000px;}
.w10{width:98.316000px;}
.w8{width:138.996000px;}
.we{width:139.716000px;}
.w6{width:140.832000px;}
.wd{width:141.192000px;}
.w9{width:223.305000px;}
.wf{width:224.025000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:4.680000px;}
.x16{left:16.560000px;}
.x14{left:17.676000px;}
.x9{left:127.475987px;}
.x13{left:128.916000px;}
.x12{left:143.351987px;}
.xf{left:160.634987px;}
.xc{left:170.354987px;}
.x15{left:188.355000px;}
.xb{left:190.874987px;}
.x20{left:193.754987px;}
.x17{left:197.715000px;}
.x1{left:223.274987px;}
.x10{left:229.034987px;}
.xd{left:243.824987px;}
.xe{left:271.184987px;}
.x1f{left:310.784987px;}
.x6{left:331.709987px;}
.x5{left:337.829987px;}
.x18{left:338.910000px;}
.x19{left:348.270000px;}
.x4{left:360.149987px;}
.x3{left:376.349987px;}
.x2{left:378.869987px;}
.x7{left:435.779987px;}
.x11{left:486.179987px;}
.x1b{left:487.980000px;}
.x1c{left:497.340000px;}
.x1d{left:721.365000px;}
.x1e{left:730.725000px;}
.xa{left:836.280000px;}
.x8{left:894.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.519467pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.409600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.878080pt;}
.ls4{letter-spacing:3.200000pt;}
.ls2{letter-spacing:25.066667pt;}
.lsc{letter-spacing:52.427947pt;}
.lsb{letter-spacing:65.227947pt;}
.ws4{word-spacing:-18.560000pt;}
.ws7{word-spacing:-16.258773pt;}
.ws6{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.335808pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.894613pt;}
.ws5{word-spacing:0.000000pt;}
._3c{margin-left:-3.246507pt;}
._7{margin-left:-1.973760pt;}
._0{margin-left:-0.949760pt;}
._1{width:1.105920pt;}
._2{width:2.247680pt;}
._3{width:3.496960pt;}
._a{width:4.482133pt;}
._21{width:6.081707pt;}
._47{width:7.129173pt;}
._24{width:8.463360pt;}
._14{width:9.561600pt;}
._15{width:11.604480pt;}
._12{width:12.531200pt;}
._11{width:13.734400pt;}
._13{width:14.625280pt;}
._16{width:16.055467pt;}
._38{width:17.216000pt;}
._39{width:18.339840pt;}
._3b{width:19.489280pt;}
._c{width:20.497920pt;}
._b{width:21.537280pt;}
._d{width:23.004160pt;}
._5{width:24.358400pt;}
._42{width:25.464320pt;}
._41{width:26.362880pt;}
._f{width:28.218880pt;}
._10{width:29.614080pt;}
._40{width:30.586880pt;}
._2c{width:31.485440pt;}
._25{width:32.517120pt;}
._3a{width:34.150400pt;}
._18{width:35.627520pt;}
._17{width:36.756480pt;}
._9{width:41.582080pt;}
._1e{width:43.141120pt;}
._1f{width:44.372480pt;}
._43{width:45.790720pt;}
._27{width:46.712320pt;}
._26{width:48.537600pt;}
._23{width:54.883840pt;}
._22{width:56.281600pt;}
._44{width:57.313280pt;}
._2a{width:59.015680pt;}
._1d{width:60.119040pt;}
._1c{width:63.854080pt;}
._1b{width:65.034240pt;}
._3e{width:66.007040pt;}
._e{width:67.632640pt;}
._3d{width:69.117440pt;}
._3f{width:70.423040pt;}
._2e{width:74.112000pt;}
._2f{width:75.115520pt;}
._45{width:76.464640pt;}
._31{width:80.785920pt;}
._19{width:83.527680pt;}
._1a{width:85.037227pt;}
._6{width:93.839360pt;}
._8{width:94.737920pt;}
._46{width:96.000000pt;}
._30{width:104.552960pt;}
._4{width:105.495040pt;}
._2b{width:107.870720pt;}
._2d{width:109.632000pt;}
._20{width:110.691840pt;}
._28{width:128.591360pt;}
._29{width:129.902507pt;}
._32{width:154.030080pt;}
._33{width:155.264000pt;}
._36{width:172.928000pt;}
._34{width:190.069760pt;}
._35{width:374.069760pt;}
._37{width:377.664000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:59.008000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.512000pt;}
.y41{bottom:15.360000pt;}
.y46{bottom:15.400000pt;}
.y5f{bottom:16.026667pt;}
.y67{bottom:16.320000pt;}
.y43{bottom:21.760000pt;}
.y44{bottom:31.360000pt;}
.y3f{bottom:31.680000pt;}
.y66{bottom:36.160000pt;}
.y5e{bottom:36.186667pt;}
.y42{bottom:41.600000pt;}
.y68{bottom:45.760000pt;}
.y9{bottom:50.880000pt;}
.y4b{bottom:55.706667pt;}
.y65{bottom:56.000000pt;}
.y5d{bottom:56.026667pt;}
.y6a{bottom:56.040000pt;}
.y8{bottom:64.992000pt;}
.ya{bottom:68.160000pt;}
.y5c{bottom:75.866667pt;}
.y69{bottom:75.880000pt;}
.y61{bottom:85.466667pt;}
.y5b{bottom:95.706667pt;}
.y5a{bottom:97.960000pt;}
.y87{bottom:98.592000pt;}
.y3d{bottom:109.152000pt;}
.y24{bottom:111.712000pt;}
.y64{bottom:115.546667pt;}
.y59{bottom:117.800000pt;}
.y71{bottom:121.312000pt;}
.y52{bottom:127.720000pt;}
.y98{bottom:129.952000pt;}
.y86{bottom:130.912000pt;}
.y63{bottom:135.386667pt;}
.y58{bottom:137.640000pt;}
.y3c{bottom:141.146667pt;}
.y23{bottom:144.026667pt;}
.y51{bottom:147.560000pt;}
.y97{bottom:151.706667pt;}
.y70{bottom:153.626667pt;}
.y62{bottom:155.226667pt;}
.y57{bottom:157.480000pt;}
.y85{bottom:162.906667pt;}
.y50{bottom:167.426667pt;}
.y96{bottom:173.186667pt;}
.y3b{bottom:173.506667pt;}
.y22{bottom:176.386667pt;}
.y49{bottom:177.346667pt;}
.y4f{bottom:187.266667pt;}
.y95{bottom:194.626667pt;}
.y84{bottom:195.266667pt;}
.y6f{bottom:196.546667pt;}
.y48{bottom:197.186667pt;}
.y3a{bottom:205.826667pt;}
.y4e{bottom:207.106667pt;}
.y21{bottom:208.386667pt;}
.y94{bottom:216.066667pt;}
.y56{bottom:217.026667pt;}
.y4d{bottom:226.946667pt;}
.y83{bottom:227.586667pt;}
.y6e{bottom:228.546667pt;}
.y55{bottom:236.866667pt;}
.y93{bottom:237.506667pt;}
.y20{bottom:240.706667pt;}
.y4c{bottom:246.786667pt;}
.y39{bottom:248.706667pt;}
.y54{bottom:256.706667pt;}
.y92{bottom:258.946667pt;}
.y82{bottom:259.586667pt;}
.y6d{bottom:260.866667pt;}
.y53{bottom:276.546667pt;}
.y91{bottom:280.386667pt;}
.y38{bottom:280.706667pt;}
.y1f{bottom:283.586667pt;}
.y81{bottom:291.933333pt;}
.y6c{bottom:293.213333pt;}
.y90{bottom:301.853333pt;}
.y37{bottom:313.053333pt;}
.y1e{bottom:315.613333pt;}
.y8f{bottom:323.293333pt;}
.y6b{bottom:325.213333pt;}
.y80{bottom:334.813333pt;}
.y47{bottom:344.093333pt;}
.y8e{bottom:344.733333pt;}
.y36{bottom:345.373333pt;}
.y1d{bottom:358.493333pt;}
.y8d{bottom:366.173333pt;}
.y7f{bottom:366.813333pt;}
.y8c{bottom:387.613333pt;}
.y35{bottom:387.933333pt;}
.y1c{bottom:390.813333pt;}
.y7e{bottom:409.733333pt;}
.y34{bottom:420.293333pt;}
.y1b{bottom:423.173333pt;}
.y8b{bottom:430.853333pt;}
.y60{bottom:436.293333pt;}
.y7d{bottom:442.053333pt;}
.y33{bottom:452.613333pt;}
.y8a{bottom:463.173333pt;}
.y1a{bottom:465.733333pt;}
.y7c{bottom:484.933333pt;}
.y32{bottom:495.493333pt;}
.y19{bottom:498.053333pt;}
.y31{bottom:527.520000pt;}
.y7b{bottom:527.840000pt;}
.y18{bottom:530.400000pt;}
.y30{bottom:559.840000pt;}
.y7a{bottom:570.720000pt;}
.y17{bottom:573.280000pt;}
.y2f{bottom:592.160000pt;}
.y79{bottom:602.720000pt;}
.y16{bottom:605.280000pt;}
.y4a{bottom:606.880000pt;}
.y2e{bottom:624.186667pt;}
.y15{bottom:637.626667pt;}
.y78{bottom:645.626667pt;}
.y2d{bottom:656.506667pt;}
.y89{bottom:667.066667pt;}
.y14{bottom:669.946667pt;}
.y77{bottom:677.946667pt;}
.y2c{bottom:699.386667pt;}
.y13{bottom:701.946667pt;}
.y76{bottom:710.266667pt;}
.y45{bottom:717.946667pt;}
.y88{bottom:731.386667pt;}
.y12{bottom:736.546667pt;}
.y2b{bottom:742.306667pt;}
.y3e{bottom:749.986667pt;}
.y75{bottom:753.186667pt;}
.y9e{bottom:770.146667pt;}
.y11{bottom:770.786667pt;}
.y2a{bottom:774.306667pt;}
.y40{bottom:781.986667pt;}
.y74{bottom:785.186667pt;}
.y10{bottom:794.146667pt;}
.y9d{bottom:805.026667pt;}
.y29{bottom:806.626667pt;}
.y9c{bottom:827.106667pt;}
.yf{bottom:827.746667pt;}
.y73{bottom:828.066667pt;}
.y28{bottom:838.626667pt;}
.y9b{bottom:848.893333pt;}
.y72{bottom:860.413333pt;}
.ye{bottom:870.653333pt;}
.y27{bottom:870.973333pt;}
.y9a{bottom:892.413333pt;}
.yd{bottom:902.973333pt;}
.y26{bottom:903.293333pt;}
.y99{bottom:913.853333pt;}
.yc{bottom:934.973333pt;}
.y25{bottom:935.293333pt;}
.y7{bottom:982.053333pt;}
.y6{bottom:999.973333pt;}
.y5{bottom:1017.893333pt;}
.y4{bottom:1035.813333pt;}
.y3{bottom:1053.733333pt;}
.y2{bottom:1071.680000pt;}
.y1{bottom:1089.600000pt;}
.h4{height:19.520000pt;}
.hc{height:29.760000pt;}
.hf{height:29.792000pt;}
.h3{height:44.706250pt;}
.hd{height:44.875000pt;}
.h2{height:47.380000pt;}
.h5{height:47.483000pt;}
.h6{height:50.278750pt;}
.ha{height:52.055000pt;}
.h7{height:57.528750pt;}
.h8{height:59.740000pt;}
.hb{height:61.760000pt;}
.h11{height:62.812500pt;}
.he{height:66.625000pt;}
.h9{height:72.862500pt;}
.h16{height:76.307021pt;}
.h15{height:77.285000pt;}
.h14{height:90.272000pt;}
.h12{height:110.112000pt;}
.h13{height:169.626667pt;}
.h10{height:372.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:7.680000pt;}
.w7{width:8.000000pt;}
.wc{width:8.320000pt;}
.w3{width:44.160000pt;}
.w4{width:52.192000pt;}
.wb{width:53.152000pt;}
.wa{width:86.752000pt;}
.w10{width:87.392000pt;}
.w8{width:123.552000pt;}
.we{width:124.192000pt;}
.w6{width:125.184000pt;}
.wd{width:125.504000pt;}
.w9{width:198.493333pt;}
.wf{width:199.133333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:4.160000pt;}
.x16{left:14.720000pt;}
.x14{left:15.712000pt;}
.x9{left:113.311988pt;}
.x13{left:114.592000pt;}
.x12{left:127.423988pt;}
.xf{left:142.786655pt;}
.xc{left:151.426655pt;}
.x15{left:167.426667pt;}
.xb{left:169.666655pt;}
.x20{left:172.226655pt;}
.x17{left:175.746667pt;}
.x1{left:198.466655pt;}
.x10{left:203.586655pt;}
.xd{left:216.733322pt;}
.xe{left:241.053322pt;}
.x1f{left:276.253322pt;}
.x6{left:294.853322pt;}
.x5{left:300.293322pt;}
.x18{left:301.253333pt;}
.x19{left:309.573333pt;}
.x4{left:320.133322pt;}
.x3{left:334.533322pt;}
.x2{left:336.773322pt;}
.x7{left:387.359988pt;}
.x11{left:432.159988pt;}
.x1b{left:433.760000pt;}
.x1c{left:442.080000pt;}
.x1d{left:641.213333pt;}
.x1e{left:649.533333pt;}
.xa{left:743.360000pt;}
.x8{left:794.853322pt;}
}




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