
    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_3e547a9e5d1f62c7cf545ddf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_19943e031e83109ee155752c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_81c64a9bc0698514fe2c47e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_dba987bf1148866b47c42f9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_eabee5c0b33a4225963aaf2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_1bf1eb16200eb1920880d68f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_200dd9226e590bec4cc2c273.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.705000;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_2d19bcd32e6fd66b5235b0a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.701000;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);}
.v1{vertical-align:-23.041380px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:21.286192px;}
.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;}
}
.wsa{word-spacing:-29.887920px;}
.ws6{word-spacing:-26.899140px;}
.ws1{word-spacing:-21.719500px;}
.ws0{word-spacing:-21.525930px;}
.ws2{word-spacing:-12.895046px;}
.ws5{word-spacing:-12.722461px;}
.wsb{word-spacing:-7.690194px;}
.ws1a{word-spacing:-0.059776px;}
.ws26{word-spacing:0.000000px;}
.ws24{word-spacing:12.125589px;}
.ws13{word-spacing:12.843736px;}
.ws10{word-spacing:12.845469px;}
.ws12{word-spacing:15.239372px;}
.wsc{word-spacing:15.413200px;}
.wsf{word-spacing:15.821170px;}
.ws20{word-spacing:16.445230px;}
.ws1b{word-spacing:17.427586px;}
.ws3{word-spacing:17.733688px;}
.ws4{word-spacing:17.840317px;}
.ws23{word-spacing:18.327990px;}
.ws9{word-spacing:18.604094px;}
.ws14{word-spacing:18.869081px;}
.ws16{word-spacing:19.011825px;}
.ws25{word-spacing:19.149011px;}
.ws11{word-spacing:20.451825px;}
.wsd{word-spacing:21.483676px;}
.ws7{word-spacing:21.638854px;}
.ws22{word-spacing:21.927990px;}
.ws19{word-spacing:22.259746px;}
.ws15{word-spacing:22.749131px;}
.ws21{word-spacing:22.924632px;}
.ws18{word-spacing:23.643736px;}
.wse{word-spacing:24.364154px;}
.ws1c{word-spacing:24.365469px;}
.ws17{word-spacing:25.239691px;}
.ws8{word-spacing:25.318774px;}
.ws1f{word-spacing:25.804094px;}
.ws1e{word-spacing:25.804513px;}
.ws1d{word-spacing:27.964573px;}
._17{margin-left:-30.262126px;}
._1c{margin-left:-29.001814px;}
._a{margin-left:-27.147292px;}
._c{margin-left:-20.907191px;}
._0{margin-left:-7.696203px;}
._7{margin-left:-6.475481px;}
._1b{margin-left:-5.354700px;}
._11{margin-left:-4.261910px;}
._4{margin-left:-2.466933px;}
._8{margin-left:-1.117900px;}
._1{width:1.159788px;}
._3{width:2.619262px;}
._1a{width:4.538019px;}
._12{width:14.232813px;}
._13{width:15.303040px;}
._f{width:16.558602px;}
._14{width:17.752398px;}
._9{width:19.609627px;}
._e{width:20.743114px;}
._d{width:22.905554px;}
._6{width:24.695841px;}
._b{width:26.378265px;}
._15{width:27.388032px;}
._5{width:30.929339px;}
._2{width:32.600084px;}
._10{width:36.019659px;}
._18{width:40.677961px;}
._16{width:42.355278px;}
._19{width:43.945988px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:35.865480px;}
.fs3{font-size:53.798280px;}
.fs4{font-size:59.775840px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:135.689745px;}
.y25{bottom:235.409895px;}
.y24{bottom:253.409895px;}
.y23{bottom:271.409895px;}
.y22{bottom:289.229445px;}
.y21{bottom:307.229445px;}
.y20{bottom:325.229445px;}
.y1f{bottom:343.049595px;}
.y1e{bottom:361.049595px;}
.y1d{bottom:378.869745px;}
.y1c{bottom:396.869745px;}
.y1b{bottom:414.869745px;}
.y1a{bottom:432.689895px;}
.y19{bottom:459.689895px;}
.y18{bottom:477.510045px;}
.y17{bottom:495.510045px;}
.y16{bottom:513.510045px;}
.y15{bottom:531.329595px;}
.y14{bottom:549.329595px;}
.y13{bottom:567.329595px;}
.y12{bottom:585.149745px;}
.y11{bottom:603.149745px;}
.y10{bottom:620.969895px;}
.yf{bottom:638.969895px;}
.ye{bottom:656.969895px;}
.yd{bottom:674.790045px;}
.yc{bottom:692.790045px;}
.yb{bottom:710.790045px;}
.ya{bottom:728.610195px;}
.y9{bottom:746.610195px;}
.y8{bottom:764.429745px;}
.y7{bottom:789.449895px;}
.y6{bottom:843.270045px;}
.y5{bottom:884.129805px;}
.y4{bottom:905.010300px;}
.y3{bottom:920.310300px;}
.y2{bottom:963.509700px;}
.y1{bottom:996.450000px;}
.h3{height:23.850544px;}
.h4{height:37.658796px;}
.h6{height:41.544209px;}
.h5{height:44.831880px;}
.h2{height:50.498765px;}
.h1{height:71.684926px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:187.199865px;}
.x1{left:190.260000px;}
.x4{left:196.200165px;}
.xb{left:209.699865px;}
.x9{left:224.640165px;}
.x5{left:229.320165px;}
.x8{left:245.340165px;}
.x2{left:302.760000px;}
.x3{left:315.540465px;}
.x6{left:379.440165px;}
.x7{left:414.540165px;}
.xc{left:441.179865px;}
@media print{
.v1{vertical-align:-20.481227pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:18.921059pt;}
.wsa{word-spacing:-26.567040pt;}
.ws6{word-spacing:-23.910347pt;}
.ws1{word-spacing:-19.306222pt;}
.ws0{word-spacing:-19.134160pt;}
.ws2{word-spacing:-11.462263pt;}
.ws5{word-spacing:-11.308854pt;}
.wsb{word-spacing:-6.835728pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws26{word-spacing:0.000000pt;}
.ws24{word-spacing:10.778301pt;}
.ws13{word-spacing:11.416654pt;}
.ws10{word-spacing:11.418195pt;}
.ws12{word-spacing:13.546109pt;}
.wsc{word-spacing:13.700623pt;}
.wsf{word-spacing:14.063263pt;}
.ws20{word-spacing:14.617982pt;}
.ws1b{word-spacing:15.491188pt;}
.ws3{word-spacing:15.763279pt;}
.ws4{word-spacing:15.858059pt;}
.ws23{word-spacing:16.291547pt;}
.ws9{word-spacing:16.536973pt;}
.ws14{word-spacing:16.772516pt;}
.ws16{word-spacing:16.899400pt;}
.ws25{word-spacing:17.021343pt;}
.ws11{word-spacing:18.179400pt;}
.wsd{word-spacing:19.096601pt;}
.ws7{word-spacing:19.234537pt;}
.ws22{word-spacing:19.491547pt;}
.ws19{word-spacing:19.786441pt;}
.ws15{word-spacing:20.221449pt;}
.ws21{word-spacing:20.377451pt;}
.ws18{word-spacing:21.016654pt;}
.wse{word-spacing:21.657026pt;}
.ws1c{word-spacing:21.658195pt;}
.ws17{word-spacing:22.435281pt;}
.ws8{word-spacing:22.505577pt;}
.ws1f{word-spacing:22.936973pt;}
.ws1e{word-spacing:22.937345pt;}
.ws1d{word-spacing:24.857398pt;}
._17{margin-left:-26.899667pt;}
._1c{margin-left:-25.779391pt;}
._a{margin-left:-24.130927pt;}
._c{margin-left:-18.584170pt;}
._0{margin-left:-6.841069pt;}
._7{margin-left:-5.755983pt;}
._1b{margin-left:-4.759734pt;}
._11{margin-left:-3.788365pt;}
._4{margin-left:-2.192830pt;}
._8{margin-left:-0.993689pt;}
._1{width:1.030922pt;}
._3{width:2.328233pt;}
._1a{width:4.033795pt;}
._12{width:12.651390pt;}
._13{width:13.602702pt;}
._f{width:14.718757pt;}
._14{width:15.779910pt;}
._9{width:17.430780pt;}
._e{width:18.438323pt;}
._d{width:20.360492pt;}
._6{width:21.951858pt;}
._b{width:23.447347pt;}
._15{width:24.344917pt;}
._5{width:27.492746pt;}
._2{width:28.977853pt;}
._10{width:32.017475pt;}
._18{width:36.158187pt;}
._16{width:37.649136pt;}
._19{width:39.063101pt;}
.fs2{font-size:31.880427pt;}
.fs3{font-size:47.820693pt;}
.fs4{font-size:53.134080pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:120.613107pt;}
.y25{bottom:209.253240pt;}
.y24{bottom:225.253240pt;}
.y23{bottom:241.253240pt;}
.y22{bottom:257.092840pt;}
.y21{bottom:273.092840pt;}
.y20{bottom:289.092840pt;}
.y1f{bottom:304.932973pt;}
.y1e{bottom:320.932973pt;}
.y1d{bottom:336.773107pt;}
.y1c{bottom:352.773107pt;}
.y1b{bottom:368.773107pt;}
.y1a{bottom:384.613240pt;}
.y19{bottom:408.613240pt;}
.y18{bottom:424.453373pt;}
.y17{bottom:440.453373pt;}
.y16{bottom:456.453373pt;}
.y15{bottom:472.292973pt;}
.y14{bottom:488.292973pt;}
.y13{bottom:504.292973pt;}
.y12{bottom:520.133107pt;}
.y11{bottom:536.133107pt;}
.y10{bottom:551.973240pt;}
.yf{bottom:567.973240pt;}
.ye{bottom:583.973240pt;}
.yd{bottom:599.813373pt;}
.yc{bottom:615.813373pt;}
.yb{bottom:631.813373pt;}
.ya{bottom:647.653507pt;}
.y9{bottom:663.653507pt;}
.y8{bottom:679.493107pt;}
.y7{bottom:701.733240pt;}
.y6{bottom:749.573373pt;}
.y5{bottom:785.893160pt;}
.y4{bottom:804.453600pt;}
.y3{bottom:818.053600pt;}
.y2{bottom:856.453067pt;}
.y1{bottom:885.733333pt;}
.h3{height:21.200484pt;}
.h4{height:33.474485pt;}
.h6{height:36.928186pt;}
.h5{height:39.850560pt;}
.h2{height:44.887791pt;}
.h1{height:63.719934pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:166.399880pt;}
.x1{left:169.120000pt;}
.x4{left:174.400147pt;}
.xb{left:186.399880pt;}
.x9{left:199.680147pt;}
.x5{left:203.840147pt;}
.x8{left:218.080147pt;}
.x2{left:269.120000pt;}
.x3{left:280.480413pt;}
.x6{left:337.280147pt;}
.x7{left:368.480147pt;}
.xc{left:392.159880pt;}
}




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