
    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_9583e1c4b663f39e23efd00a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_b45a4ffbfe8037c657f613f1.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5cd7bb428f16addc0e275263.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,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);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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;}
}
.ws18{word-spacing:-29.887800px;}
.ws1{word-spacing:-16.139475px;}
.ws14{word-spacing:-14.884124px;}
.ws5{word-spacing:-13.449600px;}
.wsd{word-spacing:-13.090856px;}
.ws2{word-spacing:-12.911530px;}
.ws9{word-spacing:-12.373549px;}
.wsb{word-spacing:-12.134447px;}
.ws6{word-spacing:-12.074671px;}
.ws1d{word-spacing:-11.297588px;}
.wsc{word-spacing:-10.341179px;}
.ws17{word-spacing:-10.281403px;}
.ws16{word-spacing:-10.221628px;}
.ws1c{word-spacing:-10.161852px;}
.ws12{word-spacing:-10.102076px;}
.ws10{word-spacing:-10.042301px;}
.ws4{word-spacing:-9.982525px;}
.ws8{word-spacing:-9.922750px;}
.wsf{word-spacing:-9.862974px;}
.ws1b{word-spacing:-9.743423px;}
.ws15{word-spacing:-9.564096px;}
.ws1a{word-spacing:-8.368584px;}
.ws3{word-spacing:-7.711052px;}
.ws20{word-spacing:-7.651277px;}
.ws13{word-spacing:-6.993745px;}
.ws7{word-spacing:-5.738458px;}
.wse{word-spacing:-3.706087px;}
.ws11{word-spacing:-2.510575px;}
.ws19{word-spacing:-1.853044px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:7.876064px;}
.ws1f{word-spacing:26.498284px;}
.ws1e{word-spacing:26.508229px;}
._5{margin-left:-6.742733px;}
._10{margin-left:-5.140702px;}
._b{margin-left:-4.086250px;}
._0{margin-left:-2.668393px;}
._3{margin-left:-1.597183px;}
._7{width:1.281547px;}
._2{width:2.668393px;}
._8{width:19.106683px;}
._9{width:20.959727px;}
._e{width:23.035115px;}
._4{width:26.138695px;}
._a{width:27.778896px;}
._f{width:31.800619px;}
._11{width:35.093028px;}
._c{width:36.429600px;}
._6{width:39.913343px;}
._d{width:51.595844px;}
._1{width:62.492047px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yd{bottom:134.047500px;}
.y2f{bottom:197.104500px;}
.yc{bottom:201.055500px;}
.y2e{bottom:215.037000px;}
.yb{bottom:218.988000px;}
.ya{bottom:236.920500px;}
.y2d{bottom:242.620500px;}
.y9{bottom:254.853000px;}
.y8{bottom:272.785500px;}
.y2c{bottom:284.454000px;}
.y7{bottom:300.370500px;}
.y2b{bottom:302.386500px;}
.y2a{bottom:329.284500px;}
.y6{bottom:342.202500px;}
.y29{bottom:347.218500px;}
.y5{bottom:360.135000px;}
.y28{bottom:365.151000px;}
.y4{bottom:378.067500px;}
.y27{bottom:383.083500px;}
.y3{bottom:396.001500px;}
.y26{bottom:410.667000px;}
.y25{bottom:452.500500px;}
.y36{bottom:454.116000px;}
.y24{bottom:470.433000px;}
.y35{bottom:472.048500px;}
.y23{bottom:488.365500px;}
.y34{bottom:489.981000px;}
.y22{bottom:515.265000px;}
.y21{bottom:533.197500px;}
.y20{bottom:551.130000px;}
.y1f{bottom:569.062500px;}
.y1e{bottom:596.646000px;}
.y1d{bottom:638.479500px;}
.y1c{bottom:656.412000px;}
.y1b{bottom:674.344500px;}
.y1a{bottom:701.244000px;}
.y19{bottom:719.176500px;}
.y18{bottom:737.109000px;}
.y17{bottom:755.041500px;}
.y16{bottom:781.941000px;}
.y15{bottom:799.873500px;}
.y14{bottom:826.773000px;}
.y13{bottom:844.705500px;}
.y12{bottom:862.638000px;}
.y33{bottom:878.256000px;}
.y11{bottom:880.570500px;}
.y32{bottom:905.155500px;}
.y10{bottom:908.155500px;}
.y31{bottom:923.088000px;}
.y30{bottom:941.020500px;}
.yf{bottom:949.987500px;}
.y2{bottom:958.954500px;}
.ye{bottom:967.920000px;}
.y1{bottom:985.852500px;}
.h2{height:42.799330px;}
.h3{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:200.652000px;}
.x2{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws18{word-spacing:-26.566933pt;}
.ws1{word-spacing:-14.346200pt;}
.ws14{word-spacing:-13.230333pt;}
.ws5{word-spacing:-11.955200pt;}
.wsd{word-spacing:-11.636317pt;}
.ws2{word-spacing:-11.476915pt;}
.ws9{word-spacing:-10.998710pt;}
.wsb{word-spacing:-10.786175pt;}
.ws6{word-spacing:-10.733041pt;}
.ws1d{word-spacing:-10.042301pt;}
.wsc{word-spacing:-9.192159pt;}
.ws17{word-spacing:-9.139025pt;}
.ws16{word-spacing:-9.085891pt;}
.ws1c{word-spacing:-9.032757pt;}
.ws12{word-spacing:-8.979623pt;}
.ws10{word-spacing:-8.926490pt;}
.ws4{word-spacing:-8.873356pt;}
.ws8{word-spacing:-8.820222pt;}
.wsf{word-spacing:-8.767088pt;}
.ws1b{word-spacing:-8.660820pt;}
.ws15{word-spacing:-8.501419pt;}
.ws1a{word-spacing:-7.438741pt;}
.ws3{word-spacing:-6.854269pt;}
.ws20{word-spacing:-6.801135pt;}
.ws13{word-spacing:-6.216662pt;}
.ws7{word-spacing:-5.100851pt;}
.wse{word-spacing:-3.294300pt;}
.ws11{word-spacing:-2.231622pt;}
.ws19{word-spacing:-1.647150pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:7.000946pt;}
.ws1f{word-spacing:23.554030pt;}
.ws1e{word-spacing:23.562870pt;}
._5{margin-left:-5.993540pt;}
._10{margin-left:-4.569513pt;}
._b{margin-left:-3.632222pt;}
._0{margin-left:-2.371905pt;}
._3{margin-left:-1.419718pt;}
._7{width:1.139153pt;}
._2{width:2.371905pt;}
._8{width:16.983718pt;}
._9{width:18.630868pt;}
._e{width:20.475658pt;}
._4{width:23.234396pt;}
._a{width:24.692352pt;}
._f{width:28.267217pt;}
._11{width:31.193803pt;}
._c{width:32.381867pt;}
._6{width:35.478527pt;}
._d{width:45.862973pt;}
._1{width:55.548486pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:119.153333pt;}
.y2f{bottom:175.204000pt;}
.yc{bottom:178.716000pt;}
.y2e{bottom:191.144000pt;}
.yb{bottom:194.656000pt;}
.ya{bottom:210.596000pt;}
.y2d{bottom:215.662667pt;}
.y9{bottom:226.536000pt;}
.y8{bottom:242.476000pt;}
.y2c{bottom:252.848000pt;}
.y7{bottom:266.996000pt;}
.y2b{bottom:268.788000pt;}
.y2a{bottom:292.697333pt;}
.y6{bottom:304.180000pt;}
.y29{bottom:308.638667pt;}
.y5{bottom:320.120000pt;}
.y28{bottom:324.578667pt;}
.y4{bottom:336.060000pt;}
.y27{bottom:340.518667pt;}
.y3{bottom:352.001333pt;}
.y26{bottom:365.037333pt;}
.y25{bottom:402.222667pt;}
.y36{bottom:403.658667pt;}
.y24{bottom:418.162667pt;}
.y35{bottom:419.598667pt;}
.y23{bottom:434.102667pt;}
.y34{bottom:435.538667pt;}
.y22{bottom:458.013333pt;}
.y21{bottom:473.953333pt;}
.y20{bottom:489.893333pt;}
.y1f{bottom:505.833333pt;}
.y1e{bottom:530.352000pt;}
.y1d{bottom:567.537333pt;}
.y1c{bottom:583.477333pt;}
.y1b{bottom:599.417333pt;}
.y1a{bottom:623.328000pt;}
.y19{bottom:639.268000pt;}
.y18{bottom:655.208000pt;}
.y17{bottom:671.148000pt;}
.y16{bottom:695.058667pt;}
.y15{bottom:710.998667pt;}
.y14{bottom:734.909333pt;}
.y13{bottom:750.849333pt;}
.y12{bottom:766.789333pt;}
.y33{bottom:780.672000pt;}
.y11{bottom:782.729333pt;}
.y32{bottom:804.582667pt;}
.y10{bottom:807.249333pt;}
.y31{bottom:820.522667pt;}
.y30{bottom:836.462667pt;}
.yf{bottom:844.433333pt;}
.y2{bottom:852.404000pt;}
.ye{bottom:860.373333pt;}
.y1{bottom:876.313333pt;}
.h2{height:38.043849pt;}
.h3{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:178.357333pt;}
.x2{left:404.177333pt;}
}




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