
    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_4a542bd2e759c3ddcb1478ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_3fd5195b791bf293e7157a92.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_f8efde4dd4a78be42737a5a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c6abfa284c0c428843e2688d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.198720px;}
.ls1{letter-spacing:0.256200px;}
.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:-15.168960px;}
.ws2{word-spacing:-14.970240px;}
.ws6{word-spacing:-9.925920px;}
.ws9{word-spacing:-2.938320px;}
.ws1{word-spacing:-2.278080px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:105.134040px;}
.ws7{word-spacing:1762.021920px;}
.ws8{word-spacing:1764.141600px;}
.ws0{word-spacing:1974.665760px;}
._2{margin-left:-1.126080px;}
._0{width:1.126080px;}
._3{width:11.562960px;}
._1{width:13.085760px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:43.920000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.500000px;}
.y47{bottom:4.545000px;}
.y4d{bottom:6.660000px;}
.y2{bottom:7.200000px;}
.y5e{bottom:8.100000px;}
.y3f{bottom:8.820000px;}
.y18{bottom:9.900000px;}
.y23{bottom:13.680000px;}
.y1e{bottom:15.480000px;}
.y8{bottom:19.620000px;}
.ye{bottom:26.280000px;}
.y5d{bottom:27.720000px;}
.y4c{bottom:28.440000px;}
.y17{bottom:31.680000px;}
.y22{bottom:35.460000px;}
.y1d{bottom:37.260000px;}
.y35{bottom:48.060000px;}
.y57{bottom:53.100000px;}
.y21{bottom:57.240000px;}
.y53{bottom:70.560000px;}
.y2e{bottom:70.605000px;}
.y56{bottom:74.880000px;}
.y2b{bottom:75.990000px;}
.y52{bottom:92.370000px;}
.y2d{bottom:92.385000px;}
.y5b{bottom:94.494000px;}
.y4a{bottom:95.214000px;}
.y55{bottom:96.660000px;}
.y2a{bottom:97.770000px;}
.y32{bottom:106.776000px;}
.y51{bottom:114.150000px;}
.y1b{bottom:114.885000px;}
.y5a{bottom:116.274000px;}
.y29{bottom:119.550000px;}
.y58{bottom:129.276000px;}
.y4f{bottom:129.996000px;}
.y59{bottom:138.099000px;}
.y28{bottom:141.330000px;}
.y4e{bottom:151.770000px;}
.y5{bottom:159.330000px;}
.y27{bottom:163.110000px;}
.y4b{bottom:173.550000px;}
.y26{bottom:184.890000px;}
.y2c{bottom:203.610000px;}
.y1f{bottom:204.330000px;}
.y25{bottom:206.670000px;}
.y49{bottom:219.270000px;}
.y1c{bottom:226.110000px;}
.y15{bottom:229.185000px;}
.y48{bottom:241.050000px;}
.y46{bottom:262.830000px;}
.y45{bottom:284.655000px;}
.y1a{bottom:291.495000px;}
.y19{bottom:313.275000px;}
.y44{bottom:328.215000px;}
.y43{bottom:349.995000px;}
.y24{bottom:356.115000px;}
.y16{bottom:356.835000px;}
.y3d{bottom:382.749000px;}
.y42{bottom:393.555000px;}
.yc{bottom:403.455000px;}
.y14{bottom:405.795000px;}
.y41{bottom:415.335000px;}
.y13{bottom:427.605000px;}
.y12{bottom:449.385000px;}
.y54{bottom:458.205000px;}
.y40{bottom:458.925000px;}
.y11{bottom:471.165000px;}
.y3e{bottom:480.705000px;}
.y10{bottom:492.945000px;}
.y9{bottom:505.740000px;}
.y3c{bottom:506.805000px;}
.yf{bottom:514.725000px;}
.y3b{bottom:528.585000px;}
.y37{bottom:535.254000px;}
.yd{bottom:536.505000px;}
.y6{bottom:542.640000px;}
.y3a{bottom:550.365000px;}
.y39{bottom:572.145000px;}
.yb{bottom:580.065000px;}
.y38{bottom:615.750000px;}
.y33{bottom:622.374000px;}
.y20{bottom:644.730000px;}
.ya{bottom:645.450000px;}
.y50{bottom:658.590000px;}
.y36{bottom:659.310000px;}
.y34{bottom:681.090000px;}
.y7{bottom:682.350000px;}
.y5c{bottom:701.070000px;}
.y3{bottom:719.250000px;}
.y31{bottom:746.460000px;}
.y1{bottom:762.840000px;}
.y30{bottom:768.240000px;}
.y2f{bottom:790.020000px;}
.h4{height:20.340000px;}
.h9{height:20.376000px;}
.h11{height:24.660000px;}
.h2{height:25.740000px;}
.h8{height:35.460000px;}
.ha{height:42.120000px;}
.h12{height:44.280000px;}
.h16{height:44.676000px;}
.hb{height:47.520000px;}
.h17{height:48.088125px;}
.hc{height:63.936000px;}
.h7{height:65.884219px;}
.h3{height:67.824844px;}
.h5{height:69.264844px;}
.hd{height:73.800000px;}
.hf{height:108.936000px;}
.h14{height:113.220000px;}
.h13{height:130.716000px;}
.h15{height:154.650000px;}
.he{height:223.230000px;}
.h6{height:651.030000px;}
.h10{height:703.590000px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w3{width:454.170000px;}
.w4{width:484.590000px;}
.w5{width:545.115000px;}
.w2{width:1087.890000px;}
.w0{width:1262.700000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:2.160000px;}
.x2{left:28.800000px;}
.x3{left:40.140000px;}
.x4{left:54.360000px;}
.x1{left:77.040000px;}
.x9{left:102.960000px;}
.x5{left:118.290000px;}
.x6{left:193.170000px;}
.x8{left:679.605000px;}
@media print{
.v2{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.176640pt;}
.ls1{letter-spacing:0.227733pt;}
.ws4{word-spacing:-13.483520pt;}
.ws2{word-spacing:-13.306880pt;}
.ws6{word-spacing:-8.823040pt;}
.ws9{word-spacing:-2.611840pt;}
.ws1{word-spacing:-2.024960pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:93.452480pt;}
.ws7{word-spacing:1566.241707pt;}
.ws8{word-spacing:1568.125867pt;}
.ws0{word-spacing:1755.258453pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.000960pt;}
._3{width:10.278187pt;}
._1{width:11.631787pt;}
.fs1{font-size:39.040000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.000000pt;}
.y47{bottom:4.040000pt;}
.y4d{bottom:5.920000pt;}
.y2{bottom:6.400000pt;}
.y5e{bottom:7.200000pt;}
.y3f{bottom:7.840000pt;}
.y18{bottom:8.800000pt;}
.y23{bottom:12.160000pt;}
.y1e{bottom:13.760000pt;}
.y8{bottom:17.440000pt;}
.ye{bottom:23.360000pt;}
.y5d{bottom:24.640000pt;}
.y4c{bottom:25.280000pt;}
.y17{bottom:28.160000pt;}
.y22{bottom:31.520000pt;}
.y1d{bottom:33.120000pt;}
.y35{bottom:42.720000pt;}
.y57{bottom:47.200000pt;}
.y21{bottom:50.880000pt;}
.y53{bottom:62.720000pt;}
.y2e{bottom:62.760000pt;}
.y56{bottom:66.560000pt;}
.y2b{bottom:67.546667pt;}
.y52{bottom:82.106667pt;}
.y2d{bottom:82.120000pt;}
.y5b{bottom:83.994667pt;}
.y4a{bottom:84.634667pt;}
.y55{bottom:85.920000pt;}
.y2a{bottom:86.906667pt;}
.y32{bottom:94.912000pt;}
.y51{bottom:101.466667pt;}
.y1b{bottom:102.120000pt;}
.y5a{bottom:103.354667pt;}
.y29{bottom:106.266667pt;}
.y58{bottom:114.912000pt;}
.y4f{bottom:115.552000pt;}
.y59{bottom:122.754667pt;}
.y28{bottom:125.626667pt;}
.y4e{bottom:134.906667pt;}
.y5{bottom:141.626667pt;}
.y27{bottom:144.986667pt;}
.y4b{bottom:154.266667pt;}
.y26{bottom:164.346667pt;}
.y2c{bottom:180.986667pt;}
.y1f{bottom:181.626667pt;}
.y25{bottom:183.706667pt;}
.y49{bottom:194.906667pt;}
.y1c{bottom:200.986667pt;}
.y15{bottom:203.720000pt;}
.y48{bottom:214.266667pt;}
.y46{bottom:233.626667pt;}
.y45{bottom:253.026667pt;}
.y1a{bottom:259.106667pt;}
.y19{bottom:278.466667pt;}
.y44{bottom:291.746667pt;}
.y43{bottom:311.106667pt;}
.y24{bottom:316.546667pt;}
.y16{bottom:317.186667pt;}
.y3d{bottom:340.221333pt;}
.y42{bottom:349.826667pt;}
.yc{bottom:358.626667pt;}
.y14{bottom:360.706667pt;}
.y41{bottom:369.186667pt;}
.y13{bottom:380.093333pt;}
.y12{bottom:399.453333pt;}
.y54{bottom:407.293333pt;}
.y40{bottom:407.933333pt;}
.y11{bottom:418.813333pt;}
.y3e{bottom:427.293333pt;}
.y10{bottom:438.173333pt;}
.y9{bottom:449.546667pt;}
.y3c{bottom:450.493333pt;}
.yf{bottom:457.533333pt;}
.y3b{bottom:469.853333pt;}
.y37{bottom:475.781333pt;}
.yd{bottom:476.893333pt;}
.y6{bottom:482.346667pt;}
.y3a{bottom:489.213333pt;}
.y39{bottom:508.573333pt;}
.yb{bottom:515.613333pt;}
.y38{bottom:547.333333pt;}
.y33{bottom:553.221333pt;}
.y20{bottom:573.093333pt;}
.ya{bottom:573.733333pt;}
.y50{bottom:585.413333pt;}
.y36{bottom:586.053333pt;}
.y34{bottom:605.413333pt;}
.y7{bottom:606.533333pt;}
.y5c{bottom:623.173333pt;}
.y3{bottom:639.333333pt;}
.y31{bottom:663.520000pt;}
.y1{bottom:678.080000pt;}
.y30{bottom:682.880000pt;}
.y2f{bottom:702.240000pt;}
.h4{height:18.080000pt;}
.h9{height:18.112000pt;}
.h11{height:21.920000pt;}
.h2{height:22.880000pt;}
.h8{height:31.520000pt;}
.ha{height:37.440000pt;}
.h12{height:39.360000pt;}
.h16{height:39.712000pt;}
.hb{height:42.240000pt;}
.h17{height:42.745000pt;}
.hc{height:56.832000pt;}
.h7{height:58.563750pt;}
.h3{height:60.288750pt;}
.h5{height:61.568750pt;}
.hd{height:65.600000pt;}
.hf{height:96.832000pt;}
.h14{height:100.640000pt;}
.h13{height:116.192000pt;}
.h15{height:137.466667pt;}
.he{height:198.426667pt;}
.h6{height:578.693333pt;}
.h10{height:625.413333pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w3{width:403.706667pt;}
.w4{width:430.746667pt;}
.w5{width:484.546667pt;}
.w2{width:967.013333pt;}
.w0{width:1122.400000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:1.920000pt;}
.x2{left:25.600000pt;}
.x3{left:35.680000pt;}
.x4{left:48.320000pt;}
.x1{left:68.480000pt;}
.x9{left:91.520000pt;}
.x5{left:105.146667pt;}
.x6{left:171.706667pt;}
.x8{left:604.093333pt;}
}




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