
    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_f7c9e339f62165eda6190234.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_2129be99972b602e63bbc34d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_29595c22d41a613e90d665ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_e4c41d6cdb5da80e3e84379c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.680664;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.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.m1{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);}
.m2{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;}
}
.ws4{word-spacing:-21.000000px;}
.ws0{word-spacing:-18.634928px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:31.128000px;}
._f{margin-left:-908.368008px;}
._1b{margin-left:-831.010709px;}
._18{margin-left:-715.344000px;}
._11{margin-left:-596.133336px;}
._1d{margin-left:-575.449965px;}
._13{margin-left:-93.749334px;}
._1a{margin-left:-34.248000px;}
._3{margin-left:-6.802481px;}
._16{margin-left:-5.689616px;}
._9{margin-left:-3.960000px;}
._5{margin-left:-2.778216px;}
._1{margin-left:-1.677144px;}
._2{width:1.565334px;}
._4{width:2.651612px;}
._0{width:3.689716px;}
._d{width:4.954091px;}
._6{width:6.624000px;}
._7{width:7.632000px;}
._8{width:8.857007px;}
._a{width:10.373142px;}
._c{width:12.354666px;}
._b{width:13.794216px;}
._17{width:15.840000px;}
._e{width:19.726934px;}
._15{width:23.260017px;}
._20{width:24.688002px;}
._1f{width:30.849981px;}
._14{width:57.528000px;}
._1e{width:539.928000px;}
._12{width:560.952000px;}
._19{width:679.752000px;}
._1c{width:796.752000px;}
._10{width:872.928000px;}
.fc2{color:rgb(23,34,43);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:72.000000px;}
.fs0{font-size:74.539714px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:111.809571px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y29{bottom:97.741500px;}
.y28{bottom:120.991500px;}
.y52{bottom:140.641500px;}
.y27{bottom:144.241500px;}
.y51{bottom:163.891500px;}
.y26{bottom:167.491500px;}
.y50{bottom:187.141500px;}
.y25{bottom:190.741500px;}
.y4f{bottom:210.391500px;}
.y24{bottom:213.991500px;}
.y4e{bottom:233.641500px;}
.y23{bottom:237.241500px;}
.y5c{bottom:241.741500px;}
.y4d{bottom:256.891500px;}
.y22{bottom:260.491500px;}
.y4c{bottom:280.141500px;}
.y21{bottom:283.741500px;}
.y4b{bottom:303.391500px;}
.y20{bottom:306.991500px;}
.y1f{bottom:337.141500px;}
.y4a{bottom:360.391500px;}
.y1e{bottom:373.441500px;}
.y49{bottom:383.641500px;}
.y1d{bottom:396.691500px;}
.y48{bottom:406.891500px;}
.y1c{bottom:419.941500px;}
.y47{bottom:440.641500px;}
.y1b{bottom:443.191500px;}
.y46{bottom:463.891500px;}
.y1a{bottom:466.441500px;}
.y45{bottom:487.141500px;}
.y19{bottom:489.691500px;}
.y44{bottom:511.741500px;}
.y18{bottom:523.441500px;}
.y43{bottom:534.991500px;}
.y17{bottom:546.691500px;}
.y42{bottom:558.241500px;}
.y16{bottom:569.941500px;}
.y41{bottom:582.691500px;}
.y15{bottom:593.191500px;}
.y40{bottom:605.941500px;}
.y14{bottom:616.441500px;}
.y3f{bottom:630.541500px;}
.y13{bottom:639.691500px;}
.y3e{bottom:653.791500px;}
.y12{bottom:662.941500px;}
.y3d{bottom:678.241500px;}
.y11{bottom:686.191500px;}
.y3c{bottom:701.491500px;}
.y10{bottom:719.941500px;}
.y3b{bottom:736.591500px;}
.yf{bottom:743.191500px;}
.y3a{bottom:759.841500px;}
.ye{bottom:766.441500px;}
.y39{bottom:783.091500px;}
.yd{bottom:789.691500px;}
.y38{bottom:806.341500px;}
.yc{bottom:812.941500px;}
.y37{bottom:829.591500px;}
.y5b{bottom:834.841500px;}
.yb{bottom:846.691500px;}
.y36{bottom:852.841500px;}
.ya{bottom:869.941500px;}
.y5a{bottom:875.341500px;}
.y35{bottom:876.091500px;}
.y9{bottom:893.191500px;}
.y59{bottom:895.591500px;}
.y34{bottom:906.091500px;}
.y8{bottom:916.441500px;}
.y58{bottom:936.091500px;}
.y7{bottom:939.691500px;}
.y33{bottom:942.391500px;}
.y57{bottom:956.341500px;}
.y6{bottom:962.941500px;}
.y32{bottom:965.641500px;}
.y5{bottom:986.191500px;}
.y31{bottom:988.891500px;}
.y56{bottom:996.841500px;}
.y30{bottom:1012.141500px;}
.y4{bottom:1021.291500px;}
.y2f{bottom:1035.391500px;}
.y55{bottom:1038.091500px;}
.y2e{bottom:1058.641500px;}
.y3{bottom:1066.741500px;}
.y2d{bottom:1092.391500px;}
.y2c{bottom:1115.641500px;}
.y54{bottom:1121.641500px;}
.y2{bottom:1135.141500px;}
.y2b{bottom:1138.891500px;}
.y53{bottom:1141.891500px;}
.y2a{bottom:1162.141500px;}
.h6{height:60.257812px;}
.h7{height:60.328125px;}
.h3{height:62.456127px;}
.h5{height:70.382812px;}
.h4{height:93.684191px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x2{left:117.000000px;}
.x3{left:138.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-18.666667pt;}
.ws0{word-spacing:-16.564381pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:27.669333pt;}
._f{margin-left:-807.438229pt;}
._1b{margin-left:-738.676186pt;}
._18{margin-left:-635.861333pt;}
._11{margin-left:-529.896299pt;}
._1d{margin-left:-511.511080pt;}
._13{margin-left:-83.332741pt;}
._1a{margin-left:-30.442667pt;}
._3{margin-left:-6.046650pt;}
._16{margin-left:-5.057436pt;}
._9{margin-left:-3.520000pt;}
._5{margin-left:-2.469526pt;}
._1{margin-left:-1.490794pt;}
._2{width:1.391408pt;}
._4{width:2.356989pt;}
._0{width:3.279747pt;}
._d{width:4.403636pt;}
._6{width:5.888000pt;}
._7{width:6.784000pt;}
._8{width:7.872895pt;}
._a{width:9.220570pt;}
._c{width:10.981925pt;}
._b{width:12.261526pt;}
._17{width:14.080000pt;}
._e{width:17.535052pt;}
._15{width:20.675570pt;}
._20{width:21.944891pt;}
._1f{width:27.422205pt;}
._14{width:51.136000pt;}
._1e{width:479.936000pt;}
._12{width:498.624000pt;}
._19{width:604.224000pt;}
._1c{width:708.224000pt;}
._10{width:775.936000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:66.257523pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:99.386285pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y29{bottom:86.881333pt;}
.y28{bottom:107.548000pt;}
.y52{bottom:125.014667pt;}
.y27{bottom:128.214667pt;}
.y51{bottom:145.681333pt;}
.y26{bottom:148.881333pt;}
.y50{bottom:166.348000pt;}
.y25{bottom:169.548000pt;}
.y4f{bottom:187.014667pt;}
.y24{bottom:190.214667pt;}
.y4e{bottom:207.681333pt;}
.y23{bottom:210.881333pt;}
.y5c{bottom:214.881333pt;}
.y4d{bottom:228.348000pt;}
.y22{bottom:231.548000pt;}
.y4c{bottom:249.014667pt;}
.y21{bottom:252.214667pt;}
.y4b{bottom:269.681333pt;}
.y20{bottom:272.881333pt;}
.y1f{bottom:299.681333pt;}
.y4a{bottom:320.348000pt;}
.y1e{bottom:331.948000pt;}
.y49{bottom:341.014667pt;}
.y1d{bottom:352.614667pt;}
.y48{bottom:361.681333pt;}
.y1c{bottom:373.281333pt;}
.y47{bottom:391.681333pt;}
.y1b{bottom:393.948000pt;}
.y46{bottom:412.348000pt;}
.y1a{bottom:414.614667pt;}
.y45{bottom:433.014667pt;}
.y19{bottom:435.281333pt;}
.y44{bottom:454.881333pt;}
.y18{bottom:465.281333pt;}
.y43{bottom:475.548000pt;}
.y17{bottom:485.948000pt;}
.y42{bottom:496.214667pt;}
.y16{bottom:506.614667pt;}
.y41{bottom:517.948000pt;}
.y15{bottom:527.281333pt;}
.y40{bottom:538.614667pt;}
.y14{bottom:547.948000pt;}
.y3f{bottom:560.481333pt;}
.y13{bottom:568.614667pt;}
.y3e{bottom:581.148000pt;}
.y12{bottom:589.281333pt;}
.y3d{bottom:602.881333pt;}
.y11{bottom:609.948000pt;}
.y3c{bottom:623.548000pt;}
.y10{bottom:639.948000pt;}
.y3b{bottom:654.748000pt;}
.yf{bottom:660.614667pt;}
.y3a{bottom:675.414667pt;}
.ye{bottom:681.281333pt;}
.y39{bottom:696.081333pt;}
.yd{bottom:701.948000pt;}
.y38{bottom:716.748000pt;}
.yc{bottom:722.614667pt;}
.y37{bottom:737.414667pt;}
.y5b{bottom:742.081333pt;}
.yb{bottom:752.614667pt;}
.y36{bottom:758.081333pt;}
.ya{bottom:773.281333pt;}
.y5a{bottom:778.081333pt;}
.y35{bottom:778.748000pt;}
.y9{bottom:793.948000pt;}
.y59{bottom:796.081333pt;}
.y34{bottom:805.414667pt;}
.y8{bottom:814.614667pt;}
.y58{bottom:832.081333pt;}
.y7{bottom:835.281333pt;}
.y33{bottom:837.681333pt;}
.y57{bottom:850.081333pt;}
.y6{bottom:855.948000pt;}
.y32{bottom:858.348000pt;}
.y5{bottom:876.614667pt;}
.y31{bottom:879.014667pt;}
.y56{bottom:886.081333pt;}
.y30{bottom:899.681333pt;}
.y4{bottom:907.814667pt;}
.y2f{bottom:920.348000pt;}
.y55{bottom:922.748000pt;}
.y2e{bottom:941.014667pt;}
.y3{bottom:948.214667pt;}
.y2d{bottom:971.014667pt;}
.y2c{bottom:991.681333pt;}
.y54{bottom:997.014667pt;}
.y2{bottom:1009.014667pt;}
.y2b{bottom:1012.348000pt;}
.y53{bottom:1015.014667pt;}
.y2a{bottom:1033.014667pt;}
.h6{height:53.562500pt;}
.h7{height:53.625000pt;}
.h3{height:55.516558pt;}
.h5{height:62.562500pt;}
.h4{height:83.274836pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x2{left:104.000000pt;}
.x3{left:122.933333pt;}
}




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