
    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_89f8eaa760fb21126b8d6082.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854000;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_70a7859a6605c215fbc57824.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c4bb42a7891e7490bfff166c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_52423c616f563b7463f41eff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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;}
.m1{transform:matrix(0.125000,0.216506,-0.216506,0.125000,0,0);-ms-transform:matrix(0.125000,0.216506,-0.216506,0.125000,0,0);-webkit-transform:matrix(0.125000,0.216506,-0.216506,0.125000,0,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.147000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws9{word-spacing:-29.400000px;}
.ws26{word-spacing:-26.166000px;}
.ws12{word-spacing:-16.905000px;}
.ws1d{word-spacing:-14.259000px;}
.wsa{word-spacing:-11.760000px;}
.ws11{word-spacing:-10.731000px;}
.ws6{word-spacing:-10.437000px;}
.ws8{word-spacing:-9.849000px;}
.ws7{word-spacing:-8.967000px;}
.ws19{word-spacing:-8.085000px;}
.ws24{word-spacing:-7.590004px;}
.ws1f{word-spacing:-6.480000px;}
.ws29{word-spacing:-6.468000px;}
.ws1b{word-spacing:-4.557000px;}
.ws20{word-spacing:-4.320000px;}
.ws5{word-spacing:-3.381000px;}
.ws1a{word-spacing:-2.793000px;}
.ws1c{word-spacing:-2.646000px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.441000px;}
.ws1e{word-spacing:1.029000px;}
.ws23{word-spacing:6.360000px;}
.ws21{word-spacing:6.840000px;}
.ws1{word-spacing:8.085000px;}
.ws22{word-spacing:9.000000px;}
.ws15{word-spacing:9.996000px;}
.ws3{word-spacing:10.290000px;}
.ws25{word-spacing:10.584000px;}
.ws16{word-spacing:11.760000px;}
.ws27{word-spacing:12.201000px;}
.wsb{word-spacing:14.553000px;}
.ws10{word-spacing:23.814000px;}
.ws13{word-spacing:24.402000px;}
.ws18{word-spacing:26.019000px;}
.ws17{word-spacing:33.222000px;}
.wsc{word-spacing:35.721000px;}
.wsf{word-spacing:38.661000px;}
.ws4{word-spacing:44.541000px;}
.wse{word-spacing:45.570000px;}
.wsd{word-spacing:50.568000px;}
.ws2{word-spacing:123.921000px;}
.ws14{word-spacing:141.561000px;}
._3{margin-left:-56.280000px;}
._c{margin-left:-21.682500px;}
._2{margin-left:-16.884000px;}
._d{margin-left:-15.694800px;}
._7{margin-left:-13.776000px;}
._6{margin-left:-11.664000px;}
._a{margin-left:-9.984000px;}
._b{margin-left:-8.114400px;}
._11{margin-left:-6.914400px;}
._0{margin-left:-5.880000px;}
._8{margin-left:-4.800000px;}
._5{margin-left:-3.024000px;}
._4{margin-left:-1.296000px;}
._12{width:2.881200px;}
._9{width:4.272000px;}
._e{width:7.938000px;}
._10{width:11.421900px;}
._13{width:13.847400px;}
._14{width:17.875200px;}
._f{width:19.374600px;}
._1{width:22.512000px;}
.fc2{color:rgb(134,132,132);}
.fc1{color:rgb(237,28,36);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:120.000000px;}
.fs5{font-size:138.000082px;}
.fs3{font-size:147.000000px;}
.fs1{font-size:432.000000px;}
.fs2{font-size:480.000000px;}
.fs0{font-size:840.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:132.059400px;}
.y35{bottom:133.471050px;}
.y32{bottom:139.612500px;}
.y34{bottom:169.471050px;}
.y31{bottom:175.612500px;}
.y33{bottom:205.471050px;}
.y46{bottom:262.669650px;}
.y45{bottom:306.769650px;}
.y44{bottom:350.869650px;}
.y43{bottom:394.969650px;}
.y42{bottom:439.069650px;}
.y41{bottom:483.169650px;}
.y40{bottom:527.269650px;}
.y3f{bottom:571.369650px;}
.y3e{bottom:615.469650px;}
.y3d{bottom:668.073600px;}
.y37{bottom:757.361400px;}
.y36{bottom:1210.441650px;}
.y30{bottom:1399.582350px;}
.y2f{bottom:1443.682200px;}
.y2e{bottom:1487.782350px;}
.y2d{bottom:1540.386300px;}
.y2c{bottom:1645.594050px;}
.y2b{bottom:1689.694200px;}
.y2a{bottom:1733.794200px;}
.y29{bottom:1777.894050px;}
.y28{bottom:1830.498000px;}
.y3a{bottom:1875.104550px;}
.y3c{bottom:2345.000400px;}
.y27{bottom:2622.095400px;}
.y26{bottom:2666.195400px;}
.y25{bottom:2710.295400px;}
.y24{bottom:2754.395550px;}
.y23{bottom:2798.495400px;}
.y22{bottom:2842.595550px;}
.y21{bottom:2886.695400px;}
.y20{bottom:2930.795400px;}
.y38{bottom:2963.609850px;}
.y1f{bottom:2974.895550px;}
.y1e{bottom:3018.995400px;}
.y1d{bottom:3063.095550px;}
.y1c{bottom:3115.699200px;}
.y1b{bottom:3220.907250px;}
.y1a{bottom:3265.007100px;}
.y19{bottom:3309.107250px;}
.y18{bottom:3353.207550px;}
.y17{bottom:3397.307700px;}
.y16{bottom:3441.407550px;}
.y15{bottom:3485.507850px;}
.y14{bottom:3529.607700px;}
.y13{bottom:3573.707550px;}
.y3b{bottom:3604.268850px;}
.y12{bottom:3617.807700px;}
.y11{bottom:3661.907550px;}
.y10{bottom:3714.511650px;}
.yf{bottom:3802.711650px;}
.ye{bottom:3846.811500px;}
.yd{bottom:3890.911800px;}
.yc{bottom:3935.011650px;}
.yb{bottom:3979.111500px;}
.y39{bottom:3984.595500px;}
.ya{bottom:4023.211650px;}
.y9{bottom:4067.311500px;}
.y8{bottom:4111.411800px;}
.y7{bottom:4155.511650px;}
.y2{bottom:4253.578500px;}
.y1{bottom:4433.578500px;}
.y5{bottom:4721.064000px;}
.y4{bottom:4844.064000px;}
.y6{bottom:4847.992350px;}
.h8{height:83.378906px;}
.h9{height:95.885799px;}
.h6{height:99.626953px;}
.h7{height:102.067383px;}
.h5{height:102.139160px;}
.h3{height:290.736000px;}
.h4{height:323.040000px;}
.h2{height:565.320000px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xc{left:122.356650px;}
.x4{left:128.816550px;}
.x8{left:130.255350px;}
.xd{left:149.081400px;}
.xf{left:303.493800px;}
.x6{left:578.966850px;}
.x1{left:737.756400px;}
.x2{left:752.251200px;}
.x7{left:1362.950550px;}
.x3{left:1380.739500px;}
.x9{left:2325.826650px;}
.x5{left:2832.406350px;}
.xa{left:3065.809200px;}
.x10{left:3104.831550px;}
.xb{left:3230.092200px;}
.xe{left:3266.406000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.130667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-26.133333pt;}
.ws26{word-spacing:-23.258667pt;}
.ws12{word-spacing:-15.026667pt;}
.ws1d{word-spacing:-12.674667pt;}
.wsa{word-spacing:-10.453333pt;}
.ws11{word-spacing:-9.538667pt;}
.ws6{word-spacing:-9.277333pt;}
.ws8{word-spacing:-8.754667pt;}
.ws7{word-spacing:-7.970667pt;}
.ws19{word-spacing:-7.186667pt;}
.ws24{word-spacing:-6.746671pt;}
.ws1f{word-spacing:-5.760000pt;}
.ws29{word-spacing:-5.749333pt;}
.ws1b{word-spacing:-4.050667pt;}
.ws20{word-spacing:-3.840000pt;}
.ws5{word-spacing:-3.005333pt;}
.ws1a{word-spacing:-2.482667pt;}
.ws1c{word-spacing:-2.352000pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.392000pt;}
.ws1e{word-spacing:0.914667pt;}
.ws23{word-spacing:5.653333pt;}
.ws21{word-spacing:6.080000pt;}
.ws1{word-spacing:7.186667pt;}
.ws22{word-spacing:8.000000pt;}
.ws15{word-spacing:8.885333pt;}
.ws3{word-spacing:9.146667pt;}
.ws25{word-spacing:9.408000pt;}
.ws16{word-spacing:10.453333pt;}
.ws27{word-spacing:10.845333pt;}
.wsb{word-spacing:12.936000pt;}
.ws10{word-spacing:21.168000pt;}
.ws13{word-spacing:21.690667pt;}
.ws18{word-spacing:23.128000pt;}
.ws17{word-spacing:29.530667pt;}
.wsc{word-spacing:31.752000pt;}
.wsf{word-spacing:34.365333pt;}
.ws4{word-spacing:39.592000pt;}
.wse{word-spacing:40.506667pt;}
.wsd{word-spacing:44.949333pt;}
.ws2{word-spacing:110.152000pt;}
.ws14{word-spacing:125.832000pt;}
._3{margin-left:-50.026667pt;}
._c{margin-left:-19.273333pt;}
._2{margin-left:-15.008000pt;}
._d{margin-left:-13.950933pt;}
._7{margin-left:-12.245333pt;}
._6{margin-left:-10.368000pt;}
._a{margin-left:-8.874667pt;}
._b{margin-left:-7.212800pt;}
._11{margin-left:-6.146133pt;}
._0{margin-left:-5.226667pt;}
._8{margin-left:-4.266667pt;}
._5{margin-left:-2.688000pt;}
._4{margin-left:-1.152000pt;}
._12{width:2.561067pt;}
._9{width:3.797333pt;}
._e{width:7.056000pt;}
._10{width:10.152800pt;}
._13{width:12.308800pt;}
._14{width:15.889067pt;}
._f{width:17.221867pt;}
._1{width:20.010667pt;}
.fs4{font-size:106.666667pt;}
.fs5{font-size:122.666739pt;}
.fs3{font-size:130.666667pt;}
.fs1{font-size:384.000000pt;}
.fs2{font-size:426.666667pt;}
.fs0{font-size:746.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:117.386133pt;}
.y35{bottom:118.640933pt;}
.y32{bottom:124.100000pt;}
.y34{bottom:150.640933pt;}
.y31{bottom:156.100000pt;}
.y33{bottom:182.640933pt;}
.y46{bottom:233.484133pt;}
.y45{bottom:272.684133pt;}
.y44{bottom:311.884133pt;}
.y43{bottom:351.084133pt;}
.y42{bottom:390.284133pt;}
.y41{bottom:429.484133pt;}
.y40{bottom:468.684133pt;}
.y3f{bottom:507.884133pt;}
.y3e{bottom:547.084133pt;}
.y3d{bottom:593.843200pt;}
.y37{bottom:673.210133pt;}
.y36{bottom:1075.948133pt;}
.y30{bottom:1244.073200pt;}
.y2f{bottom:1283.273067pt;}
.y2e{bottom:1322.473200pt;}
.y2d{bottom:1369.232267pt;}
.y2c{bottom:1462.750267pt;}
.y2b{bottom:1501.950400pt;}
.y2a{bottom:1541.150400pt;}
.y29{bottom:1580.350267pt;}
.y28{bottom:1627.109333pt;}
.y3a{bottom:1666.759600pt;}
.y3c{bottom:2084.444800pt;}
.y27{bottom:2330.751467pt;}
.y26{bottom:2369.951467pt;}
.y25{bottom:2409.151467pt;}
.y24{bottom:2448.351600pt;}
.y23{bottom:2487.551467pt;}
.y22{bottom:2526.751600pt;}
.y21{bottom:2565.951467pt;}
.y20{bottom:2605.151467pt;}
.y38{bottom:2634.319867pt;}
.y1f{bottom:2644.351600pt;}
.y1e{bottom:2683.551467pt;}
.y1d{bottom:2722.751600pt;}
.y1c{bottom:2769.510400pt;}
.y1b{bottom:2863.028667pt;}
.y1a{bottom:2902.228533pt;}
.y19{bottom:2941.428667pt;}
.y18{bottom:2980.628933pt;}
.y17{bottom:3019.829067pt;}
.y16{bottom:3059.028933pt;}
.y15{bottom:3098.229200pt;}
.y14{bottom:3137.429067pt;}
.y13{bottom:3176.628933pt;}
.y3b{bottom:3203.794533pt;}
.y12{bottom:3215.829067pt;}
.y11{bottom:3255.028933pt;}
.y10{bottom:3301.788133pt;}
.yf{bottom:3380.188133pt;}
.ye{bottom:3419.388000pt;}
.yd{bottom:3458.588267pt;}
.yc{bottom:3497.788133pt;}
.yb{bottom:3536.988000pt;}
.y39{bottom:3541.862667pt;}
.ya{bottom:3576.188133pt;}
.y9{bottom:3615.388000pt;}
.y8{bottom:3654.588267pt;}
.y7{bottom:3693.788133pt;}
.y2{bottom:3780.958667pt;}
.y1{bottom:3940.958667pt;}
.y5{bottom:4196.501333pt;}
.y4{bottom:4305.834667pt;}
.y6{bottom:4309.326533pt;}
.h8{height:74.114583pt;}
.h9{height:85.231821pt;}
.h6{height:88.557292pt;}
.h7{height:90.726562pt;}
.h5{height:90.790365pt;}
.h3{height:258.432000pt;}
.h4{height:287.146667pt;}
.h2{height:502.506667pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xc{left:108.761467pt;}
.x4{left:114.503600pt;}
.x8{left:115.782533pt;}
.xd{left:132.516800pt;}
.xf{left:269.772267pt;}
.x6{left:514.637200pt;}
.x1{left:655.783467pt;}
.x2{left:668.667733pt;}
.x7{left:1211.511600pt;}
.x3{left:1227.324000pt;}
.x9{left:2067.401467pt;}
.x5{left:2517.694533pt;}
.xa{left:2725.163733pt;}
.x10{left:2759.850267pt;}
.xb{left:2871.193067pt;}
.xe{left:2903.472000pt;}
}




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