
    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_f76b9da599f3a3f2ab5c237c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693848;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_403a254bc460efb79616e415.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.237029;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_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.256000;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_1b448e6eeb012562381be26b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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;}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,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;}
}
.ws5{word-spacing:-53.999978px;}
.ws1{word-spacing:-37.975185px;}
.ws6{word-spacing:-27.323989px;}
.ws2{word-spacing:-21.405591px;}
.ws4{word-spacing:-11.423215px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:161.877655px;}
._24{margin-left:-38.707665px;}
._28{margin-left:-35.269246px;}
._23{margin-left:-30.321888px;}
._e{margin-left:-28.919868px;}
._9{margin-left:-27.687529px;}
._7{margin-left:-25.831490px;}
._27{margin-left:-22.237671px;}
._b{margin-left:-20.702512px;}
._25{margin-left:-18.708893px;}
._4{margin-left:-17.121593px;}
._c{margin-left:-15.876594px;}
._26{margin-left:-14.377254px;}
._a{margin-left:-11.526595px;}
._d{margin-left:-9.857876px;}
._21{margin-left:-8.574477px;}
._20{margin-left:-5.740318px;}
._22{margin-left:-4.257538px;}
._8{margin-left:-2.779319px;}
._2{margin-left:-1.402379px;}
._f{width:1.095900px;}
._3{width:2.227259px;}
._5{width:3.808858px;}
._18{width:5.024218px;}
._1b{width:6.147718px;}
._1a{width:7.334817px;}
._17{width:8.702097px;}
._19{width:9.771176px;}
._6{width:11.717875px;}
._1e{width:13.111015px;}
._1f{width:15.116634px;}
._10{width:17.879513px;}
._12{width:19.277392px;}
._1d{width:20.647912px;}
._1c{width:22.723011px;}
._15{width:28.569049px;}
._14{width:29.645268px;}
._16{width:30.717768px;}
._11{width:34.611766px;}
._13{width:35.946286px;}
._0{width:919.427392px;}
._1{width:1260.913004px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs7{font-size:53.999978px;}
.fs6{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs4{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y3{bottom:74.279970px;}
.y2{bottom:97.679961px;}
.y27{bottom:154.559938px;}
.y26{bottom:174.359930px;}
.y25{bottom:209.279916px;}
.y24{bottom:229.079908px;}
.y23{bottom:248.879900px;}
.y22{bottom:268.679893px;}
.y21{bottom:288.479885px;}
.y20{bottom:323.399871px;}
.y1f{bottom:343.199863px;}
.y1e{bottom:362.999855px;}
.y1d{bottom:382.979847px;}
.y1c{bottom:402.779839px;}
.y1b{bottom:422.579831px;}
.y1a{bottom:457.499817px;}
.y19{bottom:477.299809px;}
.y18{bottom:497.099801px;}
.y17{bottom:516.899793px;}
.y16{bottom:536.699785px;}
.y15{bottom:556.679777px;}
.y14{bottom:591.419763px;}
.y13{bottom:611.219756px;}
.y12{bottom:631.199748px;}
.y11{bottom:650.999740px;}
.y10{bottom:670.799732px;}
.yf{bottom:690.599724px;}
.ye{bottom:710.399716px;}
.yd{bottom:745.319702px;}
.y36{bottom:745.499702px;}
.y35{bottom:776.999689px;}
.yc{bottom:780.239688px;}
.y34{bottom:808.319677px;}
.yb{bottom:815.519674px;}
.y33{bottom:839.819664px;}
.ya{bottom:859.979656px;}
.y32{bottom:871.139652px;}
.y31{bottom:887.519645px;}
.y30{bottom:903.899638px;}
.y9{bottom:904.259638px;}
.y2f{bottom:920.279632px;}
.y8{bottom:950.879620px;}
.y2e{bottom:955.199618px;}
.y7{bottom:988.859604px;}
.y2d{bottom:990.479604px;}
.y2c{bottom:1027.019589px;}
.y6{bottom:1042.859583px;}
.y2b{bottom:1046.819581px;}
.y2a{bottom:1066.619573px;}
.y5{bottom:1078.499569px;}
.y29{bottom:1101.539559px;}
.y4{bottom:1118.279553px;}
.y28{bottom:1121.339551px;}
.y1{bottom:1164.899534px;}
.hb{height:36.966782px;}
.h4{height:39.797264px;}
.hc{height:44.191389px;}
.h1{height:45.345919px;}
.h3{height:45.972702px;}
.h2{height:49.359355px;}
.h9{height:56.712217px;}
.ha{height:56.951257px;}
.h8{height:62.861735px;}
.h7{height:68.327973px;}
.h5{height:74.039033px;}
.h6{height:79.943728px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:95.760408px;}
.x7{left:106.739957px;}
.x5{left:113.939954px;}
.x1{left:181.259927px;}
.x6{left:350.999860px;}
.x3{left:441.179824px;}
.x4{left:631.259747px;}
.x8{left:764.279694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-47.999981pt;}
.ws1{word-spacing:-33.755720pt;}
.ws6{word-spacing:-24.287990pt;}
.ws2{word-spacing:-19.027192pt;}
.ws4{word-spacing:-10.153969pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:143.891249pt;}
._24{margin-left:-34.406813pt;}
._28{margin-left:-31.350441pt;}
._23{margin-left:-26.952789pt;}
._e{margin-left:-25.706550pt;}
._9{margin-left:-24.611137pt;}
._7{margin-left:-22.961324pt;}
._27{margin-left:-19.766819pt;}
._b{margin-left:-18.402233pt;}
._25{margin-left:-16.630127pt;}
._4{margin-left:-15.219194pt;}
._c{margin-left:-14.112528pt;}
._26{margin-left:-12.779782pt;}
._a{margin-left:-10.245863pt;}
._d{margin-left:-8.762556pt;}
._21{margin-left:-7.621757pt;}
._20{margin-left:-5.102505pt;}
._22{margin-left:-3.784478pt;}
._8{margin-left:-2.470506pt;}
._2{margin-left:-1.246560pt;}
._f{width:0.974133pt;}
._3{width:1.979786pt;}
._5{width:3.385652pt;}
._18{width:4.465972pt;}
._1b{width:5.464638pt;}
._1a{width:6.519837pt;}
._17{width:7.735197pt;}
._19{width:8.685490pt;}
._6{width:10.415889pt;}
._1e{width:11.654235pt;}
._1f{width:13.437008pt;}
._10{width:15.892900pt;}
._12{width:17.135460pt;}
._1d{width:18.353699pt;}
._1c{width:20.198232pt;}
._15{width:25.394710pt;}
._14{width:26.351349pt;}
._16{width:27.304682pt;}
._11{width:30.766014pt;}
._13{width:31.952254pt;}
._0{width:817.268793pt;}
._1{width:1120.811559pt;}
.fs3{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs7{font-size:47.999981pt;}
.fs6{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs4{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:66.026640pt;}
.y2{bottom:86.826632pt;}
.y27{bottom:137.386612pt;}
.y26{bottom:154.986605pt;}
.y25{bottom:186.026592pt;}
.y24{bottom:203.626585pt;}
.y23{bottom:221.226578pt;}
.y22{bottom:238.826571pt;}
.y21{bottom:256.426564pt;}
.y20{bottom:287.466552pt;}
.y1f{bottom:305.066545pt;}
.y1e{bottom:322.666538pt;}
.y1d{bottom:340.426530pt;}
.y1c{bottom:358.026523pt;}
.y1b{bottom:375.626516pt;}
.y1a{bottom:406.666504pt;}
.y19{bottom:424.266497pt;}
.y18{bottom:441.866490pt;}
.y17{bottom:459.466483pt;}
.y16{bottom:477.066476pt;}
.y15{bottom:494.826469pt;}
.y14{bottom:525.706456pt;}
.y13{bottom:543.306449pt;}
.y12{bottom:561.066442pt;}
.y11{bottom:578.666435pt;}
.y10{bottom:596.266428pt;}
.yf{bottom:613.866421pt;}
.ye{bottom:631.466414pt;}
.yd{bottom:662.506402pt;}
.y36{bottom:662.666402pt;}
.y35{bottom:690.666390pt;}
.yc{bottom:693.546389pt;}
.y34{bottom:718.506379pt;}
.yb{bottom:724.906377pt;}
.y33{bottom:746.506368pt;}
.ya{bottom:764.426361pt;}
.y32{bottom:774.346357pt;}
.y31{bottom:788.906351pt;}
.y30{bottom:803.466345pt;}
.y9{bottom:803.786345pt;}
.y2f{bottom:818.026339pt;}
.y8{bottom:845.226329pt;}
.y2e{bottom:849.066327pt;}
.y7{bottom:878.986315pt;}
.y2d{bottom:880.426314pt;}
.y2c{bottom:912.906302pt;}
.y6{bottom:926.986296pt;}
.y2b{bottom:930.506294pt;}
.y2a{bottom:948.106287pt;}
.y5{bottom:958.666283pt;}
.y29{bottom:979.146275pt;}
.y4{bottom:994.026269pt;}
.y28{bottom:996.746268pt;}
.y1{bottom:1035.466252pt;}
.hb{height:32.859362pt;}
.h4{height:35.375346pt;}
.hc{height:39.281234pt;}
.h1{height:40.307484pt;}
.h3{height:40.864624pt;}
.h2{height:43.874982pt;}
.h9{height:50.410860pt;}
.ha{height:50.623340pt;}
.h8{height:55.877098pt;}
.h7{height:60.735976pt;}
.h5{height:65.812474pt;}
.h6{height:71.061092pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:85.120363pt;}
.x7{left:94.879962pt;}
.x5{left:101.279959pt;}
.x1{left:161.119936pt;}
.x6{left:311.999875pt;}
.x3{left:392.159843pt;}
.x4{left:561.119776pt;}
.x8{left:679.359728pt;}
}




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