
    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_5f8861197cd17be646178654.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d518573f04c45e8849910295.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_35c6545e75e113754e990650.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_eba6ea021e0a8274fc949994.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_68a3e658dd5c015b5d0848ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_0e4651e39e73f986fc3d3acb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_750025da88c85ed6e9cf5064.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_84a551b54e0f181eed89c8db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_eb93e35eecb74cea79d71ff2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_146af1846daf361413b0354e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;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:ffc;src:url('chunks/assets/font_a9b6504ab74e875d285557ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls18{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.008000px;}
.ls4{letter-spacing:7.920000px;}
.lse{letter-spacing:8.640000px;}
.ls11{letter-spacing:10.800000px;}
.ls1a{letter-spacing:12.960000px;}
.ls19{letter-spacing:13.680000px;}
.ls1b{letter-spacing:18.144000px;}
.ls17{letter-spacing:20.880000px;}
.ls15{letter-spacing:21.600000px;}
.ls10{letter-spacing:25.200000px;}
.lsd{letter-spacing:26.640000px;}
.lsc{letter-spacing:29.520000px;}
.ls16{letter-spacing:54.144000px;}
.ls2{letter-spacing:59.309760px;}
.lsa{letter-spacing:62.640000px;}
.ls9{letter-spacing:62.820000px;}
.ls1{letter-spacing:93.029760px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.080000px;}
._2{width:3.009360px;}
._12{width:4.033200px;}
._d{width:5.184000px;}
._e{width:6.552000px;}
._11{width:7.776000px;}
._b{width:9.690000px;}
._a{width:11.064000px;}
._c{width:12.414000px;}
._24{width:13.452000px;}
._21{width:14.616000px;}
._16{width:15.840000px;}
._15{width:16.848000px;}
._20{width:19.152000px;}
._7{width:20.466000px;}
._6{width:21.744000px;}
._1f{width:22.824000px;}
._17{width:23.832000px;}
._4{width:25.704000px;}
._5{width:26.784000px;}
._10{width:28.164000px;}
._9{width:29.280000px;}
._8{width:30.672000px;}
._f{width:32.088000px;}
._25{width:33.696000px;}
._26{width:35.568000px;}
._2a{width:36.648000px;}
._27{width:38.640000px;}
._1e{width:40.464000px;}
._1d{width:41.760000px;}
._2b{width:43.992000px;}
._13{width:45.072000px;}
._14{width:46.416000px;}
._23{width:48.048000px;}
._22{width:52.704000px;}
._3{width:55.632000px;}
._1c{width:56.772000px;}
._1b{width:57.888000px;}
._18{width:61.848000px;}
._19{width:62.904000px;}
._2c{width:66.042000px;}
._2d{width:67.158000px;}
._1a{width:69.912000px;}
._29{width:98.496000px;}
._28{width:99.720000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(5,99,193);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y6c{bottom:-8.820000px;}
.y68{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y70{bottom:2.520000px;}
.y81{bottom:7.020000px;}
.y98{bottom:7.050000px;}
.y8a{bottom:7.200000px;}
.y6e{bottom:8.640000px;}
.y6{bottom:10.260000px;}
.y7{bottom:11.340000px;}
.y6b{bottom:13.500000px;}
.y67{bottom:14.400000px;}
.y80{bottom:30.774000px;}
.y92{bottom:30.780000px;}
.y97{bottom:30.810000px;}
.y89{bottom:30.960000px;}
.y6a{bottom:35.820000px;}
.y66{bottom:36.720000px;}
.y7f{bottom:54.534000px;}
.y88{bottom:54.720000px;}
.y96{bottom:54.750000px;}
.y8{bottom:55.440000px;}
.y5{bottom:57.600000px;}
.y7e{bottom:78.474000px;}
.y87{bottom:78.480000px;}
.y95{bottom:78.510000px;}
.y82{bottom:100.656000px;}
.y7d{bottom:102.234000px;}
.y91{bottom:102.240000px;}
.y86{bottom:102.420000px;}
.y34{bottom:117.216000px;}
.y64{bottom:117.576000px;}
.y5f{bottom:120.096000px;}
.y7b{bottom:125.316000px;}
.y7c{bottom:125.994000px;}
.y90{bottom:126.045000px;}
.y85{bottom:126.180000px;}
.yac{bottom:129.276000px;}
.y33{bottom:140.976000px;}
.y63{bottom:141.336000px;}
.y5e{bottom:143.856000px;}
.y84{bottom:149.970000px;}
.y8f{bottom:149.985000px;}
.yab{bottom:153.030000px;}
.y32{bottom:164.730000px;}
.y62{bottom:165.090000px;}
.y5d{bottom:167.790000px;}
.y8e{bottom:173.745000px;}
.yaa{bottom:176.970000px;}
.y31{bottom:188.670000px;}
.y61{bottom:188.850000px;}
.y5c{bottom:191.550000px;}
.y8d{bottom:197.505000px;}
.ya9{bottom:200.730000px;}
.y30{bottom:212.430000px;}
.y60{bottom:212.790000px;}
.y5b{bottom:215.310000px;}
.y8c{bottom:221.265000px;}
.ya8{bottom:224.490000px;}
.y2f{bottom:236.190000px;}
.y6f{bottom:238.170000px;}
.y5a{bottom:239.070000px;}
.ya7{bottom:248.250000px;}
.y2e{bottom:259.950000px;}
.y59{bottom:263.010000px;}
.ya6{bottom:272.190000px;}
.y7a{bottom:275.790000px;}
.y2d{bottom:283.890000px;}
.y58{bottom:286.770000px;}
.ya5{bottom:295.950000px;}
.y79{bottom:299.730000px;}
.y2c{bottom:307.650000px;}
.y57{bottom:310.530000px;}
.ya4{bottom:319.710000px;}
.y78{bottom:323.490000px;}
.y2b{bottom:331.410000px;}
.y56{bottom:334.290000px;}
.ya3{bottom:343.515000px;}
.y77{bottom:347.295000px;}
.y2a{bottom:355.215000px;}
.y55{bottom:358.275000px;}
.ya2{bottom:367.455000px;}
.y76{bottom:371.055000px;}
.y29{bottom:378.975000px;}
.y54{bottom:382.035000px;}
.ya1{bottom:391.215000px;}
.y75{bottom:394.995000px;}
.y28{bottom:402.915000px;}
.y53{bottom:411.555000px;}
.ya0{bottom:414.975000px;}
.y74{bottom:418.755000px;}
.y27{bottom:426.675000px;}
.y9f{bottom:438.735000px;}
.y73{bottom:442.515000px;}
.y52{bottom:448.095000px;}
.y26{bottom:450.435000px;}
.y9e{bottom:462.675000px;}
.y72{bottom:466.275000px;}
.y25{bottom:474.195000px;}
.y51{bottom:483.915000px;}
.y9d{bottom:486.435000px;}
.y71{bottom:490.215000px;}
.y24{bottom:498.135000px;}
.y9c{bottom:510.195000px;}
.y50{bottom:513.975000px;}
.y23{bottom:521.895000px;}
.y9b{bottom:533.955000px;}
.y4f{bottom:537.735000px;}
.y22{bottom:545.655000px;}
.y9a{bottom:557.715000px;}
.y4e{bottom:561.495000px;}
.y21{bottom:569.415000px;}
.y99{bottom:581.655000px;}
.y4d{bottom:585.435000px;}
.y20{bottom:593.355000px;}
.y94{bottom:599.115000px;}
.y4c{bottom:609.225000px;}
.y1f{bottom:617.145000px;}
.y4b{bottom:632.985000px;}
.y1e{bottom:640.905000px;}
.y4a{bottom:656.745000px;}
.y1d{bottom:664.665000px;}
.y49{bottom:680.685000px;}
.y1c{bottom:688.605000px;}
.y93{bottom:695.085000px;}
.y48{bottom:704.445000px;}
.y1b{bottom:712.365000px;}
.y47{bottom:728.205000px;}
.y6d{bottom:733.605000px;}
.y1a{bottom:736.125000px;}
.y46{bottom:751.965000px;}
.y19{bottom:759.885000px;}
.y8b{bottom:767.265000px;}
.y45{bottom:775.725000px;}
.y18{bottom:783.825000px;}
.y65{bottom:790.845000px;}
.y69{bottom:792.105000px;}
.y44{bottom:799.665000px;}
.y17{bottom:807.585000px;}
.y43{bottom:823.425000px;}
.y16{bottom:831.345000px;}
.y42{bottom:847.185000px;}
.y15{bottom:855.105000px;}
.y41{bottom:870.990000px;}
.y14{bottom:878.910000px;}
.y40{bottom:894.930000px;}
.y13{bottom:902.850000px;}
.y3f{bottom:918.690000px;}
.y12{bottom:926.610000px;}
.y3e{bottom:942.450000px;}
.y11{bottom:950.370000px;}
.y3d{bottom:966.210000px;}
.y10{bottom:974.130000px;}
.y3c{bottom:990.150000px;}
.yf{bottom:998.070000px;}
.y83{bottom:1005.990000px;}
.y3b{bottom:1013.910000px;}
.ye{bottom:1021.830000px;}
.y3a{bottom:1037.670000px;}
.yd{bottom:1045.590000px;}
.y39{bottom:1061.430000px;}
.yc{bottom:1069.350000px;}
.y38{bottom:1085.370000px;}
.yb{bottom:1093.290000px;}
.y37{bottom:1109.130000px;}
.ya{bottom:1119.390000px;}
.y36{bottom:1132.890000px;}
.y9{bottom:1151.100000px;}
.y35{bottom:1156.680000px;}
.y4{bottom:1178.640000px;}
.y3{bottom:1195.560000px;}
.y2{bottom:1212.300000px;}
.y1{bottom:1229.040000px;}
.h6{height:4.038750px;}
.h11{height:23.760000px;}
.h3{height:27.036000px;}
.hf{height:28.260000px;}
.he{height:34.380000px;}
.h2{height:38.100586px;}
.h4{height:50.484375px;}
.h8{height:50.800781px;}
.h9{height:51.996094px;}
.h16{height:52.417969px;}
.hd{height:52.560000px;}
.hc{height:53.460000px;}
.ha{height:59.343750px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.hb{height:68.414062px;}
.h14{height:71.460000px;}
.h15{height:95.256000px;}
.h10{height:142.740000px;}
.h12{height:166.710000px;}
.h13{height:237.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w9{width:116.496000px;}
.w6{width:227.010000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w7{width:503.205000px;}
.wa{width:583.665000px;}
.w8{width:623.625000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:3.420000px;}
.x8{left:7.560000px;}
.x17{left:12.780000px;}
.x16{left:16.020000px;}
.x12{left:34.020000px;}
.x19{left:39.960000px;}
.x13{left:50.085000px;}
.x14{left:68.985000px;}
.x5{left:87.660000px;}
.xa{left:95.795987px;}
.x2{left:101.375987px;}
.x1e{left:127.835987px;}
.x1a{left:134.136000px;}
.x1d{left:138.275987px;}
.x1{left:141.515987px;}
.x10{left:148.895987px;}
.xc{left:162.749987px;}
.xb{left:181.469987px;}
.x1c{left:205.230000px;}
.x3{left:206.489987px;}
.x18{left:221.250000px;}
.x11{left:234.750000px;}
.xe{left:247.889987px;}
.xf{left:295.814987px;}
.x6{left:297.795000px;}
.xd{left:330.914987px;}
.x7{left:393.915000px;}
.x4{left:446.474987px;}
.x15{left:490.785000px;}
.x9{left:500.145000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.896000pt;}
.ls4{letter-spacing:7.040000pt;}
.lse{letter-spacing:7.680000pt;}
.ls11{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:11.520000pt;}
.ls19{letter-spacing:12.160000pt;}
.ls1b{letter-spacing:16.128000pt;}
.ls17{letter-spacing:18.560000pt;}
.ls15{letter-spacing:19.200000pt;}
.ls10{letter-spacing:22.400000pt;}
.lsd{letter-spacing:23.680000pt;}
.lsc{letter-spacing:26.240000pt;}
.ls16{letter-spacing:48.128000pt;}
.ls2{letter-spacing:52.719787pt;}
.lsa{letter-spacing:55.680000pt;}
.ls9{letter-spacing:55.840000pt;}
.ls1{letter-spacing:82.693120pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.960000pt;}
._2{width:2.674987pt;}
._12{width:3.585067pt;}
._d{width:4.608000pt;}
._e{width:5.824000pt;}
._11{width:6.912000pt;}
._b{width:8.613333pt;}
._a{width:9.834667pt;}
._c{width:11.034667pt;}
._24{width:11.957333pt;}
._21{width:12.992000pt;}
._16{width:14.080000pt;}
._15{width:14.976000pt;}
._20{width:17.024000pt;}
._7{width:18.192000pt;}
._6{width:19.328000pt;}
._1f{width:20.288000pt;}
._17{width:21.184000pt;}
._4{width:22.848000pt;}
._5{width:23.808000pt;}
._10{width:25.034667pt;}
._9{width:26.026667pt;}
._8{width:27.264000pt;}
._f{width:28.522667pt;}
._25{width:29.952000pt;}
._26{width:31.616000pt;}
._2a{width:32.576000pt;}
._27{width:34.346667pt;}
._1e{width:35.968000pt;}
._1d{width:37.120000pt;}
._2b{width:39.104000pt;}
._13{width:40.064000pt;}
._14{width:41.258667pt;}
._23{width:42.709333pt;}
._22{width:46.848000pt;}
._3{width:49.450667pt;}
._1c{width:50.464000pt;}
._1b{width:51.456000pt;}
._18{width:54.976000pt;}
._19{width:55.914667pt;}
._2c{width:58.704000pt;}
._2d{width:59.696000pt;}
._1a{width:62.144000pt;}
._29{width:87.552000pt;}
._28{width:88.640000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y6c{bottom:-7.840000pt;}
.y68{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.240000pt;}
.y81{bottom:6.240000pt;}
.y98{bottom:6.266667pt;}
.y8a{bottom:6.400000pt;}
.y6e{bottom:7.680000pt;}
.y6{bottom:9.120000pt;}
.y7{bottom:10.080000pt;}
.y6b{bottom:12.000000pt;}
.y67{bottom:12.800000pt;}
.y80{bottom:27.354667pt;}
.y92{bottom:27.360000pt;}
.y97{bottom:27.386667pt;}
.y89{bottom:27.520000pt;}
.y6a{bottom:31.840000pt;}
.y66{bottom:32.640000pt;}
.y7f{bottom:48.474667pt;}
.y88{bottom:48.640000pt;}
.y96{bottom:48.666667pt;}
.y8{bottom:49.280000pt;}
.y5{bottom:51.200000pt;}
.y7e{bottom:69.754667pt;}
.y87{bottom:69.760000pt;}
.y95{bottom:69.786667pt;}
.y82{bottom:89.472000pt;}
.y7d{bottom:90.874667pt;}
.y91{bottom:90.880000pt;}
.y86{bottom:91.040000pt;}
.y34{bottom:104.192000pt;}
.y64{bottom:104.512000pt;}
.y5f{bottom:106.752000pt;}
.y7b{bottom:111.392000pt;}
.y7c{bottom:111.994667pt;}
.y90{bottom:112.040000pt;}
.y85{bottom:112.160000pt;}
.yac{bottom:114.912000pt;}
.y33{bottom:125.312000pt;}
.y63{bottom:125.632000pt;}
.y5e{bottom:127.872000pt;}
.y84{bottom:133.306667pt;}
.y8f{bottom:133.320000pt;}
.yab{bottom:136.026667pt;}
.y32{bottom:146.426667pt;}
.y62{bottom:146.746667pt;}
.y5d{bottom:149.146667pt;}
.y8e{bottom:154.440000pt;}
.yaa{bottom:157.306667pt;}
.y31{bottom:167.706667pt;}
.y61{bottom:167.866667pt;}
.y5c{bottom:170.266667pt;}
.y8d{bottom:175.560000pt;}
.ya9{bottom:178.426667pt;}
.y30{bottom:188.826667pt;}
.y60{bottom:189.146667pt;}
.y5b{bottom:191.386667pt;}
.y8c{bottom:196.680000pt;}
.ya8{bottom:199.546667pt;}
.y2f{bottom:209.946667pt;}
.y6f{bottom:211.706667pt;}
.y5a{bottom:212.506667pt;}
.ya7{bottom:220.666667pt;}
.y2e{bottom:231.066667pt;}
.y59{bottom:233.786667pt;}
.ya6{bottom:241.946667pt;}
.y7a{bottom:245.146667pt;}
.y2d{bottom:252.346667pt;}
.y58{bottom:254.906667pt;}
.ya5{bottom:263.066667pt;}
.y79{bottom:266.426667pt;}
.y2c{bottom:273.466667pt;}
.y57{bottom:276.026667pt;}
.ya4{bottom:284.186667pt;}
.y78{bottom:287.546667pt;}
.y2b{bottom:294.586667pt;}
.y56{bottom:297.146667pt;}
.ya3{bottom:305.346667pt;}
.y77{bottom:308.706667pt;}
.y2a{bottom:315.746667pt;}
.y55{bottom:318.466667pt;}
.ya2{bottom:326.626667pt;}
.y76{bottom:329.826667pt;}
.y29{bottom:336.866667pt;}
.y54{bottom:339.586667pt;}
.ya1{bottom:347.746667pt;}
.y75{bottom:351.106667pt;}
.y28{bottom:358.146667pt;}
.y53{bottom:365.826667pt;}
.ya0{bottom:368.866667pt;}
.y74{bottom:372.226667pt;}
.y27{bottom:379.266667pt;}
.y9f{bottom:389.986667pt;}
.y73{bottom:393.346667pt;}
.y52{bottom:398.306667pt;}
.y26{bottom:400.386667pt;}
.y9e{bottom:411.266667pt;}
.y72{bottom:414.466667pt;}
.y25{bottom:421.506667pt;}
.y51{bottom:430.146667pt;}
.y9d{bottom:432.386667pt;}
.y71{bottom:435.746667pt;}
.y24{bottom:442.786667pt;}
.y9c{bottom:453.506667pt;}
.y50{bottom:456.866667pt;}
.y23{bottom:463.906667pt;}
.y9b{bottom:474.626667pt;}
.y4f{bottom:477.986667pt;}
.y22{bottom:485.026667pt;}
.y9a{bottom:495.746667pt;}
.y4e{bottom:499.106667pt;}
.y21{bottom:506.146667pt;}
.y99{bottom:517.026667pt;}
.y4d{bottom:520.386667pt;}
.y20{bottom:527.426667pt;}
.y94{bottom:532.546667pt;}
.y4c{bottom:541.533333pt;}
.y1f{bottom:548.573333pt;}
.y4b{bottom:562.653333pt;}
.y1e{bottom:569.693333pt;}
.y4a{bottom:583.773333pt;}
.y1d{bottom:590.813333pt;}
.y49{bottom:605.053333pt;}
.y1c{bottom:612.093333pt;}
.y93{bottom:617.853333pt;}
.y48{bottom:626.173333pt;}
.y1b{bottom:633.213333pt;}
.y47{bottom:647.293333pt;}
.y6d{bottom:652.093333pt;}
.y1a{bottom:654.333333pt;}
.y46{bottom:668.413333pt;}
.y19{bottom:675.453333pt;}
.y8b{bottom:682.013333pt;}
.y45{bottom:689.533333pt;}
.y18{bottom:696.733333pt;}
.y65{bottom:702.973333pt;}
.y69{bottom:704.093333pt;}
.y44{bottom:710.813333pt;}
.y17{bottom:717.853333pt;}
.y43{bottom:731.933333pt;}
.y16{bottom:738.973333pt;}
.y42{bottom:753.053333pt;}
.y15{bottom:760.093333pt;}
.y41{bottom:774.213333pt;}
.y14{bottom:781.253333pt;}
.y40{bottom:795.493333pt;}
.y13{bottom:802.533333pt;}
.y3f{bottom:816.613333pt;}
.y12{bottom:823.653333pt;}
.y3e{bottom:837.733333pt;}
.y11{bottom:844.773333pt;}
.y3d{bottom:858.853333pt;}
.y10{bottom:865.893333pt;}
.y3c{bottom:880.133333pt;}
.yf{bottom:887.173333pt;}
.y83{bottom:894.213333pt;}
.y3b{bottom:901.253333pt;}
.ye{bottom:908.293333pt;}
.y3a{bottom:922.373333pt;}
.yd{bottom:929.413333pt;}
.y39{bottom:943.493333pt;}
.yc{bottom:950.533333pt;}
.y38{bottom:964.773333pt;}
.yb{bottom:971.813333pt;}
.y37{bottom:985.893333pt;}
.ya{bottom:995.013333pt;}
.y36{bottom:1007.013333pt;}
.y9{bottom:1023.200000pt;}
.y35{bottom:1028.160000pt;}
.y4{bottom:1047.680000pt;}
.y3{bottom:1062.720000pt;}
.y2{bottom:1077.600000pt;}
.y1{bottom:1092.480000pt;}
.h6{height:3.590000pt;}
.h11{height:21.120000pt;}
.h3{height:24.032000pt;}
.hf{height:25.120000pt;}
.he{height:30.560000pt;}
.h2{height:33.867188pt;}
.h4{height:44.875000pt;}
.h8{height:45.156250pt;}
.h9{height:46.218750pt;}
.h16{height:46.593750pt;}
.hd{height:46.720000pt;}
.hc{height:47.520000pt;}
.ha{height:52.750000pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.hb{height:60.812500pt;}
.h14{height:63.520000pt;}
.h15{height:84.672000pt;}
.h10{height:126.880000pt;}
.h12{height:148.186667pt;}
.h13{height:211.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w9{width:103.552000pt;}
.w6{width:201.786667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w7{width:447.293333pt;}
.wa{width:518.813333pt;}
.w8{width:554.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.040000pt;}
.x8{left:6.720000pt;}
.x17{left:11.360000pt;}
.x16{left:14.240000pt;}
.x12{left:30.240000pt;}
.x19{left:35.520000pt;}
.x13{left:44.520000pt;}
.x14{left:61.320000pt;}
.x5{left:77.920000pt;}
.xa{left:85.151988pt;}
.x2{left:90.111988pt;}
.x1e{left:113.631988pt;}
.x1a{left:119.232000pt;}
.x1d{left:122.911988pt;}
.x1{left:125.791988pt;}
.x10{left:132.351988pt;}
.xc{left:144.666655pt;}
.xb{left:161.306655pt;}
.x1c{left:182.426667pt;}
.x3{left:183.546655pt;}
.x18{left:196.666667pt;}
.x11{left:208.666667pt;}
.xe{left:220.346655pt;}
.xf{left:262.946655pt;}
.x6{left:264.706667pt;}
.xd{left:294.146655pt;}
.x7{left:350.146667pt;}
.x4{left:396.866655pt;}
.x15{left:436.253333pt;}
.x9{left:444.573333pt;}
}




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