
    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_561ff7d043c41228753c7e83.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_9aa2aa2c3deb8e4b5ac73fa3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.074500;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_eb4f8c6d2b13a7b668c2f57b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_580f8190396352348b5e855c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.987000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024991px;}
.ls0{letter-spacing:0.025014px;}
.ls2{letter-spacing:0.025036px;}
.ls4{letter-spacing:0.039568px;}
.ls3{letter-spacing:0.043684px;}
.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:-25.427204px;}
.ws2{word-spacing:-19.402036px;}
.ws3{word-spacing:-19.350188px;}
.ws4{word-spacing:-17.797136px;}
.ws0{word-spacing:-13.823044px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-17.707094px;}
._9{margin-left:-11.891183px;}
._3{margin-left:-9.424264px;}
._5{margin-left:-8.129855px;}
._8{margin-left:-6.855691px;}
._6{margin-left:-5.453736px;}
._7{margin-left:-3.559874px;}
._2{margin-left:-2.361846px;}
._0{margin-left:-1.002078px;}
._1{width:1.063141px;}
._4{width:3.091980px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,49,49);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.986336px;}
.fs0{font-size:59.969821px;}
.fs8{font-size:62.984059px;}
.fs3{font-size:78.685085px;}
.fs7{font-size:83.948753px;}
.fs4{font-size:84.173691px;}
.fs6{font-size:107.972672px;}
.fs1{font-size:119.939644px;}
.fs5{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.135021px;}
.y7{bottom:20.611020px;}
.y6{bottom:38.606466px;}
.y4{bottom:69.498789px;}
.y3{bottom:89.743665px;}
.y2{bottom:117.111656px;}
.yc{bottom:155.747834px;}
.y3d{bottom:165.870267px;}
.yb{bottom:175.992711px;}
.y3c{bottom:186.115143px;}
.ya{bottom:196.237587px;}
.y3b{bottom:206.360019px;}
.y9{bottom:216.482463px;}
.y3a{bottom:226.604895px;}
.y8{bottom:236.727339px;}
.y5{bottom:260.420402px;}
.yd{bottom:304.284216px;}
.y39{bottom:349.381419px;}
.y22{bottom:352.433639px;}
.y38{bottom:378.624018px;}
.y21{bottom:381.676238px;}
.y37{bottom:407.866617px;}
.y20{bottom:410.918837px;}
.y36{bottom:437.109215px;}
.y1f{bottom:440.161436px;}
.y34{bottom:466.351814px;}
.y1e{bottom:469.404034px;}
.y33{bottom:495.594413px;}
.y1d{bottom:498.646633px;}
.y32{bottom:524.837012px;}
.y1c{bottom:527.889232px;}
.y31{bottom:554.079610px;}
.y1b{bottom:557.131831px;}
.y30{bottom:583.322209px;}
.y1a{bottom:586.374429px;}
.y2f{bottom:612.564808px;}
.y19{bottom:615.617028px;}
.y2e{bottom:641.807407px;}
.y18{bottom:644.859627px;}
.y2d{bottom:671.050005px;}
.y17{bottom:674.102226px;}
.y2c{bottom:700.292604px;}
.y16{bottom:703.344824px;}
.y2b{bottom:729.535203px;}
.y15{bottom:732.587423px;}
.y2a{bottom:758.777802px;}
.y14{bottom:761.830022px;}
.y29{bottom:788.020401px;}
.y13{bottom:791.072621px;}
.y28{bottom:817.262999px;}
.y12{bottom:820.315220px;}
.y27{bottom:846.505598px;}
.y11{bottom:849.557818px;}
.y26{bottom:875.748197px;}
.y10{bottom:878.800417px;}
.yf{bottom:940.593237px;}
.ye{bottom:944.049802px;}
.y25{bottom:1016.833081px;}
.y24{bottom:1053.948687px;}
.y23{bottom:1121.056720px;}
.y35{bottom:1224.821705px;}
.h6{height:48.776655px;}
.h3{height:49.535072px;}
.h4{height:54.182734px;}
.h10{height:56.906097px;}
.h7{height:56.971330px;}
.h8{height:64.993880px;}
.h11{height:69.341670px;}
.h9{height:69.527469px;}
.he{height:75.847698px;}
.ha{height:76.050930px;}
.hf{height:79.751315px;}
.hb{height:79.965007px;}
.hd{height:97.553309px;}
.h5{height:99.070146px;}
.hc{height:257.634411px;}
.h1{height:1263.000000px;}
.h2{height:1263.239947px;}
.h0{height:1263.374968px;}
.w2{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x1{left:13.749168px;}
.x16{left:67.513258px;}
.xb{left:91.409403px;}
.x14{left:290.139416px;}
.x15{left:313.058197px;}
.x17{left:336.041992px;}
.xc{left:393.636825px;}
.xd{left:429.416831px;}
.x18{left:537.945270px;}
.x3{left:555.520232px;}
.x4{left:647.272400px;}
.x5{left:662.262747px;}
.xa{left:695.357035px;}
.x6{left:802.131649px;}
.x7{left:817.121990px;}
.x12{left:835.170312px;}
.xe{left:853.467878px;}
.x13{left:856.206110px;}
.xf{left:874.503665px;}
.x8{left:893.198444px;}
.x10{left:897.299300px;}
.x9{left:908.188785px;}
.x11{left:918.335099px;}
.x2{left:1000.847154px;}
.x19{left:1245.762020px;}
.x1a{left:1281.436585px;}
.x1b{left:1341.233368px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.022214pt;}
.ls0{letter-spacing:0.022234pt;}
.ls2{letter-spacing:0.022254pt;}
.ls4{letter-spacing:0.035171pt;}
.ls3{letter-spacing:0.038830pt;}
.ws1{word-spacing:-22.601959pt;}
.ws2{word-spacing:-17.246254pt;}
.ws3{word-spacing:-17.200167pt;}
.ws4{word-spacing:-15.819676pt;}
.ws0{word-spacing:-12.287150pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-15.739640pt;}
._9{margin-left:-10.569940pt;}
._3{margin-left:-8.377124pt;}
._5{margin-left:-7.226538pt;}
._8{margin-left:-6.093948pt;}
._6{margin-left:-4.847766pt;}
._7{margin-left:-3.164333pt;}
._2{margin-left:-2.099419pt;}
._0{margin-left:-0.890736pt;}
._1{width:0.945014pt;}
._4{width:2.748427pt;}
.fs2{font-size:47.987854pt;}
.fs0{font-size:53.306508pt;}
.fs8{font-size:55.985830pt;}
.fs3{font-size:69.942298pt;}
.fs7{font-size:74.621114pt;}
.fs4{font-size:74.821059pt;}
.fs6{font-size:95.975709pt;}
.fs1{font-size:106.613016pt;}
.fs5{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.120018pt;}
.y7{bottom:18.320907pt;}
.y6{bottom:34.316858pt;}
.y4{bottom:61.776701pt;}
.y3{bottom:79.772147pt;}
.y2{bottom:104.099250pt;}
.yc{bottom:138.442520pt;}
.y3d{bottom:147.440237pt;}
.yb{bottom:156.437965pt;}
.y3c{bottom:165.435683pt;}
.ya{bottom:174.433410pt;}
.y3b{bottom:183.431128pt;}
.y9{bottom:192.428856pt;}
.y3a{bottom:201.426573pt;}
.y8{bottom:210.424301pt;}
.y5{bottom:231.484802pt;}
.yd{bottom:270.474859pt;}
.y39{bottom:310.561261pt;}
.y22{bottom:313.274346pt;}
.y38{bottom:336.554682pt;}
.y21{bottom:339.267767pt;}
.y37{bottom:362.548104pt;}
.y20{bottom:365.261188pt;}
.y36{bottom:388.541525pt;}
.y1f{bottom:391.254609pt;}
.y34{bottom:414.534946pt;}
.y1e{bottom:417.248031pt;}
.y33{bottom:440.528367pt;}
.y1d{bottom:443.241452pt;}
.y32{bottom:466.521788pt;}
.y1c{bottom:469.234873pt;}
.y31{bottom:492.515209pt;}
.y1b{bottom:495.228294pt;}
.y30{bottom:518.508630pt;}
.y1a{bottom:521.221715pt;}
.y2f{bottom:544.502051pt;}
.y19{bottom:547.215136pt;}
.y2e{bottom:570.495473pt;}
.y18{bottom:573.208557pt;}
.y2d{bottom:596.488894pt;}
.y17{bottom:599.201978pt;}
.y2c{bottom:622.482315pt;}
.y16{bottom:625.195400pt;}
.y2b{bottom:648.475736pt;}
.y15{bottom:651.188821pt;}
.y2a{bottom:674.469157pt;}
.y14{bottom:677.182242pt;}
.y29{bottom:700.462578pt;}
.y13{bottom:703.175663pt;}
.y28{bottom:726.455999pt;}
.y12{bottom:729.169084pt;}
.y27{bottom:752.449420pt;}
.y11{bottom:755.162505pt;}
.y26{bottom:778.442842pt;}
.y10{bottom:781.155926pt;}
.yf{bottom:836.082877pt;}
.ye{bottom:839.155380pt;}
.y25{bottom:903.851628pt;}
.y24{bottom:936.843278pt;}
.y23{bottom:996.494862pt;}
.y35{bottom:1088.730404pt;}
.h6{height:43.357026pt;}
.h3{height:44.031175pt;}
.h4{height:48.162430pt;}
.h10{height:50.583198pt;}
.h7{height:50.641182pt;}
.h8{height:57.772338pt;}
.h11{height:61.637040pt;}
.h9{height:61.802195pt;}
.he{height:67.420176pt;}
.ha{height:67.600827pt;}
.hf{height:70.890058pt;}
.hb{height:71.080006pt;}
.hd{height:86.714053pt;}
.h5{height:88.062352pt;}
.hc{height:229.008365pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.w2{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x1{left:12.221483pt;}
.x16{left:60.011785pt;}
.xb{left:81.252803pt;}
.x14{left:257.901703pt;}
.x15{left:278.273953pt;}
.x17{left:298.703993pt;}
.xc{left:349.899400pt;}
.xd{left:381.703850pt;}
.x18{left:478.173574pt;}
.x3{left:493.795762pt;}
.x4{left:575.353245pt;}
.x5{left:588.677997pt;}
.xa{left:618.095142pt;}
.x6{left:713.005910pt;}
.x7{left:726.330658pt;}
.x12{left:742.373611pt;}
.xe{left:758.638114pt;}
.x13{left:761.072098pt;}
.xf{left:777.336591pt;}
.x8{left:793.954172pt;}
.x10{left:797.599378pt;}
.x9{left:807.278920pt;}
.x11{left:816.297865pt;}
.x2{left:889.641915pt;}
.x19{left:1107.344018pt;}
.x1a{left:1139.054742pt;}
.x1b{left:1192.207438pt;}
}




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