
    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_e708520f399241ad0ac083f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:1053.216000px;}
._1{margin-left:-6.120000px;}
._0{margin-left:-2.880000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:6.500994px;}
.y4a{bottom:27.500994px;}
.y49{bottom:48.500994px;}
.y48{bottom:69.500994px;}
.y47{bottom:90.500994px;}
.y46{bottom:111.500994px;}
.y45{bottom:132.500994px;}
.y44{bottom:153.500994px;}
.y43{bottom:174.500994px;}
.y42{bottom:195.500994px;}
.y41{bottom:216.500994px;}
.y40{bottom:237.500994px;}
.y3f{bottom:258.500994px;}
.y3e{bottom:279.500994px;}
.y3d{bottom:300.500994px;}
.y3c{bottom:321.500994px;}
.y3b{bottom:342.500994px;}
.y3a{bottom:363.500994px;}
.y39{bottom:384.500994px;}
.y38{bottom:405.500994px;}
.y37{bottom:426.500994px;}
.y36{bottom:447.500994px;}
.y35{bottom:468.500994px;}
.y34{bottom:489.500994px;}
.y33{bottom:510.500994px;}
.y32{bottom:531.500994px;}
.y31{bottom:552.500994px;}
.y30{bottom:573.500994px;}
.y2f{bottom:594.500994px;}
.y2e{bottom:615.500994px;}
.y2d{bottom:636.500994px;}
.y2c{bottom:657.500994px;}
.y2b{bottom:678.500994px;}
.y2a{bottom:699.500994px;}
.y29{bottom:720.500994px;}
.y28{bottom:741.500994px;}
.y27{bottom:762.500994px;}
.y26{bottom:783.500994px;}
.y25{bottom:804.500994px;}
.y24{bottom:825.500994px;}
.y23{bottom:846.500994px;}
.y22{bottom:867.500994px;}
.y21{bottom:888.500994px;}
.y20{bottom:909.500994px;}
.y1f{bottom:930.500994px;}
.y1e{bottom:951.500994px;}
.y1d{bottom:972.500994px;}
.y1c{bottom:993.500994px;}
.y1b{bottom:1014.500994px;}
.y1a{bottom:1035.500994px;}
.y19{bottom:1056.500994px;}
.y18{bottom:1077.500994px;}
.y17{bottom:1098.500994px;}
.y16{bottom:1119.500994px;}
.y15{bottom:1140.500994px;}
.y14{bottom:1161.500994px;}
.y13{bottom:1182.500994px;}
.y12{bottom:1203.500994px;}
.y11{bottom:1224.500994px;}
.y10{bottom:1245.500994px;}
.yf{bottom:1266.500994px;}
.ye{bottom:1287.500994px;}
.yd{bottom:1308.500994px;}
.yc{bottom:1329.500994px;}
.yb{bottom:1350.500994px;}
.ya{bottom:1371.500994px;}
.y9{bottom:1392.500994px;}
.y8{bottom:1413.500994px;}
.y7{bottom:1434.500994px;}
.y6{bottom:1455.500994px;}
.y5{bottom:1476.500994px;}
.y4{bottom:1497.500994px;}
.y4c{bottom:1522.015494px;}
.y2{bottom:1523.100000px;}
.y3{bottom:1525.015494px;}
.y1{bottom:2000.315109px;}
.h2{height:68.835938px;}
.h3{height:75.093750px;}
.h0{height:2033.162109px;}
.h1{height:2033.250000px;}
.w1{width:1833.000000px;}
.w0{width:1833.004395px;}
.x0{left:0.000000px;}
.x4a{left:3.005280px;}
.x2{left:33.941286px;}
.x1{left:43.645500px;}
.x3{left:54.941286px;}
.x4{left:75.941286px;}
.x5{left:96.941286px;}
.x6{left:117.941286px;}
.x7{left:138.941286px;}
.x8{left:159.941286px;}
.x9{left:180.941286px;}
.xa{left:201.941286px;}
.xb{left:222.941286px;}
.xc{left:243.941286px;}
.xd{left:264.941286px;}
.xe{left:285.941286px;}
.xf{left:306.941286px;}
.x10{left:327.941286px;}
.x11{left:348.941286px;}
.x12{left:369.941286px;}
.x13{left:390.941286px;}
.x14{left:411.941286px;}
.x15{left:432.941286px;}
.x16{left:453.941286px;}
.x17{left:474.941286px;}
.x18{left:495.941286px;}
.x19{left:516.941286px;}
.x1a{left:537.941286px;}
.x1b{left:558.941286px;}
.x1c{left:579.941286px;}
.x1d{left:600.941286px;}
.x1e{left:621.941286px;}
.x1f{left:642.941286px;}
.x20{left:663.941286px;}
.x21{left:684.941286px;}
.x22{left:705.941286px;}
.x23{left:726.941286px;}
.x24{left:747.941286px;}
.x25{left:768.941286px;}
.x26{left:789.941286px;}
.x27{left:810.941286px;}
.x28{left:831.941286px;}
.x29{left:852.941286px;}
.x2a{left:873.941286px;}
.x2b{left:894.941286px;}
.x2c{left:915.941286px;}
.x2d{left:936.941286px;}
.x2e{left:957.941286px;}
.x2f{left:978.941286px;}
.x30{left:999.941286px;}
.x31{left:1020.941286px;}
.x32{left:1041.941286px;}
.x33{left:1062.941286px;}
.x34{left:1083.941286px;}
.x35{left:1104.941286px;}
.x36{left:1125.941286px;}
.x37{left:1146.941286px;}
.x38{left:1167.941286px;}
.x39{left:1188.941286px;}
.x3a{left:1209.941286px;}
.x3b{left:1230.941286px;}
.x3c{left:1251.941286px;}
.x3d{left:1272.941286px;}
.x3e{left:1293.941286px;}
.x3f{left:1314.941286px;}
.x40{left:1335.941286px;}
.x41{left:1356.941286px;}
.x42{left:1377.941286px;}
.x43{left:1398.941286px;}
.x44{left:1419.941286px;}
.x45{left:1440.941286px;}
.x46{left:1461.941286px;}
.x47{left:1482.941286px;}
.x48{left:1503.941286px;}
.x49{left:1524.941286px;}
.x4c{left:1539.842280px;}
.x4b{left:1541.342280px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:936.192000pt;}
._1{margin-left:-5.440000pt;}
._0{margin-left:-2.560000pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:5.778662pt;}
.y4a{bottom:24.445328pt;}
.y49{bottom:43.111995pt;}
.y48{bottom:61.778662pt;}
.y47{bottom:80.445328pt;}
.y46{bottom:99.111995pt;}
.y45{bottom:117.778662pt;}
.y44{bottom:136.445328pt;}
.y43{bottom:155.111995pt;}
.y42{bottom:173.778662pt;}
.y41{bottom:192.445328pt;}
.y40{bottom:211.111995pt;}
.y3f{bottom:229.778662pt;}
.y3e{bottom:248.445328pt;}
.y3d{bottom:267.111995pt;}
.y3c{bottom:285.778662pt;}
.y3b{bottom:304.445328pt;}
.y3a{bottom:323.111995pt;}
.y39{bottom:341.778662pt;}
.y38{bottom:360.445328pt;}
.y37{bottom:379.111995pt;}
.y36{bottom:397.778662pt;}
.y35{bottom:416.445328pt;}
.y34{bottom:435.111995pt;}
.y33{bottom:453.778662pt;}
.y32{bottom:472.445328pt;}
.y31{bottom:491.111995pt;}
.y30{bottom:509.778662pt;}
.y2f{bottom:528.445328pt;}
.y2e{bottom:547.111995pt;}
.y2d{bottom:565.778662pt;}
.y2c{bottom:584.445328pt;}
.y2b{bottom:603.111995pt;}
.y2a{bottom:621.778662pt;}
.y29{bottom:640.445328pt;}
.y28{bottom:659.111995pt;}
.y27{bottom:677.778662pt;}
.y26{bottom:696.445328pt;}
.y25{bottom:715.111995pt;}
.y24{bottom:733.778662pt;}
.y23{bottom:752.445328pt;}
.y22{bottom:771.111995pt;}
.y21{bottom:789.778662pt;}
.y20{bottom:808.445328pt;}
.y1f{bottom:827.111995pt;}
.y1e{bottom:845.778662pt;}
.y1d{bottom:864.445328pt;}
.y1c{bottom:883.111995pt;}
.y1b{bottom:901.778662pt;}
.y1a{bottom:920.445328pt;}
.y19{bottom:939.111995pt;}
.y18{bottom:957.778662pt;}
.y17{bottom:976.445328pt;}
.y16{bottom:995.111995pt;}
.y15{bottom:1013.778662pt;}
.y14{bottom:1032.445328pt;}
.y13{bottom:1051.111995pt;}
.y12{bottom:1069.778662pt;}
.y11{bottom:1088.445328pt;}
.y10{bottom:1107.111995pt;}
.yf{bottom:1125.778662pt;}
.ye{bottom:1144.445328pt;}
.yd{bottom:1163.111995pt;}
.yc{bottom:1181.778662pt;}
.yb{bottom:1200.445328pt;}
.ya{bottom:1219.111995pt;}
.y9{bottom:1237.778662pt;}
.y8{bottom:1256.445328pt;}
.y7{bottom:1275.111995pt;}
.y6{bottom:1293.778662pt;}
.y5{bottom:1312.445328pt;}
.y4{bottom:1331.111995pt;}
.y4c{bottom:1352.902662pt;}
.y2{bottom:1353.866667pt;}
.y3{bottom:1355.569328pt;}
.y1{bottom:1778.057875pt;}
.h2{height:61.187500pt;}
.h3{height:66.750000pt;}
.h0{height:1807.255208pt;}
.h1{height:1807.333333pt;}
.w1{width:1629.333333pt;}
.w0{width:1629.337240pt;}
.x0{left:0.000000pt;}
.x4a{left:2.671360pt;}
.x2{left:30.170032pt;}
.x1{left:38.796000pt;}
.x3{left:48.836698pt;}
.x4{left:67.503365pt;}
.x5{left:86.170032pt;}
.x6{left:104.836698pt;}
.x7{left:123.503365pt;}
.x8{left:142.170032pt;}
.x9{left:160.836698pt;}
.xa{left:179.503365pt;}
.xb{left:198.170032pt;}
.xc{left:216.836698pt;}
.xd{left:235.503365pt;}
.xe{left:254.170032pt;}
.xf{left:272.836698pt;}
.x10{left:291.503365pt;}
.x11{left:310.170032pt;}
.x12{left:328.836698pt;}
.x13{left:347.503365pt;}
.x14{left:366.170032pt;}
.x15{left:384.836698pt;}
.x16{left:403.503365pt;}
.x17{left:422.170032pt;}
.x18{left:440.836698pt;}
.x19{left:459.503365pt;}
.x1a{left:478.170032pt;}
.x1b{left:496.836698pt;}
.x1c{left:515.503365pt;}
.x1d{left:534.170032pt;}
.x1e{left:552.836698pt;}
.x1f{left:571.503365pt;}
.x20{left:590.170032pt;}
.x21{left:608.836698pt;}
.x22{left:627.503365pt;}
.x23{left:646.170032pt;}
.x24{left:664.836698pt;}
.x25{left:683.503365pt;}
.x26{left:702.170032pt;}
.x27{left:720.836698pt;}
.x28{left:739.503365pt;}
.x29{left:758.170032pt;}
.x2a{left:776.836698pt;}
.x2b{left:795.503365pt;}
.x2c{left:814.170032pt;}
.x2d{left:832.836698pt;}
.x2e{left:851.503365pt;}
.x2f{left:870.170032pt;}
.x30{left:888.836698pt;}
.x31{left:907.503365pt;}
.x32{left:926.170032pt;}
.x33{left:944.836698pt;}
.x34{left:963.503365pt;}
.x35{left:982.170032pt;}
.x36{left:1000.836698pt;}
.x37{left:1019.503365pt;}
.x38{left:1038.170032pt;}
.x39{left:1056.836698pt;}
.x3a{left:1075.503365pt;}
.x3b{left:1094.170032pt;}
.x3c{left:1112.836698pt;}
.x3d{left:1131.503365pt;}
.x3e{left:1150.170032pt;}
.x3f{left:1168.836698pt;}
.x40{left:1187.503365pt;}
.x41{left:1206.170032pt;}
.x42{left:1224.836698pt;}
.x43{left:1243.503365pt;}
.x44{left:1262.170032pt;}
.x45{left:1280.836698pt;}
.x46{left:1299.503365pt;}
.x47{left:1318.170032pt;}
.x48{left:1336.836698pt;}
.x49{left:1355.503365pt;}
.x4c{left:1368.748693pt;}
.x4b{left:1370.082027pt;}
}




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