
    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_17dab436c7e53c7f837565bb.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_228cdd048b5e69c198fc0daf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_b01f019a8d172de82650c89d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ef7deb8395a93214b6f73aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b98654cca67720980be954f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_f6807fd09c99229396320d09.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_598920ca9ce98acabf5d7b0f.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;}
.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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.640000px;}
.v1{vertical-align:33.120000px;}
.ls8{letter-spacing:-2.736000px;}
.ls20{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.250800px;}
.ls1b{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.080640px;}
.lse{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.457800px;}
.lsd{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.984000px;}
.ls6{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.560000px;}
.ls4{letter-spacing:1.584000px;}
.lsf{letter-spacing:1.944000px;}
.ls14{letter-spacing:2.160000px;}
.ls1f{letter-spacing:26.064000px;}
.ls1{letter-spacing:27.504000px;}
.ls5{letter-spacing:57.744000px;}
.ls1d{letter-spacing:62.064000px;}
.ls1e{letter-spacing:64.944000px;}
.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:-19.584000px;}
.ws9{word-spacing:-18.648000px;}
.wsd{word-spacing:-18.504000px;}
.wse{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.544000px;}
.ws1{word-spacing:-17.496000px;}
.ws10{word-spacing:-17.352000px;}
.ws14{word-spacing:-17.172000px;}
.ws13{word-spacing:-17.017800px;}
.wsc{word-spacing:-16.704000px;}
.ws0{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.407600px;}
.ws12{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.264000px;}
.ws7{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.040000px;}
.ws2{word-spacing:-12.600000px;}
.ws3{word-spacing:-11.880000px;}
.wsf{word-spacing:-11.629200px;}
.ws15{word-spacing:-11.160000px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-36.776640px;}
._26{margin-left:-24.935040px;}
._21{margin-left:-23.882880px;}
._22{margin-left:-22.469760px;}
._23{margin-left:-19.522080px;}
._24{margin-left:-18.434880px;}
._16{margin-left:-14.784480px;}
._15{margin-left:-13.751040px;}
._1f{margin-left:-12.718080px;}
._12{margin-left:-5.113920px;}
._4{margin-left:-3.954240px;}
._2{margin-left:-2.848320px;}
._0{margin-left:-1.722240px;}
._1{width:1.457280px;}
._3{width:2.583360px;}
._5{width:3.709440px;}
._6{width:5.035200px;}
._d{width:6.805440px;}
._7{width:7.891200px;}
._8{width:9.838080px;}
._9{width:11.467200px;}
._e{width:12.527520px;}
._11{width:14.388000px;}
._a{width:16.297920px;}
._1a{width:19.157760px;}
._19{width:20.298240px;}
._13{width:22.242240px;}
._14{width:23.981280px;}
._17{width:25.747200px;}
._27{width:26.769600px;}
._b{width:27.907200px;}
._c{width:29.808000px;}
._18{width:31.222080px;}
._1e{width:32.670720px;}
._1b{width:33.840000px;}
._1c{width:34.992000px;}
._1d{width:36.120960px;}
._f{width:554.425920px;}
._20{width:846.276000px;}
._10{width:971.580000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.960000px;}
.y57{bottom:4.320000px;}
.y59{bottom:26.640000px;}
.y7e{bottom:26.670000px;}
.y25{bottom:78.120000px;}
.ya0{bottom:93.990000px;}
.ya6{bottom:94.365000px;}
.y9c{bottom:124.596000px;}
.yaa{bottom:126.756000px;}
.y75{bottom:128.196000px;}
.y4f{bottom:130.356000px;}
.y9b{bottom:147.996000px;}
.yd0{bottom:149.796000px;}
.y74{bottom:151.590000px;}
.y4e{bottom:153.750000px;}
.ya5{bottom:169.230000px;}
.y9a{bottom:171.390000px;}
.ycf{bottom:173.190000px;}
.y73{bottom:174.990000px;}
.y4d{bottom:177.150000px;}
.y23{bottom:191.910000px;}
.y99{bottom:194.790000px;}
.yce{bottom:196.590000px;}
.y72{bottom:198.390000px;}
.y4c{bottom:200.550000px;}
.ya9{bottom:214.275000px;}
.y22{bottom:217.515000px;}
.y98{bottom:218.235000px;}
.ycd{bottom:220.035000px;}
.y71{bottom:221.835000px;}
.yad{bottom:222.915000px;}
.y4b{bottom:223.995000px;}
.ya8{bottom:236.955000px;}
.y97{bottom:241.635000px;}
.ycc{bottom:243.435000px;}
.y70{bottom:245.235000px;}
.y4a{bottom:247.395000px;}
.ya7{bottom:259.275000px;}
.y21{bottom:264.315000px;}
.y96{bottom:265.035000px;}
.ycb{bottom:266.835000px;}
.y6f{bottom:268.635000px;}
.y49{bottom:270.795000px;}
.y9f{bottom:281.955000px;}
.y20{bottom:287.715000px;}
.y95{bottom:288.435000px;}
.yca{bottom:290.235000px;}
.y6e{bottom:292.035000px;}
.y48{bottom:294.195000px;}
.ya4{bottom:304.275000px;}
.y1f{bottom:311.115000px;}
.y94{bottom:311.835000px;}
.yc9{bottom:313.635000px;}
.y6d{bottom:315.435000px;}
.yd2{bottom:316.875000px;}
.y47{bottom:317.595000px;}
.ya3{bottom:326.955000px;}
.y1e{bottom:334.545000px;}
.y93{bottom:335.265000px;}
.yc8{bottom:337.065000px;}
.y6c{bottom:338.865000px;}
.y46{bottom:341.025000px;}
.ya2{bottom:349.305000px;}
.y1d{bottom:357.945000px;}
.y92{bottom:358.665000px;}
.yc7{bottom:360.465000px;}
.y6b{bottom:362.265000px;}
.yac{bottom:364.065000px;}
.y45{bottom:364.425000px;}
.ya1{bottom:371.985000px;}
.y1c{bottom:381.345000px;}
.y91{bottom:382.065000px;}
.yc6{bottom:383.865000px;}
.y6a{bottom:385.665000px;}
.y44{bottom:387.825000px;}
.y9e{bottom:395.025000px;}
.y1b{bottom:404.745000px;}
.yc5{bottom:407.265000px;}
.y69{bottom:409.065000px;}
.y43{bottom:411.225000px;}
.y1a{bottom:428.145000px;}
.y90{bottom:428.505000px;}
.yc4{bottom:430.665000px;}
.y68{bottom:432.465000px;}
.y42{bottom:434.625000px;}
.y19{bottom:451.545000px;}
.yc3{bottom:454.065000px;}
.y67{bottom:455.865000px;}
.y41{bottom:458.070000px;}
.y18{bottom:474.990000px;}
.y8f{bottom:475.710000px;}
.yc2{bottom:477.510000px;}
.y66{bottom:479.310000px;}
.y40{bottom:481.470000px;}
.y17{bottom:498.390000px;}
.y8e{bottom:499.110000px;}
.y7a{bottom:500.190000px;}
.yc1{bottom:500.910000px;}
.y65{bottom:502.710000px;}
.y3f{bottom:504.870000px;}
.y16{bottom:521.790000px;}
.y8d{bottom:522.510000px;}
.yc0{bottom:524.310000px;}
.y64{bottom:526.110000px;}
.y3e{bottom:528.270000px;}
.y15{bottom:545.190000px;}
.y8c{bottom:545.910000px;}
.ybf{bottom:547.710000px;}
.y63{bottom:549.510000px;}
.y3d{bottom:551.670000px;}
.y78{bottom:557.430000px;}
.y14{bottom:568.590000px;}
.y8b{bottom:569.310000px;}
.ybe{bottom:571.110000px;}
.y3c{bottom:575.070000px;}
.yab{bottom:575.790000px;}
.y13{bottom:592.020000px;}
.y8a{bottom:592.740000px;}
.ybd{bottom:594.540000px;}
.y62{bottom:595.980000px;}
.y3b{bottom:598.500000px;}
.y12{bottom:615.420000px;}
.y89{bottom:616.140000px;}
.ybc{bottom:617.940000px;}
.y3a{bottom:621.900000px;}
.y61{bottom:638.460000px;}
.y88{bottom:639.540000px;}
.ybb{bottom:641.340000px;}
.y39{bottom:645.300000px;}
.y60{bottom:660.780000px;}
.y11{bottom:662.220000px;}
.y87{bottom:662.940000px;}
.y9d{bottom:665.460000px;}
.y76{bottom:668.340000px;}
.y38{bottom:668.700000px;}
.y5f{bottom:683.460000px;}
.y86{bottom:686.340000px;}
.yba{bottom:689.220000px;}
.y37{bottom:692.100000px;}
.y5e{bottom:705.810000px;}
.y10{bottom:709.050000px;}
.y85{bottom:709.770000px;}
.yb9{bottom:712.650000px;}
.y36{bottom:715.530000px;}
.y84{bottom:733.170000px;}
.yb8{bottom:736.050000px;}
.y35{bottom:738.930000px;}
.yf{bottom:740.730000px;}
.y5d{bottom:750.810000px;}
.yb7{bottom:753.690000px;}
.y83{bottom:756.570000px;}
.y53{bottom:761.610000px;}
.y34{bottom:762.330000px;}
.ye{bottom:764.130000px;}
.y5c{bottom:773.490000px;}
.yb6{bottom:776.010000px;}
.y82{bottom:779.970000px;}
.y77{bottom:785.010000px;}
.y33{bottom:785.730000px;}
.yd{bottom:787.530000px;}
.y5b{bottom:795.810000px;}
.yb5{bottom:798.690000px;}
.y81{bottom:803.370000px;}
.y32{bottom:809.130000px;}
.yc{bottom:810.930000px;}
.y5a{bottom:818.490000px;}
.yb4{bottom:821.010000px;}
.y31{bottom:832.575000px;}
.y58{bottom:840.855000px;}
.yb3{bottom:843.735000px;}
.y80{bottom:845.535000px;}
.ya{bottom:849.135000px;}
.y30{bottom:855.975000px;}
.yb{bottom:857.415000px;}
.yb2{bottom:866.055000px;}
.yd4{bottom:878.655000px;}
.y2f{bottom:879.375000px;}
.y56{bottom:885.855000px;}
.yb1{bottom:888.735000px;}
.y7f{bottom:890.535000px;}
.y2e{bottom:902.775000px;}
.y9{bottom:905.655000px;}
.y54{bottom:909.255000px;}
.yb0{bottom:911.055000px;}
.y2d{bottom:926.175000px;}
.yaf{bottom:933.735000px;}
.y7d{bottom:935.535000px;}
.y8{bottom:942.735000px;}
.y2c{bottom:949.575000px;}
.yae{bottom:956.805000px;}
.yd3{bottom:972.285000px;}
.y2b{bottom:973.005000px;}
.y7c{bottom:980.565000px;}
.y7{bottom:994.245000px;}
.y2a{bottom:996.405000px;}
.y52{bottom:1019.805000px;}
.y6{bottom:1020.165000px;}
.y7b{bottom:1026.285000px;}
.y29{bottom:1042.485000px;}
.y51{bottom:1043.205000px;}
.y5{bottom:1043.565000px;}
.yd1{bottom:1065.885000px;}
.y79{bottom:1066.245000px;}
.y50{bottom:1066.605000px;}
.y4{bottom:1066.965000px;}
.y28{bottom:1090.050000px;}
.y3{bottom:1090.410000px;}
.y27{bottom:1113.450000px;}
.y2{bottom:1113.810000px;}
.y26{bottom:1136.850000px;}
.y1{bottom:1137.210000px;}
.y24{bottom:1185.450000px;}
.he{height:22.320000px;}
.h11{height:22.356000px;}
.hf{height:22.680000px;}
.h17{height:22.716000px;}
.h10{height:45.000000px;}
.h14{height:45.036000px;}
.h7{height:47.891250px;}
.hd{height:49.992188px;}
.ha{height:59.357813px;}
.hb{height:60.952500px;}
.h3{height:62.184375px;}
.h2{height:65.010937px;}
.h4{height:70.628906px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h18{height:74.004654px;}
.hc{height:74.953125px;}
.h13{height:79.758281px;}
.h12{height:79.878281px;}
.h6{height:81.011250px;}
.h5{height:97.233750px;}
.h15{height:112.356000px;}
.h16{height:112.716000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:99.756000px;}
.wd{width:101.556000px;}
.wb{width:106.236000px;}
.w14{width:108.072000px;}
.w10{width:120.276000px;}
.we{width:120.312000px;}
.wf{width:120.636000px;}
.w7{width:122.796000px;}
.wa{width:123.192000px;}
.w8{width:127.512000px;}
.w9{width:127.836000px;}
.w6{width:146.232000px;}
.w12{width:148.752000px;}
.wc{width:153.435000px;}
.w13{width:184.755000px;}
.w4{width:230.145000px;}
.w2{width:252.465000px;}
.w3{width:264.705000px;}
.w11{width:305.745000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:7.920000px;}
.x8{left:73.116000px;}
.x2{left:81.036000px;}
.x14{left:85.356000px;}
.x4{left:99.036000px;}
.x1d{left:115.236000px;}
.x6{left:117.036000px;}
.x7{left:123.516000px;}
.xe{left:172.875000px;}
.x15{left:191.595000px;}
.xf{left:319.110000px;}
.xa{left:325.590000px;}
.x1e{left:336.390000px;}
.x16{left:345.030000px;}
.x1b{left:378.870000px;}
.x10{left:441.900000px;}
.x17{left:446.580000px;}
.x3{left:460.980000px;}
.x1{left:506.370000px;}
.x1c{left:527.610000px;}
.x18{left:566.895000px;}
.x11{left:569.415000px;}
.xb{left:590.295000px;}
.x19{left:687.525000px;}
.x12{left:697.245000px;}
.x1a{left:707.685000px;}
.x13{left:713.085000px;}
.xd{left:715.605000px;}
.xc{left:735.810000px;}
.x5{left:789.810000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.680000pt;}
.v1{vertical-align:29.440000pt;}
.ls8{letter-spacing:-2.432000pt;}
.ls20{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.222933pt;}
.ls1b{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.071680pt;}
.lse{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.406933pt;}
.lsd{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.874667pt;}
.ls6{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls4{letter-spacing:1.408000pt;}
.lsf{letter-spacing:1.728000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:23.168000pt;}
.ls1{letter-spacing:24.448000pt;}
.ls5{letter-spacing:51.328000pt;}
.ls1d{letter-spacing:55.168000pt;}
.ls1e{letter-spacing:57.728000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws9{word-spacing:-16.576000pt;}
.wsd{word-spacing:-16.448000pt;}
.wse{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.594667pt;}
.ws1{word-spacing:-15.552000pt;}
.ws10{word-spacing:-15.424000pt;}
.ws14{word-spacing:-15.264000pt;}
.ws13{word-spacing:-15.126933pt;}
.wsc{word-spacing:-14.848000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.584533pt;}
.ws12{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.568000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws11{word-spacing:-12.480000pt;}
.ws2{word-spacing:-11.200000pt;}
.ws3{word-spacing:-10.560000pt;}
.wsf{word-spacing:-10.337067pt;}
.ws15{word-spacing:-9.920000pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-32.690347pt;}
._26{margin-left:-22.164480pt;}
._21{margin-left:-21.229227pt;}
._22{margin-left:-19.973120pt;}
._23{margin-left:-17.352960pt;}
._24{margin-left:-16.386560pt;}
._16{margin-left:-13.141760pt;}
._15{margin-left:-12.223147pt;}
._1f{margin-left:-11.304960pt;}
._12{margin-left:-4.545707pt;}
._4{margin-left:-3.514880pt;}
._2{margin-left:-2.531840pt;}
._0{margin-left:-1.530880pt;}
._1{width:1.295360pt;}
._3{width:2.296320pt;}
._5{width:3.297280pt;}
._6{width:4.475733pt;}
._d{width:6.049280pt;}
._7{width:7.014400pt;}
._8{width:8.744960pt;}
._9{width:10.193067pt;}
._e{width:11.135573pt;}
._11{width:12.789333pt;}
._a{width:14.487040pt;}
._1a{width:17.029120pt;}
._19{width:18.042880pt;}
._13{width:19.770880pt;}
._14{width:21.316693pt;}
._17{width:22.886400pt;}
._27{width:23.795200pt;}
._b{width:24.806400pt;}
._c{width:26.496000pt;}
._18{width:27.752960pt;}
._1e{width:29.040640pt;}
._1b{width:30.080000pt;}
._1c{width:31.104000pt;}
._1d{width:32.107520pt;}
._f{width:492.823040pt;}
._20{width:752.245333pt;}
._10{width:863.626667pt;}
.fs4{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.520000pt;}
.y57{bottom:3.840000pt;}
.y59{bottom:23.680000pt;}
.y7e{bottom:23.706667pt;}
.y25{bottom:69.440000pt;}
.ya0{bottom:83.546667pt;}
.ya6{bottom:83.880000pt;}
.y9c{bottom:110.752000pt;}
.yaa{bottom:112.672000pt;}
.y75{bottom:113.952000pt;}
.y4f{bottom:115.872000pt;}
.y9b{bottom:131.552000pt;}
.yd0{bottom:133.152000pt;}
.y74{bottom:134.746667pt;}
.y4e{bottom:136.666667pt;}
.ya5{bottom:150.426667pt;}
.y9a{bottom:152.346667pt;}
.ycf{bottom:153.946667pt;}
.y73{bottom:155.546667pt;}
.y4d{bottom:157.466667pt;}
.y23{bottom:170.586667pt;}
.y99{bottom:173.146667pt;}
.yce{bottom:174.746667pt;}
.y72{bottom:176.346667pt;}
.y4c{bottom:178.266667pt;}
.ya9{bottom:190.466667pt;}
.y22{bottom:193.346667pt;}
.y98{bottom:193.986667pt;}
.ycd{bottom:195.586667pt;}
.y71{bottom:197.186667pt;}
.yad{bottom:198.146667pt;}
.y4b{bottom:199.106667pt;}
.ya8{bottom:210.626667pt;}
.y97{bottom:214.786667pt;}
.ycc{bottom:216.386667pt;}
.y70{bottom:217.986667pt;}
.y4a{bottom:219.906667pt;}
.ya7{bottom:230.466667pt;}
.y21{bottom:234.946667pt;}
.y96{bottom:235.586667pt;}
.ycb{bottom:237.186667pt;}
.y6f{bottom:238.786667pt;}
.y49{bottom:240.706667pt;}
.y9f{bottom:250.626667pt;}
.y20{bottom:255.746667pt;}
.y95{bottom:256.386667pt;}
.yca{bottom:257.986667pt;}
.y6e{bottom:259.586667pt;}
.y48{bottom:261.506667pt;}
.ya4{bottom:270.466667pt;}
.y1f{bottom:276.546667pt;}
.y94{bottom:277.186667pt;}
.yc9{bottom:278.786667pt;}
.y6d{bottom:280.386667pt;}
.yd2{bottom:281.666667pt;}
.y47{bottom:282.306667pt;}
.ya3{bottom:290.626667pt;}
.y1e{bottom:297.373333pt;}
.y93{bottom:298.013333pt;}
.yc8{bottom:299.613333pt;}
.y6c{bottom:301.213333pt;}
.y46{bottom:303.133333pt;}
.ya2{bottom:310.493333pt;}
.y1d{bottom:318.173333pt;}
.y92{bottom:318.813333pt;}
.yc7{bottom:320.413333pt;}
.y6b{bottom:322.013333pt;}
.yac{bottom:323.613333pt;}
.y45{bottom:323.933333pt;}
.ya1{bottom:330.653333pt;}
.y1c{bottom:338.973333pt;}
.y91{bottom:339.613333pt;}
.yc6{bottom:341.213333pt;}
.y6a{bottom:342.813333pt;}
.y44{bottom:344.733333pt;}
.y9e{bottom:351.133333pt;}
.y1b{bottom:359.773333pt;}
.yc5{bottom:362.013333pt;}
.y69{bottom:363.613333pt;}
.y43{bottom:365.533333pt;}
.y1a{bottom:380.573333pt;}
.y90{bottom:380.893333pt;}
.yc4{bottom:382.813333pt;}
.y68{bottom:384.413333pt;}
.y42{bottom:386.333333pt;}
.y19{bottom:401.373333pt;}
.yc3{bottom:403.613333pt;}
.y67{bottom:405.213333pt;}
.y41{bottom:407.173333pt;}
.y18{bottom:422.213333pt;}
.y8f{bottom:422.853333pt;}
.yc2{bottom:424.453333pt;}
.y66{bottom:426.053333pt;}
.y40{bottom:427.973333pt;}
.y17{bottom:443.013333pt;}
.y8e{bottom:443.653333pt;}
.y7a{bottom:444.613333pt;}
.yc1{bottom:445.253333pt;}
.y65{bottom:446.853333pt;}
.y3f{bottom:448.773333pt;}
.y16{bottom:463.813333pt;}
.y8d{bottom:464.453333pt;}
.yc0{bottom:466.053333pt;}
.y64{bottom:467.653333pt;}
.y3e{bottom:469.573333pt;}
.y15{bottom:484.613333pt;}
.y8c{bottom:485.253333pt;}
.ybf{bottom:486.853333pt;}
.y63{bottom:488.453333pt;}
.y3d{bottom:490.373333pt;}
.y78{bottom:495.493333pt;}
.y14{bottom:505.413333pt;}
.y8b{bottom:506.053333pt;}
.ybe{bottom:507.653333pt;}
.y3c{bottom:511.173333pt;}
.yab{bottom:511.813333pt;}
.y13{bottom:526.240000pt;}
.y8a{bottom:526.880000pt;}
.ybd{bottom:528.480000pt;}
.y62{bottom:529.760000pt;}
.y3b{bottom:532.000000pt;}
.y12{bottom:547.040000pt;}
.y89{bottom:547.680000pt;}
.ybc{bottom:549.280000pt;}
.y3a{bottom:552.800000pt;}
.y61{bottom:567.520000pt;}
.y88{bottom:568.480000pt;}
.ybb{bottom:570.080000pt;}
.y39{bottom:573.600000pt;}
.y60{bottom:587.360000pt;}
.y11{bottom:588.640000pt;}
.y87{bottom:589.280000pt;}
.y9d{bottom:591.520000pt;}
.y76{bottom:594.080000pt;}
.y38{bottom:594.400000pt;}
.y5f{bottom:607.520000pt;}
.y86{bottom:610.080000pt;}
.yba{bottom:612.640000pt;}
.y37{bottom:615.200000pt;}
.y5e{bottom:627.386667pt;}
.y10{bottom:630.266667pt;}
.y85{bottom:630.906667pt;}
.yb9{bottom:633.466667pt;}
.y36{bottom:636.026667pt;}
.y84{bottom:651.706667pt;}
.yb8{bottom:654.266667pt;}
.y35{bottom:656.826667pt;}
.yf{bottom:658.426667pt;}
.y5d{bottom:667.386667pt;}
.yb7{bottom:669.946667pt;}
.y83{bottom:672.506667pt;}
.y53{bottom:676.986667pt;}
.y34{bottom:677.626667pt;}
.ye{bottom:679.226667pt;}
.y5c{bottom:687.546667pt;}
.yb6{bottom:689.786667pt;}
.y82{bottom:693.306667pt;}
.y77{bottom:697.786667pt;}
.y33{bottom:698.426667pt;}
.yd{bottom:700.026667pt;}
.y5b{bottom:707.386667pt;}
.yb5{bottom:709.946667pt;}
.y81{bottom:714.106667pt;}
.y32{bottom:719.226667pt;}
.yc{bottom:720.826667pt;}
.y5a{bottom:727.546667pt;}
.yb4{bottom:729.786667pt;}
.y31{bottom:740.066667pt;}
.y58{bottom:747.426667pt;}
.yb3{bottom:749.986667pt;}
.y80{bottom:751.586667pt;}
.ya{bottom:754.786667pt;}
.y30{bottom:760.866667pt;}
.yb{bottom:762.146667pt;}
.yb2{bottom:769.826667pt;}
.yd4{bottom:781.026667pt;}
.y2f{bottom:781.666667pt;}
.y56{bottom:787.426667pt;}
.yb1{bottom:789.986667pt;}
.y7f{bottom:791.586667pt;}
.y2e{bottom:802.466667pt;}
.y9{bottom:805.026667pt;}
.y54{bottom:808.226667pt;}
.yb0{bottom:809.826667pt;}
.y2d{bottom:823.266667pt;}
.yaf{bottom:829.986667pt;}
.y7d{bottom:831.586667pt;}
.y8{bottom:837.986667pt;}
.y2c{bottom:844.066667pt;}
.yae{bottom:850.493333pt;}
.yd3{bottom:864.253333pt;}
.y2b{bottom:864.893333pt;}
.y7c{bottom:871.613333pt;}
.y7{bottom:883.773333pt;}
.y2a{bottom:885.693333pt;}
.y52{bottom:906.493333pt;}
.y6{bottom:906.813333pt;}
.y7b{bottom:912.253333pt;}
.y29{bottom:926.653333pt;}
.y51{bottom:927.293333pt;}
.y5{bottom:927.613333pt;}
.yd1{bottom:947.453333pt;}
.y79{bottom:947.773333pt;}
.y50{bottom:948.093333pt;}
.y4{bottom:948.413333pt;}
.y28{bottom:968.933333pt;}
.y3{bottom:969.253333pt;}
.y27{bottom:989.733333pt;}
.y2{bottom:990.053333pt;}
.y26{bottom:1010.533333pt;}
.y1{bottom:1010.853333pt;}
.y24{bottom:1053.733333pt;}
.he{height:19.840000pt;}
.h11{height:19.872000pt;}
.hf{height:20.160000pt;}
.h17{height:20.192000pt;}
.h10{height:40.000000pt;}
.h14{height:40.032000pt;}
.h7{height:42.570000pt;}
.hd{height:44.437500pt;}
.ha{height:52.762500pt;}
.hb{height:54.180000pt;}
.h3{height:55.275000pt;}
.h2{height:57.787500pt;}
.h4{height:62.781250pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h18{height:65.781915pt;}
.hc{height:66.625000pt;}
.h13{height:70.896250pt;}
.h12{height:71.002917pt;}
.h6{height:72.010000pt;}
.h5{height:86.430000pt;}
.h15{height:99.872000pt;}
.h16{height:100.192000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:88.672000pt;}
.wd{width:90.272000pt;}
.wb{width:94.432000pt;}
.w14{width:96.064000pt;}
.w10{width:106.912000pt;}
.we{width:106.944000pt;}
.wf{width:107.232000pt;}
.w7{width:109.152000pt;}
.wa{width:109.504000pt;}
.w8{width:113.344000pt;}
.w9{width:113.632000pt;}
.w6{width:129.984000pt;}
.w12{width:132.224000pt;}
.wc{width:136.386667pt;}
.w13{width:164.226667pt;}
.w4{width:204.573333pt;}
.w2{width:224.413333pt;}
.w3{width:235.293333pt;}
.w11{width:271.773333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.040000pt;}
.x8{left:64.992000pt;}
.x2{left:72.032000pt;}
.x14{left:75.872000pt;}
.x4{left:88.032000pt;}
.x1d{left:102.432000pt;}
.x6{left:104.032000pt;}
.x7{left:109.792000pt;}
.xe{left:153.666667pt;}
.x15{left:170.306667pt;}
.xf{left:283.653333pt;}
.xa{left:289.413333pt;}
.x1e{left:299.013333pt;}
.x16{left:306.693333pt;}
.x1b{left:336.773333pt;}
.x10{left:392.800000pt;}
.x17{left:396.960000pt;}
.x3{left:409.760000pt;}
.x1{left:450.106667pt;}
.x1c{left:468.986667pt;}
.x18{left:503.906667pt;}
.x11{left:506.146667pt;}
.xb{left:524.706667pt;}
.x19{left:611.133333pt;}
.x12{left:619.773333pt;}
.x1a{left:629.053333pt;}
.x13{left:633.853333pt;}
.xd{left:636.093333pt;}
.xc{left:654.053333pt;}
.x5{left:702.053333pt;}
}




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