
    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_49a407107d98c70b2a56a62a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_58f7fe8396ac7dd80f180f7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948000;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_ac3211539ce9c7d4fb87273c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_693e6bce7a2a51358468e988.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_521cbf96bd56953d04e7de13.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948000;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:72.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:66.264000px;}
.ls0{letter-spacing:79.794000px;}
.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:-25.800000px;}
.ws3{word-spacing:-18.060000px;}
.ws4{word-spacing:-15.180000px;}
.ws1{word-spacing:-13.800000px;}
.ws5{word-spacing:-0.924000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-43.362000px;}
._8{margin-left:-41.712000px;}
._7{margin-left:-8.260200px;}
._6{margin-left:-6.360000px;}
._2{margin-left:-5.292000px;}
._0{margin-left:-4.200000px;}
._5{margin-left:-2.970000px;}
._1{margin-left:-1.920000px;}
._3{width:694.092000px;}
.fc6{color:rgb(244,174,182);}
.fc5{color:rgb(211,230,231);}
.fc4{color:rgb(234,243,244);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(232,70,109);}
.fc2{color:rgb(45,83,96);}
.fc0{color:rgb(26,145,154);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:63.779550px;}
.y38{bottom:81.243300px;}
.y4{bottom:83.579550px;}
.y3{bottom:103.379550px;}
.y37{bottom:108.249300px;}
.y7{bottom:150.841500px;}
.y6{bottom:168.841500px;}
.y4e{bottom:276.451650px;}
.y4d{bottom:296.251650px;}
.y42{bottom:299.851650px;}
.y4c{bottom:316.051650px;}
.y41{bottom:319.651650px;}
.y4b{bottom:335.851650px;}
.y40{bottom:339.451650px;}
.y4a{bottom:355.651650px;}
.y3f{bottom:369.877650px;}
.y49{bottom:386.077650px;}
.y3e{bottom:389.677650px;}
.y3d{bottom:409.477650px;}
.y48{bottom:416.503650px;}
.y3c{bottom:429.277650px;}
.y47{bottom:436.303650px;}
.y19{bottom:446.067300px;}
.y1b{bottom:446.862300px;}
.y8{bottom:448.408500px;}
.y46{bottom:456.103650px;}
.y3b{bottom:459.703650px;}
.y18{bottom:464.067300px;}
.y1a{bottom:464.862300px;}
.y45{bottom:475.903650px;}
.y44{bottom:495.703650px;}
.y3a{bottom:500.763450px;}
.y2{bottom:519.897900px;}
.y39{bottom:536.763450px;}
.y1{bottom:537.897900px;}
.y28{bottom:651.997950px;}
.y43{bottom:662.532000px;}
.y2c{bottom:662.623800px;}
.y27{bottom:671.797950px;}
.y2f{bottom:680.532000px;}
.y2b{bottom:680.623800px;}
.y17{bottom:689.597700px;}
.y26{bottom:691.597950px;}
.y2e{bottom:698.532000px;}
.y2a{bottom:698.623800px;}
.y16{bottom:709.397700px;}
.y25{bottom:711.397950px;}
.y2d{bottom:716.532000px;}
.y29{bottom:716.623800px;}
.y15{bottom:729.197700px;}
.y24{bottom:731.197950px;}
.y23{bottom:750.997950px;}
.y14{bottom:770.249700px;}
.y22{bottom:781.423950px;}
.y13{bottom:800.675700px;}
.y21{bottom:801.223950px;}
.y12{bottom:820.475700px;}
.y20{bottom:821.023950px;}
.y11{bottom:840.275700px;}
.y1f{bottom:840.823950px;}
.y10{bottom:870.701700px;}
.y1e{bottom:880.235100px;}
.yf{bottom:890.501700px;}
.ye{bottom:910.301700px;}
.y1d{bottom:916.235100px;}
.yd{bottom:930.101700px;}
.yc{bottom:949.901700px;}
.y1c{bottom:952.235100px;}
.yb{bottom:990.961500px;}
.ya{bottom:1078.457850px;}
.y32{bottom:1106.811300px;}
.y36{bottom:1112.091150px;}
.y9{bottom:1127.057850px;}
.y35{bottom:1131.891150px;}
.y31{bottom:1142.811300px;}
.y34{bottom:1151.691150px;}
.y33{bottom:1171.491150px;}
.y30{bottom:1178.811300px;}
.h6{height:42.840000px;}
.h4{height:47.124000px;}
.h8{height:59.976000px;}
.h3{height:85.680000px;}
.h5{height:102.816000px;}
.h7{height:115.668000px;}
.h2{height:157.680000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:63.779550px;}
.x9{left:70.824750px;}
.x1{left:86.135250px;}
.xa{left:90.773250px;}
.x7{left:109.370100px;}
.x6{left:113.001600px;}
.x8{left:148.553100px;}
.xc{left:243.159450px;}
.x5{left:287.910300px;}
.x14{left:325.984200px;}
.x10{left:341.240550px;}
.x15{left:352.978200px;}
.xf{left:363.170550px;}
.x11{left:371.960550px;}
.xe{left:379.899750px;}
.x1b{left:480.788850px;}
.x1c{left:487.834350px;}
.x3{left:506.651550px;}
.x1d{left:507.782850px;}
.x4{left:526.600050px;}
.x13{left:531.681600px;}
.x12{left:556.768650px;}
.x16{left:580.231950px;}
.x2{left:591.755250px;}
.xd{left:666.909450px;}
.x19{left:682.776150px;}
.x18{left:687.741150px;}
.x17{left:714.253050px;}
.x1a{left:716.496150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:58.901333pt;}
.ls0{letter-spacing:70.928000pt;}
.ws0{word-spacing:-22.933333pt;}
.ws3{word-spacing:-16.053333pt;}
.ws4{word-spacing:-13.493333pt;}
.ws1{word-spacing:-12.266667pt;}
.ws5{word-spacing:-0.821333pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-38.544000pt;}
._8{margin-left:-37.077333pt;}
._7{margin-left:-7.342400pt;}
._6{margin-left:-5.653333pt;}
._2{margin-left:-4.704000pt;}
._0{margin-left:-3.733333pt;}
._5{margin-left:-2.640000pt;}
._1{margin-left:-1.706667pt;}
._3{width:616.970667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:56.692933pt;}
.y38{bottom:72.216267pt;}
.y4{bottom:74.292933pt;}
.y3{bottom:91.892933pt;}
.y37{bottom:96.221600pt;}
.y7{bottom:134.081333pt;}
.y6{bottom:150.081333pt;}
.y4e{bottom:245.734800pt;}
.y4d{bottom:263.334800pt;}
.y42{bottom:266.534800pt;}
.y4c{bottom:280.934800pt;}
.y41{bottom:284.134800pt;}
.y4b{bottom:298.534800pt;}
.y40{bottom:301.734800pt;}
.y4a{bottom:316.134800pt;}
.y3f{bottom:328.780133pt;}
.y49{bottom:343.180133pt;}
.y3e{bottom:346.380133pt;}
.y3d{bottom:363.980133pt;}
.y48{bottom:370.225467pt;}
.y3c{bottom:381.580133pt;}
.y47{bottom:387.825467pt;}
.y19{bottom:396.504267pt;}
.y1b{bottom:397.210933pt;}
.y8{bottom:398.585333pt;}
.y46{bottom:405.425467pt;}
.y3b{bottom:408.625467pt;}
.y18{bottom:412.504267pt;}
.y1a{bottom:413.210933pt;}
.y45{bottom:423.025467pt;}
.y44{bottom:440.625467pt;}
.y3a{bottom:445.123067pt;}
.y2{bottom:462.131467pt;}
.y39{bottom:477.123067pt;}
.y1{bottom:478.131467pt;}
.y28{bottom:579.553733pt;}
.y43{bottom:588.917333pt;}
.y2c{bottom:588.998933pt;}
.y27{bottom:597.153733pt;}
.y2f{bottom:604.917333pt;}
.y2b{bottom:604.998933pt;}
.y17{bottom:612.975733pt;}
.y26{bottom:614.753733pt;}
.y2e{bottom:620.917333pt;}
.y2a{bottom:620.998933pt;}
.y16{bottom:630.575733pt;}
.y25{bottom:632.353733pt;}
.y2d{bottom:636.917333pt;}
.y29{bottom:636.998933pt;}
.y15{bottom:648.175733pt;}
.y24{bottom:649.953733pt;}
.y23{bottom:667.553733pt;}
.y14{bottom:684.666400pt;}
.y22{bottom:694.599067pt;}
.y13{bottom:711.711733pt;}
.y21{bottom:712.199067pt;}
.y12{bottom:729.311733pt;}
.y20{bottom:729.799067pt;}
.y11{bottom:746.911733pt;}
.y1f{bottom:747.399067pt;}
.y10{bottom:773.957067pt;}
.y1e{bottom:782.431200pt;}
.yf{bottom:791.557067pt;}
.ye{bottom:809.157067pt;}
.y1d{bottom:814.431200pt;}
.yd{bottom:826.757067pt;}
.yc{bottom:844.357067pt;}
.y1c{bottom:846.431200pt;}
.yb{bottom:880.854667pt;}
.ya{bottom:958.629200pt;}
.y32{bottom:983.832267pt;}
.y36{bottom:988.525467pt;}
.y9{bottom:1001.829200pt;}
.y35{bottom:1006.125467pt;}
.y31{bottom:1015.832267pt;}
.y34{bottom:1023.725467pt;}
.y33{bottom:1041.325467pt;}
.y30{bottom:1047.832267pt;}
.h6{height:38.080000pt;}
.h4{height:41.888000pt;}
.h8{height:53.312000pt;}
.h3{height:76.160000pt;}
.h5{height:91.392000pt;}
.h7{height:102.816000pt;}
.h2{height:140.160000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:56.692933pt;}
.x9{left:62.955333pt;}
.x1{left:76.564667pt;}
.xa{left:80.687333pt;}
.x7{left:97.217867pt;}
.x6{left:100.445867pt;}
.x8{left:132.047200pt;}
.xc{left:216.141733pt;}
.x5{left:255.920267pt;}
.x14{left:289.763733pt;}
.x10{left:303.324933pt;}
.x15{left:313.758400pt;}
.xf{left:322.818267pt;}
.x11{left:330.631600pt;}
.xe{left:337.688667pt;}
.x1b{left:427.367867pt;}
.x1c{left:433.630533pt;}
.x3{left:450.356933pt;}
.x1d{left:451.362533pt;}
.x4{left:468.088933pt;}
.x13{left:472.605867pt;}
.x12{left:494.905467pt;}
.x16{left:515.761733pt;}
.x2{left:526.004667pt;}
.xd{left:592.808400pt;}
.x19{left:606.912133pt;}
.x18{left:611.325467pt;}
.x17{left:634.891600pt;}
.x1a{left:636.885467pt;}
}




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