
    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_f8471bc5b24a0102a25c6655.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_2617afa436ab9d268f817bf4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_a8be093137155f1f56387be0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_ce749c20e53d73975597d5f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.052800px;}
.ls7{letter-spacing:-0.046200px;}
.ls4{letter-spacing:-0.039600px;}
.ls5{letter-spacing:-0.033000px;}
.lsd{letter-spacing:-0.019800px;}
.lsc{letter-spacing:-0.013200px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.019800px;}
.ls0{letter-spacing:0.026400px;}
.ls1{letter-spacing:0.033000px;}
.lsa{letter-spacing:0.039600px;}
.ls8{letter-spacing:0.046200px;}
.ls9{letter-spacing:0.052800px;}
.lse{letter-spacing:1.320000px;}
.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;}
}
.ws7{word-spacing:-16.500000px;}
.ws1{word-spacing:-5.332800px;}
.ws8{word-spacing:-1.544400px;}
.ws6{word-spacing:-1.346400px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:1.854600px;}
.ws4{word-spacing:5.319600px;}
.ws5{word-spacing:5.900400px;}
.ws3{word-spacing:16.420800px;}
._2{margin-left:-18.334800px;}
._13{margin-left:-12.045000px;}
._12{margin-left:-9.372000px;}
._5{margin-left:-8.210400px;}
._14{margin-left:-6.395400px;}
._0{margin-left:-5.332800px;}
._3{margin-left:-3.940200px;}
._8{margin-left:-2.706000px;}
._1{margin-left:-1.234200px;}
._4{width:1.854600px;}
._a{width:3.392400px;}
._6{width:5.319600px;}
._15{width:6.355800px;}
._b{width:7.365600px;}
._10{width:8.500800px;}
._f{width:9.999000px;}
._9{width:11.008800px;}
._d{width:12.117600px;}
._c{width:13.569600px;}
._7{width:14.955600px;}
._16{width:19.278600px;}
._e{width:20.367600px;}
._11{width:29.680200px;}
._17{width:34.386000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:83.918100px;}
.y4f{bottom:84.987600px;}
.y78{bottom:86.771100px;}
.y4e{bottom:104.787600px;}
.y77{bottom:106.571100px;}
.y25{bottom:121.701600px;}
.y4d{bottom:124.587600px;}
.y76{bottom:126.371100px;}
.y24{bottom:141.501600px;}
.y4c{bottom:144.387600px;}
.y75{bottom:146.171100px;}
.y23{bottom:161.301600px;}
.y4b{bottom:164.187600px;}
.y74{bottom:165.971100px;}
.y22{bottom:181.101600px;}
.y4a{bottom:183.987600px;}
.y73{bottom:185.771100px;}
.y21{bottom:200.901600px;}
.y49{bottom:203.787600px;}
.y72{bottom:205.571100px;}
.y20{bottom:220.701600px;}
.y48{bottom:223.587600px;}
.y71{bottom:225.371100px;}
.y1f{bottom:240.501600px;}
.y47{bottom:243.387600px;}
.y70{bottom:245.171100px;}
.y1e{bottom:260.301600px;}
.y46{bottom:263.187600px;}
.y6f{bottom:264.971100px;}
.y1d{bottom:280.101600px;}
.y45{bottom:282.987600px;}
.y6e{bottom:284.771100px;}
.y1c{bottom:299.901600px;}
.y44{bottom:302.787600px;}
.y6d{bottom:304.571100px;}
.y1b{bottom:319.701600px;}
.y43{bottom:322.587600px;}
.y6c{bottom:324.371100px;}
.y1a{bottom:339.501600px;}
.y42{bottom:342.387600px;}
.y6b{bottom:344.171100px;}
.y19{bottom:359.301600px;}
.y41{bottom:362.187600px;}
.y6a{bottom:363.971100px;}
.y18{bottom:379.101600px;}
.y40{bottom:381.987600px;}
.y69{bottom:383.771100px;}
.y17{bottom:398.901600px;}
.y3f{bottom:401.787600px;}
.y68{bottom:403.571100px;}
.y16{bottom:418.701600px;}
.y3e{bottom:421.587600px;}
.y67{bottom:423.371100px;}
.y15{bottom:438.501600px;}
.y3d{bottom:441.387600px;}
.y66{bottom:443.171100px;}
.y14{bottom:458.301600px;}
.y3c{bottom:461.187600px;}
.y65{bottom:462.971100px;}
.y13{bottom:478.101600px;}
.y3b{bottom:480.987600px;}
.y64{bottom:482.771100px;}
.y12{bottom:497.901600px;}
.y3a{bottom:500.787600px;}
.y63{bottom:502.571100px;}
.y11{bottom:517.701600px;}
.y39{bottom:520.587600px;}
.y62{bottom:522.371100px;}
.y10{bottom:537.501600px;}
.y38{bottom:540.387600px;}
.y61{bottom:542.171100px;}
.yf{bottom:557.301600px;}
.y37{bottom:560.187600px;}
.y60{bottom:561.971100px;}
.y88{bottom:563.487600px;}
.ye{bottom:577.101600px;}
.y36{bottom:579.987600px;}
.y5f{bottom:581.771100px;}
.y87{bottom:583.287600px;}
.yd{bottom:596.901600px;}
.y35{bottom:599.787600px;}
.y5e{bottom:601.571100px;}
.y86{bottom:603.087600px;}
.yc{bottom:616.701600px;}
.y34{bottom:619.587600px;}
.y5d{bottom:621.371100px;}
.y85{bottom:622.887600px;}
.yb{bottom:636.501600px;}
.y33{bottom:639.387600px;}
.y5c{bottom:641.171100px;}
.y84{bottom:642.687600px;}
.ya{bottom:656.301600px;}
.y32{bottom:659.187600px;}
.y5b{bottom:660.971100px;}
.y83{bottom:662.487600px;}
.y9{bottom:676.101600px;}
.y31{bottom:678.987600px;}
.y5a{bottom:680.771100px;}
.y82{bottom:682.287600px;}
.y8{bottom:695.901600px;}
.y30{bottom:698.787600px;}
.y59{bottom:700.571100px;}
.y81{bottom:702.087600px;}
.y7{bottom:715.701600px;}
.y2f{bottom:718.587600px;}
.y58{bottom:720.371100px;}
.y80{bottom:721.887600px;}
.y6{bottom:735.501600px;}
.y2e{bottom:738.387600px;}
.y57{bottom:740.171100px;}
.y7f{bottom:741.687600px;}
.y2d{bottom:758.187600px;}
.y56{bottom:759.971100px;}
.y7e{bottom:761.487600px;}
.y2c{bottom:777.987600px;}
.y55{bottom:779.771100px;}
.y7d{bottom:781.287600px;}
.y2b{bottom:797.787600px;}
.y54{bottom:799.571100px;}
.y7c{bottom:801.087600px;}
.y5{bottom:814.701600px;}
.y2a{bottom:817.587600px;}
.y53{bottom:819.371100px;}
.y7b{bottom:820.887600px;}
.y4{bottom:834.501600px;}
.y29{bottom:837.387600px;}
.y52{bottom:839.171100px;}
.y7a{bottom:840.687600px;}
.y3{bottom:854.301600px;}
.y28{bottom:857.187600px;}
.y51{bottom:858.971100px;}
.y79{bottom:860.487600px;}
.y2{bottom:874.101600px;}
.y27{bottom:876.987600px;}
.y50{bottom:925.985100px;}
.y26{bottom:927.225600px;}
.h5{height:37.303711px;}
.h2{height:47.961914px;}
.h6{height:53.291016px;}
.h4{height:57.911133px;}
.h3{height:58.072266px;}
.h0{height:977.748600px;}
.h1{height:978.000000px;}
.w0{width:680.686050px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x1{left:95.384550px;}
.x6{left:99.636300px;}
.x2{left:129.407550px;}
.x5{left:133.651050px;}
.x3{left:279.857550px;}
.x7{left:307.052550px;}
.x4{left:571.232550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.046933pt;}
.ls7{letter-spacing:-0.041067pt;}
.ls4{letter-spacing:-0.035200pt;}
.ls5{letter-spacing:-0.029333pt;}
.lsd{letter-spacing:-0.017600pt;}
.lsc{letter-spacing:-0.011733pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.017600pt;}
.ls0{letter-spacing:0.023467pt;}
.ls1{letter-spacing:0.029333pt;}
.lsa{letter-spacing:0.035200pt;}
.ls8{letter-spacing:0.041067pt;}
.ls9{letter-spacing:0.046933pt;}
.lse{letter-spacing:1.173333pt;}
.ws7{word-spacing:-14.666667pt;}
.ws1{word-spacing:-4.740267pt;}
.ws8{word-spacing:-1.372800pt;}
.ws6{word-spacing:-1.196800pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:1.648533pt;}
.ws4{word-spacing:4.728533pt;}
.ws5{word-spacing:5.244800pt;}
.ws3{word-spacing:14.596267pt;}
._2{margin-left:-16.297600pt;}
._13{margin-left:-10.706667pt;}
._12{margin-left:-8.330667pt;}
._5{margin-left:-7.298133pt;}
._14{margin-left:-5.684800pt;}
._0{margin-left:-4.740267pt;}
._3{margin-left:-3.502400pt;}
._8{margin-left:-2.405333pt;}
._1{margin-left:-1.097067pt;}
._4{width:1.648533pt;}
._a{width:3.015467pt;}
._6{width:4.728533pt;}
._15{width:5.649600pt;}
._b{width:6.547200pt;}
._10{width:7.556267pt;}
._f{width:8.888000pt;}
._9{width:9.785600pt;}
._d{width:10.771200pt;}
._c{width:12.061867pt;}
._7{width:13.293867pt;}
._16{width:17.136533pt;}
._e{width:18.104533pt;}
._11{width:26.382400pt;}
._17{width:30.565333pt;}
.fs2{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:74.593867pt;}
.y4f{bottom:75.544533pt;}
.y78{bottom:77.129867pt;}
.y4e{bottom:93.144533pt;}
.y77{bottom:94.729867pt;}
.y25{bottom:108.179200pt;}
.y4d{bottom:110.744533pt;}
.y76{bottom:112.329867pt;}
.y24{bottom:125.779200pt;}
.y4c{bottom:128.344533pt;}
.y75{bottom:129.929867pt;}
.y23{bottom:143.379200pt;}
.y4b{bottom:145.944533pt;}
.y74{bottom:147.529867pt;}
.y22{bottom:160.979200pt;}
.y4a{bottom:163.544533pt;}
.y73{bottom:165.129867pt;}
.y21{bottom:178.579200pt;}
.y49{bottom:181.144533pt;}
.y72{bottom:182.729867pt;}
.y20{bottom:196.179200pt;}
.y48{bottom:198.744533pt;}
.y71{bottom:200.329867pt;}
.y1f{bottom:213.779200pt;}
.y47{bottom:216.344533pt;}
.y70{bottom:217.929867pt;}
.y1e{bottom:231.379200pt;}
.y46{bottom:233.944533pt;}
.y6f{bottom:235.529867pt;}
.y1d{bottom:248.979200pt;}
.y45{bottom:251.544533pt;}
.y6e{bottom:253.129867pt;}
.y1c{bottom:266.579200pt;}
.y44{bottom:269.144533pt;}
.y6d{bottom:270.729867pt;}
.y1b{bottom:284.179200pt;}
.y43{bottom:286.744533pt;}
.y6c{bottom:288.329867pt;}
.y1a{bottom:301.779200pt;}
.y42{bottom:304.344533pt;}
.y6b{bottom:305.929867pt;}
.y19{bottom:319.379200pt;}
.y41{bottom:321.944533pt;}
.y6a{bottom:323.529867pt;}
.y18{bottom:336.979200pt;}
.y40{bottom:339.544533pt;}
.y69{bottom:341.129867pt;}
.y17{bottom:354.579200pt;}
.y3f{bottom:357.144533pt;}
.y68{bottom:358.729867pt;}
.y16{bottom:372.179200pt;}
.y3e{bottom:374.744533pt;}
.y67{bottom:376.329867pt;}
.y15{bottom:389.779200pt;}
.y3d{bottom:392.344533pt;}
.y66{bottom:393.929867pt;}
.y14{bottom:407.379200pt;}
.y3c{bottom:409.944533pt;}
.y65{bottom:411.529867pt;}
.y13{bottom:424.979200pt;}
.y3b{bottom:427.544533pt;}
.y64{bottom:429.129867pt;}
.y12{bottom:442.579200pt;}
.y3a{bottom:445.144533pt;}
.y63{bottom:446.729867pt;}
.y11{bottom:460.179200pt;}
.y39{bottom:462.744533pt;}
.y62{bottom:464.329867pt;}
.y10{bottom:477.779200pt;}
.y38{bottom:480.344533pt;}
.y61{bottom:481.929867pt;}
.yf{bottom:495.379200pt;}
.y37{bottom:497.944533pt;}
.y60{bottom:499.529867pt;}
.y88{bottom:500.877867pt;}
.ye{bottom:512.979200pt;}
.y36{bottom:515.544533pt;}
.y5f{bottom:517.129867pt;}
.y87{bottom:518.477867pt;}
.yd{bottom:530.579200pt;}
.y35{bottom:533.144533pt;}
.y5e{bottom:534.729867pt;}
.y86{bottom:536.077867pt;}
.yc{bottom:548.179200pt;}
.y34{bottom:550.744533pt;}
.y5d{bottom:552.329867pt;}
.y85{bottom:553.677867pt;}
.yb{bottom:565.779200pt;}
.y33{bottom:568.344533pt;}
.y5c{bottom:569.929867pt;}
.y84{bottom:571.277867pt;}
.ya{bottom:583.379200pt;}
.y32{bottom:585.944533pt;}
.y5b{bottom:587.529867pt;}
.y83{bottom:588.877867pt;}
.y9{bottom:600.979200pt;}
.y31{bottom:603.544533pt;}
.y5a{bottom:605.129867pt;}
.y82{bottom:606.477867pt;}
.y8{bottom:618.579200pt;}
.y30{bottom:621.144533pt;}
.y59{bottom:622.729867pt;}
.y81{bottom:624.077867pt;}
.y7{bottom:636.179200pt;}
.y2f{bottom:638.744533pt;}
.y58{bottom:640.329867pt;}
.y80{bottom:641.677867pt;}
.y6{bottom:653.779200pt;}
.y2e{bottom:656.344533pt;}
.y57{bottom:657.929867pt;}
.y7f{bottom:659.277867pt;}
.y2d{bottom:673.944533pt;}
.y56{bottom:675.529867pt;}
.y7e{bottom:676.877867pt;}
.y2c{bottom:691.544533pt;}
.y55{bottom:693.129867pt;}
.y7d{bottom:694.477867pt;}
.y2b{bottom:709.144533pt;}
.y54{bottom:710.729867pt;}
.y7c{bottom:712.077867pt;}
.y5{bottom:724.179200pt;}
.y2a{bottom:726.744533pt;}
.y53{bottom:728.329867pt;}
.y7b{bottom:729.677867pt;}
.y4{bottom:741.779200pt;}
.y29{bottom:744.344533pt;}
.y52{bottom:745.929867pt;}
.y7a{bottom:747.277867pt;}
.y3{bottom:759.379200pt;}
.y28{bottom:761.944533pt;}
.y51{bottom:763.529867pt;}
.y79{bottom:764.877867pt;}
.y2{bottom:776.979200pt;}
.y27{bottom:779.544533pt;}
.y50{bottom:823.097867pt;}
.y26{bottom:824.200533pt;}
.h5{height:33.158854pt;}
.h2{height:42.632812pt;}
.h6{height:47.369792pt;}
.h4{height:51.476562pt;}
.h3{height:51.619792pt;}
.h0{height:869.109867pt;}
.h1{height:869.333333pt;}
.w0{width:605.054267pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x1{left:84.786267pt;}
.x6{left:88.565600pt;}
.x2{left:115.028933pt;}
.x5{left:118.800933pt;}
.x3{left:248.762267pt;}
.x7{left:272.935600pt;}
.x4{left:507.762267pt;}
}




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