
    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_76bc0ee3e284276bd65e946f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.872559;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_4598008e7f32e0ee75619628.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_d6e704d3660eb69e426ad6f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.881836;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_68a65d307362998442f0f7a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_5c2a9b2d1fbe2799760b52e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924805;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_30604316eb3fecdd461512ad.woff2')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_c0e883d12f71149a88ff4b80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687988;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);}
.v2{vertical-align:-64.848000px;}
.v3{vertical-align:-2.892000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:75.660000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:41.366328px;}
.ls1{letter-spacing:83.210328px;}
.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;}
}
.ws4{word-spacing:-65.075796px;}
.ws6{word-spacing:-43.396068px;}
.ws3{word-spacing:-42.009000px;}
.ws0{word-spacing:-33.078264px;}
.ws1{word-spacing:-28.351248px;}
.ws2{word-spacing:-0.168036px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:3440.776806px;}
._d{margin-left:-184.878000px;}
._c{margin-left:-142.869000px;}
._3{margin-left:-26.924328px;}
._6{margin-left:-22.306530px;}
._10{margin-left:-18.389328px;}
._b{margin-left:-15.244962px;}
._8{margin-left:-12.801972px;}
._f{margin-left:-10.719546px;}
._e{margin-left:-9.496950px;}
._a{margin-left:-8.364000px;}
._1{margin-left:-6.731082px;}
._4{margin-left:-5.147298px;}
._0{margin-left:-3.959460px;}
._7{margin-left:-2.870688px;}
._2{margin-left:-1.187838px;}
._5{width:1.343256px;}
._9{width:3.734688px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:108.000000px;}
.fs3{font-size:125.448000px;}
.fs8{font-size:144.054000px;}
.fs2{font-size:146.364000px;}
.fs5{font-size:168.036000px;}
.fs7{font-size:192.018000px;}
.fs4{font-size:216.000000px;}
.fs1{font-size:252.054000px;}
.fs6{font-size:287.946000px;}
.fs0{font-size:395.946000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y34{bottom:0.043500px;}
.y32{bottom:169.738500px;}
.y31{bottom:212.938500px;}
.y30{bottom:256.138500px;}
.y2f{bottom:299.338500px;}
.y2d{bottom:421.837500px;}
.y1a{bottom:992.580000px;}
.y2c{bottom:1099.090500px;}
.y2b{bottom:1225.162500px;}
.y2a{bottom:1300.804500px;}
.y2e{bottom:1316.112000px;}
.y29{bottom:1376.446500px;}
.y28{bottom:1452.090000px;}
.y36{bottom:1475.092500px;}
.y21{bottom:1769.371500px;}
.y20{bottom:1895.442000px;}
.y37{bottom:1958.541000px;}
.y1f{bottom:1971.085500px;}
.y35{bottom:1981.672500px;}
.y1e{bottom:2275.483500px;}
.y1d{bottom:2325.912000px;}
.y1c{bottom:2376.340500px;}
.y27{bottom:2422.771500px;}
.y1b{bottom:2426.769000px;}
.y22{bottom:2568.571500px;}
.y26{bottom:2732.569500px;}
.y17{bottom:2763.099000px;}
.y16{bottom:2821.053000px;}
.y15{bottom:2879.007000px;}
.y33{bottom:2903.838000px;}
.y14{bottom:2936.962500px;}
.y25{bottom:3036.033000px;}
.y19{bottom:3208.620000px;}
.y18{bottom:3266.574000px;}
.y12{bottom:3321.892500px;}
.y11{bottom:3379.846500px;}
.y10{bottom:3437.802000px;}
.yf{bottom:3495.756000px;}
.ye{bottom:3553.710000px;}
.y23{bottom:3650.527500px;}
.y13{bottom:3650.740500px;}
.yd{bottom:3778.341000px;}
.yc{bottom:3836.296500px;}
.yb{bottom:3894.250500px;}
.ya{bottom:3952.204500px;}
.y9{bottom:4010.158500px;}
.y8{bottom:4068.112500px;}
.y7{bottom:4126.068000px;}
.y6{bottom:4184.022000px;}
.y24{bottom:4287.642000px;}
.y5{bottom:4535.754000px;}
.y4{bottom:4610.251500px;}
.y3{bottom:4679.334000px;}
.y2{bottom:4805.532000px;}
.hd{height:0.043500px;}
.he{height:74.302734px;}
.h5{height:88.205625px;}
.hc{height:101.428646px;}
.h9{height:111.996650px;}
.ha{height:118.150312px;}
.h6{height:118.314410px;}
.h7{height:118.478508px;}
.hb{height:135.012656px;}
.h4{height:178.572187px;}
.h8{height:202.462031px;}
.h3{height:278.399531px;}
.h1{height:5102.250000px;}
.h2{height:5102.404500px;}
.h0{height:5102.447244px;}
.w3{width:0.042000px;}
.w1{width:3401.250000px;}
.w2{width:3401.574000px;}
.w0{width:3401.617323px;}
.x0{left:0.000000px;}
.x5{left:94.138500px;}
.xb{left:99.241500px;}
.x11{left:102.982500px;}
.x7{left:104.301000px;}
.x9{left:105.661500px;}
.xa{left:109.615500px;}
.x6{left:119.353500px;}
.x8{left:128.919000px;}
.xe{left:133.936500px;}
.xd{left:138.699000px;}
.xc{left:143.674500px;}
.x1{left:305.206500px;}
.x3{left:851.632500px;}
.x2{left:854.092500px;}
.x4{left:876.195000px;}
.x12{left:1010.650500px;}
.x10{left:1459.530000px;}
.x13{left:1470.628500px;}
.x14{left:1500.136500px;}
.x16{left:2279.268000px;}
.xf{left:2385.099000px;}
.x15{left:2604.586500px;}
@media print{
.v2{vertical-align:-57.642667pt;}
.v3{vertical-align:-2.570667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:67.253333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:36.770069pt;}
.ls1{letter-spacing:73.964736pt;}
.ws4{word-spacing:-57.845152pt;}
.ws6{word-spacing:-38.574283pt;}
.ws3{word-spacing:-37.341333pt;}
.ws0{word-spacing:-29.402901pt;}
.ws1{word-spacing:-25.201109pt;}
.ws2{word-spacing:-0.149365pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3058.468272pt;}
._d{margin-left:-164.336000pt;}
._c{margin-left:-126.994667pt;}
._3{margin-left:-23.932736pt;}
._6{margin-left:-19.828027pt;}
._10{margin-left:-16.346069pt;}
._b{margin-left:-13.551077pt;}
._8{margin-left:-11.379531pt;}
._f{margin-left:-9.528485pt;}
._e{margin-left:-8.441733pt;}
._a{margin-left:-7.434667pt;}
._1{margin-left:-5.983184pt;}
._4{margin-left:-4.575376pt;}
._0{margin-left:-3.519520pt;}
._7{margin-left:-2.551723pt;}
._2{margin-left:-1.055856pt;}
._5{width:1.194005pt;}
._9{width:3.319723pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:111.509333pt;}
.fs8{font-size:128.048000pt;}
.fs2{font-size:130.101333pt;}
.fs5{font-size:149.365333pt;}
.fs7{font-size:170.682667pt;}
.fs4{font-size:192.000000pt;}
.fs1{font-size:224.048000pt;}
.fs6{font-size:255.952000pt;}
.fs0{font-size:351.952000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y34{bottom:0.038667pt;}
.y32{bottom:150.878667pt;}
.y31{bottom:189.278667pt;}
.y30{bottom:227.678667pt;}
.y2f{bottom:266.078667pt;}
.y2d{bottom:374.966667pt;}
.y1a{bottom:882.293333pt;}
.y2c{bottom:976.969333pt;}
.y2b{bottom:1089.033333pt;}
.y2a{bottom:1156.270667pt;}
.y2e{bottom:1169.877333pt;}
.y29{bottom:1223.508000pt;}
.y28{bottom:1290.746667pt;}
.y36{bottom:1311.193333pt;}
.y21{bottom:1572.774667pt;}
.y20{bottom:1684.837333pt;}
.y37{bottom:1740.925333pt;}
.y1f{bottom:1752.076000pt;}
.y35{bottom:1761.486667pt;}
.y1e{bottom:2022.652000pt;}
.y1d{bottom:2067.477333pt;}
.y1c{bottom:2112.302667pt;}
.y27{bottom:2153.574667pt;}
.y1b{bottom:2157.128000pt;}
.y22{bottom:2283.174667pt;}
.y26{bottom:2428.950667pt;}
.y17{bottom:2456.088000pt;}
.y16{bottom:2507.602667pt;}
.y15{bottom:2559.117333pt;}
.y33{bottom:2581.189333pt;}
.y14{bottom:2610.633333pt;}
.y25{bottom:2698.696000pt;}
.y19{bottom:2852.106667pt;}
.y18{bottom:2903.621333pt;}
.y12{bottom:2952.793333pt;}
.y11{bottom:3004.308000pt;}
.y10{bottom:3055.824000pt;}
.yf{bottom:3107.338667pt;}
.ye{bottom:3158.853333pt;}
.y23{bottom:3244.913333pt;}
.y13{bottom:3245.102667pt;}
.yd{bottom:3358.525333pt;}
.yc{bottom:3410.041333pt;}
.yb{bottom:3461.556000pt;}
.ya{bottom:3513.070667pt;}
.y9{bottom:3564.585333pt;}
.y8{bottom:3616.100000pt;}
.y7{bottom:3667.616000pt;}
.y6{bottom:3719.130667pt;}
.y24{bottom:3811.237333pt;}
.y5{bottom:4031.781333pt;}
.y4{bottom:4098.001333pt;}
.y3{bottom:4159.408000pt;}
.y2{bottom:4271.584000pt;}
.hd{height:0.038667pt;}
.he{height:66.046875pt;}
.h5{height:78.405000pt;}
.hc{height:90.158797pt;}
.h9{height:99.552578pt;}
.ha{height:105.022500pt;}
.h6{height:105.168365pt;}
.h7{height:105.314229pt;}
.hb{height:120.011250pt;}
.h4{height:158.730833pt;}
.h8{height:179.966250pt;}
.h3{height:247.466250pt;}
.h1{height:4535.333333pt;}
.h2{height:4535.470667pt;}
.h0{height:4535.508661pt;}
.w3{width:0.037333pt;}
.w1{width:3023.333333pt;}
.w2{width:3023.621333pt;}
.w0{width:3023.659843pt;}
.x0{left:0.000000pt;}
.x5{left:83.678667pt;}
.xb{left:88.214667pt;}
.x11{left:91.540000pt;}
.x7{left:92.712000pt;}
.x9{left:93.921333pt;}
.xa{left:97.436000pt;}
.x6{left:106.092000pt;}
.x8{left:114.594667pt;}
.xe{left:119.054667pt;}
.xd{left:123.288000pt;}
.xc{left:127.710667pt;}
.x1{left:271.294667pt;}
.x3{left:757.006667pt;}
.x2{left:759.193333pt;}
.x4{left:778.840000pt;}
.x12{left:898.356000pt;}
.x10{left:1297.360000pt;}
.x13{left:1307.225333pt;}
.x14{left:1333.454667pt;}
.x16{left:2026.016000pt;}
.xf{left:2120.088000pt;}
.x15{left:2315.188000pt;}
}




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