
    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_3df40a271da117eaa1ca82f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_e01fcafe73574442c33eda7e.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_eb2fe1c819143158e0d40d23.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_efd791d79e93c829c383a91b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_f8cf0d752a397ce08037eac9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957520;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_2bfd97db2e6e9740cc9a4252.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.093000px;}
.lsc{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:41.682720px;}
.ls7{letter-spacing:71.922720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws4{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.149120px;}
._1{width:2.688000px;}
._8{width:3.737520px;}
._b{width:5.017440px;}
._a{width:6.127920px;}
._7{width:7.396560px;}
._3{width:9.175680px;}
._4{width:10.476720px;}
._c{width:11.523600px;}
._13{width:12.546000px;}
._11{width:13.565520px;}
._6{width:16.187520px;}
._e{width:17.928000px;}
._12{width:19.169280px;}
._9{width:20.258640px;}
._14{width:21.279600px;}
._d{width:22.350240px;}
._5{width:23.352480px;}
._10{width:24.441840px;}
._f{width:25.577280px;}
._15{width:27.356400px;}
._16{width:28.411200px;}
._17{width:32.058720px;}
._1b{width:64.108800px;}
._19{width:80.004960px;}
._1a{width:469.773360px;}
._18{width:1041.557040px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y75{bottom:3.240000px;}
.y78{bottom:11.700000px;}
.yb2{bottom:11.730000px;}
.y73{bottom:11.880000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y77{bottom:20.340000px;}
.yb3{bottom:20.370000px;}
.y74{bottom:20.520000px;}
.y6{bottom:47.160000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y34{bottom:99.216000px;}
.y32{bottom:121.896000px;}
.yc4{bottom:124.236000px;}
.yef{bottom:125.676000px;}
.yb0{bottom:133.056000px;}
.y71{bottom:135.396000px;}
.y31{bottom:139.176000px;}
.yc3{bottom:141.336000px;}
.yee{bottom:142.776000px;}
.yaf{bottom:150.330000px;}
.y70{bottom:152.670000px;}
.y30{bottom:156.450000px;}
.yc2{bottom:158.610000px;}
.yed{bottom:160.050000px;}
.yae{bottom:167.610000px;}
.y6f{bottom:169.770000px;}
.y2f{bottom:173.730000px;}
.yc1{bottom:175.890000px;}
.yec{bottom:177.330000px;}
.yad{bottom:184.890000px;}
.y6e{bottom:187.050000px;}
.y2e{bottom:191.010000px;}
.yc0{bottom:193.170000px;}
.yeb{bottom:194.610000px;}
.yac{bottom:202.170000px;}
.y6d{bottom:204.330000px;}
.y2d{bottom:208.110000px;}
.ybf{bottom:210.450000px;}
.yea{bottom:211.890000px;}
.yab{bottom:219.270000px;}
.y6c{bottom:221.610000px;}
.y2c{bottom:225.390000px;}
.ybe{bottom:227.730000px;}
.ye9{bottom:228.990000px;}
.yaa{bottom:236.550000px;}
.y6b{bottom:238.890000px;}
.y2b{bottom:242.670000px;}
.ybd{bottom:244.830000px;}
.ye8{bottom:246.270000px;}
.ya9{bottom:253.830000px;}
.y6a{bottom:256.170000px;}
.y2a{bottom:259.950000px;}
.ybc{bottom:262.110000px;}
.ye7{bottom:263.550000px;}
.ya8{bottom:271.110000px;}
.y69{bottom:273.270000px;}
.y29{bottom:277.230000px;}
.ybb{bottom:279.390000px;}
.ye6{bottom:280.830000px;}
.ya7{bottom:288.390000px;}
.y68{bottom:290.550000px;}
.y28{bottom:294.330000px;}
.yba{bottom:296.670000px;}
.ye5{bottom:298.110000px;}
.ya6{bottom:305.670000px;}
.y67{bottom:307.830000px;}
.yb9{bottom:310.710000px;}
.y27{bottom:311.610000px;}
.ye4{bottom:315.390000px;}
.ya5{bottom:322.770000px;}
.y66{bottom:325.110000px;}
.y26{bottom:325.650000px;}
.ye3{bottom:332.490000px;}
.ya4{bottom:340.095000px;}
.y65{bottom:342.435000px;}
.ye2{bottom:349.815000px;}
.ya3{bottom:357.375000px;}
.y64{bottom:359.715000px;}
.ye1{bottom:367.095000px;}
.ya2{bottom:374.655000px;}
.y63{bottom:376.815000px;}
.ye0{bottom:384.375000px;}
.ya1{bottom:391.935000px;}
.y62{bottom:394.095000px;}
.ydf{bottom:401.655000px;}
.ya0{bottom:409.215000px;}
.y61{bottom:411.375000px;}
.yde{bottom:418.935000px;}
.y9f{bottom:426.315000px;}
.y60{bottom:428.655000px;}
.ydd{bottom:436.035000px;}
.y9e{bottom:443.595000px;}
.y5f{bottom:445.935000px;}
.ydc{bottom:453.315000px;}
.y9d{bottom:460.875000px;}
.y5e{bottom:463.215000px;}
.ydb{bottom:470.595000px;}
.y9c{bottom:478.155000px;}
.y5d{bottom:480.315000px;}
.yda{bottom:487.875000px;}
.y9b{bottom:495.435000px;}
.y5c{bottom:497.595000px;}
.yd9{bottom:505.155000px;}
.y9a{bottom:512.535000px;}
.y5b{bottom:514.875000px;}
.yd8{bottom:522.435000px;}
.y25{bottom:526.215000px;}
.y99{bottom:529.815000px;}
.y5a{bottom:532.155000px;}
.yd7{bottom:539.535000px;}
.y24{bottom:543.495000px;}
.y98{bottom:547.095000px;}
.y59{bottom:549.435000px;}
.yd6{bottom:556.815000px;}
.y23{bottom:559.155000px;}
.y97{bottom:564.375000px;}
.y58{bottom:566.535000px;}
.y22{bottom:569.415000px;}
.yd5{bottom:574.095000px;}
.y96{bottom:581.655000px;}
.y57{bottom:583.815000px;}
.y21{bottom:586.515000px;}
.yd4{bottom:591.375000px;}
.y95{bottom:598.935000px;}
.y56{bottom:601.095000px;}
.y20{bottom:603.825000px;}
.yd3{bottom:608.685000px;}
.y94{bottom:616.065000px;}
.y55{bottom:618.405000px;}
.y1f{bottom:621.105000px;}
.yd2{bottom:625.785000px;}
.y93{bottom:633.345000px;}
.y54{bottom:635.685000px;}
.y1e{bottom:638.385000px;}
.yd1{bottom:643.065000px;}
.y92{bottom:650.625000px;}
.y53{bottom:652.965000px;}
.y1d{bottom:655.665000px;}
.yd0{bottom:660.345000px;}
.y91{bottom:667.905000px;}
.y52{bottom:670.065000px;}
.y1c{bottom:672.765000px;}
.ycf{bottom:677.625000px;}
.y90{bottom:685.185000px;}
.y51{bottom:687.345000px;}
.y1b{bottom:690.045000px;}
.yce{bottom:694.905000px;}
.y8f{bottom:702.465000px;}
.y50{bottom:704.625000px;}
.y1a{bottom:707.325000px;}
.ycd{bottom:712.185000px;}
.y8e{bottom:719.565000px;}
.y4f{bottom:721.905000px;}
.y19{bottom:724.605000px;}
.ycc{bottom:729.285000px;}
.y8d{bottom:736.845000px;}
.y4e{bottom:739.185000px;}
.y18{bottom:741.885000px;}
.ycb{bottom:746.565000px;}
.y8c{bottom:754.125000px;}
.y4d{bottom:756.465000px;}
.y17{bottom:759.165000px;}
.yca{bottom:763.845000px;}
.y8b{bottom:771.405000px;}
.y4c{bottom:773.565000px;}
.y16{bottom:776.265000px;}
.yc9{bottom:781.125000px;}
.y8a{bottom:788.685000px;}
.y4b{bottom:790.845000px;}
.y15{bottom:793.545000px;}
.yc8{bottom:798.405000px;}
.y89{bottom:805.965000px;}
.y4a{bottom:808.125000px;}
.y14{bottom:810.825000px;}
.yc7{bottom:815.685000px;}
.y88{bottom:823.065000px;}
.y49{bottom:825.405000px;}
.y13{bottom:828.105000px;}
.yc6{bottom:832.785000px;}
.y87{bottom:840.345000px;}
.y48{bottom:842.685000px;}
.y12{bottom:845.385000px;}
.yc5{bottom:846.825000px;}
.y86{bottom:857.625000px;}
.y47{bottom:859.785000px;}
.y11{bottom:862.665000px;}
.y85{bottom:874.950000px;}
.y46{bottom:877.110000px;}
.y10{bottom:879.810000px;}
.y84{bottom:892.230000px;}
.y45{bottom:894.390000px;}
.yf{bottom:899.610000px;}
.y83{bottom:909.330000px;}
.y44{bottom:911.670000px;}
.ye{bottom:919.590000px;}
.y82{bottom:926.610000px;}
.y43{bottom:928.950000px;}
.yd{bottom:936.870000px;}
.yb8{bottom:941.370000px;}
.y81{bottom:943.890000px;}
.y42{bottom:946.230000px;}
.yc{bottom:954.690000px;}
.yb7{bottom:958.650000px;}
.y80{bottom:961.170000px;}
.y41{bottom:963.330000px;}
.yb{bottom:975.390000px;}
.yb6{bottom:975.930000px;}
.y7f{bottom:978.450000px;}
.y40{bottom:980.610000px;}
.yb5{bottom:993.210000px;}
.y7e{bottom:995.730000px;}
.ya{bottom:997.530000px;}
.y3f{bottom:997.890000px;}
.y7d{bottom:1010.490000px;}
.y3e{bottom:1015.170000px;}
.y7{bottom:1023.810000px;}
.y7c{bottom:1027.590000px;}
.y3d{bottom:1032.450000px;}
.y5{bottom:1040.550000px;}
.yb4{bottom:1044.870000px;}
.y3c{bottom:1049.730000px;}
.y7b{bottom:1062.150000px;}
.y3b{bottom:1066.830000px;}
.y7a{bottom:1079.430000px;}
.y3a{bottom:1084.110000px;}
.y79{bottom:1096.710000px;}
.y39{bottom:1101.390000px;}
.y76{bottom:1113.990000px;}
.y38{bottom:1118.670000px;}
.yb1{bottom:1131.990000px;}
.y37{bottom:1135.950000px;}
.y72{bottom:1149.120000px;}
.y3{bottom:1149.300000px;}
.y36{bottom:1153.260000px;}
.y35{bottom:1170.360000px;}
.y1{bottom:1179.180000px;}
.y33{bottom:1192.140000px;}
.h12{height:17.100000px;}
.h11{height:17.280000px;}
.hd{height:21.336328px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h13{height:34.380000px;}
.h10{height:34.416000px;}
.hf{height:34.560000px;}
.ha{height:42.164648px;}
.hb{height:43.215117px;}
.h14{height:43.506914px;}
.hc{height:43.681992px;}
.h5{height:50.800781px;}
.h3{height:52.066406px;}
.he{height:52.171875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:108.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:123.336000px;}
.wa{width:131.076000px;}
.wc{width:137.340000px;}
.w7{width:140.940000px;}
.wd{width:140.976000px;}
.w5{width:199.830000px;}
.w8{width:200.235000px;}
.w9{width:241.590000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.wb{width:312.195000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.560000px;}
.x19{left:9.360000px;}
.x21{left:14.040000px;}
.x1e{left:16.200000px;}
.x2a{left:18.540000px;}
.x2f{left:20.880000px;}
.x8{left:23.940000px;}
.x1b{left:35.145000px;}
.x33{left:44.670000px;}
.x3{left:46.800000px;}
.x30{left:48.450000px;}
.x2b{left:49.860000px;}
.x2d{left:51.705000px;}
.x22{left:52.950000px;}
.x1c{left:55.125000px;}
.x32{left:57.285000px;}
.x34{left:59.220000px;}
.x31{left:61.065000px;}
.x6{left:62.310000px;}
.x24{left:86.805000px;}
.x18{left:89.676000px;}
.x1f{left:91.440000px;}
.x11{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x10{left:110.195987px;}
.x28{left:134.274000px;}
.x3d{left:151.229987px;}
.xb{left:168.509987px;}
.x4{left:182.559000px;}
.x17{left:200.909987px;}
.x27{left:229.349987px;}
.x1a{left:230.610000px;}
.x2{left:240.519000px;}
.x38{left:263.054987px;}
.x3a{left:266.654987px;}
.x37{left:286.994987px;}
.x35{left:290.594987px;}
.x25{left:304.634987px;}
.x16{left:310.214987px;}
.xd{left:335.954987px;}
.x3b{left:346.934987px;}
.x5{left:352.695000px;}
.xf{left:367.994987px;}
.x13{left:386.534987px;}
.x3c{left:395.714987px;}
.x29{left:401.865000px;}
.x1d{left:430.845000px;}
.x26{left:437.504987px;}
.x15{left:442.004987px;}
.x12{left:446.504987px;}
.xc{left:452.264987px;}
.xa{left:454.604987px;}
.xe{left:459.104987px;}
.x2c{left:539.205000px;}
.x14{left:615.749987px;}
.x7{left:618.450000px;}
.x39{left:662.189987px;}
.x20{left:672.450000px;}
.x2e{left:680.190000px;}
.x36{left:691.349987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.082667pt;}
.lsc{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:37.051307pt;}
.ls7{letter-spacing:63.931307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.021440pt;}
._1{width:2.389333pt;}
._8{width:3.322240pt;}
._b{width:4.459947pt;}
._a{width:5.447040pt;}
._7{width:6.574720pt;}
._3{width:8.156160pt;}
._4{width:9.312640pt;}
._c{width:10.243200pt;}
._13{width:11.152000pt;}
._11{width:12.058240pt;}
._6{width:14.388907pt;}
._e{width:15.936000pt;}
._12{width:17.039360pt;}
._9{width:18.007680pt;}
._14{width:18.915200pt;}
._d{width:19.866880pt;}
._5{width:20.757760pt;}
._10{width:21.726080pt;}
._f{width:22.735360pt;}
._15{width:24.316800pt;}
._16{width:25.254400pt;}
._17{width:28.496640pt;}
._1b{width:56.985600pt;}
._19{width:71.115520pt;}
._1a{width:417.576320pt;}
._18{width:925.828480pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.880000pt;}
.y78{bottom:10.400000pt;}
.yb2{bottom:10.426667pt;}
.y73{bottom:10.560000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y77{bottom:18.080000pt;}
.yb3{bottom:18.106667pt;}
.y74{bottom:18.240000pt;}
.y6{bottom:41.920000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y34{bottom:88.192000pt;}
.y32{bottom:108.352000pt;}
.yc4{bottom:110.432000pt;}
.yef{bottom:111.712000pt;}
.yb0{bottom:118.272000pt;}
.y71{bottom:120.352000pt;}
.y31{bottom:123.712000pt;}
.yc3{bottom:125.632000pt;}
.yee{bottom:126.912000pt;}
.yaf{bottom:133.626667pt;}
.y70{bottom:135.706667pt;}
.y30{bottom:139.066667pt;}
.yc2{bottom:140.986667pt;}
.yed{bottom:142.266667pt;}
.yae{bottom:148.986667pt;}
.y6f{bottom:150.906667pt;}
.y2f{bottom:154.426667pt;}
.yc1{bottom:156.346667pt;}
.yec{bottom:157.626667pt;}
.yad{bottom:164.346667pt;}
.y6e{bottom:166.266667pt;}
.y2e{bottom:169.786667pt;}
.yc0{bottom:171.706667pt;}
.yeb{bottom:172.986667pt;}
.yac{bottom:179.706667pt;}
.y6d{bottom:181.626667pt;}
.y2d{bottom:184.986667pt;}
.ybf{bottom:187.066667pt;}
.yea{bottom:188.346667pt;}
.yab{bottom:194.906667pt;}
.y6c{bottom:196.986667pt;}
.y2c{bottom:200.346667pt;}
.ybe{bottom:202.426667pt;}
.ye9{bottom:203.546667pt;}
.yaa{bottom:210.266667pt;}
.y6b{bottom:212.346667pt;}
.y2b{bottom:215.706667pt;}
.ybd{bottom:217.626667pt;}
.ye8{bottom:218.906667pt;}
.ya9{bottom:225.626667pt;}
.y6a{bottom:227.706667pt;}
.y2a{bottom:231.066667pt;}
.ybc{bottom:232.986667pt;}
.ye7{bottom:234.266667pt;}
.ya8{bottom:240.986667pt;}
.y69{bottom:242.906667pt;}
.y29{bottom:246.426667pt;}
.ybb{bottom:248.346667pt;}
.ye6{bottom:249.626667pt;}
.ya7{bottom:256.346667pt;}
.y68{bottom:258.266667pt;}
.y28{bottom:261.626667pt;}
.yba{bottom:263.706667pt;}
.ye5{bottom:264.986667pt;}
.ya6{bottom:271.706667pt;}
.y67{bottom:273.626667pt;}
.yb9{bottom:276.186667pt;}
.y27{bottom:276.986667pt;}
.ye4{bottom:280.346667pt;}
.ya5{bottom:286.906667pt;}
.y66{bottom:288.986667pt;}
.y26{bottom:289.466667pt;}
.ye3{bottom:295.546667pt;}
.ya4{bottom:302.306667pt;}
.y65{bottom:304.386667pt;}
.ye2{bottom:310.946667pt;}
.ya3{bottom:317.666667pt;}
.y64{bottom:319.746667pt;}
.ye1{bottom:326.306667pt;}
.ya2{bottom:333.026667pt;}
.y63{bottom:334.946667pt;}
.ye0{bottom:341.666667pt;}
.ya1{bottom:348.386667pt;}
.y62{bottom:350.306667pt;}
.ydf{bottom:357.026667pt;}
.ya0{bottom:363.746667pt;}
.y61{bottom:365.666667pt;}
.yde{bottom:372.386667pt;}
.y9f{bottom:378.946667pt;}
.y60{bottom:381.026667pt;}
.ydd{bottom:387.586667pt;}
.y9e{bottom:394.306667pt;}
.y5f{bottom:396.386667pt;}
.ydc{bottom:402.946667pt;}
.y9d{bottom:409.666667pt;}
.y5e{bottom:411.746667pt;}
.ydb{bottom:418.306667pt;}
.y9c{bottom:425.026667pt;}
.y5d{bottom:426.946667pt;}
.yda{bottom:433.666667pt;}
.y9b{bottom:440.386667pt;}
.y5c{bottom:442.306667pt;}
.yd9{bottom:449.026667pt;}
.y9a{bottom:455.586667pt;}
.y5b{bottom:457.666667pt;}
.yd8{bottom:464.386667pt;}
.y25{bottom:467.746667pt;}
.y99{bottom:470.946667pt;}
.y5a{bottom:473.026667pt;}
.yd7{bottom:479.586667pt;}
.y24{bottom:483.106667pt;}
.y98{bottom:486.306667pt;}
.y59{bottom:488.386667pt;}
.yd6{bottom:494.946667pt;}
.y23{bottom:497.026667pt;}
.y97{bottom:501.666667pt;}
.y58{bottom:503.586667pt;}
.y22{bottom:506.146667pt;}
.yd5{bottom:510.306667pt;}
.y96{bottom:517.026667pt;}
.y57{bottom:518.946667pt;}
.y21{bottom:521.346667pt;}
.yd4{bottom:525.666667pt;}
.y95{bottom:532.386667pt;}
.y56{bottom:534.306667pt;}
.y20{bottom:536.733333pt;}
.yd3{bottom:541.053333pt;}
.y94{bottom:547.613333pt;}
.y55{bottom:549.693333pt;}
.y1f{bottom:552.093333pt;}
.yd2{bottom:556.253333pt;}
.y93{bottom:562.973333pt;}
.y54{bottom:565.053333pt;}
.y1e{bottom:567.453333pt;}
.yd1{bottom:571.613333pt;}
.y92{bottom:578.333333pt;}
.y53{bottom:580.413333pt;}
.y1d{bottom:582.813333pt;}
.yd0{bottom:586.973333pt;}
.y91{bottom:593.693333pt;}
.y52{bottom:595.613333pt;}
.y1c{bottom:598.013333pt;}
.ycf{bottom:602.333333pt;}
.y90{bottom:609.053333pt;}
.y51{bottom:610.973333pt;}
.y1b{bottom:613.373333pt;}
.yce{bottom:617.693333pt;}
.y8f{bottom:624.413333pt;}
.y50{bottom:626.333333pt;}
.y1a{bottom:628.733333pt;}
.ycd{bottom:633.053333pt;}
.y8e{bottom:639.613333pt;}
.y4f{bottom:641.693333pt;}
.y19{bottom:644.093333pt;}
.ycc{bottom:648.253333pt;}
.y8d{bottom:654.973333pt;}
.y4e{bottom:657.053333pt;}
.y18{bottom:659.453333pt;}
.ycb{bottom:663.613333pt;}
.y8c{bottom:670.333333pt;}
.y4d{bottom:672.413333pt;}
.y17{bottom:674.813333pt;}
.yca{bottom:678.973333pt;}
.y8b{bottom:685.693333pt;}
.y4c{bottom:687.613333pt;}
.y16{bottom:690.013333pt;}
.yc9{bottom:694.333333pt;}
.y8a{bottom:701.053333pt;}
.y4b{bottom:702.973333pt;}
.y15{bottom:705.373333pt;}
.yc8{bottom:709.693333pt;}
.y89{bottom:716.413333pt;}
.y4a{bottom:718.333333pt;}
.y14{bottom:720.733333pt;}
.yc7{bottom:725.053333pt;}
.y88{bottom:731.613333pt;}
.y49{bottom:733.693333pt;}
.y13{bottom:736.093333pt;}
.yc6{bottom:740.253333pt;}
.y87{bottom:746.973333pt;}
.y48{bottom:749.053333pt;}
.y12{bottom:751.453333pt;}
.yc5{bottom:752.733333pt;}
.y86{bottom:762.333333pt;}
.y47{bottom:764.253333pt;}
.y11{bottom:766.813333pt;}
.y85{bottom:777.733333pt;}
.y46{bottom:779.653333pt;}
.y10{bottom:782.053333pt;}
.y84{bottom:793.093333pt;}
.y45{bottom:795.013333pt;}
.yf{bottom:799.653333pt;}
.y83{bottom:808.293333pt;}
.y44{bottom:810.373333pt;}
.ye{bottom:817.413333pt;}
.y82{bottom:823.653333pt;}
.y43{bottom:825.733333pt;}
.yd{bottom:832.773333pt;}
.yb8{bottom:836.773333pt;}
.y81{bottom:839.013333pt;}
.y42{bottom:841.093333pt;}
.yc{bottom:848.613333pt;}
.yb7{bottom:852.133333pt;}
.y80{bottom:854.373333pt;}
.y41{bottom:856.293333pt;}
.yb{bottom:867.013333pt;}
.yb6{bottom:867.493333pt;}
.y7f{bottom:869.733333pt;}
.y40{bottom:871.653333pt;}
.yb5{bottom:882.853333pt;}
.y7e{bottom:885.093333pt;}
.ya{bottom:886.693333pt;}
.y3f{bottom:887.013333pt;}
.y7d{bottom:898.213333pt;}
.y3e{bottom:902.373333pt;}
.y7{bottom:910.053333pt;}
.y7c{bottom:913.413333pt;}
.y3d{bottom:917.733333pt;}
.y5{bottom:924.933333pt;}
.yb4{bottom:928.773333pt;}
.y3c{bottom:933.093333pt;}
.y7b{bottom:944.133333pt;}
.y3b{bottom:948.293333pt;}
.y7a{bottom:959.493333pt;}
.y3a{bottom:963.653333pt;}
.y79{bottom:974.853333pt;}
.y39{bottom:979.013333pt;}
.y76{bottom:990.213333pt;}
.y38{bottom:994.373333pt;}
.yb1{bottom:1006.213333pt;}
.y37{bottom:1009.733333pt;}
.y72{bottom:1021.440000pt;}
.y3{bottom:1021.600000pt;}
.y36{bottom:1025.120000pt;}
.y35{bottom:1040.320000pt;}
.y1{bottom:1048.160000pt;}
.y33{bottom:1059.680000pt;}
.h12{height:15.200000pt;}
.h11{height:15.360000pt;}
.hd{height:18.965625pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h13{height:30.560000pt;}
.h10{height:30.592000pt;}
.hf{height:30.720000pt;}
.ha{height:37.479688pt;}
.hb{height:38.413438pt;}
.h14{height:38.672812pt;}
.hc{height:38.828437pt;}
.h5{height:45.156250pt;}
.h3{height:46.281250pt;}
.he{height:46.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:96.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:109.632000pt;}
.wa{width:116.512000pt;}
.wc{width:122.080000pt;}
.w7{width:125.280000pt;}
.wd{width:125.312000pt;}
.w5{width:177.626667pt;}
.w8{width:177.986667pt;}
.w9{width:214.746667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.wb{width:277.506667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.720000pt;}
.x19{left:8.320000pt;}
.x21{left:12.480000pt;}
.x1e{left:14.400000pt;}
.x2a{left:16.480000pt;}
.x2f{left:18.560000pt;}
.x8{left:21.280000pt;}
.x1b{left:31.240000pt;}
.x33{left:39.706667pt;}
.x3{left:41.600000pt;}
.x30{left:43.066667pt;}
.x2b{left:44.320000pt;}
.x2d{left:45.960000pt;}
.x22{left:47.066667pt;}
.x1c{left:49.000000pt;}
.x32{left:50.920000pt;}
.x34{left:52.640000pt;}
.x31{left:54.280000pt;}
.x6{left:55.386667pt;}
.x24{left:77.160000pt;}
.x18{left:79.712000pt;}
.x1f{left:81.280000pt;}
.x11{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x10{left:97.951988pt;}
.x28{left:119.354667pt;}
.x3d{left:134.426655pt;}
.xb{left:149.786655pt;}
.x4{left:162.274667pt;}
.x17{left:178.586655pt;}
.x27{left:203.866655pt;}
.x1a{left:204.986667pt;}
.x2{left:213.794667pt;}
.x38{left:233.826655pt;}
.x3a{left:237.026655pt;}
.x37{left:255.106655pt;}
.x35{left:258.306655pt;}
.x25{left:270.786655pt;}
.x16{left:275.746655pt;}
.xd{left:298.626655pt;}
.x3b{left:308.386655pt;}
.x5{left:313.506667pt;}
.xf{left:327.106655pt;}
.x13{left:343.586655pt;}
.x3c{left:351.746655pt;}
.x29{left:357.213333pt;}
.x1d{left:382.973333pt;}
.x26{left:388.893322pt;}
.x15{left:392.893322pt;}
.x12{left:396.893322pt;}
.xc{left:402.013322pt;}
.xa{left:404.093322pt;}
.xe{left:408.093322pt;}
.x2c{left:479.293333pt;}
.x14{left:547.333322pt;}
.x7{left:549.733333pt;}
.x39{left:588.613322pt;}
.x20{left:597.733333pt;}
.x2e{left:604.613333pt;}
.x36{left:614.533322pt;}
}




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