
    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_3a8bcc449449cc3bfbb5c688.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_d9de184263cdf8019fe4aabf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_3d854f44357668ed38776993.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_2c904fa62d664c0de8238f51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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_cca38658762a852f8aab5359.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.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:ff6;src:url('chunks/assets/font_545b0c7ab5f7d29da1b7ec04.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010626px;}
.ls1{letter-spacing:10.962296px;}
.ls3{letter-spacing:21.622094px;}
.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:-17.999993px;}
.ws2{word-spacing:-14.939994px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-6.686935px;}
._10{margin-left:-2.327906px;}
._1{margin-left:-1.127949px;}
._2{width:1.078273px;}
._8{width:2.376266px;}
._7{width:4.174892px;}
._a{width:6.060950px;}
._3{width:7.119182px;}
._4{width:8.563682px;}
._6{width:9.884042px;}
._e{width:11.329219px;}
._0{width:12.424244px;}
._5{width:13.702401px;}
._b{width:15.312415px;}
._9{width:16.672493px;}
._11{width:19.029726px;}
._12{width:20.126474px;}
._13{width:21.236041px;}
._c{width:22.972135px;}
._14{width:24.255979px;}
._16{width:25.640010px;}
._17{width:28.149692px;}
._18{width:35.939762px;}
._19{width:36.953236px;}
._15{width:38.236846px;}
._d{width:39.399968px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(1,1,255);}
.fc5{color:rgb(255,1,1);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(30,30,30);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.180877px;}
.y1{bottom:78.240869px;}
.y37{bottom:109.560856px;}
.y3f{bottom:110.280856px;}
.y36{bottom:113.340855px;}
.y29{bottom:115.861454px;}
.y35{bottom:127.920849px;}
.y45{bottom:131.160848px;}
.y3e{bottom:131.880847px;}
.y28{bottom:146.821441px;}
.y44{bottom:148.620841px;}
.y3d{bottom:151.861439px;}
.y43{bottom:153.121439px;}
.y3c{bottom:169.141432px;}
.y42{bottom:169.681432px;}
.y3b{bottom:175.981430px;}
.y34{bottom:177.601429px;}
.y27{bottom:177.961429px;}
.y3a{bottom:186.601425px;}
.y33{bottom:208.561417px;}
.y26{bottom:208.921416px;}
.y32{bottom:239.701404px;}
.y25{bottom:240.061404px;}
.y39{bottom:248.341401px;}
.y24{bottom:271.021392px;}
.y23{bottom:301.981379px;}
.y31{bottom:310.261376px;}
.y46{bottom:332.761367px;}
.y22{bottom:333.121367px;}
.y38{bottom:363.721355px;}
.y21{bottom:364.081354px;}
.y20{bottom:395.221342px;}
.y1f{bottom:426.181330px;}
.y1e{bottom:457.321317px;}
.y1d{bottom:488.281305px;}
.y1c{bottom:519.421292px;}
.y1b{bottom:550.381280px;}
.y40{bottom:581.161268px;}
.y1a{bottom:581.521267px;}
.y15{bottom:612.121255px;}
.y19{bottom:612.481255px;}
.y14{bottom:643.261243px;}
.y18{bottom:643.621243px;}
.y41{bottom:651.901239px;}
.y13{bottom:674.221230px;}
.y17{bottom:674.581230px;}
.y49{bottom:705.361218px;}
.y12{bottom:705.721218px;}
.y48{bottom:736.321205px;}
.y11{bottom:736.681205px;}
.y47{bottom:767.461193px;}
.y10{bottom:767.821193px;}
.y30{bottom:798.421181px;}
.yf{bottom:798.781180px;}
.y2f{bottom:829.561168px;}
.ye{bottom:829.921168px;}
.y2e{bottom:860.521156px;}
.yd{bottom:860.881156px;}
.yc{bottom:892.021143px;}
.yb{bottom:922.981131px;}
.ya{bottom:954.121118px;}
.y2d{bottom:984.721106px;}
.y9{bottom:985.081106px;}
.y7{bottom:1016.221094px;}
.y8{bottom:1024.501090px;}
.y6{bottom:1046.821081px;}
.y16{bottom:1047.181081px;}
.y5{bottom:1077.961069px;}
.y2c{bottom:1078.321069px;}
.y4{bottom:1108.921056px;}
.y2b{bottom:1109.281056px;}
.y3{bottom:1140.061044px;}
.y2a{bottom:1140.421044px;}
.h5{height:27.166630px;}
.ha{height:33.706744px;}
.h7{height:34.603186px;}
.h6{height:41.756116px;}
.h4{height:42.933583px;}
.h2{height:49.823980px;}
.h1{height:50.308574px;}
.h9{height:50.327980px;}
.h8{height:53.186379px;}
.h3{height:64.079974px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620664px;}
.x7{left:133.019197px;}
.xd{left:134.279196px;}
.xe{left:138.239195px;}
.x8{left:268.739893px;}
.x9{left:274.859890px;}
.x3{left:400.319840px;}
.xa{left:436.319825px;}
.x1{left:441.359823px;}
.x4{left:510.839796px;}
.x5{left:647.099741px;}
.x6{left:653.219739px;}
.xb{left:669.959732px;}
.xc{left:676.079730px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009446pt;}
.ls1{letter-spacing:9.744263pt;}
.ls3{letter-spacing:19.219639pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-5.943942pt;}
._10{margin-left:-2.069250pt;}
._1{margin-left:-1.002621pt;}
._2{width:0.958465pt;}
._8{width:2.112236pt;}
._7{width:3.711015pt;}
._a{width:5.387511pt;}
._3{width:6.328162pt;}
._4{width:7.612162pt;}
._6{width:8.785815pt;}
._e{width:10.070417pt;}
._0{width:11.043772pt;}
._5{width:12.179912pt;}
._b{width:13.611035pt;}
._9{width:14.819993pt;}
._11{width:16.915312pt;}
._12{width:17.890199pt;}
._13{width:18.876481pt;}
._c{width:20.419675pt;}
._14{width:21.560870pt;}
._16{width:22.791120pt;}
._17{width:25.021948pt;}
._18{width:31.946455pt;}
._19{width:32.847321pt;}
._15{width:33.988308pt;}
._d{width:35.022194pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.827446pt;}
.y1{bottom:69.547439pt;}
.y37{bottom:97.387428pt;}
.y3f{bottom:98.027427pt;}
.y36{bottom:100.747426pt;}
.y29{bottom:102.987959pt;}
.y35{bottom:113.707421pt;}
.y45{bottom:116.587420pt;}
.y3e{bottom:117.227420pt;}
.y28{bottom:130.507948pt;}
.y44{bottom:132.107414pt;}
.y3d{bottom:134.987946pt;}
.y43{bottom:136.107946pt;}
.y3c{bottom:150.347940pt;}
.y42{bottom:150.827940pt;}
.y3b{bottom:156.427937pt;}
.y34{bottom:157.867937pt;}
.y27{bottom:158.187937pt;}
.y3a{bottom:165.867934pt;}
.y33{bottom:185.387926pt;}
.y26{bottom:185.707926pt;}
.y32{bottom:213.067915pt;}
.y25{bottom:213.387915pt;}
.y39{bottom:220.747912pt;}
.y24{bottom:240.907904pt;}
.y23{bottom:268.427893pt;}
.y31{bottom:275.787890pt;}
.y46{bottom:295.787882pt;}
.y22{bottom:296.107882pt;}
.y38{bottom:323.307871pt;}
.y21{bottom:323.627871pt;}
.y20{bottom:351.307859pt;}
.y1f{bottom:378.827848pt;}
.y1e{bottom:406.507837pt;}
.y1d{bottom:434.027826pt;}
.y1c{bottom:461.707815pt;}
.y1b{bottom:489.227804pt;}
.y40{bottom:516.587793pt;}
.y1a{bottom:516.907793pt;}
.y15{bottom:544.107782pt;}
.y19{bottom:544.427782pt;}
.y14{bottom:571.787771pt;}
.y18{bottom:572.107771pt;}
.y41{bottom:579.467768pt;}
.y13{bottom:599.307760pt;}
.y17{bottom:599.627760pt;}
.y49{bottom:626.987749pt;}
.y12{bottom:627.307749pt;}
.y48{bottom:654.507738pt;}
.y11{bottom:654.827738pt;}
.y47{bottom:682.187727pt;}
.y10{bottom:682.507727pt;}
.y30{bottom:709.707716pt;}
.yf{bottom:710.027716pt;}
.y2f{bottom:737.387705pt;}
.ye{bottom:737.707705pt;}
.y2e{bottom:764.907694pt;}
.yd{bottom:765.227694pt;}
.yc{bottom:792.907683pt;}
.yb{bottom:820.427672pt;}
.ya{bottom:848.107661pt;}
.y2d{bottom:875.307650pt;}
.y9{bottom:875.627650pt;}
.y7{bottom:903.307639pt;}
.y8{bottom:910.667636pt;}
.y6{bottom:930.507628pt;}
.y16{bottom:930.827628pt;}
.y5{bottom:958.187617pt;}
.y2c{bottom:958.507617pt;}
.y4{bottom:985.707606pt;}
.y2b{bottom:986.027606pt;}
.y3{bottom:1013.387595pt;}
.y2a{bottom:1013.707595pt;}
.h5{height:24.148115pt;}
.ha{height:29.961551pt;}
.h7{height:30.758388pt;}
.h6{height:37.116548pt;}
.h4{height:38.163185pt;}
.h2{height:44.287982pt;}
.h1{height:44.718732pt;}
.h9{height:44.735982pt;}
.h8{height:47.276781pt;}
.h3{height:56.959977pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440591pt;}
.x7{left:118.239286pt;}
.xd{left:119.359286pt;}
.xe{left:122.879284pt;}
.x8{left:238.879904pt;}
.x9{left:244.319902pt;}
.x3{left:355.839858pt;}
.xa{left:387.839845pt;}
.x1{left:392.319843pt;}
.x4{left:454.079818pt;}
.x5{left:575.199770pt;}
.x6{left:580.639768pt;}
.xb{left:595.519762pt;}
.xc{left:600.959760pt;}
}




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