
    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_3f48ef721d58a32e80f0ce02.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_c6663984deec013d2f547cb6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_ebbc4088efd7430bb07b8719.woff')format("woff");}.ff3{font-family:ff3;line-height:0.707000;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_df626c079eeb543a3cdcb72b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_3364eb943f5e395cf7f700ee.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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:ff6;src:url('chunks/assets/font_30b4140b82741e743b7d0d44.woff')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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:ff7;src:url('chunks/assets/font_fe8f7c915ded64fd303d5230.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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;}
.ls0{letter-spacing:0.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;}
}
.wsf{word-spacing:-29.881822px;}
.ws15{word-spacing:-15.177025px;}
.ws16{word-spacing:-13.144654px;}
.wse{word-spacing:-11.769816px;}
.wsd{word-spacing:-11.710040px;}
.ws23{word-spacing:-11.590489px;}
.ws28{word-spacing:-11.530713px;}
.ws1a{word-spacing:-9.976548px;}
.ws20{word-spacing:-9.916772px;}
.ws2{word-spacing:-9.834348px;}
.ws22{word-spacing:-9.617894px;}
.ws4{word-spacing:-9.242565px;}
.ws9{word-spacing:-9.199465px;}
.ws14{word-spacing:-8.003953px;}
.ws5{word-spacing:-7.764850px;}
.ws13{word-spacing:-7.286646px;}
.ws8{word-spacing:-7.226870px;}
.wsb{word-spacing:-7.167094px;}
.ws18{word-spacing:-6.808441px;}
.ws12{word-spacing:-6.509563px;}
.ws6{word-spacing:-6.330236px;}
.ws10{word-spacing:-6.150909px;}
.wsa{word-spacing:-5.314051px;}
.ws11{word-spacing:-4.477192px;}
.ws26{word-spacing:-3.373978px;}
.wsc{word-spacing:-2.923027px;}
.ws3{word-spacing:-2.356370px;}
.ws25{word-spacing:-2.145944px;}
.ws19{word-spacing:-1.906842px;}
.ws1c{word-spacing:-1.249310px;}
.ws7{word-spacing:-1.189534px;}
.ws1b{word-spacing:-0.059776px;}
.ws21{word-spacing:0.000000px;}
.ws17{word-spacing:5.565108px;}
.ws24{word-spacing:19.785724px;}
.ws29{word-spacing:19.845499px;}
.ws1f{word-spacing:21.280114px;}
.ws27{word-spacing:21.339889px;}
.ws1e{word-spacing:22.601154px;}
.ws1{word-spacing:23.312640px;}
.ws1d{word-spacing:29.349820px;}
.ws0{word-spacing:32.227229px;}
._d{margin-left:-5.467766px;}
._7{margin-left:-4.009265px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.506355px;}
._1{width:1.936742px;}
._9{width:16.170972px;}
._6{width:19.637950px;}
._14{width:22.360374px;}
._e{width:24.491738px;}
._10{width:25.774853px;}
._13{width:27.006045px;}
._15{width:28.122719px;}
._a{width:29.887800px;}
._12{width:31.557217px;}
._4{width:32.888545px;}
._5{width:35.311122px;}
._8{width:36.980539px;}
._b{width:39.009544px;}
._c{width:40.176869px;}
._2{width:45.298253px;}
._16{width:50.179915px;}
._f{width:51.231989px;}
._11{width:52.330085px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:208.882500px;}
.y22{bottom:253.713000px;}
.y21{bottom:282.750000px;}
.y20{bottom:300.682500px;}
.y1f{bottom:329.718000px;}
.y1e{bottom:347.650500px;}
.y1d{bottom:365.583000px;}
.y1c{bottom:383.515500px;}
.y1b{bottom:416.244000px;}
.y1a{bottom:465.291000px;}
.y19{bottom:483.223500px;}
.y18{bottom:501.156000px;}
.y17{bottom:519.088500px;}
.y16{bottom:537.021000px;}
.y15{bottom:554.955000px;}
.y14{bottom:572.887500px;}
.y13{bottom:590.820000px;}
.y12{bottom:608.752500px;}
.y11{bottom:626.685000px;}
.y10{bottom:644.617500px;}
.yf{bottom:662.551500px;}
.ye{bottom:680.484000px;}
.yd{bottom:698.416500px;}
.yc{bottom:716.349000px;}
.yb{bottom:734.281500px;}
.ya{bottom:752.215500px;}
.y9{bottom:770.148000px;}
.y8{bottom:788.080500px;}
.y7{bottom:813.700500px;}
.y6{bottom:830.139000px;}
.y5{bottom:846.577500px;}
.y4{bottom:867.874500px;}
.y3{bottom:919.536000px;}
.y2a{bottom:929.181000px;}
.y29{bottom:947.113500px;}
.y2{bottom:954.598500px;}
.y28{bottom:977.001000px;}
.y27{bottom:994.935000px;}
.y1{bottom:997.930500px;}
.y26{bottom:1024.822500px;}
.y25{bottom:1042.755000px;}
.y24{bottom:1060.687500px;}
.h4{height:37.712678px;}
.h5{height:37.981670px;}
.h6{height:44.891476px;}
.h3{height:51.287808px;}
.h7{height:60.340117px;}
.h2{height:72.614557px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:200.652000px;}
.x8{left:223.068000px;}
.x1{left:236.631000px;}
.x6{left:238.012500px;}
.x5{left:258.742500px;}
.x3{left:397.237500px;}
.x2{left:417.966000px;}
.x4{left:428.002500px;}
.x9{left:454.701000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsf{word-spacing:-26.561620pt;}
.ws15{word-spacing:-13.490689pt;}
.ws16{word-spacing:-11.684137pt;}
.wse{word-spacing:-10.462058pt;}
.wsd{word-spacing:-10.408924pt;}
.ws23{word-spacing:-10.302657pt;}
.ws28{word-spacing:-10.249523pt;}
.ws1a{word-spacing:-8.868042pt;}
.ws20{word-spacing:-8.814908pt;}
.ws2{word-spacing:-8.741642pt;}
.ws22{word-spacing:-8.549239pt;}
.ws4{word-spacing:-8.215613pt;}
.ws9{word-spacing:-8.177302pt;}
.ws14{word-spacing:-7.114625pt;}
.ws5{word-spacing:-6.902089pt;}
.ws13{word-spacing:-6.477018pt;}
.ws8{word-spacing:-6.423884pt;}
.wsb{word-spacing:-6.370751pt;}
.ws18{word-spacing:-6.051947pt;}
.ws12{word-spacing:-5.786278pt;}
.ws6{word-spacing:-5.626876pt;}
.ws10{word-spacing:-5.467475pt;}
.wsa{word-spacing:-4.723601pt;}
.ws11{word-spacing:-3.979727pt;}
.ws26{word-spacing:-2.999091pt;}
.wsc{word-spacing:-2.598246pt;}
.ws3{word-spacing:-2.094551pt;}
.ws25{word-spacing:-1.907506pt;}
.ws19{word-spacing:-1.694970pt;}
.ws1c{word-spacing:-1.110498pt;}
.ws7{word-spacing:-1.057364pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws21{word-spacing:0.000000pt;}
.ws17{word-spacing:4.946763pt;}
.ws24{word-spacing:17.587310pt;}
.ws29{word-spacing:17.640444pt;}
.ws1f{word-spacing:18.915657pt;}
.ws27{word-spacing:18.968790pt;}
.ws1e{word-spacing:20.089915pt;}
.ws1{word-spacing:20.722347pt;}
.ws1d{word-spacing:26.088729pt;}
.ws0{word-spacing:28.646426pt;}
._d{margin-left:-4.860237pt;}
._7{margin-left:-3.563791pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.338982pt;}
._1{width:1.721549pt;}
._9{width:14.374197pt;}
._6{width:17.455955pt;}
._14{width:19.875888pt;}
._e{width:21.770434pt;}
._10{width:22.910980pt;}
._13{width:24.005374pt;}
._15{width:24.997972pt;}
._a{width:26.566933pt;}
._12{width:28.050860pt;}
._4{width:29.234262pt;}
._5{width:31.387664pt;}
._8{width:32.871590pt;}
._b{width:34.675150pt;}
._c{width:35.712772pt;}
._2{width:40.265114pt;}
._16{width:44.604369pt;}
._f{width:45.539546pt;}
._11{width:46.515631pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:185.673333pt;}
.y22{bottom:225.522667pt;}
.y21{bottom:251.333333pt;}
.y20{bottom:267.273333pt;}
.y1f{bottom:293.082667pt;}
.y1e{bottom:309.022667pt;}
.y1d{bottom:324.962667pt;}
.y1c{bottom:340.902667pt;}
.y1b{bottom:369.994667pt;}
.y1a{bottom:413.592000pt;}
.y19{bottom:429.532000pt;}
.y18{bottom:445.472000pt;}
.y17{bottom:461.412000pt;}
.y16{bottom:477.352000pt;}
.y15{bottom:493.293333pt;}
.y14{bottom:509.233333pt;}
.y13{bottom:525.173333pt;}
.y12{bottom:541.113333pt;}
.y11{bottom:557.053333pt;}
.y10{bottom:572.993333pt;}
.yf{bottom:588.934667pt;}
.ye{bottom:604.874667pt;}
.yd{bottom:620.814667pt;}
.yc{bottom:636.754667pt;}
.yb{bottom:652.694667pt;}
.ya{bottom:668.636000pt;}
.y9{bottom:684.576000pt;}
.y8{bottom:700.516000pt;}
.y7{bottom:723.289333pt;}
.y6{bottom:737.901333pt;}
.y5{bottom:752.513333pt;}
.y4{bottom:771.444000pt;}
.y3{bottom:817.365333pt;}
.y2a{bottom:825.938667pt;}
.y29{bottom:841.878667pt;}
.y2{bottom:848.532000pt;}
.y28{bottom:868.445333pt;}
.y27{bottom:884.386667pt;}
.y1{bottom:887.049333pt;}
.y26{bottom:910.953333pt;}
.y25{bottom:926.893333pt;}
.y24{bottom:942.833333pt;}
.h4{height:33.522381pt;}
.h5{height:33.761485pt;}
.h6{height:39.903534pt;}
.h3{height:45.589163pt;}
.h7{height:53.635660pt;}
.h2{height:64.546273pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:178.357333pt;}
.x8{left:198.282667pt;}
.x1{left:210.338667pt;}
.x6{left:211.566667pt;}
.x5{left:229.993333pt;}
.x3{left:353.100000pt;}
.x2{left:371.525333pt;}
.x4{left:380.446667pt;}
.x9{left:404.178667pt;}
}




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