
    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_071fd37d2d8015bec59cc1cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_58999c5957d09872e214d965.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.592000;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_f9bc0316ba4b6f680638ddd8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.482000px;}
.ls3{letter-spacing:1.494000px;}
.ls0{letter-spacing:1.506000px;}
.ls7{letter-spacing:1.512000px;}
.ls5{letter-spacing:1.518000px;}
.ls6{letter-spacing:12.006000px;}
.ls2{letter-spacing:15.006000px;}
.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;}
}
.ws2f{word-spacing:-17.088000px;}
.ws2d{word-spacing:-16.944000px;}
.ws31{word-spacing:-16.890000px;}
.ws2b{word-spacing:-16.830000px;}
.ws32{word-spacing:-16.764000px;}
.ws30{word-spacing:-16.734000px;}
.ws26{word-spacing:-16.710000px;}
.ws21{word-spacing:-16.680000px;}
.wsf{word-spacing:-16.626000px;}
.ws2e{word-spacing:-16.578000px;}
.wsb{word-spacing:-16.530000px;}
.ws27{word-spacing:-16.524000px;}
.ws1{word-spacing:-16.500000px;}
.ws36{word-spacing:-16.494000px;}
.ws8{word-spacing:-16.476000px;}
.ws9{word-spacing:-16.398000px;}
.ws35{word-spacing:-16.386000px;}
.ws29{word-spacing:-16.362000px;}
.wsa{word-spacing:-16.308000px;}
.ws34{word-spacing:-16.266000px;}
.ws2c{word-spacing:-16.206000px;}
.ws28{word-spacing:-16.176000px;}
.ws6{word-spacing:-16.170000px;}
.ws7{word-spacing:-16.164000px;}
.ws25{word-spacing:-15.984000px;}
.ws33{word-spacing:-15.420000px;}
.ws38{word-spacing:-15.000000px;}
.ws37{word-spacing:-14.700000px;}
.ws19{word-spacing:-13.836000px;}
.ws17{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.230000px;}
.ws0{word-spacing:-12.375000px;}
.ws5{word-spacing:-11.994000px;}
.ws1b{word-spacing:-7.050000px;}
.ws15{word-spacing:-3.306000px;}
.ws1c{word-spacing:-3.048000px;}
.ws16{word-spacing:-2.706000px;}
.ws2a{word-spacing:-1.278000px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:0.948000px;}
.ws1d{word-spacing:1.422000px;}
.ws2{word-spacing:1.518000px;}
.ws18{word-spacing:1.524000px;}
.ws1a{word-spacing:1.602000px;}
.ws20{word-spacing:2.214000px;}
.ws1f{word-spacing:2.274000px;}
.ws1e{word-spacing:2.316000px;}
.ws12{word-spacing:3.576000px;}
.ws10{word-spacing:3.606000px;}
.ws13{word-spacing:3.696000px;}
.ws11{word-spacing:3.876000px;}
.ws14{word-spacing:4.068000px;}
.ws22{word-spacing:4.734000px;}
.ws23{word-spacing:4.920000px;}
.wse{word-spacing:8.280000px;}
.wsc{word-spacing:8.814000px;}
.wsd{word-spacing:9.030000px;}
._16{margin-left:-7.464000px;}
._7{margin-left:-6.072000px;}
._9{margin-left:-4.494000px;}
._8{margin-left:-2.976000px;}
._2{margin-left:-1.512000px;}
._1{width:1.512000px;}
._3{width:3.024000px;}
._c{width:4.560000px;}
._b{width:6.006000px;}
._d{width:7.536000px;}
._13{width:8.970000px;}
._14{width:11.994000px;}
._4{width:13.344000px;}
._5{width:14.682000px;}
._15{width:16.128000px;}
._f{width:18.024000px;}
._17{width:19.572000px;}
._18{width:20.622000px;}
._10{width:21.702000px;}
._12{width:24.024000px;}
._a{width:33.018000px;}
._6{width:47.784000px;}
._0{width:49.500000px;}
._11{width:958.164000px;}
._e{width:1141.254000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:19.234245px;}
.y1{bottom:33.484245px;}
.y26{bottom:47.734245px;}
.y25{bottom:61.984245px;}
.y23{bottom:69.859245px;}
.y50{bottom:73.609245px;}
.y24{bottom:76.234245px;}
.y22{bottom:87.109245px;}
.y4f{bottom:90.859245px;}
.y21{bottom:104.359245px;}
.y4e{bottom:108.109245px;}
.y20{bottom:121.609245px;}
.y4d{bottom:125.359245px;}
.y54{bottom:129.859245px;}
.y1f{bottom:138.859245px;}
.y4c{bottom:142.609245px;}
.y53{bottom:145.609245px;}
.y1e{bottom:156.109245px;}
.y4b{bottom:159.859245px;}
.y52{bottom:161.359245px;}
.y1d{bottom:173.359245px;}
.y4a{bottom:177.109245px;}
.y51{bottom:185.734245px;}
.y1c{bottom:190.609245px;}
.y49{bottom:194.359245px;}
.y1b{bottom:207.859245px;}
.y48{bottom:211.609245px;}
.y1a{bottom:225.109245px;}
.y47{bottom:228.859245px;}
.y19{bottom:242.359245px;}
.y46{bottom:246.109245px;}
.y18{bottom:259.609245px;}
.y45{bottom:263.359245px;}
.y17{bottom:276.859245px;}
.y44{bottom:280.609245px;}
.y16{bottom:294.109245px;}
.y43{bottom:297.859245px;}
.y15{bottom:311.359245px;}
.y42{bottom:315.109245px;}
.y14{bottom:328.609245px;}
.y41{bottom:332.359245px;}
.y13{bottom:345.859245px;}
.y40{bottom:349.609245px;}
.y12{bottom:363.109245px;}
.y3f{bottom:366.859245px;}
.y11{bottom:380.359245px;}
.y3e{bottom:384.109245px;}
.y10{bottom:397.609245px;}
.y3d{bottom:401.359245px;}
.yf{bottom:414.859245px;}
.y3c{bottom:418.609245px;}
.ye{bottom:432.109245px;}
.y3b{bottom:435.859245px;}
.yd{bottom:449.359245px;}
.y3a{bottom:453.109245px;}
.yc{bottom:466.609245px;}
.y39{bottom:470.359245px;}
.yb{bottom:483.859245px;}
.y38{bottom:487.609245px;}
.ya{bottom:501.109245px;}
.y37{bottom:504.859245px;}
.y9{bottom:518.359245px;}
.y36{bottom:522.109245px;}
.y8{bottom:535.609245px;}
.y35{bottom:539.359245px;}
.y7{bottom:552.859245px;}
.y34{bottom:556.609245px;}
.y33{bottom:573.859245px;}
.y32{bottom:591.109245px;}
.y31{bottom:608.359245px;}
.y30{bottom:625.609245px;}
.y2f{bottom:642.859245px;}
.y2e{bottom:660.109245px;}
.y2d{bottom:677.359245px;}
.y2c{bottom:694.609245px;}
.y59{bottom:702.109245px;}
.y2b{bottom:711.859245px;}
.y6{bottom:714.859245px;}
.y58{bottom:717.859245px;}
.y2a{bottom:729.109245px;}
.y5{bottom:732.859245px;}
.y57{bottom:733.609245px;}
.y29{bottom:746.359245px;}
.y56{bottom:749.359245px;}
.y28{bottom:763.609245px;}
.y55{bottom:765.109245px;}
.y4{bottom:777.859245px;}
.y27{bottom:780.859245px;}
.y3{bottom:829.609245px;}
.h4{height:51.216000px;}
.h2{height:57.618000px;}
.h3{height:58.536000px;}
.ha{height:64.020000px;}
.h9{height:65.040000px;}
.h6{height:70.422000px;}
.h7{height:71.544000px;}
.h8{height:75.316500px;}
.h5{height:102.432000px;}
.h0{height:858.484245px;}
.h1{height:858.750000px;}
.w0{width:552.720480px;}
.w1{width:552.750000px;}
.x0{left:0.000000px;}
.x1{left:31.088325px;}
.x4{left:45.740325px;}
.x2{left:53.579325px;}
.x3{left:383.667825px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.317333pt;}
.ls3{letter-spacing:1.328000pt;}
.ls0{letter-spacing:1.338667pt;}
.ls7{letter-spacing:1.344000pt;}
.ls5{letter-spacing:1.349333pt;}
.ls6{letter-spacing:10.672000pt;}
.ls2{letter-spacing:13.338667pt;}
.ws2f{word-spacing:-15.189333pt;}
.ws2d{word-spacing:-15.061333pt;}
.ws31{word-spacing:-15.013333pt;}
.ws2b{word-spacing:-14.960000pt;}
.ws32{word-spacing:-14.901333pt;}
.ws30{word-spacing:-14.874667pt;}
.ws26{word-spacing:-14.853333pt;}
.ws21{word-spacing:-14.826667pt;}
.wsf{word-spacing:-14.778667pt;}
.ws2e{word-spacing:-14.736000pt;}
.wsb{word-spacing:-14.693333pt;}
.ws27{word-spacing:-14.688000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws36{word-spacing:-14.661333pt;}
.ws8{word-spacing:-14.645333pt;}
.ws9{word-spacing:-14.576000pt;}
.ws35{word-spacing:-14.565333pt;}
.ws29{word-spacing:-14.544000pt;}
.wsa{word-spacing:-14.496000pt;}
.ws34{word-spacing:-14.458667pt;}
.ws2c{word-spacing:-14.405333pt;}
.ws28{word-spacing:-14.378667pt;}
.ws6{word-spacing:-14.373333pt;}
.ws7{word-spacing:-14.368000pt;}
.ws25{word-spacing:-14.208000pt;}
.ws33{word-spacing:-13.706667pt;}
.ws38{word-spacing:-13.333333pt;}
.ws37{word-spacing:-13.066667pt;}
.ws19{word-spacing:-12.298667pt;}
.ws17{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.760000pt;}
.ws0{word-spacing:-11.000000pt;}
.ws5{word-spacing:-10.661333pt;}
.ws1b{word-spacing:-6.266667pt;}
.ws15{word-spacing:-2.938667pt;}
.ws1c{word-spacing:-2.709333pt;}
.ws16{word-spacing:-2.405333pt;}
.ws2a{word-spacing:-1.136000pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:0.842667pt;}
.ws1d{word-spacing:1.264000pt;}
.ws2{word-spacing:1.349333pt;}
.ws18{word-spacing:1.354667pt;}
.ws1a{word-spacing:1.424000pt;}
.ws20{word-spacing:1.968000pt;}
.ws1f{word-spacing:2.021333pt;}
.ws1e{word-spacing:2.058667pt;}
.ws12{word-spacing:3.178667pt;}
.ws10{word-spacing:3.205333pt;}
.ws13{word-spacing:3.285333pt;}
.ws11{word-spacing:3.445333pt;}
.ws14{word-spacing:3.616000pt;}
.ws22{word-spacing:4.208000pt;}
.ws23{word-spacing:4.373333pt;}
.wse{word-spacing:7.360000pt;}
.wsc{word-spacing:7.834667pt;}
.wsd{word-spacing:8.026667pt;}
._16{margin-left:-6.634667pt;}
._7{margin-left:-5.397333pt;}
._9{margin-left:-3.994667pt;}
._8{margin-left:-2.645333pt;}
._2{margin-left:-1.344000pt;}
._1{width:1.344000pt;}
._3{width:2.688000pt;}
._c{width:4.053333pt;}
._b{width:5.338667pt;}
._d{width:6.698667pt;}
._13{width:7.973333pt;}
._14{width:10.661333pt;}
._4{width:11.861333pt;}
._5{width:13.050667pt;}
._15{width:14.336000pt;}
._f{width:16.021333pt;}
._17{width:17.397333pt;}
._18{width:18.330667pt;}
._10{width:19.290667pt;}
._12{width:21.354667pt;}
._a{width:29.349333pt;}
._6{width:42.474667pt;}
._0{width:44.000000pt;}
._11{width:851.701333pt;}
._e{width:1014.448000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:17.097107pt;}
.y1{bottom:29.763773pt;}
.y26{bottom:42.430440pt;}
.y25{bottom:55.097107pt;}
.y23{bottom:62.097107pt;}
.y50{bottom:65.430440pt;}
.y24{bottom:67.763773pt;}
.y22{bottom:77.430440pt;}
.y4f{bottom:80.763773pt;}
.y21{bottom:92.763773pt;}
.y4e{bottom:96.097107pt;}
.y20{bottom:108.097107pt;}
.y4d{bottom:111.430440pt;}
.y54{bottom:115.430440pt;}
.y1f{bottom:123.430440pt;}
.y4c{bottom:126.763773pt;}
.y53{bottom:129.430440pt;}
.y1e{bottom:138.763773pt;}
.y4b{bottom:142.097107pt;}
.y52{bottom:143.430440pt;}
.y1d{bottom:154.097107pt;}
.y4a{bottom:157.430440pt;}
.y51{bottom:165.097107pt;}
.y1c{bottom:169.430440pt;}
.y49{bottom:172.763773pt;}
.y1b{bottom:184.763773pt;}
.y48{bottom:188.097107pt;}
.y1a{bottom:200.097107pt;}
.y47{bottom:203.430440pt;}
.y19{bottom:215.430440pt;}
.y46{bottom:218.763773pt;}
.y18{bottom:230.763773pt;}
.y45{bottom:234.097107pt;}
.y17{bottom:246.097107pt;}
.y44{bottom:249.430440pt;}
.y16{bottom:261.430440pt;}
.y43{bottom:264.763773pt;}
.y15{bottom:276.763773pt;}
.y42{bottom:280.097107pt;}
.y14{bottom:292.097107pt;}
.y41{bottom:295.430440pt;}
.y13{bottom:307.430440pt;}
.y40{bottom:310.763773pt;}
.y12{bottom:322.763773pt;}
.y3f{bottom:326.097107pt;}
.y11{bottom:338.097107pt;}
.y3e{bottom:341.430440pt;}
.y10{bottom:353.430440pt;}
.y3d{bottom:356.763773pt;}
.yf{bottom:368.763773pt;}
.y3c{bottom:372.097107pt;}
.ye{bottom:384.097107pt;}
.y3b{bottom:387.430440pt;}
.yd{bottom:399.430440pt;}
.y3a{bottom:402.763773pt;}
.yc{bottom:414.763773pt;}
.y39{bottom:418.097107pt;}
.yb{bottom:430.097107pt;}
.y38{bottom:433.430440pt;}
.ya{bottom:445.430440pt;}
.y37{bottom:448.763773pt;}
.y9{bottom:460.763773pt;}
.y36{bottom:464.097107pt;}
.y8{bottom:476.097107pt;}
.y35{bottom:479.430440pt;}
.y7{bottom:491.430440pt;}
.y34{bottom:494.763773pt;}
.y33{bottom:510.097107pt;}
.y32{bottom:525.430440pt;}
.y31{bottom:540.763773pt;}
.y30{bottom:556.097107pt;}
.y2f{bottom:571.430440pt;}
.y2e{bottom:586.763773pt;}
.y2d{bottom:602.097107pt;}
.y2c{bottom:617.430440pt;}
.y59{bottom:624.097107pt;}
.y2b{bottom:632.763773pt;}
.y6{bottom:635.430440pt;}
.y58{bottom:638.097107pt;}
.y2a{bottom:648.097107pt;}
.y5{bottom:651.430440pt;}
.y57{bottom:652.097107pt;}
.y29{bottom:663.430440pt;}
.y56{bottom:666.097107pt;}
.y28{bottom:678.763773pt;}
.y55{bottom:680.097107pt;}
.y4{bottom:691.430440pt;}
.y27{bottom:694.097107pt;}
.y3{bottom:737.430440pt;}
.h4{height:45.525333pt;}
.h2{height:51.216000pt;}
.h3{height:52.032000pt;}
.ha{height:56.906667pt;}
.h9{height:57.813333pt;}
.h6{height:62.597333pt;}
.h7{height:63.594667pt;}
.h8{height:66.948000pt;}
.h5{height:91.050667pt;}
.h0{height:763.097107pt;}
.h1{height:763.333333pt;}
.w0{width:491.307093pt;}
.w1{width:491.333333pt;}
.x0{left:0.000000pt;}
.x1{left:27.634067pt;}
.x4{left:40.658067pt;}
.x2{left:47.626067pt;}
.x3{left:341.038067pt;}
}




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