
    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_0c43a1f3786ea0b1dfc372fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e260a9bbf64d0c56d01e3854.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_775f531c6371e7f380f0b429.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_5abf09f4c8e42e474b0f0d5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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:108.000000px;}
.v2{vertical-align:201.600000px;}
.lse{letter-spacing:-15.960000px;}
.ls9{letter-spacing:-2.736000px;}
.lsc{letter-spacing:-1.044000px;}
.lsa{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.325200px;}
.ls7{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.197400px;}
.ls11{letter-spacing:-0.162600px;}
.ls6{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.098400px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.162600px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls1{letter-spacing:3.888000px;}
.ls2{letter-spacing:5.328000px;}
.ls3{letter-spacing:13.968000px;}
.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;}
}
.wse{word-spacing:-144.000000px;}
.ws8{word-spacing:-78.120000px;}
.ws9{word-spacing:-53.245320px;}
.wsa{word-spacing:-52.398720px;}
.ws7{word-spacing:-52.027920px;}
.wsd{word-spacing:-42.102600px;}
.wsf{word-spacing:-41.841600px;}
.ws10{word-spacing:-41.777400px;}
.wsb{word-spacing:-41.614800px;}
.ws4{word-spacing:-40.464000px;}
.ws3{word-spacing:-40.320000px;}
.ws0{word-spacing:-40.032000px;}
.ws1{word-spacing:-39.888000px;}
.ws2{word-spacing:-39.744000px;}
.ws6{word-spacing:-39.168000px;}
.ws5{word-spacing:-37.296000px;}
.wsc{word-spacing:-24.072000px;}
.ws11{word-spacing:0.000000px;}
._e{margin-left:-18.230400px;}
._7{margin-left:-15.984000px;}
._8{margin-left:-11.232000px;}
._19{margin-left:-9.890640px;}
._2{margin-left:-7.632000px;}
._12{margin-left:-6.039360px;}
._1a{margin-left:-4.533360px;}
._11{margin-left:-3.410640px;}
._0{margin-left:-1.296000px;}
._1{width:1.152000px;}
._3{width:2.592000px;}
._a{width:4.008000px;}
._5{width:6.048000px;}
._6{width:7.128000px;}
._4{width:8.184000px;}
._9{width:9.912000px;}
._c{width:11.604000px;}
._b{width:12.648000px;}
._d{width:14.664000px;}
._13{width:15.792000px;}
._10{width:19.818000px;}
._16{width:23.184000px;}
._15{width:27.396000px;}
._14{width:29.088000px;}
._17{width:76.142640px;}
._f{width:103.255920px;}
._18{width:1211.273760px;}
.fc3{color:rgb(0,84,159);}
.fc2{color:rgb(90,90,90);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.fs5{font-size:192.240000px;}
.fs4{font-size:239.760000px;}
.fs3{font-size:360.000000px;}
.fs2{font-size:455.760000px;}
.y0{bottom:0.000000px;}
.y17{bottom:83.844000px;}
.y5{bottom:86.616000px;}
.y4{bottom:141.336000px;}
.y16{bottom:141.444000px;}
.y3{bottom:174.090000px;}
.y15{bottom:199.050000px;}
.y2{bottom:215.130000px;}
.y1{bottom:256.170000px;}
.y29{bottom:388.005000px;}
.y28{bottom:431.205000px;}
.y27{bottom:474.405000px;}
.y23{bottom:508.605000px;}
.y2a{bottom:525.630000px;}
.y22{bottom:559.005000px;}
.y2b{bottom:1355.250000px;}
.y21{bottom:1487.805000px;}
.y20{bottom:1531.005000px;}
.y1f{bottom:1574.205000px;}
.y1a{bottom:1674.465000px;}
.y1e{bottom:2167.770000px;}
.y1d{bottom:2210.970000px;}
.y1c{bottom:2254.170000px;}
.y25{bottom:2341.980000px;}
.y1b{bottom:2386.695000px;}
.y24{bottom:2392.380000px;}
.y18{bottom:2592.285000px;}
.y26{bottom:3345.510000px;}
.y19{bottom:3349.725000px;}
.yd{bottom:3577.245000px;}
.yc{bottom:3620.490000px;}
.yb{bottom:3663.690000px;}
.ya{bottom:3706.890000px;}
.y9{bottom:3750.090000px;}
.y8{bottom:3793.290000px;}
.y7{bottom:3836.490000px;}
.y6{bottom:3879.690000px;}
.y14{bottom:3970.770000px;}
.y13{bottom:4386.270000px;}
.y12{bottom:4440.270000px;}
.y11{bottom:4493.730000px;}
.y10{bottom:4558.350000px;}
.yf{bottom:4664.370000px;}
.ye{bottom:4792.350000px;}
.h3{height:112.640625px;}
.h2{height:150.187500px;}
.h7{height:154.036055px;}
.ha{height:164.647266px;}
.h8{height:200.500313px;}
.h6{height:300.112383px;}
.h4{height:365.186602px;}
.hb{height:366.247266px;}
.h9{height:375.468750px;}
.h5{height:475.343438px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w2{width:3576.419999px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1{left:67.643999px;}
.x2{left:110.195999px;}
.x4{left:128.339999px;}
.x7{left:130.535999px;}
.x3{left:152.714999px;}
.xa{left:155.189999px;}
.x9{left:162.284999px;}
.x6{left:362.189999px;}
.x8{left:468.644999px;}
.x5{left:859.649999px;}
.xe{left:1910.309999px;}
.xc{left:1965.344999px;}
.xb{left:1973.309999px;}
.xd{left:2121.734999px;}
.xf{left:2214.569999px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:96.000000pt;}
.v2{vertical-align:179.200000pt;}
.lse{letter-spacing:-14.186667pt;}
.ls9{letter-spacing:-2.432000pt;}
.lsc{letter-spacing:-0.928000pt;}
.lsa{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.289067pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.175467pt;}
.ls11{letter-spacing:-0.144533pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.087467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.144533pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls1{letter-spacing:3.456000pt;}
.ls2{letter-spacing:4.736000pt;}
.ls3{letter-spacing:12.416000pt;}
.wse{word-spacing:-128.000000pt;}
.ws8{word-spacing:-69.440000pt;}
.ws9{word-spacing:-47.329173pt;}
.wsa{word-spacing:-46.576640pt;}
.ws7{word-spacing:-46.247040pt;}
.wsd{word-spacing:-37.424533pt;}
.wsf{word-spacing:-37.192533pt;}
.ws10{word-spacing:-37.135467pt;}
.wsb{word-spacing:-36.990933pt;}
.ws4{word-spacing:-35.968000pt;}
.ws3{word-spacing:-35.840000pt;}
.ws0{word-spacing:-35.584000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws2{word-spacing:-35.328000pt;}
.ws6{word-spacing:-34.816000pt;}
.ws5{word-spacing:-33.152000pt;}
.wsc{word-spacing:-21.397333pt;}
.ws11{word-spacing:0.000000pt;}
._e{margin-left:-16.204800pt;}
._7{margin-left:-14.208000pt;}
._8{margin-left:-9.984000pt;}
._19{margin-left:-8.791680pt;}
._2{margin-left:-6.784000pt;}
._12{margin-left:-5.368320pt;}
._1a{margin-left:-4.029653pt;}
._11{margin-left:-3.031680pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.024000pt;}
._3{width:2.304000pt;}
._a{width:3.562667pt;}
._5{width:5.376000pt;}
._6{width:6.336000pt;}
._4{width:7.274667pt;}
._9{width:8.810667pt;}
._c{width:10.314667pt;}
._b{width:11.242667pt;}
._d{width:13.034667pt;}
._13{width:14.037333pt;}
._10{width:17.616000pt;}
._16{width:20.608000pt;}
._15{width:24.352000pt;}
._14{width:25.856000pt;}
._17{width:67.682347pt;}
._f{width:91.783040pt;}
._18{width:1076.687787pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.fs5{font-size:170.880000pt;}
.fs4{font-size:213.120000pt;}
.fs3{font-size:320.000000pt;}
.fs2{font-size:405.120000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:74.528000pt;}
.y5{bottom:76.992000pt;}
.y4{bottom:125.632000pt;}
.y16{bottom:125.728000pt;}
.y3{bottom:154.746667pt;}
.y15{bottom:176.933333pt;}
.y2{bottom:191.226667pt;}
.y1{bottom:227.706667pt;}
.y29{bottom:344.893333pt;}
.y28{bottom:383.293333pt;}
.y27{bottom:421.693333pt;}
.y23{bottom:452.093333pt;}
.y2a{bottom:467.226667pt;}
.y22{bottom:496.893333pt;}
.y2b{bottom:1204.666667pt;}
.y21{bottom:1322.493333pt;}
.y20{bottom:1360.893333pt;}
.y1f{bottom:1399.293333pt;}
.y1a{bottom:1488.413333pt;}
.y1e{bottom:1926.906667pt;}
.y1d{bottom:1965.306667pt;}
.y1c{bottom:2003.706667pt;}
.y25{bottom:2081.760000pt;}
.y1b{bottom:2121.506667pt;}
.y24{bottom:2126.560000pt;}
.y18{bottom:2304.253333pt;}
.y26{bottom:2973.786667pt;}
.y19{bottom:2977.533333pt;}
.yd{bottom:3179.773333pt;}
.yc{bottom:3218.213333pt;}
.yb{bottom:3256.613333pt;}
.ya{bottom:3295.013333pt;}
.y9{bottom:3333.413333pt;}
.y8{bottom:3371.813333pt;}
.y7{bottom:3410.213333pt;}
.y6{bottom:3448.613333pt;}
.y14{bottom:3529.573333pt;}
.y13{bottom:3898.906667pt;}
.y12{bottom:3946.906667pt;}
.y11{bottom:3994.426667pt;}
.y10{bottom:4051.866667pt;}
.yf{bottom:4146.106667pt;}
.ye{bottom:4259.866667pt;}
.h3{height:100.125000pt;}
.h2{height:133.500000pt;}
.h7{height:136.920938pt;}
.ha{height:146.353125pt;}
.h8{height:178.222500pt;}
.h6{height:266.766562pt;}
.h4{height:324.610313pt;}
.hb{height:325.553125pt;}
.h9{height:333.750000pt;}
.h5{height:422.527500pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w2{width:3179.039999pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1{left:60.127999pt;}
.x2{left:97.951999pt;}
.x4{left:114.079999pt;}
.x7{left:116.031999pt;}
.x3{left:135.746665pt;}
.xa{left:137.946665pt;}
.x9{left:144.253332pt;}
.x6{left:321.946665pt;}
.x8{left:416.573332pt;}
.x5{left:764.133332pt;}
.xe{left:1698.053332pt;}
.xc{left:1746.973332pt;}
.xb{left:1754.053332pt;}
.xd{left:1885.986665pt;}
.xf{left:1968.506665pt;}
}




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