
    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_bab758f12a986cd710d1078b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_534ec285a25e1f7a9dfc259d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eebecdfde9d31609ef1a04ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191895;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_d6a0ab142ba23b6cb9bd0994.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_9113f12408604b8c2c144a56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_2bfbf6a4f159d334e17fe28a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_22308446912d0cfa083effe3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_60afa19929ee7ba98e4b6a6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_e435230fc63da9c15590abc4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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);}
.v2{vertical-align:-82.800000px;}
.v7{vertical-align:-79.920000px;}
.v4{vertical-align:-72.120000px;}
.v5{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls1b{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.008640px;}
.lsc{letter-spacing:-0.000001px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.150000px;}
.ls10{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206640px;}
.ls18{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.504000px;}
.ls14{letter-spacing:10.080000px;}
.ls13{letter-spacing:26.640000px;}
.ls1d{letter-spacing:197.976000px;}
.ls6{letter-spacing:371.064000px;}
.ls19{letter-spacing:612.696000px;}
.ls1a{letter-spacing:820.980000px;}
.ls11{letter-spacing:924.120000px;}
.lsf{letter-spacing:1076.016000px;}
.ls3{letter-spacing:1116.156000px;}
.ls2{letter-spacing:1342.956000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.700000px;}
.wsf{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.608000px;}
.ws3{word-spacing:-12.888000px;}
.ws6{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.060000px;}
.ws8{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-2.565120px;}
._0{margin-left:-1.347840px;}
._1{width:1.509120px;}
._b{width:2.669760px;}
._13{width:4.176000px;}
._14{width:5.424000px;}
._a{width:6.456000px;}
._9{width:7.488000px;}
._15{width:8.490240px;}
._10{width:9.576000px;}
._11{width:10.728000px;}
._16{width:11.736000px;}
._6{width:13.032000px;}
._7{width:14.628000px;}
._d{width:16.531680px;}
._5{width:19.080000px;}
._8{width:20.537760px;}
._c{width:21.667200px;}
._18{width:22.721280px;}
._1a{width:23.800320px;}
._1c{width:25.128000px;}
._e{width:26.280000px;}
._f{width:27.351840px;}
._19{width:29.312160px;}
._1b{width:30.951840px;}
._1e{width:31.976160px;}
._1f{width:34.056000px;}
._20{width:35.208000px;}
._4{width:439.611037px;}
._1d{width:547.632000px;}
._2{width:644.773440px;}
._12{width:833.340000px;}
._3{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,71,156);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.y2c{bottom:-2.520000px;}
.y0{bottom:0.000000px;}
.y30{bottom:56.880000px;}
.y2f{bottom:77.616000px;}
.yc8{bottom:109.476000px;}
.yac{bottom:115.236000px;}
.ycb{bottom:125.496000px;}
.yc7{bottom:126.576000px;}
.yce{bottom:131.796000px;}
.yab{bottom:135.936000px;}
.yc6{bottom:143.856000px;}
.ycd{bottom:145.116000px;}
.yca{bottom:146.196000px;}
.yc5{bottom:149.076000px;}
.yaa{bottom:156.630000px;}
.yd2{bottom:161.130000px;}
.yc4{bottom:162.390000px;}
.yd1{bottom:166.350000px;}
.yc9{bottom:166.890000px;}
.ya9{bottom:177.330000px;}
.yd4{bottom:178.410000px;}
.yd0{bottom:179.670000px;}
.yc3{bottom:187.590000px;}
.yd3{bottom:196.950000px;}
.ya8{bottom:198.030000px;}
.y2a{bottom:206.850000px;}
.yc2{bottom:208.290000px;}
.ycf{bottom:215.130000px;}
.ya7{bottom:218.730000px;}
.y29{bottom:227.550000px;}
.yc1{bottom:228.990000px;}
.ya6{bottom:239.430000px;}
.y28{bottom:248.250000px;}
.yc0{bottom:249.690000px;}
.ya5{bottom:260.130000px;}
.y27{bottom:268.950000px;}
.ybf{bottom:270.390000px;}
.ya4{bottom:280.650000px;}
.y26{bottom:289.650000px;}
.ybe{bottom:291.090000px;}
.ya3{bottom:301.350000px;}
.y25{bottom:310.350000px;}
.ybd{bottom:311.790000px;}
.ya2{bottom:322.050000px;}
.y24{bottom:331.095000px;}
.ybc{bottom:332.535000px;}
.ya1{bottom:342.795000px;}
.y23{bottom:351.795000px;}
.ybb{bottom:353.235000px;}
.ycc{bottom:360.075000px;}
.ya0{bottom:363.495000px;}
.y22{bottom:372.495000px;}
.yba{bottom:373.935000px;}
.y9f{bottom:384.195000px;}
.y21{bottom:393.195000px;}
.yb9{bottom:394.635000px;}
.y9e{bottom:404.895000px;}
.y20{bottom:413.895000px;}
.yb8{bottom:415.335000px;}
.y9d{bottom:425.595000px;}
.y1f{bottom:434.595000px;}
.yb7{bottom:436.035000px;}
.y9c{bottom:446.295000px;}
.y1e{bottom:451.335000px;}
.yb6{bottom:456.735000px;}
.y9b{bottom:466.995000px;}
.yb5{bottom:477.435000px;}
.y1d{bottom:480.495000px;}
.y5c{bottom:483.555000px;}
.y9a{bottom:487.695000px;}
.yb4{bottom:498.135000px;}
.y5b{bottom:500.835000px;}
.y1c{bottom:501.195000px;}
.y99{bottom:508.395000px;}
.y2b{bottom:508.575000px;}
.y5a{bottom:518.115000px;}
.yb3{bottom:518.835000px;}
.y1b{bottom:521.895000px;}
.y98{bottom:529.095000px;}
.y59{bottom:535.395000px;}
.yb2{bottom:539.535000px;}
.y1a{bottom:542.595000px;}
.y97{bottom:549.795000px;}
.y58{bottom:552.675000px;}
.yb1{bottom:560.235000px;}
.y7a{bottom:561.495000px;}
.y19{bottom:562.935000px;}
.y57{bottom:569.775000px;}
.y96{bottom:570.495000px;}
.yb0{bottom:580.935000px;}
.y79{bottom:582.195000px;}
.y18{bottom:582.375000px;}
.y56{bottom:587.055000px;}
.y95{bottom:591.195000px;}
.yaf{bottom:601.665000px;}
.y78{bottom:602.925000px;}
.y55{bottom:604.365000px;}
.y94{bottom:611.925000px;}
.y54{bottom:621.645000px;}
.y17{bottom:622.365000px;}
.y77{bottom:623.625000px;}
.y93{bottom:632.625000px;}
.y53{bottom:638.925000px;}
.y16{bottom:643.065000px;}
.y76{bottom:644.325000px;}
.y92{bottom:653.325000px;}
.y52{bottom:656.025000px;}
.yae{bottom:663.765000px;}
.y75{bottom:665.025000px;}
.y51{bottom:673.305000px;}
.y91{bottom:674.025000px;}
.y15{bottom:684.465000px;}
.y74{bottom:685.725000px;}
.y50{bottom:690.585000px;}
.y90{bottom:694.725000px;}
.y14{bottom:705.165000px;}
.y73{bottom:706.425000px;}
.y4f{bottom:707.865000px;}
.y8f{bottom:715.425000px;}
.y4e{bottom:725.145000px;}
.y13{bottom:725.865000px;}
.y72{bottom:727.125000px;}
.y8e{bottom:736.125000px;}
.y4d{bottom:742.425000px;}
.y12{bottom:746.565000px;}
.y71{bottom:747.825000px;}
.y8d{bottom:756.825000px;}
.y4c{bottom:759.525000px;}
.y11{bottom:767.265000px;}
.y70{bottom:768.525000px;}
.y4b{bottom:776.805000px;}
.y8c{bottom:777.525000px;}
.y10{bottom:787.965000px;}
.y6f{bottom:789.225000px;}
.y4a{bottom:794.085000px;}
.y8b{bottom:798.225000px;}
.yf{bottom:808.665000px;}
.y6e{bottom:809.925000px;}
.y49{bottom:811.365000px;}
.y8a{bottom:818.925000px;}
.y48{bottom:828.645000px;}
.ye{bottom:829.365000px;}
.y89{bottom:839.625000px;}
.y47{bottom:845.925000px;}
.yd{bottom:850.065000px;}
.y6d{bottom:850.605000px;}
.y88{bottom:860.325000px;}
.y46{bottom:863.070000px;}
.y6c{bottom:867.930000px;}
.yc{bottom:870.810000px;}
.y45{bottom:880.350000px;}
.y87{bottom:881.070000px;}
.y6b{bottom:885.210000px;}
.yb{bottom:891.510000px;}
.y44{bottom:897.630000px;}
.y86{bottom:901.770000px;}
.y6a{bottom:902.490000px;}
.ya{bottom:912.210000px;}
.y43{bottom:914.910000px;}
.y69{bottom:919.770000px;}
.y85{bottom:922.470000px;}
.y42{bottom:932.190000px;}
.y38{bottom:932.910000px;}
.y68{bottom:933.630000px;}
.y84{bottom:943.170000px;}
.y41{bottom:949.470000px;}
.y9{bottom:953.610000px;}
.y67{bottom:954.870000px;}
.y83{bottom:963.870000px;}
.y66{bottom:972.150000px;}
.y37{bottom:974.310000px;}
.y8{bottom:974.850000px;}
.y40{bottom:983.850000px;}
.y82{bottom:984.570000px;}
.y65{bottom:989.430000px;}
.y36{bottom:995.010000px;}
.y7{bottom:998.970000px;}
.y3f{bottom:1001.130000px;}
.y81{bottom:1005.270000px;}
.y64{bottom:1006.710000px;}
.y35{bottom:1015.710000px;}
.y3e{bottom:1018.410000px;}
.y6{bottom:1023.090000px;}
.y63{bottom:1023.990000px;}
.y80{bottom:1025.970000px;}
.y3d{bottom:1035.690000px;}
.y34{bottom:1036.410000px;}
.y62{bottom:1037.850000px;}
.y7f{bottom:1046.670000px;}
.y5{bottom:1047.210000px;}
.y3c{bottom:1052.790000px;}
.y33{bottom:1057.110000px;}
.y7e{bottom:1067.370000px;}
.y3b{bottom:1070.070000px;}
.y4{bottom:1071.330000px;}
.y61{bottom:1073.490000px;}
.y32{bottom:1077.810000px;}
.yad{bottom:1084.650000px;}
.y3a{bottom:1087.350000px;}
.y7d{bottom:1088.070000px;}
.y60{bottom:1090.770000px;}
.y3{bottom:1095.630000px;}
.y31{bottom:1098.510000px;}
.y39{bottom:1104.630000px;}
.y5f{bottom:1108.050000px;}
.y7c{bottom:1109.310000px;}
.y2{bottom:1119.210000px;}
.y5e{bottom:1125.330000px;}
.y7b{bottom:1134.360000px;}
.y1{bottom:1139.940000px;}
.y5d{bottom:1142.640000px;}
.y2e{bottom:1172.340000px;}
.y2d{bottom:1193.040000px;}
.h12{height:38.158594px;}
.h11{height:47.344922px;}
.h15{height:53.573906px;}
.hc{height:58.621992px;}
.hd{height:58.651172px;}
.he{height:59.019609px;}
.h13{height:59.439023px;}
.h14{height:64.546875px;}
.h5{height:65.010937px;}
.h6{height:65.884219px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.ha{height:71.081367px;}
.h9{height:71.613281px;}
.hb{height:72.562500px;}
.h3{height:82.635820px;}
.h4{height:83.211680px;}
.h10{height:84.898125px;}
.h8{height:85.680000px;}
.hf{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:667.725000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:10.800000px;}
.x6{left:106.235987px;}
.x31{left:111.635987px;}
.x2f{left:120.635987px;}
.x30{left:129.635987px;}
.x2c{left:131.435987px;}
.x37{left:154.289973px;}
.x35{left:159.329987px;}
.x38{left:172.649987px;}
.x39{left:175.169973px;}
.x2d{left:190.829987px;}
.x3a{left:193.529987px;}
.x3{left:206.849987px;}
.x1a{left:232.409987px;}
.x15{left:241.049987px;}
.x5{left:248.789987px;}
.x4{left:262.289987px;}
.x10{left:268.949987px;}
.x17{left:270.569987px;}
.x2{left:276.329987px;}
.x8{left:282.089987px;}
.x16{left:293.654987px;}
.x14{left:300.674987px;}
.x36{left:322.274987px;}
.x2a{left:334.694987px;}
.x7{left:344.234987px;}
.x18{left:346.394987px;}
.xf{left:347.474987px;}
.x25{left:358.994987px;}
.x27{left:361.694987px;}
.x2b{left:363.134987px;}
.x24{left:365.654987px;}
.x26{left:367.454987px;}
.x1e{left:371.414987px;}
.x1f{left:375.194987px;}
.xb{left:383.114987px;}
.x20{left:388.514987px;}
.x1b{left:393.014987px;}
.x1c{left:395.894987px;}
.x23{left:397.874987px;}
.x28{left:399.134987px;}
.xd{left:402.734987px;}
.x21{left:405.434987px;}
.x1d{left:406.694987px;}
.x29{left:408.674987px;}
.x19{left:412.994987px;}
.x22{left:415.874987px;}
.x2e{left:418.394987px;}
.x32{left:432.974987px;}
.xe{left:439.454987px;}
.x13{left:441.974987px;}
.x1{left:446.474987px;}
.xc{left:511.304987px;}
.x33{left:651.164973px;}
.x34{left:669.569987px;}
.x9{left:765.689987px;}
.xa{left:776.309987px;}
.x12{left:786.749987px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v7{vertical-align:-71.040000pt;}
.v4{vertical-align:-64.106667pt;}
.v5{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.007680pt;}
.lsc{letter-spacing:-0.000001pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls10{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183680pt;}
.ls18{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls14{letter-spacing:8.960000pt;}
.ls13{letter-spacing:23.680000pt;}
.ls1d{letter-spacing:175.978667pt;}
.ls6{letter-spacing:329.834667pt;}
.ls19{letter-spacing:544.618667pt;}
.ls1a{letter-spacing:729.760000pt;}
.ls11{letter-spacing:821.440000pt;}
.lsf{letter-spacing:956.458667pt;}
.ls3{letter-spacing:992.138667pt;}
.ls2{letter-spacing:1193.738667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.400000pt;}
.wsf{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.096000pt;}
.ws3{word-spacing:-11.456000pt;}
.ws6{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.720000pt;}
.ws8{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-2.280107pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.341440pt;}
._b{width:2.373120pt;}
._13{width:3.712000pt;}
._14{width:4.821333pt;}
._a{width:5.738667pt;}
._9{width:6.656000pt;}
._15{width:7.546880pt;}
._10{width:8.512000pt;}
._11{width:9.536000pt;}
._16{width:10.432000pt;}
._6{width:11.584000pt;}
._7{width:13.002667pt;}
._d{width:14.694827pt;}
._5{width:16.960000pt;}
._8{width:18.255787pt;}
._c{width:19.259733pt;}
._18{width:20.196693pt;}
._1a{width:21.155840pt;}
._1c{width:22.336000pt;}
._e{width:23.360000pt;}
._f{width:24.312747pt;}
._19{width:26.055253pt;}
._1b{width:27.512747pt;}
._1e{width:28.423253pt;}
._1f{width:30.272000pt;}
._20{width:31.296000pt;}
._4{width:390.765366pt;}
._1d{width:486.784000pt;}
._2{width:573.131947pt;}
._12{width:740.746667pt;}
._3{width:752.138667pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.y2c{bottom:-2.240000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:50.560000pt;}
.y2f{bottom:68.992000pt;}
.yc8{bottom:97.312000pt;}
.yac{bottom:102.432000pt;}
.ycb{bottom:111.552000pt;}
.yc7{bottom:112.512000pt;}
.yce{bottom:117.152000pt;}
.yab{bottom:120.832000pt;}
.yc6{bottom:127.872000pt;}
.ycd{bottom:128.992000pt;}
.yca{bottom:129.952000pt;}
.yc5{bottom:132.512000pt;}
.yaa{bottom:139.226667pt;}
.yd2{bottom:143.226667pt;}
.yc4{bottom:144.346667pt;}
.yd1{bottom:147.866667pt;}
.yc9{bottom:148.346667pt;}
.ya9{bottom:157.626667pt;}
.yd4{bottom:158.586667pt;}
.yd0{bottom:159.706667pt;}
.yc3{bottom:166.746667pt;}
.yd3{bottom:175.066667pt;}
.ya8{bottom:176.026667pt;}
.y2a{bottom:183.866667pt;}
.yc2{bottom:185.146667pt;}
.ycf{bottom:191.226667pt;}
.ya7{bottom:194.426667pt;}
.y29{bottom:202.266667pt;}
.yc1{bottom:203.546667pt;}
.ya6{bottom:212.826667pt;}
.y28{bottom:220.666667pt;}
.yc0{bottom:221.946667pt;}
.ya5{bottom:231.226667pt;}
.y27{bottom:239.066667pt;}
.ybf{bottom:240.346667pt;}
.ya4{bottom:249.466667pt;}
.y26{bottom:257.466667pt;}
.ybe{bottom:258.746667pt;}
.ya3{bottom:267.866667pt;}
.y25{bottom:275.866667pt;}
.ybd{bottom:277.146667pt;}
.ya2{bottom:286.266667pt;}
.y24{bottom:294.306667pt;}
.ybc{bottom:295.586667pt;}
.ya1{bottom:304.706667pt;}
.y23{bottom:312.706667pt;}
.ybb{bottom:313.986667pt;}
.ycc{bottom:320.066667pt;}
.ya0{bottom:323.106667pt;}
.y22{bottom:331.106667pt;}
.yba{bottom:332.386667pt;}
.y9f{bottom:341.506667pt;}
.y21{bottom:349.506667pt;}
.yb9{bottom:350.786667pt;}
.y9e{bottom:359.906667pt;}
.y20{bottom:367.906667pt;}
.yb8{bottom:369.186667pt;}
.y9d{bottom:378.306667pt;}
.y1f{bottom:386.306667pt;}
.yb7{bottom:387.586667pt;}
.y9c{bottom:396.706667pt;}
.y1e{bottom:401.186667pt;}
.yb6{bottom:405.986667pt;}
.y9b{bottom:415.106667pt;}
.yb5{bottom:424.386667pt;}
.y1d{bottom:427.106667pt;}
.y5c{bottom:429.826667pt;}
.y9a{bottom:433.506667pt;}
.yb4{bottom:442.786667pt;}
.y5b{bottom:445.186667pt;}
.y1c{bottom:445.506667pt;}
.y99{bottom:451.906667pt;}
.y2b{bottom:452.066667pt;}
.y5a{bottom:460.546667pt;}
.yb3{bottom:461.186667pt;}
.y1b{bottom:463.906667pt;}
.y98{bottom:470.306667pt;}
.y59{bottom:475.906667pt;}
.yb2{bottom:479.586667pt;}
.y1a{bottom:482.306667pt;}
.y97{bottom:488.706667pt;}
.y58{bottom:491.266667pt;}
.yb1{bottom:497.986667pt;}
.y7a{bottom:499.106667pt;}
.y19{bottom:500.386667pt;}
.y57{bottom:506.466667pt;}
.y96{bottom:507.106667pt;}
.yb0{bottom:516.386667pt;}
.y79{bottom:517.506667pt;}
.y18{bottom:517.666667pt;}
.y56{bottom:521.826667pt;}
.y95{bottom:525.506667pt;}
.yaf{bottom:534.813333pt;}
.y78{bottom:535.933333pt;}
.y55{bottom:537.213333pt;}
.y94{bottom:543.933333pt;}
.y54{bottom:552.573333pt;}
.y17{bottom:553.213333pt;}
.y77{bottom:554.333333pt;}
.y93{bottom:562.333333pt;}
.y53{bottom:567.933333pt;}
.y16{bottom:571.613333pt;}
.y76{bottom:572.733333pt;}
.y92{bottom:580.733333pt;}
.y52{bottom:583.133333pt;}
.yae{bottom:590.013333pt;}
.y75{bottom:591.133333pt;}
.y51{bottom:598.493333pt;}
.y91{bottom:599.133333pt;}
.y15{bottom:608.413333pt;}
.y74{bottom:609.533333pt;}
.y50{bottom:613.853333pt;}
.y90{bottom:617.533333pt;}
.y14{bottom:626.813333pt;}
.y73{bottom:627.933333pt;}
.y4f{bottom:629.213333pt;}
.y8f{bottom:635.933333pt;}
.y4e{bottom:644.573333pt;}
.y13{bottom:645.213333pt;}
.y72{bottom:646.333333pt;}
.y8e{bottom:654.333333pt;}
.y4d{bottom:659.933333pt;}
.y12{bottom:663.613333pt;}
.y71{bottom:664.733333pt;}
.y8d{bottom:672.733333pt;}
.y4c{bottom:675.133333pt;}
.y11{bottom:682.013333pt;}
.y70{bottom:683.133333pt;}
.y4b{bottom:690.493333pt;}
.y8c{bottom:691.133333pt;}
.y10{bottom:700.413333pt;}
.y6f{bottom:701.533333pt;}
.y4a{bottom:705.853333pt;}
.y8b{bottom:709.533333pt;}
.yf{bottom:718.813333pt;}
.y6e{bottom:719.933333pt;}
.y49{bottom:721.213333pt;}
.y8a{bottom:727.933333pt;}
.y48{bottom:736.573333pt;}
.ye{bottom:737.213333pt;}
.y89{bottom:746.333333pt;}
.y47{bottom:751.933333pt;}
.yd{bottom:755.613333pt;}
.y6d{bottom:756.093333pt;}
.y88{bottom:764.733333pt;}
.y46{bottom:767.173333pt;}
.y6c{bottom:771.493333pt;}
.yc{bottom:774.053333pt;}
.y45{bottom:782.533333pt;}
.y87{bottom:783.173333pt;}
.y6b{bottom:786.853333pt;}
.yb{bottom:792.453333pt;}
.y44{bottom:797.893333pt;}
.y86{bottom:801.573333pt;}
.y6a{bottom:802.213333pt;}
.ya{bottom:810.853333pt;}
.y43{bottom:813.253333pt;}
.y69{bottom:817.573333pt;}
.y85{bottom:819.973333pt;}
.y42{bottom:828.613333pt;}
.y38{bottom:829.253333pt;}
.y68{bottom:829.893333pt;}
.y84{bottom:838.373333pt;}
.y41{bottom:843.973333pt;}
.y9{bottom:847.653333pt;}
.y67{bottom:848.773333pt;}
.y83{bottom:856.773333pt;}
.y66{bottom:864.133333pt;}
.y37{bottom:866.053333pt;}
.y8{bottom:866.533333pt;}
.y40{bottom:874.533333pt;}
.y82{bottom:875.173333pt;}
.y65{bottom:879.493333pt;}
.y36{bottom:884.453333pt;}
.y7{bottom:887.973333pt;}
.y3f{bottom:889.893333pt;}
.y81{bottom:893.573333pt;}
.y64{bottom:894.853333pt;}
.y35{bottom:902.853333pt;}
.y3e{bottom:905.253333pt;}
.y6{bottom:909.413333pt;}
.y63{bottom:910.213333pt;}
.y80{bottom:911.973333pt;}
.y3d{bottom:920.613333pt;}
.y34{bottom:921.253333pt;}
.y62{bottom:922.533333pt;}
.y7f{bottom:930.373333pt;}
.y5{bottom:930.853333pt;}
.y3c{bottom:935.813333pt;}
.y33{bottom:939.653333pt;}
.y7e{bottom:948.773333pt;}
.y3b{bottom:951.173333pt;}
.y4{bottom:952.293333pt;}
.y61{bottom:954.213333pt;}
.y32{bottom:958.053333pt;}
.yad{bottom:964.133333pt;}
.y3a{bottom:966.533333pt;}
.y7d{bottom:967.173333pt;}
.y60{bottom:969.573333pt;}
.y3{bottom:973.893333pt;}
.y31{bottom:976.453333pt;}
.y39{bottom:981.893333pt;}
.y5f{bottom:984.933333pt;}
.y7c{bottom:986.053333pt;}
.y2{bottom:994.853333pt;}
.y5e{bottom:1000.293333pt;}
.y7b{bottom:1008.320000pt;}
.y1{bottom:1013.280000pt;}
.y5d{bottom:1015.680000pt;}
.y2e{bottom:1042.080000pt;}
.y2d{bottom:1060.480000pt;}
.h12{height:33.918750pt;}
.h11{height:42.084375pt;}
.h15{height:47.621250pt;}
.hc{height:52.108438pt;}
.hd{height:52.134375pt;}
.he{height:52.461875pt;}
.h13{height:52.834688pt;}
.h14{height:57.375000pt;}
.h5{height:57.787500pt;}
.h6{height:58.563750pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.ha{height:63.183438pt;}
.h9{height:63.656250pt;}
.hb{height:64.500000pt;}
.h3{height:73.454062pt;}
.h4{height:73.965937pt;}
.h10{height:75.465000pt;}
.h8{height:76.160000pt;}
.hf{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:593.533333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:9.600000pt;}
.x6{left:94.431988pt;}
.x31{left:99.231988pt;}
.x2f{left:107.231988pt;}
.x30{left:115.231988pt;}
.x2c{left:116.831988pt;}
.x37{left:137.146643pt;}
.x35{left:141.626655pt;}
.x38{left:153.466655pt;}
.x39{left:155.706643pt;}
.x2d{left:169.626655pt;}
.x3a{left:172.026655pt;}
.x3{left:183.866655pt;}
.x1a{left:206.586655pt;}
.x15{left:214.266655pt;}
.x5{left:221.146655pt;}
.x4{left:233.146655pt;}
.x10{left:239.066655pt;}
.x17{left:240.506655pt;}
.x2{left:245.626655pt;}
.x8{left:250.746655pt;}
.x16{left:261.026655pt;}
.x14{left:267.266655pt;}
.x36{left:286.466655pt;}
.x2a{left:297.506655pt;}
.x7{left:305.986655pt;}
.x18{left:307.906655pt;}
.xf{left:308.866655pt;}
.x25{left:319.106655pt;}
.x27{left:321.506655pt;}
.x2b{left:322.786655pt;}
.x24{left:325.026655pt;}
.x26{left:326.626655pt;}
.x1e{left:330.146655pt;}
.x1f{left:333.506655pt;}
.xb{left:340.546655pt;}
.x20{left:345.346655pt;}
.x1b{left:349.346655pt;}
.x1c{left:351.906655pt;}
.x23{left:353.666655pt;}
.x28{left:354.786655pt;}
.xd{left:357.986655pt;}
.x21{left:360.386655pt;}
.x1d{left:361.506655pt;}
.x29{left:363.266655pt;}
.x19{left:367.106655pt;}
.x22{left:369.666655pt;}
.x2e{left:371.906655pt;}
.x32{left:384.866655pt;}
.xe{left:390.626655pt;}
.x13{left:392.866655pt;}
.x1{left:396.866655pt;}
.xc{left:454.493322pt;}
.x33{left:578.813310pt;}
.x34{left:595.173322pt;}
.x9{left:680.613322pt;}
.xa{left:690.053322pt;}
.x12{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; }
  