
    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_c2f65f0797d3fe2458bc2507.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_7b79a69326596816334ac00a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_b8ab2383d9ae635d54e96bbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940430;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_d4dbe8ae865167aff4966119.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:16.506720px;}
.ls6{letter-spacing:46.002720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._7{width:2.375040px;}
._2{width:4.245600px;}
._6{width:5.677200px;}
._d{width:7.298400px;}
._a{width:8.657520px;}
._9{width:9.681120px;}
._12{width:10.697040px;}
._14{width:11.846160px;}
._c{width:12.915360px;}
._b{width:13.924080px;}
._8{width:15.961920px;}
._e{width:16.974480px;}
._13{width:18.675840px;}
._f{width:19.713120px;}
._10{width:21.161760px;}
._11{width:22.170960px;}
._17{width:23.216880px;}
._16{width:27.541680px;}
._15{width:28.625040px;}
._18{width:29.700720px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.240000px;}
.ya{bottom:36.720000px;}
.y9{bottom:55.260000px;}
.y8{bottom:70.776000px;}
.y70{bottom:115.056000px;}
.y3c{bottom:119.196000px;}
.y6f{bottom:132.336000px;}
.y3b{bottom:136.476000px;}
.y85{bottom:144.396000px;}
.y6e{bottom:149.616000px;}
.y3a{bottom:153.750000px;}
.y84{bottom:161.670000px;}
.y6d{bottom:166.890000px;}
.y39{bottom:171.030000px;}
.y83{bottom:178.770000px;}
.y6c{bottom:184.170000px;}
.y38{bottom:188.310000px;}
.y82{bottom:196.050000px;}
.y6b{bottom:201.270000px;}
.y37{bottom:205.410000px;}
.y81{bottom:213.330000px;}
.y6a{bottom:218.550000px;}
.y36{bottom:222.690000px;}
.y80{bottom:230.610000px;}
.y69{bottom:235.830000px;}
.y35{bottom:239.970000px;}
.y7f{bottom:247.890000px;}
.y68{bottom:253.110000px;}
.y34{bottom:257.250000px;}
.y7e{bottom:265.170000px;}
.y67{bottom:270.390000px;}
.y33{bottom:274.530000px;}
.y7d{bottom:282.270000px;}
.y66{bottom:287.670000px;}
.y32{bottom:291.630000px;}
.y7c{bottom:299.550000px;}
.y65{bottom:304.770000px;}
.y31{bottom:308.910000px;}
.y7b{bottom:316.830000px;}
.y64{bottom:322.095000px;}
.y30{bottom:326.235000px;}
.y7a{bottom:334.155000px;}
.y63{bottom:339.375000px;}
.y2f{bottom:343.515000px;}
.y79{bottom:351.435000px;}
.y62{bottom:356.655000px;}
.y2e{bottom:360.795000px;}
.y78{bottom:368.715000px;}
.y61{bottom:373.935000px;}
.y2d{bottom:378.075000px;}
.y77{bottom:383.475000px;}
.y60{bottom:391.215000px;}
.y2c{bottom:397.515000px;}
.y76{bottom:401.475000px;}
.y5f{bottom:408.315000px;}
.y2b{bottom:414.795000px;}
.y75{bottom:419.475000px;}
.y5e{bottom:425.595000px;}
.y2a{bottom:432.075000px;}
.y74{bottom:437.295000px;}
.y5d{bottom:442.875000px;}
.y29{bottom:449.175000px;}
.y73{bottom:455.295000px;}
.y5c{bottom:460.155000px;}
.y28{bottom:466.455000px;}
.y71{bottom:473.295000px;}
.y5b{bottom:477.435000px;}
.y27{bottom:483.735000px;}
.y5a{bottom:494.535000px;}
.y26{bottom:501.015000px;}
.y59{bottom:511.815000px;}
.y25{bottom:518.295000px;}
.y58{bottom:529.095000px;}
.y24{bottom:535.575000px;}
.y57{bottom:546.375000px;}
.y23{bottom:552.675000px;}
.y56{bottom:563.655000px;}
.y22{bottom:569.985000px;}
.y55{bottom:580.965000px;}
.y21{bottom:587.265000px;}
.y54{bottom:598.065000px;}
.y20{bottom:604.545000px;}
.y53{bottom:615.345000px;}
.y1f{bottom:621.825000px;}
.y52{bottom:632.625000px;}
.y1e{bottom:638.925000px;}
.y51{bottom:649.905000px;}
.y1d{bottom:656.205000px;}
.y50{bottom:667.185000px;}
.y1c{bottom:673.485000px;}
.y4f{bottom:684.465000px;}
.y1b{bottom:690.765000px;}
.y4e{bottom:701.565000px;}
.y1a{bottom:708.045000px;}
.y4d{bottom:718.845000px;}
.y19{bottom:727.485000px;}
.y4c{bottom:736.125000px;}
.y18{bottom:745.125000px;}
.y4b{bottom:753.405000px;}
.y17{bottom:764.205000px;}
.y4a{bottom:770.685000px;}
.y16{bottom:783.105000px;}
.y49{bottom:787.785000px;}
.y15{bottom:802.185000px;}
.y48{bottom:805.065000px;}
.y14{bottom:821.130000px;}
.y47{bottom:822.390000px;}
.y46{bottom:839.670000px;}
.y13{bottom:840.030000px;}
.y45{bottom:856.950000px;}
.y12{bottom:859.110000px;}
.y44{bottom:874.230000px;}
.y11{bottom:878.010000px;}
.y43{bottom:891.330000px;}
.y10{bottom:897.090000px;}
.y42{bottom:908.610000px;}
.yf{bottom:915.990000px;}
.y41{bottom:925.890000px;}
.ye{bottom:934.890000px;}
.y40{bottom:943.170000px;}
.yd{bottom:953.430000px;}
.y3f{bottom:960.450000px;}
.yc{bottom:971.430000px;}
.y3e{bottom:977.730000px;}
.yb{bottom:992.130000px;}
.y3d{bottom:994.830000px;}
.y7{bottom:1013.370000px;}
.y6{bottom:1031.910000px;}
.y5{bottom:1048.290000px;}
.y4{bottom:1063.590000px;}
.y3{bottom:1105.740000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.ha{height:17.100000px;}
.h9{height:17.280000px;}
.h4{height:37.705078px;}
.h1{height:41.726953px;}
.h7{height:42.164648px;}
.h8{height:43.302656px;}
.hb{height:43.506914px;}
.h2{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:50.800781px;}
.h5{height:65.884219px;}
.h0{height:1188.000000px;}
.w2{width:221.970000px;}
.w3{width:235.470000px;}
.w4{width:248.970000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:108.035986px;}
.x2{left:135.755986px;}
.x6{left:151.949986px;}
.x4{left:154.109986px;}
.x18{left:162.029986px;}
.x12{left:245.909986px;}
.xa{left:273.809986px;}
.x14{left:331.275000px;}
.x7{left:346.214986px;}
.xd{left:373.034986px;}
.x10{left:376.274986px;}
.xb{left:381.494986px;}
.xf{left:388.874986px;}
.xe{left:395.354986px;}
.x9{left:396.614986px;}
.x16{left:407.414986px;}
.x5{left:409.034986px;}
.x17{left:410.294986px;}
.xc{left:412.814986px;}
.x11{left:424.874986px;}
.x8{left:459.074986px;}
.x3{left:532.364986px;}
.x15{left:567.465000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:14.672640pt;}
.ls6{letter-spacing:40.891307pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._7{width:2.111147pt;}
._2{width:3.773867pt;}
._6{width:5.046400pt;}
._d{width:6.487467pt;}
._a{width:7.695573pt;}
._9{width:8.605440pt;}
._12{width:9.508480pt;}
._14{width:10.529920pt;}
._c{width:11.480320pt;}
._b{width:12.376960pt;}
._8{width:14.188373pt;}
._e{width:15.088427pt;}
._13{width:16.600747pt;}
._f{width:17.522773pt;}
._10{width:18.810453pt;}
._11{width:19.707520pt;}
._17{width:20.637227pt;}
._16{width:24.481493pt;}
._15{width:25.444480pt;}
._18{width:26.400640pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.880000pt;}
.ya{bottom:32.640000pt;}
.y9{bottom:49.120000pt;}
.y8{bottom:62.912000pt;}
.y70{bottom:102.272000pt;}
.y3c{bottom:105.952000pt;}
.y6f{bottom:117.632000pt;}
.y3b{bottom:121.312000pt;}
.y85{bottom:128.352000pt;}
.y6e{bottom:132.992000pt;}
.y3a{bottom:136.666667pt;}
.y84{bottom:143.706667pt;}
.y6d{bottom:148.346667pt;}
.y39{bottom:152.026667pt;}
.y83{bottom:158.906667pt;}
.y6c{bottom:163.706667pt;}
.y38{bottom:167.386667pt;}
.y82{bottom:174.266667pt;}
.y6b{bottom:178.906667pt;}
.y37{bottom:182.586667pt;}
.y81{bottom:189.626667pt;}
.y6a{bottom:194.266667pt;}
.y36{bottom:197.946667pt;}
.y80{bottom:204.986667pt;}
.y69{bottom:209.626667pt;}
.y35{bottom:213.306667pt;}
.y7f{bottom:220.346667pt;}
.y68{bottom:224.986667pt;}
.y34{bottom:228.666667pt;}
.y7e{bottom:235.706667pt;}
.y67{bottom:240.346667pt;}
.y33{bottom:244.026667pt;}
.y7d{bottom:250.906667pt;}
.y66{bottom:255.706667pt;}
.y32{bottom:259.226667pt;}
.y7c{bottom:266.266667pt;}
.y65{bottom:270.906667pt;}
.y31{bottom:274.586667pt;}
.y7b{bottom:281.626667pt;}
.y64{bottom:286.306667pt;}
.y30{bottom:289.986667pt;}
.y7a{bottom:297.026667pt;}
.y63{bottom:301.666667pt;}
.y2f{bottom:305.346667pt;}
.y79{bottom:312.386667pt;}
.y62{bottom:317.026667pt;}
.y2e{bottom:320.706667pt;}
.y78{bottom:327.746667pt;}
.y61{bottom:332.386667pt;}
.y2d{bottom:336.066667pt;}
.y77{bottom:340.866667pt;}
.y60{bottom:347.746667pt;}
.y2c{bottom:353.346667pt;}
.y76{bottom:356.866667pt;}
.y5f{bottom:362.946667pt;}
.y2b{bottom:368.706667pt;}
.y75{bottom:372.866667pt;}
.y5e{bottom:378.306667pt;}
.y2a{bottom:384.066667pt;}
.y74{bottom:388.706667pt;}
.y5d{bottom:393.666667pt;}
.y29{bottom:399.266667pt;}
.y73{bottom:404.706667pt;}
.y5c{bottom:409.026667pt;}
.y28{bottom:414.626667pt;}
.y71{bottom:420.706667pt;}
.y5b{bottom:424.386667pt;}
.y27{bottom:429.986667pt;}
.y5a{bottom:439.586667pt;}
.y26{bottom:445.346667pt;}
.y59{bottom:454.946667pt;}
.y25{bottom:460.706667pt;}
.y58{bottom:470.306667pt;}
.y24{bottom:476.066667pt;}
.y57{bottom:485.666667pt;}
.y23{bottom:491.266667pt;}
.y56{bottom:501.026667pt;}
.y22{bottom:506.653333pt;}
.y55{bottom:516.413333pt;}
.y21{bottom:522.013333pt;}
.y54{bottom:531.613333pt;}
.y20{bottom:537.373333pt;}
.y53{bottom:546.973333pt;}
.y1f{bottom:552.733333pt;}
.y52{bottom:562.333333pt;}
.y1e{bottom:567.933333pt;}
.y51{bottom:577.693333pt;}
.y1d{bottom:583.293333pt;}
.y50{bottom:593.053333pt;}
.y1c{bottom:598.653333pt;}
.y4f{bottom:608.413333pt;}
.y1b{bottom:614.013333pt;}
.y4e{bottom:623.613333pt;}
.y1a{bottom:629.373333pt;}
.y4d{bottom:638.973333pt;}
.y19{bottom:646.653333pt;}
.y4c{bottom:654.333333pt;}
.y18{bottom:662.333333pt;}
.y4b{bottom:669.693333pt;}
.y17{bottom:679.293333pt;}
.y4a{bottom:685.053333pt;}
.y16{bottom:696.093333pt;}
.y49{bottom:700.253333pt;}
.y15{bottom:713.053333pt;}
.y48{bottom:715.613333pt;}
.y14{bottom:729.893333pt;}
.y47{bottom:731.013333pt;}
.y46{bottom:746.373333pt;}
.y13{bottom:746.693333pt;}
.y45{bottom:761.733333pt;}
.y12{bottom:763.653333pt;}
.y44{bottom:777.093333pt;}
.y11{bottom:780.453333pt;}
.y43{bottom:792.293333pt;}
.y10{bottom:797.413333pt;}
.y42{bottom:807.653333pt;}
.yf{bottom:814.213333pt;}
.y41{bottom:823.013333pt;}
.ye{bottom:831.013333pt;}
.y40{bottom:838.373333pt;}
.yd{bottom:847.493333pt;}
.y3f{bottom:853.733333pt;}
.yc{bottom:863.493333pt;}
.y3e{bottom:869.093333pt;}
.yb{bottom:881.893333pt;}
.y3d{bottom:884.293333pt;}
.y7{bottom:900.773333pt;}
.y6{bottom:917.253333pt;}
.y5{bottom:931.813333pt;}
.y4{bottom:945.413333pt;}
.y3{bottom:982.880000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.ha{height:15.200000pt;}
.h9{height:15.360000pt;}
.h4{height:33.515625pt;}
.h1{height:37.090625pt;}
.h7{height:37.479688pt;}
.h8{height:38.491250pt;}
.hb{height:38.672812pt;}
.h2{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:45.156250pt;}
.h5{height:58.563750pt;}
.h0{height:1056.000000pt;}
.w2{width:197.306667pt;}
.w3{width:209.306667pt;}
.w4{width:221.306667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:96.031988pt;}
.x2{left:120.671988pt;}
.x6{left:135.066655pt;}
.x4{left:136.986655pt;}
.x18{left:144.026655pt;}
.x12{left:218.586655pt;}
.xa{left:243.386655pt;}
.x14{left:294.466667pt;}
.x7{left:307.746655pt;}
.xd{left:331.586655pt;}
.x10{left:334.466655pt;}
.xb{left:339.106655pt;}
.xf{left:345.666655pt;}
.xe{left:351.426655pt;}
.x9{left:352.546655pt;}
.x16{left:362.146655pt;}
.x5{left:363.586655pt;}
.x17{left:364.706655pt;}
.xc{left:366.946655pt;}
.x11{left:377.666655pt;}
.x8{left:408.066655pt;}
.x3{left:473.213321pt;}
.x15{left:504.413333pt;}
}




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