
    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_99cf7c25d5b596f7f0d92b38.woff')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_df67a372933a01d0402e9ee4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.760000;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_3de523f303483fee2441887e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_456fafa4e0b762c6a95f49d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:6.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;}
}
.ws1{word-spacing:-21.264000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-6.000000px;}
._8{margin-left:-4.832472px;}
._3{margin-left:-3.130158px;}
._6{margin-left:-1.319186px;}
._1{width:1.679798px;}
._5{width:3.020657px;}
._7{width:4.087657px;}
._4{width:5.100962px;}
._2{width:7.099842px;}
._a{width:8.563060px;}
._9{width:10.280381px;}
._f{width:11.565882px;}
._c{width:12.626259px;}
._e{width:13.867057px;}
._10{width:14.898908px;}
._b{width:16.012664px;}
._d{width:18.876459px;}
._11{width:23.227381px;}
.fc3{color:rgb(17,34,52);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:48.000000px;}
.fs6{font-size:56.100000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:58.021089px;}
.y2c{bottom:127.559085px;}
.yc{bottom:140.352281px;}
.y2b{bottom:144.361035px;}
.y4b{bottom:145.226205px;}
.y2a{bottom:161.162985px;}
.yb{bottom:163.977281px;}
.y4a{bottom:173.751105px;}
.y49{bottom:202.275945px;}
.y29{bottom:202.637595px;}
.ya{bottom:212.541206px;}
.y48{bottom:230.800845px;}
.y28{bottom:231.162495px;}
.y9{bottom:235.905191px;}
.y8{bottom:259.269176px;}
.y47{bottom:259.325745px;}
.y27{bottom:262.479435px;}
.y7{bottom:282.633280px;}
.y46{bottom:287.850495px;}
.y5b{bottom:297.455310px;}
.y26{bottom:303.760245px;}
.y45{bottom:316.375395px;}
.y5a{bottom:325.980180px;}
.y6{bottom:331.323191px;}
.y25{bottom:332.285145px;}
.y44{bottom:344.900295px;}
.y59{bottom:354.505065px;}
.y5{bottom:354.687130px;}
.y24{bottom:360.810045px;}
.y43{bottom:373.425195px;}
.y4{bottom:386.751236px;}
.y23{bottom:389.334870px;}
.y58{bottom:390.022062px;}
.y42{bottom:414.705945px;}
.y57{bottom:418.546935px;}
.y22{bottom:430.615635px;}
.y56{bottom:459.827670px;}
.y55{bottom:488.352585px;}
.y3{bottom:491.427758px;}
.y41{bottom:495.383550px;}
.y21{bottom:511.293195px;}
.y40{bottom:523.908428px;}
.y2{bottom:529.487595px;}
.y20{bottom:539.818095px;}
.y54{bottom:545.402340px;}
.y3f{bottom:552.433302px;}
.y1f{bottom:571.135065px;}
.y53{bottom:573.927195px;}
.y3e{bottom:580.958175px;}
.y1{bottom:587.347440px;}
.y1e{bottom:599.659920px;}
.y52{bottom:602.452050px;}
.y62{bottom:608.376885px;}
.y3d{bottom:612.275175px;}
.y1d{bottom:628.184820px;}
.y51{bottom:630.976950px;}
.y61{bottom:636.901740px;}
.y3c{bottom:647.792175px;}
.y1c{bottom:656.709675px;}
.y50{bottom:659.501805px;}
.y60{bottom:665.426640px;}
.y3b{bottom:676.317030px;}
.y1b{bottom:688.026720px;}
.y3a{bottom:704.841906px;}
.y1a{bottom:716.551575px;}
.y5f{bottom:722.476365px;}
.y39{bottom:733.366785px;}
.y19{bottom:745.076445px;}
.y5e{bottom:751.001265px;}
.y38{bottom:761.891655px;}
.y4f{bottom:773.601300px;}
.y18{bottom:773.601315px;}
.y5d{bottom:779.526120px;}
.y37{bottom:790.416533px;}
.y17{bottom:802.126185px;}
.y5c{bottom:808.050990px;}
.y36{bottom:818.941407px;}
.y16{bottom:830.651070px;}
.y35{bottom:847.466280px;}
.y15{bottom:859.175940px;}
.y34{bottom:878.783280px;}
.y4e{bottom:887.700795px;}
.y14{bottom:900.456720px;}
.y33{bottom:914.300274px;}
.y4d{bottom:916.225680px;}
.y32{bottom:942.825144px;}
.y4c{bottom:957.506460px;}
.y31{bottom:971.350022px;}
.y13{bottom:981.134280px;}
.y30{bottom:999.874896px;}
.y12{bottom:1009.659150px;}
.y2f{bottom:1028.399769px;}
.y11{bottom:1038.184028px;}
.y2e{bottom:1059.716769px;}
.y10{bottom:1066.708896px;}
.yf{bottom:1095.233772px;}
.ye{bottom:1123.758645px;}
.yd{bottom:1173.543365px;}
.h6{height:38.448000px;}
.h9{height:50.424000px;}
.ha{height:52.846200px;}
.h4{height:57.672000px;}
.h7{height:62.172000px;}
.h5{height:67.824000px;}
.h3{height:72.192000px;}
.h8{height:96.120000px;}
.h2{height:203.472000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039370px;}
.x4{left:99.064370px;}
.x3{left:116.539370px;}
.x2{left:755.422050px;}
.x6{left:760.610564px;}
.x5{left:762.714314px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:5.333334pt;}
.ws1{word-spacing:-18.901334pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-5.333334pt;}
._8{margin-left:-4.295531pt;}
._3{margin-left:-2.782362pt;}
._6{margin-left:-1.172610pt;}
._1{width:1.493153pt;}
._5{width:2.685028pt;}
._7{width:3.633473pt;}
._4{width:4.534188pt;}
._2{width:6.310971pt;}
._a{width:7.611609pt;}
._9{width:9.138117pt;}
._f{width:10.280784pt;}
._c{width:11.223341pt;}
._e{width:12.326273pt;}
._10{width:13.243474pt;}
._b{width:14.233479pt;}
._d{width:16.779075pt;}
._11{width:20.646561pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:49.866667pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:51.574302pt;}
.y2c{bottom:113.385853pt;}
.yc{bottom:124.757583pt;}
.y2b{bottom:128.320920pt;}
.y4b{bottom:129.089960pt;}
.y2a{bottom:143.255987pt;}
.yb{bottom:145.757583pt;}
.y4a{bottom:154.445427pt;}
.y49{bottom:179.800840pt;}
.y29{bottom:180.122307pt;}
.ya{bottom:188.925516pt;}
.y48{bottom:205.156307pt;}
.y28{bottom:205.477773pt;}
.y9{bottom:209.693503pt;}
.y8{bottom:230.461489pt;}
.y47{bottom:230.511773pt;}
.y27{bottom:233.315053pt;}
.y7{bottom:251.229583pt;}
.y46{bottom:255.867107pt;}
.y5b{bottom:264.404720pt;}
.y26{bottom:270.009107pt;}
.y45{bottom:281.222573pt;}
.y5a{bottom:289.760160pt;}
.y6{bottom:294.509503pt;}
.y25{bottom:295.364573pt;}
.y44{bottom:306.578040pt;}
.y59{bottom:315.115613pt;}
.y5{bottom:315.277449pt;}
.y24{bottom:320.720040pt;}
.y43{bottom:331.933507pt;}
.y4{bottom:343.778876pt;}
.y23{bottom:346.075440pt;}
.y58{bottom:346.686277pt;}
.y42{bottom:368.627507pt;}
.y57{bottom:372.041720pt;}
.y22{bottom:382.769453pt;}
.y56{bottom:408.735707pt;}
.y55{bottom:434.091187pt;}
.y3{bottom:436.824673pt;}
.y41{bottom:440.340933pt;}
.y21{bottom:454.482840pt;}
.y40{bottom:465.696380pt;}
.y2{bottom:470.655640pt;}
.y20{bottom:479.838307pt;}
.y54{bottom:484.802080pt;}
.y3f{bottom:491.051824pt;}
.y1f{bottom:507.675613pt;}
.y53{bottom:510.157507pt;}
.y3e{bottom:516.407267pt;}
.y1{bottom:522.086613pt;}
.y1e{bottom:533.031040pt;}
.y52{bottom:535.512933pt;}
.y62{bottom:540.779453pt;}
.y3d{bottom:544.244600pt;}
.y1d{bottom:558.386507pt;}
.y51{bottom:560.868400pt;}
.y61{bottom:566.134880pt;}
.y3c{bottom:575.815267pt;}
.y1c{bottom:583.741933pt;}
.y50{bottom:586.223827pt;}
.y60{bottom:591.490347pt;}
.y3b{bottom:601.170693pt;}
.y1b{bottom:611.579307pt;}
.y3a{bottom:626.526139pt;}
.y1a{bottom:636.934733pt;}
.y5f{bottom:642.201213pt;}
.y39{bottom:651.881587pt;}
.y19{bottom:662.290173pt;}
.y5e{bottom:667.556680pt;}
.y38{bottom:677.237027pt;}
.y4f{bottom:687.645600pt;}
.y18{bottom:687.645613pt;}
.y5d{bottom:692.912107pt;}
.y37{bottom:702.592473pt;}
.y17{bottom:713.001053pt;}
.y5c{bottom:718.267547pt;}
.y36{bottom:727.947917pt;}
.y16{bottom:738.356507pt;}
.y35{bottom:753.303360pt;}
.y15{bottom:763.711947pt;}
.y34{bottom:781.140693pt;}
.y4e{bottom:789.067373pt;}
.y14{bottom:800.405973pt;}
.y33{bottom:812.711355pt;}
.y4d{bottom:814.422827pt;}
.y32{bottom:838.066795pt;}
.y4c{bottom:851.116853pt;}
.y31{bottom:863.422241pt;}
.y13{bottom:872.119360pt;}
.y30{bottom:888.777685pt;}
.y12{bottom:897.474800pt;}
.y2f{bottom:914.133128pt;}
.y11{bottom:922.830247pt;}
.y2e{bottom:941.970461pt;}
.y10{bottom:948.185685pt;}
.yf{bottom:973.541131pt;}
.ye{bottom:998.896573pt;}
.yd{bottom:1043.149657pt;}
.h6{height:34.176000pt;}
.h9{height:44.821333pt;}
.ha{height:46.974400pt;}
.h4{height:51.264000pt;}
.h7{height:55.264000pt;}
.h5{height:60.288000pt;}
.h3{height:64.170667pt;}
.h8{height:85.440000pt;}
.h2{height:180.864000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590551pt;}
.x4{left:88.057217pt;}
.x3{left:103.590551pt;}
.x2{left:671.486267pt;}
.x6{left:676.098279pt;}
.x5{left:677.968279pt;}
}




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