
    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_41806898597acce8201df4fd.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_f485fe2dc87f69097f298c6b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f0f34ef31c62847bf9cb031a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_59a6d9807958c4120dd42607.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9e41a8801fb22cce4ac20810.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_32a83cc69a55a711ae2725a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-4.680000px;}
.ls15{letter-spacing:-3.960000px;}
.lse{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.666000px;}
.lsf{letter-spacing:46.002720px;}
.ls3{letter-spacing:46.026720px;}
.ls16{letter-spacing:69.042720px;}
.ls8{letter-spacing:91.362720px;}
.ls10{letter-spacing:99.282720px;}
.ls2{letter-spacing:687.240000px;}
.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:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-10.980000px;}
.ws9{word-spacing:-10.260000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-8.007840px;}
._5{margin-left:-6.633840px;}
._13{margin-left:-5.613840px;}
._a{margin-left:-3.827280px;}
._9{margin-left:-2.450160px;}
._1{margin-left:-1.430160px;}
._3{width:1.257600px;}
._2{width:2.592960px;}
._7{width:4.500000px;}
._8{width:5.909520px;}
._b{width:7.080240px;}
._d{width:8.426160px;}
._c{width:9.920160px;}
._11{width:11.292000px;}
._12{width:12.614640px;}
._15{width:13.853760px;}
._e{width:16.008000px;}
._10{width:17.532480px;}
._14{width:18.739200px;}
._18{width:19.902720px;}
._16{width:21.510960px;}
._17{width:22.526880px;}
._f{width:24.379440px;}
._1a{width:25.800720px;}
._1b{width:26.904960px;}
._6{width:85.722000px;}
._4{width:746.796000px;}
._19{width:2466.636000px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:37.260000px;}
.y9{bottom:57.060000px;}
.yb5{bottom:113.796000px;}
.y76{bottom:115.956000px;}
.y3f{bottom:126.396000px;}
.y95{bottom:128.736000px;}
.yb4{bottom:130.896000px;}
.y75{bottom:133.236000px;}
.y3e{bottom:143.676000px;}
.y94{bottom:146.016000px;}
.yb3{bottom:148.176000px;}
.y74{bottom:150.510000px;}
.y3d{bottom:160.770000px;}
.y93{bottom:163.290000px;}
.yb2{bottom:165.450000px;}
.y73{bottom:167.790000px;}
.y3c{bottom:178.050000px;}
.y92{bottom:180.390000px;}
.yb1{bottom:182.730000px;}
.y72{bottom:185.070000px;}
.y3b{bottom:195.330000px;}
.y91{bottom:197.670000px;}
.yb0{bottom:200.010000px;}
.y71{bottom:202.170000px;}
.y3a{bottom:212.610000px;}
.y90{bottom:214.950000px;}
.yaf{bottom:217.290000px;}
.y70{bottom:219.450000px;}
.y39{bottom:229.890000px;}
.y8f{bottom:232.230000px;}
.yae{bottom:234.390000px;}
.y6f{bottom:236.730000px;}
.y38{bottom:247.170000px;}
.y8e{bottom:249.510000px;}
.yad{bottom:251.670000px;}
.y6e{bottom:254.010000px;}
.y37{bottom:264.270000px;}
.y8d{bottom:266.790000px;}
.yac{bottom:268.950000px;}
.y6d{bottom:271.290000px;}
.y36{bottom:281.550000px;}
.y8c{bottom:283.890000px;}
.yab{bottom:286.230000px;}
.y6c{bottom:288.570000px;}
.y35{bottom:298.830000px;}
.y8b{bottom:301.170000px;}
.yaa{bottom:303.510000px;}
.y6b{bottom:305.670000px;}
.y34{bottom:316.110000px;}
.y8a{bottom:318.450000px;}
.ya9{bottom:320.790000px;}
.y6a{bottom:322.950000px;}
.y33{bottom:333.390000px;}
.y89{bottom:335.730000px;}
.ya8{bottom:337.935000px;}
.y69{bottom:340.275000px;}
.y32{bottom:350.715000px;}
.y88{bottom:353.055000px;}
.ya7{bottom:355.215000px;}
.y68{bottom:357.555000px;}
.y31{bottom:367.815000px;}
.y87{bottom:370.335000px;}
.ya6{bottom:372.495000px;}
.y67{bottom:374.835000px;}
.y30{bottom:385.095000px;}
.y86{bottom:387.435000px;}
.ya5{bottom:389.775000px;}
.y66{bottom:392.115000px;}
.y2f{bottom:402.375000px;}
.y85{bottom:404.715000px;}
.ya4{bottom:407.055000px;}
.y65{bottom:409.215000px;}
.y2e{bottom:419.655000px;}
.y84{bottom:421.995000px;}
.ya3{bottom:424.335000px;}
.y64{bottom:426.495000px;}
.y2d{bottom:436.935000px;}
.y83{bottom:439.275000px;}
.ya2{bottom:441.435000px;}
.y63{bottom:443.775000px;}
.y2c{bottom:454.215000px;}
.y82{bottom:456.555000px;}
.ya1{bottom:458.715000px;}
.y62{bottom:461.055000px;}
.y2b{bottom:471.315000px;}
.y81{bottom:473.655000px;}
.ya0{bottom:475.995000px;}
.y61{bottom:478.335000px;}
.y2a{bottom:488.595000px;}
.y80{bottom:490.935000px;}
.y9f{bottom:493.275000px;}
.y60{bottom:495.435000px;}
.y29{bottom:505.875000px;}
.y7f{bottom:508.215000px;}
.y9e{bottom:510.555000px;}
.y5f{bottom:512.715000px;}
.y28{bottom:523.155000px;}
.y7e{bottom:525.495000px;}
.y9d{bottom:527.655000px;}
.y5e{bottom:529.995000px;}
.y27{bottom:540.435000px;}
.y7d{bottom:542.775000px;}
.y9c{bottom:544.935000px;}
.y5d{bottom:547.275000px;}
.y26{bottom:557.535000px;}
.y7c{bottom:560.055000px;}
.y9b{bottom:562.215000px;}
.y5c{bottom:564.555000px;}
.y25{bottom:574.815000px;}
.y7b{bottom:577.155000px;}
.y9a{bottom:579.495000px;}
.y5b{bottom:581.835000px;}
.y24{bottom:592.095000px;}
.y7a{bottom:594.435000px;}
.y99{bottom:596.775000px;}
.y5a{bottom:598.935000px;}
.y23{bottom:609.405000px;}
.y79{bottom:611.745000px;}
.y98{bottom:614.085000px;}
.y59{bottom:616.245000px;}
.y22{bottom:626.685000px;}
.y78{bottom:629.025000px;}
.y97{bottom:631.185000px;}
.y58{bottom:633.525000px;}
.y77{bottom:643.065000px;}
.y21{bottom:643.965000px;}
.y96{bottom:645.225000px;}
.y57{bottom:650.805000px;}
.y20{bottom:661.065000px;}
.y56{bottom:668.085000px;}
.y1f{bottom:678.345000px;}
.y55{bottom:685.365000px;}
.y1e{bottom:695.625000px;}
.y54{bottom:702.465000px;}
.y1d{bottom:712.905000px;}
.y53{bottom:719.745000px;}
.y1c{bottom:730.185000px;}
.y52{bottom:737.025000px;}
.y1b{bottom:747.465000px;}
.y51{bottom:754.305000px;}
.y1a{bottom:764.565000px;}
.y50{bottom:771.585000px;}
.y19{bottom:781.845000px;}
.y4f{bottom:788.865000px;}
.y18{bottom:799.125000px;}
.y4e{bottom:805.965000px;}
.y17{bottom:816.405000px;}
.y4d{bottom:823.245000px;}
.y16{bottom:833.685000px;}
.y4c{bottom:840.525000px;}
.y15{bottom:847.725000px;}
.y4b{bottom:857.805000px;}
.y14{bottom:870.225000px;}
.y4a{bottom:875.130000px;}
.y13{bottom:889.350000px;}
.y49{bottom:892.230000px;}
.y12{bottom:908.250000px;}
.y48{bottom:909.510000px;}
.y47{bottom:926.790000px;}
.y11{bottom:927.330000px;}
.y46{bottom:944.070000px;}
.y10{bottom:946.230000px;}
.y45{bottom:961.350000px;}
.yf{bottom:965.130000px;}
.y44{bottom:978.630000px;}
.ye{bottom:984.210000px;}
.y43{bottom:995.730000px;}
.yd{bottom:1003.470000px;}
.y42{bottom:1013.010000px;}
.yc{bottom:1024.170000px;}
.y41{bottom:1030.290000px;}
.yb{bottom:1044.870000px;}
.y40{bottom:1047.570000px;}
.y8{bottom:1066.650000px;}
.y7{bottom:1086.450000px;}
.y6{bottom:1102.290000px;}
.y5{bottom:1120.290000px;}
.y4{bottom:1137.030000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.hb{height:43.506914px;}
.ha{height:46.736719px;}
.h9{height:47.901094px;}
.hc{height:49.255313px;}
.h4{height:50.800781px;}
.h3{height:52.066406px;}
.h8{height:53.958516px;}
.h7{height:60.855469px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x1c{left:113.075987px;}
.x13{left:118.835987px;}
.x2{left:123.155987px;}
.x11{left:127.115987px;}
.x1d{left:129.275987px;}
.x1b{left:135.035987px;}
.x18{left:144.035987px;}
.x7{left:150.869987px;}
.x4{left:158.429987px;}
.x12{left:162.029987px;}
.x8{left:276.149987px;}
.xe{left:281.954987px;}
.xb{left:291.134987px;}
.x15{left:323.174987px;}
.x1a{left:329.294987px;}
.xc{left:331.454987px;}
.x14{left:350.354987px;}
.xf{left:363.494987px;}
.xd{left:372.494987px;}
.xa{left:376.634987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x17{left:419.654987px;}
.x19{left:422.174987px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
.x16{left:779.549987px;}
.x10{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-4.160000pt;}
.ls15{letter-spacing:-3.520000pt;}
.lse{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.592000pt;}
.lsf{letter-spacing:40.891307pt;}
.ls3{letter-spacing:40.912640pt;}
.ls16{letter-spacing:61.371307pt;}
.ls8{letter-spacing:81.211307pt;}
.ls10{letter-spacing:88.251307pt;}
.ls2{letter-spacing:610.880000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-9.760000pt;}
.ws9{word-spacing:-9.120000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-7.118080pt;}
._5{margin-left:-5.896747pt;}
._13{margin-left:-4.990080pt;}
._a{margin-left:-3.402027pt;}
._9{margin-left:-2.177920pt;}
._1{margin-left:-1.271253pt;}
._3{width:1.117867pt;}
._2{width:2.304853pt;}
._7{width:4.000000pt;}
._8{width:5.252907pt;}
._b{width:6.293547pt;}
._d{width:7.489920pt;}
._c{width:8.817920pt;}
._11{width:10.037333pt;}
._12{width:11.213013pt;}
._15{width:12.314453pt;}
._e{width:14.229333pt;}
._10{width:15.584427pt;}
._14{width:16.657067pt;}
._18{width:17.691307pt;}
._16{width:19.120853pt;}
._17{width:20.023893pt;}
._f{width:21.670613pt;}
._1a{width:22.933973pt;}
._1b{width:23.915520pt;}
._6{width:76.197333pt;}
._4{width:663.818667pt;}
._19{width:2192.565333pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:33.120000pt;}
.y9{bottom:50.720000pt;}
.yb5{bottom:101.152000pt;}
.y76{bottom:103.072000pt;}
.y3f{bottom:112.352000pt;}
.y95{bottom:114.432000pt;}
.yb4{bottom:116.352000pt;}
.y75{bottom:118.432000pt;}
.y3e{bottom:127.712000pt;}
.y94{bottom:129.792000pt;}
.yb3{bottom:131.712000pt;}
.y74{bottom:133.786667pt;}
.y3d{bottom:142.906667pt;}
.y93{bottom:145.146667pt;}
.yb2{bottom:147.066667pt;}
.y73{bottom:149.146667pt;}
.y3c{bottom:158.266667pt;}
.y92{bottom:160.346667pt;}
.yb1{bottom:162.426667pt;}
.y72{bottom:164.506667pt;}
.y3b{bottom:173.626667pt;}
.y91{bottom:175.706667pt;}
.yb0{bottom:177.786667pt;}
.y71{bottom:179.706667pt;}
.y3a{bottom:188.986667pt;}
.y90{bottom:191.066667pt;}
.yaf{bottom:193.146667pt;}
.y70{bottom:195.066667pt;}
.y39{bottom:204.346667pt;}
.y8f{bottom:206.426667pt;}
.yae{bottom:208.346667pt;}
.y6f{bottom:210.426667pt;}
.y38{bottom:219.706667pt;}
.y8e{bottom:221.786667pt;}
.yad{bottom:223.706667pt;}
.y6e{bottom:225.786667pt;}
.y37{bottom:234.906667pt;}
.y8d{bottom:237.146667pt;}
.yac{bottom:239.066667pt;}
.y6d{bottom:241.146667pt;}
.y36{bottom:250.266667pt;}
.y8c{bottom:252.346667pt;}
.yab{bottom:254.426667pt;}
.y6c{bottom:256.506667pt;}
.y35{bottom:265.626667pt;}
.y8b{bottom:267.706667pt;}
.yaa{bottom:269.786667pt;}
.y6b{bottom:271.706667pt;}
.y34{bottom:280.986667pt;}
.y8a{bottom:283.066667pt;}
.ya9{bottom:285.146667pt;}
.y6a{bottom:287.066667pt;}
.y33{bottom:296.346667pt;}
.y89{bottom:298.426667pt;}
.ya8{bottom:300.386667pt;}
.y69{bottom:302.466667pt;}
.y32{bottom:311.746667pt;}
.y88{bottom:313.826667pt;}
.ya7{bottom:315.746667pt;}
.y68{bottom:317.826667pt;}
.y31{bottom:326.946667pt;}
.y87{bottom:329.186667pt;}
.ya6{bottom:331.106667pt;}
.y67{bottom:333.186667pt;}
.y30{bottom:342.306667pt;}
.y86{bottom:344.386667pt;}
.ya5{bottom:346.466667pt;}
.y66{bottom:348.546667pt;}
.y2f{bottom:357.666667pt;}
.y85{bottom:359.746667pt;}
.ya4{bottom:361.826667pt;}
.y65{bottom:363.746667pt;}
.y2e{bottom:373.026667pt;}
.y84{bottom:375.106667pt;}
.ya3{bottom:377.186667pt;}
.y64{bottom:379.106667pt;}
.y2d{bottom:388.386667pt;}
.y83{bottom:390.466667pt;}
.ya2{bottom:392.386667pt;}
.y63{bottom:394.466667pt;}
.y2c{bottom:403.746667pt;}
.y82{bottom:405.826667pt;}
.ya1{bottom:407.746667pt;}
.y62{bottom:409.826667pt;}
.y2b{bottom:418.946667pt;}
.y81{bottom:421.026667pt;}
.ya0{bottom:423.106667pt;}
.y61{bottom:425.186667pt;}
.y2a{bottom:434.306667pt;}
.y80{bottom:436.386667pt;}
.y9f{bottom:438.466667pt;}
.y60{bottom:440.386667pt;}
.y29{bottom:449.666667pt;}
.y7f{bottom:451.746667pt;}
.y9e{bottom:453.826667pt;}
.y5f{bottom:455.746667pt;}
.y28{bottom:465.026667pt;}
.y7e{bottom:467.106667pt;}
.y9d{bottom:469.026667pt;}
.y5e{bottom:471.106667pt;}
.y27{bottom:480.386667pt;}
.y7d{bottom:482.466667pt;}
.y9c{bottom:484.386667pt;}
.y5d{bottom:486.466667pt;}
.y26{bottom:495.586667pt;}
.y7c{bottom:497.826667pt;}
.y9b{bottom:499.746667pt;}
.y5c{bottom:501.826667pt;}
.y25{bottom:510.946667pt;}
.y7b{bottom:513.026667pt;}
.y9a{bottom:515.106667pt;}
.y5b{bottom:517.186667pt;}
.y24{bottom:526.306667pt;}
.y7a{bottom:528.386667pt;}
.y99{bottom:530.466667pt;}
.y5a{bottom:532.386667pt;}
.y23{bottom:541.693333pt;}
.y79{bottom:543.773333pt;}
.y98{bottom:545.853333pt;}
.y59{bottom:547.773333pt;}
.y22{bottom:557.053333pt;}
.y78{bottom:559.133333pt;}
.y97{bottom:561.053333pt;}
.y58{bottom:563.133333pt;}
.y77{bottom:571.613333pt;}
.y21{bottom:572.413333pt;}
.y96{bottom:573.533333pt;}
.y57{bottom:578.493333pt;}
.y20{bottom:587.613333pt;}
.y56{bottom:593.853333pt;}
.y1f{bottom:602.973333pt;}
.y55{bottom:609.213333pt;}
.y1e{bottom:618.333333pt;}
.y54{bottom:624.413333pt;}
.y1d{bottom:633.693333pt;}
.y53{bottom:639.773333pt;}
.y1c{bottom:649.053333pt;}
.y52{bottom:655.133333pt;}
.y1b{bottom:664.413333pt;}
.y51{bottom:670.493333pt;}
.y1a{bottom:679.613333pt;}
.y50{bottom:685.853333pt;}
.y19{bottom:694.973333pt;}
.y4f{bottom:701.213333pt;}
.y18{bottom:710.333333pt;}
.y4e{bottom:716.413333pt;}
.y17{bottom:725.693333pt;}
.y4d{bottom:731.773333pt;}
.y16{bottom:741.053333pt;}
.y4c{bottom:747.133333pt;}
.y15{bottom:753.533333pt;}
.y4b{bottom:762.493333pt;}
.y14{bottom:773.533333pt;}
.y4a{bottom:777.893333pt;}
.y13{bottom:790.533333pt;}
.y49{bottom:793.093333pt;}
.y12{bottom:807.333333pt;}
.y48{bottom:808.453333pt;}
.y47{bottom:823.813333pt;}
.y11{bottom:824.293333pt;}
.y46{bottom:839.173333pt;}
.y10{bottom:841.093333pt;}
.y45{bottom:854.533333pt;}
.yf{bottom:857.893333pt;}
.y44{bottom:869.893333pt;}
.ye{bottom:874.853333pt;}
.y43{bottom:885.093333pt;}
.yd{bottom:891.973333pt;}
.y42{bottom:900.453333pt;}
.yc{bottom:910.373333pt;}
.y41{bottom:915.813333pt;}
.yb{bottom:928.773333pt;}
.y40{bottom:931.173333pt;}
.y8{bottom:948.133333pt;}
.y7{bottom:965.733333pt;}
.y6{bottom:979.813333pt;}
.y5{bottom:995.813333pt;}
.y4{bottom:1010.693333pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.hb{height:38.672812pt;}
.ha{height:41.543750pt;}
.h9{height:42.578750pt;}
.hc{height:43.782500pt;}
.h4{height:45.156250pt;}
.h3{height:46.281250pt;}
.h8{height:47.963125pt;}
.h7{height:54.093750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x1c{left:100.511988pt;}
.x13{left:105.631988pt;}
.x2{left:109.471988pt;}
.x11{left:112.991988pt;}
.x1d{left:114.911988pt;}
.x1b{left:120.031988pt;}
.x18{left:128.031988pt;}
.x7{left:134.106655pt;}
.x4{left:140.826655pt;}
.x12{left:144.026655pt;}
.x8{left:245.466655pt;}
.xe{left:250.626655pt;}
.xb{left:258.786655pt;}
.x15{left:287.266655pt;}
.x1a{left:292.706655pt;}
.xc{left:294.626655pt;}
.x14{left:311.426655pt;}
.xf{left:323.106655pt;}
.xd{left:331.106655pt;}
.xa{left:334.786655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x17{left:373.026655pt;}
.x19{left:375.266655pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
.x16{left:692.933322pt;}
.x10{left:697.893322pt;}
}




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