
    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_0aac159a961c32123a57b554.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a3d1dc11cfe7e4c065afcaaf.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_79857b0d8d8f7b34b1a94c89.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_2be8574af19af057da2a02e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_74a96b2c1c98366ab5cf00c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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;}
.ls2{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.369360px;}
.ls5{letter-spacing:21.221280px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.700000px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-5.559840px;}
._1f{margin-left:-4.548960px;}
._26{margin-left:-3.453840px;}
._21{margin-left:-2.442960px;}
._0{margin-left:-1.179360px;}
._1{width:1.119840px;}
._6{width:2.224320px;}
._a{width:3.369600px;}
._1b{width:4.521360px;}
._25{width:5.924400px;}
._3{width:7.088640px;}
._2{width:8.327280px;}
._29{width:9.503760px;}
._1e{width:10.698480px;}
._f{width:11.810640px;}
._8{width:13.057200px;}
._9{width:14.380320px;}
._5{width:15.415920px;}
._4{width:16.426800px;}
._22{width:17.581440px;}
._28{width:18.869760px;}
._2d{width:19.944480px;}
._27{width:22.063440px;}
._c{width:24.092640px;}
._2c{width:25.500000px;}
._d{width:27.378000px;}
._1d{width:29.399760px;}
._e{width:30.663360px;}
._23{width:32.095440px;}
._24{width:33.274800px;}
._1c{width:35.177520px;}
._1a{width:37.065600px;}
._18{width:38.329200px;}
._19{width:39.700320px;}
._2b{width:40.940640px;}
._17{width:42.204240px;}
._14{width:43.443360px;}
._15{width:44.478720px;}
._16{width:48.606480px;}
._7{width:49.954320px;}
._b{width:51.133680px;}
._12{width:52.330080px;}
._13{width:53.391120px;}
._2e{width:62.084880px;}
._2f{width:63.601200px;}
._10{width:66.296880px;}
._11{width:67.476240px;}
._30{width:69.258000px;}
._2a{width:82.134000px;}
._31{width:843.240000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y2e{bottom:92.916000px;}
.y54{bottom:98.856000px;}
.y2d{bottom:117.036000px;}
.y53{bottom:122.976000px;}
.y2c{bottom:141.156000px;}
.y52{bottom:147.096000px;}
.y2b{bottom:165.450000px;}
.y51{bottom:171.210000px;}
.y2a{bottom:189.570000px;}
.y50{bottom:195.330000px;}
.y29{bottom:213.690000px;}
.y4f{bottom:219.450000px;}
.y4e{bottom:243.750000px;}
.y28{bottom:249.870000px;}
.y4d{bottom:267.870000px;}
.y27{bottom:274.035000px;}
.y4c{bottom:292.035000px;}
.y26{bottom:298.155000px;}
.y4b{bottom:316.155000px;}
.y25{bottom:322.275000px;}
.y4a{bottom:340.275000px;}
.y24{bottom:346.395000px;}
.y49{bottom:364.395000px;}
.y23{bottom:370.515000px;}
.y48{bottom:388.515000px;}
.y22{bottom:394.815000px;}
.y47{bottom:412.815000px;}
.y21{bottom:418.935000px;}
.y46{bottom:436.935000px;}
.y20{bottom:443.055000px;}
.y45{bottom:461.055000px;}
.y1f{bottom:467.175000px;}
.y44{bottom:485.175000px;}
.y1e{bottom:491.295000px;}
.y43{bottom:509.295000px;}
.y1d{bottom:515.415000px;}
.y42{bottom:533.415000px;}
.y1c{bottom:539.715000px;}
.y41{bottom:557.745000px;}
.y1b{bottom:563.865000px;}
.y40{bottom:581.865000px;}
.y1a{bottom:587.985000px;}
.y3f{bottom:605.985000px;}
.y64{bottom:618.045000px;}
.y19{bottom:624.165000px;}
.y3e{bottom:630.105000px;}
.y63{bottom:642.165000px;}
.y18{bottom:648.285000px;}
.y3d{bottom:654.225000px;}
.y62{bottom:666.285000px;}
.y17{bottom:672.405000px;}
.y3c{bottom:678.345000px;}
.y61{bottom:690.405000px;}
.y16{bottom:696.525000px;}
.y3b{bottom:702.465000px;}
.y60{bottom:714.525000px;}
.y15{bottom:720.645000px;}
.y3a{bottom:726.765000px;}
.y5f{bottom:738.645000px;}
.y14{bottom:744.765000px;}
.y39{bottom:750.885000px;}
.y5e{bottom:762.765000px;}
.y13{bottom:769.065000px;}
.y38{bottom:775.005000px;}
.y5d{bottom:787.065000px;}
.y12{bottom:793.185000px;}
.y37{bottom:799.125000px;}
.y5c{bottom:811.185000px;}
.y11{bottom:817.305000px;}
.y36{bottom:823.245000px;}
.y5b{bottom:835.305000px;}
.y10{bottom:841.470000px;}
.y35{bottom:847.410000px;}
.y5a{bottom:859.470000px;}
.yf{bottom:865.590000px;}
.y34{bottom:871.710000px;}
.y59{bottom:883.590000px;}
.ye{bottom:889.710000px;}
.y33{bottom:895.830000px;}
.y58{bottom:907.710000px;}
.yd{bottom:914.010000px;}
.y32{bottom:919.950000px;}
.y57{bottom:932.010000px;}
.yc{bottom:938.130000px;}
.y31{bottom:944.070000px;}
.y56{bottom:956.130000px;}
.yb{bottom:962.250000px;}
.y30{bottom:968.190000px;}
.y55{bottom:980.250000px;}
.ya{bottom:986.370000px;}
.y2f{bottom:1004.370000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h3{height:74.820586px;}
.h5{height:75.519844px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h6{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x4{left:110.555987px;}
.xc{left:112.355987px;}
.x7{left:127.295987px;}
.x3{left:133.055987px;}
.xa{left:139.355987px;}
.x9{left:181.649987px;}
.x8{left:295.049987px;}
.xb{left:318.854987px;}
.x5{left:392.834987px;}
.x2{left:430.814987px;}
.x6{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.328320pt;}
.ls5{letter-spacing:18.863360pt;}
.ws5{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.400000pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-4.942080pt;}
._1f{margin-left:-4.043520pt;}
._26{margin-left:-3.070080pt;}
._21{margin-left:-2.171520pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.995413pt;}
._6{width:1.977173pt;}
._a{width:2.995200pt;}
._1b{width:4.018987pt;}
._25{width:5.266133pt;}
._3{width:6.301013pt;}
._2{width:7.402027pt;}
._29{width:8.447787pt;}
._1e{width:9.509760pt;}
._f{width:10.498347pt;}
._8{width:11.606400pt;}
._9{width:12.782507pt;}
._5{width:13.703040pt;}
._4{width:14.601600pt;}
._22{width:15.627947pt;}
._28{width:16.773120pt;}
._2d{width:17.728427pt;}
._27{width:19.611947pt;}
._c{width:21.415680pt;}
._2c{width:22.666667pt;}
._d{width:24.336000pt;}
._1d{width:26.133120pt;}
._e{width:27.256320pt;}
._23{width:28.529280pt;}
._24{width:29.577600pt;}
._1c{width:31.268907pt;}
._1a{width:32.947200pt;}
._18{width:34.070400pt;}
._19{width:35.289173pt;}
._2b{width:36.391680pt;}
._17{width:37.514880pt;}
._14{width:38.616320pt;}
._15{width:39.536640pt;}
._16{width:43.205760pt;}
._7{width:44.403840pt;}
._b{width:45.452160pt;}
._12{width:46.515627pt;}
._13{width:47.458773pt;}
._2e{width:55.186560pt;}
._2f{width:56.534400pt;}
._10{width:58.930560pt;}
._11{width:59.978880pt;}
._30{width:61.562667pt;}
._2a{width:73.008000pt;}
._31{width:749.546667pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y2e{bottom:82.592000pt;}
.y54{bottom:87.872000pt;}
.y2d{bottom:104.032000pt;}
.y53{bottom:109.312000pt;}
.y2c{bottom:125.472000pt;}
.y52{bottom:130.752000pt;}
.y2b{bottom:147.066667pt;}
.y51{bottom:152.186667pt;}
.y2a{bottom:168.506667pt;}
.y50{bottom:173.626667pt;}
.y29{bottom:189.946667pt;}
.y4f{bottom:195.066667pt;}
.y4e{bottom:216.666667pt;}
.y28{bottom:222.106667pt;}
.y4d{bottom:238.106667pt;}
.y27{bottom:243.586667pt;}
.y4c{bottom:259.586667pt;}
.y26{bottom:265.026667pt;}
.y4b{bottom:281.026667pt;}
.y25{bottom:286.466667pt;}
.y4a{bottom:302.466667pt;}
.y24{bottom:307.906667pt;}
.y49{bottom:323.906667pt;}
.y23{bottom:329.346667pt;}
.y48{bottom:345.346667pt;}
.y22{bottom:350.946667pt;}
.y47{bottom:366.946667pt;}
.y21{bottom:372.386667pt;}
.y46{bottom:388.386667pt;}
.y20{bottom:393.826667pt;}
.y45{bottom:409.826667pt;}
.y1f{bottom:415.266667pt;}
.y44{bottom:431.266667pt;}
.y1e{bottom:436.706667pt;}
.y43{bottom:452.706667pt;}
.y1d{bottom:458.146667pt;}
.y42{bottom:474.146667pt;}
.y1c{bottom:479.746667pt;}
.y41{bottom:495.773333pt;}
.y1b{bottom:501.213333pt;}
.y40{bottom:517.213333pt;}
.y1a{bottom:522.653333pt;}
.y3f{bottom:538.653333pt;}
.y64{bottom:549.373333pt;}
.y19{bottom:554.813333pt;}
.y3e{bottom:560.093333pt;}
.y63{bottom:570.813333pt;}
.y18{bottom:576.253333pt;}
.y3d{bottom:581.533333pt;}
.y62{bottom:592.253333pt;}
.y17{bottom:597.693333pt;}
.y3c{bottom:602.973333pt;}
.y61{bottom:613.693333pt;}
.y16{bottom:619.133333pt;}
.y3b{bottom:624.413333pt;}
.y60{bottom:635.133333pt;}
.y15{bottom:640.573333pt;}
.y3a{bottom:646.013333pt;}
.y5f{bottom:656.573333pt;}
.y14{bottom:662.013333pt;}
.y39{bottom:667.453333pt;}
.y5e{bottom:678.013333pt;}
.y13{bottom:683.613333pt;}
.y38{bottom:688.893333pt;}
.y5d{bottom:699.613333pt;}
.y12{bottom:705.053333pt;}
.y37{bottom:710.333333pt;}
.y5c{bottom:721.053333pt;}
.y11{bottom:726.493333pt;}
.y36{bottom:731.773333pt;}
.y5b{bottom:742.493333pt;}
.y10{bottom:747.973333pt;}
.y35{bottom:753.253333pt;}
.y5a{bottom:763.973333pt;}
.yf{bottom:769.413333pt;}
.y34{bottom:774.853333pt;}
.y59{bottom:785.413333pt;}
.ye{bottom:790.853333pt;}
.y33{bottom:796.293333pt;}
.y58{bottom:806.853333pt;}
.yd{bottom:812.453333pt;}
.y32{bottom:817.733333pt;}
.y57{bottom:828.453333pt;}
.yc{bottom:833.893333pt;}
.y31{bottom:839.173333pt;}
.y56{bottom:849.893333pt;}
.yb{bottom:855.333333pt;}
.y30{bottom:860.613333pt;}
.y55{bottom:871.333333pt;}
.ya{bottom:876.773333pt;}
.y2f{bottom:892.773333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h3{height:66.507188pt;}
.h5{height:67.128750pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h6{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x4{left:98.271988pt;}
.xc{left:99.871988pt;}
.x7{left:113.151988pt;}
.x3{left:118.271988pt;}
.xa{left:123.871988pt;}
.x9{left:161.466655pt;}
.x8{left:262.266655pt;}
.xb{left:283.426655pt;}
.x5{left:349.186655pt;}
.x2{left:382.946655pt;}
.x6{left:396.866655pt;}
}




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