
    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_18cdf2b3f1eec19eb43d2720.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_7de08e62db19ab5d76818206.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8214cc3726f6252c13e41246.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_1d02f1f9ae6e9c2763266121.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148926;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_c9d905ff40bb9d8e5864d079.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222168;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_82da47bdb4b409badeab4d4e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v5{vertical-align:-96.480000px;}
.v4{vertical-align:-16.560000px;}
.v2{vertical-align:-7.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.920000px;}
.v3{vertical-align:16.560000px;}
.ls14{letter-spacing:-0.690000px;}
.ls15{letter-spacing:-0.684000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.018720px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.lse{letter-spacing:0.252720px;}
.lsd{letter-spacing:0.341280px;}
.lsf{letter-spacing:0.350640px;}
.lsb{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.378600px;}
.ls11{letter-spacing:0.378720px;}
.ls12{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.440000px;}
.ls7{letter-spacing:6.300000px;}
.ls3{letter-spacing:8.069040px;}
.ls1{letter-spacing:9.092880px;}
.ls0{letter-spacing:44.460000px;}
.ls8{letter-spacing:80.460000px;}
.ls5{letter-spacing:111.540000px;}
.ls10{letter-spacing:122.021280px;}
.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.438600px;}
.ws1{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws2{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.370000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-2910.929520px;}
._14{margin-left:-2203.656000px;}
._13{margin-left:-511.999200px;}
._d{margin-left:-21.780000px;}
._c{margin-left:-9.360000px;}
._f{margin-left:-7.920000px;}
._2d{margin-left:-6.233760px;}
._4{margin-left:-5.138640px;}
._3{margin-left:-3.538080px;}
._21{margin-left:-2.527200px;}
._0{margin-left:-1.263600px;}
._a{width:1.095120px;}
._1d{width:2.883120px;}
._7{width:4.036800px;}
._6{width:5.163600px;}
._10{width:6.683280px;}
._e{width:8.440560px;}
._24{width:10.361520px;}
._2b{width:11.625120px;}
._2a{width:12.888720px;}
._2f{width:13.899600px;}
._22{width:14.994720px;}
._18{width:16.258320px;}
._20{width:18.027360px;}
._23{width:20.049120px;}
._1f{width:22.660560px;}
._8{width:23.671440px;}
._b{width:24.927600px;}
._2c{width:26.741520px;}
._19{width:28.388880px;}
._2{width:30.013680px;}
._1{width:31.451520px;}
._27{width:32.465520px;}
._25{width:33.714720px;}
._26{width:34.857840px;}
._1c{width:36.897120px;}
._1b{width:38.076480px;}
._2e{width:42.259440px;}
._29{width:43.299360px;}
._5{width:44.422320px;}
._1a{width:45.826560px;}
._28{width:50.207040px;}
._17{width:63.516960px;}
._9{width:71.014320px;}
._1e{width:79.438320px;}
._15{width:110.650080px;}
._16{width:111.827760px;}
._12{width:1090.240080px;}
.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:98.856000px;}
.y58{bottom:110.736000px;}
.y2d{bottom:123.156000px;}
.y57{bottom:134.856000px;}
.y2c{bottom:147.276000px;}
.y56{bottom:159.150000px;}
.y2b{bottom:171.390000px;}
.y55{bottom:183.270000px;}
.y2a{bottom:195.510000px;}
.y54{bottom:207.390000px;}
.y29{bottom:219.630000px;}
.y53{bottom:231.510000px;}
.y28{bottom:243.750000px;}
.y52{bottom:255.630000px;}
.y27{bottom:267.870000px;}
.y51{bottom:279.795000px;}
.y26{bottom:292.215000px;}
.y50{bottom:303.915000px;}
.y25{bottom:316.335000px;}
.y4f{bottom:328.215000px;}
.y24{bottom:340.455000px;}
.y4e{bottom:352.335000px;}
.y23{bottom:364.575000px;}
.y4d{bottom:376.455000px;}
.y22{bottom:388.695000px;}
.y4c{bottom:400.575000px;}
.y21{bottom:412.815000px;}
.y4b{bottom:424.695000px;}
.y20{bottom:437.115000px;}
.y4a{bottom:448.815000px;}
.y1f{bottom:461.235000px;}
.y49{bottom:473.115000px;}
.y1e{bottom:485.355000px;}
.y48{bottom:497.235000px;}
.y1d{bottom:509.475000px;}
.y47{bottom:521.355000px;}
.y1c{bottom:533.595000px;}
.y46{bottom:545.475000px;}
.y1b{bottom:557.745000px;}
.y45{bottom:569.625000px;}
.y44{bottom:593.745000px;}
.y1a{bottom:606.165000px;}
.y43{bottom:618.045000px;}
.y18{bottom:630.285000px;}
.y19{bottom:632.445000px;}
.y42{bottom:642.165000px;}
.y17{bottom:654.405000px;}
.y41{bottom:666.285000px;}
.y16{bottom:678.525000px;}
.y40{bottom:690.405000px;}
.y15{bottom:702.645000px;}
.y3f{bottom:714.525000px;}
.y14{bottom:726.765000px;}
.y3e{bottom:738.645000px;}
.y13{bottom:751.065000px;}
.y3d{bottom:762.765000px;}
.y12{bottom:775.185000px;}
.y3c{bottom:787.065000px;}
.y11{bottom:799.305000px;}
.y3b{bottom:811.185000px;}
.y10{bottom:823.425000px;}
.y3a{bottom:835.305000px;}
.yf{bottom:847.590000px;}
.y39{bottom:859.470000px;}
.ye{bottom:871.710000px;}
.y38{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y37{bottom:907.710000px;}
.yc{bottom:920.130000px;}
.y36{bottom:932.010000px;}
.yb{bottom:944.250000px;}
.y35{bottom:956.130000px;}
.ya{bottom:968.370000px;}
.y34{bottom:980.250000px;}
.y33{bottom:1004.370000px;}
.y9{bottom:1004.550000px;}
.y32{bottom:1028.490000px;}
.y8{bottom:1028.670000px;}
.y31{bottom:1052.610000px;}
.y7{bottom:1064.850000px;}
.y30{bottom:1076.730000px;}
.y6{bottom:1088.970000px;}
.y2f{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h7{height:78.604805px;}
.h6{height:79.324805px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h8{height:87.859687px;}
.h4{height:93.023789px;}
.h5{height:95.164805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:80.099987px;}
.x1{left:85.319987px;}
.x3{left:86.759987px;}
.x5{left:105.155987px;}
.xe{left:119.195987px;}
.xa{left:134.315987px;}
.x9{left:139.355987px;}
.x6{left:171.749987px;}
.xd{left:281.909987px;}
.x8{left:295.589987px;}
.x7{left:298.874987px;}
.x4{left:304.274987px;}
.xf{left:313.094987px;}
.x2{left:430.814987px;}
.xb{left:650.624987px;}
@media print{
.v5{vertical-align:-85.760000pt;}
.v4{vertical-align:-14.720000pt;}
.v2{vertical-align:-7.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.040000pt;}
.v3{vertical-align:14.720000pt;}
.ls14{letter-spacing:-0.613333pt;}
.ls15{letter-spacing:-0.608000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.224640pt;}
.lsd{letter-spacing:0.303360pt;}
.lsf{letter-spacing:0.311680pt;}
.lsb{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.336533pt;}
.ls11{letter-spacing:0.336640pt;}
.ls12{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls7{letter-spacing:5.600000pt;}
.ls3{letter-spacing:7.172480pt;}
.ls1{letter-spacing:8.082560pt;}
.ls0{letter-spacing:39.520000pt;}
.ls8{letter-spacing:71.520000pt;}
.ls5{letter-spacing:99.146667pt;}
.ls10{letter-spacing:108.463360pt;}
.ws5{word-spacing:-19.056533pt;}
.ws1{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws2{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.106667pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-2587.492907pt;}
._14{margin-left:-1958.805333pt;}
._13{margin-left:-455.110400pt;}
._d{margin-left:-19.360000pt;}
._c{margin-left:-8.320000pt;}
._f{margin-left:-7.040000pt;}
._2d{margin-left:-5.541120pt;}
._4{margin-left:-4.567680pt;}
._3{margin-left:-3.144960pt;}
._21{margin-left:-2.246400pt;}
._0{margin-left:-1.123200pt;}
._a{width:0.973440pt;}
._1d{width:2.562773pt;}
._7{width:3.588267pt;}
._6{width:4.589867pt;}
._10{width:5.940693pt;}
._e{width:7.502720pt;}
._24{width:9.210240pt;}
._2b{width:10.333440pt;}
._2a{width:11.456640pt;}
._2f{width:12.355200pt;}
._22{width:13.328640pt;}
._18{width:14.451840pt;}
._20{width:16.024320pt;}
._23{width:17.821440pt;}
._1f{width:20.142720pt;}
._8{width:21.041280pt;}
._b{width:22.157867pt;}
._2c{width:23.770240pt;}
._19{width:25.234560pt;}
._2{width:26.678827pt;}
._1{width:27.956907pt;}
._27{width:28.858240pt;}
._25{width:29.968640pt;}
._26{width:30.984747pt;}
._1c{width:32.797440pt;}
._1b{width:33.845760pt;}
._2e{width:37.563947pt;}
._29{width:38.488320pt;}
._5{width:39.486507pt;}
._1a{width:40.734720pt;}
._28{width:44.628480pt;}
._17{width:56.459520pt;}
._9{width:63.123840pt;}
._1e{width:70.611840pt;}
._15{width:98.355627pt;}
._16{width:99.402453pt;}
._12{width:969.102293pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y2e{bottom:87.872000pt;}
.y58{bottom:98.432000pt;}
.y2d{bottom:109.472000pt;}
.y57{bottom:119.872000pt;}
.y2c{bottom:130.912000pt;}
.y56{bottom:141.466667pt;}
.y2b{bottom:152.346667pt;}
.y55{bottom:162.906667pt;}
.y2a{bottom:173.786667pt;}
.y54{bottom:184.346667pt;}
.y29{bottom:195.226667pt;}
.y53{bottom:205.786667pt;}
.y28{bottom:216.666667pt;}
.y52{bottom:227.226667pt;}
.y27{bottom:238.106667pt;}
.y51{bottom:248.706667pt;}
.y26{bottom:259.746667pt;}
.y50{bottom:270.146667pt;}
.y25{bottom:281.186667pt;}
.y4f{bottom:291.746667pt;}
.y24{bottom:302.626667pt;}
.y4e{bottom:313.186667pt;}
.y23{bottom:324.066667pt;}
.y4d{bottom:334.626667pt;}
.y22{bottom:345.506667pt;}
.y4c{bottom:356.066667pt;}
.y21{bottom:366.946667pt;}
.y4b{bottom:377.506667pt;}
.y20{bottom:388.546667pt;}
.y4a{bottom:398.946667pt;}
.y1f{bottom:409.986667pt;}
.y49{bottom:420.546667pt;}
.y1e{bottom:431.426667pt;}
.y48{bottom:441.986667pt;}
.y1d{bottom:452.866667pt;}
.y47{bottom:463.426667pt;}
.y1c{bottom:474.306667pt;}
.y46{bottom:484.866667pt;}
.y1b{bottom:495.773333pt;}
.y45{bottom:506.333333pt;}
.y44{bottom:527.773333pt;}
.y1a{bottom:538.813333pt;}
.y43{bottom:549.373333pt;}
.y18{bottom:560.253333pt;}
.y19{bottom:562.173333pt;}
.y42{bottom:570.813333pt;}
.y17{bottom:581.693333pt;}
.y41{bottom:592.253333pt;}
.y16{bottom:603.133333pt;}
.y40{bottom:613.693333pt;}
.y15{bottom:624.573333pt;}
.y3f{bottom:635.133333pt;}
.y14{bottom:646.013333pt;}
.y3e{bottom:656.573333pt;}
.y13{bottom:667.613333pt;}
.y3d{bottom:678.013333pt;}
.y12{bottom:689.053333pt;}
.y3c{bottom:699.613333pt;}
.y11{bottom:710.493333pt;}
.y3b{bottom:721.053333pt;}
.y10{bottom:731.933333pt;}
.y3a{bottom:742.493333pt;}
.yf{bottom:753.413333pt;}
.y39{bottom:763.973333pt;}
.ye{bottom:774.853333pt;}
.y38{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y37{bottom:806.853333pt;}
.yc{bottom:817.893333pt;}
.y36{bottom:828.453333pt;}
.yb{bottom:839.333333pt;}
.y35{bottom:849.893333pt;}
.ya{bottom:860.773333pt;}
.y34{bottom:871.333333pt;}
.y33{bottom:892.773333pt;}
.y9{bottom:892.933333pt;}
.y32{bottom:914.213333pt;}
.y8{bottom:914.373333pt;}
.y31{bottom:935.653333pt;}
.y7{bottom:946.533333pt;}
.y30{bottom:957.093333pt;}
.y6{bottom:967.973333pt;}
.y2f{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h7{height:69.870937pt;}
.h6{height:70.510937pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h8{height:78.097500pt;}
.h4{height:82.687813pt;}
.h5{height:84.590937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:71.199988pt;}
.x1{left:75.839988pt;}
.x3{left:77.119988pt;}
.x5{left:93.471988pt;}
.xe{left:105.951988pt;}
.xa{left:119.391988pt;}
.x9{left:123.871988pt;}
.x6{left:152.666655pt;}
.xd{left:250.586655pt;}
.x8{left:262.746655pt;}
.x7{left:265.666655pt;}
.x4{left:270.466655pt;}
.xf{left:278.306655pt;}
.x2{left:382.946655pt;}
.xb{left:578.333322pt;}
}




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