
    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_34cbf0a231dcd5873843710b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_41153a1078321773775f750e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_4bee609ecb912ca50dae8a0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_f3d0daebf1172aa4aa091f1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887091;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_fc21c23f1159eb1ad5cd8192.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_0ddff04b5738cdb46b3b53bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_ecff51dac28c93eedb787ff7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_9f59fa8885597845349d01d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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:ff9;src:url('chunks/assets/font_1bd3526ab45cac199d2368a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_d911e1fd66123cebeb494c07.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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;}
.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;}
}
.wsc{word-spacing:-1.344960px;}
.ws6{word-spacing:-0.161395px;}
.ws28{word-spacing:0.000000px;}
.ws8{word-spacing:0.645581px;}
.wsa{word-spacing:0.699379px;}
.ws0{word-spacing:2.169140px;}
.ws4{word-spacing:2.259533px;}
.wsd{word-spacing:2.313331px;}
.ws13{word-spacing:2.513904px;}
.ws12{word-spacing:2.526298px;}
.ws14{word-spacing:2.528525px;}
.ws9{word-spacing:3.012710px;}
.ws18{word-spacing:3.108331px;}
.ws1d{word-spacing:3.168107px;}
.ws1{word-spacing:3.299635px;}
.wsb{word-spacing:3.389299px;}
.ws24{word-spacing:3.586536px;}
.ws15{word-spacing:3.981082px;}
.ws23{word-spacing:4.254554px;}
.ws3{word-spacing:4.949453px;}
.ws17{word-spacing:5.499355px;}
.ws10{word-spacing:5.595034px;}
.wse{word-spacing:5.648832px;}
.ws22{word-spacing:6.635092px;}
.ws11{word-spacing:6.670435px;}
.ws7{word-spacing:6.671002px;}
.ws2{word-spacing:6.742733px;}
.ws5{word-spacing:7.047590px;}
.wsf{word-spacing:7.101389px;}
.ws16{word-spacing:8.091257px;}
.ws27{word-spacing:8.308808px;}
.ws20{word-spacing:8.428360px;}
.ws1c{word-spacing:8.966340px;}
.ws1b{word-spacing:9.769516px;}
.ws1f{word-spacing:9.875057px;}
.ws26{word-spacing:10.102076px;}
.ws25{word-spacing:12.014896px;}
.ws1e{word-spacing:12.253998px;}
.ws1a{word-spacing:12.791978px;}
.ws19{word-spacing:13.155415px;}
.ws21{word-spacing:13.210408px;}
._10{margin-left:-7.919102px;}
._1{margin-left:-5.810227px;}
._6{margin-left:-4.788044px;}
._4{margin-left:-3.586560px;}
._0{margin-left:-2.582310px;}
._2{margin-left:-1.291175px;}
._3{width:2.223667px;}
._9{width:5.068627px;}
._7{width:14.740762px;}
._d{width:16.569907px;}
._e{width:18.040423px;}
._c{width:19.726080px;}
._a{width:21.681535px;}
._5{width:23.061607px;}
._8{width:25.105894px;}
._12{width:27.616327px;}
._b{width:31.185179px;}
._13{width:36.734978px;}
._11{width:38.588977px;}
._f{width:42.952511px;}
._14{width:56.177094px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y21{bottom:63.168000px;}
.y20{bottom:238.758000px;}
.y1f{bottom:256.690500px;}
.y1e{bottom:286.579500px;}
.y1d{bottom:304.512000px;}
.y1c{bottom:334.399500px;}
.y1b{bottom:352.332000px;}
.y1a{bottom:370.264500px;}
.y19{bottom:400.153500px;}
.y18{bottom:418.086000px;}
.y17{bottom:450.963000px;}
.y16{bottom:468.895500px;}
.y15{bottom:488.995500px;}
.y14{bottom:567.379500px;}
.y13{bottom:583.818000px;}
.y12{bottom:600.256500px;}
.y11{bottom:616.695000px;}
.y10{bottom:633.133500px;}
.yf{bottom:649.572000px;}
.ye{bottom:666.010500px;}
.yd{bottom:682.449000px;}
.yc{bottom:698.887500px;}
.yb{bottom:715.326000px;}
.ya{bottom:731.764500px;}
.y9{bottom:748.201500px;}
.y8{bottom:764.640000px;}
.y7{bottom:781.078500px;}
.y6{bottom:805.737000px;}
.y5{bottom:859.534500px;}
.y4{bottom:894.694500px;}
.y3{bottom:915.616500px;}
.y2{bottom:966.426000px;}
.y1{bottom:987.348000px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.h8{height:44.831700px;}
.h4{height:49.716243px;}
.h3{height:50.211840px;}
.h2{height:50.498765px;}
.h7{height:60.254040px;}
.h1{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xb{left:126.261000px;}
.xa{left:130.416000px;}
.x7{left:145.360500px;}
.x8{left:165.534000px;}
.x2{left:212.119500px;}
.x3{left:342.321000px;}
.x1{left:366.088500px;}
.x4{left:367.911000px;}
.x5{left:386.434500px;}
.x6{left:428.563500px;}
.xc{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-1.195520pt;}
.ws6{word-spacing:-0.143462pt;}
.ws28{word-spacing:0.000000pt;}
.ws8{word-spacing:0.573850pt;}
.wsa{word-spacing:0.621670pt;}
.ws0{word-spacing:1.928125pt;}
.ws4{word-spacing:2.008474pt;}
.wsd{word-spacing:2.056294pt;}
.ws13{word-spacing:2.234581pt;}
.ws12{word-spacing:2.245598pt;}
.ws14{word-spacing:2.247578pt;}
.ws9{word-spacing:2.677965pt;}
.ws18{word-spacing:2.762961pt;}
.ws1d{word-spacing:2.816095pt;}
.ws1{word-spacing:2.933009pt;}
.wsb{word-spacing:3.012710pt;}
.ws24{word-spacing:3.188032pt;}
.ws15{word-spacing:3.538739pt;}
.ws23{word-spacing:3.781826pt;}
.ws3{word-spacing:4.399514pt;}
.ws17{word-spacing:4.888316pt;}
.ws10{word-spacing:4.973363pt;}
.wse{word-spacing:5.021184pt;}
.ws22{word-spacing:5.897859pt;}
.ws11{word-spacing:5.929276pt;}
.ws7{word-spacing:5.929779pt;}
.ws2{word-spacing:5.993540pt;}
.ws5{word-spacing:6.264525pt;}
.wsf{word-spacing:6.312346pt;}
.ws16{word-spacing:7.192228pt;}
.ws27{word-spacing:7.385607pt;}
.ws20{word-spacing:7.491875pt;}
.ws1c{word-spacing:7.970080pt;}
.ws1b{word-spacing:8.684014pt;}
.ws1f{word-spacing:8.777828pt;}
.ws26{word-spacing:8.979623pt;}
.ws25{word-spacing:10.679907pt;}
.ws1e{word-spacing:10.892443pt;}
.ws1a{word-spacing:11.370647pt;}
.ws19{word-spacing:11.693702pt;}
.ws21{word-spacing:11.742585pt;}
._10{margin-left:-7.039202pt;}
._1{margin-left:-5.164646pt;}
._6{margin-left:-4.256039pt;}
._4{margin-left:-3.188053pt;}
._0{margin-left:-2.295387pt;}
._2{margin-left:-1.147711pt;}
._3{width:1.976593pt;}
._9{width:4.505446pt;}
._7{width:13.102899pt;}
._d{width:14.728806pt;}
._e{width:16.035932pt;}
._c{width:17.534293pt;}
._a{width:19.272476pt;}
._5{width:20.499206pt;}
._8{width:22.316350pt;}
._12{width:24.547846pt;}
._b{width:27.720159pt;}
._13{width:32.653314pt;}
._11{width:34.301313pt;}
._f{width:38.180010pt;}
._14{width:49.935195pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:56.149333pt;}
.y20{bottom:212.229333pt;}
.y1f{bottom:228.169333pt;}
.y1e{bottom:254.737333pt;}
.y1d{bottom:270.677333pt;}
.y1c{bottom:297.244000pt;}
.y1b{bottom:313.184000pt;}
.y1a{bottom:329.124000pt;}
.y19{bottom:355.692000pt;}
.y18{bottom:371.632000pt;}
.y17{bottom:400.856000pt;}
.y16{bottom:416.796000pt;}
.y15{bottom:434.662667pt;}
.y14{bottom:504.337333pt;}
.y13{bottom:518.949333pt;}
.y12{bottom:533.561333pt;}
.y11{bottom:548.173333pt;}
.y10{bottom:562.785333pt;}
.yf{bottom:577.397333pt;}
.ye{bottom:592.009333pt;}
.yd{bottom:606.621333pt;}
.yc{bottom:621.233333pt;}
.yb{bottom:635.845333pt;}
.ya{bottom:650.457333pt;}
.y9{bottom:665.068000pt;}
.y8{bottom:679.680000pt;}
.y7{bottom:694.292000pt;}
.y6{bottom:716.210667pt;}
.y5{bottom:764.030667pt;}
.y4{bottom:795.284000pt;}
.y3{bottom:813.881333pt;}
.y2{bottom:859.045333pt;}
.y1{bottom:877.642667pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.h8{height:39.850400pt;}
.h4{height:44.192216pt;}
.h3{height:44.632747pt;}
.h2{height:44.887791pt;}
.h7{height:53.559147pt;}
.h1{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xb{left:112.232000pt;}
.xa{left:115.925333pt;}
.x7{left:129.209333pt;}
.x8{left:147.141333pt;}
.x2{left:188.550667pt;}
.x3{left:304.285333pt;}
.x1{left:325.412000pt;}
.x4{left:327.032000pt;}
.x5{left:343.497333pt;}
.x6{left:380.945333pt;}
.xc{left:404.678667pt;}
}




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