
    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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739746;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_8b58654e1735e02517866ae2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_be07d5d148ebeb93a8d48b55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_7db126978afe903f040714ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_0c6ca1dc7aefb19d0bd90ea8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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;}
.ls8{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.296000px;}
.lsa{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.363600px;}
.ls7{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.033120px;}
.lse{letter-spacing:-0.000006px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.288000px;}
.ls1{letter-spacing:22.896000px;}
.ls2{letter-spacing:102.189600px;}
.ls3{letter-spacing:102.240000px;}
.ls4{letter-spacing:111.549600px;}
.ls0{letter-spacing:111.600000px;}
.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;}
}
.ws20{word-spacing:-32.576544px;}
.ws2{word-spacing:-32.544000px;}
.ws10{word-spacing:-31.824000px;}
.ws5{word-spacing:-31.104000px;}
.ws4{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.176192px;}
.ws1d{word-spacing:-1.152000px;}
.ws3{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.686304px;}
.ws11{word-spacing:-0.576000px;}
.ws1c{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.185904px;}
.ws24{word-spacing:-0.168000px;}
.ws23{word-spacing:-0.143966px;}
.ws17{word-spacing:-0.108000px;}
.ws1f{word-spacing:-0.075888px;}
.ws26{word-spacing:0.000000px;}
.ws16{word-spacing:0.144000px;}
.ws8{word-spacing:0.288000px;}
.ws7{word-spacing:0.432000px;}
.ws1b{word-spacing:0.576000px;}
.ws1e{word-spacing:0.649872px;}
.ws21{word-spacing:0.696000px;}
.ws6{word-spacing:0.720000px;}
.ws19{word-spacing:1.584000px;}
.ws18{word-spacing:2.448000px;}
.ws22{word-spacing:2.712000px;}
.ws25{word-spacing:3.024000px;}
.ws1{word-spacing:9.011808px;}
.ws12{word-spacing:15.696000px;}
.ws15{word-spacing:16.104000px;}
.ws13{word-spacing:16.272000px;}
.ws14{word-spacing:18.288000px;}
.wsf{word-spacing:19.128000px;}
.wse{word-spacing:19.440000px;}
.ws0{word-spacing:23.472000px;}
.wsa{word-spacing:29.808000px;}
.ws9{word-spacing:30.240000px;}
._f{margin-left:-11.088000px;}
._e{margin-left:-5.472000px;}
._b{margin-left:-4.000224px;}
._4{margin-left:-2.806944px;}
._1{margin-left:-1.584000px;}
._2{width:1.584000px;}
._d{width:3.168000px;}
._5{width:9.592272px;}
._3{width:22.464000px;}
._0{width:23.736000px;}
._9{width:31.281888px;}
._8{width:33.237888px;}
._c{width:34.704000px;}
._a{width:53.280000px;}
._6{width:59.328000px;}
._7{width:93.141888px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(1,65,111);}
.fs0{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:48.924000px;}
.y2a{bottom:92.124000px;}
.y29{bottom:178.560000px;}
.y28{bottom:221.760000px;}
.y27{bottom:308.160000px;}
.y26{bottom:351.360000px;}
.y25{bottom:394.560000px;}
.y24{bottom:437.760000px;}
.y23{bottom:524.160000px;}
.y22{bottom:567.360000px;}
.y21{bottom:653.760000px;}
.y20{bottom:696.990000px;}
.y1f{bottom:944.175000px;}
.y1e{bottom:987.375000px;}
.y1d{bottom:1030.575000px;}
.y1c{bottom:1073.775000px;}
.y1b{bottom:1160.205000px;}
.y1a{bottom:1203.405000px;}
.y19{bottom:1289.805000px;}
.y13{bottom:1340.970000px;}
.y18{bottom:1376.205000px;}
.y17{bottom:1419.405000px;}
.y12{bottom:1427.370000px;}
.y16{bottom:1462.605000px;}
.y11{bottom:1470.570000px;}
.y15{bottom:1549.005000px;}
.y10{bottom:1556.970000px;}
.y14{bottom:1592.205000px;}
.yf{bottom:1600.170000px;}
.ye{bottom:1686.570000px;}
.y8{bottom:1714.605000px;}
.yd{bottom:1729.770000px;}
.y7{bottom:1757.805000px;}
.y6{bottom:1801.005000px;}
.yc{bottom:1816.200000px;}
.y5{bottom:1844.205000px;}
.y4{bottom:1887.405000px;}
.yb{bottom:1902.600000px;}
.y3{bottom:1930.650000px;}
.ya{bottom:1945.800000px;}
.y2{bottom:1973.850000px;}
.y1{bottom:2017.050000px;}
.y9{bottom:2032.200000px;}
.h6{height:109.968750px;}
.h3{height:143.226562px;}
.h5{height:143.369789px;}
.h2{height:147.445312px;}
.h4{height:147.592758px;}
.h1{height:2525.250000px;}
.h0{height:2525.580000px;}
.w1{width:1785.750000px;}
.w2{width:1785.779973px;}
.w0{width:1785.780000px;}
.x0{left:0.000000px;}
.x9{left:30.023973px;}
.x1{left:31.499973px;}
.x3{left:69.659973px;}
.x2{left:71.999973px;}
.x7{left:92.123973px;}
.x8{left:96.443973px;}
.x5{left:761.609973px;}
.x6{left:802.109973px;}
.xa{left:896.429973px;}
.xb{left:936.929973px;}
.x4{left:986.429973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.152000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.323200pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.029440pt;}
.lse{letter-spacing:-0.000005pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1{letter-spacing:20.352000pt;}
.ls2{letter-spacing:90.835200pt;}
.ls3{letter-spacing:90.880000pt;}
.ls4{letter-spacing:99.155200pt;}
.ls0{letter-spacing:99.200000pt;}
.ws20{word-spacing:-28.956928pt;}
.ws2{word-spacing:-28.928000pt;}
.ws10{word-spacing:-28.288000pt;}
.ws5{word-spacing:-27.648000pt;}
.ws4{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.045504pt;}
.ws1d{word-spacing:-1.024000pt;}
.ws3{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.610048pt;}
.ws11{word-spacing:-0.512000pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.165248pt;}
.ws24{word-spacing:-0.149333pt;}
.ws23{word-spacing:-0.127969pt;}
.ws17{word-spacing:-0.096000pt;}
.ws1f{word-spacing:-0.067456pt;}
.ws26{word-spacing:0.000000pt;}
.ws16{word-spacing:0.128000pt;}
.ws8{word-spacing:0.256000pt;}
.ws7{word-spacing:0.384000pt;}
.ws1b{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.577664pt;}
.ws21{word-spacing:0.618667pt;}
.ws6{word-spacing:0.640000pt;}
.ws19{word-spacing:1.408000pt;}
.ws18{word-spacing:2.176000pt;}
.ws22{word-spacing:2.410667pt;}
.ws25{word-spacing:2.688000pt;}
.ws1{word-spacing:8.010496pt;}
.ws12{word-spacing:13.952000pt;}
.ws15{word-spacing:14.314667pt;}
.ws13{word-spacing:14.464000pt;}
.ws14{word-spacing:16.256000pt;}
.wsf{word-spacing:17.002667pt;}
.wse{word-spacing:17.280000pt;}
.ws0{word-spacing:20.864000pt;}
.wsa{word-spacing:26.496000pt;}
.ws9{word-spacing:26.880000pt;}
._f{margin-left:-9.856000pt;}
._e{margin-left:-4.864000pt;}
._b{margin-left:-3.555755pt;}
._4{margin-left:-2.495061pt;}
._1{margin-left:-1.408000pt;}
._2{width:1.408000pt;}
._d{width:2.816000pt;}
._5{width:8.526464pt;}
._3{width:19.968000pt;}
._0{width:21.098667pt;}
._9{width:27.806123pt;}
._8{width:29.544789pt;}
._c{width:30.848000pt;}
._a{width:47.360000pt;}
._6{width:52.736000pt;}
._7{width:82.792789pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:43.488000pt;}
.y2a{bottom:81.888000pt;}
.y29{bottom:158.720000pt;}
.y28{bottom:197.120000pt;}
.y27{bottom:273.920000pt;}
.y26{bottom:312.320000pt;}
.y25{bottom:350.720000pt;}
.y24{bottom:389.120000pt;}
.y23{bottom:465.920000pt;}
.y22{bottom:504.320000pt;}
.y21{bottom:581.120000pt;}
.y20{bottom:619.546667pt;}
.y1f{bottom:839.266667pt;}
.y1e{bottom:877.666667pt;}
.y1d{bottom:916.066667pt;}
.y1c{bottom:954.466667pt;}
.y1b{bottom:1031.293333pt;}
.y1a{bottom:1069.693333pt;}
.y19{bottom:1146.493333pt;}
.y13{bottom:1191.973333pt;}
.y18{bottom:1223.293333pt;}
.y17{bottom:1261.693333pt;}
.y12{bottom:1268.773333pt;}
.y16{bottom:1300.093333pt;}
.y11{bottom:1307.173333pt;}
.y15{bottom:1376.893333pt;}
.y10{bottom:1383.973333pt;}
.y14{bottom:1415.293333pt;}
.yf{bottom:1422.373333pt;}
.ye{bottom:1499.173333pt;}
.y8{bottom:1524.093333pt;}
.yd{bottom:1537.573333pt;}
.y7{bottom:1562.493333pt;}
.y6{bottom:1600.893333pt;}
.yc{bottom:1614.400000pt;}
.y5{bottom:1639.293333pt;}
.y4{bottom:1677.693333pt;}
.yb{bottom:1691.200000pt;}
.y3{bottom:1716.133333pt;}
.ya{bottom:1729.600000pt;}
.y2{bottom:1754.533333pt;}
.y1{bottom:1792.933333pt;}
.y9{bottom:1806.400000pt;}
.h6{height:97.750000pt;}
.h3{height:127.312500pt;}
.h5{height:127.439813pt;}
.h2{height:131.062500pt;}
.h4{height:131.193562pt;}
.h1{height:2244.666667pt;}
.h0{height:2244.960000pt;}
.w1{width:1587.333333pt;}
.w2{width:1587.359976pt;}
.w0{width:1587.360000pt;}
.x0{left:0.000000pt;}
.x9{left:26.687976pt;}
.x1{left:27.999976pt;}
.x3{left:61.919976pt;}
.x2{left:63.999976pt;}
.x7{left:81.887976pt;}
.x8{left:85.727976pt;}
.x5{left:676.986643pt;}
.x6{left:712.986643pt;}
.xa{left:796.826643pt;}
.xb{left:832.826643pt;}
.x4{left:876.826643pt;}
}




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