
    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_91dbd53c69c3a0e2fcd49424.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_f6548a9c521c1e65a0a151a5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1cdf835f851d79e854a78342.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_aff86c5436629cbe9c6ede05.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_aab8d55136067b6a4f404c6c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_192d1a86eb9b7bedb81da9b6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_42c1c4463e1812eac8f2fc6c.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_960ecc6ddd434bebf9530950.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_3f6db145a09a00e7b12b35c3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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:ffb;src:url('chunks/assets/font_204921cabbddcaa11151e277.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997510;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;}
.v1{vertical-align:18.000000px;}
.ls18{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.036000px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.360000px;}
.ls3{letter-spacing:2.520000px;}
.ls12{letter-spacing:2.880000px;}
.ls10{letter-spacing:3.960000px;}
.ls11{letter-spacing:4.320000px;}
.lsc{letter-spacing:5.760000px;}
.ls1c{letter-spacing:7.920000px;}
.lsb{letter-spacing:10.440000px;}
.ls6{letter-spacing:12.240000px;}
.ls1e{letter-spacing:13.320000px;}
.lsf{letter-spacing:15.840000px;}
.ls7{letter-spacing:16.200000px;}
.ls1d{letter-spacing:18.360000px;}
.ls13{letter-spacing:20.520000px;}
.lsd{letter-spacing:21.240000px;}
.ls20{letter-spacing:24.120000px;}
.ls2{letter-spacing:24.480000px;}
.ls5{letter-spacing:27.360000px;}
.ls16{letter-spacing:29.880000px;}
.ls8{letter-spacing:32.400000px;}
.ls15{letter-spacing:34.200000px;}
.ls4{letter-spacing:56.160000px;}
.lse{letter-spacing:95.664000px;}
.ls1b{letter-spacing:125.966640px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(247,10,141),0 0.015em rgb(247,10,141),0.015em 0 rgb(247,10,141),0 -0.015em  rgb(247,10,141);}
.sc1{text-shadow:-0.015em 0 rgb(255,109,198),0 0.015em rgb(255,109,198),0.015em 0 rgb(255,109,198),0 -0.015em  rgb(255,109,198);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(247,10,141);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,109,198);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.650000px;}
.ws5{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.912000px;}
.ws2{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.696000px;}
.ws6{word-spacing:-11.970000px;}
.ws1{word-spacing:-11.844000px;}
.ws7{word-spacing:-10.533600px;}
.ws4{word-spacing:0.000000px;}
._28{margin-left:-98.856000px;}
._14{margin-left:-4.795080px;}
._12{margin-left:-3.024000px;}
._1{margin-left:-1.036920px;}
._0{width:1.172280px;}
._3{width:2.335440px;}
._4{width:3.405960px;}
._a{width:4.586040px;}
._19{width:5.760000px;}
._d{width:6.912000px;}
._1b{width:9.244920px;}
._15{width:10.368000px;}
._c{width:11.736000px;}
._b{width:12.744000px;}
._1f{width:13.752000px;}
._10{width:14.832000px;}
._13{width:16.848000px;}
._17{width:18.000000px;}
._11{width:19.224000px;}
._1c{width:20.520000px;}
._22{width:22.032000px;}
._6{width:23.328000px;}
._2{width:24.336000px;}
._f{width:26.352000px;}
._e{width:27.360000px;}
._20{width:29.188320px;}
._1a{width:30.196920px;}
._18{width:31.320000px;}
._16{width:32.472000px;}
._25{width:33.984000px;}
._26{width:34.992000px;}
._23{width:36.576000px;}
._24{width:37.656000px;}
._7{width:41.328000px;}
._8{width:42.531720px;}
._9{width:43.552560px;}
._27{width:45.288000px;}
._1e{width:47.232000px;}
._1d{width:48.312000px;}
._21{width:49.536000px;}
._29{width:52.920000px;}
._5{width:56.304000px;}
.fc5{color:rgb(247,10,141);}
.fc4{color:rgb(255,109,198);}
.fc1{color:rgb(56,86,35);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.350000px;}
.ye{bottom:2.250000px;}
.y10{bottom:2.520000px;}
.y4{bottom:3.600000px;}
.y6{bottom:4.590000px;}
.y12{bottom:5.220000px;}
.y6c{bottom:7.020000px;}
.y72{bottom:7.110000px;}
.y8{bottom:7.380000px;}
.yd{bottom:16.290000px;}
.y75{bottom:19.170000px;}
.y78{bottom:19.260000px;}
.yc{bottom:30.420000px;}
.y76{bottom:31.320000px;}
.y71{bottom:31.410000px;}
.y7{bottom:43.020000px;}
.y74{bottom:43.470000px;}
.y6e{bottom:43.560000px;}
.y5{bottom:45.720000px;}
.y3{bottom:46.620000px;}
.y2{bottom:51.030000px;}
.y70{bottom:55.620000px;}
.y6f{bottom:79.920000px;}
.y85{bottom:88.830000px;}
.y3e{bottom:92.790000px;}
.y97{bottom:95.490000px;}
.y84{bottom:95.580000px;}
.y69{bottom:98.730000px;}
.y83{bottom:110.250000px;}
.y3d{bottom:117.090000px;}
.y96{bottom:119.790000px;}
.y68{bottom:123.030000px;}
.y3c{bottom:141.300000px;}
.y95{bottom:144.000000px;}
.y67{bottom:147.330000px;}
.y82{bottom:156.060000px;}
.y3b{bottom:165.600000px;}
.y94{bottom:168.300000px;}
.y66{bottom:171.540000px;}
.y81{bottom:180.360000px;}
.y3a{bottom:189.900000px;}
.y93{bottom:192.600000px;}
.y65{bottom:195.840000px;}
.y80{bottom:204.660000px;}
.y39{bottom:214.110000px;}
.y92{bottom:216.810000px;}
.y64{bottom:220.140000px;}
.y7f{bottom:228.900000px;}
.y38{bottom:238.440000px;}
.y91{bottom:241.140000px;}
.y63{bottom:244.380000px;}
.y7e{bottom:253.200000px;}
.y37{bottom:262.650000px;}
.y90{bottom:265.440000px;}
.y62{bottom:268.680000px;}
.y7d{bottom:277.500000px;}
.y36{bottom:286.950000px;}
.y8f{bottom:289.650000px;}
.y61{bottom:292.980000px;}
.y7c{bottom:301.710000px;}
.y35{bottom:311.250000px;}
.y8e{bottom:313.950000px;}
.y60{bottom:317.190000px;}
.y7b{bottom:326.010000px;}
.y34{bottom:335.460000px;}
.y8d{bottom:338.250000px;}
.y5f{bottom:341.490000px;}
.y7a{bottom:348.060000px;}
.y33{bottom:359.760000px;}
.y8c{bottom:362.460000px;}
.y5e{bottom:365.700000px;}
.y32{bottom:384.060000px;}
.y8b{bottom:386.760000px;}
.y5d{bottom:390.000000px;}
.y31{bottom:408.270000px;}
.y8a{bottom:411.060000px;}
.y5c{bottom:414.300000px;}
.y79{bottom:426.900000px;}
.y30{bottom:432.570000px;}
.y89{bottom:435.270000px;}
.y5b{bottom:438.510000px;}
.y2f{bottom:456.870000px;}
.y88{bottom:459.570000px;}
.y5a{bottom:462.810000px;}
.y2e{bottom:481.080000px;}
.y87{bottom:483.780000px;}
.y59{bottom:487.110000px;}
.y2d{bottom:505.380000px;}
.y77{bottom:505.650000px;}
.y86{bottom:509.070000px;}
.y58{bottom:511.320000px;}
.y2c{bottom:529.680000px;}
.y57{bottom:535.620000px;}
.y2b{bottom:553.890000px;}
.y56{bottom:559.920000px;}
.y2a{bottom:578.190000px;}
.y55{bottom:584.130000px;}
.y73{bottom:584.490000px;}
.y29{bottom:602.490000px;}
.y54{bottom:608.430000px;}
.y28{bottom:626.700000px;}
.ya6{bottom:632.370000px;}
.y53{bottom:632.730000px;}
.y27{bottom:651.030000px;}
.ya5{bottom:656.610000px;}
.y52{bottom:656.970000px;}
.y6d{bottom:663.270000px;}
.y26{bottom:675.240000px;}
.ya4{bottom:680.910000px;}
.y51{bottom:681.270000px;}
.y25{bottom:699.540000px;}
.ya3{bottom:705.210000px;}
.y50{bottom:705.570000px;}
.y24{bottom:723.840000px;}
.ya2{bottom:729.420000px;}
.y4f{bottom:729.780000px;}
.y23{bottom:748.050000px;}
.ya1{bottom:753.720000px;}
.y4e{bottom:754.080000px;}
.y6b{bottom:766.410000px;}
.y22{bottom:772.350000px;}
.ya0{bottom:778.020000px;}
.y4d{bottom:778.290000px;}
.y21{bottom:796.650000px;}
.y9f{bottom:802.230000px;}
.y4c{bottom:802.590000px;}
.y20{bottom:820.860000px;}
.y9e{bottom:826.530000px;}
.y4b{bottom:826.890000px;}
.y6a{bottom:831.390000px;}
.y1f{bottom:845.160000px;}
.y9d{bottom:850.740000px;}
.y4a{bottom:851.100000px;}
.y1e{bottom:869.460000px;}
.y9c{bottom:875.040000px;}
.y49{bottom:875.400000px;}
.y1d{bottom:893.670000px;}
.y9b{bottom:899.340000px;}
.y48{bottom:899.700000px;}
.y1c{bottom:917.970000px;}
.y9a{bottom:923.550000px;}
.y47{bottom:923.910000px;}
.y1b{bottom:942.270000px;}
.y99{bottom:947.850000px;}
.y46{bottom:948.210000px;}
.y1a{bottom:963.420000px;}
.y98{bottom:969.720000px;}
.y45{bottom:972.510000px;}
.y19{bottom:984.570000px;}
.y44{bottom:996.720000px;}
.y18{bottom:1005.630000px;}
.y43{bottom:1021.020000px;}
.y17{bottom:1026.690000px;}
.y42{bottom:1045.320000px;}
.y16{bottom:1047.840000px;}
.y15{bottom:1068.930000px;}
.y41{bottom:1069.560000px;}
.y14{bottom:1090.710000px;}
.y40{bottom:1093.860000px;}
.y13{bottom:1115.370000px;}
.y3f{bottom:1118.070000px;}
.y11{bottom:1150.740000px;}
.yf{bottom:1156.050000px;}
.yb{bottom:1173.600000px;}
.y9{bottom:1213.650000px;}
.y1{bottom:1245.780000px;}
.hc{height:13.950000px;}
.hd{height:18.090000px;}
.h4{height:18.900000px;}
.h6{height:19.980000px;}
.h7{height:22.770000px;}
.h8{height:24.210000px;}
.hb{height:40.539023px;}
.ha{height:41.850000px;}
.he{height:45.720703px;}
.h15{height:46.991602px;}
.h2{height:60.960938px;}
.h16{height:61.793886px;}
.h5{height:64.657617px;}
.h3{height:70.664062px;}
.hf{height:71.019492px;}
.h13{height:72.810000px;}
.h12{height:72.840000px;}
.h10{height:74.004654px;}
.h9{height:81.382852px;}
.h14{height:82.323633px;}
.h11{height:97.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.330000px;}
.w9{width:124.920000px;}
.w6{width:147.510000px;}
.w5{width:149.760000px;}
.wb{width:151.230000px;}
.w8{width:192.540000px;}
.wd{width:243.750000px;}
.w7{width:270.840000px;}
.wc{width:328.800000px;}
.w4{width:340.530000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.710000px;}
.x16{left:7.830000px;}
.x5{left:10.800000px;}
.x1f{left:12.150000px;}
.x1e{left:13.320000px;}
.x3{left:16.650000px;}
.x27{left:18.630000px;}
.x28{left:20.160000px;}
.x22{left:23.490000px;}
.x20{left:26.550000px;}
.x1c{left:35.820000px;}
.x26{left:38.460000px;}
.x18{left:42.930000px;}
.x23{left:45.930000px;}
.x24{left:48.450000px;}
.x21{left:69.690000px;}
.x4{left:77.850000px;}
.x15{left:80.910000px;}
.x1{left:85.049987px;}
.x1a{left:89.760000px;}
.x1d{left:99.630000px;}
.x25{left:103.590000px;}
.x12{left:127.649987px;}
.xb{left:134.489987px;}
.x2a{left:138.269973px;}
.x2b{left:144.299987px;}
.xa{left:148.439987px;}
.x7{left:164.010000px;}
.x8{left:171.210000px;}
.x17{left:235.830000px;}
.x11{left:278.039987px;}
.xd{left:283.979987px;}
.x10{left:289.739987px;}
.x29{left:301.079987px;}
.xe{left:302.879987px;}
.xc{left:323.669987px;}
.xf{left:364.379987px;}
.x2c{left:390.029987px;}
.x2{left:438.180000px;}
.x13{left:483.899973px;}
.x14{left:490.559987px;}
.x19{left:568.410000px;}
.x6{left:676.080000px;}
.x9{left:708.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls12{letter-spacing:2.560000pt;}
.ls10{letter-spacing:3.520000pt;}
.ls11{letter-spacing:3.840000pt;}
.lsc{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:7.040000pt;}
.lsb{letter-spacing:9.280000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls1e{letter-spacing:11.840000pt;}
.lsf{letter-spacing:14.080000pt;}
.ls7{letter-spacing:14.400000pt;}
.ls1d{letter-spacing:16.320000pt;}
.ls13{letter-spacing:18.240000pt;}
.lsd{letter-spacing:18.880000pt;}
.ls20{letter-spacing:21.440000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls5{letter-spacing:24.320000pt;}
.ls16{letter-spacing:26.560000pt;}
.ls8{letter-spacing:28.800000pt;}
.ls15{letter-spacing:30.400000pt;}
.ls4{letter-spacing:49.920000pt;}
.lse{letter-spacing:85.034667pt;}
.ls1b{letter-spacing:111.970347pt;}
.ws0{word-spacing:-14.800000pt;}
.ws5{word-spacing:-14.208000pt;}
.ws3{word-spacing:-14.144000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.952000pt;}
.ws6{word-spacing:-10.640000pt;}
.ws1{word-spacing:-10.528000pt;}
.ws7{word-spacing:-9.363200pt;}
.ws4{word-spacing:0.000000pt;}
._28{margin-left:-87.872000pt;}
._14{margin-left:-4.262293pt;}
._12{margin-left:-2.688000pt;}
._1{margin-left:-0.921707pt;}
._0{width:1.042027pt;}
._3{width:2.075947pt;}
._4{width:3.027520pt;}
._a{width:4.076480pt;}
._19{width:5.120000pt;}
._d{width:6.144000pt;}
._1b{width:8.217707pt;}
._15{width:9.216000pt;}
._c{width:10.432000pt;}
._b{width:11.328000pt;}
._1f{width:12.224000pt;}
._10{width:13.184000pt;}
._13{width:14.976000pt;}
._17{width:16.000000pt;}
._11{width:17.088000pt;}
._1c{width:18.240000pt;}
._22{width:19.584000pt;}
._6{width:20.736000pt;}
._2{width:21.632000pt;}
._f{width:23.424000pt;}
._e{width:24.320000pt;}
._20{width:25.945173pt;}
._1a{width:26.841707pt;}
._18{width:27.840000pt;}
._16{width:28.864000pt;}
._25{width:30.208000pt;}
._26{width:31.104000pt;}
._23{width:32.512000pt;}
._24{width:33.472000pt;}
._7{width:36.736000pt;}
._8{width:37.805973pt;}
._9{width:38.713387pt;}
._27{width:40.256000pt;}
._1e{width:41.984000pt;}
._1d{width:42.944000pt;}
._21{width:44.032000pt;}
._29{width:47.040000pt;}
._5{width:50.048000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.200000pt;}
.ye{bottom:2.000000pt;}
.y10{bottom:2.240000pt;}
.y4{bottom:3.200000pt;}
.y6{bottom:4.080000pt;}
.y12{bottom:4.640000pt;}
.y6c{bottom:6.240000pt;}
.y72{bottom:6.320000pt;}
.y8{bottom:6.560000pt;}
.yd{bottom:14.480000pt;}
.y75{bottom:17.040000pt;}
.y78{bottom:17.120000pt;}
.yc{bottom:27.040000pt;}
.y76{bottom:27.840000pt;}
.y71{bottom:27.920000pt;}
.y7{bottom:38.240000pt;}
.y74{bottom:38.640000pt;}
.y6e{bottom:38.720000pt;}
.y5{bottom:40.640000pt;}
.y3{bottom:41.440000pt;}
.y2{bottom:45.360000pt;}
.y70{bottom:49.440000pt;}
.y6f{bottom:71.040000pt;}
.y85{bottom:78.960000pt;}
.y3e{bottom:82.480000pt;}
.y97{bottom:84.880000pt;}
.y84{bottom:84.960000pt;}
.y69{bottom:87.760000pt;}
.y83{bottom:98.000000pt;}
.y3d{bottom:104.080000pt;}
.y96{bottom:106.480000pt;}
.y68{bottom:109.360000pt;}
.y3c{bottom:125.600000pt;}
.y95{bottom:128.000000pt;}
.y67{bottom:130.960000pt;}
.y82{bottom:138.720000pt;}
.y3b{bottom:147.200000pt;}
.y94{bottom:149.600000pt;}
.y66{bottom:152.480000pt;}
.y81{bottom:160.320000pt;}
.y3a{bottom:168.800000pt;}
.y93{bottom:171.200000pt;}
.y65{bottom:174.080000pt;}
.y80{bottom:181.920000pt;}
.y39{bottom:190.320000pt;}
.y92{bottom:192.720000pt;}
.y64{bottom:195.680000pt;}
.y7f{bottom:203.466667pt;}
.y38{bottom:211.946667pt;}
.y91{bottom:214.346667pt;}
.y63{bottom:217.226667pt;}
.y7e{bottom:225.066667pt;}
.y37{bottom:233.466667pt;}
.y90{bottom:235.946667pt;}
.y62{bottom:238.826667pt;}
.y7d{bottom:246.666667pt;}
.y36{bottom:255.066667pt;}
.y8f{bottom:257.466667pt;}
.y61{bottom:260.426667pt;}
.y7c{bottom:268.186667pt;}
.y35{bottom:276.666667pt;}
.y8e{bottom:279.066667pt;}
.y60{bottom:281.946667pt;}
.y7b{bottom:289.786667pt;}
.y34{bottom:298.186667pt;}
.y8d{bottom:300.666667pt;}
.y5f{bottom:303.546667pt;}
.y7a{bottom:309.386667pt;}
.y33{bottom:319.786667pt;}
.y8c{bottom:322.186667pt;}
.y5e{bottom:325.066667pt;}
.y32{bottom:341.386667pt;}
.y8b{bottom:343.786667pt;}
.y5d{bottom:346.666667pt;}
.y31{bottom:362.906667pt;}
.y8a{bottom:365.386667pt;}
.y5c{bottom:368.266667pt;}
.y79{bottom:379.466667pt;}
.y30{bottom:384.506667pt;}
.y89{bottom:386.906667pt;}
.y5b{bottom:389.786667pt;}
.y2f{bottom:406.106667pt;}
.y88{bottom:408.506667pt;}
.y5a{bottom:411.386667pt;}
.y2e{bottom:427.626667pt;}
.y87{bottom:430.026667pt;}
.y59{bottom:432.986667pt;}
.y2d{bottom:449.226667pt;}
.y77{bottom:449.466667pt;}
.y86{bottom:452.506667pt;}
.y58{bottom:454.506667pt;}
.y2c{bottom:470.826667pt;}
.y57{bottom:476.106667pt;}
.y2b{bottom:492.346667pt;}
.y56{bottom:497.706667pt;}
.y2a{bottom:513.946667pt;}
.y55{bottom:519.226667pt;}
.y73{bottom:519.546667pt;}
.y29{bottom:535.546667pt;}
.y54{bottom:540.826667pt;}
.y28{bottom:557.066667pt;}
.ya6{bottom:562.106667pt;}
.y53{bottom:562.426667pt;}
.y27{bottom:578.693333pt;}
.ya5{bottom:583.653333pt;}
.y52{bottom:583.973333pt;}
.y6d{bottom:589.573333pt;}
.y26{bottom:600.213333pt;}
.ya4{bottom:605.253333pt;}
.y51{bottom:605.573333pt;}
.y25{bottom:621.813333pt;}
.ya3{bottom:626.853333pt;}
.y50{bottom:627.173333pt;}
.y24{bottom:643.413333pt;}
.ya2{bottom:648.373333pt;}
.y4f{bottom:648.693333pt;}
.y23{bottom:664.933333pt;}
.ya1{bottom:669.973333pt;}
.y4e{bottom:670.293333pt;}
.y6b{bottom:681.253333pt;}
.y22{bottom:686.533333pt;}
.ya0{bottom:691.573333pt;}
.y4d{bottom:691.813333pt;}
.y21{bottom:708.133333pt;}
.y9f{bottom:713.093333pt;}
.y4c{bottom:713.413333pt;}
.y20{bottom:729.653333pt;}
.y9e{bottom:734.693333pt;}
.y4b{bottom:735.013333pt;}
.y6a{bottom:739.013333pt;}
.y1f{bottom:751.253333pt;}
.y9d{bottom:756.213333pt;}
.y4a{bottom:756.533333pt;}
.y1e{bottom:772.853333pt;}
.y9c{bottom:777.813333pt;}
.y49{bottom:778.133333pt;}
.y1d{bottom:794.373333pt;}
.y9b{bottom:799.413333pt;}
.y48{bottom:799.733333pt;}
.y1c{bottom:815.973333pt;}
.y9a{bottom:820.933333pt;}
.y47{bottom:821.253333pt;}
.y1b{bottom:837.573333pt;}
.y99{bottom:842.533333pt;}
.y46{bottom:842.853333pt;}
.y1a{bottom:856.373333pt;}
.y98{bottom:861.973333pt;}
.y45{bottom:864.453333pt;}
.y19{bottom:875.173333pt;}
.y44{bottom:885.973333pt;}
.y18{bottom:893.893333pt;}
.y43{bottom:907.573333pt;}
.y17{bottom:912.613333pt;}
.y42{bottom:929.173333pt;}
.y16{bottom:931.413333pt;}
.y15{bottom:950.160000pt;}
.y41{bottom:950.720000pt;}
.y14{bottom:969.520000pt;}
.y40{bottom:972.320000pt;}
.y13{bottom:991.440000pt;}
.y3f{bottom:993.840000pt;}
.y11{bottom:1022.880000pt;}
.yf{bottom:1027.600000pt;}
.yb{bottom:1043.200000pt;}
.y9{bottom:1078.800000pt;}
.y1{bottom:1107.360000pt;}
.hc{height:12.400000pt;}
.hd{height:16.080000pt;}
.h4{height:16.800000pt;}
.h6{height:17.760000pt;}
.h7{height:20.240000pt;}
.h8{height:21.520000pt;}
.hb{height:36.034687pt;}
.ha{height:37.200000pt;}
.he{height:40.640625pt;}
.h15{height:41.770312pt;}
.h2{height:54.187500pt;}
.h16{height:54.927899pt;}
.h5{height:57.473437pt;}
.h3{height:62.812500pt;}
.hf{height:63.128437pt;}
.h13{height:64.720000pt;}
.h12{height:64.746667pt;}
.h10{height:65.781915pt;}
.h9{height:72.340312pt;}
.h14{height:73.176562pt;}
.h11{height:86.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.960000pt;}
.w9{width:111.040000pt;}
.w6{width:131.120000pt;}
.w5{width:133.120000pt;}
.wb{width:134.426667pt;}
.w8{width:171.146667pt;}
.wd{width:216.666667pt;}
.w7{width:240.746667pt;}
.wc{width:292.266667pt;}
.w4{width:302.693333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.520000pt;}
.x16{left:6.960000pt;}
.x5{left:9.600000pt;}
.x1f{left:10.800000pt;}
.x1e{left:11.840000pt;}
.x3{left:14.800000pt;}
.x27{left:16.560000pt;}
.x28{left:17.920000pt;}
.x22{left:20.880000pt;}
.x20{left:23.600000pt;}
.x1c{left:31.840000pt;}
.x26{left:34.186667pt;}
.x18{left:38.160000pt;}
.x23{left:40.826667pt;}
.x24{left:43.066667pt;}
.x21{left:61.946667pt;}
.x4{left:69.200000pt;}
.x15{left:71.920000pt;}
.x1{left:75.599988pt;}
.x1a{left:79.786667pt;}
.x1d{left:88.560000pt;}
.x25{left:92.080000pt;}
.x12{left:113.466655pt;}
.xb{left:119.546655pt;}
.x2a{left:122.906643pt;}
.x2b{left:128.266655pt;}
.xa{left:131.946655pt;}
.x7{left:145.786667pt;}
.x8{left:152.186667pt;}
.x17{left:209.626667pt;}
.x11{left:247.146655pt;}
.xd{left:252.426655pt;}
.x10{left:257.546655pt;}
.x29{left:267.626655pt;}
.xe{left:269.226655pt;}
.xc{left:287.706655pt;}
.xf{left:323.893322pt;}
.x2c{left:346.693322pt;}
.x2{left:389.493333pt;}
.x13{left:430.133310pt;}
.x14{left:436.053322pt;}
.x19{left:505.253333pt;}
.x6{left:600.960000pt;}
.x9{left:629.520000pt;}
}




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