
    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_d237686350f61904af9ee9b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_7e6f8ebdc2a3361fd09d76d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_b995bda2aadd6d863c2f3c1b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_a3812864e3972ca5fa7f267d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.791992;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);}
.m2{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:29.884080px;}
.ls0{letter-spacing:31.023661px;}
.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;}
}
.ws6{word-spacing:-80.219177px;}
.ws0{word-spacing:-78.476251px;}
.ws8{word-spacing:-74.361145px;}
.ws7{word-spacing:-69.671113px;}
.ws9{word-spacing:-69.670681px;}
.ws1{word-spacing:-64.557900px;}
.ws2{word-spacing:-54.486868px;}
.wsd{word-spacing:-45.405736px;}
.ws10{word-spacing:-44.891656px;}
.wsc{word-spacing:-44.831880px;}
.wsb{word-spacing:-43.038600px;}
.ws4{word-spacing:-37.838107px;}
.wse{word-spacing:-35.865510px;}
.wsf{word-spacing:-29.887920px;}
.ws11{word-spacing:-29.883362px;}
.ws5{word-spacing:-28.752179px;}
.ws3{word-spacing:-2.988792px;}
.wsa{word-spacing:0.000000px;}
._c{margin-left:-31.023661px;}
._e{margin-left:-16.079701px;}
._0{margin-left:-11.405711px;}
._1{margin-left:-7.919102px;}
._15{margin-left:-6.276463px;}
._16{margin-left:-1.853051px;}
._4{width:1.853051px;}
._12{width:3.227895px;}
._7{width:14.943960px;}
._1c{width:19.136186px;}
._14{width:20.794075px;}
._1b{width:28.398478px;}
._8{width:29.708592px;}
._d{width:31.740971px;}
._1a{width:35.865510px;}
._13{width:40.707347px;}
._19{width:43.038600px;}
._b{width:49.793275px;}
._10{width:51.889467px;}
._f{width:53.140722px;}
._3{width:56.787048px;}
._6{width:62.764632px;}
._a{width:71.731008px;}
._9{width:81.792990px;}
._17{width:1146.589727px;}
._11{width:1990.803915px;}
._2{width:2249.696366px;}
._18{width:2339.775269px;}
._5{width:2353.228121px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975120px;}
.y0{bottom:0.000000px;}
.y18{bottom:45.235500px;}
.y28{bottom:255.387000px;}
.y29{bottom:292.311000px;}
.y17{bottom:381.688500px;}
.y16{bottom:414.564000px;}
.y15{bottom:447.441000px;}
.y14{bottom:465.373500px;}
.y13{bottom:483.307500px;}
.y12{bottom:501.240000px;}
.y11{bottom:534.117000px;}
.y10{bottom:552.049500px;}
.yf{bottom:569.982000px;}
.ye{bottom:587.914500px;}
.yd{bottom:605.847000px;}
.yc{bottom:623.779500px;}
.yb{bottom:641.713500px;}
.y48{bottom:652.033500px;}
.ya{bottom:659.646000px;}
.y47{bottom:669.967500px;}
.y9{bottom:677.578500px;}
.y46{bottom:687.900000px;}
.y8{bottom:695.511000px;}
.y7{bottom:713.443500px;}
.y45{bottom:730.171500px;}
.y6{bottom:746.320500px;}
.y25{bottom:750.427500px;}
.y24{bottom:768.360000px;}
.y23{bottom:786.292500px;}
.y5{bottom:788.593500px;}
.y44{bottom:789.430500px;}
.y22{bottom:804.226500px;}
.y43{bottom:807.363000px;}
.y42{bottom:825.297000px;}
.y21{bottom:831.124500px;}
.y41{bottom:843.229500px;}
.y40{bottom:861.162000px;}
.y4{bottom:869.290500px;}
.y20{bottom:873.397500px;}
.y30{bottom:873.750000px;}
.y3f{bottom:879.094500px;}
.y2f{bottom:891.682500px;}
.y3e{bottom:897.027000px;}
.y2e{bottom:909.615000px;}
.y3{bottom:911.133000px;}
.y3d{bottom:914.959500px;}
.y2d{bottom:927.549000px;}
.y1f{bottom:932.656500px;}
.y3c{bottom:932.893500px;}
.y35{bottom:938.467500px;}
.y2c{bottom:945.481500px;}
.y1e{bottom:950.589000px;}
.y3b{bottom:950.826000px;}
.y34{bottom:956.400000px;}
.y2{bottom:960.448500px;}
.y1d{bottom:968.521500px;}
.y3a{bottom:968.758500px;}
.y33{bottom:974.332500px;}
.y2b{bottom:982.405500px;}
.y1c{bottom:986.454000px;}
.y39{bottom:986.691000px;}
.y32{bottom:992.265000px;}
.y1{bottom:997.807500px;}
.y1b{bottom:1004.388000px;}
.y38{bottom:1004.623500px;}
.y31{bottom:1010.199000px;}
.y2a{bottom:1019.331000px;}
.y1a{bottom:1022.320500px;}
.y37{bottom:1022.557500px;}
.y27{bottom:1028.131500px;}
.y19{bottom:1064.592000px;}
.y36{bottom:1064.829000px;}
.y26{bottom:1065.055500px;}
.h5{height:41.533701px;}
.h4{height:44.831880px;}
.h6{height:53.798265px;}
.h2{height:59.808523px;}
.h3{height:64.557900px;}
.h1{height:92.981340px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.x6{left:130.416000px;}
.x9{left:132.655500px;}
.xd{left:145.360500px;}
.x1{left:157.414500px;}
.xa{left:163.293000px;}
.x7{left:164.787000px;}
.x3{left:286.278000px;}
.xb{left:354.403500px;}
.x2{left:404.296500px;}
.x4{left:408.795000px;}
.xc{left:451.528500px;}
.x8{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:26.563627pt;}
.ls0{letter-spacing:27.576588pt;}
.ws6{word-spacing:-71.305935pt;}
.ws0{word-spacing:-69.756668pt;}
.ws8{word-spacing:-66.098796pt;}
.ws7{word-spacing:-61.929879pt;}
.ws9{word-spacing:-61.929495pt;}
.ws1{word-spacing:-57.384800pt;}
.ws2{word-spacing:-48.432771pt;}
.wsd{word-spacing:-40.360654pt;}
.ws10{word-spacing:-39.903694pt;}
.wsc{word-spacing:-39.850560pt;}
.wsb{word-spacing:-38.256533pt;}
.ws4{word-spacing:-33.633873pt;}
.wse{word-spacing:-31.880453pt;}
.wsf{word-spacing:-26.567040pt;}
.ws11{word-spacing:-26.562988pt;}
.ws5{word-spacing:-25.557492pt;}
.ws3{word-spacing:-2.656704pt;}
.wsa{word-spacing:0.000000pt;}
._c{margin-left:-27.576588pt;}
._e{margin-left:-14.293068pt;}
._0{margin-left:-10.138410pt;}
._1{margin-left:-7.039202pt;}
._15{margin-left:-5.579078pt;}
._16{margin-left:-1.647156pt;}
._4{width:1.647156pt;}
._12{width:2.869240pt;}
._7{width:13.283520pt;}
._1c{width:17.009943pt;}
._14{width:18.483622pt;}
._1b{width:25.243092pt;}
._8{width:26.407638pt;}
._d{width:28.214196pt;}
._1a{width:31.880453pt;}
._13{width:36.184308pt;}
._19{width:38.256533pt;}
._b{width:44.260689pt;}
._10{width:46.123970pt;}
._f{width:47.236197pt;}
._3{width:50.477376pt;}
._6{width:55.790784pt;}
._a{width:63.760896pt;}
._9{width:72.704880pt;}
._17{width:1019.190868pt;}
._11{width:1769.603480pt;}
._2{width:1999.730103pt;}
._18{width:2079.800239pt;}
._5{width:2091.758330pt;}
.fs2{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200107pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:40.209333pt;}
.y28{bottom:227.010667pt;}
.y29{bottom:259.832000pt;}
.y17{bottom:339.278667pt;}
.y16{bottom:368.501333pt;}
.y15{bottom:397.725333pt;}
.y14{bottom:413.665333pt;}
.y13{bottom:429.606667pt;}
.y12{bottom:445.546667pt;}
.y11{bottom:474.770667pt;}
.y10{bottom:490.710667pt;}
.yf{bottom:506.650667pt;}
.ye{bottom:522.590667pt;}
.yd{bottom:538.530667pt;}
.yc{bottom:554.470667pt;}
.yb{bottom:570.412000pt;}
.y48{bottom:579.585333pt;}
.ya{bottom:586.352000pt;}
.y47{bottom:595.526667pt;}
.y9{bottom:602.292000pt;}
.y46{bottom:611.466667pt;}
.y8{bottom:618.232000pt;}
.y7{bottom:634.172000pt;}
.y45{bottom:649.041333pt;}
.y6{bottom:663.396000pt;}
.y25{bottom:667.046667pt;}
.y24{bottom:682.986667pt;}
.y23{bottom:698.926667pt;}
.y5{bottom:700.972000pt;}
.y44{bottom:701.716000pt;}
.y22{bottom:714.868000pt;}
.y43{bottom:717.656000pt;}
.y42{bottom:733.597333pt;}
.y21{bottom:738.777333pt;}
.y41{bottom:749.537333pt;}
.y40{bottom:765.477333pt;}
.y4{bottom:772.702667pt;}
.y20{bottom:776.353333pt;}
.y30{bottom:776.666667pt;}
.y3f{bottom:781.417333pt;}
.y2f{bottom:792.606667pt;}
.y3e{bottom:797.357333pt;}
.y2e{bottom:808.546667pt;}
.y3{bottom:809.896000pt;}
.y3d{bottom:813.297333pt;}
.y2d{bottom:824.488000pt;}
.y1f{bottom:829.028000pt;}
.y3c{bottom:829.238667pt;}
.y35{bottom:834.193333pt;}
.y2c{bottom:840.428000pt;}
.y1e{bottom:844.968000pt;}
.y3b{bottom:845.178667pt;}
.y34{bottom:850.133333pt;}
.y2{bottom:853.732000pt;}
.y1d{bottom:860.908000pt;}
.y3a{bottom:861.118667pt;}
.y33{bottom:866.073333pt;}
.y2b{bottom:873.249333pt;}
.y1c{bottom:876.848000pt;}
.y39{bottom:877.058667pt;}
.y32{bottom:882.013333pt;}
.y1{bottom:886.940000pt;}
.y1b{bottom:892.789333pt;}
.y38{bottom:892.998667pt;}
.y31{bottom:897.954667pt;}
.y2a{bottom:906.072000pt;}
.y1a{bottom:908.729333pt;}
.y37{bottom:908.940000pt;}
.y27{bottom:913.894667pt;}
.y19{bottom:946.304000pt;}
.y36{bottom:946.514667pt;}
.y26{bottom:946.716000pt;}
.h5{height:36.918846pt;}
.h4{height:39.850560pt;}
.h6{height:47.820680pt;}
.h2{height:53.163132pt;}
.h3{height:57.384800pt;}
.h1{height:82.650080pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.x6{left:115.925333pt;}
.x9{left:117.916000pt;}
.xd{left:129.209333pt;}
.x1{left:139.924000pt;}
.xa{left:145.149333pt;}
.x7{left:146.477333pt;}
.x3{left:254.469333pt;}
.xb{left:315.025333pt;}
.x2{left:359.374667pt;}
.x4{left:363.373333pt;}
.xc{left:401.358667pt;}
.x8{left:404.678667pt;}
}




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