
    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_06116ac3f49fa47888f653bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_57f0d09f2d9b621af57d3a0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_0facfc233d0e5cd302bc765f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_29d1e46ea47a6d397c451808.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918945;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;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.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:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.ws0{word-spacing:-9.639600px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-4.320000px;}
._8{margin-left:-2.328000px;}
._0{margin-left:-1.320000px;}
._1{width:1.056000px;}
._d{width:2.088000px;}
._7{width:3.120000px;}
._5{width:4.344000px;}
._6{width:6.120000px;}
._11{width:7.368000px;}
._10{width:8.424000px;}
._f{width:9.432000px;}
._9{width:10.992000px;}
._3{width:12.096000px;}
._2{width:13.176000px;}
._c{width:14.496000px;}
._15{width:15.672000px;}
._a{width:17.496000px;}
._b{width:18.720000px;}
._12{width:21.024000px;}
._e{width:22.584000px;}
._4{width:26.424000px;}
._14{width:44.232000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:34.800000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1d{bottom:3.000000px;}
.y1c{bottom:54.450000px;}
.y1b{bottom:114.300000px;}
.y4b{bottom:118.200000px;}
.y6d{bottom:139.500000px;}
.y34{bottom:145.950000px;}
.y58{bottom:146.100000px;}
.y1a{bottom:155.700000px;}
.y4a{bottom:159.600000px;}
.y7e{bottom:167.250000px;}
.y6c{bottom:180.900000px;}
.y33{bottom:187.350000px;}
.y57{bottom:187.500000px;}
.y19{bottom:197.100000px;}
.y49{bottom:201.000000px;}
.y7d{bottom:208.650000px;}
.y6b{bottom:222.300000px;}
.y32{bottom:228.750000px;}
.y56{bottom:228.900000px;}
.y48{bottom:242.400000px;}
.y7c{bottom:250.050000px;}
.y18{bottom:259.500000px;}
.y83{bottom:263.700000px;}
.y55{bottom:270.300000px;}
.y6a{bottom:284.700000px;}
.y31{bottom:291.300000px;}
.y7b{bottom:291.450000px;}
.y17{bottom:300.900000px;}
.y47{bottom:304.800000px;}
.y82{bottom:305.100000px;}
.y54{bottom:311.700000px;}
.y69{bottom:326.100000px;}
.y30{bottom:332.700000px;}
.y7a{bottom:332.850000px;}
.y16{bottom:342.300000px;}
.y46{bottom:346.200000px;}
.y81{bottom:346.500000px;}
.y53{bottom:353.100000px;}
.y68{bottom:367.500000px;}
.y2f{bottom:374.100000px;}
.y79{bottom:374.250000px;}
.y15{bottom:383.700000px;}
.y45{bottom:387.600000px;}
.y67{bottom:408.900000px;}
.y2e{bottom:415.500000px;}
.y78{bottom:415.650000px;}
.y14{bottom:425.100000px;}
.y44{bottom:429.000000px;}
.y66{bottom:450.300000px;}
.y2d{bottom:456.900000px;}
.y77{bottom:457.050000px;}
.y43{bottom:470.400000px;}
.y13{bottom:487.500000px;}
.y65{bottom:491.700000px;}
.y2c{bottom:498.300000px;}
.y76{bottom:498.450000px;}
.y42{bottom:511.800000px;}
.y12{bottom:528.900000px;}
.y2b{bottom:539.700000px;}
.y64{bottom:554.100000px;}
.y75{bottom:560.850000px;}
.y11{bottom:570.300000px;}
.y41{bottom:574.350000px;}
.y2a{bottom:581.100000px;}
.y63{bottom:595.500000px;}
.y74{bottom:602.250000px;}
.y10{bottom:611.700000px;}
.y40{bottom:615.750000px;}
.y29{bottom:622.500000px;}
.y62{bottom:636.900000px;}
.y73{bottom:643.650000px;}
.yf{bottom:653.100000px;}
.y3f{bottom:657.150000px;}
.y28{bottom:663.900000px;}
.y61{bottom:678.300000px;}
.y72{bottom:685.050000px;}
.ye{bottom:694.500000px;}
.y3e{bottom:698.550000px;}
.y52{bottom:705.300000px;}
.y60{bottom:719.700000px;}
.y27{bottom:726.300000px;}
.y71{bottom:726.450000px;}
.y3d{bottom:739.950000px;}
.y51{bottom:746.700000px;}
.yd{bottom:756.900000px;}
.y5f{bottom:761.100000px;}
.y26{bottom:767.700000px;}
.y70{bottom:767.850000px;}
.y3c{bottom:781.350000px;}
.y50{bottom:788.100000px;}
.yc{bottom:798.300000px;}
.y5e{bottom:802.500000px;}
.y6f{bottom:809.250000px;}
.y4f{bottom:829.500000px;}
.y25{bottom:830.250000px;}
.yb{bottom:839.700000px;}
.y3b{bottom:843.750000px;}
.y5d{bottom:843.900000px;}
.y6e{bottom:850.650000px;}
.y4e{bottom:870.900000px;}
.y24{bottom:871.650000px;}
.y3a{bottom:885.150000px;}
.y5c{bottom:885.300000px;}
.ya{bottom:902.100000px;}
.y4d{bottom:912.300000px;}
.y23{bottom:913.050000px;}
.y39{bottom:926.550000px;}
.y80{bottom:926.700000px;}
.y9{bottom:943.500000px;}
.y5b{bottom:947.700000px;}
.y22{bottom:954.450000px;}
.y38{bottom:967.950000px;}
.y7f{bottom:968.100000px;}
.y4c{bottom:974.700000px;}
.y8{bottom:984.900000px;}
.y5a{bottom:989.100000px;}
.y21{bottom:995.850000px;}
.y37{bottom:1009.350000px;}
.y59{bottom:1030.500000px;}
.y20{bottom:1037.250000px;}
.y7{bottom:1057.800000px;}
.y36{bottom:1071.900000px;}
.y6{bottom:1076.700000px;}
.y1f{bottom:1078.650000px;}
.y35{bottom:1113.300000px;}
.y5{bottom:1114.650000px;}
.y1e{bottom:1120.050000px;}
.y4{bottom:1161.000000px;}
.y3{bottom:1178.250000px;}
.y2{bottom:1195.500000px;}
.h8{height:19.650000px;}
.h2{height:43.681641px;}
.h4{height:48.049805px;}
.h5{height:48.082031px;}
.h3{height:49.335352px;}
.h7{height:52.417969px;}
.h6{height:52.453125px;}
.h9{height:53.437500px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w1{width:9.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:106.500000px;}
.x7{left:160.500000px;}
.x2{left:258.600000px;}
.x4{left:324.600000px;}
.x5{left:351.300000px;}
.x6{left:362.250000px;}
.x1{left:441.300000px;}
.x3{left:709.350000px;}
.x9{left:776.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.ws0{word-spacing:-8.568533pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-3.840000pt;}
._8{margin-left:-2.069333pt;}
._0{margin-left:-1.173333pt;}
._1{width:0.938667pt;}
._d{width:1.856000pt;}
._7{width:2.773333pt;}
._5{width:3.861333pt;}
._6{width:5.440000pt;}
._11{width:6.549333pt;}
._10{width:7.488000pt;}
._f{width:8.384000pt;}
._9{width:9.770667pt;}
._3{width:10.752000pt;}
._2{width:11.712000pt;}
._c{width:12.885333pt;}
._15{width:13.930667pt;}
._a{width:15.552000pt;}
._b{width:16.640000pt;}
._12{width:18.688000pt;}
._e{width:20.074667pt;}
._4{width:23.488000pt;}
._14{width:39.317333pt;}
.fs1{font-size:30.933333pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1d{bottom:2.666667pt;}
.y1c{bottom:48.400000pt;}
.y1b{bottom:101.600000pt;}
.y4b{bottom:105.066667pt;}
.y6d{bottom:124.000000pt;}
.y34{bottom:129.733333pt;}
.y58{bottom:129.866667pt;}
.y1a{bottom:138.400000pt;}
.y4a{bottom:141.866667pt;}
.y7e{bottom:148.666667pt;}
.y6c{bottom:160.800000pt;}
.y33{bottom:166.533333pt;}
.y57{bottom:166.666667pt;}
.y19{bottom:175.200000pt;}
.y49{bottom:178.666667pt;}
.y7d{bottom:185.466667pt;}
.y6b{bottom:197.600000pt;}
.y32{bottom:203.333333pt;}
.y56{bottom:203.466667pt;}
.y48{bottom:215.466667pt;}
.y7c{bottom:222.266667pt;}
.y18{bottom:230.666667pt;}
.y83{bottom:234.400000pt;}
.y55{bottom:240.266667pt;}
.y6a{bottom:253.066667pt;}
.y31{bottom:258.933333pt;}
.y7b{bottom:259.066667pt;}
.y17{bottom:267.466667pt;}
.y47{bottom:270.933333pt;}
.y82{bottom:271.200000pt;}
.y54{bottom:277.066667pt;}
.y69{bottom:289.866667pt;}
.y30{bottom:295.733333pt;}
.y7a{bottom:295.866667pt;}
.y16{bottom:304.266667pt;}
.y46{bottom:307.733333pt;}
.y81{bottom:308.000000pt;}
.y53{bottom:313.866667pt;}
.y68{bottom:326.666667pt;}
.y2f{bottom:332.533333pt;}
.y79{bottom:332.666667pt;}
.y15{bottom:341.066667pt;}
.y45{bottom:344.533333pt;}
.y67{bottom:363.466667pt;}
.y2e{bottom:369.333333pt;}
.y78{bottom:369.466667pt;}
.y14{bottom:377.866667pt;}
.y44{bottom:381.333333pt;}
.y66{bottom:400.266667pt;}
.y2d{bottom:406.133333pt;}
.y77{bottom:406.266667pt;}
.y43{bottom:418.133333pt;}
.y13{bottom:433.333333pt;}
.y65{bottom:437.066667pt;}
.y2c{bottom:442.933333pt;}
.y76{bottom:443.066667pt;}
.y42{bottom:454.933333pt;}
.y12{bottom:470.133333pt;}
.y2b{bottom:479.733333pt;}
.y64{bottom:492.533333pt;}
.y75{bottom:498.533333pt;}
.y11{bottom:506.933333pt;}
.y41{bottom:510.533333pt;}
.y2a{bottom:516.533333pt;}
.y63{bottom:529.333333pt;}
.y74{bottom:535.333333pt;}
.y10{bottom:543.733333pt;}
.y40{bottom:547.333333pt;}
.y29{bottom:553.333333pt;}
.y62{bottom:566.133333pt;}
.y73{bottom:572.133333pt;}
.yf{bottom:580.533333pt;}
.y3f{bottom:584.133333pt;}
.y28{bottom:590.133333pt;}
.y61{bottom:602.933333pt;}
.y72{bottom:608.933333pt;}
.ye{bottom:617.333333pt;}
.y3e{bottom:620.933333pt;}
.y52{bottom:626.933333pt;}
.y60{bottom:639.733333pt;}
.y27{bottom:645.600000pt;}
.y71{bottom:645.733333pt;}
.y3d{bottom:657.733333pt;}
.y51{bottom:663.733333pt;}
.yd{bottom:672.800000pt;}
.y5f{bottom:676.533333pt;}
.y26{bottom:682.400000pt;}
.y70{bottom:682.533333pt;}
.y3c{bottom:694.533333pt;}
.y50{bottom:700.533333pt;}
.yc{bottom:709.600000pt;}
.y5e{bottom:713.333333pt;}
.y6f{bottom:719.333333pt;}
.y4f{bottom:737.333333pt;}
.y25{bottom:738.000000pt;}
.yb{bottom:746.400000pt;}
.y3b{bottom:750.000000pt;}
.y5d{bottom:750.133333pt;}
.y6e{bottom:756.133333pt;}
.y4e{bottom:774.133333pt;}
.y24{bottom:774.800000pt;}
.y3a{bottom:786.800000pt;}
.y5c{bottom:786.933333pt;}
.ya{bottom:801.866667pt;}
.y4d{bottom:810.933333pt;}
.y23{bottom:811.600000pt;}
.y39{bottom:823.600000pt;}
.y80{bottom:823.733333pt;}
.y9{bottom:838.666667pt;}
.y5b{bottom:842.400000pt;}
.y22{bottom:848.400000pt;}
.y38{bottom:860.400000pt;}
.y7f{bottom:860.533333pt;}
.y4c{bottom:866.400000pt;}
.y8{bottom:875.466667pt;}
.y5a{bottom:879.200000pt;}
.y21{bottom:885.200000pt;}
.y37{bottom:897.200000pt;}
.y59{bottom:916.000000pt;}
.y20{bottom:922.000000pt;}
.y7{bottom:940.266667pt;}
.y36{bottom:952.800000pt;}
.y6{bottom:957.066667pt;}
.y1f{bottom:958.800000pt;}
.y35{bottom:989.600000pt;}
.y5{bottom:990.800000pt;}
.y1e{bottom:995.600000pt;}
.y4{bottom:1032.000000pt;}
.y3{bottom:1047.333333pt;}
.y2{bottom:1062.666667pt;}
.h8{height:17.466667pt;}
.h2{height:38.828125pt;}
.h4{height:42.710938pt;}
.h5{height:42.739583pt;}
.h3{height:43.853646pt;}
.h7{height:46.593750pt;}
.h6{height:46.625000pt;}
.h9{height:47.500000pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w1{width:8.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:94.666667pt;}
.x7{left:142.666667pt;}
.x2{left:229.866667pt;}
.x4{left:288.533333pt;}
.x5{left:312.266667pt;}
.x6{left:322.000000pt;}
.x1{left:392.266667pt;}
.x3{left:630.533333pt;}
.x9{left:690.133333pt;}
}




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