
    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_0843345f60187d211ace0195.woff')format("woff");}.ff1{font-family:ff1;line-height:1.155000;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_d556f3c4f8f1fc0cf00e3f36.woff')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_b9856def98f5ea4f9b4f5b43.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_de82387afc14e38df017c9ac.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_50d3a77cd4402750b25e359b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.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;}
.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;}
}
.ws0{word-spacing:-24.746760px;}
.ws4{word-spacing:-24.746388px;}
.ws3{word-spacing:-23.504084px;}
.ws1{word-spacing:-21.617639px;}
.ws2{word-spacing:-15.263999px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-7.670194px;}
._8{margin-left:-6.393723px;}
._5{margin-left:-4.712240px;}
._4{margin-left:-3.387901px;}
._0{margin-left:-2.200956px;}
._1{margin-left:-1.180176px;}
._3{width:1.069622px;}
._2{width:2.082060px;}
._7{width:5.291887px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:59.984997px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:101.969996px;}
.fs3{font-size:113.984995px;}
.fs5{font-size:116.728244px;}
.fs0{font-size:116.730000px;}
.fs6{font-size:155.969994px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.000010px;}
.y25{bottom:6.858320px;}
.y19{bottom:6.903320px;}
.y1b{bottom:15.322499px;}
.y16{bottom:30.374956px;}
.y12{bottom:30.374999px;}
.y1a{bottom:35.572499px;}
.yd{bottom:44.999998px;}
.y5{bottom:46.125041px;}
.y3{bottom:57.374998px;}
.y3c{bottom:60.705177px;}
.y8{bottom:64.124997px;}
.y15{bottom:65.249954px;}
.y11{bottom:65.249997px;}
.y3b{bottom:80.955177px;}
.y7{bottom:88.874996px;}
.y2{bottom:97.874996px;}
.y14{bottom:100.124953px;}
.y10{bottom:100.124996px;}
.y17{bottom:104.955116px;}
.yf{bottom:134.999994px;}
.y23{bottom:137.145846px;}
.y1e{bottom:147.708714px;}
.y22{bottom:157.395845px;}
.y1d{bottom:167.958713px;}
.y21{bottom:177.645845px;}
.y1c{bottom:188.208712px;}
.y20{bottom:197.895844px;}
.y24{bottom:216.720001px;}
.y18{bottom:217.800001px;}
.y3a{bottom:282.167484px;}
.y3d{bottom:290.816340px;}
.y38{bottom:314.492495px;}
.y39{bottom:317.042483px;}
.y13{bottom:374.432150px;}
.y31{bottom:387.191324px;}
.y30{bottom:420.641334px;}
.y4{bottom:439.406553px;}
.y6{bottom:453.281388px;}
.yb{bottom:455.658965px;}
.y2a{bottom:477.416284px;}
.ya{bottom:490.533964px;}
.y1{bottom:526.943483px;}
.y2d{bottom:537.581534px;}
.ye{bottom:542.128480px;}
.y35{bottom:542.770509px;}
.y34{bottom:577.645507px;}
.y2e{bottom:592.533037px;}
.y33{bottom:612.520506px;}
.y2b{bottom:654.604558px;}
.y37{bottom:664.663638px;}
.y36{bottom:699.538636px;}
.y2f{bottom:711.818232px;}
.y2c{bottom:733.521634px;}
.y32{bottom:744.402713px;}
.yc{bottom:745.014881px;}
.y29{bottom:824.433759px;}
.y28{bottom:935.664823px;}
.y27{bottom:975.039821px;}
.y26{bottom:1014.414819px;}
.y1f{bottom:1102.247569px;}
.hf{height:34.559999px;}
.h17{height:45.955303px;}
.h16{height:48.767100px;}
.h11{height:53.746557px;}
.he{height:55.726062px;}
.h18{height:56.985747px;}
.h7{height:71.207997px;}
.h9{height:91.365116px;}
.h15{height:94.730126px;}
.h5{height:100.848326px;}
.h13{height:102.130556px;}
.h10{height:108.440539px;}
.h14{height:108.442170px;}
.h4{height:109.125039px;}
.ha{height:110.249974px;}
.hb{height:112.731160px;}
.h3{height:115.445970px;}
.h12{height:144.896124px;}
.hd{height:148.499951px;}
.h6{height:164.249993px;}
.h2{height:175.499993px;}
.hc{height:183.374992px;}
.h8{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w8{width:114.479995px;}
.w2{width:150.749994px;}
.w1{width:175.499993px;}
.w3{width:190.124992px;}
.w7{width:199.439992px;}
.w6{width:787.500039px;}
.w5{width:932.624961px;}
.w4{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x5{left:7.558593px;}
.x8{left:9.369140px;}
.xe{left:18.317802px;}
.x2{left:24.626952px;}
.x7{left:36.843748px;}
.x3{left:38.583983px;}
.xd{left:62.542966px;}
.x16{left:71.874698px;}
.x13{left:73.641614px;}
.x14{left:74.672697px;}
.xb{left:121.412104px;}
.x12{left:174.414730px;}
.x1c{left:182.945900px;}
.x1d{left:197.940040px;}
.x1e{left:271.275974px;}
.x1f{left:286.270120px;}
.x15{left:378.948018px;}
.x11{left:414.675508px;}
.x1{left:432.700690px;}
.x4{left:503.173588px;}
.x10{left:537.867312px;}
.x17{left:714.179294px;}
.x6{left:728.983698px;}
.x1b{left:735.047249px;}
.x18{left:739.790465px;}
.x19{left:748.290569px;}
.x9{left:945.367341px;}
.xf{left:1135.079953px;}
.xa{left:1157.395920px;}
.x1a{left:1246.026728px;}
.xc{left:1302.221106px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-21.997120pt;}
.ws4{word-spacing:-21.996789pt;}
.ws3{word-spacing:-20.892519pt;}
.ws1{word-spacing:-19.215679pt;}
.ws2{word-spacing:-13.567999pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-6.817950pt;}
._8{margin-left:-5.683310pt;}
._5{margin-left:-4.188657pt;}
._4{margin-left:-3.011467pt;}
._0{margin-left:-1.956405pt;}
._1{margin-left:-1.049045pt;}
._3{width:0.950775pt;}
._2{width:1.850720pt;}
._7{width:4.703899pt;}
.fs4{font-size:53.319997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:90.639996pt;}
.fs3{font-size:101.319996pt;}
.fs5{font-size:103.758440pt;}
.fs0{font-size:103.760000pt;}
.fs6{font-size:138.639994pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.000009pt;}
.y25{bottom:6.096285pt;}
.y19{bottom:6.136285pt;}
.y1b{bottom:13.619999pt;}
.y16{bottom:26.999960pt;}
.y12{bottom:26.999999pt;}
.y1a{bottom:31.619999pt;}
.yd{bottom:39.999998pt;}
.y5{bottom:41.000037pt;}
.y3{bottom:50.999998pt;}
.y3c{bottom:53.960158pt;}
.y8{bottom:56.999998pt;}
.y15{bottom:57.999959pt;}
.y11{bottom:57.999998pt;}
.y3b{bottom:71.960157pt;}
.y7{bottom:78.999997pt;}
.y2{bottom:86.999996pt;}
.y14{bottom:88.999958pt;}
.y10{bottom:88.999996pt;}
.y17{bottom:93.293436pt;}
.yf{bottom:119.999995pt;}
.y23{bottom:121.907419pt;}
.y1e{bottom:131.296635pt;}
.y22{bottom:139.907418pt;}
.y1d{bottom:149.296634pt;}
.y21{bottom:157.907417pt;}
.y1c{bottom:167.296633pt;}
.y20{bottom:175.907417pt;}
.y24{bottom:192.640001pt;}
.y18{bottom:193.600001pt;}
.y3a{bottom:250.815542pt;}
.y3d{bottom:258.503413pt;}
.y38{bottom:279.548884pt;}
.y39{bottom:281.815540pt;}
.y13{bottom:332.828578pt;}
.y31{bottom:344.170066pt;}
.y30{bottom:373.903408pt;}
.y4{bottom:390.583602pt;}
.y6{bottom:402.916789pt;}
.yb{bottom:405.030191pt;}
.y2a{bottom:424.370030pt;}
.ya{bottom:436.030190pt;}
.y1{bottom:468.394207pt;}
.y2d{bottom:477.850252pt;}
.ye{bottom:481.891983pt;}
.y35{bottom:482.462674pt;}
.y34{bottom:513.462673pt;}
.y2e{bottom:526.696032pt;}
.y33{bottom:544.462672pt;}
.y2b{bottom:581.870718pt;}
.y37{bottom:590.812123pt;}
.y36{bottom:621.812121pt;}
.y2f{bottom:632.727318pt;}
.y2c{bottom:652.019230pt;}
.y32{bottom:661.691300pt;}
.yc{bottom:662.235450pt;}
.y29{bottom:732.830008pt;}
.y28{bottom:831.702065pt;}
.y27{bottom:866.702063pt;}
.y26{bottom:901.702062pt;}
.y1f{bottom:979.775617pt;}
.hf{height:30.719999pt;}
.h17{height:40.849158pt;}
.h16{height:43.348533pt;}
.h11{height:47.774718pt;}
.he{height:49.534278pt;}
.h18{height:50.653998pt;}
.h7{height:63.295997pt;}
.h9{height:81.213437pt;}
.h15{height:84.204556pt;}
.h5{height:89.642956pt;}
.h13{height:90.782716pt;}
.h10{height:96.391590pt;}
.h14{height:96.393040pt;}
.h4{height:97.000034pt;}
.ha{height:97.999977pt;}
.hb{height:100.205476pt;}
.h3{height:102.618640pt;}
.h12{height:128.796555pt;}
.hd{height:131.999956pt;}
.h6{height:145.999994pt;}
.h2{height:155.999994pt;}
.hc{height:162.999993pt;}
.h8{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w8{width:101.759996pt;}
.w2{width:133.999994pt;}
.w1{width:155.999994pt;}
.w3{width:168.999993pt;}
.w7{width:177.279993pt;}
.w6{width:700.000035pt;}
.w5{width:828.999965pt;}
.w4{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.718750pt;}
.x8{left:8.328125pt;}
.xe{left:16.282491pt;}
.x2{left:21.890624pt;}
.x7{left:32.749999pt;}
.x3{left:34.296874pt;}
.xd{left:55.593748pt;}
.x16{left:63.888621pt;}
.x13{left:65.459213pt;}
.x14{left:66.375731pt;}
.xb{left:107.921871pt;}
.x12{left:155.035315pt;}
.x1c{left:162.618577pt;}
.x1d{left:175.946702pt;}
.x1e{left:241.134199pt;}
.x1f{left:254.462329pt;}
.x15{left:336.842682pt;}
.x11{left:368.600452pt;}
.x1{left:384.622835pt;}
.x4{left:447.265412pt;}
.x10{left:478.104277pt;}
.x17{left:634.826040pt;}
.x6{left:647.985509pt;}
.x1b{left:653.375333pt;}
.x18{left:657.591525pt;}
.x19{left:665.147172pt;}
.x9{left:840.326525pt;}
.xf{left:1008.959958pt;}
.xa{left:1028.796373pt;}
.x1a{left:1107.579314pt;}
.xc{left:1157.529872pt;}
}




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