
    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_f6de31b6b98b48012ce4668b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_2acb9136b0be4dcef905aa3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_0fc93549711f40bab0d75037.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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;}
.v2{vertical-align:24.480000px;}
.v1{vertical-align:30.240000px;}
.lsf{letter-spacing:-1.774080px;}
.ls18{letter-spacing:-1.438272px;}
.ls17{letter-spacing:-1.108800px;}
.ls10{letter-spacing:-0.665280px;}
.ls16{letter-spacing:-0.609408px;}
.ls4{letter-spacing:-0.540288px;}
.ls12{letter-spacing:-0.500544px;}
.ls5{letter-spacing:-0.359136px;}
.ls11{letter-spacing:-0.335808px;}
.lsa{letter-spacing:-0.304704px;}
.ls7{letter-spacing:-0.175392px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.086832px;}
.ls15{letter-spacing:0.304704px;}
.lsc{letter-spacing:0.335808px;}
.ls9{letter-spacing:0.443808px;}
.lsb{letter-spacing:0.457056px;}
.lse{letter-spacing:0.492768px;}
.ls6{letter-spacing:0.497952px;}
.lsd{letter-spacing:0.500544px;}
.ls0{letter-spacing:0.540288px;}
.ls14{letter-spacing:0.609408px;}
.ls13{letter-spacing:0.665280px;}
.ls1{letter-spacing:0.772992px;}
.ls8{letter-spacing:1.261152px;}
.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;}
}
.ws2{word-spacing:-23.218560px;}
.ws0{word-spacing:-22.859424px;}
.wsc{word-spacing:-19.024128px;}
.ws4{word-spacing:-18.871776px;}
.wse{word-spacing:-18.719424px;}
.wsd{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.387072px;}
.wsb{word-spacing:-18.279360px;}
.ws3{word-spacing:-18.110016px;}
.wsf{word-spacing:-17.805312px;}
.ws8{word-spacing:-17.614080px;}
.ws9{word-spacing:-17.278272px;}
.wsa{word-spacing:-17.113536px;}
.ws7{word-spacing:-16.948800px;}
.ws10{word-spacing:-16.505280px;}
.ws11{word-spacing:-16.175808px;}
.ws1{word-spacing:-15.710112px;}
.ws5{word-spacing:-12.102048px;}
.ws12{word-spacing:0.000000px;}
._1{margin-left:-2.508480px;}
._0{margin-left:-1.061280px;}
._2{width:1.061280px;}
._3{width:2.769408px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y28{bottom:3.400200px;}
.ye{bottom:3.420000px;}
.yb{bottom:3.780000px;}
.y19{bottom:4.140000px;}
.y11{bottom:12.420000px;}
.y12{bottom:21.780000px;}
.y36{bottom:121.660200px;}
.y35{bottom:140.740200px;}
.y34{bottom:159.820200px;}
.y33{bottom:178.540200px;}
.y32{bottom:197.620200px;}
.y31{bottom:216.700200px;}
.y30{bottom:235.420200px;}
.y2f{bottom:254.500200px;}
.y2e{bottom:273.580200px;}
.y2d{bottom:292.660200px;}
.y2c{bottom:311.380200px;}
.y2b{bottom:330.100200px;}
.y2a{bottom:344.680200px;}
.y29{bottom:363.400200px;}
.y26{bottom:382.480200px;}
.y27{bottom:382.500000px;}
.y25{bottom:401.200200px;}
.y24{bottom:419.920200px;}
.y23{bottom:439.000200px;}
.y22{bottom:457.720200px;}
.y21{bottom:476.800200px;}
.y20{bottom:495.520200px;}
.y1f{bottom:514.240200px;}
.y1e{bottom:533.320200px;}
.y1d{bottom:552.040200px;}
.y1c{bottom:571.120200px;}
.y1b{bottom:590.560200px;}
.y1a{bottom:609.640200px;}
.y18{bottom:628.360200px;}
.y17{bottom:648.160200px;}
.y16{bottom:666.880200px;}
.y15{bottom:685.960200px;}
.y14{bottom:704.680200px;}
.y13{bottom:723.760200px;}
.y10{bottom:742.480200px;}
.yf{bottom:779.560200px;}
.yd{bottom:798.280200px;}
.yc{bottom:817.000200px;}
.ya{bottom:836.080200px;}
.y9{bottom:861.100200px;}
.y8{bottom:888.460200px;}
.y7{bottom:915.460200px;}
.y6{bottom:935.260200px;}
.y5{bottom:987.820200px;}
.y4{bottom:1011.940200px;}
.y3{bottom:1036.060200px;}
.y2{bottom:1060.900200px;}
.y1{bottom:1088.620200px;}
.he{height:17.980200px;}
.h8{height:18.000000px;}
.h6{height:18.360000px;}
.hc{height:18.720000px;}
.h4{height:19.080000px;}
.ha{height:36.360000px;}
.hf{height:44.060625px;}
.hd{height:46.127813px;}
.h9{height:46.158750px;}
.h5{height:48.224531px;}
.hb{height:48.256875px;}
.h7{height:54.882422px;}
.h2{height:60.804844px;}
.h3{height:70.077656px;}
.h1{height:70.240078px;}
.h0{height:1188.000000px;}
.w1{width:105.120000px;}
.w3{width:193.680000px;}
.w2{width:403.200000px;}
.w5{width:597.960000px;}
.w4{width:703.800000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.xc{left:47.340000px;}
.xd{left:61.380000px;}
.xb{left:96.300000px;}
.x7{left:109.112550px;}
.x2{left:169.052550px;}
.x4{left:210.812550px;}
.x9{left:214.952550px;}
.x1{left:339.692550px;}
.x6{left:349.052550px;}
.x3{left:459.212550px;}
.xa{left:619.232550px;}
.x5{left:810.212550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.760000pt;}
.v1{vertical-align:26.880000pt;}
.lsf{letter-spacing:-1.576960pt;}
.ls18{letter-spacing:-1.278464pt;}
.ls17{letter-spacing:-0.985600pt;}
.ls10{letter-spacing:-0.591360pt;}
.ls16{letter-spacing:-0.541696pt;}
.ls4{letter-spacing:-0.480256pt;}
.ls12{letter-spacing:-0.444928pt;}
.ls5{letter-spacing:-0.319232pt;}
.ls11{letter-spacing:-0.298496pt;}
.lsa{letter-spacing:-0.270848pt;}
.ls7{letter-spacing:-0.155904pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.077184pt;}
.ls15{letter-spacing:0.270848pt;}
.lsc{letter-spacing:0.298496pt;}
.ls9{letter-spacing:0.394496pt;}
.lsb{letter-spacing:0.406272pt;}
.lse{letter-spacing:0.438016pt;}
.ls6{letter-spacing:0.442624pt;}
.lsd{letter-spacing:0.444928pt;}
.ls0{letter-spacing:0.480256pt;}
.ls14{letter-spacing:0.541696pt;}
.ls13{letter-spacing:0.591360pt;}
.ls1{letter-spacing:0.687104pt;}
.ls8{letter-spacing:1.121024pt;}
.ws2{word-spacing:-20.638720pt;}
.ws0{word-spacing:-20.319488pt;}
.wsc{word-spacing:-16.910336pt;}
.ws4{word-spacing:-16.774912pt;}
.wse{word-spacing:-16.639488pt;}
.wsd{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.344064pt;}
.wsb{word-spacing:-16.248320pt;}
.ws3{word-spacing:-16.097792pt;}
.wsf{word-spacing:-15.826944pt;}
.ws8{word-spacing:-15.656960pt;}
.ws9{word-spacing:-15.358464pt;}
.wsa{word-spacing:-15.212032pt;}
.ws7{word-spacing:-15.065600pt;}
.ws10{word-spacing:-14.671360pt;}
.ws11{word-spacing:-14.378496pt;}
.ws1{word-spacing:-13.964544pt;}
.ws5{word-spacing:-10.757376pt;}
.ws12{word-spacing:0.000000pt;}
._1{margin-left:-2.229760pt;}
._0{margin-left:-0.943360pt;}
._2{width:0.943360pt;}
._3{width:2.461696pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:3.022400pt;}
.ye{bottom:3.040000pt;}
.yb{bottom:3.360000pt;}
.y19{bottom:3.680000pt;}
.y11{bottom:11.040000pt;}
.y12{bottom:19.360000pt;}
.y36{bottom:108.142400pt;}
.y35{bottom:125.102400pt;}
.y34{bottom:142.062400pt;}
.y33{bottom:158.702400pt;}
.y32{bottom:175.662400pt;}
.y31{bottom:192.622400pt;}
.y30{bottom:209.262400pt;}
.y2f{bottom:226.222400pt;}
.y2e{bottom:243.182400pt;}
.y2d{bottom:260.142400pt;}
.y2c{bottom:276.782400pt;}
.y2b{bottom:293.422400pt;}
.y2a{bottom:306.382400pt;}
.y29{bottom:323.022400pt;}
.y26{bottom:339.982400pt;}
.y27{bottom:340.000000pt;}
.y25{bottom:356.622400pt;}
.y24{bottom:373.262400pt;}
.y23{bottom:390.222400pt;}
.y22{bottom:406.862400pt;}
.y21{bottom:423.822400pt;}
.y20{bottom:440.462400pt;}
.y1f{bottom:457.102400pt;}
.y1e{bottom:474.062400pt;}
.y1d{bottom:490.702400pt;}
.y1c{bottom:507.662400pt;}
.y1b{bottom:524.942400pt;}
.y1a{bottom:541.902400pt;}
.y18{bottom:558.542400pt;}
.y17{bottom:576.142400pt;}
.y16{bottom:592.782400pt;}
.y15{bottom:609.742400pt;}
.y14{bottom:626.382400pt;}
.y13{bottom:643.342400pt;}
.y10{bottom:659.982400pt;}
.yf{bottom:692.942400pt;}
.yd{bottom:709.582400pt;}
.yc{bottom:726.222400pt;}
.ya{bottom:743.182400pt;}
.y9{bottom:765.422400pt;}
.y8{bottom:789.742400pt;}
.y7{bottom:813.742400pt;}
.y6{bottom:831.342400pt;}
.y5{bottom:878.062400pt;}
.y4{bottom:899.502400pt;}
.y3{bottom:920.942400pt;}
.y2{bottom:943.022400pt;}
.y1{bottom:967.662400pt;}
.he{height:15.982400pt;}
.h8{height:16.000000pt;}
.h6{height:16.320000pt;}
.hc{height:16.640000pt;}
.h4{height:16.960000pt;}
.ha{height:32.320000pt;}
.hf{height:39.165000pt;}
.hd{height:41.002500pt;}
.h9{height:41.030000pt;}
.h5{height:42.866250pt;}
.hb{height:42.895000pt;}
.h7{height:48.784375pt;}
.h2{height:54.048750pt;}
.h3{height:62.291250pt;}
.h1{height:62.435625pt;}
.h0{height:1056.000000pt;}
.w1{width:93.440000pt;}
.w3{width:172.160000pt;}
.w2{width:358.400000pt;}
.w5{width:531.520000pt;}
.w4{width:625.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.xc{left:42.080000pt;}
.xd{left:54.560000pt;}
.xb{left:85.600000pt;}
.x7{left:96.988933pt;}
.x2{left:150.268933pt;}
.x4{left:187.388933pt;}
.x9{left:191.068933pt;}
.x1{left:301.948933pt;}
.x6{left:310.268933pt;}
.x3{left:408.188933pt;}
.xa{left:550.428933pt;}
.x5{left:720.188933pt;}
}




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