
    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_e659c156d01bffbd02bac99e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.281250;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;}
.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;}
}
.ws0{word-spacing:-36.000000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-144.000000px;}
._2{margin-left:-108.000000px;}
._1{margin-left:-72.000000px;}
._0{margin-left:-36.000000px;}
.fcd{color:rgb(50,205,50);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(70,130,180);}
.fcb{color:rgb(105,105,105);}
.fc2{color:rgb(173,255,47);}
.fc3{color:rgb(0,0,128);}
.fc4{color:rgb(255,215,0);}
.fc5{color:rgb(0,100,0);}
.fc7{color:rgb(255,69,0);}
.fc8{color:rgb(0,128,128);}
.fca{color:rgb(147,112,219);}
.fc6{color:rgb(112,128,144);}
.fc9{color:rgb(85,107,47);}
.fcc{color:rgb(165,42,42);}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:118.890000px;}
.y77{bottom:121.065000px;}
.y3b{bottom:124.890000px;}
.yb0{bottom:134.715000px;}
.y76{bottom:136.890000px;}
.y3a{bottom:140.715000px;}
.yaf{bottom:150.540000px;}
.y75{bottom:152.715000px;}
.y39{bottom:156.540000px;}
.yae{bottom:166.365000px;}
.y74{bottom:168.540000px;}
.y38{bottom:172.365000px;}
.yad{bottom:182.190000px;}
.y73{bottom:184.365000px;}
.y37{bottom:188.190000px;}
.yac{bottom:198.015000px;}
.y72{bottom:200.190000px;}
.y36{bottom:204.015000px;}
.yab{bottom:213.840000px;}
.y71{bottom:216.015000px;}
.y35{bottom:219.840000px;}
.yaa{bottom:229.665000px;}
.y70{bottom:231.840000px;}
.y34{bottom:235.665000px;}
.ya9{bottom:245.490000px;}
.y6f{bottom:247.665000px;}
.y33{bottom:251.490000px;}
.ya8{bottom:261.315000px;}
.y6e{bottom:263.490000px;}
.y32{bottom:267.315000px;}
.ya7{bottom:277.140000px;}
.y6d{bottom:279.315000px;}
.y31{bottom:283.140000px;}
.ya6{bottom:292.965000px;}
.y6c{bottom:295.140000px;}
.y30{bottom:298.965000px;}
.ya5{bottom:308.790000px;}
.y6b{bottom:310.965000px;}
.y2f{bottom:314.790000px;}
.ya4{bottom:324.615000px;}
.y6a{bottom:326.790000px;}
.y2e{bottom:330.615000px;}
.ya3{bottom:340.440000px;}
.y69{bottom:342.615000px;}
.y2d{bottom:346.440000px;}
.ya2{bottom:356.265000px;}
.y68{bottom:358.440000px;}
.y2c{bottom:362.265000px;}
.ya1{bottom:372.090000px;}
.y67{bottom:374.265000px;}
.y2b{bottom:378.090000px;}
.ya0{bottom:387.915000px;}
.y66{bottom:390.090000px;}
.y2a{bottom:393.915000px;}
.y9f{bottom:403.740000px;}
.y65{bottom:405.915000px;}
.y29{bottom:409.740000px;}
.y9e{bottom:419.565000px;}
.y64{bottom:421.740000px;}
.y28{bottom:425.565000px;}
.y9d{bottom:435.390000px;}
.y63{bottom:437.565000px;}
.y27{bottom:441.390000px;}
.y9c{bottom:451.215000px;}
.y62{bottom:453.390000px;}
.y26{bottom:457.215000px;}
.y9b{bottom:467.040000px;}
.y61{bottom:469.215000px;}
.y25{bottom:473.040000px;}
.y9a{bottom:482.865000px;}
.y60{bottom:485.040000px;}
.y24{bottom:488.865000px;}
.y99{bottom:498.690000px;}
.y5f{bottom:500.865000px;}
.y23{bottom:504.690000px;}
.y98{bottom:514.515000px;}
.y5e{bottom:516.690000px;}
.y22{bottom:520.515000px;}
.y97{bottom:530.340000px;}
.y5d{bottom:532.515000px;}
.y21{bottom:536.340000px;}
.y96{bottom:546.165000px;}
.y5c{bottom:548.340000px;}
.y20{bottom:552.165000px;}
.y95{bottom:561.990000px;}
.y5b{bottom:564.165000px;}
.y1f{bottom:567.990000px;}
.y94{bottom:577.815000px;}
.y5a{bottom:579.990000px;}
.y1e{bottom:583.815000px;}
.y93{bottom:593.640000px;}
.y59{bottom:595.815000px;}
.y1d{bottom:599.640000px;}
.y92{bottom:609.465000px;}
.y58{bottom:611.640000px;}
.y1c{bottom:615.465000px;}
.y91{bottom:625.290000px;}
.y57{bottom:627.465000px;}
.y1b{bottom:631.290000px;}
.y90{bottom:641.115000px;}
.y56{bottom:643.290000px;}
.y1a{bottom:647.115000px;}
.y8f{bottom:656.940000px;}
.y55{bottom:659.115000px;}
.y19{bottom:662.940000px;}
.y8e{bottom:672.765000px;}
.y54{bottom:674.940000px;}
.y18{bottom:678.765000px;}
.y8d{bottom:688.590000px;}
.y53{bottom:690.765000px;}
.y17{bottom:694.590000px;}
.y8c{bottom:704.415000px;}
.y52{bottom:706.590000px;}
.y16{bottom:710.415000px;}
.y8b{bottom:720.240000px;}
.y51{bottom:722.415000px;}
.y15{bottom:726.240000px;}
.y8a{bottom:736.065000px;}
.y50{bottom:738.240000px;}
.y14{bottom:742.065000px;}
.y89{bottom:751.890000px;}
.y4f{bottom:754.065000px;}
.y13{bottom:757.890000px;}
.y88{bottom:767.715000px;}
.y4e{bottom:769.890000px;}
.y12{bottom:773.715000px;}
.y87{bottom:783.540000px;}
.y4d{bottom:785.715000px;}
.y11{bottom:789.540000px;}
.y86{bottom:799.365000px;}
.y4c{bottom:801.540000px;}
.y10{bottom:805.365000px;}
.y85{bottom:815.190000px;}
.y4b{bottom:817.365000px;}
.yf{bottom:821.190000px;}
.y84{bottom:831.015000px;}
.y4a{bottom:833.190000px;}
.ye{bottom:837.015000px;}
.y83{bottom:846.840000px;}
.y49{bottom:849.015000px;}
.yd{bottom:852.840000px;}
.y82{bottom:862.665000px;}
.y48{bottom:864.840000px;}
.yc{bottom:868.665000px;}
.y81{bottom:878.490000px;}
.y47{bottom:880.665000px;}
.yb{bottom:884.490000px;}
.y80{bottom:894.315000px;}
.y46{bottom:896.490000px;}
.ya{bottom:900.315000px;}
.y7f{bottom:910.140000px;}
.y45{bottom:912.315000px;}
.y9{bottom:916.140000px;}
.y7e{bottom:925.965000px;}
.y44{bottom:928.140000px;}
.y8{bottom:931.965000px;}
.y7d{bottom:941.790000px;}
.y43{bottom:943.965000px;}
.y7{bottom:947.790000px;}
.y7c{bottom:957.615000px;}
.y42{bottom:959.790000px;}
.y6{bottom:963.615000px;}
.y7b{bottom:973.440000px;}
.y41{bottom:975.615000px;}
.y5{bottom:979.440000px;}
.y7a{bottom:989.265000px;}
.y40{bottom:991.440000px;}
.y4{bottom:995.265000px;}
.y79{bottom:1005.090000px;}
.y3f{bottom:1007.265000px;}
.y3{bottom:1011.090000px;}
.y3e{bottom:1023.090000px;}
.y2{bottom:1026.915000px;}
.y3d{bottom:1038.915000px;}
.y78{bottom:1048.740000px;}
.y3c{bottom:1054.740000px;}
.y1{bottom:1070.565000px;}
.h1{height:58.857422px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x5{left:144.000000px;}
.x3{left:162.000000px;}
.x4{left:180.000000px;}
.x6{left:207.000000px;}
.x1{left:225.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-32.000000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-128.000000pt;}
._2{margin-left:-96.000000pt;}
._1{margin-left:-64.000000pt;}
._0{margin-left:-32.000000pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:105.680000pt;}
.y77{bottom:107.613333pt;}
.y3b{bottom:111.013333pt;}
.yb0{bottom:119.746667pt;}
.y76{bottom:121.680000pt;}
.y3a{bottom:125.080000pt;}
.yaf{bottom:133.813333pt;}
.y75{bottom:135.746667pt;}
.y39{bottom:139.146667pt;}
.yae{bottom:147.880000pt;}
.y74{bottom:149.813333pt;}
.y38{bottom:153.213333pt;}
.yad{bottom:161.946667pt;}
.y73{bottom:163.880000pt;}
.y37{bottom:167.280000pt;}
.yac{bottom:176.013333pt;}
.y72{bottom:177.946667pt;}
.y36{bottom:181.346667pt;}
.yab{bottom:190.080000pt;}
.y71{bottom:192.013333pt;}
.y35{bottom:195.413333pt;}
.yaa{bottom:204.146667pt;}
.y70{bottom:206.080000pt;}
.y34{bottom:209.480000pt;}
.ya9{bottom:218.213333pt;}
.y6f{bottom:220.146667pt;}
.y33{bottom:223.546667pt;}
.ya8{bottom:232.280000pt;}
.y6e{bottom:234.213333pt;}
.y32{bottom:237.613333pt;}
.ya7{bottom:246.346667pt;}
.y6d{bottom:248.280000pt;}
.y31{bottom:251.680000pt;}
.ya6{bottom:260.413333pt;}
.y6c{bottom:262.346667pt;}
.y30{bottom:265.746667pt;}
.ya5{bottom:274.480000pt;}
.y6b{bottom:276.413333pt;}
.y2f{bottom:279.813333pt;}
.ya4{bottom:288.546667pt;}
.y6a{bottom:290.480000pt;}
.y2e{bottom:293.880000pt;}
.ya3{bottom:302.613333pt;}
.y69{bottom:304.546667pt;}
.y2d{bottom:307.946667pt;}
.ya2{bottom:316.680000pt;}
.y68{bottom:318.613333pt;}
.y2c{bottom:322.013333pt;}
.ya1{bottom:330.746667pt;}
.y67{bottom:332.680000pt;}
.y2b{bottom:336.080000pt;}
.ya0{bottom:344.813333pt;}
.y66{bottom:346.746667pt;}
.y2a{bottom:350.146667pt;}
.y9f{bottom:358.880000pt;}
.y65{bottom:360.813333pt;}
.y29{bottom:364.213333pt;}
.y9e{bottom:372.946667pt;}
.y64{bottom:374.880000pt;}
.y28{bottom:378.280000pt;}
.y9d{bottom:387.013333pt;}
.y63{bottom:388.946667pt;}
.y27{bottom:392.346667pt;}
.y9c{bottom:401.080000pt;}
.y62{bottom:403.013333pt;}
.y26{bottom:406.413333pt;}
.y9b{bottom:415.146667pt;}
.y61{bottom:417.080000pt;}
.y25{bottom:420.480000pt;}
.y9a{bottom:429.213333pt;}
.y60{bottom:431.146667pt;}
.y24{bottom:434.546667pt;}
.y99{bottom:443.280000pt;}
.y5f{bottom:445.213333pt;}
.y23{bottom:448.613333pt;}
.y98{bottom:457.346667pt;}
.y5e{bottom:459.280000pt;}
.y22{bottom:462.680000pt;}
.y97{bottom:471.413333pt;}
.y5d{bottom:473.346667pt;}
.y21{bottom:476.746667pt;}
.y96{bottom:485.480000pt;}
.y5c{bottom:487.413333pt;}
.y20{bottom:490.813333pt;}
.y95{bottom:499.546667pt;}
.y5b{bottom:501.480000pt;}
.y1f{bottom:504.880000pt;}
.y94{bottom:513.613333pt;}
.y5a{bottom:515.546667pt;}
.y1e{bottom:518.946667pt;}
.y93{bottom:527.680000pt;}
.y59{bottom:529.613333pt;}
.y1d{bottom:533.013333pt;}
.y92{bottom:541.746667pt;}
.y58{bottom:543.680000pt;}
.y1c{bottom:547.080000pt;}
.y91{bottom:555.813333pt;}
.y57{bottom:557.746667pt;}
.y1b{bottom:561.146667pt;}
.y90{bottom:569.880000pt;}
.y56{bottom:571.813333pt;}
.y1a{bottom:575.213333pt;}
.y8f{bottom:583.946667pt;}
.y55{bottom:585.880000pt;}
.y19{bottom:589.280000pt;}
.y8e{bottom:598.013333pt;}
.y54{bottom:599.946667pt;}
.y18{bottom:603.346667pt;}
.y8d{bottom:612.080000pt;}
.y53{bottom:614.013333pt;}
.y17{bottom:617.413333pt;}
.y8c{bottom:626.146667pt;}
.y52{bottom:628.080000pt;}
.y16{bottom:631.480000pt;}
.y8b{bottom:640.213333pt;}
.y51{bottom:642.146667pt;}
.y15{bottom:645.546667pt;}
.y8a{bottom:654.280000pt;}
.y50{bottom:656.213333pt;}
.y14{bottom:659.613333pt;}
.y89{bottom:668.346667pt;}
.y4f{bottom:670.280000pt;}
.y13{bottom:673.680000pt;}
.y88{bottom:682.413333pt;}
.y4e{bottom:684.346667pt;}
.y12{bottom:687.746667pt;}
.y87{bottom:696.480000pt;}
.y4d{bottom:698.413333pt;}
.y11{bottom:701.813333pt;}
.y86{bottom:710.546667pt;}
.y4c{bottom:712.480000pt;}
.y10{bottom:715.880000pt;}
.y85{bottom:724.613333pt;}
.y4b{bottom:726.546667pt;}
.yf{bottom:729.946667pt;}
.y84{bottom:738.680000pt;}
.y4a{bottom:740.613333pt;}
.ye{bottom:744.013333pt;}
.y83{bottom:752.746667pt;}
.y49{bottom:754.680000pt;}
.yd{bottom:758.080000pt;}
.y82{bottom:766.813333pt;}
.y48{bottom:768.746667pt;}
.yc{bottom:772.146667pt;}
.y81{bottom:780.880000pt;}
.y47{bottom:782.813333pt;}
.yb{bottom:786.213333pt;}
.y80{bottom:794.946667pt;}
.y46{bottom:796.880000pt;}
.ya{bottom:800.280000pt;}
.y7f{bottom:809.013333pt;}
.y45{bottom:810.946667pt;}
.y9{bottom:814.346667pt;}
.y7e{bottom:823.080000pt;}
.y44{bottom:825.013333pt;}
.y8{bottom:828.413333pt;}
.y7d{bottom:837.146667pt;}
.y43{bottom:839.080000pt;}
.y7{bottom:842.480000pt;}
.y7c{bottom:851.213333pt;}
.y42{bottom:853.146667pt;}
.y6{bottom:856.546667pt;}
.y7b{bottom:865.280000pt;}
.y41{bottom:867.213333pt;}
.y5{bottom:870.613333pt;}
.y7a{bottom:879.346667pt;}
.y40{bottom:881.280000pt;}
.y4{bottom:884.680000pt;}
.y79{bottom:893.413333pt;}
.y3f{bottom:895.346667pt;}
.y3{bottom:898.746667pt;}
.y3e{bottom:909.413333pt;}
.y2{bottom:912.813333pt;}
.y3d{bottom:923.480000pt;}
.y78{bottom:932.213333pt;}
.y3c{bottom:937.546667pt;}
.y1{bottom:951.613333pt;}
.h1{height:52.317708pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x5{left:128.000000pt;}
.x3{left:144.000000pt;}
.x4{left:160.000000pt;}
.x6{left:184.000000pt;}
.x1{left:200.000000pt;}
}




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