
    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_e8335bd830b8aae13f07c0d5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c93d071f51b66c7cb2831471.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9c5ecfae2344884397a0ce3e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_02d0ef41c527648aa03f9902.woff')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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:ff5;src:url('chunks/assets/font_96c221793bc654e894a49c64.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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:ff6;src:url('chunks/assets/font_2d45ab8b25b70b2fe3bdee9a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.816000;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:178.799400px;}
.lse{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.648000px;}
.ls2{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.460000px;}
.ls4{letter-spacing:10.537599px;}
.ls3{letter-spacing:10.740000px;}
.ls1{letter-spacing:12.096000px;}
.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:-49.104000px;}
.ws9{word-spacing:-48.888000px;}
.ws4{word-spacing:-48.744000px;}
.ws5{word-spacing:-48.672000px;}
.wsb{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws3{word-spacing:-48.456000px;}
.wsa{word-spacing:-20.592000px;}
.ws6{word-spacing:-20.232000px;}
.ws8{word-spacing:-8.520000px;}
.ws7{word-spacing:0.000000px;}
.ws0{word-spacing:146.100000px;}
._d{margin-left:-948.900000px;}
._2{margin-left:-12.258000px;}
._f{margin-left:-10.500000px;}
._10{margin-left:-9.342000px;}
._0{margin-left:-7.740000px;}
._e{margin-left:-5.940000px;}
._6{margin-left:-4.590000px;}
._7{margin-left:-3.402000px;}
._8{margin-left:-1.620000px;}
._a{width:1.188000px;}
._4{width:2.646000px;}
._1{width:4.482000px;}
._b{width:6.282000px;}
._3{width:7.560000px;}
._c{width:9.090000px;}
._9{width:10.152000px;}
._5{width:11.502000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:421.602600px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y1b{bottom:117.740700px;}
.y3f{bottom:118.110000px;}
.y1a{bottom:140.096700px;}
.y3e{bottom:141.204000px;}
.y19{bottom:162.452700px;}
.y3d{bottom:164.298000px;}
.y18{bottom:184.808700px;}
.y3c{bottom:187.392000px;}
.y17{bottom:207.164700px;}
.y3b{bottom:210.486000px;}
.y16{bottom:229.520700px;}
.y3a{bottom:233.580000px;}
.y15{bottom:251.876700px;}
.y39{bottom:256.674000px;}
.y14{bottom:274.232700px;}
.y38{bottom:279.768000px;}
.y13{bottom:296.588700px;}
.y37{bottom:302.862000px;}
.y12{bottom:318.944700px;}
.y36{bottom:325.956000px;}
.y11{bottom:341.300700px;}
.y35{bottom:349.050000px;}
.y10{bottom:363.656700px;}
.y34{bottom:372.144000px;}
.yf{bottom:386.012700px;}
.y33{bottom:395.238000px;}
.ye{bottom:408.368700px;}
.y32{bottom:418.332000px;}
.yd{bottom:430.724700px;}
.y31{bottom:441.426000px;}
.yc{bottom:453.080700px;}
.y30{bottom:464.520000px;}
.yb{bottom:475.436700px;}
.y9{bottom:475.448850px;}
.y2f{bottom:487.614000px;}
.ya{bottom:497.792700px;}
.y2e{bottom:510.708000px;}
.y2d{bottom:533.802000px;}
.y2c{bottom:556.896000px;}
.y8{bottom:565.884600px;}
.y2b{bottom:579.990000px;}
.y7{bottom:588.384600px;}
.y2a{bottom:603.084000px;}
.y29{bottom:626.178000px;}
.y6{bottom:640.866600px;}
.y4b{bottom:645.750000px;}
.y28{bottom:649.272000px;}
.y5{bottom:663.371100px;}
.y27{bottom:672.366000px;}
.y4{bottom:685.875600px;}
.y4a{bottom:687.000000px;}
.y26{bottom:695.460000px;}
.y49{bottom:705.750000px;}
.y3{bottom:708.380100px;}
.y25{bottom:718.554000px;}
.y48{bottom:724.500000px;}
.y2{bottom:730.884600px;}
.y24{bottom:741.648000px;}
.y47{bottom:743.250000px;}
.y23{bottom:764.742000px;}
.y46{bottom:773.250000px;}
.y22{bottom:787.836000px;}
.y21{bottom:810.930000px;}
.y45{bottom:814.500000px;}
.y20{bottom:834.024000px;}
.y44{bottom:837.000000px;}
.y1f{bottom:857.118000px;}
.y43{bottom:859.500000px;}
.y1e{bottom:880.212000px;}
.y42{bottom:882.000000px;}
.y1d{bottom:903.306000px;}
.y41{bottom:904.500000px;}
.y1c{bottom:926.400000px;}
.y40{bottom:927.000000px;}
.h2{height:45.852539px;}
.h6{height:49.675781px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h5{height:340.654901px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x4{left:82.345650px;}
.x3{left:110.713650px;}
.x6{left:112.500000px;}
.x7{left:127.404000px;}
.x8{left:135.531450px;}
.x2{left:297.106350px;}
.x5{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:158.932800pt;}
.lse{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls2{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls4{letter-spacing:9.366755pt;}
.ls3{letter-spacing:9.546667pt;}
.ls1{letter-spacing:10.752000pt;}
.ws2{word-spacing:-43.648000pt;}
.ws9{word-spacing:-43.456000pt;}
.ws4{word-spacing:-43.328000pt;}
.ws5{word-spacing:-43.264000pt;}
.wsb{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws3{word-spacing:-43.072000pt;}
.wsa{word-spacing:-18.304000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws8{word-spacing:-7.573333pt;}
.ws7{word-spacing:0.000000pt;}
.ws0{word-spacing:129.866667pt;}
._d{margin-left:-843.466667pt;}
._2{margin-left:-10.896000pt;}
._f{margin-left:-9.333333pt;}
._10{margin-left:-8.304000pt;}
._0{margin-left:-6.880000pt;}
._e{margin-left:-5.280000pt;}
._6{margin-left:-4.080000pt;}
._7{margin-left:-3.024000pt;}
._8{margin-left:-1.440000pt;}
._a{width:1.056000pt;}
._4{width:2.352000pt;}
._1{width:3.984000pt;}
._b{width:5.584000pt;}
._3{width:6.720000pt;}
._c{width:8.080000pt;}
._9{width:9.024000pt;}
._5{width:10.224000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:374.757867pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y1b{bottom:104.658400pt;}
.y3f{bottom:104.986667pt;}
.y1a{bottom:124.530400pt;}
.y3e{bottom:125.514667pt;}
.y19{bottom:144.402400pt;}
.y3d{bottom:146.042667pt;}
.y18{bottom:164.274400pt;}
.y3c{bottom:166.570667pt;}
.y17{bottom:184.146400pt;}
.y3b{bottom:187.098667pt;}
.y16{bottom:204.018400pt;}
.y3a{bottom:207.626667pt;}
.y15{bottom:223.890400pt;}
.y39{bottom:228.154667pt;}
.y14{bottom:243.762400pt;}
.y38{bottom:248.682667pt;}
.y13{bottom:263.634400pt;}
.y37{bottom:269.210667pt;}
.y12{bottom:283.506400pt;}
.y36{bottom:289.738667pt;}
.y11{bottom:303.378400pt;}
.y35{bottom:310.266667pt;}
.y10{bottom:323.250400pt;}
.y34{bottom:330.794667pt;}
.yf{bottom:343.122400pt;}
.y33{bottom:351.322667pt;}
.ye{bottom:362.994400pt;}
.y32{bottom:371.850667pt;}
.yd{bottom:382.866400pt;}
.y31{bottom:392.378667pt;}
.yc{bottom:402.738400pt;}
.y30{bottom:412.906667pt;}
.yb{bottom:422.610400pt;}
.y9{bottom:422.621200pt;}
.y2f{bottom:433.434667pt;}
.ya{bottom:442.482400pt;}
.y2e{bottom:453.962667pt;}
.y2d{bottom:474.490667pt;}
.y2c{bottom:495.018667pt;}
.y8{bottom:503.008533pt;}
.y2b{bottom:515.546667pt;}
.y7{bottom:523.008533pt;}
.y2a{bottom:536.074667pt;}
.y29{bottom:556.602667pt;}
.y6{bottom:569.659200pt;}
.y4b{bottom:574.000000pt;}
.y28{bottom:577.130667pt;}
.y5{bottom:589.663200pt;}
.y27{bottom:597.658667pt;}
.y4{bottom:609.667200pt;}
.y4a{bottom:610.666667pt;}
.y26{bottom:618.186667pt;}
.y49{bottom:627.333333pt;}
.y3{bottom:629.671200pt;}
.y25{bottom:638.714667pt;}
.y48{bottom:644.000000pt;}
.y2{bottom:649.675200pt;}
.y24{bottom:659.242667pt;}
.y47{bottom:660.666667pt;}
.y23{bottom:679.770667pt;}
.y46{bottom:687.333333pt;}
.y22{bottom:700.298667pt;}
.y21{bottom:720.826667pt;}
.y45{bottom:724.000000pt;}
.y20{bottom:741.354667pt;}
.y44{bottom:744.000000pt;}
.y1f{bottom:761.882667pt;}
.y43{bottom:764.000000pt;}
.y1e{bottom:782.410667pt;}
.y42{bottom:784.000000pt;}
.y1d{bottom:802.938667pt;}
.y41{bottom:804.000000pt;}
.y1c{bottom:823.466667pt;}
.y40{bottom:824.000000pt;}
.h2{height:40.757812pt;}
.h6{height:44.156250pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h5{height:302.804356pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x4{left:73.196133pt;}
.x3{left:98.412133pt;}
.x6{left:100.000000pt;}
.x7{left:113.248000pt;}
.x8{left:120.472400pt;}
.x2{left:264.094533pt;}
.x5{left:556.250000pt;}
}




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