
    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_bc8d193aa6572366912ca40d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_2203cb9e46cc59dbf3a21465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_c61a37d5983380b9cd7fb7bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_25f0b0892afa717c53831f64.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c48f4791bdf9e6a4a31de34c.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f819ce82d73383e8b3c99384.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bfc7dcebf836071523b08078.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c024583c196c7b3a6c3cf33b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_a44b8174ad19267db2b1c0cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692871;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:ffa;src:url('chunks/assets/font_83b9eb58fadbb9b1ba744d48.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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:ffb;src:url('chunks/assets/font_151a426817216d2010d5d393.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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;}
.lsb{letter-spacing:-0.270000px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.009000px;}
.ls7{letter-spacing:0.486000px;}
.ls10{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.675000px;}
.ls9{letter-spacing:0.702000px;}
.ls2{letter-spacing:0.820800px;}
.lsa{letter-spacing:0.864000px;}
.ls3{letter-spacing:0.900000px;}
.lse{letter-spacing:0.912000px;}
.ls1{letter-spacing:0.936000px;}
.ls6{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.296000px;}
.ls4{letter-spacing:2.268000px;}
.ls0{letter-spacing:1071.711600px;}
.lsd{letter-spacing:1381.914000px;}
.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.936000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.202000px;}
.ws11{word-spacing:-14.175000px;}
.ws4{word-spacing:-12.600000px;}
.ws1{word-spacing:-10.500000px;}
.ws8{word-spacing:-2.268000px;}
.wsa{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.080000px;}
.ws7{word-spacing:-0.936000px;}
.wsb{word-spacing:-0.864000px;}
.ws9{word-spacing:-0.702000px;}
.wse{word-spacing:-0.486000px;}
.ws10{word-spacing:-0.050400px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:0.270000px;}
.wsc{word-spacing:6.750000px;}
._4{margin-left:-6.530400px;}
._f{margin-left:-5.071800px;}
._2{margin-left:-3.780000px;}
._0{margin-left:-2.201400px;}
._1{margin-left:-1.046400px;}
._e{width:1.458000px;}
._8{width:2.529000px;}
._c{width:3.996000px;}
._9{width:5.081400px;}
._5{width:6.739200px;}
._b{width:8.287200px;}
._3{width:9.288000px;}
._6{width:10.454400px;}
._a{width:11.577600px;}
._d{width:14.715000px;}
._7{width:15.768000px;}
.fc1{color:rgb(26,33,34);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:42.000000px;}
.fs5{font-size:50.400000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:84.997650px;}
.y2f{bottom:85.447650px;}
.y2e{bottom:129.696000px;}
.y2d{bottom:145.896000px;}
.y2c{bottom:161.799000px;}
.y2b{bottom:177.702000px;}
.y2a{bottom:193.605000px;}
.y29{bottom:209.508000px;}
.y28{bottom:225.411000px;}
.y55{bottom:230.137050px;}
.y27{bottom:241.314000px;}
.y54{bottom:246.337050px;}
.y26{bottom:257.217000px;}
.y53{bottom:262.537050px;}
.y25{bottom:273.120000px;}
.y52{bottom:278.737050px;}
.y24{bottom:289.023000px;}
.y51{bottom:294.937050px;}
.y23{bottom:304.926000px;}
.y50{bottom:311.137050px;}
.y22{bottom:320.829000px;}
.y4f{bottom:327.337050px;}
.y21{bottom:336.732000px;}
.y4e{bottom:343.537050px;}
.y20{bottom:352.635000px;}
.y4d{bottom:359.737050px;}
.y1f{bottom:368.538000px;}
.y1e{bottom:384.441000px;}
.y4c{bottom:392.137050px;}
.y1d{bottom:400.344000px;}
.y1c{bottom:416.247000px;}
.y1b{bottom:432.150000px;}
.y4b{bottom:446.137050px;}
.y1a{bottom:448.053000px;}
.y4a{bottom:462.337050px;}
.y19{bottom:463.956000px;}
.y49{bottom:478.537050px;}
.y18{bottom:479.859000px;}
.y48{bottom:494.737050px;}
.y17{bottom:495.762000px;}
.y47{bottom:510.937050px;}
.y16{bottom:511.665000px;}
.y46{bottom:527.137050px;}
.y15{bottom:527.568000px;}
.y45{bottom:543.337050px;}
.y14{bottom:543.471000px;}
.y13{bottom:559.374000px;}
.y44{bottom:559.537050px;}
.y12{bottom:575.277000px;}
.y43{bottom:575.737050px;}
.y11{bottom:591.180000px;}
.y42{bottom:591.937050px;}
.y10{bottom:607.083000px;}
.y41{bottom:608.137050px;}
.yf{bottom:622.986000px;}
.y40{bottom:624.337050px;}
.ye{bottom:638.889000px;}
.y3f{bottom:640.537050px;}
.yd{bottom:654.792000px;}
.y3e{bottom:656.737050px;}
.yc{bottom:670.695000px;}
.y3d{bottom:672.937050px;}
.yb{bottom:686.598000px;}
.y3c{bottom:689.137050px;}
.ya{bottom:702.501000px;}
.y3b{bottom:705.337050px;}
.y9{bottom:718.404000px;}
.y3a{bottom:721.537050px;}
.y8{bottom:734.307000px;}
.y39{bottom:737.737050px;}
.y38{bottom:753.937050px;}
.y37{bottom:770.137050px;}
.y7{bottom:782.607000px;}
.y36{bottom:786.337050px;}
.y6{bottom:799.707000px;}
.y35{bottom:802.537050px;}
.y34{bottom:818.737050px;}
.y33{bottom:834.937050px;}
.y5{bottom:837.507000px;}
.y32{bottom:851.137050px;}
.y4{bottom:859.107000px;}
.y31{bottom:867.337050px;}
.y3{bottom:880.707000px;}
.y30{bottom:883.537050px;}
.y1{bottom:925.010700px;}
.h9{height:37.494141px;}
.h8{height:37.520508px;}
.h7{height:39.577148px;}
.h2{height:40.634766px;}
.h6{height:48.761719px;}
.h4{height:48.796875px;}
.h5{height:50.027344px;}
.h3{height:60.375000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x4{left:91.409700px;}
.x3{left:114.825000px;}
.x5{left:127.507500px;}
.x2{left:602.762400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.008000pt;}
.ls7{letter-spacing:0.432000pt;}
.ls10{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.600000pt;}
.ls9{letter-spacing:0.624000pt;}
.ls2{letter-spacing:0.729600pt;}
.lsa{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.810667pt;}
.ls1{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.152000pt;}
.ls4{letter-spacing:2.016000pt;}
.ls0{letter-spacing:952.632533pt;}
.lsd{letter-spacing:1228.368000pt;}
.ws2{word-spacing:-16.832000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.624000pt;}
.ws11{word-spacing:-12.600000pt;}
.ws4{word-spacing:-11.200000pt;}
.ws1{word-spacing:-9.333333pt;}
.ws8{word-spacing:-2.016000pt;}
.wsa{word-spacing:-1.152000pt;}
.wsd{word-spacing:-0.960000pt;}
.ws7{word-spacing:-0.832000pt;}
.wsb{word-spacing:-0.768000pt;}
.ws9{word-spacing:-0.624000pt;}
.wse{word-spacing:-0.432000pt;}
.ws10{word-spacing:-0.044800pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:0.240000pt;}
.wsc{word-spacing:6.000000pt;}
._4{margin-left:-5.804800pt;}
._f{margin-left:-4.508267pt;}
._2{margin-left:-3.360000pt;}
._0{margin-left:-1.956800pt;}
._1{margin-left:-0.930133pt;}
._e{width:1.296000pt;}
._8{width:2.248000pt;}
._c{width:3.552000pt;}
._9{width:4.516800pt;}
._5{width:5.990400pt;}
._b{width:7.366400pt;}
._3{width:8.256000pt;}
._6{width:9.292800pt;}
._a{width:10.291200pt;}
._d{width:13.080000pt;}
._7{width:14.016000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:44.800000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:75.553467pt;}
.y2f{bottom:75.953467pt;}
.y2e{bottom:115.285333pt;}
.y2d{bottom:129.685333pt;}
.y2c{bottom:143.821333pt;}
.y2b{bottom:157.957333pt;}
.y2a{bottom:172.093333pt;}
.y29{bottom:186.229333pt;}
.y28{bottom:200.365333pt;}
.y55{bottom:204.566267pt;}
.y27{bottom:214.501333pt;}
.y54{bottom:218.966267pt;}
.y26{bottom:228.637333pt;}
.y53{bottom:233.366267pt;}
.y25{bottom:242.773333pt;}
.y52{bottom:247.766267pt;}
.y24{bottom:256.909333pt;}
.y51{bottom:262.166267pt;}
.y23{bottom:271.045333pt;}
.y50{bottom:276.566267pt;}
.y22{bottom:285.181333pt;}
.y4f{bottom:290.966267pt;}
.y21{bottom:299.317333pt;}
.y4e{bottom:305.366267pt;}
.y20{bottom:313.453333pt;}
.y4d{bottom:319.766267pt;}
.y1f{bottom:327.589333pt;}
.y1e{bottom:341.725333pt;}
.y4c{bottom:348.566267pt;}
.y1d{bottom:355.861333pt;}
.y1c{bottom:369.997333pt;}
.y1b{bottom:384.133333pt;}
.y4b{bottom:396.566267pt;}
.y1a{bottom:398.269333pt;}
.y4a{bottom:410.966267pt;}
.y19{bottom:412.405333pt;}
.y49{bottom:425.366267pt;}
.y18{bottom:426.541333pt;}
.y48{bottom:439.766267pt;}
.y17{bottom:440.677333pt;}
.y47{bottom:454.166267pt;}
.y16{bottom:454.813333pt;}
.y46{bottom:468.566267pt;}
.y15{bottom:468.949333pt;}
.y45{bottom:482.966267pt;}
.y14{bottom:483.085333pt;}
.y13{bottom:497.221333pt;}
.y44{bottom:497.366267pt;}
.y12{bottom:511.357333pt;}
.y43{bottom:511.766267pt;}
.y11{bottom:525.493333pt;}
.y42{bottom:526.166267pt;}
.y10{bottom:539.629333pt;}
.y41{bottom:540.566267pt;}
.yf{bottom:553.765333pt;}
.y40{bottom:554.966267pt;}
.ye{bottom:567.901333pt;}
.y3f{bottom:569.366267pt;}
.yd{bottom:582.037333pt;}
.y3e{bottom:583.766267pt;}
.yc{bottom:596.173333pt;}
.y3d{bottom:598.166267pt;}
.yb{bottom:610.309333pt;}
.y3c{bottom:612.566267pt;}
.ya{bottom:624.445333pt;}
.y3b{bottom:626.966267pt;}
.y9{bottom:638.581333pt;}
.y3a{bottom:641.366267pt;}
.y8{bottom:652.717333pt;}
.y39{bottom:655.766267pt;}
.y38{bottom:670.166267pt;}
.y37{bottom:684.566267pt;}
.y7{bottom:695.650667pt;}
.y36{bottom:698.966267pt;}
.y6{bottom:710.850667pt;}
.y35{bottom:713.366267pt;}
.y34{bottom:727.766267pt;}
.y33{bottom:742.166267pt;}
.y5{bottom:744.450667pt;}
.y32{bottom:756.566267pt;}
.y4{bottom:763.650667pt;}
.y31{bottom:770.966267pt;}
.y3{bottom:782.850667pt;}
.y30{bottom:785.366267pt;}
.y1{bottom:822.231733pt;}
.h9{height:33.328125pt;}
.h8{height:33.351562pt;}
.h7{height:35.179688pt;}
.h2{height:36.119792pt;}
.h6{height:43.343750pt;}
.h4{height:43.375000pt;}
.h5{height:44.468750pt;}
.h3{height:53.666667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x4{left:81.253067pt;}
.x3{left:102.066667pt;}
.x5{left:113.340000pt;}
.x2{left:535.788800pt;}
}




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