
    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_5f4a9823af01daaa2d3f9f64.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_2770eb05301c9952f55333eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_681df4c3e39a42110de895c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_7c2aa295349d1ead38690d7d.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c296f68e46509b075272b0f0.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:3.579719px;}
.ls0{letter-spacing:17.416793px;}
.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:-16.559993px;}
.ws0{word-spacing:-10.439996px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.246203px;}
._4{width:1.192511px;}
._c{width:3.022959px;}
._d{width:4.503524px;}
._e{width:5.737207px;}
._12{width:6.967815px;}
._f{width:8.189762px;}
._10{width:9.218874px;}
._11{width:10.870038px;}
._8{width:12.458546px;}
._a{width:13.614850px;}
._9{width:15.106556px;}
._7{width:17.649724px;}
._5{width:18.708752px;}
._13{width:20.194467px;}
._15{width:21.832504px;}
._2{width:24.577454px;}
._14{width:28.151966px;}
._3{width:33.202801px;}
._0{width:36.945531px;}
._6{width:120.898068px;}
._b{width:195.966987px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.759983px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y3f{bottom:119.459952px;}
.y3e{bottom:138.539945px;}
.y3d{bottom:157.439937px;}
.y3c{bottom:176.339929px;}
.y3b{bottom:195.419922px;}
.y3a{bottom:214.319914px;}
.y39{bottom:233.399907px;}
.y38{bottom:252.299899px;}
.y37{bottom:271.379891px;}
.y36{bottom:290.279884px;}
.y35{bottom:309.179876px;}
.y34{bottom:328.259869px;}
.y33{bottom:347.159861px;}
.y32{bottom:366.239854px;}
.y31{bottom:385.139846px;}
.y30{bottom:404.039838px;}
.y2f{bottom:423.119831px;}
.y2e{bottom:442.019823px;}
.y2d{bottom:461.099816px;}
.y2c{bottom:479.999808px;}
.y2b{bottom:498.899800px;}
.y2a{bottom:517.979793px;}
.y29{bottom:536.879785px;}
.y28{bottom:555.959778px;}
.y27{bottom:574.859770px;}
.y26{bottom:593.759762px;}
.y25{bottom:612.839755px;}
.y24{bottom:631.739747px;}
.y23{bottom:650.819740px;}
.y22{bottom:669.719732px;}
.y21{bottom:688.619725px;}
.y20{bottom:707.699717px;}
.y1f{bottom:726.599709px;}
.y1e{bottom:746.219702px;}
.y1d{bottom:765.839694px;}
.y1c{bottom:784.739686px;}
.y1b{bottom:792.299683px;}
.y1a{bottom:803.639679px;}
.y19{bottom:822.719671px;}
.y18{bottom:830.279668px;}
.y51{bottom:838.199665px;}
.y17{bottom:841.619663px;}
.y50{bottom:857.099657px;}
.y16{bottom:860.699656px;}
.y15{bottom:868.259653px;}
.y4f{bottom:876.179650px;}
.y14{bottom:879.599648px;}
.y13{bottom:887.159645px;}
.y4e{bottom:895.079642px;}
.y12{bottom:898.499641px;}
.y4d{bottom:914.159634px;}
.y11{bottom:917.579633px;}
.y4c{bottom:933.059627px;}
.y10{bottom:936.479625px;}
.yf{bottom:944.039622px;}
.y4b{bottom:952.139619px;}
.ye{bottom:955.559618px;}
.y4a{bottom:971.039612px;}
.yd{bottom:974.459610px;}
.y49{bottom:989.939604px;}
.yc{bottom:993.359603px;}
.yb{bottom:1000.919600px;}
.y48{bottom:1009.019596px;}
.ya{bottom:1019.999592px;}
.y47{bottom:1027.919589px;}
.y8{bottom:1031.339587px;}
.y9{bottom:1038.899584px;}
.y46{bottom:1046.999581px;}
.y6{bottom:1050.419580px;}
.y7{bottom:1057.979577px;}
.y44{bottom:1065.899574px;}
.y4{bottom:1069.319572px;}
.y45{bottom:1073.459571px;}
.y5{bottom:1076.879569px;}
.y43{bottom:1084.799566px;}
.y3{bottom:1088.939564px;}
.y42{bottom:1103.879558px;}
.y2{bottom:1113.059555px;}
.y41{bottom:1122.779551px;}
.y1{bottom:1137.359545px;}
.y40{bottom:1141.859543px;}
.h4{height:28.995457px;}
.h3{height:29.015848px;}
.h6{height:44.149201px;}
.h5{height:45.992794px;}
.h2{height:46.025138px;}
.h1{height:57.668180px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x15{left:132.839947px;}
.x16{left:134.991846px;}
.x17{left:136.799945px;}
.xe{left:244.079902px;}
.xf{left:248.759900px;}
.x8{left:272.339891px;}
.x9{left:284.759886px;}
.x10{left:327.059869px;}
.x11{left:330.299868px;}
.x2{left:333.179867px;}
.x3{left:337.859865px;}
.x12{left:420.119832px;}
.x13{left:424.799830px;}
.xa{left:478.079809px;}
.xb{left:483.119807px;}
.x4{left:496.439801px;}
.x18{left:502.379799px;}
.x5{left:504.359798px;}
.x19{left:507.599797px;}
.x14{left:532.439787px;}
.xc{left:692.635223px;}
.xd{left:708.839716px;}
.x6{left:726.479709px;}
.x7{left:731.699707px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:3.181972pt;}
.ls0{letter-spacing:15.481594pt;}
.ws1{word-spacing:-14.719994pt;}
.ws0{word-spacing:-9.279996pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.107736pt;}
._4{width:1.060010pt;}
._c{width:2.687075pt;}
._d{width:4.003132pt;}
._e{width:5.099739pt;}
._12{width:6.193613pt;}
._f{width:7.279788pt;}
._10{width:8.194555pt;}
._11{width:9.662256pt;}
._8{width:11.074263pt;}
._a{width:12.102089pt;}
._9{width:13.428050pt;}
._7{width:15.688644pt;}
._5{width:16.630002pt;}
._13{width:17.950638pt;}
._15{width:19.406670pt;}
._2{width:21.846626pt;}
._14{width:25.023970pt;}
._3{width:29.513601pt;}
._0{width:32.840472pt;}
._6{width:107.464950pt;}
._b{width:174.192878pt;}
.fs2{font-size:37.119985pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:106.186624pt;}
.y3e{bottom:123.146617pt;}
.y3d{bottom:139.946611pt;}
.y3c{bottom:156.746604pt;}
.y3b{bottom:173.706597pt;}
.y3a{bottom:190.506590pt;}
.y39{bottom:207.466584pt;}
.y38{bottom:224.266577pt;}
.y37{bottom:241.226570pt;}
.y36{bottom:258.026563pt;}
.y35{bottom:274.826557pt;}
.y34{bottom:291.786550pt;}
.y33{bottom:308.586543pt;}
.y32{bottom:325.546536pt;}
.y31{bottom:342.346530pt;}
.y30{bottom:359.146523pt;}
.y2f{bottom:376.106516pt;}
.y2e{bottom:392.906510pt;}
.y2d{bottom:409.866503pt;}
.y2c{bottom:426.666496pt;}
.y2b{bottom:443.466489pt;}
.y2a{bottom:460.426482pt;}
.y29{bottom:477.226476pt;}
.y28{bottom:494.186469pt;}
.y27{bottom:510.986462pt;}
.y26{bottom:527.786456pt;}
.y25{bottom:544.746449pt;}
.y24{bottom:561.546442pt;}
.y23{bottom:578.506435pt;}
.y22{bottom:595.306429pt;}
.y21{bottom:612.106422pt;}
.y20{bottom:629.066415pt;}
.y1f{bottom:645.866408pt;}
.y1e{bottom:663.306401pt;}
.y1d{bottom:680.746394pt;}
.y1c{bottom:697.546388pt;}
.y1b{bottom:704.266385pt;}
.y1a{bottom:714.346381pt;}
.y19{bottom:731.306374pt;}
.y18{bottom:738.026371pt;}
.y51{bottom:745.066369pt;}
.y17{bottom:748.106367pt;}
.y50{bottom:761.866362pt;}
.y16{bottom:765.066361pt;}
.y15{bottom:771.786358pt;}
.y4f{bottom:778.826355pt;}
.y14{bottom:781.866354pt;}
.y13{bottom:788.586351pt;}
.y4e{bottom:795.626348pt;}
.y12{bottom:798.666347pt;}
.y4d{bottom:812.586342pt;}
.y11{bottom:815.626340pt;}
.y4c{bottom:829.386335pt;}
.y10{bottom:832.426334pt;}
.yf{bottom:839.146331pt;}
.y4b{bottom:846.346328pt;}
.ye{bottom:849.386327pt;}
.y4a{bottom:863.146321pt;}
.yd{bottom:866.186320pt;}
.y49{bottom:879.946315pt;}
.yc{bottom:882.986313pt;}
.yb{bottom:889.706311pt;}
.y48{bottom:896.906308pt;}
.ya{bottom:906.666304pt;}
.y47{bottom:913.706301pt;}
.y8{bottom:916.746300pt;}
.y9{bottom:923.466297pt;}
.y46{bottom:930.666294pt;}
.y6{bottom:933.706293pt;}
.y7{bottom:940.426290pt;}
.y44{bottom:947.466288pt;}
.y4{bottom:950.506286pt;}
.y45{bottom:954.186285pt;}
.y5{bottom:957.226284pt;}
.y43{bottom:964.266281pt;}
.y3{bottom:967.946279pt;}
.y42{bottom:981.226274pt;}
.y2{bottom:989.386271pt;}
.y41{bottom:998.026267pt;}
.y1{bottom:1010.986262pt;}
.y40{bottom:1014.986261pt;}
.h4{height:25.773740pt;}
.h3{height:25.791865pt;}
.h6{height:39.243734pt;}
.h5{height:40.882484pt;}
.h2{height:40.911234pt;}
.h1{height:51.260604pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x15{left:118.079953pt;}
.x16{left:119.992752pt;}
.x17{left:121.599951pt;}
.xe{left:216.959913pt;}
.xf{left:221.119912pt;}
.x8{left:242.079903pt;}
.x9{left:253.119899pt;}
.x10{left:290.719884pt;}
.x11{left:293.599883pt;}
.x2{left:296.159882pt;}
.x3{left:300.319880pt;}
.x12{left:373.439851pt;}
.x13{left:377.599849pt;}
.xa{left:424.959830pt;}
.xb{left:429.439828pt;}
.x4{left:441.279823pt;}
.x18{left:446.559821pt;}
.x5{left:448.319821pt;}
.x19{left:451.199820pt;}
.x14{left:473.279811pt;}
.xc{left:615.675754pt;}
.xd{left:630.079748pt;}
.x6{left:645.759742pt;}
.x7{left:650.399740pt;}
}




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