
    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_ca45fdd871441a5912314cf8.woff')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_aac1b4cafe01e908f54e5a32.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c444f85b84da2cffca312df0.woff')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_e06ad90d6ff0f25addcbcaeb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a862fcd9d8a9bcdd2018b378.woff')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_2fb20e5a162345490ef21916.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_ad3b17c633d2fceb60f7a349.woff')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_196eac433c6fde57efd50f97.woff')format("woff");}.ff8{font-family:ff8;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-85.680000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.341400px;}
.ls5{letter-spacing:1.260000px;}
.ls1{letter-spacing:20.160000px;}
.ls3{letter-spacing:28.080000px;}
.ls8{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.ls7{letter-spacing:1167.456000px;}
.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;}
}
.ws3{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-2.016000px;}
._0{margin-left:-1.010880px;}
._1{width:1.130880px;}
._6{width:2.304000px;}
._7{width:3.360000px;}
._8{width:5.229120px;}
._d{width:6.728640px;}
._4{width:8.712000px;}
._5{width:9.957120px;}
._18{width:10.973520px;}
._9{width:12.024000px;}
._a{width:13.557120px;}
._c{width:15.026880px;}
._b{width:16.128000px;}
._19{width:17.249280px;}
._3{width:19.262880px;}
._2{width:20.352000px;}
._11{width:22.032000px;}
._e{width:23.040000px;}
._f{width:24.213120px;}
._10{width:25.272000px;}
._17{width:26.282880px;}
._12{width:27.432000px;}
._13{width:28.965120px;}
._16{width:30.816000px;}
._15{width:32.400000px;}
._14{width:33.984000px;}
._1f{width:36.504000px;}
._1a{width:38.076480px;}
._1b{width:39.135840px;}
._1d{width:41.614560px;}
._1c{width:42.962400px;}
._21{width:45.504000px;}
._22{width:46.944000px;}
._1e{width:67.376640px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y7a{bottom:79.776000px;}
.y2e{bottom:85.896000px;}
.y57{bottom:89.676000px;}
.y8a{bottom:96.696000px;}
.y79{bottom:107.496000px;}
.y2d{bottom:109.656000px;}
.y56{bottom:117.396000px;}
.y2c{bottom:133.596000px;}
.y78{bottom:135.216000px;}
.y89{bottom:138.096000px;}
.y55{bottom:145.296000px;}
.y2b{bottom:157.350000px;}
.y88{bottom:158.790000px;}
.y77{bottom:163.110000px;}
.y54{bottom:173.010000px;}
.y87{bottom:179.490000px;}
.y2a{bottom:181.110000px;}
.y76{bottom:190.830000px;}
.y53{bottom:198.930000px;}
.y86{bottom:200.010000px;}
.y29{bottom:204.870000px;}
.y75{bottom:218.550000px;}
.y85{bottom:220.710000px;}
.y52{bottom:221.430000px;}
.y28{bottom:228.810000px;}
.y84{bottom:241.410000px;}
.y51{bottom:245.370000px;}
.y74{bottom:246.450000px;}
.y27{bottom:252.570000px;}
.y83{bottom:262.110000px;}
.y50{bottom:269.130000px;}
.y73{bottom:274.170000px;}
.y26{bottom:276.330000px;}
.y82{bottom:282.855000px;}
.y4f{bottom:292.935000px;}
.y25{bottom:300.135000px;}
.y72{bottom:301.935000px;}
.y81{bottom:303.555000px;}
.y4e{bottom:316.695000px;}
.y24{bottom:324.075000px;}
.y80{bottom:324.255000px;}
.y71{bottom:329.655000px;}
.y4d{bottom:340.635000px;}
.y7f{bottom:344.955000px;}
.y23{bottom:347.835000px;}
.y70{bottom:357.555000px;}
.y4c{bottom:364.395000px;}
.y7e{bottom:365.655000px;}
.y22{bottom:371.595000px;}
.y6f{bottom:385.275000px;}
.y7d{bottom:386.355000px;}
.y4b{bottom:388.155000px;}
.y21{bottom:395.355000px;}
.y7c{bottom:407.055000px;}
.y4a{bottom:411.915000px;}
.y6e{bottom:412.995000px;}
.y20{bottom:419.115000px;}
.y49{bottom:435.675000px;}
.y6d{bottom:440.895000px;}
.y1f{bottom:443.055000px;}
.y7b{bottom:449.175000px;}
.y48{bottom:459.615000px;}
.y1e{bottom:466.815000px;}
.y6c{bottom:468.615000px;}
.y47{bottom:483.375000px;}
.y1d{bottom:490.575000px;}
.y6b{bottom:496.335000px;}
.y46{bottom:507.135000px;}
.y1c{bottom:514.335000px;}
.y6a{bottom:524.055000px;}
.y45{bottom:530.895000px;}
.y1b{bottom:538.275000px;}
.y69{bottom:551.955000px;}
.y44{bottom:554.835000px;}
.y1a{bottom:562.035000px;}
.y43{bottom:578.625000px;}
.y68{bottom:579.705000px;}
.y19{bottom:585.825000px;}
.y42{bottom:602.385000px;}
.y67{bottom:607.425000px;}
.y18{bottom:609.585000px;}
.y41{bottom:626.145000px;}
.y17{bottom:633.525000px;}
.y66{bottom:635.145000px;}
.y40{bottom:650.085000px;}
.y16{bottom:657.285000px;}
.y65{bottom:663.045000px;}
.y3f{bottom:673.845000px;}
.y15{bottom:681.045000px;}
.y64{bottom:690.765000px;}
.y3e{bottom:697.605000px;}
.y14{bottom:704.805000px;}
.y63{bottom:718.485000px;}
.y3d{bottom:721.365000px;}
.y13{bottom:728.745000px;}
.y3c{bottom:745.305000px;}
.y62{bottom:746.385000px;}
.y12{bottom:752.505000px;}
.y3b{bottom:769.065000px;}
.y61{bottom:774.105000px;}
.y11{bottom:776.265000px;}
.y3a{bottom:792.825000px;}
.y10{bottom:800.025000px;}
.y60{bottom:801.825000px;}
.y39{bottom:816.585000px;}
.yf{bottom:823.965000px;}
.y5f{bottom:829.545000px;}
.y38{bottom:840.525000px;}
.ye{bottom:847.770000px;}
.y5e{bottom:857.490000px;}
.y37{bottom:864.330000px;}
.yd{bottom:868.470000px;}
.y5d{bottom:885.210000px;}
.y36{bottom:888.090000px;}
.yc{bottom:909.870000px;}
.y35{bottom:911.850000px;}
.y5c{bottom:912.930000px;}
.yb{bottom:930.570000px;}
.y34{bottom:935.610000px;}
.y5b{bottom:940.830000px;}
.ya{bottom:951.270000px;}
.y33{bottom:959.550000px;}
.y5a{bottom:968.550000px;}
.y9{bottom:971.970000px;}
.y32{bottom:983.310000px;}
.y8{bottom:992.670000px;}
.y59{bottom:996.270000px;}
.y31{bottom:1007.070000px;}
.y7{bottom:1013.370000px;}
.y58{bottom:1023.990000px;}
.y30{bottom:1030.830000px;}
.y6{bottom:1033.350000px;}
.y5{bottom:1051.890000px;}
.y2f{bottom:1054.770000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hb{height:47.344922px;}
.h5{height:60.226875px;}
.h8{height:61.171875px;}
.h9{height:66.757500px;}
.ha{height:70.295977px;}
.h7{height:70.628906px;}
.hd{height:70.664062px;}
.h6{height:72.562500px;}
.hc{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xd{left:90.035987px;}
.xe{left:117.035987px;}
.xb{left:138.095987px;}
.x4{left:242.489987px;}
.xc{left:276.329987px;}
.x7{left:307.154987px;}
.xa{left:321.014987px;}
.x8{left:361.694987px;}
.x9{left:377.354987px;}
.x6{left:384.734987px;}
.x2{left:409.035000px;}
.x5{left:446.474987px;}
@media print{
.v2{vertical-align:-76.160000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.303467pt;}
.ls5{letter-spacing:1.120000pt;}
.ls1{letter-spacing:17.920000pt;}
.ls3{letter-spacing:24.960000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls7{letter-spacing:1037.738667pt;}
.ws3{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-1.792000pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.005227pt;}
._6{width:2.048000pt;}
._7{width:2.986667pt;}
._8{width:4.648107pt;}
._d{width:5.981013pt;}
._4{width:7.744000pt;}
._5{width:8.850773pt;}
._18{width:9.754240pt;}
._9{width:10.688000pt;}
._a{width:12.050773pt;}
._c{width:13.357227pt;}
._b{width:14.336000pt;}
._19{width:15.332693pt;}
._3{width:17.122560pt;}
._2{width:18.090667pt;}
._11{width:19.584000pt;}
._e{width:20.480000pt;}
._f{width:21.522773pt;}
._10{width:22.464000pt;}
._17{width:23.362560pt;}
._12{width:24.384000pt;}
._13{width:25.746773pt;}
._16{width:27.392000pt;}
._15{width:28.800000pt;}
._14{width:30.208000pt;}
._1f{width:32.448000pt;}
._1a{width:33.845760pt;}
._1b{width:34.787413pt;}
._1d{width:36.990720pt;}
._1c{width:38.188800pt;}
._21{width:40.448000pt;}
._22{width:41.728000pt;}
._1e{width:59.890347pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y7a{bottom:70.912000pt;}
.y2e{bottom:76.352000pt;}
.y57{bottom:79.712000pt;}
.y8a{bottom:85.952000pt;}
.y79{bottom:95.552000pt;}
.y2d{bottom:97.472000pt;}
.y56{bottom:104.352000pt;}
.y2c{bottom:118.752000pt;}
.y78{bottom:120.192000pt;}
.y89{bottom:122.752000pt;}
.y55{bottom:129.152000pt;}
.y2b{bottom:139.866667pt;}
.y88{bottom:141.146667pt;}
.y77{bottom:144.986667pt;}
.y54{bottom:153.786667pt;}
.y87{bottom:159.546667pt;}
.y2a{bottom:160.986667pt;}
.y76{bottom:169.626667pt;}
.y53{bottom:176.826667pt;}
.y86{bottom:177.786667pt;}
.y29{bottom:182.106667pt;}
.y75{bottom:194.266667pt;}
.y85{bottom:196.186667pt;}
.y52{bottom:196.826667pt;}
.y28{bottom:203.386667pt;}
.y84{bottom:214.586667pt;}
.y51{bottom:218.106667pt;}
.y74{bottom:219.066667pt;}
.y27{bottom:224.506667pt;}
.y83{bottom:232.986667pt;}
.y50{bottom:239.226667pt;}
.y73{bottom:243.706667pt;}
.y26{bottom:245.626667pt;}
.y82{bottom:251.426667pt;}
.y4f{bottom:260.386667pt;}
.y25{bottom:266.786667pt;}
.y72{bottom:268.386667pt;}
.y81{bottom:269.826667pt;}
.y4e{bottom:281.506667pt;}
.y24{bottom:288.066667pt;}
.y80{bottom:288.226667pt;}
.y71{bottom:293.026667pt;}
.y4d{bottom:302.786667pt;}
.y7f{bottom:306.626667pt;}
.y23{bottom:309.186667pt;}
.y70{bottom:317.826667pt;}
.y4c{bottom:323.906667pt;}
.y7e{bottom:325.026667pt;}
.y22{bottom:330.306667pt;}
.y6f{bottom:342.466667pt;}
.y7d{bottom:343.426667pt;}
.y4b{bottom:345.026667pt;}
.y21{bottom:351.426667pt;}
.y7c{bottom:361.826667pt;}
.y4a{bottom:366.146667pt;}
.y6e{bottom:367.106667pt;}
.y20{bottom:372.546667pt;}
.y49{bottom:387.266667pt;}
.y6d{bottom:391.906667pt;}
.y1f{bottom:393.826667pt;}
.y7b{bottom:399.266667pt;}
.y48{bottom:408.546667pt;}
.y1e{bottom:414.946667pt;}
.y6c{bottom:416.546667pt;}
.y47{bottom:429.666667pt;}
.y1d{bottom:436.066667pt;}
.y6b{bottom:441.186667pt;}
.y46{bottom:450.786667pt;}
.y1c{bottom:457.186667pt;}
.y6a{bottom:465.826667pt;}
.y45{bottom:471.906667pt;}
.y1b{bottom:478.466667pt;}
.y69{bottom:490.626667pt;}
.y44{bottom:493.186667pt;}
.y1a{bottom:499.586667pt;}
.y43{bottom:514.333333pt;}
.y68{bottom:515.293333pt;}
.y19{bottom:520.733333pt;}
.y42{bottom:535.453333pt;}
.y67{bottom:539.933333pt;}
.y18{bottom:541.853333pt;}
.y41{bottom:556.573333pt;}
.y17{bottom:563.133333pt;}
.y66{bottom:564.573333pt;}
.y40{bottom:577.853333pt;}
.y16{bottom:584.253333pt;}
.y65{bottom:589.373333pt;}
.y3f{bottom:598.973333pt;}
.y15{bottom:605.373333pt;}
.y64{bottom:614.013333pt;}
.y3e{bottom:620.093333pt;}
.y14{bottom:626.493333pt;}
.y63{bottom:638.653333pt;}
.y3d{bottom:641.213333pt;}
.y13{bottom:647.773333pt;}
.y3c{bottom:662.493333pt;}
.y62{bottom:663.453333pt;}
.y12{bottom:668.893333pt;}
.y3b{bottom:683.613333pt;}
.y61{bottom:688.093333pt;}
.y11{bottom:690.013333pt;}
.y3a{bottom:704.733333pt;}
.y10{bottom:711.133333pt;}
.y60{bottom:712.733333pt;}
.y39{bottom:725.853333pt;}
.yf{bottom:732.413333pt;}
.y5f{bottom:737.373333pt;}
.y38{bottom:747.133333pt;}
.ye{bottom:753.573333pt;}
.y5e{bottom:762.213333pt;}
.y37{bottom:768.293333pt;}
.yd{bottom:771.973333pt;}
.y5d{bottom:786.853333pt;}
.y36{bottom:789.413333pt;}
.yc{bottom:808.773333pt;}
.y35{bottom:810.533333pt;}
.y5c{bottom:811.493333pt;}
.yb{bottom:827.173333pt;}
.y34{bottom:831.653333pt;}
.y5b{bottom:836.293333pt;}
.ya{bottom:845.573333pt;}
.y33{bottom:852.933333pt;}
.y5a{bottom:860.933333pt;}
.y9{bottom:863.973333pt;}
.y32{bottom:874.053333pt;}
.y8{bottom:882.373333pt;}
.y59{bottom:885.573333pt;}
.y31{bottom:895.173333pt;}
.y7{bottom:900.773333pt;}
.y58{bottom:910.213333pt;}
.y30{bottom:916.293333pt;}
.y6{bottom:918.533333pt;}
.y5{bottom:935.013333pt;}
.y2f{bottom:937.573333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hb{height:42.084375pt;}
.h5{height:53.535000pt;}
.h8{height:54.375000pt;}
.h9{height:59.340000pt;}
.ha{height:62.485312pt;}
.h7{height:62.781250pt;}
.hd{height:62.812500pt;}
.h6{height:64.500000pt;}
.hc{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xd{left:80.031988pt;}
.xe{left:104.031988pt;}
.xb{left:122.751988pt;}
.x4{left:215.546655pt;}
.xc{left:245.626655pt;}
.x7{left:273.026655pt;}
.xa{left:285.346655pt;}
.x8{left:321.506655pt;}
.x9{left:335.426655pt;}
.x6{left:341.986655pt;}
.x2{left:363.586667pt;}
.x5{left:396.866655pt;}
}




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