
    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_c4b936cbe708852ca38c797e.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_9779f7d8c2b0ad75a8437aae.woff2')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_e13cabace11c1a6315747de4.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_a60b36bad06520f08d6c0db3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-108.720000px;}
.v1{vertical-align:-100.800000px;}
.v4{vertical-align:-91.440000px;}
.v5{vertical-align:-88.560000px;}
.v8{vertical-align:-84.240000px;}
.v3{vertical-align:-79.380000px;}
.v6{vertical-align:-74.160000px;}
.v7{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.219000px;}
.ls10{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.432000px;}
.lse{letter-spacing:0.720000px;}
.lsf{letter-spacing:12.240000px;}
.ls4{letter-spacing:74.856000px;}
.ls1{letter-spacing:95.736000px;}
.ls0{letter-spacing:131.736000px;}
.lsa{letter-spacing:151.896000px;}
.ls2{letter-spacing:774.156000px;}
.ls9{letter-spacing:1116.156000px;}
.ls5{letter-spacing:1782.276000px;}
.ls6{letter-spacing:1860.756000px;}
.ls8{letter-spacing:1901.796000px;}
.ls7{letter-spacing:2046.516000px;}
.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:-18.720000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-2.304000px;}
._0{margin-left:-1.010880px;}
._1{width:1.094880px;}
._a{width:2.649120px;}
._8{width:4.392000px;}
._5{width:5.688000px;}
._2{width:6.696000px;}
._3{width:8.193120px;}
._e{width:9.821760px;}
._9{width:11.738880px;}
._6{width:13.032000px;}
._7{width:14.085120px;}
._b{width:15.264000px;}
._4{width:16.920000px;}
._1b{width:19.005120px;}
._10{width:20.016000px;}
._12{width:21.960000px;}
._13{width:23.241120px;}
._17{width:24.242400px;}
._c{width:25.272000px;}
._d{width:26.640000px;}
._f{width:27.650880px;}
._18{width:28.935360px;}
._14{width:30.816000px;}
._15{width:32.328000px;}
._16{width:34.272000px;}
._1d{width:37.797120px;}
._1c{width:39.242880px;}
._19{width:42.480000px;}
._1a{width:44.265120px;}
._1f{width:56.082240px;}
._1e{width:57.386880px;}
._20{width:58.466880px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:117.180000px;}
.y38{bottom:125.100000px;}
.y59{bottom:138.456000px;}
.y7b{bottom:140.436000px;}
.y37{bottom:145.656000px;}
.y8b{bottom:148.176000px;}
.y9e{bottom:158.250000px;}
.y36{bottom:160.590000px;}
.y58{bottom:169.590000px;}
.y7a{bottom:171.570000px;}
.y35{bottom:175.530000px;}
.y8a{bottom:179.310000px;}
.y9d{bottom:189.210000px;}
.y34{bottom:190.650000px;}
.y57{bottom:200.910000px;}
.y79{bottom:202.530000px;}
.y33{bottom:205.590000px;}
.y89{bottom:210.270000px;}
.y32{bottom:220.530000px;}
.y9c{bottom:220.710000px;}
.y56{bottom:232.050000px;}
.y78{bottom:233.490000px;}
.y31{bottom:237.090000px;}
.y88{bottom:241.410000px;}
.y9b{bottom:251.670000px;}
.y30{bottom:257.790000px;}
.y55{bottom:263.010000px;}
.y77{bottom:264.630000px;}
.y87{bottom:272.370000px;}
.y2f{bottom:279.930000px;}
.y9a{bottom:282.810000px;}
.y54{bottom:294.150000px;}
.y76{bottom:295.590000px;}
.y86{bottom:303.510000px;}
.y2e{bottom:306.390000px;}
.y99{bottom:313.770000px;}
.y53{bottom:325.110000px;}
.y75{bottom:326.730000px;}
.y2d{bottom:333.030000px;}
.y85{bottom:334.470000px;}
.y98{bottom:344.910000px;}
.y52{bottom:356.250000px;}
.y74{bottom:357.690000px;}
.y2c{bottom:364.170000px;}
.y84{bottom:365.610000px;}
.y97{bottom:375.870000px;}
.y51{bottom:387.210000px;}
.y73{bottom:388.875000px;}
.y2b{bottom:395.175000px;}
.y83{bottom:396.615000px;}
.y96{bottom:407.055000px;}
.y50{bottom:418.395000px;}
.y72{bottom:419.835000px;}
.y2a{bottom:426.315000px;}
.y82{bottom:427.755000px;}
.y95{bottom:438.015000px;}
.y4f{bottom:449.355000px;}
.y71{bottom:450.975000px;}
.y29{bottom:457.275000px;}
.y81{bottom:458.715000px;}
.y94{bottom:469.155000px;}
.y4e{bottom:480.495000px;}
.y70{bottom:481.935000px;}
.y28{bottom:488.415000px;}
.y80{bottom:489.855000px;}
.y93{bottom:500.115000px;}
.y4d{bottom:511.455000px;}
.y6f{bottom:513.075000px;}
.y7f{bottom:520.815000px;}
.y92{bottom:531.255000px;}
.y27{bottom:540.435000px;}
.y4c{bottom:542.595000px;}
.y6e{bottom:544.035000px;}
.ya1{bottom:551.595000px;}
.y7e{bottom:551.955000px;}
.y91{bottom:562.215000px;}
.y6d{bottom:564.375000px;}
.y4b{bottom:573.555000px;}
.y26{bottom:579.675000px;}
.ya0{bottom:582.555000px;}
.y7d{bottom:582.915000px;}
.y6c{bottom:584.535000px;}
.y90{bottom:593.355000px;}
.y4a{bottom:604.695000px;}
.y25{bottom:605.595000px;}
.y6b{bottom:606.855000px;}
.y9f{bottom:613.695000px;}
.y7c{bottom:614.055000px;}
.y8f{bottom:624.315000px;}
.y49{bottom:635.655000px;}
.y6a{bottom:645.045000px;}
.y8e{bottom:655.485000px;}
.y24{bottom:660.705000px;}
.y48{bottom:666.825000px;}
.y69{bottom:676.185000px;}
.y8d{bottom:676.365000px;}
.y23{bottom:692.025000px;}
.y47{bottom:697.785000px;}
.y68{bottom:707.145000px;}
.y22{bottom:722.625000px;}
.y46{bottom:728.925000px;}
.y67{bottom:738.285000px;}
.y21{bottom:757.365000px;}
.y45{bottom:759.885000px;}
.y66{bottom:769.245000px;}
.y20{bottom:782.385000px;}
.y44{bottom:790.845000px;}
.y1f{bottom:797.325000px;}
.y65{bottom:800.385000px;}
.y43{bottom:821.985000px;}
.y1e{bottom:826.305000px;}
.y64{bottom:831.345000px;}
.y42{bottom:852.945000px;}
.y63{bottom:862.485000px;}
.yd{bottom:874.725000px;}
.y41{bottom:884.085000px;}
.y1d{bottom:885.345000px;}
.y62{bottom:893.490000px;}
.y1c{bottom:902.670000px;}
.yc{bottom:911.130000px;}
.y40{bottom:915.090000px;}
.y1b{bottom:917.790000px;}
.y61{bottom:924.630000px;}
.y1a{bottom:932.730000px;}
.y3f{bottom:946.230000px;}
.y19{bottom:947.670000px;}
.y60{bottom:955.590000px;}
.yb{bottom:958.650000px;}
.y18{bottom:963.510000px;}
.y3e{bottom:977.190000px;}
.y17{bottom:981.690000px;}
.y5f{bottom:986.550000px;}
.ya{bottom:997.530000px;}
.y16{bottom:998.250000px;}
.y3d{bottom:1008.330000px;}
.y15{bottom:1017.510000px;}
.y5e{bottom:1017.690000px;}
.y9{bottom:1022.910000px;}
.y14{bottom:1032.450000px;}
.y8{bottom:1038.030000px;}
.y3c{bottom:1039.290000px;}
.y5d{bottom:1048.650000px;}
.y13{bottom:1048.830000px;}
.y7{bottom:1052.970000px;}
.y6{bottom:1067.910000px;}
.y3b{bottom:1070.430000px;}
.y12{bottom:1070.610000px;}
.y5c{bottom:1079.790000px;}
.y5{bottom:1083.030000px;}
.y11{bottom:1091.850000px;}
.y4{bottom:1097.970000px;}
.y3a{bottom:1101.390000px;}
.y10{bottom:1110.390000px;}
.y5b{bottom:1110.750000px;}
.y3{bottom:1112.910000px;}
.y39{bottom:1121.910000px;}
.yf{bottom:1125.510000px;}
.y2{bottom:1128.030000px;}
.ye{bottom:1141.710000px;}
.y5a{bottom:1141.890000px;}
.y1{bottom:1142.970000px;}
.h6{height:64.546875px;}
.h4{height:66.757500px;}
.h7{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h5{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.476000px;}
.x5{left:148.716000px;}
.x3{left:158.970000px;}
.x4{left:169.950000px;}
.x2{left:249.690000px;}
@media print{
.v2{vertical-align:-96.640000pt;}
.v1{vertical-align:-89.600000pt;}
.v4{vertical-align:-81.280000pt;}
.v5{vertical-align:-78.720000pt;}
.v8{vertical-align:-74.880000pt;}
.v3{vertical-align:-70.560000pt;}
.v6{vertical-align:-65.920000pt;}
.v7{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.194667pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.640000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls4{letter-spacing:66.538667pt;}
.ls1{letter-spacing:85.098667pt;}
.ls0{letter-spacing:117.098667pt;}
.lsa{letter-spacing:135.018667pt;}
.ls2{letter-spacing:688.138667pt;}
.ls9{letter-spacing:992.138667pt;}
.ls5{letter-spacing:1584.245333pt;}
.ls6{letter-spacing:1654.005333pt;}
.ls8{letter-spacing:1690.485333pt;}
.ls7{letter-spacing:1819.125333pt;}
.ws2{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-2.048000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.973227pt;}
._a{width:2.354773pt;}
._8{width:3.904000pt;}
._5{width:5.056000pt;}
._2{width:5.952000pt;}
._3{width:7.282773pt;}
._e{width:8.730453pt;}
._9{width:10.434560pt;}
._6{width:11.584000pt;}
._7{width:12.520107pt;}
._b{width:13.568000pt;}
._4{width:15.040000pt;}
._1b{width:16.893440pt;}
._10{width:17.792000pt;}
._12{width:19.520000pt;}
._13{width:20.658773pt;}
._17{width:21.548800pt;}
._c{width:22.464000pt;}
._d{width:23.680000pt;}
._f{width:24.578560pt;}
._18{width:25.720320pt;}
._14{width:27.392000pt;}
._15{width:28.736000pt;}
._16{width:30.464000pt;}
._1d{width:33.597440pt;}
._1c{width:34.882560pt;}
._19{width:37.760000pt;}
._1a{width:39.346773pt;}
._1f{width:49.850880pt;}
._1e{width:51.010560pt;}
._20{width:51.970560pt;}
.fs4{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:104.160000pt;}
.y38{bottom:111.200000pt;}
.y59{bottom:123.072000pt;}
.y7b{bottom:124.832000pt;}
.y37{bottom:129.472000pt;}
.y8b{bottom:131.712000pt;}
.y9e{bottom:140.666667pt;}
.y36{bottom:142.746667pt;}
.y58{bottom:150.746667pt;}
.y7a{bottom:152.506667pt;}
.y35{bottom:156.026667pt;}
.y8a{bottom:159.386667pt;}
.y9d{bottom:168.186667pt;}
.y34{bottom:169.466667pt;}
.y57{bottom:178.586667pt;}
.y79{bottom:180.026667pt;}
.y33{bottom:182.746667pt;}
.y89{bottom:186.906667pt;}
.y32{bottom:196.026667pt;}
.y9c{bottom:196.186667pt;}
.y56{bottom:206.266667pt;}
.y78{bottom:207.546667pt;}
.y31{bottom:210.746667pt;}
.y88{bottom:214.586667pt;}
.y9b{bottom:223.706667pt;}
.y30{bottom:229.146667pt;}
.y55{bottom:233.786667pt;}
.y77{bottom:235.226667pt;}
.y87{bottom:242.106667pt;}
.y2f{bottom:248.826667pt;}
.y9a{bottom:251.386667pt;}
.y54{bottom:261.466667pt;}
.y76{bottom:262.746667pt;}
.y86{bottom:269.786667pt;}
.y2e{bottom:272.346667pt;}
.y99{bottom:278.906667pt;}
.y53{bottom:288.986667pt;}
.y75{bottom:290.426667pt;}
.y2d{bottom:296.026667pt;}
.y85{bottom:297.306667pt;}
.y98{bottom:306.586667pt;}
.y52{bottom:316.666667pt;}
.y74{bottom:317.946667pt;}
.y2c{bottom:323.706667pt;}
.y84{bottom:324.986667pt;}
.y97{bottom:334.106667pt;}
.y51{bottom:344.186667pt;}
.y73{bottom:345.666667pt;}
.y2b{bottom:351.266667pt;}
.y83{bottom:352.546667pt;}
.y96{bottom:361.826667pt;}
.y50{bottom:371.906667pt;}
.y72{bottom:373.186667pt;}
.y2a{bottom:378.946667pt;}
.y82{bottom:380.226667pt;}
.y95{bottom:389.346667pt;}
.y4f{bottom:399.426667pt;}
.y71{bottom:400.866667pt;}
.y29{bottom:406.466667pt;}
.y81{bottom:407.746667pt;}
.y94{bottom:417.026667pt;}
.y4e{bottom:427.106667pt;}
.y70{bottom:428.386667pt;}
.y28{bottom:434.146667pt;}
.y80{bottom:435.426667pt;}
.y93{bottom:444.546667pt;}
.y4d{bottom:454.626667pt;}
.y6f{bottom:456.066667pt;}
.y7f{bottom:462.946667pt;}
.y92{bottom:472.226667pt;}
.y27{bottom:480.386667pt;}
.y4c{bottom:482.306667pt;}
.y6e{bottom:483.586667pt;}
.ya1{bottom:490.306667pt;}
.y7e{bottom:490.626667pt;}
.y91{bottom:499.746667pt;}
.y6d{bottom:501.666667pt;}
.y4b{bottom:509.826667pt;}
.y26{bottom:515.266667pt;}
.ya0{bottom:517.826667pt;}
.y7d{bottom:518.146667pt;}
.y6c{bottom:519.586667pt;}
.y90{bottom:527.426667pt;}
.y4a{bottom:537.506667pt;}
.y25{bottom:538.306667pt;}
.y6b{bottom:539.426667pt;}
.y9f{bottom:545.506667pt;}
.y7c{bottom:545.826667pt;}
.y8f{bottom:554.946667pt;}
.y49{bottom:565.026667pt;}
.y6a{bottom:573.373333pt;}
.y8e{bottom:582.653333pt;}
.y24{bottom:587.293333pt;}
.y48{bottom:592.733333pt;}
.y69{bottom:601.053333pt;}
.y8d{bottom:601.213333pt;}
.y23{bottom:615.133333pt;}
.y47{bottom:620.253333pt;}
.y68{bottom:628.573333pt;}
.y22{bottom:642.333333pt;}
.y46{bottom:647.933333pt;}
.y67{bottom:656.253333pt;}
.y21{bottom:673.213333pt;}
.y45{bottom:675.453333pt;}
.y66{bottom:683.773333pt;}
.y20{bottom:695.453333pt;}
.y44{bottom:702.973333pt;}
.y1f{bottom:708.733333pt;}
.y65{bottom:711.453333pt;}
.y43{bottom:730.653333pt;}
.y1e{bottom:734.493333pt;}
.y64{bottom:738.973333pt;}
.y42{bottom:758.173333pt;}
.y63{bottom:766.653333pt;}
.yd{bottom:777.533333pt;}
.y41{bottom:785.853333pt;}
.y1d{bottom:786.973333pt;}
.y62{bottom:794.213333pt;}
.y1c{bottom:802.373333pt;}
.yc{bottom:809.893333pt;}
.y40{bottom:813.413333pt;}
.y1b{bottom:815.813333pt;}
.y61{bottom:821.893333pt;}
.y1a{bottom:829.093333pt;}
.y3f{bottom:841.093333pt;}
.y19{bottom:842.373333pt;}
.y60{bottom:849.413333pt;}
.yb{bottom:852.133333pt;}
.y18{bottom:856.453333pt;}
.y3e{bottom:868.613333pt;}
.y17{bottom:872.613333pt;}
.y5f{bottom:876.933333pt;}
.ya{bottom:886.693333pt;}
.y16{bottom:887.333333pt;}
.y3d{bottom:896.293333pt;}
.y15{bottom:904.453333pt;}
.y5e{bottom:904.613333pt;}
.y9{bottom:909.253333pt;}
.y14{bottom:917.733333pt;}
.y8{bottom:922.693333pt;}
.y3c{bottom:923.813333pt;}
.y5d{bottom:932.133333pt;}
.y13{bottom:932.293333pt;}
.y7{bottom:935.973333pt;}
.y6{bottom:949.253333pt;}
.y3b{bottom:951.493333pt;}
.y12{bottom:951.653333pt;}
.y5c{bottom:959.813333pt;}
.y5{bottom:962.693333pt;}
.y11{bottom:970.533333pt;}
.y4{bottom:975.973333pt;}
.y3a{bottom:979.013333pt;}
.y10{bottom:987.013333pt;}
.y5b{bottom:987.333333pt;}
.y3{bottom:989.253333pt;}
.y39{bottom:997.253333pt;}
.yf{bottom:1000.453333pt;}
.y2{bottom:1002.693333pt;}
.ye{bottom:1014.853333pt;}
.y5a{bottom:1015.013333pt;}
.y1{bottom:1015.973333pt;}
.h6{height:57.375000pt;}
.h4{height:59.340000pt;}
.h7{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h5{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.312000pt;}
.x5{left:132.192000pt;}
.x3{left:141.306667pt;}
.x4{left:151.066667pt;}
.x2{left:221.946667pt;}
}




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