
    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_beeba20587e7d5ed2dda9151.woff')format("woff");}.ff1{font-family:ff1;line-height:0.993652;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_d3a98dcc843d64f0df0119a4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_0615155d5bf8d2646660a2b8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.990234;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_fed4844ae71c197570beb285.woff')format("woff");}.ff4{font-family:ff4;line-height:0.947000;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_95bedd5e85e57274e9667704.woff')format("woff");}.ff5{font-family:ff5;line-height:0.741000;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:89.016658px;}
.v2{vertical-align:148.650783px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017578px;}
.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:-49.127976px;}
.ws0{word-spacing:-44.120319px;}
.ws2{word-spacing:-38.230256px;}
.ws3{word-spacing:-32.351224px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-15.930085px;}
._7{margin-left:-12.876696px;}
._20{margin-left:-11.347683px;}
._5{margin-left:-9.886538px;}
._22{margin-left:-8.777260px;}
._e{margin-left:-7.297377px;}
._f{margin-left:-5.289943px;}
._8{margin-left:-3.852885px;}
._a{margin-left:-2.373681px;}
._c{margin-left:-1.028462px;}
._19{width:2.110694px;}
._6{width:3.689175px;}
._b{width:4.984922px;}
._11{width:6.612263px;}
._9{width:8.546233px;}
._10{width:10.523036px;}
._0{width:12.599743px;}
._1{width:14.624734px;}
._3{width:18.929135px;}
._1c{width:20.540400px;}
._4{width:21.847372px;}
._13{width:24.796220px;}
._14{width:26.081525px;}
._1d{width:28.163151px;}
._2{width:30.173556px;}
._17{width:36.641003px;}
._16{width:38.404463px;}
._1a{width:48.984139px;}
._d{width:51.598334px;}
._24{width:64.196323px;}
._18{width:65.389472px;}
._12{width:67.498816px;}
._1f{width:129.167901px;}
._15{width:173.669493px;}
._1b{width:181.642025px;}
._21{width:317.391915px;}
._23{width:2244.350700px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:101.968208px;}
.fsd{font-size:131.982680px;}
.fs6{font-size:155.967258px;}
.fs7{font-size:157.587230px;}
.fs2{font-size:161.952162px;}
.fsc{font-size:173.966942px;}
.fs0{font-size:179.996836px;}
.fs3{font-size:200.426481px;}
.fsa{font-size:203.981423px;}
.fs9{font-size:227.965993px;}
.fs4{font-size:251.950580px;}
.fs5{font-size:251.995570px;}
.fsb{font-size:263.965360px;}
.fs1{font-size:379.703312px;}
.y0{bottom:0.000000px;}
.y25{bottom:81.745540px;}
.y24{bottom:132.369650px;}
.y23{bottom:182.993760px;}
.y22{bottom:233.617871px;}
.y21{bottom:284.241981px;}
.y20{bottom:334.866091px;}
.y1f{bottom:385.490201px;}
.y1e{bottom:436.114311px;}
.y1d{bottom:486.738421px;}
.y1c{bottom:537.362531px;}
.y1b{bottom:587.986641px;}
.y2b{bottom:606.202733px;}
.y2a{bottom:654.822322px;}
.y27{bottom:862.798099px;}
.y2e{bottom:1134.409108px;}
.y2d{bottom:1195.158040px;}
.y29{bottom:1236.107249px;}
.y2c{bottom:1255.906972px;}
.y28{bottom:1270.981636px;}
.y26{bottom:1328.505641px;}
.y32{bottom:1456.149511px;}
.y31{bottom:1502.273700px;}
.y7{bottom:1523.778480px;}
.y6{bottom:1589.027333px;}
.y5{bottom:1654.276186px;}
.y4{bottom:1719.525039px;}
.y3{bottom:1784.773892px;}
.y2{bottom:1892.771994px;}
.y30{bottom:1896.899005px;}
.y2f{bottom:1943.023194px;}
.y1{bottom:1955.770886px;}
.y1a{bottom:2122.431140px;}
.y19{bottom:2296.314685px;}
.y18{bottom:2353.688676px;}
.y17{bottom:2411.062668px;}
.y16{bottom:2490.936264px;}
.y15{bottom:2548.310255px;}
.y14{bottom:2605.684247px;}
.y13{bottom:2663.058238px;}
.ye{bottom:2709.767641px;}
.y12{bottom:2742.931834px;}
.yd{bottom:2779.516415px;}
.y11{bottom:2800.305826px;}
.y10{bottom:2857.679817px;}
.yf{bottom:2970.648920px;}
.yc{bottom:3097.257685px;}
.yb{bottom:3153.506697px;}
.ya{bottom:3209.755708px;}
.y9{bottom:3290.079317px;}
.y8{bottom:3403.702320px;}
.ha{height:78.019620px;}
.he{height:100.984795px;}
.h9{height:116.772137px;}
.h8{height:119.336276px;}
.h4{height:123.915546px;}
.hd{height:133.108495px;}
.h2{height:137.722188px;}
.h5{height:153.353660px;}
.h6{height:185.687578px;}
.h7{height:185.720735px;}
.hb{height:239.350967px;}
.h3{height:279.841341px;}
.hc{height:343.193253px;}
.h1{height:3576.000000px;}
.h0{height:3576.374842px;}
.w2{width:2525.624895px;}
.w0{width:2525.625000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.xc{left:91.171796px;}
.xa{left:92.713849px;}
.x8{left:101.205975px;}
.xe{left:115.885136px;}
.x12{left:124.637204px;}
.x11{left:131.000373px;}
.x9{left:167.882865px;}
.x3{left:259.353893px;}
.x4{left:530.544439px;}
.xf{left:719.180070px;}
.x5{left:803.576487px;}
.x14{left:1213.262723px;}
.x13{left:1234.883437px;}
.xb{left:1366.690958px;}
.x10{left:1447.727916px;}
.x1{left:1456.303655px;}
.x2{left:1532.802311px;}
.xd{left:1844.890461px;}
.x7{left:2099.728758px;}
.x6{left:2181.131624px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:79.125918pt;}
.v2{vertical-align:132.134029pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015625pt;}
.ws1{word-spacing:-43.669312pt;}
.ws0{word-spacing:-39.218061pt;}
.ws2{word-spacing:-33.982450pt;}
.ws3{word-spacing:-28.756643pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-14.160076pt;}
._7{margin-left:-11.445952pt;}
._20{margin-left:-10.086829pt;}
._5{margin-left:-8.788034pt;}
._22{margin-left:-7.802009pt;}
._e{margin-left:-6.486558pt;}
._f{margin-left:-4.702171pt;}
._8{margin-left:-3.424786pt;}
._a{margin-left:-2.109938pt;}
._c{margin-left:-0.914188pt;}
._19{width:1.876172pt;}
._6{width:3.279267pt;}
._b{width:4.431042pt;}
._11{width:5.877567pt;}
._9{width:7.596652pt;}
._10{width:9.353809pt;}
._0{width:11.199771pt;}
._1{width:12.999763pt;}
._3{width:16.825898pt;}
._1c{width:18.258133pt;}
._4{width:19.419887pt;}
._13{width:22.041084pt;}
._14{width:23.183578pt;}
._1d{width:25.033912pt;}
._2{width:26.820939pt;}
._17{width:32.569781pt;}
._16{width:34.137300pt;}
._1a{width:43.541456pt;}
._d{width:45.865186pt;}
._24{width:57.063398pt;}
._18{width:58.123975pt;}
._12{width:59.998948pt;}
._1f{width:114.815912pt;}
._15{width:154.372883pt;}
._1b{width:161.459578pt;}
._21{width:282.126147pt;}
._23{width:1994.978400pt;}
.fs8{font-size:90.638407pt;}
.fsd{font-size:117.317938pt;}
.fs6{font-size:138.637563pt;}
.fs7{font-size:140.077538pt;}
.fs2{font-size:143.957478pt;}
.fsc{font-size:154.637282pt;}
.fs0{font-size:159.997188pt;}
.fs3{font-size:178.156872pt;}
.fsa{font-size:181.316821pt;}
.fs9{font-size:202.636438pt;}
.fs4{font-size:223.956071pt;}
.fs5{font-size:223.996063pt;}
.fsb{font-size:234.635876pt;}
.fs1{font-size:337.514055pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:72.662702pt;}
.y24{bottom:117.661911pt;}
.y23{bottom:162.661120pt;}
.y22{bottom:207.660329pt;}
.y21{bottom:252.659538pt;}
.y20{bottom:297.658747pt;}
.y1f{bottom:342.657956pt;}
.y1e{bottom:387.657165pt;}
.y1d{bottom:432.656374pt;}
.y1c{bottom:477.655583pt;}
.y1b{bottom:522.654792pt;}
.y2b{bottom:538.846873pt;}
.y2a{bottom:582.064287pt;}
.y27{bottom:766.931643pt;}
.y2e{bottom:1008.363651pt;}
.y2d{bottom:1062.362702pt;}
.y29{bottom:1098.761999pt;}
.y2c{bottom:1116.361753pt;}
.y28{bottom:1129.761454pt;}
.y26{bottom:1180.893903pt;}
.y32{bottom:1294.355121pt;}
.y31{bottom:1335.354400pt;}
.y7{bottom:1354.469760pt;}
.y6{bottom:1412.468740pt;}
.y5{bottom:1470.467721pt;}
.y4{bottom:1528.466701pt;}
.y3{bottom:1586.465682pt;}
.y2{bottom:1682.463994pt;}
.y30{bottom:1686.132449pt;}
.y2f{bottom:1727.131728pt;}
.y1{bottom:1738.463010pt;}
.y1a{bottom:1886.605457pt;}
.y19{bottom:2041.168609pt;}
.y18{bottom:2092.167712pt;}
.y17{bottom:2143.166816pt;}
.y16{bottom:2214.165568pt;}
.y15{bottom:2265.164671pt;}
.y14{bottom:2316.163775pt;}
.y13{bottom:2367.162879pt;}
.ye{bottom:2408.682348pt;}
.y12{bottom:2438.161631pt;}
.yd{bottom:2470.681258pt;}
.y11{bottom:2489.160734pt;}
.y10{bottom:2540.159838pt;}
.yf{bottom:2640.576818pt;}
.yc{bottom:2753.117943pt;}
.yb{bottom:2803.117064pt;}
.ya{bottom:2853.116185pt;}
.y9{bottom:2924.514949pt;}
.y8{bottom:3025.513173pt;}
.ha{height:69.350773pt;}
.he{height:89.764262pt;}
.h9{height:103.797455pt;}
.h8{height:106.076690pt;}
.h4{height:110.147152pt;}
.hd{height:118.318662pt;}
.h2{height:122.419723pt;}
.h5{height:136.314365pt;}
.h6{height:165.055625pt;}
.h7{height:165.085098pt;}
.hb{height:212.756415pt;}
.h3{height:248.747859pt;}
.hc{height:305.060670pt;}
.h1{height:3178.666667pt;}
.h0{height:3178.999860pt;}
.w2{width:2244.999906pt;}
.w0{width:2245.000000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.xc{left:81.041597pt;}
.xa{left:82.412310pt;}
.x8{left:89.960867pt;}
.xe{left:103.009010pt;}
.x12{left:110.788626pt;}
.x11{left:116.444776pt;}
.x9{left:149.229213pt;}
.x3{left:230.536794pt;}
.x4{left:471.595057pt;}
.xf{left:639.271173pt;}
.x5{left:714.290210pt;}
.x14{left:1078.455754pt;}
.x13{left:1097.674166pt;}
.xb{left:1214.836407pt;}
.x10{left:1286.869258pt;}
.x1{left:1294.492138pt;}
.x2{left:1362.490943pt;}
.xd{left:1639.902632pt;}
.x7{left:1866.425563pt;}
.x6{left:1938.783666pt;}
}




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