
    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_c4552bb649b4e6d87367cf22.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990000;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_b98567568f4587d568aa8f40.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_77098dd14541d6be08525995.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.212000;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_d73b627cdff3609a0b4aceb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_e2b8f30a751f3c1b132601b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.204000;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:ff6;src:url('chunks/assets/font_f4b58bba08237882c7796980.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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;}
.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;}
}
.ws0{word-spacing:-51.938321px;}
.ws1{word-spacing:-22.464500px;}
.ws4{word-spacing:-17.882267px;}
.ws2{word-spacing:-16.022032px;}
.ws3{word-spacing:0.000000px;}
._0{width:1.793993px;}
._1{width:3.001174px;}
.fc2{color:rgb(67,91,102);}
.fc1{color:rgb(0,78,107);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:48.018135px;}
.fsa{font-size:54.020354px;}
.fs5{font-size:60.007609px;}
.fs8{font-size:60.015742px;}
.fs0{font-size:72.027138px;}
.fs4{font-size:78.014394px;}
.fs6{font-size:84.136705px;}
.fs3{font-size:114.027963px;}
.fs2{font-size:120.015219px;}
.fs7{font-size:126.441945px;}
.fs1{font-size:207.753286px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y34{bottom:35.234173px;}
.y3{bottom:37.265020px;}
.y4b{bottom:49.499967px;}
.y33{bottom:56.617229px;}
.y2{bottom:58.648076px;}
.y32{bottom:78.000286px;}
.y58{bottom:82.249972px;}
.y4a{bottom:86.213198px;}
.y31{bottom:99.383343px;}
.y57{bottom:101.382181px;}
.y49{bottom:108.379677px;}
.y48{bottom:130.546156px;}
.y56{bottom:141.897446px;}
.y30{bottom:142.149456px;}
.y47{bottom:152.712635px;}
.y55{bottom:163.280502px;}
.y2f{bottom:163.532512px;}
.y46{bottom:174.879114px;}
.y54{bottom:184.663559px;}
.y2e{bottom:184.915569px;}
.y11{bottom:193.670353px;}
.y45{bottom:197.045593px;}
.y53{bottom:206.046616px;}
.y2d{bottom:206.298626px;}
.y10{bottom:215.053410px;}
.y44{bottom:219.212072px;}
.y52{bottom:227.429672px;}
.y2c{bottom:227.681682px;}
.y51{bottom:248.812729px;}
.y2b{bottom:249.064739px;}
.yb{bottom:253.092808px;}
.y43{bottom:263.545029px;}
.y50{bottom:270.195786px;}
.y2a{bottom:270.447796px;}
.y42{bottom:285.711508px;}
.y5{bottom:287.677333px;}
.y40{bottom:288.229509px;}
.y4f{bottom:291.578842px;}
.y41{bottom:307.877987px;}
.y4e{bottom:312.961899px;}
.y1a{bottom:323.092685px;}
.ye{bottom:328.387573px;}
.y4d{bottom:334.344955px;}
.y4{bottom:340.572263px;}
.y19{bottom:345.601166px;}
.y4c{bottom:355.728012px;}
.yd{bottom:366.737284px;}
.y35{bottom:385.326931px;}
.y18{bottom:390.618127px;}
.y28{bottom:391.447178px;}
.yc{bottom:405.086995px;}
.y17{bottom:413.126608px;}
.y27{bottom:413.955659px;}
.y16{bottom:435.635088px;}
.y26{bottom:436.464139px;}
.ya{bottom:454.929688px;}
.y15{bottom:458.143569px;}
.y9{bottom:478.563593px;}
.y14{bottom:480.652050px;}
.y25{bottom:481.481101px;}
.y13{bottom:503.160530px;}
.y24{bottom:503.989581px;}
.y3f{bottom:521.704570px;}
.y12{bottom:525.669011px;}
.y23{bottom:526.498062px;}
.y8{bottom:538.211066px;}
.y22{bottom:549.006543px;}
.y3e{bottom:564.470683px;}
.y21{bottom:571.515023px;}
.y7{bottom:573.099211px;}
.y3d{bottom:585.853740px;}
.y20{bottom:616.531985px;}
.y3c{bottom:628.619853px;}
.y1f{bottom:639.040465px;}
.y6{bottom:646.251773px;}
.y3b{bottom:650.002910px;}
.y1e{bottom:661.548946px;}
.y1d{bottom:684.057427px;}
.y3a{bottom:692.769023px;}
.y39{bottom:714.152080px;}
.y1c{bottom:721.223180px;}
.y38{bottom:756.918193px;}
.y1b{bottom:758.362173px;}
.y37{bottom:778.301250px;}
.yf{bottom:798.564148px;}
.y36{bottom:799.684306px;}
.y29{bottom:835.273290px;}
.hf{height:44.848938px;}
.hd{height:47.466019px;}
.h10{height:50.455010px;}
.hc{height:56.047107px;}
.he{height:56.054703px;}
.h8{height:56.527168px;}
.hb{height:58.567426px;}
.h3{height:70.298487px;}
.h7{height:73.489559px;}
.h9{height:79.256776px;}
.ha{height:101.153556px;}
.h6{height:111.291292px;}
.h5{height:117.134854px;}
.h4{height:166.202628px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.xc{left:28.085610px;}
.x12{left:36.797529px;}
.xe{left:46.963513px;}
.xf{left:72.461401px;}
.xd{left:101.315023px;}
.x13{left:451.365803px;}
.x5{left:462.748080px;}
.x11{left:496.936779px;}
.x6{left:517.401484px;}
.xa{left:527.870235px;}
.x4{left:535.267591px;}
.x8{left:536.305091px;}
.x7{left:548.561662px;}
.x1{left:863.745156px;}
.x10{left:866.594160px;}
.x3{left:895.371119px;}
.x9{left:914.041006px;}
.xb{left:948.893504px;}
.x2{left:993.098581px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-46.167397pt;}
.ws1{word-spacing:-19.968445pt;}
.ws4{word-spacing:-15.895349pt;}
.ws2{word-spacing:-14.241806pt;}
.ws3{word-spacing:0.000000pt;}
._0{width:1.594660pt;}
._1{width:2.667710pt;}
.fs9{font-size:42.682787pt;}
.fsa{font-size:48.018092pt;}
.fs5{font-size:53.340097pt;}
.fs8{font-size:53.347326pt;}
.fs0{font-size:64.024123pt;}
.fs4{font-size:69.346128pt;}
.fs6{font-size:74.788182pt;}
.fs3{font-size:101.358189pt;}
.fs2{font-size:106.680195pt;}
.fs7{font-size:112.392840pt;}
.fs1{font-size:184.669587pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y34{bottom:31.319265pt;}
.y3{bottom:33.124462pt;}
.y4b{bottom:43.999971pt;}
.y33{bottom:50.326426pt;}
.y2{bottom:52.131623pt;}
.y32{bottom:69.333588pt;}
.y58{bottom:73.111086pt;}
.y4a{bottom:76.633954pt;}
.y31{bottom:88.340749pt;}
.y57{bottom:90.117494pt;}
.y49{bottom:96.337491pt;}
.y48{bottom:116.041027pt;}
.y56{bottom:126.131063pt;}
.y30{bottom:126.355072pt;}
.y47{bottom:135.744564pt;}
.y55{bottom:145.138224pt;}
.y2f{bottom:145.362233pt;}
.y46{bottom:155.448101pt;}
.y54{bottom:164.145386pt;}
.y2e{bottom:164.369395pt;}
.y11{bottom:172.151425pt;}
.y45{bottom:175.151638pt;}
.y53{bottom:183.152547pt;}
.y2d{bottom:183.376556pt;}
.y10{bottom:191.158587pt;}
.y44{bottom:194.855175pt;}
.y52{bottom:202.159709pt;}
.y2c{bottom:202.383718pt;}
.y51{bottom:221.166870pt;}
.y2b{bottom:221.390879pt;}
.yb{bottom:224.971385pt;}
.y43{bottom:234.262248pt;}
.y50{bottom:240.174032pt;}
.y2a{bottom:240.398041pt;}
.y42{bottom:253.965785pt;}
.y5{bottom:255.713185pt;}
.y40{bottom:256.204008pt;}
.y4f{bottom:259.181193pt;}
.y41{bottom:273.669322pt;}
.y4e{bottom:278.188354pt;}
.y1a{bottom:287.193498pt;}
.ye{bottom:291.900065pt;}
.y4d{bottom:297.195516pt;}
.y4{bottom:302.730900pt;}
.y19{bottom:307.201036pt;}
.y4c{bottom:316.202677pt;}
.yd{bottom:325.988697pt;}
.y35{bottom:342.512827pt;}
.y18{bottom:347.216113pt;}
.y28{bottom:347.953047pt;}
.yc{bottom:360.077329pt;}
.y17{bottom:367.223651pt;}
.y27{bottom:367.960586pt;}
.y16{bottom:387.231190pt;}
.y26{bottom:387.968124pt;}
.ya{bottom:404.381945pt;}
.y15{bottom:407.238728pt;}
.y9{bottom:425.389860pt;}
.y14{bottom:427.246266pt;}
.y25{bottom:427.983201pt;}
.y13{bottom:447.253805pt;}
.y24{bottom:447.990739pt;}
.y3f{bottom:463.737396pt;}
.y12{bottom:467.261343pt;}
.y23{bottom:467.998277pt;}
.y8{bottom:478.409837pt;}
.y22{bottom:488.005816pt;}
.y3e{bottom:501.751719pt;}
.y21{bottom:508.013354pt;}
.y7{bottom:509.421521pt;}
.y3d{bottom:520.758880pt;}
.y20{bottom:548.028431pt;}
.y3c{bottom:558.773203pt;}
.y1f{bottom:568.035969pt;}
.y6{bottom:574.446021pt;}
.y3b{bottom:577.780364pt;}
.y1e{bottom:588.043508pt;}
.y1d{bottom:608.051046pt;}
.y3a{bottom:615.794687pt;}
.y39{bottom:634.801849pt;}
.y1c{bottom:641.087271pt;}
.y38{bottom:672.816172pt;}
.y1b{bottom:674.099710pt;}
.y37{bottom:691.823333pt;}
.yf{bottom:709.834799pt;}
.y36{bottom:710.830495pt;}
.y29{bottom:742.465147pt;}
.hf{height:39.865723pt;}
.hd{height:42.192017pt;}
.h10{height:44.848898pt;}
.hc{height:49.819650pt;}
.he{height:49.826402pt;}
.h8{height:50.246371pt;}
.hb{height:52.059935pt;}
.h3{height:62.487544pt;}
.h7{height:65.324053pt;}
.h9{height:70.450468pt;}
.ha{height:89.914272pt;}
.h6{height:98.925593pt;}
.h5{height:104.119870pt;}
.h4{height:147.735670pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.xc{left:24.964987pt;}
.x12{left:32.708915pt;}
.xe{left:41.745345pt;}
.xf{left:64.410134pt;}
.xd{left:90.057798pt;}
.x13{left:401.214047pt;}
.x5{left:411.331626pt;}
.x11{left:441.721582pt;}
.x6{left:459.912430pt;}
.xa{left:469.217987pt;}
.x4{left:475.793414pt;}
.x8{left:476.715636pt;}
.x7{left:487.610366pt;}
.x1{left:767.773472pt;}
.x10{left:770.305920pt;}
.x3{left:795.885439pt;}
.x9{left:812.480894pt;}
.xb{left:843.460893pt;}
.x2{left:882.754294pt;}
}




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