
    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_b9af4d25c83c84791cc15fa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_332b49012d89f60515a26232.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_8bb3c2c758b8496a4378991a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_fdd054b3a70af50fcc7c07bc.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_80e73ac175746578130eb949.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws14{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws18{word-spacing:-38.862000px;}
.ws5{word-spacing:-38.657400px;}
.ws6{word-spacing:-38.648700px;}
.ws30{word-spacing:-38.647800px;}
.ws13{word-spacing:-38.644200px;}
.ws1b{word-spacing:-38.444400px;}
.ws8{word-spacing:-38.443200px;}
.ws10{word-spacing:-38.439900px;}
.ws7{word-spacing:-38.437200px;}
.ws9{word-spacing:-38.432700px;}
.ws38{word-spacing:-38.431200px;}
.ws2a{word-spacing:-38.430000px;}
.ws33{word-spacing:-38.426400px;}
.ws3{word-spacing:-38.379300px;}
.ws3c{word-spacing:-38.359800px;}
.ws25{word-spacing:-38.349900px;}
.ws24{word-spacing:-38.143500px;}
.ws3b{word-spacing:-38.142000px;}
.ws1c{word-spacing:-37.944000px;}
.ws20{word-spacing:-37.929600px;}
.ws2d{word-spacing:-37.926900px;}
.ws37{word-spacing:-37.922700px;}
.ws2c{word-spacing:-37.722600px;}
.ws4{word-spacing:-37.700100px;}
.ws3f{word-spacing:-37.197000px;}
.ws31{word-spacing:-35.045100px;}
.ws17{word-spacing:-34.834500px;}
.ws2f{word-spacing:-34.566000px;}
.ws32{word-spacing:-33.609600px;}
.ws2{word-spacing:-33.547800px;}
.ws27{word-spacing:-33.116400px;}
.ws35{word-spacing:-32.400000px;}
.ws19{word-spacing:-32.181000px;}
.ws1d{word-spacing:-31.461000px;}
.ws1a{word-spacing:-30.744000px;}
.ws1f{word-spacing:-30.742200px;}
.wsd{word-spacing:-30.733200px;}
.ws1e{word-spacing:-28.584000px;}
.ws39{word-spacing:-28.581000px;}
.wse{word-spacing:-28.074300px;}
.ws15{word-spacing:-27.851400px;}
.ws16{word-spacing:-24.971400px;}
.ws2e{word-spacing:-24.966900px;}
.ws21{word-spacing:-24.480000px;}
.ws36{word-spacing:-22.091400px;}
.ws34{word-spacing:-19.440000px;}
.ws26{word-spacing:-18.495000px;}
.wsa{word-spacing:-17.981100px;}
.wsb{word-spacing:-17.773200px;}
.ws22{word-spacing:-17.274600px;}
.wsf{word-spacing:-15.822000px;}
.ws3a{word-spacing:-13.680000px;}
.wsc{word-spacing:-12.730200px;}
.ws3d{word-spacing:-12.240000px;}
.ws29{word-spacing:-11.282400px;}
.ws2b{word-spacing:-7.902000px;}
.ws28{word-spacing:-5.317200px;}
.ws3e{word-spacing:-3.600000px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:8.150400px;}
.ws11{word-spacing:23.768100px;}
.ws12{word-spacing:23.997600px;}
._7{margin-left:-2.355900px;}
._3{margin-left:-1.267800px;}
._1{width:1.894200px;}
._2{width:18.789300px;}
._14{width:20.053800px;}
._15{width:21.069000px;}
._0{width:22.505400px;}
._e{width:23.973900px;}
._c{width:25.248300px;}
._6{width:26.629200px;}
._d{width:28.391700px;}
._8{width:29.514300px;}
._a{width:30.723900px;}
._b{width:32.213700px;}
._f{width:34.214100px;}
._16{width:35.513400px;}
._10{width:37.257000px;}
._4{width:39.293100px;}
._17{width:43.272000px;}
._5{width:45.346200px;}
._13{width:46.746000px;}
._12{width:51.674400px;}
._18{width:53.856000px;}
._11{width:65.665200px;}
._9{width:81.005400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:32.475000px;}
.y2d{bottom:109.515000px;}
.y2c{bottom:145.336500px;}
.y2b{bottom:166.036500px;}
.y2a{bottom:186.736500px;}
.y29{bottom:222.375000px;}
.y28{bottom:243.075000px;}
.y27{bottom:263.775000px;}
.y26{bottom:299.415000px;}
.y25{bottom:335.236500px;}
.y43{bottom:337.215000px;}
.y24{bottom:355.936500px;}
.y42{bottom:357.915000px;}
.y23{bottom:376.636500px;}
.y41{bottom:393.736500px;}
.y22{bottom:397.336500px;}
.y40{bottom:429.375000px;}
.y21{bottom:432.975000px;}
.y3f{bottom:450.075000px;}
.y20{bottom:453.675000px;}
.y1f{bottom:474.375000px;}
.y3e{bottom:485.715000px;}
.y1e{bottom:495.075000px;}
.y3d{bottom:521.536500px;}
.y1d{bottom:530.715000px;}
.y3c{bottom:557.175000px;}
.y1c{bottom:566.536500px;}
.y1b{bottom:587.236500px;}
.y3b{bottom:592.815000px;}
.y1a{bottom:607.936500px;}
.y3a{bottom:613.515000px;}
.y39{bottom:634.215000px;}
.y19{bottom:643.575000px;}
.y18{bottom:664.275000px;}
.y38{bottom:670.036500px;}
.y17{bottom:684.975000px;}
.y37{bottom:690.736500px;}
.y16{bottom:705.675000px;}
.y36{bottom:711.436500px;}
.y15{bottom:741.315000px;}
.y35{bottom:747.075000px;}
.y14{bottom:777.136500px;}
.y34{bottom:782.715000px;}
.y13{bottom:797.836500px;}
.y33{bottom:803.415000px;}
.y32{bottom:824.115000px;}
.y12{bottom:833.475000px;}
.y11{bottom:854.175000px;}
.y31{bottom:859.936500px;}
.y10{bottom:874.875000px;}
.y30{bottom:880.636500px;}
.yf{bottom:895.575000px;}
.y2f{bottom:901.336500px;}
.ye{bottom:916.275000px;}
.yd{bottom:936.975000px;}
.yc{bottom:972.615000px;}
.yb{bottom:993.315000px;}
.ya{bottom:1014.015000px;}
.y9{bottom:1034.715000px;}
.y8{bottom:1055.415000px;}
.y2e{bottom:1070.536500px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x5{left:235.980000px;}
.x6{left:282.238500px;}
.xa{left:450.720000px;}
.x8{left:508.860000px;}
.x3{left:515.880000px;}
.x7{left:554.580000px;}
.x2{left:604.620000px;}
.xb{left:613.080000px;}
.x9{left:654.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws14{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws18{word-spacing:-34.544000pt;}
.ws5{word-spacing:-34.362133pt;}
.ws6{word-spacing:-34.354400pt;}
.ws30{word-spacing:-34.353600pt;}
.ws13{word-spacing:-34.350400pt;}
.ws1b{word-spacing:-34.172800pt;}
.ws8{word-spacing:-34.171733pt;}
.ws10{word-spacing:-34.168800pt;}
.ws7{word-spacing:-34.166400pt;}
.ws9{word-spacing:-34.162400pt;}
.ws38{word-spacing:-34.161067pt;}
.ws2a{word-spacing:-34.160000pt;}
.ws33{word-spacing:-34.156800pt;}
.ws3{word-spacing:-34.114933pt;}
.ws3c{word-spacing:-34.097600pt;}
.ws25{word-spacing:-34.088800pt;}
.ws24{word-spacing:-33.905333pt;}
.ws3b{word-spacing:-33.904000pt;}
.ws1c{word-spacing:-33.728000pt;}
.ws20{word-spacing:-33.715200pt;}
.ws2d{word-spacing:-33.712800pt;}
.ws37{word-spacing:-33.709067pt;}
.ws2c{word-spacing:-33.531200pt;}
.ws4{word-spacing:-33.511200pt;}
.ws3f{word-spacing:-33.064000pt;}
.ws31{word-spacing:-31.151200pt;}
.ws17{word-spacing:-30.964000pt;}
.ws2f{word-spacing:-30.725333pt;}
.ws32{word-spacing:-29.875200pt;}
.ws2{word-spacing:-29.820267pt;}
.ws27{word-spacing:-29.436800pt;}
.ws35{word-spacing:-28.800000pt;}
.ws19{word-spacing:-28.605333pt;}
.ws1d{word-spacing:-27.965333pt;}
.ws1a{word-spacing:-27.328000pt;}
.ws1f{word-spacing:-27.326400pt;}
.wsd{word-spacing:-27.318400pt;}
.ws1e{word-spacing:-25.408000pt;}
.ws39{word-spacing:-25.405333pt;}
.wse{word-spacing:-24.954933pt;}
.ws15{word-spacing:-24.756800pt;}
.ws16{word-spacing:-22.196800pt;}
.ws2e{word-spacing:-22.192800pt;}
.ws21{word-spacing:-21.760000pt;}
.ws36{word-spacing:-19.636800pt;}
.ws34{word-spacing:-17.280000pt;}
.ws26{word-spacing:-16.440000pt;}
.wsa{word-spacing:-15.983200pt;}
.wsb{word-spacing:-15.798400pt;}
.ws22{word-spacing:-15.355200pt;}
.wsf{word-spacing:-14.064000pt;}
.ws3a{word-spacing:-12.160000pt;}
.wsc{word-spacing:-11.315733pt;}
.ws3d{word-spacing:-10.880000pt;}
.ws29{word-spacing:-10.028800pt;}
.ws2b{word-spacing:-7.024000pt;}
.ws28{word-spacing:-4.726400pt;}
.ws3e{word-spacing:-3.200000pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:7.244800pt;}
.ws11{word-spacing:21.127200pt;}
.ws12{word-spacing:21.331200pt;}
._7{margin-left:-2.094133pt;}
._3{margin-left:-1.126933pt;}
._1{width:1.683733pt;}
._2{width:16.701600pt;}
._14{width:17.825600pt;}
._15{width:18.728000pt;}
._0{width:20.004800pt;}
._e{width:21.310133pt;}
._c{width:22.442933pt;}
._6{width:23.670400pt;}
._d{width:25.237067pt;}
._8{width:26.234933pt;}
._a{width:27.310133pt;}
._b{width:28.634400pt;}
._f{width:30.412533pt;}
._16{width:31.567467pt;}
._10{width:33.117333pt;}
._4{width:34.927200pt;}
._17{width:38.464000pt;}
._5{width:40.307733pt;}
._13{width:41.552000pt;}
._12{width:45.932800pt;}
._18{width:47.872000pt;}
._11{width:58.369067pt;}
._9{width:72.004800pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:28.866667pt;}
.y2d{bottom:97.346667pt;}
.y2c{bottom:129.188000pt;}
.y2b{bottom:147.588000pt;}
.y2a{bottom:165.988000pt;}
.y29{bottom:197.666667pt;}
.y28{bottom:216.066667pt;}
.y27{bottom:234.466667pt;}
.y26{bottom:266.146667pt;}
.y25{bottom:297.988000pt;}
.y43{bottom:299.746667pt;}
.y24{bottom:316.388000pt;}
.y42{bottom:318.146667pt;}
.y23{bottom:334.788000pt;}
.y41{bottom:349.988000pt;}
.y22{bottom:353.188000pt;}
.y40{bottom:381.666667pt;}
.y21{bottom:384.866667pt;}
.y3f{bottom:400.066667pt;}
.y20{bottom:403.266667pt;}
.y1f{bottom:421.666667pt;}
.y3e{bottom:431.746667pt;}
.y1e{bottom:440.066667pt;}
.y3d{bottom:463.588000pt;}
.y1d{bottom:471.746667pt;}
.y3c{bottom:495.266667pt;}
.y1c{bottom:503.588000pt;}
.y1b{bottom:521.988000pt;}
.y3b{bottom:526.946667pt;}
.y1a{bottom:540.388000pt;}
.y3a{bottom:545.346667pt;}
.y39{bottom:563.746667pt;}
.y19{bottom:572.066667pt;}
.y18{bottom:590.466667pt;}
.y38{bottom:595.588000pt;}
.y17{bottom:608.866667pt;}
.y37{bottom:613.988000pt;}
.y16{bottom:627.266667pt;}
.y36{bottom:632.388000pt;}
.y15{bottom:658.946667pt;}
.y35{bottom:664.066667pt;}
.y14{bottom:690.788000pt;}
.y34{bottom:695.746667pt;}
.y13{bottom:709.188000pt;}
.y33{bottom:714.146667pt;}
.y32{bottom:732.546667pt;}
.y12{bottom:740.866667pt;}
.y11{bottom:759.266667pt;}
.y31{bottom:764.388000pt;}
.y10{bottom:777.666667pt;}
.y30{bottom:782.788000pt;}
.yf{bottom:796.066667pt;}
.y2f{bottom:801.188000pt;}
.ye{bottom:814.466667pt;}
.yd{bottom:832.866667pt;}
.yc{bottom:864.546667pt;}
.yb{bottom:882.946667pt;}
.ya{bottom:901.346667pt;}
.y9{bottom:919.746667pt;}
.y8{bottom:938.146667pt;}
.y2e{bottom:951.588000pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x5{left:209.760000pt;}
.x6{left:250.878667pt;}
.xa{left:400.640000pt;}
.x8{left:452.320000pt;}
.x3{left:458.560000pt;}
.x7{left:492.960000pt;}
.x2{left:537.440000pt;}
.xb{left:544.960000pt;}
.x9{left:581.760000pt;}
}




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