
    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_a3d685562d51dbe3fff9671c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_d21d6007309818c2350a6724.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_f1b53255dcff5e76c8933fd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.924805;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_47227a070daf75c5dd35fcf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.098633;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(0.250706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-34.800000px;}
.v2{vertical-align:-28.200000px;}
.v6{vertical-align:-16.800000px;}
.v1{vertical-align:-6.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.600000px;}
.va{vertical-align:16.800000px;}
.v4{vertical-align:28.200000px;}
.v9{vertical-align:35.100000px;}
.v7{vertical-align:51.900000px;}
.v8{vertical-align:87.900000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.066000px;}
.ls0{letter-spacing:0.204000px;}
.ls12{letter-spacing:1.689297px;}
.lsa{letter-spacing:1.932000px;}
.ls14{letter-spacing:2.842141px;}
.ls4{letter-spacing:2.952000px;}
.lsc{letter-spacing:3.000000px;}
.ls10{letter-spacing:3.185072px;}
.ls8{letter-spacing:3.432000px;}
.lsb{letter-spacing:3.492000px;}
.ls13{letter-spacing:3.979174px;}
.lse{letter-spacing:4.839287px;}
.ls6{letter-spacing:4.992000px;}
.ls11{letter-spacing:5.233641px;}
.ls9{letter-spacing:5.448000px;}
.lsf{letter-spacing:6.430261px;}
.ls7{letter-spacing:6.648000px;}
.ls5{letter-spacing:15.132000px;}
.lsd{letter-spacing:34.297184px;}
.ls1{letter-spacing:82.440000px;}
.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;}
}
.ws6{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-10.800000px;}
.ws7{word-spacing:-10.770000px;}
.ws0{word-spacing:-10.500000px;}
.ws4{word-spacing:-2.700000px;}
.ws8{word-spacing:-2.651427px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:318.910709px;}
.ws5{word-spacing:319.600800px;}
._10{margin-left:-10.656000px;}
._1{margin-left:-4.896000px;}
._8{margin-left:-2.868000px;}
._f{margin-left:-1.224000px;}
._3{width:1.014000px;}
._0{width:2.016000px;}
._2{width:3.552000px;}
._4{width:4.638000px;}
._7{width:5.766000px;}
._5{width:7.404000px;}
._6{width:8.610000px;}
._9{width:10.152000px;}
._c{width:11.328000px;}
._12{width:13.104000px;}
._11{width:14.400000px;}
._13{width:16.794000px;}
._b{width:20.172000px;}
._a{width:21.420000px;}
._d{width:27.000000px;}
._15{width:35.640000px;}
._14{width:36.864000px;}
._e{width:54.420000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs5{font-size:43.080000px;}
.fs3{font-size:43.200000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:72.096000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y53{bottom:6.505500px;}
.y4b{bottom:6.525000px;}
.y52{bottom:21.388500px;}
.y4a{bottom:21.450000px;}
.y2e{bottom:94.891500px;}
.y57{bottom:102.391500px;}
.y68{bottom:105.241500px;}
.y2d{bottom:115.591500px;}
.y56{bottom:123.091500px;}
.y67{bottom:125.941500px;}
.y2c{bottom:136.291500px;}
.y55{bottom:143.791500px;}
.y66{bottom:146.641500px;}
.y2b{bottom:156.991500px;}
.y54{bottom:164.491500px;}
.y65{bottom:167.341500px;}
.y2a{bottom:177.691500px;}
.y51{bottom:181.464000px;}
.y64{bottom:188.041500px;}
.y29{bottom:198.391500px;}
.y63{bottom:208.741500px;}
.y28{bottom:219.091500px;}
.y62{bottom:229.441500px;}
.y50{bottom:238.366500px;}
.y27{bottom:239.791500px;}
.y61{bottom:250.141500px;}
.y4f{bottom:259.066500px;}
.y26{bottom:260.491500px;}
.y60{bottom:270.841500px;}
.y4e{bottom:279.766500px;}
.y25{bottom:281.191500px;}
.y5f{bottom:291.541500px;}
.y4d{bottom:300.466500px;}
.y24{bottom:301.891500px;}
.y4c{bottom:321.166500px;}
.y23{bottom:322.591500px;}
.y5e{bottom:332.941500px;}
.y49{bottom:338.083500px;}
.y22{bottom:343.291500px;}
.y5d{bottom:353.641500px;}
.y21{bottom:363.991500px;}
.y5c{bottom:374.341500px;}
.y20{bottom:384.691500px;}
.y48{bottom:395.041500px;}
.y1f{bottom:405.391500px;}
.y47{bottom:415.741500px;}
.y1e{bottom:426.091500px;}
.y46{bottom:436.441500px;}
.y1d{bottom:446.791500px;}
.y45{bottom:457.141500px;}
.y1c{bottom:467.491500px;}
.y44{bottom:477.841500px;}
.y1b{bottom:488.191500px;}
.y43{bottom:498.541500px;}
.y1a{bottom:508.891500px;}
.y5b{bottom:519.241500px;}
.y19{bottom:529.591500px;}
.y42{bottom:539.941500px;}
.y18{bottom:550.291500px;}
.y41{bottom:560.641500px;}
.y17{bottom:570.991500px;}
.y40{bottom:581.341500px;}
.y16{bottom:591.691500px;}
.y5a{bottom:602.041500px;}
.y15{bottom:612.391500px;}
.y59{bottom:622.741500px;}
.y14{bottom:633.091500px;}
.y58{bottom:643.441500px;}
.y3f{bottom:664.141500px;}
.y13{bottom:674.491500px;}
.y3e{bottom:684.841500px;}
.y3d{bottom:705.541500px;}
.y12{bottom:717.166500px;}
.y3c{bottom:726.241500px;}
.y3b{bottom:746.941500px;}
.y11{bottom:767.641500px;}
.y10{bottom:788.341500px;}
.yf{bottom:809.041500px;}
.ye{bottom:829.741500px;}
.yd{bottom:850.441500px;}
.yc{bottom:871.141500px;}
.yb{bottom:891.841500px;}
.ya{bottom:912.541500px;}
.y3a{bottom:933.241500px;}
.y39{bottom:953.941500px;}
.y9{bottom:958.666500px;}
.y38{bottom:974.641500px;}
.y37{bottom:995.341500px;}
.y8{bottom:1005.691500px;}
.y36{bottom:1016.041500px;}
.y7{bottom:1026.391500px;}
.y35{bottom:1036.741500px;}
.y6{bottom:1054.141500px;}
.y34{bottom:1057.441500px;}
.y5{bottom:1067.791500px;}
.y33{bottom:1078.141500px;}
.y4{bottom:1088.491500px;}
.y32{bottom:1098.841500px;}
.y3{bottom:1109.191500px;}
.y31{bottom:1119.541500px;}
.y30{bottom:1140.241500px;}
.y2{bottom:1155.316500px;}
.y2f{bottom:1160.941500px;}
.h5{height:29.572266px;}
.h4{height:50.695312px;}
.hb{height:52.950000px;}
.h8{height:53.098500px;}
.h7{height:57.772266px;}
.h6{height:62.121094px;}
.he{height:62.203922px;}
.hd{height:66.230695px;}
.ha{height:66.417187px;}
.h3{height:67.593750px;}
.hc{height:117.986695px;}
.h9{height:118.317188px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w3{width:396.973500px;}
.w4{width:406.875000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:71.400000px;}
.x2{left:85.200000px;}
.x5{left:112.200000px;}
.x6{left:139.200000px;}
.x8{left:219.600000px;}
.x9{left:229.350000px;}
.x4{left:251.625000px;}
.x1{left:330.975000px;}
.x3{left:336.375000px;}
@media print{
.v3{vertical-align:-30.933333pt;}
.v2{vertical-align:-25.066667pt;}
.v6{vertical-align:-14.933333pt;}
.v1{vertical-align:-5.866667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.866667pt;}
.va{vertical-align:14.933333pt;}
.v4{vertical-align:25.066667pt;}
.v9{vertical-align:31.200000pt;}
.v7{vertical-align:46.133333pt;}
.v8{vertical-align:78.133333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.058667pt;}
.ls0{letter-spacing:0.181333pt;}
.ls12{letter-spacing:1.501597pt;}
.lsa{letter-spacing:1.717333pt;}
.ls14{letter-spacing:2.526347pt;}
.ls4{letter-spacing:2.624000pt;}
.lsc{letter-spacing:2.666667pt;}
.ls10{letter-spacing:2.831175pt;}
.ls8{letter-spacing:3.050667pt;}
.lsb{letter-spacing:3.104000pt;}
.ls13{letter-spacing:3.537044pt;}
.lse{letter-spacing:4.301588pt;}
.ls6{letter-spacing:4.437333pt;}
.ls11{letter-spacing:4.652126pt;}
.ls9{letter-spacing:4.842667pt;}
.lsf{letter-spacing:5.715788pt;}
.ls7{letter-spacing:5.909333pt;}
.ls5{letter-spacing:13.450667pt;}
.lsd{letter-spacing:30.486386pt;}
.ls1{letter-spacing:73.280000pt;}
.ws6{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-9.600000pt;}
.ws7{word-spacing:-9.573333pt;}
.ws0{word-spacing:-9.333333pt;}
.ws4{word-spacing:-2.400000pt;}
.ws8{word-spacing:-2.356824pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:283.476186pt;}
.ws5{word-spacing:284.089600pt;}
._10{margin-left:-9.472000pt;}
._1{margin-left:-4.352000pt;}
._8{margin-left:-2.549333pt;}
._f{margin-left:-1.088000pt;}
._3{width:0.901333pt;}
._0{width:1.792000pt;}
._2{width:3.157333pt;}
._4{width:4.122667pt;}
._7{width:5.125333pt;}
._5{width:6.581333pt;}
._6{width:7.653333pt;}
._9{width:9.024000pt;}
._c{width:10.069333pt;}
._12{width:11.648000pt;}
._11{width:12.800000pt;}
._13{width:14.928000pt;}
._b{width:17.930667pt;}
._a{width:19.040000pt;}
._d{width:24.000000pt;}
._15{width:31.680000pt;}
._14{width:32.768000pt;}
._e{width:48.373333pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:38.293333pt;}
.fs3{font-size:38.400000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:64.085333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y53{bottom:5.782667pt;}
.y4b{bottom:5.800000pt;}
.y52{bottom:19.012000pt;}
.y4a{bottom:19.066667pt;}
.y2e{bottom:84.348000pt;}
.y57{bottom:91.014667pt;}
.y68{bottom:93.548000pt;}
.y2d{bottom:102.748000pt;}
.y56{bottom:109.414667pt;}
.y67{bottom:111.948000pt;}
.y2c{bottom:121.148000pt;}
.y55{bottom:127.814667pt;}
.y66{bottom:130.348000pt;}
.y2b{bottom:139.548000pt;}
.y54{bottom:146.214667pt;}
.y65{bottom:148.748000pt;}
.y2a{bottom:157.948000pt;}
.y51{bottom:161.301333pt;}
.y64{bottom:167.148000pt;}
.y29{bottom:176.348000pt;}
.y63{bottom:185.548000pt;}
.y28{bottom:194.748000pt;}
.y62{bottom:203.948000pt;}
.y50{bottom:211.881333pt;}
.y27{bottom:213.148000pt;}
.y61{bottom:222.348000pt;}
.y4f{bottom:230.281333pt;}
.y26{bottom:231.548000pt;}
.y60{bottom:240.748000pt;}
.y4e{bottom:248.681333pt;}
.y25{bottom:249.948000pt;}
.y5f{bottom:259.148000pt;}
.y4d{bottom:267.081333pt;}
.y24{bottom:268.348000pt;}
.y4c{bottom:285.481333pt;}
.y23{bottom:286.748000pt;}
.y5e{bottom:295.948000pt;}
.y49{bottom:300.518667pt;}
.y22{bottom:305.148000pt;}
.y5d{bottom:314.348000pt;}
.y21{bottom:323.548000pt;}
.y5c{bottom:332.748000pt;}
.y20{bottom:341.948000pt;}
.y48{bottom:351.148000pt;}
.y1f{bottom:360.348000pt;}
.y47{bottom:369.548000pt;}
.y1e{bottom:378.748000pt;}
.y46{bottom:387.948000pt;}
.y1d{bottom:397.148000pt;}
.y45{bottom:406.348000pt;}
.y1c{bottom:415.548000pt;}
.y44{bottom:424.748000pt;}
.y1b{bottom:433.948000pt;}
.y43{bottom:443.148000pt;}
.y1a{bottom:452.348000pt;}
.y5b{bottom:461.548000pt;}
.y19{bottom:470.748000pt;}
.y42{bottom:479.948000pt;}
.y18{bottom:489.148000pt;}
.y41{bottom:498.348000pt;}
.y17{bottom:507.548000pt;}
.y40{bottom:516.748000pt;}
.y16{bottom:525.948000pt;}
.y5a{bottom:535.148000pt;}
.y15{bottom:544.348000pt;}
.y59{bottom:553.548000pt;}
.y14{bottom:562.748000pt;}
.y58{bottom:571.948000pt;}
.y3f{bottom:590.348000pt;}
.y13{bottom:599.548000pt;}
.y3e{bottom:608.748000pt;}
.y3d{bottom:627.148000pt;}
.y12{bottom:637.481333pt;}
.y3c{bottom:645.548000pt;}
.y3b{bottom:663.948000pt;}
.y11{bottom:682.348000pt;}
.y10{bottom:700.748000pt;}
.yf{bottom:719.148000pt;}
.ye{bottom:737.548000pt;}
.yd{bottom:755.948000pt;}
.yc{bottom:774.348000pt;}
.yb{bottom:792.748000pt;}
.ya{bottom:811.148000pt;}
.y3a{bottom:829.548000pt;}
.y39{bottom:847.948000pt;}
.y9{bottom:852.148000pt;}
.y38{bottom:866.348000pt;}
.y37{bottom:884.748000pt;}
.y8{bottom:893.948000pt;}
.y36{bottom:903.148000pt;}
.y7{bottom:912.348000pt;}
.y35{bottom:921.548000pt;}
.y6{bottom:937.014667pt;}
.y34{bottom:939.948000pt;}
.y5{bottom:949.148000pt;}
.y33{bottom:958.348000pt;}
.y4{bottom:967.548000pt;}
.y32{bottom:976.748000pt;}
.y3{bottom:985.948000pt;}
.y31{bottom:995.148000pt;}
.y30{bottom:1013.548000pt;}
.y2{bottom:1026.948000pt;}
.y2f{bottom:1031.948000pt;}
.h5{height:26.286458pt;}
.h4{height:45.062500pt;}
.hb{height:47.066667pt;}
.h8{height:47.198667pt;}
.h7{height:51.353125pt;}
.h6{height:55.218750pt;}
.he{height:55.292375pt;}
.hd{height:58.871729pt;}
.ha{height:59.037500pt;}
.h3{height:60.083333pt;}
.hc{height:104.877063pt;}
.h9{height:105.170833pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w3{width:352.865333pt;}
.w4{width:361.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:63.466667pt;}
.x2{left:75.733333pt;}
.x5{left:99.733333pt;}
.x6{left:123.733333pt;}
.x8{left:195.200000pt;}
.x9{left:203.866667pt;}
.x4{left:223.666667pt;}
.x1{left:294.200000pt;}
.x3{left:299.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; }
  