
    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_aea36c8709ff655a8c350e16.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_7040ca51cf435196cc0ada78.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ccf5a35d30ef47109a58dd58.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_0f8d1d527df5168bb0b8527a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_5c4c50b4ebb4891d820e0b8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041000;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_ba9b8d1e0c500c973a82ca7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.055000;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_5ffc19144788e525835f70db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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;}
.m1{transform:matrix(0.216388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216388,0.000000,0.000000,0.250000,0,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;}
.lsb{letter-spacing:-0.827291px;}
.lsd{letter-spacing:-0.772138px;}
.lsf{letter-spacing:-0.661833px;}
.lsc{letter-spacing:-0.496375px;}
.ls6{letter-spacing:-0.441222px;}
.ls5{letter-spacing:-0.275764px;}
.lsa{letter-spacing:-0.220611px;}
.ls8{letter-spacing:-0.165458px;}
.ls9{letter-spacing:-0.110305px;}
.lse{letter-spacing:-0.055153px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.110305px;}
.ls7{letter-spacing:0.165458px;}
.ls2{letter-spacing:0.275764px;}
.ls0{letter-spacing:26.307861px;}
.ls3{letter-spacing:189.946067px;}
.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;}
}
.ws5{word-spacing:-15.553075px;}
.ws4{word-spacing:-15.442770px;}
.ws0{word-spacing:-15.332464px;}
.ws3{word-spacing:-14.450020px;}
.ws1{word-spacing:-14.339715px;}
.ws2{word-spacing:-14.229409px;}
.wsd{word-spacing:-2.040652px;}
.wsc{word-spacing:-1.103055px;}
.ws11{word-spacing:-1.047902px;}
.ws1f{word-spacing:-0.937597px;}
.ws1e{word-spacing:-0.827291px;}
.ws21{word-spacing:-0.330916px;}
.ws19{word-spacing:-0.220611px;}
.ws10{word-spacing:-0.165458px;}
.ws20{word-spacing:-0.055153px;}
.ws6{word-spacing:0.000000px;}
.ws1a{word-spacing:0.055153px;}
.wse{word-spacing:0.110305px;}
.ws1c{word-spacing:0.165458px;}
.wsf{word-spacing:0.220611px;}
.wsa{word-spacing:0.275764px;}
.ws14{word-spacing:0.496375px;}
.ws18{word-spacing:0.716986px;}
.ws15{word-spacing:3.750387px;}
.ws1d{word-spacing:5.570428px;}
.wsb{word-spacing:12.243910px;}
.ws1b{word-spacing:21.233808px;}
.ws13{word-spacing:26.032097px;}
.ws12{word-spacing:27.135152px;}
.ws17{word-spacing:29.175804px;}
.ws16{word-spacing:29.506721px;}
.ws9{word-spacing:49.582321px;}
.ws8{word-spacing:50.189001px;}
.ws7{word-spacing:50.630223px;}
._4{margin-left:-1.097540px;}
._2{width:1.406395px;}
._5{width:12.878167px;}
._7{width:20.654704px;}
._6{width:27.080000px;}
._0{width:29.988000px;}
._3{width:50.133849px;}
._8{width:56.310957px;}
._1{width:1814.130000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:49.757371px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:55.152749px;}
.y0{bottom:0.000000px;}
.y7{bottom:10.500000px;}
.y6{bottom:28.500000px;}
.y1{bottom:37.500000px;}
.y5{bottom:54.000000px;}
.y2{bottom:60.000000px;}
.y4{bottom:79.500000px;}
.y3{bottom:97.500000px;}
.y8{bottom:180.750000px;}
.y22{bottom:306.362729px;}
.y21{bottom:340.529857px;}
.y20{bottom:362.411710px;}
.y1f{bottom:384.141893px;}
.y1e{bottom:405.872076px;}
.y1d{bottom:440.190874px;}
.y1c{bottom:474.509672px;}
.y1b{bottom:508.828470px;}
.y1a{bottom:530.558653px;}
.y19{bottom:552.288836px;}
.y18{bottom:571.468204px;}
.y17{bottom:593.046717px;}
.y16{bottom:614.776900px;}
.y15{bottom:644.145739px;}
.y14{bottom:670.674211px;}
.y13{bottom:689.701909px;}
.y12{bottom:708.591726px;}
.y11{bottom:727.481542px;}
.y10{bottom:746.509241px;}
.yf{bottom:765.399057px;}
.ye{bottom:784.426755px;}
.yd{bottom:803.316572px;}
.yc{bottom:837.483700px;}
.yb{bottom:859.213883px;}
.ya{bottom:920.506871px;}
.y9{bottom:1037.561087px;}
.h5{height:41.895707px;}
.h8{height:43.405213px;}
.h7{height:46.438614px;}
.h6{height:49.692627px;}
.h3{height:52.971680px;}
.h1{height:56.320312px;}
.h2{height:112.500000px;}
.h4{height:1051.499146px;}
.h0{height:1263.000000px;}
.w2{width:743.513008px;}
.w1{width:772.503375px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:6.491625px;}
.x9{left:17.684849px;}
.x3{left:27.407641px;}
.xc{left:53.056345px;}
.x2{left:60.000000px;}
.x8{left:74.490000px;}
.x7{left:79.210808px;}
.xf{left:97.261273px;}
.xe{left:106.251171px;}
.xb{left:114.951517px;}
.x4{left:120.925991px;}
.xd{left:132.807220px;}
.x5{left:147.879218px;}
.xa{left:454.405296px;}
.x1{left:806.235000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.735370pt;}
.lsd{letter-spacing:-0.686345pt;}
.lsf{letter-spacing:-0.588296pt;}
.lsc{letter-spacing:-0.441222pt;}
.ls6{letter-spacing:-0.392197pt;}
.ls5{letter-spacing:-0.245123pt;}
.lsa{letter-spacing:-0.196099pt;}
.ls8{letter-spacing:-0.147074pt;}
.ls9{letter-spacing:-0.098049pt;}
.lse{letter-spacing:-0.049025pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.098049pt;}
.ls7{letter-spacing:0.147074pt;}
.ls2{letter-spacing:0.245123pt;}
.ls0{letter-spacing:23.384765pt;}
.ls3{letter-spacing:168.840948pt;}
.ws5{word-spacing:-13.824956pt;}
.ws4{word-spacing:-13.726906pt;}
.ws0{word-spacing:-13.628857pt;}
.ws3{word-spacing:-12.844462pt;}
.ws1{word-spacing:-12.746413pt;}
.ws2{word-spacing:-12.648364pt;}
.wsd{word-spacing:-1.813913pt;}
.wsc{word-spacing:-0.980493pt;}
.ws11{word-spacing:-0.931469pt;}
.ws1f{word-spacing:-0.833419pt;}
.ws1e{word-spacing:-0.735370pt;}
.ws21{word-spacing:-0.294148pt;}
.ws19{word-spacing:-0.196099pt;}
.ws10{word-spacing:-0.147074pt;}
.ws20{word-spacing:-0.049025pt;}
.ws6{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.049025pt;}
.wse{word-spacing:0.098049pt;}
.ws1c{word-spacing:0.147074pt;}
.wsf{word-spacing:0.196099pt;}
.wsa{word-spacing:0.245123pt;}
.ws14{word-spacing:0.441222pt;}
.ws18{word-spacing:0.637321pt;}
.ws15{word-spacing:3.333677pt;}
.ws1d{word-spacing:4.951491pt;}
.wsb{word-spacing:10.883476pt;}
.ws1b{word-spacing:18.874496pt;}
.ws13{word-spacing:23.139642pt;}
.ws12{word-spacing:24.120135pt;}
.ws17{word-spacing:25.934048pt;}
.ws16{word-spacing:26.228196pt;}
.ws9{word-spacing:44.073174pt;}
.ws8{word-spacing:44.612446pt;}
.ws7{word-spacing:45.004643pt;}
._4{margin-left:-0.975591pt;}
._2{width:1.250129pt;}
._5{width:11.447259pt;}
._7{width:18.359737pt;}
._6{width:24.071111pt;}
._0{width:26.656000pt;}
._3{width:44.563421pt;}
._8{width:50.054184pt;}
._1{width:1612.560000pt;}
.fs1{font-size:44.228774pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:49.024666pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:9.333333pt;}
.y6{bottom:25.333333pt;}
.y1{bottom:33.333333pt;}
.y5{bottom:48.000000pt;}
.y2{bottom:53.333333pt;}
.y4{bottom:70.666667pt;}
.y3{bottom:86.666667pt;}
.y8{bottom:160.666667pt;}
.y22{bottom:272.322426pt;}
.y21{bottom:302.693206pt;}
.y20{bottom:322.143742pt;}
.y1f{bottom:341.459460pt;}
.y1e{bottom:360.775179pt;}
.y1d{bottom:391.280777pt;}
.y1c{bottom:421.786375pt;}
.y1b{bottom:452.291973pt;}
.y1a{bottom:471.607691pt;}
.y19{bottom:490.923410pt;}
.y18{bottom:507.971737pt;}
.y17{bottom:527.152637pt;}
.y16{bottom:546.468356pt;}
.y15{bottom:572.573990pt;}
.y14{bottom:596.154854pt;}
.y13{bottom:613.068364pt;}
.y12{bottom:629.859312pt;}
.y11{bottom:646.650260pt;}
.y10{bottom:663.563769pt;}
.yf{bottom:680.354717pt;}
.ye{bottom:697.268227pt;}
.yd{bottom:714.059175pt;}
.yc{bottom:744.429955pt;}
.yb{bottom:763.745674pt;}
.ya{bottom:818.228330pt;}
.y9{bottom:922.276522pt;}
.h5{height:37.240628pt;}
.h8{height:38.582412pt;}
.h7{height:41.278768pt;}
.h6{height:44.171224pt;}
.h3{height:47.085938pt;}
.h1{height:50.062500pt;}
.h2{height:100.000000pt;}
.h4{height:934.665907pt;}
.h0{height:1122.666667pt;}
.w2{width:660.900451pt;}
.w1{width:686.669667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:5.770333pt;}
.x9{left:15.719866pt;}
.x3{left:24.362347pt;}
.xc{left:47.161195pt;}
.x2{left:53.333333pt;}
.x8{left:66.213333pt;}
.x7{left:70.409607pt;}
.xf{left:86.454465pt;}
.xe{left:94.445485pt;}
.xb{left:102.179126pt;}
.x4{left:107.489769pt;}
.xd{left:118.050862pt;}
.x5{left:131.448193pt;}
.xa{left:403.915819pt;}
.x1{left:716.653333pt;}
}




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