
    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_9d9ff4c7cd437c7fc28fd823.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_5afcee0d9d4c66a1dbca8358.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_4d8d8ad534427aa38854b920.woff')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_a175e7c8c363879f50502bfc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_507b609d0f1a80134aa17727.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_99aca42fdd80c627fa17e121.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_92570f92584e0c97b676547c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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:ffa;src:url('chunks/assets/font_0e7396ffe94cee3b319f36d6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
.v1{vertical-align:4.501757px;}
.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;}
}
.ws2{word-spacing:-20.356490px;}
.ws4{word-spacing:-20.011446px;}
.ws0{word-spacing:-19.087192px;}
.ws3{word-spacing:-16.602255px;}
.ws5{word-spacing:-11.068153px;}
.ws1{word-spacing:-10.179819px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-1769.733480px;}
._3{margin-left:-11.063884px;}
._9{margin-left:-7.983476px;}
._a{margin-left:-4.607340px;}
._5{margin-left:-3.315345px;}
._4{margin-left:-2.050981px;}
._1{margin-left:-1.005227px;}
._0{width:1.931699px;}
._2{width:5.041322px;}
._6{width:215.430190px;}
._7{width:271.275523px;}
.fc3{color:transparent;}
.fc2{color:rgb(208,163,0);}
.fc1{color:rgb(55,160,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.017971px;}
.fs2{font-size:48.018016px;}
.fs6{font-size:72.027138px;}
.fs0{font-size:76.843953px;}
.fs7{font-size:84.001650px;}
.fs4{font-size:90.033923px;}
.fs8{font-size:96.021179px;}
.fs5{font-size:102.008434px;}
.fs1{font-size:180.067845px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yf{bottom:3.034147px;}
.y16{bottom:3.066197px;}
.y39{bottom:3.089683px;}
.y7{bottom:3.245134px;}
.ya{bottom:3.283588px;}
.y18{bottom:3.310876px;}
.ye{bottom:19.040153px;}
.y15{bottom:19.072203px;}
.y38{bottom:19.095689px;}
.y9{bottom:19.289578px;}
.yd{bottom:35.046158px;}
.y14{bottom:35.078208px;}
.y37{bottom:35.101694px;}
.yc{bottom:37.575019px;}
.y13{bottom:51.084214px;}
.y36{bottom:51.107700px;}
.y12{bottom:67.090219px;}
.y35{bottom:67.113705px;}
.y11{bottom:83.096224px;}
.y34{bottom:83.119711px;}
.y8{bottom:98.055017px;}
.y33{bottom:99.125716px;}
.y6{bottom:142.335015px;}
.y32{bottom:180.855013px;}
.y10{bottom:198.135012px;}
.yb{bottom:304.023754px;}
.y17{bottom:332.775007px;}
.y1b{bottom:359.121742px;}
.y1a{bottom:383.881071px;}
.y28{bottom:548.696396px;}
.y27{bottom:573.455725px;}
.y26{bottom:598.215054px;}
.y29{bottom:599.340486px;}
.y1d{bottom:637.904930px;}
.y31{bottom:724.145402px;}
.y30{bottom:748.904730px;}
.y2f{bottom:773.664059px;}
.y22{bottom:792.774499px;}
.y2e{bottom:798.423388px;}
.y21{bottom:817.533828px;}
.y2d{bottom:823.182716px;}
.y25{bottom:839.142059px;}
.y20{bottom:842.293157px;}
.y2c{bottom:847.942045px;}
.y24{bottom:863.901387px;}
.y1f{bottom:867.052485px;}
.y2b{bottom:872.701374px;}
.y23{bottom:888.660716px;}
.y1e{bottom:891.811814px;}
.y2a{bottom:897.460703px;}
.y1c{bottom:933.865081px;}
.y19{bottom:977.418991px;}
.y4{bottom:1038.500335px;}
.y3{bottom:1090.269840px;}
.y2{bottom:1116.154593px;}
.y5{bottom:1172.287909px;}
.h5{height:14.399999px;}
.h7{height:30.599999px;}
.h8{height:39.662844px;}
.hb{height:39.662881px;}
.h6{height:43.888467px;}
.hd{height:45.617115px;}
.ha{height:46.079998px;}
.h12{height:52.191540px;}
.h3{height:58.796130px;}
.hf{height:59.494416px;}
.h10{height:81.279265px;}
.h9{height:82.291005px;}
.he{height:84.258967px;}
.h11{height:87.763357px;}
.hc{height:94.319996px;}
.h13{height:110.159995px;}
.h4{height:148.736040px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w6{width:237.599990px;}
.w5{width:373.319984px;}
.w7{width:442.439982px;}
.w2{width:583.559976px;}
.w4{width:668.519972px;}
.w3{width:697.679971px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:24.119999px;}
.x3{left:25.199999px;}
.xa{left:28.064420px;}
.xb{left:60.895149px;}
.x6{left:65.388188px;}
.x7{left:77.392692px;}
.xd{left:81.741870px;}
.x8{left:162.627797px;}
.x9{left:174.632301px;}
.x1{left:192.538072px;}
.xf{left:234.037471px;}
.x2{left:268.065869px;}
.xe{left:313.415819px;}
.x4{left:497.192149px;}
.x5{left:498.239979px;}
.xc{left:530.838355px;}
.x10{left:549.615931px;}
.x11{left:586.218242px;}
.x12{left:616.833293px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.001561pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-18.094658pt;}
.ws4{word-spacing:-17.787952pt;}
.ws0{word-spacing:-16.966393pt;}
.ws3{word-spacing:-14.757560pt;}
.ws5{word-spacing:-9.838358pt;}
.ws1{word-spacing:-9.048728pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-1573.096427pt;}
._3{margin-left:-9.834563pt;}
._9{margin-left:-7.096424pt;}
._a{margin-left:-4.095413pt;}
._5{margin-left:-2.946973pt;}
._4{margin-left:-1.823094pt;}
._1{margin-left:-0.893535pt;}
._0{width:1.717065pt;}
._2{width:4.481175pt;}
._6{width:191.493503pt;}
._7{width:241.133798pt;}
.fs3{font-size:42.682641pt;}
.fs2{font-size:42.682681pt;}
.fs6{font-size:64.024123pt;}
.fs0{font-size:68.305736pt;}
.fs7{font-size:74.668133pt;}
.fs4{font-size:80.030153pt;}
.fs8{font-size:85.352159pt;}
.fs5{font-size:90.674164pt;}
.fs1{font-size:160.060307pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yf{bottom:2.697020pt;}
.y16{bottom:2.725509pt;}
.y39{bottom:2.746385pt;}
.y7{bottom:2.884564pt;}
.ya{bottom:2.918745pt;}
.y18{bottom:2.943001pt;}
.ye{bottom:16.924580pt;}
.y15{bottom:16.953069pt;}
.y38{bottom:16.973946pt;}
.y9{bottom:17.146292pt;}
.yd{bottom:31.152140pt;}
.y14{bottom:31.180629pt;}
.y37{bottom:31.201506pt;}
.yc{bottom:33.400017pt;}
.y13{bottom:45.408190pt;}
.y36{bottom:45.429066pt;}
.y12{bottom:59.635750pt;}
.y35{bottom:59.656627pt;}
.y11{bottom:73.863311pt;}
.y34{bottom:73.884187pt;}
.y8{bottom:87.160015pt;}
.y33{bottom:88.111747pt;}
.y6{bottom:126.520013pt;}
.y32{bottom:160.760012pt;}
.y10{bottom:176.120011pt;}
.yb{bottom:270.243337pt;}
.y17{bottom:295.800006pt;}
.y1b{bottom:319.219326pt;}
.y1a{bottom:341.227618pt;}
.y28{bottom:487.730130pt;}
.y27{bottom:509.738422pt;}
.y26{bottom:531.746714pt;}
.y29{bottom:532.747098pt;}
.y1d{bottom:567.026605pt;}
.y31{bottom:643.684801pt;}
.y30{bottom:665.693094pt;}
.y2f{bottom:687.701386pt;}
.y22{bottom:704.688444pt;}
.y2e{bottom:709.709678pt;}
.y21{bottom:726.696736pt;}
.y2d{bottom:731.717970pt;}
.y25{bottom:745.904052pt;}
.y20{bottom:748.705028pt;}
.y2c{bottom:753.726262pt;}
.y24{bottom:767.912344pt;}
.y1f{bottom:770.713320pt;}
.y2b{bottom:775.734555pt;}
.y23{bottom:789.920637pt;}
.y1e{bottom:792.721612pt;}
.y2a{bottom:797.742847pt;}
.y1c{bottom:830.102294pt;}
.y19{bottom:868.816881pt;}
.y4{bottom:923.111409pt;}
.y3{bottom:969.128747pt;}
.y2{bottom:992.137416pt;}
.y5{bottom:1042.033697pt;}
.h5{height:12.799999pt;}
.h7{height:27.199999pt;}
.h8{height:35.255862pt;}
.hb{height:35.255895pt;}
.h6{height:39.011971pt;}
.hd{height:40.548547pt;}
.ha{height:40.959998pt;}
.h12{height:46.392480pt;}
.h3{height:52.263227pt;}
.hf{height:52.883925pt;}
.h10{height:72.248235pt;}
.h9{height:73.147560pt;}
.he{height:74.896859pt;}
.h11{height:78.011873pt;}
.hc{height:83.839997pt;}
.h13{height:97.919996pt;}
.h4{height:132.209814pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w6{width:211.199991pt;}
.w5{width:331.839986pt;}
.w7{width:393.279984pt;}
.w2{width:518.719978pt;}
.w4{width:594.239975pt;}
.w3{width:620.159974pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:21.439999pt;}
.x3{left:22.399999pt;}
.xa{left:24.946151pt;}
.xb{left:54.129021pt;}
.x6{left:58.122834pt;}
.x7{left:68.793504pt;}
.xd{left:72.659440pt;}
.x8{left:144.558042pt;}
.x9{left:155.228712pt;}
.x1{left:171.144953pt;}
.xf{left:208.033308pt;}
.x2{left:238.280773pt;}
.xe{left:278.591839pt;}
.x4{left:441.948577pt;}
.x5{left:442.879982pt;}
.xc{left:471.856315pt;}
.x10{left:488.547495pt;}
.x11{left:521.082882pt;}
.x12{left:548.296260pt;}
}




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