
    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_ab820bd1303dfb5c95ac5d1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902344;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_24209d9555ad9bc3e5ca8a84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008789;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_57cdda249fd0fcda9f22927a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_4488a5bc5f6cdf3295226bf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012207;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.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,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;}
.v1{vertical-align:143.436000px;}
.ls3{letter-spacing:-13.410000px;}
.ls2{letter-spacing:-4.171800px;}
.ls1{letter-spacing:-1.788000px;}
.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;}
}
.ws2{word-spacing:-129.795120px;}
.ws0{word-spacing:-129.795117px;}
.ws1{word-spacing:-48.673170px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-39.203424px;}
._8{margin-left:-29.402171px;}
._11{margin-left:-27.411537px;}
._13{margin-left:-25.826977px;}
._17{margin-left:-24.186194px;}
._16{margin-left:-19.861236px;}
._12{margin-left:-18.278265px;}
._a{margin-left:-15.895664px;}
._2{margin-left:-14.305012px;}
._c{margin-left:-11.124501px;}
._6{margin-left:-8.939374px;}
._7{margin-left:-7.350443px;}
._9{margin-left:-5.362790px;}
._3{margin-left:-4.172383px;}
._f{margin-left:-3.169658px;}
._5{margin-left:-1.790378px;}
._4{width:1.787398px;}
._d{width:3.976300px;}
._e{width:5.562847px;}
._18{width:7.748350px;}
._b{width:30.000950px;}
._10{width:31.576512px;}
._19{width:35.167061px;}
._0{width:353.890191px;}
._14{width:8718.477243px;}
._15{width:8719.517353px;}
.fc4{color:rgb(0,102,204);}
.fc3{color:rgb(51,51,102);}
.fc2{color:rgb(0,104,55);}
.fc1{color:rgb(193,39,45);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:176.592000px;}
.fs4{font-size:198.665995px;}
.fs5{font-size:198.666000px;}
.fs6{font-size:298.002000px;}
.fs3{font-size:529.775988px;}
.fs1{font-size:529.776000px;}
.fs0{font-size:607.038000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000078px;}
.y45{bottom:437.254800px;}
.y44{bottom:496.855800px;}
.y43{bottom:556.456800px;}
.y42{bottom:616.057800px;}
.y41{bottom:675.658800px;}
.y40{bottom:735.258300px;}
.y3f{bottom:794.859300px;}
.y3e{bottom:854.460300px;}
.y3d{bottom:914.061300px;}
.y3c{bottom:973.660800px;}
.y3b{bottom:1033.261800px;}
.y3a{bottom:1092.862800px;}
.y39{bottom:1275.685800px;}
.y38{bottom:1335.286800px;}
.y2b{bottom:1348.968300px;}
.y2a{bottom:1408.567800px;}
.y37{bottom:1422.501300px;}
.y29{bottom:1468.168800px;}
.y36{bottom:1482.117300px;}
.y35{bottom:1483.756800px;}
.y28{bottom:1527.769800px;}
.y34{bottom:1541.718300px;}
.y27{bottom:1587.370800px;}
.y33{bottom:1601.319300px;}
.y26{bottom:1646.971800px;}
.ya{bottom:1680.499800px;}
.y25{bottom:1706.572800px;}
.y32{bottom:1747.290300px;}
.y24{bottom:1766.172300px;}
.y31{bottom:1806.891300px;}
.y23{bottom:1825.771800px;}
.y30{bottom:1866.490800px;}
.y22{bottom:1885.371300px;}
.y2f{bottom:1926.091800px;}
.y21{bottom:1944.972300px;}
.y2e{bottom:1985.692800px;}
.y20{bottom:2004.573300px;}
.y2d{bottom:2045.293800px;}
.y1f{bottom:2064.172800px;}
.y2c{bottom:2104.894800px;}
.y1e{bottom:2123.772300px;}
.y9{bottom:2179.774981px;}
.y8{bottom:2204.014800px;}
.y1d{bottom:2345.136300px;}
.y1c{bottom:2404.737300px;}
.y1b{bottom:2464.336800px;}
.y50{bottom:2513.064300px;}
.y1a{bottom:2523.937800px;}
.y4f{bottom:2572.665300px;}
.y19{bottom:2583.537300px;}
.y4e{bottom:2632.264800px;}
.y18{bottom:2643.138300px;}
.y4d{bottom:2691.865800px;}
.y17{bottom:2702.739300px;}
.y4c{bottom:2751.466800px;}
.y51{bottom:2769.109800px;}
.y4b{bottom:2811.066300px;}
.y7{bottom:2864.644800px;}
.y4a{bottom:2870.667300px;}
.y49{bottom:2930.268300px;}
.y48{bottom:2989.869300px;}
.y47{bottom:3049.468800px;}
.y46{bottom:3109.069800px;}
.y16{bottom:3117.456300px;}
.y10{bottom:3175.656300px;}
.y15{bottom:3177.057300px;}
.yf{bottom:3235.257300px;}
.y14{bottom:3236.658300px;}
.ye{bottom:3294.858300px;}
.y13{bottom:3296.259300px;}
.yd{bottom:3354.459300px;}
.y12{bottom:3355.860300px;}
.y5{bottom:3400.384800px;}
.yc{bottom:3414.058800px;}
.y11{bottom:3415.459800px;}
.yb{bottom:3473.659800px;}
.y6{bottom:3555.934715px;}
.y4{bottom:3564.214800px;}
.y54{bottom:3834.259800px;}
.y53{bottom:3887.254800px;}
.y52{bottom:3973.339800px;}
.y3{bottom:4242.114300px;}
.y2{bottom:4424.224800px;}
.h5{height:132.444000px;}
.h7{height:148.999497px;}
.h8{height:148.999500px;}
.ha{height:223.501500px;}
.h9{height:292.435500px;}
.h6{height:397.331991px;}
.h4{height:397.332000px;}
.h3{height:479.880138px;}
.h1{height:4767.750000px;}
.h2{height:4767.999675px;}
.h0{height:4767.999753px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x9{left:20.449500px;}
.xe{left:24.972000px;}
.x10{left:27.478500px;}
.xa{left:32.300400px;}
.x4{left:42.680850px;}
.x13{left:122.700000px;}
.x14{left:155.777400px;}
.x1{left:157.387500px;}
.x8{left:204.400516px;}
.x3{left:244.276500px;}
.x2{left:477.295500px;}
.x11{left:1254.300000px;}
.xf{left:1386.484500px;}
.xd{left:1500.916500px;}
.x7{left:1704.180000px;}
.xc{left:2368.294500px;}
.x6{left:2590.260000px;}
.x5{left:2595.764940px;}
.x12{left:2874.735000px;}
.xb{left:3066.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:127.498667pt;}
.ls3{letter-spacing:-11.920000pt;}
.ls2{letter-spacing:-3.708267pt;}
.ls1{letter-spacing:-1.589333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-115.373440pt;}
.ws0{word-spacing:-115.373437pt;}
.ws1{word-spacing:-43.265040pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-34.847488pt;}
._8{margin-left:-26.135263pt;}
._11{margin-left:-24.365811pt;}
._13{margin-left:-22.957313pt;}
._17{margin-left:-21.498840pt;}
._16{margin-left:-17.654432pt;}
._12{margin-left:-16.247347pt;}
._a{margin-left:-14.129479pt;}
._2{margin-left:-12.715566pt;}
._c{margin-left:-9.888446pt;}
._6{margin-left:-7.946110pt;}
._7{margin-left:-6.533727pt;}
._9{margin-left:-4.766924pt;}
._3{margin-left:-3.708785pt;}
._f{margin-left:-2.817474pt;}
._5{margin-left:-1.591447pt;}
._4{width:1.588798pt;}
._d{width:3.534489pt;}
._e{width:4.944753pt;}
._18{width:6.887422pt;}
._b{width:26.667511pt;}
._10{width:28.068011pt;}
._19{width:31.259609pt;}
._0{width:314.569059pt;}
._14{width:7749.757550pt;}
._15{width:7750.682091pt;}
.fs2{font-size:156.970667pt;}
.fs4{font-size:176.591996pt;}
.fs5{font-size:176.592000pt;}
.fs6{font-size:264.890667pt;}
.fs3{font-size:470.911989pt;}
.fs1{font-size:470.912000pt;}
.fs0{font-size:539.589333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000069pt;}
.y45{bottom:388.670933pt;}
.y44{bottom:441.649600pt;}
.y43{bottom:494.628267pt;}
.y42{bottom:547.606933pt;}
.y41{bottom:600.585600pt;}
.y40{bottom:653.562933pt;}
.y3f{bottom:706.541600pt;}
.y3e{bottom:759.520267pt;}
.y3d{bottom:812.498933pt;}
.y3c{bottom:865.476267pt;}
.y3b{bottom:918.454933pt;}
.y3a{bottom:971.433600pt;}
.y39{bottom:1133.942933pt;}
.y38{bottom:1186.921600pt;}
.y2b{bottom:1199.082933pt;}
.y2a{bottom:1252.060267pt;}
.y37{bottom:1264.445600pt;}
.y29{bottom:1305.038933pt;}
.y36{bottom:1317.437600pt;}
.y35{bottom:1318.894933pt;}
.y28{bottom:1358.017600pt;}
.y34{bottom:1370.416267pt;}
.y27{bottom:1410.996267pt;}
.y33{bottom:1423.394933pt;}
.y26{bottom:1463.974933pt;}
.ya{bottom:1493.777600pt;}
.y25{bottom:1516.953600pt;}
.y32{bottom:1553.146933pt;}
.y24{bottom:1569.930933pt;}
.y31{bottom:1606.125600pt;}
.y23{bottom:1622.908267pt;}
.y30{bottom:1659.102933pt;}
.y22{bottom:1675.885600pt;}
.y2f{bottom:1712.081600pt;}
.y21{bottom:1728.864267pt;}
.y2e{bottom:1765.060267pt;}
.y20{bottom:1781.842933pt;}
.y2d{bottom:1818.038933pt;}
.y1f{bottom:1834.820267pt;}
.y2c{bottom:1871.017600pt;}
.y1e{bottom:1887.797600pt;}
.y9{bottom:1937.577761pt;}
.y8{bottom:1959.124267pt;}
.y1d{bottom:2084.565600pt;}
.y1c{bottom:2137.544267pt;}
.y1b{bottom:2190.521600pt;}
.y50{bottom:2233.834933pt;}
.y1a{bottom:2243.500267pt;}
.y4f{bottom:2286.813600pt;}
.y19{bottom:2296.477600pt;}
.y4e{bottom:2339.790933pt;}
.y18{bottom:2349.456267pt;}
.y4d{bottom:2392.769600pt;}
.y17{bottom:2402.434933pt;}
.y4c{bottom:2445.748267pt;}
.y51{bottom:2461.430933pt;}
.y4b{bottom:2498.725600pt;}
.y7{bottom:2546.350933pt;}
.y4a{bottom:2551.704267pt;}
.y49{bottom:2604.682933pt;}
.y48{bottom:2657.661600pt;}
.y47{bottom:2710.638933pt;}
.y46{bottom:2763.617600pt;}
.y16{bottom:2771.072267pt;}
.y10{bottom:2822.805600pt;}
.y15{bottom:2824.050933pt;}
.yf{bottom:2875.784267pt;}
.y14{bottom:2877.029600pt;}
.ye{bottom:2928.762933pt;}
.y13{bottom:2930.008267pt;}
.yd{bottom:2981.741600pt;}
.y12{bottom:2982.986933pt;}
.y5{bottom:3022.564267pt;}
.yc{bottom:3034.718933pt;}
.y11{bottom:3035.964267pt;}
.yb{bottom:3087.697600pt;}
.y6{bottom:3160.830858pt;}
.y4{bottom:3168.190933pt;}
.y54{bottom:3408.230933pt;}
.y53{bottom:3455.337600pt;}
.y52{bottom:3531.857600pt;}
.y3{bottom:3770.768267pt;}
.y2{bottom:3932.644267pt;}
.h5{height:117.728000pt;}
.h7{height:132.443997pt;}
.h8{height:132.444000pt;}
.ha{height:198.668000pt;}
.h9{height:259.942667pt;}
.h6{height:353.183992pt;}
.h4{height:353.184000pt;}
.h3{height:426.560122pt;}
.h1{height:4238.000000pt;}
.h2{height:4238.221933pt;}
.h0{height:4238.222003pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x9{left:18.177333pt;}
.xe{left:22.197333pt;}
.x10{left:24.425333pt;}
.xa{left:28.711467pt;}
.x4{left:37.938533pt;}
.x13{left:109.066667pt;}
.x14{left:138.468800pt;}
.x1{left:139.900000pt;}
.x8{left:181.689347pt;}
.x3{left:217.134667pt;}
.x2{left:424.262667pt;}
.x11{left:1114.933333pt;}
.xf{left:1232.430667pt;}
.xd{left:1334.148000pt;}
.x7{left:1514.826667pt;}
.xc{left:2105.150667pt;}
.x6{left:2302.453333pt;}
.x5{left:2307.346614pt;}
.x12{left:2555.320000pt;}
.xb{left:2725.653333pt;}
}




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