
    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_14015efec0ef5ef338e41381.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.967773;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_aa26888deae36334cbe785be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_d1b00dc48b04ae43cf0acb3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.746582;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_721ddb246f9481944e4c634d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;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_d1cd91aedef48d21e01cf393.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.042000px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.300000px;}
.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:-20.016000px;}
.ws0{word-spacing:-19.944000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-15.768000px;}
._5{margin-left:-7.668000px;}
._8{margin-left:-6.120000px;}
._2{margin-left:-4.212000px;}
._0{margin-left:-2.376000px;}
._3{margin-left:-1.080000px;}
._1{width:1.080000px;}
._6{width:3.000000px;}
._7{width:4.848000px;}
._9{width:6.840000px;}
._a{width:7.920000px;}
._b{width:9.720000px;}
._d{width:11.520000px;}
._c{width:12.672000px;}
._e{width:16.992000px;}
._f{width:18.072000px;}
.fc3{color:rgb(80,0,80);}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(31,31,31);}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y52{bottom:91.200000px;}
.ya6{bottom:92.550000px;}
.y1e{bottom:99.300000px;}
.y7c{bottom:99.600000px;}
.y51{bottom:110.250000px;}
.ya5{bottom:113.250000px;}
.y7b{bottom:120.300000px;}
.y50{bottom:129.300000px;}
.ya4{bottom:133.950000px;}
.y25{bottom:143.700000px;}
.y4f{bottom:148.350000px;}
.y7a{bottom:150.000000px;}
.ya3{bottom:154.650000px;}
.y24{bottom:161.250000px;}
.y4e{bottom:167.400000px;}
.ya2{bottom:175.350000px;}
.y79{bottom:179.700000px;}
.y23{bottom:181.950000px;}
.y4d{bottom:186.450000px;}
.y22{bottom:202.650000px;}
.y4c{bottom:205.500000px;}
.y78{bottom:209.400000px;}
.ya1{bottom:216.750000px;}
.y21{bottom:223.350000px;}
.y4b{bottom:233.700000px;}
.ya0{bottom:237.450000px;}
.y77{bottom:239.250000px;}
.y4a{bottom:254.400000px;}
.y9f{bottom:258.150000px;}
.y76{bottom:268.950000px;}
.y49{bottom:275.100000px;}
.y9e{bottom:278.850000px;}
.y20{bottom:282.750000px;}
.y48{bottom:295.800000px;}
.y75{bottom:298.650000px;}
.y9d{bottom:299.550000px;}
.y9c{bottom:320.250000px;}
.y47{bottom:325.500000px;}
.y74{bottom:328.350000px;}
.y9b{bottom:340.950000px;}
.y46{bottom:346.200000px;}
.y73{bottom:358.050000px;}
.y9a{bottom:361.650000px;}
.y45{bottom:366.900000px;}
.y72{bottom:378.750000px;}
.y44{bottom:396.600000px;}
.y99{bottom:403.050000px;}
.y71{bottom:408.450000px;}
.y98{bottom:423.750000px;}
.y43{bottom:426.300000px;}
.y70{bottom:429.150000px;}
.y97{bottom:444.450000px;}
.y1d{bottom:449.550000px;}
.y42{bottom:456.000000px;}
.y6f{bottom:458.850000px;}
.y96{bottom:465.150000px;}
.y1c{bottom:470.250000px;}
.y6e{bottom:479.550000px;}
.y41{bottom:485.700000px;}
.y95{bottom:485.850000px;}
.y1b{bottom:499.950000px;}
.y94{bottom:506.550000px;}
.y6d{bottom:509.250000px;}
.y40{bottom:515.400000px;}
.y1a{bottom:520.650000px;}
.y93{bottom:527.250000px;}
.y3f{bottom:545.100000px;}
.y92{bottom:547.950000px;}
.y19{bottom:550.350000px;}
.y6c{bottom:558.750000px;}
.y3e{bottom:565.800000px;}
.y91{bottom:568.650000px;}
.y6b{bottom:574.200000px;}
.y18{bottom:580.050000px;}
.y90{bottom:589.350000px;}
.y6a{bottom:589.800000px;}
.y17{bottom:600.750000px;}
.y69{bottom:605.250000px;}
.y8f{bottom:610.050000px;}
.y3d{bottom:615.600000px;}
.y68{bottom:620.850000px;}
.y16{bottom:621.450000px;}
.y8e{bottom:630.750000px;}
.y3c{bottom:633.600000px;}
.y67{bottom:636.300000px;}
.y15{bottom:651.150000px;}
.y8d{bottom:651.450000px;}
.y66{bottom:651.900000px;}
.y3b{bottom:654.300000px;}
.y65{bottom:667.350000px;}
.y8c{bottom:672.150000px;}
.y3a{bottom:675.000000px;}
.y64{bottom:682.950000px;}
.y1f{bottom:689.700000px;}
.y14{bottom:692.550000px;}
.y8b{bottom:692.850000px;}
.y39{bottom:695.700000px;}
.y63{bottom:698.400000px;}
.y13{bottom:713.250000px;}
.y8a{bottom:713.550000px;}
.y62{bottom:714.000000px;}
.y38{bottom:716.400000px;}
.y61{bottom:729.450000px;}
.y12{bottom:733.950000px;}
.y37{bottom:737.100000px;}
.y89{bottom:743.250000px;}
.y60{bottom:745.050000px;}
.y11{bottom:754.650000px;}
.y36{bottom:757.800000px;}
.y5f{bottom:760.500000px;}
.y10{bottom:775.350000px;}
.y5e{bottom:776.100000px;}
.y35{bottom:778.500000px;}
.yf{bottom:796.050000px;}
.y34{bottom:799.200000px;}
.y5d{bottom:800.550000px;}
.y88{bottom:802.650000px;}
.ye{bottom:816.750000px;}
.y33{bottom:819.900000px;}
.y87{bottom:823.350000px;}
.yd{bottom:837.450000px;}
.y86{bottom:844.050000px;}
.y32{bottom:849.450000px;}
.yb5{bottom:850.350000px;}
.y5c{bottom:855.750000px;}
.yc{bottom:858.150000px;}
.y85{bottom:864.750000px;}
.yb4{bottom:871.050000px;}
.y5b{bottom:876.450000px;}
.yb{bottom:878.850000px;}
.y31{bottom:879.150000px;}
.yb3{bottom:891.750000px;}
.y84{bottom:894.450000px;}
.ya{bottom:899.550000px;}
.y5a{bottom:906.150000px;}
.y30{bottom:908.850000px;}
.yb2{bottom:912.450000px;}
.y83{bottom:915.150000px;}
.y9{bottom:920.250000px;}
.y59{bottom:926.850000px;}
.y2f{bottom:929.550000px;}
.yb1{bottom:933.150000px;}
.y58{bottom:947.550000px;}
.y2e{bottom:950.250000px;}
.yb0{bottom:953.850000px;}
.y8{bottom:961.650000px;}
.y82{bottom:965.550000px;}
.y57{bottom:968.250000px;}
.yaf{bottom:974.550000px;}
.y2d{bottom:979.950000px;}
.y7{bottom:982.800000px;}
.y81{bottom:986.250000px;}
.y56{bottom:988.950000px;}
.yae{bottom:995.250000px;}
.y2c{bottom:1000.650000px;}
.y6{bottom:1003.950000px;}
.y80{bottom:1006.950000px;}
.y55{bottom:1009.650000px;}
.yad{bottom:1015.950000px;}
.y7f{bottom:1027.650000px;}
.y2b{bottom:1030.350000px;}
.yac{bottom:1036.650000px;}
.y54{bottom:1039.350000px;}
.y7e{bottom:1048.350000px;}
.yab{bottom:1057.350000px;}
.y5{bottom:1058.400000px;}
.y2a{bottom:1060.050000px;}
.y7d{bottom:1069.050000px;}
.yaa{bottom:1078.050000px;}
.y29{bottom:1080.750000px;}
.y53{bottom:1089.750000px;}
.y4{bottom:1089.900000px;}
.ya9{bottom:1098.750000px;}
.y28{bottom:1110.450000px;}
.ya8{bottom:1119.450000px;}
.y3{bottom:1121.250000px;}
.y27{bottom:1131.150000px;}
.ya7{bottom:1140.150000px;}
.y2{bottom:1152.750000px;}
.y26{bottom:1160.850000px;}
.h6{height:48.410156px;}
.h5{height:52.417969px;}
.h7{height:53.789062px;}
.h3{height:54.703125px;}
.h8{height:59.167969px;}
.h4{height:64.546875px;}
.h2{height:82.054688px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:85.200000px;}
.x3{left:119.700000px;}
.x6{left:129.900000px;}
.x1{left:257.700000px;}
.x2{left:288.450000px;}
.x4{left:290.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.037333pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.266667pt;}
.ws2{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-14.016000pt;}
._5{margin-left:-6.816000pt;}
._8{margin-left:-5.440000pt;}
._2{margin-left:-3.744000pt;}
._0{margin-left:-2.112000pt;}
._3{margin-left:-0.960000pt;}
._1{width:0.960000pt;}
._6{width:2.666667pt;}
._7{width:4.309333pt;}
._9{width:6.080000pt;}
._a{width:7.040000pt;}
._b{width:8.640000pt;}
._d{width:10.240000pt;}
._c{width:11.264000pt;}
._e{width:15.104000pt;}
._f{width:16.064000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y52{bottom:81.066667pt;}
.ya6{bottom:82.266667pt;}
.y1e{bottom:88.266667pt;}
.y7c{bottom:88.533333pt;}
.y51{bottom:98.000000pt;}
.ya5{bottom:100.666667pt;}
.y7b{bottom:106.933333pt;}
.y50{bottom:114.933333pt;}
.ya4{bottom:119.066667pt;}
.y25{bottom:127.733333pt;}
.y4f{bottom:131.866667pt;}
.y7a{bottom:133.333333pt;}
.ya3{bottom:137.466667pt;}
.y24{bottom:143.333333pt;}
.y4e{bottom:148.800000pt;}
.ya2{bottom:155.866667pt;}
.y79{bottom:159.733333pt;}
.y23{bottom:161.733333pt;}
.y4d{bottom:165.733333pt;}
.y22{bottom:180.133333pt;}
.y4c{bottom:182.666667pt;}
.y78{bottom:186.133333pt;}
.ya1{bottom:192.666667pt;}
.y21{bottom:198.533333pt;}
.y4b{bottom:207.733333pt;}
.ya0{bottom:211.066667pt;}
.y77{bottom:212.666667pt;}
.y4a{bottom:226.133333pt;}
.y9f{bottom:229.466667pt;}
.y76{bottom:239.066667pt;}
.y49{bottom:244.533333pt;}
.y9e{bottom:247.866667pt;}
.y20{bottom:251.333333pt;}
.y48{bottom:262.933333pt;}
.y75{bottom:265.466667pt;}
.y9d{bottom:266.266667pt;}
.y9c{bottom:284.666667pt;}
.y47{bottom:289.333333pt;}
.y74{bottom:291.866667pt;}
.y9b{bottom:303.066667pt;}
.y46{bottom:307.733333pt;}
.y73{bottom:318.266667pt;}
.y9a{bottom:321.466667pt;}
.y45{bottom:326.133333pt;}
.y72{bottom:336.666667pt;}
.y44{bottom:352.533333pt;}
.y99{bottom:358.266667pt;}
.y71{bottom:363.066667pt;}
.y98{bottom:376.666667pt;}
.y43{bottom:378.933333pt;}
.y70{bottom:381.466667pt;}
.y97{bottom:395.066667pt;}
.y1d{bottom:399.600000pt;}
.y42{bottom:405.333333pt;}
.y6f{bottom:407.866667pt;}
.y96{bottom:413.466667pt;}
.y1c{bottom:418.000000pt;}
.y6e{bottom:426.266667pt;}
.y41{bottom:431.733333pt;}
.y95{bottom:431.866667pt;}
.y1b{bottom:444.400000pt;}
.y94{bottom:450.266667pt;}
.y6d{bottom:452.666667pt;}
.y40{bottom:458.133333pt;}
.y1a{bottom:462.800000pt;}
.y93{bottom:468.666667pt;}
.y3f{bottom:484.533333pt;}
.y92{bottom:487.066667pt;}
.y19{bottom:489.200000pt;}
.y6c{bottom:496.666667pt;}
.y3e{bottom:502.933333pt;}
.y91{bottom:505.466667pt;}
.y6b{bottom:510.400000pt;}
.y18{bottom:515.600000pt;}
.y90{bottom:523.866667pt;}
.y6a{bottom:524.266667pt;}
.y17{bottom:534.000000pt;}
.y69{bottom:538.000000pt;}
.y8f{bottom:542.266667pt;}
.y3d{bottom:547.200000pt;}
.y68{bottom:551.866667pt;}
.y16{bottom:552.400000pt;}
.y8e{bottom:560.666667pt;}
.y3c{bottom:563.200000pt;}
.y67{bottom:565.600000pt;}
.y15{bottom:578.800000pt;}
.y8d{bottom:579.066667pt;}
.y66{bottom:579.466667pt;}
.y3b{bottom:581.600000pt;}
.y65{bottom:593.200000pt;}
.y8c{bottom:597.466667pt;}
.y3a{bottom:600.000000pt;}
.y64{bottom:607.066667pt;}
.y1f{bottom:613.066667pt;}
.y14{bottom:615.600000pt;}
.y8b{bottom:615.866667pt;}
.y39{bottom:618.400000pt;}
.y63{bottom:620.800000pt;}
.y13{bottom:634.000000pt;}
.y8a{bottom:634.266667pt;}
.y62{bottom:634.666667pt;}
.y38{bottom:636.800000pt;}
.y61{bottom:648.400000pt;}
.y12{bottom:652.400000pt;}
.y37{bottom:655.200000pt;}
.y89{bottom:660.666667pt;}
.y60{bottom:662.266667pt;}
.y11{bottom:670.800000pt;}
.y36{bottom:673.600000pt;}
.y5f{bottom:676.000000pt;}
.y10{bottom:689.200000pt;}
.y5e{bottom:689.866667pt;}
.y35{bottom:692.000000pt;}
.yf{bottom:707.600000pt;}
.y34{bottom:710.400000pt;}
.y5d{bottom:711.600000pt;}
.y88{bottom:713.466667pt;}
.ye{bottom:726.000000pt;}
.y33{bottom:728.800000pt;}
.y87{bottom:731.866667pt;}
.yd{bottom:744.400000pt;}
.y86{bottom:750.266667pt;}
.y32{bottom:755.066667pt;}
.yb5{bottom:755.866667pt;}
.y5c{bottom:760.666667pt;}
.yc{bottom:762.800000pt;}
.y85{bottom:768.666667pt;}
.yb4{bottom:774.266667pt;}
.y5b{bottom:779.066667pt;}
.yb{bottom:781.200000pt;}
.y31{bottom:781.466667pt;}
.yb3{bottom:792.666667pt;}
.y84{bottom:795.066667pt;}
.ya{bottom:799.600000pt;}
.y5a{bottom:805.466667pt;}
.y30{bottom:807.866667pt;}
.yb2{bottom:811.066667pt;}
.y83{bottom:813.466667pt;}
.y9{bottom:818.000000pt;}
.y59{bottom:823.866667pt;}
.y2f{bottom:826.266667pt;}
.yb1{bottom:829.466667pt;}
.y58{bottom:842.266667pt;}
.y2e{bottom:844.666667pt;}
.yb0{bottom:847.866667pt;}
.y8{bottom:854.800000pt;}
.y82{bottom:858.266667pt;}
.y57{bottom:860.666667pt;}
.yaf{bottom:866.266667pt;}
.y2d{bottom:871.066667pt;}
.y7{bottom:873.600000pt;}
.y81{bottom:876.666667pt;}
.y56{bottom:879.066667pt;}
.yae{bottom:884.666667pt;}
.y2c{bottom:889.466667pt;}
.y6{bottom:892.400000pt;}
.y80{bottom:895.066667pt;}
.y55{bottom:897.466667pt;}
.yad{bottom:903.066667pt;}
.y7f{bottom:913.466667pt;}
.y2b{bottom:915.866667pt;}
.yac{bottom:921.466667pt;}
.y54{bottom:923.866667pt;}
.y7e{bottom:931.866667pt;}
.yab{bottom:939.866667pt;}
.y5{bottom:940.800000pt;}
.y2a{bottom:942.266667pt;}
.y7d{bottom:950.266667pt;}
.yaa{bottom:958.266667pt;}
.y29{bottom:960.666667pt;}
.y53{bottom:968.666667pt;}
.y4{bottom:968.800000pt;}
.ya9{bottom:976.666667pt;}
.y28{bottom:987.066667pt;}
.ya8{bottom:995.066667pt;}
.y3{bottom:996.666667pt;}
.y27{bottom:1005.466667pt;}
.ya7{bottom:1013.466667pt;}
.y2{bottom:1024.666667pt;}
.y26{bottom:1031.866667pt;}
.h6{height:43.031250pt;}
.h5{height:46.593750pt;}
.h7{height:47.812500pt;}
.h3{height:48.625000pt;}
.h8{height:52.593750pt;}
.h4{height:57.375000pt;}
.h2{height:72.937500pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:75.733333pt;}
.x3{left:106.400000pt;}
.x6{left:115.466667pt;}
.x1{left:229.066667pt;}
.x2{left:256.400000pt;}
.x4{left:258.000000pt;}
}




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