
    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_1344836b1d5fa02f8224b088.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_c10a8d266a9bb35444687e48.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_ef25208351e6f883a83c8899.woff')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_73242a35b81befe74819bce9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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:99.899400px;}
.ls1{letter-spacing:-5.040000px;}
.ls2{letter-spacing:-4.032000px;}
.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;}
}
.ws1{word-spacing:-66.660000px;}
.ws2{word-spacing:-53.424000px;}
.ws4{word-spacing:-52.164000px;}
.ws5{word-spacing:-48.132000px;}
.ws3{word-spacing:-47.124000px;}
.ws0{word-spacing:-37.078800px;}
.ws8{word-spacing:-12.870000px;}
.ws7{word-spacing:-12.300000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-50.820000px;}
._0{margin-left:-26.400000px;}
._f{margin-left:-22.313400px;}
._12{margin-left:-20.736000px;}
._15{margin-left:-18.738900px;}
._e{margin-left:-17.297700px;}
._11{margin-left:-15.564000px;}
._10{margin-left:-12.218400px;}
._3{margin-left:-10.560000px;}
._4{margin-left:-8.580000px;}
._2{margin-left:-7.260000px;}
._5{margin-left:-5.940000px;}
._8{margin-left:-3.894300px;}
._7{margin-left:-2.100000px;}
._d{margin-left:-1.008000px;}
._9{width:1.200000px;}
._6{width:2.970000px;}
._c{width:4.734300px;}
._16{width:6.309600px;}
._b{width:7.494300px;}
._a{width:12.300000px;}
._14{width:13.431300px;}
._17{width:22.613400px;}
._13{width:90.972000px;}
._18{width:136.836000px;}
.fc2{color:rgb(234,124,72);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(211,58,76);}
.fs2{font-size:174.900000px;}
.fs8{font-size:240.000000px;}
.fs4{font-size:252.000000px;}
.fs1{font-size:300.000000px;}
.fs3{font-size:330.000000px;}
.fs5{font-size:384.000000px;}
.fs6{font-size:390.000000px;}
.fs7{font-size:480.000000px;}
.fs0{font-size:660.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:159.997500px;}
.y23{bottom:207.250500px;}
.y1e{bottom:249.997500px;}
.y2f{bottom:257.888700px;}
.y22{bottom:297.250500px;}
.y2e{bottom:325.388700px;}
.y1d{bottom:366.150900px;}
.y21{bottom:411.933150px;}
.y1c{bottom:456.150900px;}
.y20{bottom:501.933150px;}
.y1b{bottom:546.150900px;}
.y24{bottom:650.247000px;}
.y14{bottom:857.645400px;}
.y19{bottom:857.646900px;}
.y11{bottom:880.139400px;}
.y13{bottom:932.615400px;}
.y18{bottom:932.616900px;}
.y10{bottom:947.612400px;}
.y12{bottom:1007.585400px;}
.y17{bottom:1007.586900px;}
.yf{bottom:1015.085400px;}
.ye{bottom:1112.585400px;}
.y16{bottom:1112.586900px;}
.yd{bottom:1202.585400px;}
.y15{bottom:1202.586900px;}
.y2d{bottom:1256.402400px;}
.y2c{bottom:1323.875400px;}
.y1a{bottom:1333.353450px;}
.y35{bottom:1627.081200px;}
.y34{bottom:1717.108200px;}
.y33{bottom:1807.135200px;}
.y32{bottom:1897.135200px;}
.y31{bottom:1987.135200px;}
.y2b{bottom:2066.393400px;}
.y30{bottom:2077.135200px;}
.y2a{bottom:2133.866400px;}
.yc{bottom:2356.464750px;}
.yb{bottom:2432.064750px;}
.y29{bottom:2444.519400px;}
.y28{bottom:2511.992400px;}
.ya{bottom:2528.890200px;}
.y26{bottom:2662.209900px;}
.y9{bottom:2665.690200px;}
.y8{bottom:2741.290200px;}
.y25{bottom:2752.209900px;}
.y7{bottom:2816.890200px;}
.y27{bottom:2880.212400px;}
.y6{bottom:2913.716250px;}
.y5{bottom:3143.989500px;}
.y4{bottom:3259.189500px;}
.y3{bottom:3349.189500px;}
.y2{bottom:3477.328200px;}
.y1{bottom:3675.328200px;}
.h9{height:173.040000px;}
.h5{height:181.692000px;}
.h3{height:216.300000px;}
.h2{height:226.002300px;}
.h4{height:237.930000px;}
.h6{height:276.864000px;}
.h7{height:281.190000px;}
.h8{height:346.080000px;}
.h1{height:475.860000px;}
.h0{height:3888.000000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x9{left:192.431400px;}
.x7{left:194.773650px;}
.xb{left:204.968400px;}
.xa{left:206.228400px;}
.x6{left:239.115300px;}
.x28{left:269.201700px;}
.x29{left:323.201700px;}
.x1b{left:351.440250px;}
.x17{left:401.096250px;}
.x18{left:434.056650px;}
.x8{left:456.873000px;}
.x19{left:492.629100px;}
.x16{left:598.204800px;}
.x1a{left:790.694100px;}
.x20{left:906.804150px;}
.xc{left:988.556400px;}
.xe{left:1056.637200px;}
.xf{left:1085.932200px;}
.x10{left:1183.645200px;}
.xd{left:1196.536350px;}
.x1f{left:1379.874000px;}
.x3{left:1453.327950px;}
.x1c{left:1473.862800px;}
.x1{left:1636.915350px;}
.x2{left:1657.040700px;}
.x4{left:1711.252800px;}
.x1d{left:1717.813500px;}
.x15{left:1723.104000px;}
.x14{left:1732.869000px;}
.x1e{left:1743.084300px;}
.x13{left:1749.501000px;}
.x11{left:1828.191600px;}
.x12{left:1959.488550px;}
.x5{left:2168.377800px;}
.x25{left:2826.813750px;}
.x23{left:2830.782750px;}
.x24{left:2832.420750px;}
.x21{left:2845.709400px;}
.x26{left:2977.873500px;}
.x27{left:3064.333500px;}
.x22{left:3252.990900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:88.799467pt;}
.ls1{letter-spacing:-4.480000pt;}
.ls2{letter-spacing:-3.584000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-59.253333pt;}
.ws2{word-spacing:-47.488000pt;}
.ws4{word-spacing:-46.368000pt;}
.ws5{word-spacing:-42.784000pt;}
.ws3{word-spacing:-41.888000pt;}
.ws0{word-spacing:-32.958933pt;}
.ws8{word-spacing:-11.440000pt;}
.ws7{word-spacing:-10.933333pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-45.173333pt;}
._0{margin-left:-23.466667pt;}
._f{margin-left:-19.834133pt;}
._12{margin-left:-18.432000pt;}
._15{margin-left:-16.656800pt;}
._e{margin-left:-15.375733pt;}
._11{margin-left:-13.834667pt;}
._10{margin-left:-10.860800pt;}
._3{margin-left:-9.386667pt;}
._4{margin-left:-7.626667pt;}
._2{margin-left:-6.453333pt;}
._5{margin-left:-5.280000pt;}
._8{margin-left:-3.461600pt;}
._7{margin-left:-1.866667pt;}
._d{margin-left:-0.896000pt;}
._9{width:1.066667pt;}
._6{width:2.640000pt;}
._c{width:4.208267pt;}
._16{width:5.608533pt;}
._b{width:6.661600pt;}
._a{width:10.933333pt;}
._14{width:11.938933pt;}
._17{width:20.100800pt;}
._13{width:80.864000pt;}
._18{width:121.632000pt;}
.fs2{font-size:155.466667pt;}
.fs8{font-size:213.333333pt;}
.fs4{font-size:224.000000pt;}
.fs1{font-size:266.666667pt;}
.fs3{font-size:293.333333pt;}
.fs5{font-size:341.333333pt;}
.fs6{font-size:346.666667pt;}
.fs7{font-size:426.666667pt;}
.fs0{font-size:586.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:142.220000pt;}
.y23{bottom:184.222667pt;}
.y1e{bottom:222.220000pt;}
.y2f{bottom:229.234400pt;}
.y22{bottom:264.222667pt;}
.y2e{bottom:289.234400pt;}
.y1d{bottom:325.467467pt;}
.y21{bottom:366.162800pt;}
.y1c{bottom:405.467467pt;}
.y20{bottom:446.162800pt;}
.y1b{bottom:485.467467pt;}
.y24{bottom:577.997333pt;}
.y14{bottom:762.351467pt;}
.y19{bottom:762.352800pt;}
.y11{bottom:782.346133pt;}
.y13{bottom:828.991467pt;}
.y18{bottom:828.992800pt;}
.y10{bottom:842.322133pt;}
.y12{bottom:895.631467pt;}
.y17{bottom:895.632800pt;}
.yf{bottom:902.298133pt;}
.ye{bottom:988.964800pt;}
.y16{bottom:988.966133pt;}
.yd{bottom:1068.964800pt;}
.y15{bottom:1068.966133pt;}
.y2d{bottom:1116.802133pt;}
.y2c{bottom:1176.778133pt;}
.y1a{bottom:1185.203067pt;}
.y35{bottom:1446.294400pt;}
.y34{bottom:1526.318400pt;}
.y33{bottom:1606.342400pt;}
.y32{bottom:1686.342400pt;}
.y31{bottom:1766.342400pt;}
.y2b{bottom:1836.794133pt;}
.y30{bottom:1846.342400pt;}
.y2a{bottom:1896.770133pt;}
.yc{bottom:2094.635333pt;}
.yb{bottom:2161.835333pt;}
.y29{bottom:2172.906133pt;}
.y28{bottom:2232.882133pt;}
.ya{bottom:2247.902400pt;}
.y26{bottom:2366.408800pt;}
.y9{bottom:2369.502400pt;}
.y8{bottom:2436.702400pt;}
.y25{bottom:2446.408800pt;}
.y7{bottom:2503.902400pt;}
.y27{bottom:2560.188800pt;}
.y6{bottom:2589.970000pt;}
.y5{bottom:2794.657333pt;}
.y4{bottom:2897.057333pt;}
.y3{bottom:2977.057333pt;}
.y2{bottom:3090.958400pt;}
.y1{bottom:3266.958400pt;}
.h9{height:153.813333pt;}
.h5{height:161.504000pt;}
.h3{height:192.266667pt;}
.h2{height:200.890933pt;}
.h4{height:211.493333pt;}
.h6{height:246.101333pt;}
.h7{height:249.946667pt;}
.h8{height:307.626667pt;}
.h1{height:422.986667pt;}
.h0{height:3456.000000pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x9{left:171.050133pt;}
.x7{left:173.132133pt;}
.xb{left:182.194133pt;}
.xa{left:183.314133pt;}
.x6{left:212.546933pt;}
.x28{left:239.290400pt;}
.x29{left:287.290400pt;}
.x1b{left:312.391333pt;}
.x17{left:356.530000pt;}
.x18{left:385.828133pt;}
.x8{left:406.109333pt;}
.x19{left:437.892533pt;}
.x16{left:531.737600pt;}
.x1a{left:702.839200pt;}
.x20{left:806.048133pt;}
.xc{left:878.716800pt;}
.xe{left:939.233067pt;}
.xf{left:965.273067pt;}
.x10{left:1052.129067pt;}
.xd{left:1063.587867pt;}
.x1f{left:1226.554667pt;}
.x3{left:1291.847067pt;}
.x1c{left:1310.100267pt;}
.x1{left:1455.035867pt;}
.x2{left:1472.925067pt;}
.x4{left:1521.113600pt;}
.x1d{left:1526.945333pt;}
.x15{left:1531.648000pt;}
.x14{left:1540.328000pt;}
.x1e{left:1549.408267pt;}
.x13{left:1555.112000pt;}
.x11{left:1625.059200pt;}
.x12{left:1741.767600pt;}
.x5{left:1927.446933pt;}
.x25{left:2512.723333pt;}
.x23{left:2516.251333pt;}
.x24{left:2517.707333pt;}
.x21{left:2529.519467pt;}
.x26{left:2646.998667pt;}
.x27{left:2723.852000pt;}
.x22{left:2891.547467pt;}
}




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