
    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_d94823702a8918e431bff4fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_19acd272a58dd800515d2e21.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_246e1f936f31819a7f7fe087.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_84d7c6fe76951c90b815543a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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;}
.v1{vertical-align:27.754200px;}
.ls17{letter-spacing:-0.609569px;}
.ls16{letter-spacing:-0.603534px;}
.lsa{letter-spacing:-0.296576px;}
.lsd{letter-spacing:-0.200374px;}
.ls23{letter-spacing:-0.175025px;}
.ls24{letter-spacing:-0.114671px;}
.ls18{letter-spacing:-0.108636px;}
.ls1b{letter-spacing:-0.102601px;}
.ls1d{letter-spacing:-0.090530px;}
.ls1a{letter-spacing:-0.078459px;}
.ls13{letter-spacing:-0.072424px;}
.ls1f{letter-spacing:-0.066389px;}
.ls15{letter-spacing:-0.060353px;}
.ls10{letter-spacing:-0.054318px;}
.ls12{letter-spacing:-0.048283px;}
.ls11{letter-spacing:-0.042247px;}
.ls14{letter-spacing:-0.036212px;}
.lsf{letter-spacing:-0.030177px;}
.ls19{letter-spacing:-0.024141px;}
.lse{letter-spacing:-0.018106px;}
.ls1e{letter-spacing:-0.012071px;}
.ls1c{letter-spacing:-0.006035px;}
.lsb{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024141px;}
.ls6{letter-spacing:0.030177px;}
.lsc{letter-spacing:0.040075px;}
.ls7{letter-spacing:0.060353px;}
.ls1{letter-spacing:0.072424px;}
.ls9{letter-spacing:0.090530px;}
.ls3{letter-spacing:0.125532px;}
.ls4{letter-spacing:0.127932px;}
.ls2{letter-spacing:0.131532px;}
.ls21{letter-spacing:0.132777px;}
.ls0{letter-spacing:0.135252px;}
.ls8{letter-spacing:0.300560px;}
.ls22{letter-spacing:0.603534px;}
.ls20{letter-spacing:9.656544px;}
.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:-60.486177px;}
.ws4{word-spacing:-60.353400px;}
.ws1{word-spacing:-60.323223px;}
.ws2{word-spacing:-60.305117px;}
.ws0{word-spacing:-50.582185px;}
.ws3{word-spacing:-15.040067px;}
.ws6{word-spacing:-15.027997px;}
.ws7{word-spacing:-14.913325px;}
.ws9{word-spacing:-0.066670px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:0.012347px;}
._12{margin-left:-9.885959px;}
._13{margin-left:-8.871590px;}
._0{margin-left:-1.302428px;}
._1{width:1.412268px;}
._7{width:2.733887px;}
._f{width:3.869018px;}
._3{width:5.154180px;}
._4{width:6.264683px;}
._a{width:7.396411px;}
._9{width:8.509829px;}
._11{width:9.604726px;}
._2{width:10.840212px;}
._5{width:12.070680px;}
._6{width:13.627257px;}
._8{width:17.098897px;}
._d{width:19.470008px;}
._e{width:20.640863px;}
._10{width:22.250721px;}
._c{width:23.839601px;}
._b{width:25.046661px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:40.437000px;}
.fs0{font-size:50.093400px;}
.fs1{font-size:60.353400px;}
.fs2{font-size:70.613400px;}
.y0{bottom:0.000000px;}
.y2{bottom:50.182515px;}
.y1{bottom:64.521750px;}
.y2f{bottom:136.198665px;}
.y2e{bottom:153.550200px;}
.y2d{bottom:170.900400px;}
.y2c{bottom:188.251950px;}
.y2b{bottom:205.603500px;}
.y2a{bottom:222.953700px;}
.y29{bottom:240.305250px;}
.y28{bottom:257.656800px;}
.y27{bottom:275.008500px;}
.y26{bottom:292.056750px;}
.y25{bottom:324.044100px;}
.y24{bottom:341.395650px;}
.y23{bottom:358.745850px;}
.y22{bottom:376.097400px;}
.y21{bottom:393.448950px;}
.y20{bottom:410.800650px;}
.y1f{bottom:428.152200px;}
.y1e{bottom:445.503750px;}
.y1d{bottom:462.853950px;}
.y1c{bottom:480.208050px;}
.y1b{bottom:497.559600px;}
.y1a{bottom:514.909800px;}
.y19{bottom:532.261350px;}
.y18{bottom:549.612900px;}
.y17{bottom:566.963100px;}
.y16{bottom:584.316000px;}
.y15{bottom:601.667550px;}
.y14{bottom:619.019250px;}
.y13{bottom:636.370050px;}
.y12{bottom:653.721750px;}
.y11{bottom:671.075250px;}
.y10{bottom:688.425450px;}
.yf{bottom:705.777000px;}
.ye{bottom:723.128550px;}
.yd{bottom:740.480250px;}
.yc{bottom:757.831800px;}
.yb{bottom:775.183350px;}
.ya{bottom:792.533550px;}
.y9{bottom:809.885100px;}
.y8{bottom:844.286100px;}
.y7{bottom:858.620250px;}
.y6{bottom:891.362700px;}
.y5{bottom:908.714250px;}
.y4{bottom:943.567800px;}
.y3{bottom:975.856650px;}
.h5{height:34.781648px;}
.h2{height:40.903574px;}
.h1{height:43.954023px;}
.h6{height:45.559744px;}
.h3{height:47.857129px;}
.h4{height:52.956572px;}
.ha{height:63.232298px;}
.h7{height:63.235298px;}
.h9{height:63.237698px;}
.h8{height:63.240098px;}
.h0{height:1063.500000px;}
.w0{width:748.500000px;}
.x0{left:0.000000px;}
.x2{left:80.111460px;}
.x7{left:106.976100px;}
.x1{left:115.878150px;}
.x5{left:126.289200px;}
.x8{left:132.175395px;}
.x4{left:133.229850px;}
.x6{left:182.568750px;}
.x3{left:602.777700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.670400pt;}
.ls17{letter-spacing:-0.541839pt;}
.ls16{letter-spacing:-0.536475pt;}
.lsa{letter-spacing:-0.263623pt;}
.lsd{letter-spacing:-0.178110pt;}
.ls23{letter-spacing:-0.155578pt;}
.ls24{letter-spacing:-0.101930pt;}
.ls18{letter-spacing:-0.096565pt;}
.ls1b{letter-spacing:-0.091201pt;}
.ls1d{letter-spacing:-0.080471pt;}
.ls1a{letter-spacing:-0.069742pt;}
.ls13{letter-spacing:-0.064377pt;}
.ls1f{letter-spacing:-0.059012pt;}
.ls15{letter-spacing:-0.053647pt;}
.ls10{letter-spacing:-0.048283pt;}
.ls12{letter-spacing:-0.042918pt;}
.ls11{letter-spacing:-0.037553pt;}
.ls14{letter-spacing:-0.032188pt;}
.lsf{letter-spacing:-0.026824pt;}
.ls19{letter-spacing:-0.021459pt;}
.lse{letter-spacing:-0.016094pt;}
.ls1e{letter-spacing:-0.010729pt;}
.ls1c{letter-spacing:-0.005365pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021459pt;}
.ls6{letter-spacing:0.026824pt;}
.lsc{letter-spacing:0.035622pt;}
.ls7{letter-spacing:0.053647pt;}
.ls1{letter-spacing:0.064377pt;}
.ls9{letter-spacing:0.080471pt;}
.ls3{letter-spacing:0.111584pt;}
.ls4{letter-spacing:0.113717pt;}
.ls2{letter-spacing:0.116917pt;}
.ls21{letter-spacing:0.118024pt;}
.ls0{letter-spacing:0.120224pt;}
.ls8{letter-spacing:0.267165pt;}
.ls22{letter-spacing:0.536475pt;}
.ls20{letter-spacing:8.583595pt;}
.ws5{word-spacing:-53.765491pt;}
.ws4{word-spacing:-53.647467pt;}
.ws1{word-spacing:-53.620643pt;}
.ws2{word-spacing:-53.604549pt;}
.ws0{word-spacing:-44.961942pt;}
.ws3{word-spacing:-13.368949pt;}
.ws6{word-spacing:-13.358219pt;}
.ws7{word-spacing:-13.256289pt;}
.ws9{word-spacing:-0.059262pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:0.010975pt;}
._12{margin-left:-8.787519pt;}
._13{margin-left:-7.885858pt;}
._0{margin-left:-1.157714pt;}
._1{width:1.255349pt;}
._7{width:2.430122pt;}
._f{width:3.439127pt;}
._3{width:4.581494pt;}
._4{width:5.568607pt;}
._a{width:6.574587pt;}
._9{width:7.564293pt;}
._11{width:8.537534pt;}
._2{width:9.635744pt;}
._5{width:10.729493pt;}
._6{width:12.113117pt;}
._8{width:15.199020pt;}
._d{width:17.306674pt;}
._e{width:18.347434pt;}
._10{width:19.778418pt;}
._c{width:21.190756pt;}
._b{width:22.263699pt;}
.fs3{font-size:35.944000pt;}
.fs0{font-size:44.527467pt;}
.fs1{font-size:53.647467pt;}
.fs2{font-size:62.767467pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:44.606680pt;}
.y1{bottom:57.352667pt;}
.y2f{bottom:121.065480pt;}
.y2e{bottom:136.489067pt;}
.y2d{bottom:151.911467pt;}
.y2c{bottom:167.335067pt;}
.y2b{bottom:182.758667pt;}
.y2a{bottom:198.181067pt;}
.y29{bottom:213.604667pt;}
.y28{bottom:229.028267pt;}
.y27{bottom:244.452000pt;}
.y26{bottom:259.606000pt;}
.y25{bottom:288.039200pt;}
.y24{bottom:303.462800pt;}
.y23{bottom:318.885200pt;}
.y22{bottom:334.308800pt;}
.y21{bottom:349.732400pt;}
.y20{bottom:365.156133pt;}
.y1f{bottom:380.579733pt;}
.y1e{bottom:396.003333pt;}
.y1d{bottom:411.425733pt;}
.y1c{bottom:426.851600pt;}
.y1b{bottom:442.275200pt;}
.y1a{bottom:457.697600pt;}
.y19{bottom:473.121200pt;}
.y18{bottom:488.544800pt;}
.y17{bottom:503.967200pt;}
.y16{bottom:519.392000pt;}
.y15{bottom:534.815600pt;}
.y14{bottom:550.239333pt;}
.y13{bottom:565.662267pt;}
.y12{bottom:581.086000pt;}
.y11{bottom:596.511333pt;}
.y10{bottom:611.933733pt;}
.yf{bottom:627.357333pt;}
.ye{bottom:642.780933pt;}
.yd{bottom:658.204667pt;}
.yc{bottom:673.628267pt;}
.yb{bottom:689.051867pt;}
.ya{bottom:704.474267pt;}
.y9{bottom:719.897867pt;}
.y8{bottom:750.476533pt;}
.y7{bottom:763.218000pt;}
.y6{bottom:792.322400pt;}
.y5{bottom:807.746000pt;}
.y4{bottom:838.726933pt;}
.y3{bottom:867.428133pt;}
.h5{height:30.917020pt;}
.h2{height:36.358732pt;}
.h1{height:39.070243pt;}
.h6{height:40.497551pt;}
.h3{height:42.539670pt;}
.h4{height:47.072509pt;}
.ha{height:56.206487pt;}
.h7{height:56.209154pt;}
.h9{height:56.211287pt;}
.h8{height:56.213421pt;}
.h0{height:945.333333pt;}
.w0{width:665.333333pt;}
.x0{left:0.000000pt;}
.x2{left:71.210187pt;}
.x7{left:95.089867pt;}
.x1{left:103.002800pt;}
.x5{left:112.257067pt;}
.x8{left:117.489240pt;}
.x4{left:118.426533pt;}
.x6{left:162.283333pt;}
.x3{left:535.802400pt;}
}




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