
    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_3b9e924498c410a6d6289a7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_74aed74d38331d6f55e90415.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894531;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_0cda9aeffe35deb8370f8db0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_769a3a15b54a434b80813156.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_ce26c2e2dbba3ecffdcbbe0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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;}
.ls6{letter-spacing:-0.292500px;}
.ls7{letter-spacing:-0.117000px;}
.ls9{letter-spacing:-0.058500px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.058500px;}
.ls1{letter-spacing:0.117000px;}
.ls4{letter-spacing:0.175500px;}
.lsa{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.292500px;}
.lsb{letter-spacing:0.409500px;}
.lsd{letter-spacing:0.526500px;}
.ls3{letter-spacing:0.585000px;}
.lsf{letter-spacing:0.643500px;}
.lse{letter-spacing:0.702000px;}
.ls8{letter-spacing:0.994500px;}
.lsc{letter-spacing:1.755000px;}
.ls0{letter-spacing:10.656000px;}
.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;}
}
.ws1{word-spacing:-14.625000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-14.625000px;}
._2{margin-left:-10.656000px;}
._10{margin-left:-2.281500px;}
._7{margin-left:-1.035000px;}
._9{width:1.426500px;}
._8{width:2.884500px;}
._3{width:4.837500px;}
._a{width:6.079500px;}
._6{width:7.312500px;}
._e{width:8.401500px;}
._4{width:9.868500px;}
._1{width:13.344000px;}
._5{width:22.962000px;}
._f{width:79.834500px;}
._d{width:869.585400px;}
._0{width:880.107000px;}
._c{width:1150.098000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:58.500000px;}
.fs3{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.649550px;}
.y2d{bottom:124.908075px;}
.y58{bottom:126.199725px;}
.y2c{bottom:141.214950px;}
.y57{bottom:142.506600px;}
.y2b{bottom:157.521825px;}
.y56{bottom:158.813475px;}
.y2a{bottom:173.828700px;}
.y55{bottom:175.120350px;}
.y29{bottom:190.135575px;}
.y54{bottom:191.427225px;}
.y28{bottom:206.442450px;}
.y53{bottom:207.734100px;}
.y27{bottom:222.749325px;}
.y52{bottom:224.040975px;}
.y26{bottom:239.056200px;}
.y51{bottom:240.347850px;}
.y25{bottom:255.363075px;}
.y50{bottom:256.654725px;}
.y24{bottom:271.669950px;}
.y4f{bottom:272.961600px;}
.y23{bottom:287.976825px;}
.y4e{bottom:289.268475px;}
.y22{bottom:304.283700px;}
.y4d{bottom:305.575350px;}
.y21{bottom:320.590575px;}
.y4c{bottom:321.882225px;}
.y20{bottom:336.897450px;}
.y4b{bottom:338.189100px;}
.y1f{bottom:353.204325px;}
.y4a{bottom:354.495975px;}
.y1e{bottom:369.511200px;}
.y49{bottom:370.802850px;}
.y1d{bottom:385.818075px;}
.y48{bottom:387.109725px;}
.y1c{bottom:402.124950px;}
.y47{bottom:403.416600px;}
.y1b{bottom:418.431825px;}
.y46{bottom:419.723475px;}
.y1a{bottom:434.738700px;}
.y45{bottom:436.030350px;}
.y19{bottom:451.045575px;}
.y44{bottom:452.337225px;}
.y18{bottom:467.352450px;}
.y43{bottom:468.644100px;}
.y17{bottom:483.659325px;}
.y42{bottom:484.950975px;}
.y16{bottom:499.966200px;}
.y41{bottom:501.257850px;}
.y15{bottom:516.273075px;}
.y40{bottom:517.564725px;}
.y14{bottom:532.579950px;}
.y3f{bottom:533.871600px;}
.y13{bottom:548.886825px;}
.y3e{bottom:550.178475px;}
.y12{bottom:565.193700px;}
.y3d{bottom:566.485350px;}
.y11{bottom:581.500575px;}
.y3c{bottom:582.792225px;}
.y10{bottom:597.807450px;}
.y3b{bottom:599.099100px;}
.yf{bottom:614.114325px;}
.y3a{bottom:615.405975px;}
.ye{bottom:630.421200px;}
.y39{bottom:631.712850px;}
.yd{bottom:646.728075px;}
.y38{bottom:648.019725px;}
.yc{bottom:663.034950px;}
.y37{bottom:664.326600px;}
.yb{bottom:679.341825px;}
.y36{bottom:680.633475px;}
.ya{bottom:695.648700px;}
.y35{bottom:696.940350px;}
.y34{bottom:713.247225px;}
.y33{bottom:729.554100px;}
.y9{bottom:740.879475px;}
.y32{bottom:745.860975px;}
.y8{bottom:758.471850px;}
.y31{bottom:762.167850px;}
.y7{bottom:776.064225px;}
.y30{bottom:778.474725px;}
.y6{bottom:793.656600px;}
.y2f{bottom:794.781600px;}
.y2e{bottom:831.204450px;}
.y3{bottom:835.330050px;}
.y2{bottom:855.706950px;}
.y5{bottom:867.898050px;}
.y4{bottom:881.398050px;}
.h4{height:35.328000px;}
.h9{height:40.133057px;}
.h6{height:44.249268px;}
.h2{height:45.621094px;}
.h8{height:50.988281px;}
.h7{height:52.330078px;}
.h5{height:57.697266px;}
.h3{height:119.736960px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:93.542100px;}
.x5{left:107.148450px;}
.x4{left:119.053950px;}
.x6{left:132.639825px;}
.x3{left:401.928900px;}
.x7{left:473.435100px;}
.x8{left:478.784325px;}
.x2{left:507.059400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.260000pt;}
.ls7{letter-spacing:-0.104000pt;}
.ls9{letter-spacing:-0.052000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.052000pt;}
.ls1{letter-spacing:0.104000pt;}
.ls4{letter-spacing:0.156000pt;}
.lsa{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.260000pt;}
.lsb{letter-spacing:0.364000pt;}
.lsd{letter-spacing:0.468000pt;}
.ls3{letter-spacing:0.520000pt;}
.lsf{letter-spacing:0.572000pt;}
.lse{letter-spacing:0.624000pt;}
.ls8{letter-spacing:0.884000pt;}
.lsc{letter-spacing:1.560000pt;}
.ls0{letter-spacing:9.472000pt;}
.ws1{word-spacing:-13.000000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-13.000000pt;}
._2{margin-left:-9.472000pt;}
._10{margin-left:-2.028000pt;}
._7{margin-left:-0.920000pt;}
._9{width:1.268000pt;}
._8{width:2.564000pt;}
._3{width:4.300000pt;}
._a{width:5.404000pt;}
._6{width:6.500000pt;}
._e{width:7.468000pt;}
._4{width:8.772000pt;}
._1{width:11.861333pt;}
._5{width:20.410667pt;}
._f{width:70.964000pt;}
._d{width:772.964800pt;}
._0{width:782.317333pt;}
._c{width:1022.309333pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:52.000000pt;}
.fs3{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.132933pt;}
.y2d{bottom:111.029400pt;}
.y58{bottom:112.177533pt;}
.y2c{bottom:125.524400pt;}
.y57{bottom:126.672533pt;}
.y2b{bottom:140.019400pt;}
.y56{bottom:141.167533pt;}
.y2a{bottom:154.514400pt;}
.y55{bottom:155.662533pt;}
.y29{bottom:169.009400pt;}
.y54{bottom:170.157533pt;}
.y28{bottom:183.504400pt;}
.y53{bottom:184.652533pt;}
.y27{bottom:197.999400pt;}
.y52{bottom:199.147533pt;}
.y26{bottom:212.494400pt;}
.y51{bottom:213.642533pt;}
.y25{bottom:226.989400pt;}
.y50{bottom:228.137533pt;}
.y24{bottom:241.484400pt;}
.y4f{bottom:242.632533pt;}
.y23{bottom:255.979400pt;}
.y4e{bottom:257.127533pt;}
.y22{bottom:270.474400pt;}
.y4d{bottom:271.622533pt;}
.y21{bottom:284.969400pt;}
.y4c{bottom:286.117533pt;}
.y20{bottom:299.464400pt;}
.y4b{bottom:300.612533pt;}
.y1f{bottom:313.959400pt;}
.y4a{bottom:315.107533pt;}
.y1e{bottom:328.454400pt;}
.y49{bottom:329.602533pt;}
.y1d{bottom:342.949400pt;}
.y48{bottom:344.097533pt;}
.y1c{bottom:357.444400pt;}
.y47{bottom:358.592533pt;}
.y1b{bottom:371.939400pt;}
.y46{bottom:373.087533pt;}
.y1a{bottom:386.434400pt;}
.y45{bottom:387.582533pt;}
.y19{bottom:400.929400pt;}
.y44{bottom:402.077533pt;}
.y18{bottom:415.424400pt;}
.y43{bottom:416.572533pt;}
.y17{bottom:429.919400pt;}
.y42{bottom:431.067533pt;}
.y16{bottom:444.414400pt;}
.y41{bottom:445.562533pt;}
.y15{bottom:458.909400pt;}
.y40{bottom:460.057533pt;}
.y14{bottom:473.404400pt;}
.y3f{bottom:474.552533pt;}
.y13{bottom:487.899400pt;}
.y3e{bottom:489.047533pt;}
.y12{bottom:502.394400pt;}
.y3d{bottom:503.542533pt;}
.y11{bottom:516.889400pt;}
.y3c{bottom:518.037533pt;}
.y10{bottom:531.384400pt;}
.y3b{bottom:532.532533pt;}
.yf{bottom:545.879400pt;}
.y3a{bottom:547.027533pt;}
.ye{bottom:560.374400pt;}
.y39{bottom:561.522533pt;}
.yd{bottom:574.869400pt;}
.y38{bottom:576.017533pt;}
.yc{bottom:589.364400pt;}
.y37{bottom:590.512533pt;}
.yb{bottom:603.859400pt;}
.y36{bottom:605.007533pt;}
.ya{bottom:618.354400pt;}
.y35{bottom:619.502533pt;}
.y34{bottom:633.997533pt;}
.y33{bottom:648.492533pt;}
.y9{bottom:658.559533pt;}
.y32{bottom:662.987533pt;}
.y8{bottom:674.197200pt;}
.y31{bottom:677.482533pt;}
.y7{bottom:689.834867pt;}
.y30{bottom:691.977533pt;}
.y6{bottom:705.472533pt;}
.y2f{bottom:706.472533pt;}
.y2e{bottom:738.848400pt;}
.y3{bottom:742.515600pt;}
.y2{bottom:760.628400pt;}
.y5{bottom:771.464933pt;}
.y4{bottom:783.464933pt;}
.h4{height:31.402667pt;}
.h9{height:35.673828pt;}
.h6{height:39.332682pt;}
.h2{height:40.552083pt;}
.h8{height:45.322917pt;}
.h7{height:46.515625pt;}
.h5{height:51.286458pt;}
.h3{height:106.432853pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:83.148533pt;}
.x5{left:95.243067pt;}
.x4{left:105.825733pt;}
.x6{left:117.902067pt;}
.x3{left:357.270133pt;}
.x7{left:420.831200pt;}
.x8{left:425.586067pt;}
.x2{left:450.719467pt;}
}




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