
    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_71bad5cb1c02bbae9712b0c7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.012695;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_f2d65c3439b35b94b4754f64.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_c03ce48dc4e2f137817424c9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_95ce18b9b57d64e124c2c343.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_19fa082cc861d789f3e46015.woff')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_dac35dfeffb444b0c5bc8816.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_585881d98bf5bce8adcd27ec.woff')format("woff");}.ff7{font-family:ff7;line-height:1.032715;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:ff8;src:url('chunks/assets/font_34c98e6e9da10fa99bba1bf2.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:108.000426px;}
.ls1{letter-spacing:108.000498px;}
.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:-43.152003px;}
.ws0{word-spacing:-41.664000px;}
.ws5{word-spacing:-26.784001px;}
.ws3{word-spacing:-20.832000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:126.625099px;}
._4{margin-left:-18.966001px;}
._5{margin-left:-10.440001px;}
._8{margin-left:-6.480000px;}
._3{margin-left:-5.208000px;}
._6{margin-left:-3.150000px;}
._0{margin-left:-2.016000px;}
._1{margin-left:-1.008000px;}
._2{width:1.344000px;}
._7{width:3.024000px;}
._9{width:146.713361px;}
._a{width:175.012656px;}
.fc3{color:rgb(0,151,167);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:72.000002px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:96.000006px;}
.fs8{font-size:108.000003px;}
.fs1{font-size:120.000001px;}
.fs7{font-size:126.000004px;}
.fs3{font-size:144.000005px;}
.fs5{font-size:149.999999px;}
.fs0{font-size:167.999999px;}
.fs6{font-size:174.000012px;}
.fsc{font-size:180.000006px;}
.fs4{font-size:306.000010px;}
.fs9{font-size:312.000022px;}
.y0{bottom:0.000000px;}
.y27{bottom:38.540758px;}
.y6{bottom:91.984574px;}
.y2c{bottom:101.210890px;}
.y5{bottom:121.234574px;}
.y36{bottom:137.210891px;}
.y15{bottom:153.140892px;}
.y1c{bottom:168.710892px;}
.y35{bottom:174.335892px;}
.y2b{bottom:175.460892px;}
.y25{bottom:190.412413px;}
.y34{bottom:211.460894px;}
.y14{bottom:211.640894px;}
.y2a{bottom:212.585894px;}
.y30{bottom:212.753372px;}
.y1b{bottom:220.460894px;}
.y1e{bottom:221.495489px;}
.y26{bottom:221.585894px;}
.y4{bottom:235.043493px;}
.y2f{bottom:237.503373px;}
.y33{bottom:248.585895px;}
.yc{bottom:255.332137px;}
.y1a{bottom:257.585895px;}
.y2e{bottom:262.253374px;}
.y38{bottom:263.210895px;}
.y13{bottom:270.140895px;}
.y3{bottom:276.668494px;}
.y29{bottom:286.835896px;}
.y2d{bottom:293.213375px;}
.y21{bottom:295.835896px;}
.y32{bottom:300.335896px;}
.y19{bottom:309.335885px;}
.y1d{bottom:314.870492px;}
.yf{bottom:320.132702px;}
.y23{bottom:325.580897px;}
.y12{bottom:328.640897px;}
.yb{bottom:337.457140px;}
.y31{bottom:337.460898px;}
.y18{bottom:346.460887px;}
.y2{bottom:349.367002px;}
.y24{bottom:356.091958px;}
.y28{bottom:361.085898px;}
.ya{bottom:361.959680px;}
.y22{bottom:367.205899px;}
.y20{bottom:370.085899px;}
.y11{bottom:372.515899px;}
.y37{bottom:374.585899px;}
.y17{bottom:398.210900px;}
.y1{bottom:399.992004px;}
.ye{bottom:404.507713px;}
.y9{bottom:404.709682px;}
.y10{bottom:431.015904px;}
.y1f{bottom:432.455901px;}
.y16{bottom:435.335901px;}
.y8{bottom:447.459683px;}
.y7{bottom:490.209684px;}
.y39{bottom:520.612089px;}
.yd{bottom:524.932085px;}
.he{height:57.761721px;}
.h11{height:66.363281px;}
.hd{height:67.388672px;}
.h3{height:72.984380px;}
.hf{height:85.324221px;}
.h9{height:86.642581px;}
.h2{height:91.230469px;}
.hb{height:94.804688px;}
.hc{height:96.328126px;}
.h8{height:101.083011px;}
.h4{height:113.765629px;}
.h6{height:114.038085px;}
.h1{height:132.726562px;}
.h12{height:134.777343px;}
.h7{height:139.590830px;}
.h10{height:142.207036px;}
.h5{height:232.637703px;}
.ha{height:237.199235px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:46.939963px;}
.xe{left:52.253231px;}
.x8{left:54.913839px;}
.x9{left:57.631857px;}
.x1{left:71.781499px;}
.x2{left:101.554136px;}
.x14{left:128.742349px;}
.xf{left:192.023185px;}
.xd{left:210.973552px;}
.x4{left:289.320564px;}
.x3{left:300.526619px;}
.x6{left:312.505064px;}
.x7{left:373.786876px;}
.xa{left:500.645682px;}
.xb{left:550.125018px;}
.xc{left:560.816912px;}
.x13{left:604.125019px;}
.x11{left:657.663864px;}
.x12{left:667.876275px;}
.x10{left:686.977919px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:96.000379pt;}
.ls1{letter-spacing:96.000443pt;}
.ws2{word-spacing:-38.357336pt;}
.ws0{word-spacing:-37.034667pt;}
.ws5{word-spacing:-23.808001pt;}
.ws3{word-spacing:-18.517333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:112.555644pt;}
._4{margin-left:-16.858668pt;}
._5{margin-left:-9.280001pt;}
._8{margin-left:-5.760000pt;}
._3{margin-left:-4.629333pt;}
._6{margin-left:-2.800000pt;}
._0{margin-left:-1.792000pt;}
._1{margin-left:-0.896000pt;}
._2{width:1.194667pt;}
._7{width:2.688000pt;}
._9{width:130.411876pt;}
._a{width:155.566805pt;}
.fsb{font-size:64.000002pt;}
.fsa{font-size:74.666666pt;}
.fs2{font-size:85.333339pt;}
.fs8{font-size:96.000003pt;}
.fs1{font-size:106.666667pt;}
.fs7{font-size:112.000004pt;}
.fs3{font-size:128.000004pt;}
.fs5{font-size:133.333332pt;}
.fs0{font-size:149.333333pt;}
.fs6{font-size:154.666677pt;}
.fsc{font-size:160.000005pt;}
.fs4{font-size:272.000009pt;}
.fs9{font-size:277.333353pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:34.258452pt;}
.y6{bottom:81.764065pt;}
.y2c{bottom:89.965236pt;}
.y5{bottom:107.764066pt;}
.y36{bottom:121.965237pt;}
.y15{bottom:136.125237pt;}
.y1c{bottom:149.965238pt;}
.y35{bottom:154.965238pt;}
.y2b{bottom:155.965238pt;}
.y25{bottom:169.255478pt;}
.y34{bottom:187.965239pt;}
.y14{bottom:188.125239pt;}
.y2a{bottom:188.965239pt;}
.y30{bottom:189.114109pt;}
.y1b{bottom:195.965239pt;}
.y1e{bottom:196.884879pt;}
.y26{bottom:196.965239pt;}
.y4{bottom:208.927549pt;}
.y2f{bottom:211.114109pt;}
.y33{bottom:220.965240pt;}
.yc{bottom:226.961900pt;}
.y1a{bottom:228.965240pt;}
.y2e{bottom:233.114110pt;}
.y38{bottom:233.965240pt;}
.y13{bottom:240.125240pt;}
.y3{bottom:245.927551pt;}
.y29{bottom:254.965241pt;}
.y2d{bottom:260.634111pt;}
.y21{bottom:262.965241pt;}
.y32{bottom:266.965241pt;}
.y19{bottom:274.965232pt;}
.y1d{bottom:279.884882pt;}
.yf{bottom:284.562402pt;}
.y23{bottom:289.405242pt;}
.y12{bottom:292.125242pt;}
.yb{bottom:299.961902pt;}
.y31{bottom:299.965242pt;}
.y18{bottom:307.965233pt;}
.y2{bottom:310.548447pt;}
.y24{bottom:316.526185pt;}
.y28{bottom:320.965243pt;}
.ya{bottom:321.741938pt;}
.y22{bottom:326.405243pt;}
.y20{bottom:328.965243pt;}
.y11{bottom:331.125243pt;}
.y37{bottom:332.965243pt;}
.y17{bottom:353.965244pt;}
.y1{bottom:355.548448pt;}
.ye{bottom:359.562411pt;}
.y9{bottom:359.741939pt;}
.y10{bottom:383.125248pt;}
.y1f{bottom:384.405245pt;}
.y16{bottom:386.965245pt;}
.y8{bottom:397.741940pt;}
.y7{bottom:435.741942pt;}
.y39{bottom:462.766302pt;}
.yd{bottom:466.606298pt;}
.he{height:51.343752pt;}
.h11{height:58.989583pt;}
.hd{height:59.901041pt;}
.h3{height:64.875004pt;}
.hf{height:75.843752pt;}
.h9{height:77.015627pt;}
.h2{height:81.093751pt;}
.hb{height:84.270834pt;}
.hc{height:85.625001pt;}
.h8{height:89.851565pt;}
.h4{height:101.125003pt;}
.h6{height:101.367187pt;}
.h1{height:117.979166pt;}
.h12{height:119.802083pt;}
.h7{height:124.080737pt;}
.h10{height:126.406254pt;}
.h5{height:206.789069pt;}
.ha{height:210.843765pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:41.724411pt;}
.xe{left:46.447316pt;}
.x8{left:48.812302pt;}
.x9{left:51.228318pt;}
.x1{left:63.805777pt;}
.x2{left:90.270343pt;}
.x14{left:114.437644pt;}
.xf{left:170.687275pt;}
.xd{left:187.532046pt;}
.x4{left:257.173834pt;}
.x3{left:267.134773pt;}
.x6{left:277.782279pt;}
.x7{left:332.255001pt;}
.xa{left:445.018384pt;}
.xb{left:489.000016pt;}
.xc{left:498.503922pt;}
.x13{left:537.000017pt;}
.x11{left:584.590102pt;}
.x12{left:593.667800pt;}
.x10{left:610.647040pt;}
}




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