
    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_3df303e95b7cc479f2077ddc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_88fc8c18644a1feeaa61c4d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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);}
.v2{vertical-align:-95.903400px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:38.768400px;}
.v8{vertical-align:57.673800px;}
.v3{vertical-align:67.441200px;}
.v4{vertical-align:73.927800px;}
.v1{vertical-align:99.899400px;}
.v5{vertical-align:121.927200px;}
.v6{vertical-align:130.579200px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:441.933786px;}
.ls2{letter-spacing:475.716600px;}
.ls0{letter-spacing:475.719600px;}
.ls3{letter-spacing:496.666800px;}
.ls1{letter-spacing:545.839200px;}
.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;}
}
.ws3{word-spacing:-94.128000px;}
.ws4{word-spacing:-76.320000px;}
.ws2{word-spacing:-55.968000px;}
.ws0{word-spacing:-37.078800px;}
.ws1{word-spacing:-35.595648px;}
.ws6{word-spacing:-10.368000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-18.576000px;}
._6{margin-left:-17.028000px;}
._11{margin-left:-15.540000px;}
._12{margin-left:-14.484000px;}
._e{margin-left:-11.544000px;}
._c{margin-left:-9.504000px;}
._10{margin-left:-7.980000px;}
._2{margin-left:-6.708000px;}
._1{margin-left:-5.160000px;}
._9{margin-left:-3.147600px;}
._8{margin-left:-2.064000px;}
._f{margin-left:-1.052400px;}
._7{width:2.064000px;}
._0{width:3.096000px;}
._4{width:4.644000px;}
._d{width:6.025200px;}
._3{width:7.172400px;}
._a{width:8.643300px;}
._b{width:11.133048px;}
._13{width:2238.216000px;}
.fc3{color:rgb(66,47,115);}
.fc2{color:rgb(106,75,158);}
.fc1{color:rgb(79,76,77);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:167.904000px;}
.fs2{font-size:174.900000px;}
.fse{font-size:192.000000px;}
.fs7{font-size:204.000000px;}
.fsa{font-size:216.000000px;}
.fsd{font-size:228.000000px;}
.fs5{font-size:264.000000px;}
.fsc{font-size:276.000000px;}
.fs4{font-size:288.000000px;}
.fs1{font-size:300.000000px;}
.fs9{font-size:360.000000px;}
.fsb{font-size:427.278000px;}
.fs6{font-size:444.000000px;}
.fs8{font-size:480.000000px;}
.fs0{font-size:516.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:40.054200px;}
.yd{bottom:115.075200px;}
.y2a{bottom:319.257900px;}
.y34{bottom:354.487350px;}
.y26{bottom:377.757900px;}
.y29{bottom:394.233900px;}
.y33{bottom:429.508350px;}
.y25{bottom:452.733900px;}
.y28{bottom:484.233900px;}
.y24{bottom:527.709900px;}
.y27{bottom:559.209900px;}
.y32{bottom:645.136200px;}
.y30{bottom:911.579550px;}
.y2f{bottom:986.600550px;}
.y2e{bottom:1061.621550px;}
.y2d{bottom:1151.636550px;}
.y2c{bottom:1226.657550px;}
.y2b{bottom:1316.672550px;}
.y31{bottom:1370.880600px;}
.y23{bottom:1530.257100px;}
.y1a{bottom:1769.224500px;}
.y22{bottom:1770.850800px;}
.y19{bottom:1829.218500px;}
.y21{bottom:1845.862800px;}
.y18{bottom:1887.372000px;}
.y17{bottom:2193.917100px;}
.y16{bottom:2253.911100px;}
.y15{bottom:2306.821350px;}
.y20{bottom:2549.926800px;}
.y14{bottom:2603.392200px;}
.y13{bottom:2663.386200px;}
.y12{bottom:2724.770550px;}
.y11{bottom:3051.337650px;}
.y10{bottom:3144.218250px;}
.y1f{bottom:3222.644550px;}
.yf{bottom:3371.360550px;}
.yb{bottom:3584.146050px;}
.y1e{bottom:3640.730700px;}
.ya{bottom:3680.176050px;}
.y1d{bottom:3701.315250px;}
.y9{bottom:3776.206050px;}
.y8{bottom:3872.236050px;}
.y1c{bottom:3920.365650px;}
.y7{bottom:3968.236050px;}
.y1b{bottom:3985.676550px;}
.y6{bottom:4064.266050px;}
.yc{bottom:4263.408000px;}
.y5{bottom:4266.525150px;}
.y4{bottom:4513.642800px;}
.y3{bottom:4655.715150px;}
.y2{bottom:4762.663350px;}
.y1{bottom:4893.963900px;}
.h4{height:121.058784px;}
.h11{height:138.432000px;}
.h8{height:147.084000px;}
.ha{height:155.736000px;}
.h10{height:164.388000px;}
.h5{height:190.344000px;}
.h7{height:190.464000px;}
.he{height:198.996000px;}
.h3{height:226.002300px;}
.hf{height:259.560000px;}
.hd{height:308.067438px;}
.h6{height:320.124000px;}
.h9{height:346.080000px;}
.h2{height:372.036000px;}
.hb{height:381.487200px;}
.hc{height:390.139200px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:51.406500px;}
.x1{left:59.359800px;}
.x15{left:116.326200px;}
.x11{left:127.395300px;}
.x4{left:133.653150px;}
.xa{left:143.378100px;}
.x8{left:148.614300px;}
.x2{left:183.637200px;}
.x9{left:296.149650px;}
.xb{left:303.028500px;}
.x3{left:625.516050px;}
.x10{left:1008.418200px;}
.x12{left:1034.455050px;}
.x7{left:1527.835650px;}
.xf{left:1725.531000px;}
.xc{left:1967.521800px;}
.xd{left:2132.803650px;}
.xe{left:2257.382100px;}
.x17{left:2380.167450px;}
.x14{left:2406.442350px;}
.x16{left:2487.232200px;}
.x5{left:2556.739800px;}
.x13{left:2674.341000px;}
@media print{
.v2{vertical-align:-85.247467pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:34.460800pt;}
.v8{vertical-align:51.265600pt;}
.v3{vertical-align:59.947733pt;}
.v4{vertical-align:65.713600pt;}
.v1{vertical-align:88.799467pt;}
.v5{vertical-align:108.379733pt;}
.v6{vertical-align:116.070400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:392.830032pt;}
.ls2{letter-spacing:422.859200pt;}
.ls0{letter-spacing:422.861867pt;}
.ls3{letter-spacing:441.481600pt;}
.ls1{letter-spacing:485.190400pt;}
.ws3{word-spacing:-83.669333pt;}
.ws4{word-spacing:-67.840000pt;}
.ws2{word-spacing:-49.749333pt;}
.ws0{word-spacing:-32.958933pt;}
.ws1{word-spacing:-31.640576pt;}
.ws6{word-spacing:-9.216000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-16.512000pt;}
._6{margin-left:-15.136000pt;}
._11{margin-left:-13.813333pt;}
._12{margin-left:-12.874667pt;}
._e{margin-left:-10.261333pt;}
._c{margin-left:-8.448000pt;}
._10{margin-left:-7.093333pt;}
._2{margin-left:-5.962667pt;}
._1{margin-left:-4.586667pt;}
._9{margin-left:-2.797867pt;}
._8{margin-left:-1.834667pt;}
._f{margin-left:-0.935467pt;}
._7{width:1.834667pt;}
._0{width:2.752000pt;}
._4{width:4.128000pt;}
._d{width:5.355733pt;}
._3{width:6.375467pt;}
._a{width:7.682933pt;}
._b{width:9.896043pt;}
._13{width:1989.525333pt;}
.fs3{font-size:149.248000pt;}
.fs2{font-size:155.466667pt;}
.fse{font-size:170.666667pt;}
.fs7{font-size:181.333333pt;}
.fsa{font-size:192.000000pt;}
.fsd{font-size:202.666667pt;}
.fs5{font-size:234.666667pt;}
.fsc{font-size:245.333333pt;}
.fs4{font-size:256.000000pt;}
.fs1{font-size:266.666667pt;}
.fs9{font-size:320.000000pt;}
.fsb{font-size:379.802667pt;}
.fs6{font-size:394.666667pt;}
.fs8{font-size:426.666667pt;}
.fs0{font-size:458.666667pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:35.603733pt;}
.yd{bottom:102.289067pt;}
.y2a{bottom:283.784800pt;}
.y34{bottom:315.099867pt;}
.y26{bottom:335.784800pt;}
.y29{bottom:350.430133pt;}
.y33{bottom:381.785200pt;}
.y25{bottom:402.430133pt;}
.y28{bottom:430.430133pt;}
.y24{bottom:469.075467pt;}
.y27{bottom:497.075467pt;}
.y32{bottom:573.454400pt;}
.y30{bottom:810.292933pt;}
.y2f{bottom:876.978267pt;}
.y2e{bottom:943.663600pt;}
.y2d{bottom:1023.676933pt;}
.y2c{bottom:1090.362267pt;}
.y2b{bottom:1170.375600pt;}
.y31{bottom:1218.560533pt;}
.y23{bottom:1360.228533pt;}
.y1a{bottom:1572.644000pt;}
.y22{bottom:1574.089600pt;}
.y19{bottom:1625.972000pt;}
.y21{bottom:1640.766933pt;}
.y18{bottom:1677.664000pt;}
.y17{bottom:1950.148533pt;}
.y16{bottom:2003.476533pt;}
.y15{bottom:2050.507867pt;}
.y20{bottom:2266.601600pt;}
.y14{bottom:2314.126400pt;}
.y13{bottom:2367.454400pt;}
.y12{bottom:2422.018267pt;}
.y11{bottom:2712.300133pt;}
.y10{bottom:2794.860667pt;}
.y1f{bottom:2864.572933pt;}
.yf{bottom:2996.764933pt;}
.yb{bottom:3185.907600pt;}
.y1e{bottom:3236.205067pt;}
.ya{bottom:3271.267600pt;}
.y1d{bottom:3290.058000pt;}
.y9{bottom:3356.627600pt;}
.y8{bottom:3441.987600pt;}
.y1c{bottom:3484.769467pt;}
.y7{bottom:3527.320933pt;}
.y1b{bottom:3542.823600pt;}
.y6{bottom:3612.680933pt;}
.yc{bottom:3789.696000pt;}
.y5{bottom:3792.466800pt;}
.y4{bottom:4012.126933pt;}
.y3{bottom:4138.413467pt;}
.y2{bottom:4233.478533pt;}
.y1{bottom:4350.190133pt;}
.h4{height:107.607808pt;}
.h11{height:123.050667pt;}
.h8{height:130.741333pt;}
.ha{height:138.432000pt;}
.h10{height:146.122667pt;}
.h5{height:169.194667pt;}
.h7{height:169.301333pt;}
.he{height:176.885333pt;}
.h3{height:200.890933pt;}
.hf{height:230.720000pt;}
.hd{height:273.837723pt;}
.h6{height:284.554667pt;}
.h9{height:307.626667pt;}
.h2{height:330.698667pt;}
.hb{height:339.099733pt;}
.hc{height:346.790400pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:45.694667pt;}
.x1{left:52.764267pt;}
.x15{left:103.401067pt;}
.x11{left:113.240267pt;}
.x4{left:118.802800pt;}
.xa{left:127.447200pt;}
.x8{left:132.101600pt;}
.x2{left:163.233067pt;}
.x9{left:263.244133pt;}
.xb{left:269.358667pt;}
.x3{left:556.014267pt;}
.x10{left:896.371733pt;}
.x12{left:919.515600pt;}
.x7{left:1358.076133pt;}
.xf{left:1533.805333pt;}
.xc{left:1748.908267pt;}
.xd{left:1895.825467pt;}
.xe{left:2006.561867pt;}
.x17{left:2115.704400pt;}
.x14{left:2139.059867pt;}
.x16{left:2210.873067pt;}
.x5{left:2272.657600pt;}
.x13{left:2377.192000pt;}
}




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