
    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_34d47b864771283e79701174.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6d5fa4ab8e62714083aced5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_6909b892c91e1a1442e9ce40.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9624437960b7420e844d98c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_0271171178a906eaf87c1cf4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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:ff7;src:url('chunks/assets/font_783ee83414153b58815c0a0f.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m6{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);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{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);}
.m7{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.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:-20.015992px;}
.ws0{word-spacing:-18.414713px;}
.ws2{word-spacing:-17.614073px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-17.170237px;}
._1{margin-left:-1.610725px;}
._0{width:1.216752px;}
._2{width:2.268697px;}
._c{width:3.514775px;}
._9{width:5.235346px;}
._8{width:6.332737px;}
._b{width:7.474042px;}
._a{width:8.548257px;}
._11{width:11.211869px;}
._7{width:12.971106px;}
._6{width:13.996354px;}
._12{width:15.192697px;}
._10{width:17.769215px;}
._d{width:18.993086px;}
._f{width:23.916967px;}
._e{width:24.937320px;}
._15{width:31.412934px;}
._13{width:43.471989px;}
._14{width:44.477429px;}
._5{width:178.242557px;}
._4{width:194.112268px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs6{font-size:59.759976px;}
.fs7{font-size:63.359975px;}
.fs3{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.fs0{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y30{bottom:222.239911px;}
.y2f{bottom:244.199902px;}
.y2e{bottom:266.879893px;}
.y2d{bottom:287.399885px;}
.y2c{bottom:305.039878px;}
.y2b{bottom:323.579871px;}
.y2a{bottom:344.459862px;}
.y29{bottom:364.979854px;}
.y28{bottom:385.679846px;}
.y27{bottom:406.559837px;}
.y26{bottom:427.079829px;}
.y25{bottom:447.779821px;}
.y24{bottom:468.479813px;}
.y23{bottom:489.179804px;}
.y22{bottom:509.879796px;}
.y21{bottom:530.579788px;}
.y20{bottom:551.279779px;}
.y1f{bottom:571.979771px;}
.y1e{bottom:592.859763px;}
.y1d{bottom:613.379755px;}
.y1c{bottom:634.079746px;}
.y1b{bottom:654.779738px;}
.y1a{bottom:675.479730px;}
.y19{bottom:696.179722px;}
.y18{bottom:716.879713px;}
.y17{bottom:737.759705px;}
.y16{bottom:758.279697px;}
.y15{bottom:778.979688px;}
.y14{bottom:799.679680px;}
.y13{bottom:846.839661px;}
.y12{bottom:853.679659px;}
.y11{bottom:875.279650px;}
.yf{bottom:904.979638px;}
.y10{bottom:910.919636px;}
.yd{bottom:925.679630px;}
.ye{bottom:931.619627px;}
.yc{bottom:946.919621px;}
.yb{bottom:971.039612px;}
.ya{bottom:995.339602px;}
.y9{bottom:1019.099592px;}
.y8{bottom:1038.179585px;}
.y7{bottom:1057.259577px;}
.y6{bottom:1076.159570px;}
.y5{bottom:1095.239562px;}
.y4{bottom:1114.139554px;}
.y3{bottom:1134.119546px;}
.y2{bottom:1155.899538px;}
.y1{bottom:1199.639520px;}
.h7{height:43.554358px;}
.h3{height:47.988262px;}
.h6{height:50.312792px;}
.ha{height:58.651148px;}
.h8{height:62.327788px;}
.h9{height:66.082474px;}
.h4{height:69.086222px;}
.h5{height:75.093720px;}
.h2{height:87.859652px;}
.h1{height:112.640580px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:53.999978px;}
.x1{left:86.939965px;}
.x13{left:99.179960px;}
.x5{left:101.159780px;}
.x4{left:103.499959px;}
.x14{left:104.939958px;}
.x2{left:172.079931px;}
.xd{left:196.019922px;}
.x7{left:280.439888px;}
.x8{left:287.279885px;}
.xe{left:294.839882px;}
.x6{left:437.760196px;}
.xf{left:473.039811px;}
.x10{left:479.699808px;}
.x9{left:525.419790px;}
.xa{left:532.079787px;}
.x15{left:590.219764px;}
.x11{left:672.839731px;}
.x12{left:679.499728px;}
.x16{left:693.539723px;}
.xb{left:709.019716px;}
.xc{left:715.679714px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-17.791993pt;}
.ws0{word-spacing:-16.368633pt;}
.ws2{word-spacing:-15.656954pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-15.262433pt;}
._1{margin-left:-1.431755pt;}
._0{width:1.081557pt;}
._2{width:2.016619pt;}
._c{width:3.124244pt;}
._9{width:4.653641pt;}
._8{width:5.629100pt;}
._b{width:6.643593pt;}
._a{width:7.598451pt;}
._11{width:9.966106pt;}
._7{width:11.529872pt;}
._6{width:12.441204pt;}
._12{width:13.504620pt;}
._10{width:15.794857pt;}
._d{width:16.882743pt;}
._f{width:21.259526pt;}
._e{width:22.166507pt;}
._15{width:27.922608pt;}
._13{width:38.641768pt;}
._14{width:39.535492pt;}
._5{width:158.437828pt;}
._4{width:172.544238pt;}
.fs5{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs6{font-size:53.119979pt;}
.fs7{font-size:56.319977pt;}
.fs3{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.fs0{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:197.546588pt;}
.y2f{bottom:217.066580pt;}
.y2e{bottom:237.226572pt;}
.y2d{bottom:255.466564pt;}
.y2c{bottom:271.146558pt;}
.y2b{bottom:287.626552pt;}
.y2a{bottom:306.186544pt;}
.y29{bottom:324.426537pt;}
.y28{bottom:342.826530pt;}
.y27{bottom:361.386522pt;}
.y26{bottom:379.626515pt;}
.y25{bottom:398.026507pt;}
.y24{bottom:416.426500pt;}
.y23{bottom:434.826493pt;}
.y22{bottom:453.226485pt;}
.y21{bottom:471.626478pt;}
.y20{bottom:490.026471pt;}
.y1f{bottom:508.426463pt;}
.y1e{bottom:526.986456pt;}
.y1d{bottom:545.226449pt;}
.y1c{bottom:563.626441pt;}
.y1b{bottom:582.026434pt;}
.y1a{bottom:600.426426pt;}
.y19{bottom:618.826419pt;}
.y18{bottom:637.226412pt;}
.y17{bottom:655.786404pt;}
.y16{bottom:674.026397pt;}
.y15{bottom:692.426390pt;}
.y14{bottom:710.826382pt;}
.y13{bottom:752.746366pt;}
.y12{bottom:758.826363pt;}
.y11{bottom:778.026355pt;}
.yf{bottom:804.426345pt;}
.y10{bottom:809.706343pt;}
.yd{bottom:822.826338pt;}
.ye{bottom:828.106335pt;}
.yc{bottom:841.706330pt;}
.yb{bottom:863.146321pt;}
.ya{bottom:884.746313pt;}
.y9{bottom:905.866304pt;}
.y8{bottom:922.826298pt;}
.y7{bottom:939.786291pt;}
.y6{bottom:956.586284pt;}
.y5{bottom:973.546277pt;}
.y4{bottom:990.346271pt;}
.y3{bottom:1008.106263pt;}
.y2{bottom:1027.466256pt;}
.y1{bottom:1066.346240pt;}
.h7{height:38.714985pt;}
.h3{height:42.656233pt;}
.h6{height:44.722482pt;}
.ha{height:52.134354pt;}
.h8{height:55.402478pt;}
.h9{height:58.739977pt;}
.h4{height:61.409975pt;}
.h5{height:66.749973pt;}
.h2{height:78.097469pt;}
.h1{height:100.124960pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:47.999981pt;}
.x1{left:77.279969pt;}
.x13{left:88.159965pt;}
.x5{left:89.919805pt;}
.x4{left:91.999963pt;}
.x14{left:93.279963pt;}
.x2{left:152.959939pt;}
.xd{left:174.239930pt;}
.x7{left:249.279900pt;}
.x8{left:255.359898pt;}
.xe{left:262.079895pt;}
.x6{left:389.120174pt;}
.xf{left:420.479832pt;}
.x10{left:426.399829pt;}
.x9{left:467.039813pt;}
.xa{left:472.959811pt;}
.x15{left:524.639790pt;}
.x11{left:598.079761pt;}
.x12{left:603.999758pt;}
.x16{left:616.479753pt;}
.xb{left:630.239748pt;}
.xc{left:636.159746pt;}
}




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