
    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_5f92c5e23a705d111bd84399.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_982f8e40d803486e5e7d18d1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_32f780bae61b2c331687a07e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.717285;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_21a024b8e683e6eb58fa11f6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.743000;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_aed223e9add785ef61827bbe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.843750;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);}
.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);}
.v3{vertical-align:-13.437542px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.078157px;}
.v2{vertical-align:16.796928px;}
.ls7{letter-spacing:-0.008734px;}
.ls8{letter-spacing:-0.006719px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000672px;}
.ls3{letter-spacing:0.006719px;}
.ls5{letter-spacing:0.007391px;}
.ls1{letter-spacing:0.008063px;}
.ls2{letter-spacing:0.008734px;}
.ls0{letter-spacing:24.812422px;}
.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.215548px;}
.ws3{word-spacing:-12.140820px;}
.ws1{word-spacing:-10.273001px;}
.ws4{word-spacing:-9.345811px;}
.ws2{word-spacing:-8.405183px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:41.356388px;}
.ws6{word-spacing:287.890612px;}
._3{margin-left:-5.593377px;}
._1{margin-left:-4.515014px;}
._0{margin-left:-3.227362px;}
._2{margin-left:-2.023694px;}
._7{width:210.443336px;}
._5{width:224.248395px;}
._4{width:242.466343px;}
._6{width:257.669579px;}
._8{width:298.095753px;}
._9{width:345.500715px;}
.fc1{color:rgb(144,205,243);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(212,212,212);}
.fc0{color:rgb(68,68,68);}
.fs5{font-size:30.234470px;}
.fs6{font-size:33.593856px;}
.fs2{font-size:36.953242px;}
.fs1{font-size:40.312627px;}
.fs0{font-size:43.672013px;}
.fs3{font-size:50.390784px;}
.fs4{font-size:90.703411px;}
.y0{bottom:0.000000px;}
.y1{bottom:61.500000px;}
.y4a{bottom:96.316915px;}
.y49{bottom:108.074765px;}
.y48{bottom:128.651002px;}
.y47{bottom:140.408851px;}
.y46{bottom:163.924550px;}
.y45{bottom:175.682400px;}
.y44{bottom:187.440250px;}
.y43{bottom:222.293875px;}
.y42{bottom:234.051725px;}
.y41{bottom:245.809574px;}
.y40{bottom:257.567424px;}
.y3f{bottom:269.325274px;}
.yc{bottom:335.253216px;}
.yb{bottom:366.327533px;}
.ya{bottom:394.462387px;}
.y3e{bottom:395.302234px;}
.y9{bottom:420.917549px;}
.y3d{bottom:423.437088px;}
.y8{bottom:430.155859px;}
.y7{bottom:446.112941px;}
.y3c{bottom:451.152019px;}
.y6{bottom:455.351251px;}
.y3b{bottom:467.948947px;}
.y5{bottom:471.308333px;}
.y4{bottom:480.546643px;}
.y3a{bottom:496.083802px;}
.y3{bottom:509.101421px;}
.y39{bottom:526.738195px;}
.y2{bottom:537.236275px;}
.y38{bottom:545.214816px;}
.y37{bottom:563.691437px;}
.y25{bottom:576.289133px;}
.y36{bottom:582.168058px;}
.y24{bottom:593.086061px;}
.y35{bottom:600.644678px;}
.y23{bottom:609.882989px;}
.y34{bottom:619.121299px;}
.y22{bottom:626.679917px;}
.y21{bottom:643.476845px;}
.y33{bottom:646.836230px;}
.y20{bottom:660.273773px;}
.y32{bottom:674.971085px;}
.y1f{bottom:677.070701px;}
.y1e{bottom:693.867629px;}
.y31{bottom:703.105939px;}
.y1d{bottom:710.664557px;}
.y30{bottom:719.902867px;}
.y1c{bottom:735.440026px;}
.y1b{bottom:745.518182px;}
.y2f{bottom:747.617798px;}
.y2e{bottom:775.752653px;}
.y2d{bottom:806.407046px;}
.y2c{bottom:824.883667px;}
.y1a{bottom:837.481363px;}
.y2b{bottom:841.680595px;}
.y19{bottom:854.278291px;}
.y2a{bottom:869.395526px;}
.y18{bottom:871.075219px;}
.y17{bottom:887.872147px;}
.y29{bottom:900.889766px;}
.y16{bottom:904.669075px;}
.y28{bottom:912.647616px;}
.y15{bottom:921.466003px;}
.y27{bottom:924.405466px;}
.y26{bottom:936.163315px;}
.y14{bottom:964.718093px;}
.y13{bottom:984.034560px;}
.y12{bottom:1003.351027px;}
.y11{bottom:1030.646035px;}
.y10{bottom:1050.802349px;}
.yf{bottom:1090.695053px;}
.ye{bottom:1119.249830px;}
.yd{bottom:1154.523379px;}
.hb{height:22.277254px;}
.hd{height:24.752504px;}
.he{height:26.310813px;}
.h7{height:26.506012px;}
.hf{height:27.227755px;}
.h5{height:29.703005px;}
.h6{height:31.325287px;}
.hc{height:32.178256px;}
.h3{height:32.348849px;}
.h8{height:36.734882px;}
.h4{height:39.781162px;}
.ha{height:44.024683px;}
.h9{height:66.122787px;}
.h2{height:1173.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:837.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.978541px;}
.x3{left:25.615315px;}
.x1{left:27.000000px;}
.x4{left:34.853626px;}
.x5{left:128.076576px;}
.x6{left:444.698669px;}
.x7{left:474.093293px;}
.x8{left:616.735997px;}
@media print{
.v3{vertical-align:-11.944482pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.958362pt;}
.v2{vertical-align:14.930603pt;}
.ls7{letter-spacing:-0.007764pt;}
.ls8{letter-spacing:-0.005972pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000597pt;}
.ls3{letter-spacing:0.005972pt;}
.ls5{letter-spacing:0.006569pt;}
.ls1{letter-spacing:0.007167pt;}
.ls2{letter-spacing:0.007764pt;}
.ls0{letter-spacing:22.055486pt;}
.ws0{word-spacing:-22.413821pt;}
.ws3{word-spacing:-10.791840pt;}
.ws1{word-spacing:-9.131557pt;}
.ws4{word-spacing:-8.307387pt;}
.ws2{word-spacing:-7.471274pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:36.761234pt;}
.ws6{word-spacing:255.902766pt;}
._3{margin-left:-4.971891pt;}
._1{margin-left:-4.013346pt;}
._0{margin-left:-2.868766pt;}
._2{margin-left:-1.798839pt;}
._7{width:187.060743pt;}
._5{width:199.331907pt;}
._4{width:215.525638pt;}
._6{width:229.039625pt;}
._8{width:264.974003pt;}
._9{width:307.111747pt;}
.fs5{font-size:26.875085pt;}
.fs6{font-size:29.861205pt;}
.fs2{font-size:32.847326pt;}
.fs1{font-size:35.833446pt;}
.fs0{font-size:38.819567pt;}
.fs3{font-size:44.791808pt;}
.fs4{font-size:80.625254pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:54.666667pt;}
.y4a{bottom:85.615036pt;}
.y49{bottom:96.066458pt;}
.y48{bottom:114.356446pt;}
.y47{bottom:124.807868pt;}
.y46{bottom:145.710711pt;}
.y45{bottom:156.162133pt;}
.y44{bottom:166.613555pt;}
.y43{bottom:197.594556pt;}
.y42{bottom:208.045978pt;}
.y41{bottom:218.497399pt;}
.y40{bottom:228.948821pt;}
.y3f{bottom:239.400243pt;}
.yc{bottom:298.002859pt;}
.yb{bottom:325.624474pt;}
.ya{bottom:350.633233pt;}
.y3e{bottom:351.379763pt;}
.y9{bottom:374.148932pt;}
.y3d{bottom:376.388523pt;}
.y8{bottom:382.360764pt;}
.y7{bottom:396.544836pt;}
.y3c{bottom:401.024017pt;}
.y6{bottom:404.756668pt;}
.y3b{bottom:415.954620pt;}
.y5{bottom:418.940740pt;}
.y4{bottom:427.152572pt;}
.y3a{bottom:440.963379pt;}
.y3{bottom:452.534596pt;}
.y39{bottom:468.211729pt;}
.y2{bottom:477.543356pt;}
.y38{bottom:484.635392pt;}
.y37{bottom:501.059055pt;}
.y25{bottom:512.257007pt;}
.y36{bottom:517.482718pt;}
.y24{bottom:527.187610pt;}
.y35{bottom:533.906381pt;}
.y23{bottom:542.118212pt;}
.y34{bottom:550.330044pt;}
.y22{bottom:557.048815pt;}
.y21{bottom:571.979418pt;}
.y33{bottom:574.965538pt;}
.y20{bottom:586.910020pt;}
.y32{bottom:599.974298pt;}
.y1f{bottom:601.840623pt;}
.y1e{bottom:616.771226pt;}
.y31{bottom:624.983057pt;}
.y1d{bottom:631.701828pt;}
.y30{bottom:639.913660pt;}
.y1c{bottom:653.724467pt;}
.y1b{bottom:662.682829pt;}
.y2f{bottom:664.549154pt;}
.y2e{bottom:689.557914pt;}
.y2d{bottom:716.806263pt;}
.y2c{bottom:733.229926pt;}
.y1a{bottom:744.427878pt;}
.y2b{bottom:748.160529pt;}
.y19{bottom:759.358481pt;}
.y2a{bottom:772.796023pt;}
.y18{bottom:774.289084pt;}
.y17{bottom:789.219686pt;}
.y29{bottom:800.790903pt;}
.y16{bottom:804.150289pt;}
.y28{bottom:811.242325pt;}
.y15{bottom:819.080892pt;}
.y27{bottom:821.693747pt;}
.y26{bottom:832.145169pt;}
.y14{bottom:857.527194pt;}
.y13{bottom:874.697387pt;}
.y12{bottom:891.867580pt;}
.y11{bottom:916.129809pt;}
.y10{bottom:934.046532pt;}
.yf{bottom:969.506714pt;}
.ye{bottom:994.888738pt;}
.yd{bottom:1026.243004pt;}
.hb{height:19.802003pt;}
.hd{height:22.002226pt;}
.he{height:23.387389pt;}
.h7{height:23.560899pt;}
.hf{height:24.202449pt;}
.h5{height:26.402671pt;}
.h6{height:27.844699pt;}
.hc{height:28.602894pt;}
.h3{height:28.754533pt;}
.h8{height:32.653228pt;}
.h4{height:35.361033pt;}
.ha{height:39.133051pt;}
.h9{height:58.775810pt;}
.h2{height:1042.666667pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:744.000000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.092036pt;}
.x3{left:22.769169pt;}
.x1{left:24.000000pt;}
.x4{left:30.981001pt;}
.x5{left:113.845845pt;}
.x6{left:395.287706pt;}
.x7{left:421.416260pt;}
.x8{left:548.209775pt;}
}




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