
    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_ab12df5bc7ffe44d88fed38b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_91cb0e6a98d4266fe625ddad.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_1b8775c14aed0d74014d8925.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_62cf76a61534e75e0b3ab0d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694336;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_b05889c2641779eecc35958b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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);}
.v3{vertical-align:-20.880000px;}
.v8{vertical-align:-4.680000px;}
.v6{vertical-align:-2.880000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v9{vertical-align:4.680000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls21{letter-spacing:-0.513600px;}
.lsd{letter-spacing:-0.413400px;}
.ls1c{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.270000px;}
.ls1a{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.045360px;}
.ls23{letter-spacing:-0.008640px;}
.ls19{letter-spacing:-0.002526px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.011160px;}
.ls1{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.247320px;}
.ls8{letter-spacing:0.270000px;}
.ls24{letter-spacing:0.306600px;}
.ls11{letter-spacing:0.307440px;}
.lse{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.450000px;}
.ls14{letter-spacing:0.720000px;}
.ls1e{letter-spacing:2.970000px;}
.ls25{letter-spacing:3.240000px;}
.ls15{letter-spacing:3.600000px;}
.lsf{letter-spacing:6.120000px;}
.ls27{letter-spacing:6.480000px;}
.ls17{letter-spacing:6.840000px;}
.ls16{letter-spacing:6.930000px;}
.ls1f{letter-spacing:8.280000px;}
.ls26{letter-spacing:9.720000px;}
.ls18{letter-spacing:12.600000px;}
.ls13{letter-spacing:13.680000px;}
.ls28{letter-spacing:16.406640px;}
.ls5{letter-spacing:36.926640px;}
.ls4{letter-spacing:41.148000px;}
.ls20{letter-spacing:46.286640px;}
.ls1d{letter-spacing:64.170000px;}
.ls2{letter-spacing:903.810000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-60.120000px;}
.ws9{word-spacing:-60.117474px;}
.ws2{word-spacing:-26.856000px;}
.ws3{word-spacing:-16.424640px;}
.wse{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws5{word-spacing:-14.876400px;}
.wsa{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.516400px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.wsb{word-spacing:-9.360000px;}
.ws8{word-spacing:0.000000px;}
._1a{margin-left:-6.219000px;}
._0{margin-left:-1.202400px;}
._3{width:1.516680px;}
._c{width:2.918520px;}
._d{width:4.388760px;}
._8{width:5.934960px;}
._6{width:6.973920px;}
._5{width:7.995960px;}
._a{width:9.018000px;}
._7{width:10.566720px;}
._e{width:12.084120px;}
._11{width:13.166280px;}
._1d{width:14.741760px;}
._4{width:16.533000px;}
._b{width:18.036000px;}
._18{width:19.327680px;}
._1e{width:20.832480px;}
._22{width:21.881640px;}
._28{width:23.681520px;}
._14{width:25.130160px;}
._15{width:26.450040px;}
._f{width:28.188000px;}
._1f{width:29.579040px;}
._19{width:30.901680px;}
._9{width:32.344560px;}
._16{width:33.366600px;}
._27{width:34.388640px;}
._10{width:35.910000px;}
._17{width:37.514880px;}
._25{width:38.649000px;}
._12{width:44.488800px;}
._24{width:49.236960px;}
._23{width:50.260320px;}
._20{width:53.695080px;}
._13{width:59.879520px;}
._26{width:64.027800px;}
._29{width:72.083880px;}
._21{width:77.221800px;}
._2a{width:87.296760px;}
._2{width:130.455480px;}
._1b{width:141.838320px;}
._1c{width:200.970000px;}
._1{width:341.548680px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.700000px;}
.yac{bottom:2.790000px;}
.y3d{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y37{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.yb1{bottom:17.460000px;}
.y3c{bottom:18.450000px;}
.y35{bottom:19.350000px;}
.yb0{bottom:32.130000px;}
.y2c{bottom:33.930000px;}
.y7{bottom:35.550000px;}
.y34{bottom:35.820000px;}
.yaf{bottom:46.800000px;}
.y3b{bottom:49.500000px;}
.y2b{bottom:51.210000px;}
.y33{bottom:51.300000px;}
.y3{bottom:58.140000px;}
.yae{bottom:61.470000px;}
.y3a{bottom:64.980000px;}
.y32{bottom:66.870000px;}
.y2a{bottom:68.490000px;}
.y39{bottom:80.550000px;}
.y31{bottom:82.380000px;}
.y29{bottom:85.680000px;}
.y30{bottom:97.860000px;}
.y28{bottom:102.960000px;}
.y3e{bottom:106.200000px;}
.y2f{bottom:113.430000px;}
.y7f{bottom:117.900000px;}
.y27{bottom:120.240000px;}
.y47{bottom:122.760000px;}
.y9f{bottom:124.020000px;}
.y2e{bottom:128.910000px;}
.y7e{bottom:135.090000px;}
.y26{bottom:137.430000px;}
.y46{bottom:139.950000px;}
.y9e{bottom:141.210000px;}
.y7d{bottom:152.370000px;}
.y25{bottom:154.710000px;}
.y45{bottom:157.260000px;}
.y9d{bottom:158.520000px;}
.y7c{bottom:169.680000px;}
.y24{bottom:171.990000px;}
.y44{bottom:174.540000px;}
.y9c{bottom:175.800000px;}
.y7b{bottom:186.870000px;}
.y23{bottom:189.180000px;}
.y43{bottom:191.730000px;}
.y9b{bottom:192.990000px;}
.y7a{bottom:204.150000px;}
.y22{bottom:206.460000px;}
.y42{bottom:209.010000px;}
.y9a{bottom:210.270000px;}
.y79{bottom:221.430000px;}
.y21{bottom:223.740000px;}
.y41{bottom:225.930000px;}
.y99{bottom:227.460000px;}
.y78{bottom:238.620000px;}
.y20{bottom:240.930000px;}
.y40{bottom:241.770000px;}
.y98{bottom:244.740000px;}
.y77{bottom:255.900000px;}
.y1f{bottom:258.210000px;}
.y3f{bottom:258.690000px;}
.y97{bottom:262.020000px;}
.y18{bottom:272.100000px;}
.y76{bottom:273.180000px;}
.y1e{bottom:275.490000px;}
.y96{bottom:279.210000px;}
.y75{bottom:290.370000px;}
.y1d{bottom:292.680000px;}
.y95{bottom:296.490000px;}
.y74{bottom:307.650000px;}
.y1c{bottom:309.990000px;}
.y94{bottom:313.770000px;}
.y73{bottom:324.930000px;}
.y1b{bottom:327.270000px;}
.y93{bottom:330.960000px;}
.y72{bottom:342.120000px;}
.y1a{bottom:344.460000px;}
.y92{bottom:348.240000px;}
.y71{bottom:359.400000px;}
.y19{bottom:361.740000px;}
.y91{bottom:365.520000px;}
.y70{bottom:376.590000px;}
.y90{bottom:382.710000px;}
.y38{bottom:391.620000px;}
.y6f{bottom:393.870000px;}
.y8f{bottom:399.990000px;}
.y6e{bottom:411.150000px;}
.y8e{bottom:417.270000px;}
.y6d{bottom:428.340000px;}
.y8d{bottom:434.460000px;}
.y6c{bottom:445.620000px;}
.y8c{bottom:451.740000px;}
.y6b{bottom:462.900000px;}
.y8b{bottom:469.020000px;}
.y6a{bottom:480.090000px;}
.y36{bottom:485.490000px;}
.y8a{bottom:486.210000px;}
.y69{bottom:497.370000px;}
.y89{bottom:503.490000px;}
.y2d{bottom:506.280000px;}
.y68{bottom:514.650000px;}
.y88{bottom:520.770000px;}
.y67{bottom:531.840000px;}
.y87{bottom:537.960000px;}
.y66{bottom:549.120000px;}
.y86{bottom:555.240000px;}
.y65{bottom:566.400000px;}
.y85{bottom:572.430000px;}
.y64{bottom:583.620000px;}
.y84{bottom:589.740000px;}
.y63{bottom:600.900000px;}
.y83{bottom:607.020000px;}
.y62{bottom:618.180000px;}
.y82{bottom:624.210000px;}
.y61{bottom:638.520000px;}
.y81{bottom:641.490000px;}
.y16{bottom:648.600000px;}
.y60{bottom:658.770000px;}
.y80{bottom:675.960000px;}
.y5f{bottom:679.020000px;}
.y15{bottom:683.160000px;}
.y5e{bottom:693.240000px;}
.y14{bottom:703.050000px;}
.yab{bottom:707.910000px;}
.y5d{bottom:710.520000px;}
.yaa{bottom:725.190000px;}
.y5c{bottom:727.710000px;}
.y13{bottom:736.710000px;}
.ya9{bottom:742.470000px;}
.y5b{bottom:744.990000px;}
.y12{bottom:753.990000px;}
.ya8{bottom:759.660000px;}
.y5a{bottom:762.270000px;}
.y11{bottom:771.180000px;}
.ya7{bottom:776.940000px;}
.y59{bottom:779.460000px;}
.y10{bottom:788.460000px;}
.ya6{bottom:794.220000px;}
.y58{bottom:796.740000px;}
.yf{bottom:805.740000px;}
.ya5{bottom:811.410000px;}
.y57{bottom:814.020000px;}
.ye{bottom:818.070000px;}
.ya4{bottom:828.690000px;}
.y56{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.ya3{bottom:845.970000px;}
.y55{bottom:848.490000px;}
.ya2{bottom:863.160000px;}
.y54{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.ya1{bottom:880.440000px;}
.y53{bottom:882.960000px;}
.ya0{bottom:897.720000px;}
.y52{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.yad{bottom:912.390000px;}
.y51{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y50{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y4f{bottom:951.990000px;}
.y4e{bottom:969.180000px;}
.y4d{bottom:986.460000px;}
.y4c{bottom:1003.770000px;}
.y4b{bottom:1020.960000px;}
.y4a{bottom:1038.240000px;}
.y49{bottom:1055.520000px;}
.y48{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1f{height:14.700000px;}
.hf{height:17.190000px;}
.h14{height:20.070000px;}
.hc{height:27.147656px;}
.h3{height:27.630000px;}
.h5{height:33.431836px;}
.h22{height:35.694141px;}
.h20{height:36.068555px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h1b{height:41.097656px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h1e{height:43.769004px;}
.h1c{height:44.033203px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h19{height:48.027656px;}
.h1d{height:48.147656px;}
.h1a{height:48.312422px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h21{height:73.350000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h15{height:93.150000px;}
.h18{height:118.800000px;}
.h11{height:141.510000px;}
.h7{height:153.930000px;}
.h10{height:375.690000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w6{width:220.350000px;}
.w7{width:350.040000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.660000px;}
.x3{left:8.640000px;}
.x12{left:20.160000px;}
.x16{left:27.630000px;}
.x14{left:34.110000px;}
.x15{left:36.090000px;}
.x9{left:41.939986px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x18{left:59.669986px;}
.x1{left:60.749986px;}
.x17{left:65.429986px;}
.x1c{left:71.819986px;}
.x26{left:85.230000px;}
.x24{left:88.199986px;}
.xb{left:94.319986px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.x10{left:128.249986px;}
.x1b{left:176.969986px;}
.xc{left:209.009986px;}
.xf{left:211.439986px;}
.x21{left:250.139986px;}
.x1a{left:252.569986px;}
.xd{left:291.089986px;}
.xe{left:297.479986px;}
.x8{left:459.029986px;}
.x20{left:462.809986px;}
.xa{left:464.159986px;}
.x19{left:478.229986px;}
.x22{left:479.759986px;}
.x1d{left:482.549986px;}
.x1f{left:483.989986px;}
.x23{left:506.759986px;}
.x1e{left:509.549986px;}
.x25{left:526.559986px;}
.x11{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v8{vertical-align:-4.160000pt;}
.v6{vertical-align:-2.560000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v9{vertical-align:4.160000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls21{letter-spacing:-0.456533pt;}
.lsd{letter-spacing:-0.367467pt;}
.ls1c{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls1a{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.040320pt;}
.ls23{letter-spacing:-0.007680pt;}
.ls19{letter-spacing:-0.002245pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.009920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.219840pt;}
.ls8{letter-spacing:0.240000pt;}
.ls24{letter-spacing:0.272533pt;}
.ls11{letter-spacing:0.273280pt;}
.lse{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.400000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:2.640000pt;}
.ls25{letter-spacing:2.880000pt;}
.ls15{letter-spacing:3.200000pt;}
.lsf{letter-spacing:5.440000pt;}
.ls27{letter-spacing:5.760000pt;}
.ls17{letter-spacing:6.080000pt;}
.ls16{letter-spacing:6.160000pt;}
.ls1f{letter-spacing:7.360000pt;}
.ls26{letter-spacing:8.640000pt;}
.ls18{letter-spacing:11.200000pt;}
.ls13{letter-spacing:12.160000pt;}
.ls28{letter-spacing:14.583680pt;}
.ls5{letter-spacing:32.823680pt;}
.ls4{letter-spacing:36.576000pt;}
.ls20{letter-spacing:41.143680pt;}
.ls1d{letter-spacing:57.040000pt;}
.ls2{letter-spacing:803.386667pt;}
.ws7{word-spacing:-53.440000pt;}
.ws9{word-spacing:-53.437755pt;}
.ws2{word-spacing:-23.872000pt;}
.ws3{word-spacing:-14.599680pt;}
.wse{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws5{word-spacing:-13.223467pt;}
.wsa{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.903467pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.wsb{word-spacing:-8.320000pt;}
.ws8{word-spacing:0.000000pt;}
._1a{margin-left:-5.528000pt;}
._0{margin-left:-1.068800pt;}
._3{width:1.348160pt;}
._c{width:2.594240pt;}
._d{width:3.901120pt;}
._8{width:5.275520pt;}
._6{width:6.199040pt;}
._5{width:7.107520pt;}
._a{width:8.016000pt;}
._7{width:9.392640pt;}
._e{width:10.741440pt;}
._11{width:11.703360pt;}
._1d{width:13.103787pt;}
._4{width:14.696000pt;}
._b{width:16.032000pt;}
._18{width:17.180160pt;}
._1e{width:18.517760pt;}
._22{width:19.450347pt;}
._28{width:21.050240pt;}
._14{width:22.337920pt;}
._15{width:23.511147pt;}
._f{width:25.056000pt;}
._1f{width:26.292480pt;}
._19{width:27.468160pt;}
._9{width:28.750720pt;}
._16{width:29.659200pt;}
._27{width:30.567680pt;}
._10{width:31.920000pt;}
._17{width:33.346560pt;}
._25{width:34.354667pt;}
._12{width:39.545600pt;}
._24{width:43.766187pt;}
._23{width:44.675840pt;}
._20{width:47.728960pt;}
._13{width:53.226240pt;}
._26{width:56.913600pt;}
._29{width:64.074560pt;}
._21{width:68.641600pt;}
._2a{width:77.597120pt;}
._2{width:115.960427pt;}
._1b{width:126.078507pt;}
._1c{width:178.640000pt;}
._1{width:303.598827pt;}
.fs3{font-size:26.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.400000pt;}
.yac{bottom:2.480000pt;}
.y3d{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y37{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.yb1{bottom:15.520000pt;}
.y3c{bottom:16.400000pt;}
.y35{bottom:17.200000pt;}
.yb0{bottom:28.560000pt;}
.y2c{bottom:30.160000pt;}
.y7{bottom:31.600000pt;}
.y34{bottom:31.840000pt;}
.yaf{bottom:41.600000pt;}
.y3b{bottom:44.000000pt;}
.y2b{bottom:45.520000pt;}
.y33{bottom:45.600000pt;}
.y3{bottom:51.680000pt;}
.yae{bottom:54.640000pt;}
.y3a{bottom:57.760000pt;}
.y32{bottom:59.440000pt;}
.y2a{bottom:60.880000pt;}
.y39{bottom:71.600000pt;}
.y31{bottom:73.226667pt;}
.y29{bottom:76.160000pt;}
.y30{bottom:86.986667pt;}
.y28{bottom:91.520000pt;}
.y3e{bottom:94.400000pt;}
.y2f{bottom:100.826667pt;}
.y7f{bottom:104.800000pt;}
.y27{bottom:106.880000pt;}
.y47{bottom:109.120000pt;}
.y9f{bottom:110.240000pt;}
.y2e{bottom:114.586667pt;}
.y7e{bottom:120.080000pt;}
.y26{bottom:122.160000pt;}
.y46{bottom:124.400000pt;}
.y9e{bottom:125.520000pt;}
.y7d{bottom:135.440000pt;}
.y25{bottom:137.520000pt;}
.y45{bottom:139.786667pt;}
.y9d{bottom:140.906667pt;}
.y7c{bottom:150.826667pt;}
.y24{bottom:152.880000pt;}
.y44{bottom:155.146667pt;}
.y9c{bottom:156.266667pt;}
.y7b{bottom:166.106667pt;}
.y23{bottom:168.160000pt;}
.y43{bottom:170.426667pt;}
.y9b{bottom:171.546667pt;}
.y7a{bottom:181.466667pt;}
.y22{bottom:183.520000pt;}
.y42{bottom:185.786667pt;}
.y9a{bottom:186.906667pt;}
.y79{bottom:196.826667pt;}
.y21{bottom:198.880000pt;}
.y41{bottom:200.826667pt;}
.y99{bottom:202.186667pt;}
.y78{bottom:212.106667pt;}
.y20{bottom:214.160000pt;}
.y40{bottom:214.906667pt;}
.y98{bottom:217.546667pt;}
.y77{bottom:227.466667pt;}
.y1f{bottom:229.520000pt;}
.y3f{bottom:229.946667pt;}
.y97{bottom:232.906667pt;}
.y18{bottom:241.866667pt;}
.y76{bottom:242.826667pt;}
.y1e{bottom:244.880000pt;}
.y96{bottom:248.186667pt;}
.y75{bottom:258.106667pt;}
.y1d{bottom:260.160000pt;}
.y95{bottom:263.546667pt;}
.y74{bottom:273.466667pt;}
.y1c{bottom:275.546667pt;}
.y94{bottom:278.906667pt;}
.y73{bottom:288.826667pt;}
.y1b{bottom:290.906667pt;}
.y93{bottom:294.186667pt;}
.y72{bottom:304.106667pt;}
.y1a{bottom:306.186667pt;}
.y92{bottom:309.546667pt;}
.y71{bottom:319.466667pt;}
.y19{bottom:321.546667pt;}
.y91{bottom:324.906667pt;}
.y70{bottom:334.746667pt;}
.y90{bottom:340.186667pt;}
.y38{bottom:348.106667pt;}
.y6f{bottom:350.106667pt;}
.y8f{bottom:355.546667pt;}
.y6e{bottom:365.466667pt;}
.y8e{bottom:370.906667pt;}
.y6d{bottom:380.746667pt;}
.y8d{bottom:386.186667pt;}
.y6c{bottom:396.106667pt;}
.y8c{bottom:401.546667pt;}
.y6b{bottom:411.466667pt;}
.y8b{bottom:416.906667pt;}
.y6a{bottom:426.746667pt;}
.y36{bottom:431.546667pt;}
.y8a{bottom:432.186667pt;}
.y69{bottom:442.106667pt;}
.y89{bottom:447.546667pt;}
.y2d{bottom:450.026667pt;}
.y68{bottom:457.466667pt;}
.y88{bottom:462.906667pt;}
.y67{bottom:472.746667pt;}
.y87{bottom:478.186667pt;}
.y66{bottom:488.106667pt;}
.y86{bottom:493.546667pt;}
.y65{bottom:503.466667pt;}
.y85{bottom:508.826667pt;}
.y64{bottom:518.773333pt;}
.y84{bottom:524.213333pt;}
.y63{bottom:534.133333pt;}
.y83{bottom:539.573333pt;}
.y62{bottom:549.493333pt;}
.y82{bottom:554.853333pt;}
.y61{bottom:567.573333pt;}
.y81{bottom:570.213333pt;}
.y16{bottom:576.533333pt;}
.y60{bottom:585.573333pt;}
.y80{bottom:600.853333pt;}
.y5f{bottom:603.573333pt;}
.y15{bottom:607.253333pt;}
.y5e{bottom:616.213333pt;}
.y14{bottom:624.933333pt;}
.yab{bottom:629.253333pt;}
.y5d{bottom:631.573333pt;}
.yaa{bottom:644.613333pt;}
.y5c{bottom:646.853333pt;}
.y13{bottom:654.853333pt;}
.ya9{bottom:659.973333pt;}
.y5b{bottom:662.213333pt;}
.y12{bottom:670.213333pt;}
.ya8{bottom:675.253333pt;}
.y5a{bottom:677.573333pt;}
.y11{bottom:685.493333pt;}
.ya7{bottom:690.613333pt;}
.y59{bottom:692.853333pt;}
.y10{bottom:700.853333pt;}
.ya6{bottom:705.973333pt;}
.y58{bottom:708.213333pt;}
.yf{bottom:716.213333pt;}
.ya5{bottom:721.253333pt;}
.y57{bottom:723.573333pt;}
.ye{bottom:727.173333pt;}
.ya4{bottom:736.613333pt;}
.y56{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.ya3{bottom:751.973333pt;}
.y55{bottom:754.213333pt;}
.ya2{bottom:767.253333pt;}
.y54{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.ya1{bottom:782.613333pt;}
.y53{bottom:784.853333pt;}
.ya0{bottom:797.973333pt;}
.y52{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.yad{bottom:811.013333pt;}
.y51{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y50{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y4f{bottom:846.213333pt;}
.y4e{bottom:861.493333pt;}
.y4d{bottom:876.853333pt;}
.y4c{bottom:892.240000pt;}
.y4b{bottom:907.520000pt;}
.y4a{bottom:922.880000pt;}
.y49{bottom:938.240000pt;}
.y48{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:13.066667pt;}
.hf{height:15.280000pt;}
.h14{height:17.840000pt;}
.hc{height:24.131250pt;}
.h3{height:24.560000pt;}
.h5{height:29.717188pt;}
.h22{height:31.728125pt;}
.h20{height:32.060937pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h1b{height:36.531250pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h1e{height:38.905781pt;}
.h1c{height:39.140625pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h19{height:42.691250pt;}
.h1d{height:42.797917pt;}
.h1a{height:42.944375pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h21{height:65.200000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h15{height:82.800000pt;}
.h18{height:105.600000pt;}
.h11{height:125.786667pt;}
.h7{height:136.826667pt;}
.h10{height:333.946667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w6{width:195.866667pt;}
.w7{width:311.146667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.920000pt;}
.x3{left:7.680000pt;}
.x12{left:17.920000pt;}
.x16{left:24.560000pt;}
.x14{left:30.320000pt;}
.x15{left:32.080000pt;}
.x9{left:37.279988pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x18{left:53.039988pt;}
.x1{left:53.999988pt;}
.x17{left:58.159988pt;}
.x1c{left:63.839988pt;}
.x26{left:75.760000pt;}
.x24{left:78.399988pt;}
.xb{left:83.839988pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.x10{left:113.999988pt;}
.x1b{left:157.306655pt;}
.xc{left:185.786655pt;}
.xf{left:187.946655pt;}
.x21{left:222.346655pt;}
.x1a{left:224.506655pt;}
.xd{left:258.746655pt;}
.xe{left:264.426655pt;}
.x8{left:408.026655pt;}
.x20{left:411.386655pt;}
.xa{left:412.586655pt;}
.x19{left:425.093321pt;}
.x22{left:426.453321pt;}
.x1d{left:428.933321pt;}
.x1f{left:430.213321pt;}
.x23{left:450.453321pt;}
.x1e{left:452.933321pt;}
.x25{left:468.053321pt;}
.x11{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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