
    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_281a3539df4d9d23e28e638a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_802ad77623af9505d7ad4cc8.woff2')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_e87ba9b92ccebabaeb30e80d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_4cc772236abfb93ac1b508b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_d396db4077da69c4642db1d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_6315dd325fbec22ebf8d95fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_b2f46013c72d46dc23e8bf9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_57f48474f5a4780a38f7952f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_4bb2c4b54430fb8a190f01c5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e21093b21d1a76e8cbef4a2a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_913e384d27355206ee6e3527.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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);}
.v4{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.lsb{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.058320px;}
.ls8{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.156000px;}
.lsd{letter-spacing:0.169800px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.900000px;}
.lsc{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.620000px;}
.ls23{letter-spacing:2.106720px;}
.ls3{letter-spacing:3.060000px;}
.ls14{letter-spacing:3.180960px;}
.ls16{letter-spacing:3.360960px;}
.ls11{letter-spacing:3.434400px;}
.ls12{letter-spacing:3.548160px;}
.ls13{letter-spacing:3.945600px;}
.ls15{letter-spacing:16.394400px;}
.ls17{letter-spacing:16.508160px;}
.ls1c{letter-spacing:16.559280px;}
.ls1b{letter-spacing:18.180000px;}
.ls18{letter-spacing:19.994400px;}
.ls19{letter-spacing:20.108160px;}
.ls1a{letter-spacing:21.225600px;}
.ls22{letter-spacing:31.602720px;}
.ls1f{letter-spacing:31.626720px;}
.lsf{letter-spacing:41.940000px;}
.ls6{letter-spacing:49.602720px;}
.ls7{letter-spacing:49.626720px;}
.ls1d{letter-spacing:70.020000px;}
.ls1e{letter-spacing:116.820000px;}
.ls10{letter-spacing:126.180000px;}
.ls1{letter-spacing:505.080000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.808240px;}
.wse{word-spacing:-22.004640px;}
.ws8{word-spacing:-21.991680px;}
.ws2{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.447440px;}
.ws7{word-spacing:-11.922480px;}
.wsd{word-spacing:-9.032400px;}
.wsf{word-spacing:-8.375760px;}
.wsb{word-spacing:-8.312400px;}
.wsc{word-spacing:-8.298720px;}
.ws6{word-spacing:-5.432400px;}
.wsa{word-spacing:-4.712400px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-3.346560px;}
._b{margin-left:-2.270880px;}
._3{margin-left:-1.195200px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._c{width:3.884400px;}
._5{width:5.019840px;}
._6{width:6.035760px;}
._7{width:7.888320px;}
._20{width:9.621360px;}
._8{width:10.786320px;}
._9{width:12.162960px;}
._e{width:13.653360px;}
._15{width:16.852320px;}
._1a{width:17.868240px;}
._14{width:19.471680px;}
._10{width:21.035520px;}
._d{width:22.823040px;}
._f{width:23.849520px;}
._1c{width:25.218720px;}
._1d{width:26.354160px;}
._12{width:27.977760px;}
._13{width:29.043360px;}
._11{width:30.228480px;}
._16{width:31.553280px;}
._17{width:32.688720px;}
._21{width:38.067120px;}
._22{width:39.381840px;}
._19{width:40.505040px;}
._18{width:41.523120px;}
._1e{width:42.608880px;}
._1f{width:69.927120px;}
._4{width:521.426640px;}
._1b{width:767.850240px;}
._2{width:768.960480px;}
._23{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:3.240000px;}
.y6d{bottom:3.600000px;}
.y69{bottom:20.520000px;}
.y6c{bottom:20.880000px;}
.y59{bottom:56.160000px;}
.yc1{bottom:89.820000px;}
.y58{bottom:97.380000px;}
.y98{bottom:98.640000px;}
.y3e{bottom:102.780000px;}
.yc0{bottom:106.920000px;}
.y57{bottom:114.660000px;}
.y97{bottom:115.920000px;}
.y3d{bottom:120.060000px;}
.ybf{bottom:124.200000px;}
.y56{bottom:131.940000px;}
.y96{bottom:133.740000px;}
.y3c{bottom:137.160000px;}
.ybe{bottom:141.480000px;}
.y55{bottom:150.120000px;}
.y95{bottom:151.380000px;}
.y3b{bottom:154.440000px;}
.ybd{bottom:158.760000px;}
.y54{bottom:167.430000px;}
.y94{bottom:168.690000px;}
.y3a{bottom:171.750000px;}
.ybc{bottom:176.070000px;}
.y53{bottom:185.430000px;}
.y93{bottom:185.790000px;}
.y39{bottom:189.030000px;}
.ybb{bottom:193.350000px;}
.y52{bottom:203.070000px;}
.y92{bottom:203.430000px;}
.y38{bottom:206.310000px;}
.yba{bottom:210.450000px;}
.y51{bottom:220.350000px;}
.y91{bottom:220.890000px;}
.y37{bottom:223.590000px;}
.yb9{bottom:227.730000px;}
.y50{bottom:237.630000px;}
.y90{bottom:238.530000px;}
.y36{bottom:240.690000px;}
.yb8{bottom:245.010000px;}
.y4f{bottom:255.450000px;}
.y8f{bottom:256.350000px;}
.y35{bottom:257.970000px;}
.yb7{bottom:262.290000px;}
.y4e{bottom:273.090000px;}
.y8e{bottom:274.530000px;}
.y34{bottom:275.250000px;}
.yb6{bottom:279.570000px;}
.y4d{bottom:291.450000px;}
.y8d{bottom:292.890000px;}
.y33{bottom:293.610000px;}
.yb5{bottom:296.310000px;}
.y4c{bottom:308.730000px;}
.y8c{bottom:311.250000px;}
.y32{bottom:311.970000px;}
.y4b{bottom:327.090000px;}
.y8b{bottom:329.250000px;}
.y31{bottom:330.330000px;}
.yb4{bottom:331.230000px;}
.y4a{bottom:344.910000px;}
.y8a{bottom:346.530000px;}
.y30{bottom:347.430000px;}
.yb3{bottom:348.510000px;}
.y49{bottom:362.550000px;}
.y89{bottom:364.170000px;}
.y2f{bottom:364.710000px;}
.yb2{bottom:365.790000px;}
.y48{bottom:379.830000px;}
.y88{bottom:381.270000px;}
.y2e{bottom:381.990000px;}
.yb1{bottom:383.070000px;}
.y47{bottom:397.110000px;}
.y87{bottom:398.550000px;}
.y2d{bottom:399.270000px;}
.yb0{bottom:400.170000px;}
.y46{bottom:414.435000px;}
.y86{bottom:415.875000px;}
.y2c{bottom:416.595000px;}
.yaf{bottom:417.495000px;}
.y45{bottom:431.715000px;}
.y85{bottom:433.335000px;}
.y2b{bottom:433.695000px;}
.yae{bottom:434.775000px;}
.y44{bottom:449.895000px;}
.y2a{bottom:450.975000px;}
.yad{bottom:452.055000px;}
.y43{bottom:467.175000px;}
.y29{bottom:468.255000px;}
.yac{bottom:469.335000px;}
.y42{bottom:484.455000px;}
.y28{bottom:485.535000px;}
.yab{bottom:486.615000px;}
.y41{bottom:501.735000px;}
.y27{bottom:502.815000px;}
.yaa{bottom:503.535000px;}
.y40{bottom:519.015000px;}
.y26{bottom:520.095000px;}
.ya9{bottom:521.175000px;}
.y3f{bottom:536.835000px;}
.y25{bottom:537.195000px;}
.y84{bottom:538.455000px;}
.ya8{bottom:538.815000px;}
.y24{bottom:554.475000px;}
.y83{bottom:555.555000px;}
.ya7{bottom:556.275000px;}
.y23{bottom:571.755000px;}
.y82{bottom:572.475000px;}
.ya6{bottom:574.095000px;}
.y22{bottom:589.035000px;}
.y81{bottom:591.195000px;}
.ya5{bottom:592.455000px;}
.y21{bottom:606.315000px;}
.y80{bottom:608.475000px;}
.ya4{bottom:610.815000px;}
.y20{bottom:623.595000px;}
.y7f{bottom:626.835000px;}
.ya3{bottom:628.095000px;}
.y1f{bottom:640.335000px;}
.y7d{bottom:643.935000px;}
.ya2{bottom:645.915000px;}
.y7e{bottom:646.635000px;}
.y1e{bottom:658.005000px;}
.ya1{bottom:663.585000px;}
.y7c{bottom:664.305000px;}
.y1d{bottom:675.285000px;}
.ya0{bottom:680.865000px;}
.y7b{bottom:681.405000px;}
.y1c{bottom:692.565000px;}
.y9f{bottom:697.965000px;}
.y7a{bottom:698.685000px;}
.y1b{bottom:709.845000px;}
.y9e{bottom:715.605000px;}
.y79{bottom:715.965000px;}
.y1a{bottom:726.945000px;}
.y9d{bottom:733.065000px;}
.y78{bottom:733.245000px;}
.y19{bottom:744.225000px;}
.y9c{bottom:750.705000px;}
.y77{bottom:751.605000px;}
.y18{bottom:761.145000px;}
.y9b{bottom:768.345000px;}
.y76{bottom:768.885000px;}
.y17{bottom:778.785000px;}
.y9a{bottom:785.985000px;}
.y75{bottom:787.065000px;}
.y16{bottom:796.065000px;}
.y99{bottom:804.345000px;}
.y74{bottom:805.065000px;}
.y15{bottom:813.345000px;}
.y14{bottom:830.445000px;}
.y73{bottom:837.105000px;}
.y13{bottom:847.725000px;}
.y72{bottom:855.105000px;}
.y12{bottom:865.005000px;}
.y71{bottom:873.105000px;}
.y11{bottom:881.925000px;}
.y70{bottom:891.105000px;}
.y10{bottom:899.610000px;}
.y6f{bottom:909.150000px;}
.yf{bottom:916.890000px;}
.y6e{bottom:927.150000px;}
.ye{bottom:933.990000px;}
.y6b{bottom:945.150000px;}
.yd{bottom:951.270000px;}
.yc{bottom:968.550000px;}
.y68{bottom:980.430000px;}
.yb{bottom:985.470000px;}
.yca{bottom:985.830000px;}
.yc9{bottom:1003.110000px;}
.ya{bottom:1020.030000px;}
.yc8{bottom:1020.390000px;}
.y67{bottom:1036.410000px;}
.y9{bottom:1037.130000px;}
.yc7{bottom:1037.490000px;}
.y66{bottom:1053.690000px;}
.y8{bottom:1054.410000px;}
.yc6{bottom:1054.770000px;}
.y60{bottom:1068.810000px;}
.y65{bottom:1070.970000px;}
.y7{bottom:1072.050000px;}
.y5f{bottom:1086.090000px;}
.y64{bottom:1088.250000px;}
.y6{bottom:1089.330000px;}
.y5e{bottom:1103.370000px;}
.y63{bottom:1105.530000px;}
.y5{bottom:1106.610000px;}
.y5d{bottom:1121.730000px;}
.y62{bottom:1122.630000px;}
.y4{bottom:1123.350000px;}
.yc5{bottom:1123.710000px;}
.y5c{bottom:1139.550000px;}
.y61{bottom:1139.910000px;}
.yc4{bottom:1141.020000px;}
.y5b{bottom:1157.220000px;}
.y3{bottom:1157.940000px;}
.yc3{bottom:1158.300000px;}
.y5a{bottom:1174.500000px;}
.y2{bottom:1175.220000px;}
.yc2{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.hc{height:17.280000px;}
.hd{height:17.316000px;}
.ha{height:34.380000px;}
.hb{height:34.560000px;}
.he{height:50.364141px;}
.h9{height:52.998047px;}
.h5{height:53.077852px;}
.h7{height:53.573906px;}
.h4{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h8{height:61.423863px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:100.440000px;}
.w3{width:174.780000px;}
.w6{width:228.090000px;}
.w4{width:402.225000px;}
.w7{width:665.070000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x29{left:-2.520000px;}
.x0{left:0.000000px;}
.x17{left:10.440000px;}
.x1f{left:14.985000px;}
.x19{left:17.280000px;}
.x22{left:27.720000px;}
.x18{left:32.940000px;}
.x1c{left:37.260000px;}
.x1a{left:45.894000px;}
.x13{left:54.894000px;}
.x20{left:58.134000px;}
.x1d{left:61.065000px;}
.x1e{left:64.794000px;}
.x24{left:68.805000px;}
.x21{left:71.145000px;}
.x23{left:77.085000px;}
.x1b{left:96.525000px;}
.x1{left:106.415987px;}
.x2c{left:115.595987px;}
.x25{left:122.085000px;}
.x10{left:136.115987px;}
.x9{left:140.795987px;}
.x2{left:163.469987px;}
.x15{left:183.285000px;}
.x2a{left:189.209987px;}
.x26{left:221.609987px;}
.x27{left:223.769973px;}
.x28{left:227.910000px;}
.xa{left:236.189987px;}
.x3{left:240.149987px;}
.x2b{left:250.229987px;}
.x14{left:282.630000px;}
.x5{left:351.794987px;}
.xc{left:394.094987px;}
.x12{left:457.274987px;}
.x8{left:461.414987px;}
.x2e{left:480.344987px;}
.x11{left:487.004987px;}
.xd{left:509.144987px;}
.x30{left:532.544987px;}
.xe{left:537.944987px;}
.x2d{left:558.644987px;}
.x31{left:569.804987px;}
.x2f{left:588.344987px;}
.x6{left:600.404987px;}
.x16{left:685.590000px;}
.x7{left:698.909987px;}
.xb{left:704.489987px;}
.x4{left:718.349987px;}
.xf{left:786.749987px;}
@media print{
.v4{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.138667pt;}
.lsd{letter-spacing:0.150933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.800000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.440000pt;}
.ls23{letter-spacing:1.872640pt;}
.ls3{letter-spacing:2.720000pt;}
.ls14{letter-spacing:2.827520pt;}
.ls16{letter-spacing:2.987520pt;}
.ls11{letter-spacing:3.052800pt;}
.ls12{letter-spacing:3.153920pt;}
.ls13{letter-spacing:3.507200pt;}
.ls15{letter-spacing:14.572800pt;}
.ls17{letter-spacing:14.673920pt;}
.ls1c{letter-spacing:14.719360pt;}
.ls1b{letter-spacing:16.160000pt;}
.ls18{letter-spacing:17.772800pt;}
.ls19{letter-spacing:17.873920pt;}
.ls1a{letter-spacing:18.867200pt;}
.ls22{letter-spacing:28.091307pt;}
.ls1f{letter-spacing:28.112640pt;}
.lsf{letter-spacing:37.280000pt;}
.ls6{letter-spacing:44.091307pt;}
.ls7{letter-spacing:44.112640pt;}
.ls1d{letter-spacing:62.240000pt;}
.ls1e{letter-spacing:103.840000pt;}
.ls10{letter-spacing:112.160000pt;}
.ls1{letter-spacing:448.960000pt;}
.ws4{word-spacing:-29.162880pt;}
.wse{word-spacing:-19.559680pt;}
.ws8{word-spacing:-19.548160pt;}
.ws2{word-spacing:-14.240000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.049067pt;}
.ws0{word-spacing:-11.953280pt;}
.ws7{word-spacing:-10.597760pt;}
.wsd{word-spacing:-8.028800pt;}
.wsf{word-spacing:-7.445120pt;}
.wsb{word-spacing:-7.388800pt;}
.wsc{word-spacing:-7.376640pt;}
.ws6{word-spacing:-4.828800pt;}
.wsa{word-spacing:-4.188800pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-2.974720pt;}
._b{margin-left:-2.018560pt;}
._3{margin-left:-1.062400pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._c{width:3.452800pt;}
._5{width:4.462080pt;}
._6{width:5.365120pt;}
._7{width:7.011840pt;}
._20{width:8.552320pt;}
._8{width:9.587840pt;}
._9{width:10.811520pt;}
._e{width:12.136320pt;}
._15{width:14.979840pt;}
._1a{width:15.882880pt;}
._14{width:17.308160pt;}
._10{width:18.698240pt;}
._d{width:20.287147pt;}
._f{width:21.199573pt;}
._1c{width:22.416640pt;}
._1d{width:23.425920pt;}
._12{width:24.869120pt;}
._13{width:25.816320pt;}
._11{width:26.869760pt;}
._16{width:28.047360pt;}
._17{width:29.056640pt;}
._21{width:33.837440pt;}
._22{width:35.006080pt;}
._19{width:36.004480pt;}
._18{width:36.909440pt;}
._1e{width:37.874560pt;}
._1f{width:62.157440pt;}
._4{width:463.490347pt;}
._1b{width:682.533547pt;}
._2{width:683.520427pt;}
._23{width:754.858667pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:2.880000pt;}
.y6d{bottom:3.200000pt;}
.y69{bottom:18.240000pt;}
.y6c{bottom:18.560000pt;}
.y59{bottom:49.920000pt;}
.yc1{bottom:79.840000pt;}
.y58{bottom:86.560000pt;}
.y98{bottom:87.680000pt;}
.y3e{bottom:91.360000pt;}
.yc0{bottom:95.040000pt;}
.y57{bottom:101.920000pt;}
.y97{bottom:103.040000pt;}
.y3d{bottom:106.720000pt;}
.ybf{bottom:110.400000pt;}
.y56{bottom:117.280000pt;}
.y96{bottom:118.880000pt;}
.y3c{bottom:121.920000pt;}
.ybe{bottom:125.760000pt;}
.y55{bottom:133.440000pt;}
.y95{bottom:134.560000pt;}
.y3b{bottom:137.280000pt;}
.ybd{bottom:141.120000pt;}
.y54{bottom:148.826667pt;}
.y94{bottom:149.946667pt;}
.y3a{bottom:152.666667pt;}
.ybc{bottom:156.506667pt;}
.y53{bottom:164.826667pt;}
.y93{bottom:165.146667pt;}
.y39{bottom:168.026667pt;}
.ybb{bottom:171.866667pt;}
.y52{bottom:180.506667pt;}
.y92{bottom:180.826667pt;}
.y38{bottom:183.386667pt;}
.yba{bottom:187.066667pt;}
.y51{bottom:195.866667pt;}
.y91{bottom:196.346667pt;}
.y37{bottom:198.746667pt;}
.yb9{bottom:202.426667pt;}
.y50{bottom:211.226667pt;}
.y90{bottom:212.026667pt;}
.y36{bottom:213.946667pt;}
.yb8{bottom:217.786667pt;}
.y4f{bottom:227.066667pt;}
.y8f{bottom:227.866667pt;}
.y35{bottom:229.306667pt;}
.yb7{bottom:233.146667pt;}
.y4e{bottom:242.746667pt;}
.y8e{bottom:244.026667pt;}
.y34{bottom:244.666667pt;}
.yb6{bottom:248.506667pt;}
.y4d{bottom:259.066667pt;}
.y8d{bottom:260.346667pt;}
.y33{bottom:260.986667pt;}
.yb5{bottom:263.386667pt;}
.y4c{bottom:274.426667pt;}
.y8c{bottom:276.666667pt;}
.y32{bottom:277.306667pt;}
.y4b{bottom:290.746667pt;}
.y8b{bottom:292.666667pt;}
.y31{bottom:293.626667pt;}
.yb4{bottom:294.426667pt;}
.y4a{bottom:306.586667pt;}
.y8a{bottom:308.026667pt;}
.y30{bottom:308.826667pt;}
.yb3{bottom:309.786667pt;}
.y49{bottom:322.266667pt;}
.y89{bottom:323.706667pt;}
.y2f{bottom:324.186667pt;}
.yb2{bottom:325.146667pt;}
.y48{bottom:337.626667pt;}
.y88{bottom:338.906667pt;}
.y2e{bottom:339.546667pt;}
.yb1{bottom:340.506667pt;}
.y47{bottom:352.986667pt;}
.y87{bottom:354.266667pt;}
.y2d{bottom:354.906667pt;}
.yb0{bottom:355.706667pt;}
.y46{bottom:368.386667pt;}
.y86{bottom:369.666667pt;}
.y2c{bottom:370.306667pt;}
.yaf{bottom:371.106667pt;}
.y45{bottom:383.746667pt;}
.y85{bottom:385.186667pt;}
.y2b{bottom:385.506667pt;}
.yae{bottom:386.466667pt;}
.y44{bottom:399.906667pt;}
.y2a{bottom:400.866667pt;}
.yad{bottom:401.826667pt;}
.y43{bottom:415.266667pt;}
.y29{bottom:416.226667pt;}
.yac{bottom:417.186667pt;}
.y42{bottom:430.626667pt;}
.y28{bottom:431.586667pt;}
.yab{bottom:432.546667pt;}
.y41{bottom:445.986667pt;}
.y27{bottom:446.946667pt;}
.yaa{bottom:447.586667pt;}
.y40{bottom:461.346667pt;}
.y26{bottom:462.306667pt;}
.ya9{bottom:463.266667pt;}
.y3f{bottom:477.186667pt;}
.y25{bottom:477.506667pt;}
.y84{bottom:478.626667pt;}
.ya8{bottom:478.946667pt;}
.y24{bottom:492.866667pt;}
.y83{bottom:493.826667pt;}
.ya7{bottom:494.466667pt;}
.y23{bottom:508.226667pt;}
.y82{bottom:508.866667pt;}
.ya6{bottom:510.306667pt;}
.y22{bottom:523.586667pt;}
.y81{bottom:525.506667pt;}
.ya5{bottom:526.626667pt;}
.y21{bottom:538.946667pt;}
.y80{bottom:540.866667pt;}
.ya4{bottom:542.946667pt;}
.y20{bottom:554.306667pt;}
.y7f{bottom:557.186667pt;}
.ya3{bottom:558.306667pt;}
.y1f{bottom:569.186667pt;}
.y7d{bottom:572.386667pt;}
.ya2{bottom:574.146667pt;}
.y7e{bottom:574.786667pt;}
.y1e{bottom:584.893333pt;}
.ya1{bottom:589.853333pt;}
.y7c{bottom:590.493333pt;}
.y1d{bottom:600.253333pt;}
.ya0{bottom:605.213333pt;}
.y7b{bottom:605.693333pt;}
.y1c{bottom:615.613333pt;}
.y9f{bottom:620.413333pt;}
.y7a{bottom:621.053333pt;}
.y1b{bottom:630.973333pt;}
.y9e{bottom:636.093333pt;}
.y79{bottom:636.413333pt;}
.y1a{bottom:646.173333pt;}
.y9d{bottom:651.613333pt;}
.y78{bottom:651.773333pt;}
.y19{bottom:661.533333pt;}
.y9c{bottom:667.293333pt;}
.y77{bottom:668.093333pt;}
.y18{bottom:676.573333pt;}
.y9b{bottom:682.973333pt;}
.y76{bottom:683.453333pt;}
.y17{bottom:692.253333pt;}
.y9a{bottom:698.653333pt;}
.y75{bottom:699.613333pt;}
.y16{bottom:707.613333pt;}
.y99{bottom:714.973333pt;}
.y74{bottom:715.613333pt;}
.y15{bottom:722.973333pt;}
.y14{bottom:738.173333pt;}
.y73{bottom:744.093333pt;}
.y13{bottom:753.533333pt;}
.y72{bottom:760.093333pt;}
.y12{bottom:768.893333pt;}
.y71{bottom:776.093333pt;}
.y11{bottom:783.933333pt;}
.y70{bottom:792.093333pt;}
.y10{bottom:799.653333pt;}
.y6f{bottom:808.133333pt;}
.yf{bottom:815.013333pt;}
.y6e{bottom:824.133333pt;}
.ye{bottom:830.213333pt;}
.y6b{bottom:840.133333pt;}
.yd{bottom:845.573333pt;}
.yc{bottom:860.933333pt;}
.y68{bottom:871.493333pt;}
.yb{bottom:875.973333pt;}
.yca{bottom:876.293333pt;}
.yc9{bottom:891.653333pt;}
.ya{bottom:906.693333pt;}
.yc8{bottom:907.013333pt;}
.y67{bottom:921.253333pt;}
.y9{bottom:921.893333pt;}
.yc7{bottom:922.213333pt;}
.y66{bottom:936.613333pt;}
.y8{bottom:937.253333pt;}
.yc6{bottom:937.573333pt;}
.y60{bottom:950.053333pt;}
.y65{bottom:951.973333pt;}
.y7{bottom:952.933333pt;}
.y5f{bottom:965.413333pt;}
.y64{bottom:967.333333pt;}
.y6{bottom:968.293333pt;}
.y5e{bottom:980.773333pt;}
.y63{bottom:982.693333pt;}
.y5{bottom:983.653333pt;}
.y5d{bottom:997.093333pt;}
.y62{bottom:997.893333pt;}
.y4{bottom:998.533333pt;}
.yc5{bottom:998.853333pt;}
.y5c{bottom:1012.933333pt;}
.y61{bottom:1013.253333pt;}
.yc4{bottom:1014.240000pt;}
.y5b{bottom:1028.640000pt;}
.y3{bottom:1029.280000pt;}
.yc3{bottom:1029.600000pt;}
.y5a{bottom:1044.000000pt;}
.y2{bottom:1044.640000pt;}
.yc2{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.hc{height:15.360000pt;}
.hd{height:15.392000pt;}
.ha{height:30.560000pt;}
.hb{height:30.720000pt;}
.he{height:44.768125pt;}
.h9{height:47.109375pt;}
.h5{height:47.180312pt;}
.h7{height:47.621250pt;}
.h4{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h8{height:54.598989pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:89.280000pt;}
.w3{width:155.360000pt;}
.w6{width:202.746667pt;}
.w4{width:357.533333pt;}
.w7{width:591.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x29{left:-2.240000pt;}
.x0{left:0.000000pt;}
.x17{left:9.280000pt;}
.x1f{left:13.320000pt;}
.x19{left:15.360000pt;}
.x22{left:24.640000pt;}
.x18{left:29.280000pt;}
.x1c{left:33.120000pt;}
.x1a{left:40.794667pt;}
.x13{left:48.794667pt;}
.x20{left:51.674667pt;}
.x1d{left:54.280000pt;}
.x1e{left:57.594667pt;}
.x24{left:61.160000pt;}
.x21{left:63.240000pt;}
.x23{left:68.520000pt;}
.x1b{left:85.800000pt;}
.x1{left:94.591988pt;}
.x2c{left:102.751988pt;}
.x25{left:108.520000pt;}
.x10{left:120.991988pt;}
.x9{left:125.151988pt;}
.x2{left:145.306655pt;}
.x15{left:162.920000pt;}
.x2a{left:168.186655pt;}
.x26{left:196.986655pt;}
.x27{left:198.906643pt;}
.x28{left:202.586667pt;}
.xa{left:209.946655pt;}
.x3{left:213.466655pt;}
.x2b{left:222.426655pt;}
.x14{left:251.226667pt;}
.x5{left:312.706655pt;}
.xc{left:350.306655pt;}
.x12{left:406.466655pt;}
.x8{left:410.146655pt;}
.x2e{left:426.973322pt;}
.x11{left:432.893322pt;}
.xd{left:452.573322pt;}
.x30{left:473.373322pt;}
.xe{left:478.173322pt;}
.x2d{left:496.573322pt;}
.x31{left:506.493322pt;}
.x2f{left:522.973322pt;}
.x6{left:533.693322pt;}
.x16{left:609.413333pt;}
.x7{left:621.253322pt;}
.xb{left:626.213322pt;}
.x4{left:638.533322pt;}
.xf{left:699.333322pt;}
}




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