
    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_d7757c27f01eeb355051285e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7f364d64d5d8af0a9a00d7e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_cb61f6f6353e144e0e2249c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_2611c872973c1b9338c3868a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.338559px;}
.ls6{letter-spacing:26.808469px;}
.ls1{letter-spacing:126.215950px;}
.ls5{letter-spacing:126.218350px;}
.ls4{letter-spacing:128.486349px;}
.ls2{letter-spacing:151.415939px;}
.ls3{letter-spacing:152.246339px;}
.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:-23.310711px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:72.975821px;}
.ws3{word-spacing:92.367814px;}
._7{margin-left:-8.147582px;}
._6{margin-left:-7.093296px;}
._3{margin-left:-4.848064px;}
._9{margin-left:-3.610221px;}
._d{margin-left:-2.312136px;}
._1{margin-left:-1.128414px;}
._5{width:1.099529px;}
._0{width:2.124751px;}
._2{width:3.307557px;}
._a{width:5.043623px;}
._8{width:6.424659px;}
._e{width:26.366459px;}
._b{width:28.983817px;}
._c{width:38.412952px;}
._4{width:46.812554px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(220,158,31);}
.fs4{font-size:95.759962px;}
.fs2{font-size:102.239959px;}
.fs5{font-size:120.239952px;}
.fs3{font-size:143.999942px;}
.fs1{font-size:179.999928px;}
.fs0{font-size:192.239923px;}
.y0{bottom:0.000000px;}
.y5f{bottom:102.300316px;}
.yf{bottom:129.120305px;}
.y5e{bottom:148.200298px;}
.y43{bottom:167.460290px;}
.y23{bottom:173.220288px;}
.ye{bottom:174.840287px;}
.y5d{bottom:178.800285px;}
.y42{bottom:198.060278px;}
.y2e{bottom:210.660273px;}
.yd{bottom:220.560269px;}
.y5c{bottom:224.520267px;}
.y50{bottom:229.020265px;}
.y2d{bottom:243.060260px;}
.y41{bottom:243.780259px;}
.y4f{bottom:256.380254px;}
.y22{bottom:262.140252px;}
.yc{bottom:266.280250px;}
.y5b{bottom:270.240249px;}
.y35{bottom:281.040245px;}
.y1{bottom:288.780241px;}
.y40{bottom:289.500241px;}
.y21{bottom:290.940241px;}
.y2c{bottom:291.660240px;}
.y4e{bottom:299.220237px;}
.y5a{bottom:300.840237px;}
.y34{bottom:311.640232px;}
.yb{bottom:312.000232px;}
.y20{bottom:319.740229px;}
.y17{bottom:324.060227px;}
.y59{bottom:331.440224px;}
.y3f{bottom:335.220223px;}
.y4d{bottom:341.880220px;}
.ya{bottom:357.720214px;}
.y1f{bottom:363.300212px;}
.y16{bottom:367.260210px;}
.y4c{bottom:369.420209px;}
.y58{bottom:377.160206px;}
.y3e{bottom:380.940205px;}
.y33{bottom:403.080196px;}
.y9{bottom:403.440196px;}
.y4b{bottom:412.080192px;}
.y2b{bottom:421.260188px;}
.y57{bottom:422.880188px;}
.y3d{bottom:426.660186px;}
.y15{bottom:430.800185px;}
.y4a{bottom:439.620181px;}
.y32{bottom:448.800177px;}
.y8{bottom:449.160177px;}
.y1e{bottom:450.420177px;}
.y2a{bottom:453.660176px;}
.y56{bottom:468.600170px;}
.y3c{bottom:472.380168px;}
.y31{bottom:479.400165px;}
.y49{bottom:482.280164px;}
.y1d{bottom:493.980159px;}
.y7{bottom:494.880159px;}
.y48{bottom:509.820153px;}
.y30{bottom:510.000153px;}
.y55{bottom:514.320151px;}
.y2{bottom:524.220147px;}
.y47{bottom:537.360142px;}
.y1c{bottom:537.540142px;}
.y6{bottom:540.600141px;}
.y14{bottom:549.780137px;}
.y29{bottom:550.860137px;}
.y2f{bottom:555.720135px;}
.y54{bottom:560.040133px;}
.y3b{bottom:563.820131px;}
.y46{bottom:564.900131px;}
.y1b{bottom:581.100125px;}
.y28{bottom:583.260124px;}
.y5{bottom:586.320122px;}
.y3a{bottom:594.420119px;}
.y13{bottom:595.500119px;}
.y45{bottom:607.560114px;}
.y27{bottom:615.660111px;}
.y1a{bottom:624.660107px;}
.y39{bottom:625.020107px;}
.y4{bottom:632.040104px;}
.y44{bottom:635.100103px;}
.y12{bottom:641.220101px;}
.y26{bottom:648.060098px;}
.y53{bottom:651.480096px;}
.y38{bottom:655.620095px;}
.y19{bottom:668.220090px;}
.y25{bottom:680.460085px;}
.y52{bottom:682.080084px;}
.y11{bottom:686.940082px;}
.y3{bottom:699.360077px;}
.y37{bottom:701.340076px;}
.y18{bottom:711.780072px;}
.y51{bottom:727.800066px;}
.y36{bottom:731.940064px;}
.y10{bottom:732.480064px;}
.y24{bottom:770.820049px;}
.hb{height:74.433486px;}
.ha{height:74.683095px;}
.h7{height:86.314887px;}
.h9{height:87.479262px;}
.h4{height:92.155744px;}
.h6{height:99.874648px;}
.h5{height:104.835896px;}
.h3{height:106.633082px;}
.h8{height:108.380347px;}
.h2{height:162.246029px;}
.h1{height:173.278759px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:137.314445px;}
.x5{left:147.585841px;}
.x6{left:149.565840px;}
.x3{left:174.226430px;}
.x7{left:190.054424px;}
.x4{left:199.966420px;}
.x8{left:214.726414px;}
.x1{left:255.226398px;}
.x2{left:274.126390px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.078719pt;}
.ls6{letter-spacing:23.829750pt;}
.ls1{letter-spacing:112.191955pt;}
.ls5{letter-spacing:112.194088pt;}
.ls4{letter-spacing:114.210088pt;}
.ls2{letter-spacing:134.591946pt;}
.ls3{letter-spacing:135.330079pt;}
.ws1{word-spacing:-20.720632pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:64.867397pt;}
.ws3{word-spacing:82.104723pt;}
._7{margin-left:-7.242295pt;}
._6{margin-left:-6.305152pt;}
._3{margin-left:-4.309390pt;}
._9{margin-left:-3.209085pt;}
._d{margin-left:-2.055232pt;}
._1{margin-left:-1.003034pt;}
._5{width:0.977359pt;}
._0{width:1.888668pt;}
._2{width:2.940051pt;}
._a{width:4.483220pt;}
._8{width:5.710808pt;}
._e{width:23.436852pt;}
._b{width:25.763393pt;}
._c{width:34.144846pt;}
._4{width:41.611159pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:90.879964pt;}
.fs5{font-size:106.879957pt;}
.fs3{font-size:127.999949pt;}
.fs1{font-size:159.999936pt;}
.fs0{font-size:170.879932pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:90.933614pt;}
.yf{bottom:114.773605pt;}
.y5e{bottom:131.733598pt;}
.y43{bottom:148.853591pt;}
.y23{bottom:153.973589pt;}
.ye{bottom:155.413589pt;}
.y5d{bottom:158.933587pt;}
.y42{bottom:176.053580pt;}
.y2e{bottom:187.253576pt;}
.yd{bottom:196.053572pt;}
.y5c{bottom:199.573571pt;}
.y50{bottom:203.573569pt;}
.y2d{bottom:216.053564pt;}
.y41{bottom:216.693564pt;}
.y4f{bottom:227.893560pt;}
.y22{bottom:233.013557pt;}
.yc{bottom:236.693556pt;}
.y5b{bottom:240.213555pt;}
.y35{bottom:249.813551pt;}
.y1{bottom:256.693548pt;}
.y40{bottom:257.333548pt;}
.y21{bottom:258.613547pt;}
.y2c{bottom:259.253547pt;}
.y4e{bottom:265.973544pt;}
.y5a{bottom:267.413544pt;}
.y34{bottom:277.013540pt;}
.yb{bottom:277.333540pt;}
.y20{bottom:284.213537pt;}
.y17{bottom:288.053535pt;}
.y59{bottom:294.613533pt;}
.y3f{bottom:297.973531pt;}
.y4d{bottom:303.893529pt;}
.ya{bottom:317.973523pt;}
.y1f{bottom:322.933521pt;}
.y16{bottom:326.453520pt;}
.y4c{bottom:328.373519pt;}
.y58{bottom:335.253517pt;}
.y3e{bottom:338.613515pt;}
.y33{bottom:358.293507pt;}
.y9{bottom:358.613507pt;}
.y4b{bottom:366.293504pt;}
.y2b{bottom:374.453501pt;}
.y57{bottom:375.893500pt;}
.y3d{bottom:379.253499pt;}
.y15{bottom:382.933497pt;}
.y4a{bottom:390.773494pt;}
.y32{bottom:398.933491pt;}
.y8{bottom:399.253491pt;}
.y1e{bottom:400.373491pt;}
.y2a{bottom:403.253489pt;}
.y56{bottom:416.533484pt;}
.y3c{bottom:419.893483pt;}
.y31{bottom:426.133480pt;}
.y49{bottom:428.693479pt;}
.y1d{bottom:439.093475pt;}
.y7{bottom:439.893475pt;}
.y48{bottom:453.173469pt;}
.y30{bottom:453.333469pt;}
.y55{bottom:457.173468pt;}
.y2{bottom:465.973464pt;}
.y47{bottom:477.653460pt;}
.y1c{bottom:477.813460pt;}
.y6{bottom:480.533458pt;}
.y14{bottom:488.693455pt;}
.y29{bottom:489.653455pt;}
.y2f{bottom:493.973453pt;}
.y54{bottom:497.813452pt;}
.y3b{bottom:501.173450pt;}
.y46{bottom:502.133450pt;}
.y1b{bottom:516.533444pt;}
.y28{bottom:518.453443pt;}
.y5{bottom:521.173442pt;}
.y3a{bottom:528.373439pt;}
.y13{bottom:529.333439pt;}
.y45{bottom:540.053435pt;}
.y27{bottom:547.253432pt;}
.y1a{bottom:555.253429pt;}
.y39{bottom:555.573428pt;}
.y4{bottom:561.813426pt;}
.y44{bottom:564.533425pt;}
.y12{bottom:569.973423pt;}
.y26{bottom:576.053420pt;}
.y53{bottom:579.093419pt;}
.y38{bottom:582.773418pt;}
.y19{bottom:593.973413pt;}
.y25{bottom:604.853409pt;}
.y52{bottom:606.293408pt;}
.y11{bottom:610.613406pt;}
.y3{bottom:621.653402pt;}
.y37{bottom:623.413401pt;}
.y18{bottom:632.693398pt;}
.y51{bottom:646.933392pt;}
.y36{bottom:650.613390pt;}
.y10{bottom:651.093390pt;}
.y24{bottom:685.173377pt;}
.hb{height:66.163099pt;}
.ha{height:66.384973pt;}
.h7{height:76.724344pt;}
.h9{height:77.759344pt;}
.h4{height:81.916217pt;}
.h6{height:88.777464pt;}
.h5{height:93.187463pt;}
.h3{height:94.784962pt;}
.h8{height:96.338086pt;}
.h2{height:144.218692pt;}
.h1{height:154.025563pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:122.057285pt;}
.x5{left:131.187414pt;}
.x6{left:132.947413pt;}
.x3{left:154.867938pt;}
.x7{left:168.937266pt;}
.x4{left:177.747929pt;}
.x8{left:190.867924pt;}
.x1{left:226.867909pt;}
.x2{left:243.667903pt;}
}




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