
    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_6f1661cfaaf76b92d45ec055.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941895;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_ece51fd13a5f3e16ffb0a8fb.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_1e93469a4883b12f5b6610ca.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2100d63865429ec5c4424888.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b375b124f26518700f98501b.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.178560px;}
.ls1{letter-spacing:1.800000px;}
.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;}
}
.ws1{word-spacing:-20.880000px;}
.ws0{word-spacing:-18.875520px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-4.319040px;}
._2{margin-left:-2.412000px;}
._1{margin-left:-1.254240px;}
._0{width:1.157760px;}
._3{width:3.152640px;}
._19{width:4.298400px;}
._10{width:6.198720px;}
._22{width:7.260480px;}
._b{width:8.606880px;}
._a{width:10.133280px;}
._23{width:11.142720px;}
._f{width:12.288960px;}
._13{width:14.126400px;}
._1a{width:15.644160px;}
._12{width:16.705440px;}
._11{width:17.969760px;}
._6{width:19.572480px;}
._2e{width:22.283520px;}
._21{width:23.594400px;}
._14{width:24.816960px;}
._15{width:26.058240px;}
._5{width:27.073440px;}
._4{width:28.481760px;}
._33{width:30.088800px;}
._1c{width:31.092960px;}
._1b{width:32.407200px;}
._2f{width:34.338240px;}
._30{width:36.091680px;}
._26{width:37.429440px;}
._1e{width:39.278880px;}
._20{width:40.307040px;}
._1f{width:41.690880px;}
._2b{width:43.018080px;}
._2a{width:44.612160px;}
._27{width:46.950720px;}
._28{width:48.030720px;}
._31{width:50.492640px;}
._32{width:51.545280px;}
._7{width:52.584000px;}
._9{width:53.813280px;}
._8{width:54.883200px;}
._1d{width:56.734080px;}
._18{width:57.735360px;}
._17{width:59.048640px;}
._35{width:64.822560px;}
._36{width:65.948640px;}
._34{width:67.652160px;}
._24{width:69.513120px;}
._25{width:70.670880px;}
._29{width:72.394560px;}
._e{width:74.569440px;}
._d{width:75.778560px;}
._2c{width:77.206560px;}
._2d{width:78.563040px;}
._16{width:83.020320px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.y7{bottom:23.400000px;}
.y2{bottom:24.120000px;}
.y6{bottom:49.680000px;}
.y5{bottom:79.230000px;}
.y57{bottom:92.556000px;}
.y20{bottom:101.556000px;}
.y3a{bottom:117.036000px;}
.y56{bottom:128.916000px;}
.y1f{bottom:137.556000px;}
.y4f{bottom:140.796000px;}
.y39{bottom:153.390000px;}
.y55{bottom:164.910000px;}
.y1e{bottom:173.910000px;}
.y4e{bottom:177.150000px;}
.y38{bottom:189.390000px;}
.y54{bottom:201.315000px;}
.y4d{bottom:213.195000px;}
.y1d{bottom:222.195000px;}
.y37{bottom:225.795000px;}
.y53{bottom:237.675000px;}
.y4c{bottom:249.555000px;}
.y36{bottom:262.155000px;}
.y1c{bottom:270.435000px;}
.y52{bottom:273.675000px;}
.y4b{bottom:285.915000px;}
.y35{bottom:298.155000px;}
.y1b{bottom:306.795000px;}
.y4a{bottom:321.945000px;}
.y34{bottom:346.425000px;}
.y1a{bottom:354.705000px;}
.y49{bottom:358.305000px;}
.y19{bottom:391.065000px;}
.y48{bottom:394.305000px;}
.y33{bottom:394.665000px;}
.y18{bottom:427.425000px;}
.y47{bottom:430.665000px;}
.y32{bottom:431.025000px;}
.y17{bottom:463.470000px;}
.y46{bottom:467.070000px;}
.y31{bottom:479.310000px;}
.y16{bottom:499.830000px;}
.y45{bottom:503.070000px;}
.y30{bottom:515.310000px;}
.y15{bottom:536.190000px;}
.y44{bottom:539.430000px;}
.y5b{bottom:551.310000px;}
.y2f{bottom:551.670000px;}
.y14{bottom:572.190000px;}
.y43{bottom:575.460000px;}
.y2e{bottom:587.700000px;}
.y13{bottom:608.580000px;}
.y42{bottom:611.820000px;}
.y5a{bottom:623.700000px;}
.y2d{bottom:624.060000px;}
.y41{bottom:648.180000px;}
.y12{bottom:656.820000px;}
.y59{bottom:660.060000px;}
.y2c{bottom:660.420000px;}
.y40{bottom:684.180000px;}
.y2b{bottom:696.420000px;}
.y11{bottom:705.090000px;}
.y62{bottom:708.690000px;}
.y3f{bottom:720.570000px;}
.y58{bottom:732.450000px;}
.y2a{bottom:732.810000px;}
.y10{bottom:753.330000px;}
.y3e{bottom:756.930000px;}
.y51{bottom:768.810000px;}
.y29{bottom:781.050000px;}
.yf{bottom:789.330000px;}
.y3d{bottom:792.930000px;}
.y61{bottom:793.290000px;}
.y50{bottom:805.170000px;}
.ye{bottom:827.895000px;}
.y28{bottom:829.335000px;}
.y3c{bottom:841.215000px;}
.y60{bottom:841.575000px;}
.y27{bottom:865.335000px;}
.yd{bottom:869.655000px;}
.y3b{bottom:877.575000px;}
.yc{bottom:911.415000px;}
.y26{bottom:913.575000px;}
.y5f{bottom:925.815000px;}
.y25{bottom:949.935000px;}
.yb{bottom:953.205000px;}
.y5e{bottom:962.205000px;}
.y24{bottom:986.325000px;}
.ya{bottom:1004.685000px;}
.y5d{bottom:1010.445000px;}
.y23{bottom:1022.325000px;}
.y5c{bottom:1046.805000px;}
.y9{bottom:1052.925000px;}
.y22{bottom:1058.685000px;}
.y8{bottom:1091.490000px;}
.y21{bottom:1094.730000px;}
.y4{bottom:1141.890000px;}
.y1{bottom:1194.090000px;}
.h2{height:50.585625px;}
.h9{height:58.561875px;}
.h5{height:63.781875px;}
.h4{height:73.679062px;}
.h7{height:81.970312px;}
.h8{height:84.172500px;}
.h6{height:97.233750px;}
.h3{height:119.196000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:127.475987px;}
.x3{left:132.155973px;}
.x10{left:159.554987px;}
.xd{left:164.594987px;}
.x4{left:238.064973px;}
.xb{left:285.944987px;}
.xe{left:288.464987px;}
.x5{left:290.984973px;}
.x8{left:292.064987px;}
.x9{left:304.664987px;}
.xa{left:306.824987px;}
.x6{left:365.909987px;}
.xf{left:419.189987px;}
.x12{left:424.979987px;}
.x11{left:427.859987px;}
.xc{left:478.259987px;}
.x7{left:494.459987px;}
.x2{left:821.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.158720pt;}
.ls1{letter-spacing:1.600000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws0{word-spacing:-16.778240pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-3.839147pt;}
._2{margin-left:-2.144000pt;}
._1{margin-left:-1.114880pt;}
._0{width:1.029120pt;}
._3{width:2.802347pt;}
._19{width:3.820800pt;}
._10{width:5.509973pt;}
._22{width:6.453760pt;}
._b{width:7.650560pt;}
._a{width:9.007360pt;}
._23{width:9.904640pt;}
._f{width:10.923520pt;}
._13{width:12.556800pt;}
._1a{width:13.905920pt;}
._12{width:14.849280pt;}
._11{width:15.973120pt;}
._6{width:17.397760pt;}
._2e{width:19.807573pt;}
._21{width:20.972800pt;}
._14{width:22.059520pt;}
._15{width:23.162880pt;}
._5{width:24.065280pt;}
._4{width:25.317120pt;}
._33{width:26.745600pt;}
._1c{width:27.638187pt;}
._1b{width:28.806400pt;}
._2f{width:30.522880pt;}
._30{width:32.081493pt;}
._26{width:33.270613pt;}
._1e{width:34.914560pt;}
._20{width:35.828480pt;}
._1f{width:37.058560pt;}
._2b{width:38.238293pt;}
._2a{width:39.655253pt;}
._27{width:41.733973pt;}
._28{width:42.693973pt;}
._31{width:44.882347pt;}
._32{width:45.818027pt;}
._7{width:46.741333pt;}
._9{width:47.834027pt;}
._8{width:48.785067pt;}
._1d{width:50.430293pt;}
._18{width:51.320320pt;}
._17{width:52.487680pt;}
._35{width:57.620053pt;}
._36{width:58.621013pt;}
._34{width:60.135253pt;}
._24{width:61.789440pt;}
._25{width:62.818560pt;}
._29{width:64.350720pt;}
._e{width:66.283947pt;}
._d{width:67.358720pt;}
._2c{width:68.628053pt;}
._2d{width:69.833813pt;}
._16{width:73.795840pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.y7{bottom:20.800000pt;}
.y2{bottom:21.440000pt;}
.y6{bottom:44.160000pt;}
.y5{bottom:70.426667pt;}
.y57{bottom:82.272000pt;}
.y20{bottom:90.272000pt;}
.y3a{bottom:104.032000pt;}
.y56{bottom:114.592000pt;}
.y1f{bottom:122.272000pt;}
.y4f{bottom:125.152000pt;}
.y39{bottom:136.346667pt;}
.y55{bottom:146.586667pt;}
.y1e{bottom:154.586667pt;}
.y4e{bottom:157.466667pt;}
.y38{bottom:168.346667pt;}
.y54{bottom:178.946667pt;}
.y4d{bottom:189.506667pt;}
.y1d{bottom:197.506667pt;}
.y37{bottom:200.706667pt;}
.y53{bottom:211.266667pt;}
.y4c{bottom:221.826667pt;}
.y36{bottom:233.026667pt;}
.y1c{bottom:240.386667pt;}
.y52{bottom:243.266667pt;}
.y4b{bottom:254.146667pt;}
.y35{bottom:265.026667pt;}
.y1b{bottom:272.706667pt;}
.y4a{bottom:286.173333pt;}
.y34{bottom:307.933333pt;}
.y1a{bottom:315.293333pt;}
.y49{bottom:318.493333pt;}
.y19{bottom:347.613333pt;}
.y48{bottom:350.493333pt;}
.y33{bottom:350.813333pt;}
.y18{bottom:379.933333pt;}
.y47{bottom:382.813333pt;}
.y32{bottom:383.133333pt;}
.y17{bottom:411.973333pt;}
.y46{bottom:415.173333pt;}
.y31{bottom:426.053333pt;}
.y16{bottom:444.293333pt;}
.y45{bottom:447.173333pt;}
.y30{bottom:458.053333pt;}
.y15{bottom:476.613333pt;}
.y44{bottom:479.493333pt;}
.y5b{bottom:490.053333pt;}
.y2f{bottom:490.373333pt;}
.y14{bottom:508.613333pt;}
.y43{bottom:511.520000pt;}
.y2e{bottom:522.400000pt;}
.y13{bottom:540.960000pt;}
.y42{bottom:543.840000pt;}
.y5a{bottom:554.400000pt;}
.y2d{bottom:554.720000pt;}
.y41{bottom:576.160000pt;}
.y12{bottom:583.840000pt;}
.y59{bottom:586.720000pt;}
.y2c{bottom:587.040000pt;}
.y40{bottom:608.160000pt;}
.y2b{bottom:619.040000pt;}
.y11{bottom:626.746667pt;}
.y62{bottom:629.946667pt;}
.y3f{bottom:640.506667pt;}
.y58{bottom:651.066667pt;}
.y2a{bottom:651.386667pt;}
.y10{bottom:669.626667pt;}
.y3e{bottom:672.826667pt;}
.y51{bottom:683.386667pt;}
.y29{bottom:694.266667pt;}
.yf{bottom:701.626667pt;}
.y3d{bottom:704.826667pt;}
.y61{bottom:705.146667pt;}
.y50{bottom:715.706667pt;}
.ye{bottom:735.906667pt;}
.y28{bottom:737.186667pt;}
.y3c{bottom:747.746667pt;}
.y60{bottom:748.066667pt;}
.y27{bottom:769.186667pt;}
.yd{bottom:773.026667pt;}
.y3b{bottom:780.066667pt;}
.yc{bottom:810.146667pt;}
.y26{bottom:812.066667pt;}
.y5f{bottom:822.946667pt;}
.y25{bottom:844.386667pt;}
.yb{bottom:847.293333pt;}
.y5e{bottom:855.293333pt;}
.y24{bottom:876.733333pt;}
.ya{bottom:893.053333pt;}
.y5d{bottom:898.173333pt;}
.y23{bottom:908.733333pt;}
.y5c{bottom:930.493333pt;}
.y9{bottom:935.933333pt;}
.y22{bottom:941.053333pt;}
.y8{bottom:970.213333pt;}
.y21{bottom:973.093333pt;}
.y4{bottom:1015.013333pt;}
.y1{bottom:1061.413333pt;}
.h2{height:44.965000pt;}
.h9{height:52.055000pt;}
.h5{height:56.695000pt;}
.h4{height:65.492500pt;}
.h7{height:72.862500pt;}
.h8{height:74.820000pt;}
.h6{height:86.430000pt;}
.h3{height:105.952000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:113.311988pt;}
.x3{left:117.471976pt;}
.x10{left:141.826655pt;}
.xd{left:146.306655pt;}
.x4{left:211.613309pt;}
.xb{left:254.173322pt;}
.xe{left:256.413322pt;}
.x5{left:258.653309pt;}
.x8{left:259.613322pt;}
.x9{left:270.813322pt;}
.xa{left:272.733322pt;}
.x6{left:325.253322pt;}
.xf{left:372.613322pt;}
.x12{left:377.759988pt;}
.x11{left:380.319988pt;}
.xc{left:425.119988pt;}
.x7{left:439.519988pt;}
.x2{left:729.893322pt;}
}




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