
    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_03f67bac351846988c74f72a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_817c45d5c88ef030f986357f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.732910;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_6b16723bd6f016f97fef71fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894531;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;}
.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;}
}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:-14.999994px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-8.035197px;}
._2{margin-left:-5.478532px;}
._1{margin-left:-2.894235px;}
._0{margin-left:-1.332554px;}
._4{width:2842.408863px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.999976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y8{bottom:10.498979px;}
.y12{bottom:10.649611px;}
.y1a{bottom:10.651154px;}
.y24{bottom:10.651197px;}
.y2e{bottom:10.651240px;}
.y38{bottom:10.651283px;}
.y40{bottom:10.651327px;}
.y14{bottom:10.760908px;}
.y4{bottom:10.798971px;}
.y1e{bottom:10.949971px;}
.y28{bottom:10.950014px;}
.y32{bottom:10.950057px;}
.y10{bottom:11.060901px;}
.ye{bottom:11.173998px;}
.y18{bottom:11.250545px;}
.y22{bottom:11.250588px;}
.y2c{bottom:11.250631px;}
.y36{bottom:11.250675px;}
.y3e{bottom:11.250718px;}
.y2{bottom:11.398363px;}
.ya{bottom:11.473991px;}
.y16{bottom:11.549619px;}
.y1c{bottom:11.551162px;}
.y26{bottom:11.551206px;}
.y30{bottom:11.551249px;}
.y3a{bottom:11.551292px;}
.y42{bottom:11.551335px;}
.yc{bottom:11.587089px;}
.y20{bottom:11.849980px;}
.y2a{bottom:11.850023px;}
.y34{bottom:11.850066px;}
.y3c{bottom:11.850109px;}
.y6{bottom:11.887081px;}
.y44{bottom:65.999974px;}
.y41{bottom:400.500000px;}
.y3f{bottom:423.000000px;}
.y3d{bottom:444.000600px;}
.y3b{bottom:465.001200px;}
.y39{bottom:508.500000px;}
.y37{bottom:531.000000px;}
.y35{bottom:552.000600px;}
.y33{bottom:573.001200px;}
.y31{bottom:595.501200px;}
.y2f{bottom:616.500000px;}
.y2d{bottom:639.000000px;}
.y2b{bottom:660.000600px;}
.y29{bottom:681.001200px;}
.y27{bottom:703.501200px;}
.y25{bottom:724.500000px;}
.y23{bottom:747.000000px;}
.y21{bottom:768.000600px;}
.y1f{bottom:789.001200px;}
.y1d{bottom:811.501200px;}
.y1b{bottom:832.500000px;}
.y19{bottom:855.000000px;}
.y17{bottom:876.000600px;}
.y15{bottom:940.500000px;}
.y11{bottom:963.000000px;}
.y13{bottom:969.001200px;}
.yf{bottom:987.001200px;}
.yd{bottom:993.000600px;}
.y9{bottom:1011.000600px;}
.yb{bottom:1017.000000px;}
.y5{bottom:1035.000000px;}
.y7{bottom:1042.500600px;}
.y3{bottom:1060.500600px;}
.y1{bottom:1081.501200px;}
.y43{bottom:1223.999510px;}
.h3{height:28.500480px;}
.h5{height:29.999520px;}
.h7{height:30.000240px;}
.h1{height:31.500000px;}
.h4{height:41.132796px;}
.h2{height:49.359355px;}
.h8{height:49.394511px;}
.h6{height:51.328104px;}
.h0{height:1263.000000px;}
.we{width:22.500000px;}
.w7{width:23.999760px;}
.w4{width:24.000480px;}
.wc{width:25.499520px;}
.wa{width:25.500240px;}
.w28{width:54.000000px;}
.w1d{width:63.000000px;}
.w1{width:67.500000px;}
.w20{width:85.500000px;}
.w3{width:120.000240px;}
.w1c{width:121.500000px;}
.w9{width:124.500240px;}
.w5{width:127.499760px;}
.w1e{width:145.499760px;}
.wb{width:145.500480px;}
.w6{width:147.000240px;}
.w25{width:163.500480px;}
.w10{width:171.000000px;}
.w8{width:182.998800px;}
.wd{width:187.498800px;}
.w12{width:216.000000px;}
.w18{width:256.500000px;}
.w27{width:271.499400px;}
.w2{width:403.500600px;}
.w1b{width:421.500600px;}
.w29{width:428.999400px;}
.w19{width:459.000000px;}
.w1a{width:482.999400px;}
.w11{width:507.000600px;}
.w26{width:567.000000px;}
.w2a{width:613.499400px;}
.w23{width:634.500000px;}
.wf{width:667.499400px;}
.w24{width:669.000600px;}
.w1f{width:670.500000px;}
.w15{width:697.500000px;}
.w17{width:700.500600px;}
.w14{width:702.000000px;}
.w22{width:707.999400px;}
.w16{width:718.498800px;}
.w13{width:721.499400px;}
.w21{width:729.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:7.500204px;}
.x13{left:8.868802px;}
.x1d{left:26.999989px;}
.x1{left:82.499760px;}
.x11{left:90.000000px;}
.x3{left:185.999400px;}
.x4{left:193.500000px;}
.xd{left:211.500000px;}
.xe{left:219.000600px;}
.xf{left:228.000600px;}
.x19{left:229.500000px;}
.x12{left:237.000600px;}
.x14{left:244.499400px;}
.x5{left:304.498800px;}
.x6{left:311.999400px;}
.x15{left:322.498800px;}
.x1a{left:337.500000px;}
.x1b{left:374.999400px;}
.x10{left:398.998800px;}
.x7{left:442.499400px;}
.x8{left:450.000000px;}
.x16{left:487.499400px;}
.x1c{left:493.519303px;}
.x17{left:592.498800px;}
.x9{left:616.500000px;}
.xa{left:623.998800px;}
.x18{left:639.000000px;}
.xb{left:731.998800px;}
.xc{left:739.499400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:-13.333328pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-7.142397pt;}
._2{margin-left:-4.869807pt;}
._1{margin-left:-2.572654pt;}
._0{margin-left:-1.184492pt;}
._4{width:2526.585656pt;}
.fs1{font-size:53.333312pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:9.332426pt;}
.y12{bottom:9.466320pt;}
.y1a{bottom:9.467692pt;}
.y24{bottom:9.467731pt;}
.y2e{bottom:9.467769pt;}
.y38{bottom:9.467807pt;}
.y40{bottom:9.467846pt;}
.y14{bottom:9.565252pt;}
.y4{bottom:9.599086pt;}
.y1e{bottom:9.733308pt;}
.y28{bottom:9.733346pt;}
.y32{bottom:9.733384pt;}
.y10{bottom:9.831912pt;}
.ye{bottom:9.932443pt;}
.y18{bottom:10.000485pt;}
.y22{bottom:10.000523pt;}
.y2c{bottom:10.000561pt;}
.y36{bottom:10.000600pt;}
.y3e{bottom:10.000638pt;}
.y2{bottom:10.131878pt;}
.ya{bottom:10.199103pt;}
.y16{bottom:10.266328pt;}
.y1c{bottom:10.267700pt;}
.y26{bottom:10.267738pt;}
.y30{bottom:10.267777pt;}
.y3a{bottom:10.267815pt;}
.y42{bottom:10.267853pt;}
.yc{bottom:10.299634pt;}
.y20{bottom:10.533315pt;}
.y2a{bottom:10.533354pt;}
.y34{bottom:10.533392pt;}
.y3c{bottom:10.533430pt;}
.y6{bottom:10.566294pt;}
.y44{bottom:58.666643pt;}
.y41{bottom:356.000000pt;}
.y3f{bottom:376.000000pt;}
.y3d{bottom:394.667200pt;}
.y3b{bottom:413.334400pt;}
.y39{bottom:452.000000pt;}
.y37{bottom:472.000000pt;}
.y35{bottom:490.667200pt;}
.y33{bottom:509.334400pt;}
.y31{bottom:529.334400pt;}
.y2f{bottom:548.000000pt;}
.y2d{bottom:568.000000pt;}
.y2b{bottom:586.667200pt;}
.y29{bottom:605.334400pt;}
.y27{bottom:625.334400pt;}
.y25{bottom:644.000000pt;}
.y23{bottom:664.000000pt;}
.y21{bottom:682.667200pt;}
.y1f{bottom:701.334400pt;}
.y1d{bottom:721.334400pt;}
.y1b{bottom:740.000000pt;}
.y19{bottom:760.000000pt;}
.y17{bottom:778.667200pt;}
.y15{bottom:836.000000pt;}
.y11{bottom:856.000000pt;}
.y13{bottom:861.334400pt;}
.yf{bottom:877.334400pt;}
.yd{bottom:882.667200pt;}
.y9{bottom:898.667200pt;}
.yb{bottom:904.000000pt;}
.y5{bottom:920.000000pt;}
.y7{bottom:926.667200pt;}
.y3{bottom:942.667200pt;}
.y1{bottom:961.334400pt;}
.y43{bottom:1087.999565pt;}
.h3{height:25.333760pt;}
.h5{height:26.666240pt;}
.h7{height:26.666880pt;}
.h1{height:28.000000pt;}
.h4{height:36.562485pt;}
.h2{height:43.874982pt;}
.h8{height:43.906232pt;}
.h6{height:45.624982pt;}
.h0{height:1122.666667pt;}
.we{width:20.000000pt;}
.w7{width:21.333120pt;}
.w4{width:21.333760pt;}
.wc{width:22.666240pt;}
.wa{width:22.666880pt;}
.w28{width:48.000000pt;}
.w1d{width:56.000000pt;}
.w1{width:60.000000pt;}
.w20{width:76.000000pt;}
.w3{width:106.666880pt;}
.w1c{width:108.000000pt;}
.w9{width:110.666880pt;}
.w5{width:113.333120pt;}
.w1e{width:129.333120pt;}
.wb{width:129.333760pt;}
.w6{width:130.666880pt;}
.w25{width:145.333760pt;}
.w10{width:152.000000pt;}
.w8{width:162.665600pt;}
.wd{width:166.665600pt;}
.w12{width:192.000000pt;}
.w18{width:228.000000pt;}
.w27{width:241.332800pt;}
.w2{width:358.667200pt;}
.w1b{width:374.667200pt;}
.w29{width:381.332800pt;}
.w19{width:408.000000pt;}
.w1a{width:429.332800pt;}
.w11{width:450.667200pt;}
.w26{width:504.000000pt;}
.w2a{width:545.332800pt;}
.w23{width:564.000000pt;}
.wf{width:593.332800pt;}
.w24{width:594.667200pt;}
.w1f{width:596.000000pt;}
.w15{width:620.000000pt;}
.w17{width:622.667200pt;}
.w14{width:624.000000pt;}
.w22{width:629.332800pt;}
.w16{width:638.665600pt;}
.w13{width:641.332800pt;}
.w21{width:648.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:6.666848pt;}
.x13{left:7.883379pt;}
.x1d{left:23.999990pt;}
.x1{left:73.333120pt;}
.x11{left:80.000000pt;}
.x3{left:165.332800pt;}
.x4{left:172.000000pt;}
.xd{left:188.000000pt;}
.xe{left:194.667200pt;}
.xf{left:202.667200pt;}
.x19{left:204.000000pt;}
.x12{left:210.667200pt;}
.x14{left:217.332800pt;}
.x5{left:270.665600pt;}
.x6{left:277.332800pt;}
.x15{left:286.665600pt;}
.x1a{left:300.000000pt;}
.x1b{left:333.332800pt;}
.x10{left:354.665600pt;}
.x7{left:393.332800pt;}
.x8{left:400.000000pt;}
.x16{left:433.332800pt;}
.x1c{left:438.683825pt;}
.x17{left:526.665600pt;}
.x9{left:548.000000pt;}
.xa{left:554.665600pt;}
.x18{left:568.000000pt;}
.xb{left:650.665600pt;}
.xc{left:657.332800pt;}
}




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