
    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_e8ad649b4bcdfbbcf8bd3e6c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.085000;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_92b0f5269f2f45aaf6edf101.woff')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a5ee7b2f1df693c943fbb39.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-4.169261px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025014px;}
.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:-25.427204px;}
.ws3{word-spacing:-20.044969px;}
.ws2{word-spacing:-17.970995px;}
.ws1{word-spacing:-16.528638px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-3644.751240px;}
._8{margin-left:-12.790622px;}
._4{margin-left:-10.822780px;}
._7{margin-left:-9.506226px;}
._3{margin-left:-8.025185px;}
._9{margin-left:-5.649603px;}
._a{margin-left:-4.270345px;}
._2{margin-left:-2.513171px;}
._0{margin-left:-1.241987px;}
._1{width:1.296665px;}
._6{width:4195.181307px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.969821px;}
.fs2{font-size:65.953306px;}
.fs4{font-size:77.965272px;}
.fs3{font-size:78.685085px;}
.fs8{font-size:83.948753px;}
.fs7{font-size:86.962990px;}
.fs6{font-size:89.977227px;}
.fs1{font-size:119.939644px;}
.fs5{font-size:251.936236px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.135021px;}
.y1f{bottom:4.640894px;}
.y5{bottom:16.262207px;}
.y1e{bottom:31.634064px;}
.y4{bottom:36.507083px;}
.y1d{bottom:58.627234px;}
.y21{bottom:66.686973px;}
.y1c{bottom:85.620404px;}
.y20{bottom:86.931849px;}
.y1b{bottom:112.613573px;}
.y2{bottom:117.111656px;}
.y1a{bottom:139.606743px;}
.y27{bottom:161.259351px;}
.y19{bottom:166.599913px;}
.y8{bottom:174.303004px;}
.y26{bottom:181.504227px;}
.y18{bottom:193.593083px;}
.y7{bottom:194.547880px;}
.y25{bottom:201.749103px;}
.y6{bottom:214.792756px;}
.y17{bottom:220.586253px;}
.y24{bottom:221.993979px;}
.y3{bottom:245.350155px;}
.y16{bottom:247.579423px;}
.y15{bottom:274.572592px;}
.y4e{bottom:299.549100px;}
.y14{bottom:301.565762px;}
.y13{bottom:328.558932px;}
.y4d{bottom:342.600593px;}
.yb{bottom:350.775006px;}
.y12{bottom:355.552102px;}
.y4c{bottom:371.843191px;}
.y3a{bottom:375.248040px;}
.y11{bottom:382.545272px;}
.y4b{bottom:401.085790px;}
.y39{bottom:405.615354px;}
.y10{bottom:409.538441px;}
.y4a{bottom:430.328389px;}
.y38{bottom:435.982668px;}
.yf{bottom:436.531611px;}
.y49{bottom:459.570988px;}
.ye{bottom:463.524781px;}
.y37{bottom:466.349982px;}
.y48{bottom:488.813586px;}
.yd{bottom:490.517951px;}
.y36{bottom:496.717297px;}
.yc{bottom:517.511121px;}
.y47{bottom:518.056185px;}
.y35{bottom:527.084611px;}
.y46{bottom:547.298784px;}
.y34{bottom:557.451925px;}
.y45{bottom:576.541383px;}
.y33{bottom:587.819239px;}
.y44{bottom:605.783981px;}
.y32{bottom:618.186553px;}
.y43{bottom:635.026580px;}
.y31{bottom:648.553867px;}
.y42{bottom:664.269179px;}
.y30{bottom:678.921181px;}
.y41{bottom:693.511778px;}
.y2f{bottom:709.288495px;}
.y40{bottom:722.754376px;}
.y2e{bottom:739.655809px;}
.y3f{bottom:751.996975px;}
.y2d{bottom:770.023124px;}
.y3e{bottom:781.239574px;}
.y2c{bottom:800.390438px;}
.y3d{bottom:810.482173px;}
.y2b{bottom:830.757752px;}
.y3c{bottom:839.724772px;}
.y2a{bottom:861.125066px;}
.y3b{bottom:868.967370px;}
.ya{bottom:934.969667px;}
.y29{bottom:987.367055px;}
.y28{bottom:1018.859085px;}
.y23{bottom:1063.177379px;}
.y22{bottom:1150.905175px;}
.y9{bottom:1223.622005px;}
.h5{height:53.732960px;}
.h3{height:54.812417px;}
.h11{height:56.971330px;}
.h6{height:59.094163px;}
.ha{height:69.856884px;}
.h9{height:71.260259px;}
.h7{height:71.918168px;}
.hb{height:74.067009px;}
.h10{height:75.218082px;}
.hf{height:76.729160px;}
.he{height:77.918839px;}
.hd{height:80.619595px;}
.h4{height:109.624834px;}
.hc{height:230.269719px;}
.h8{height:535.679978px;}
.h1{height:1263.000000px;}
.h2{height:1263.239947px;}
.h0{height:1263.374968px;}
.w3{width:758.519968px;}
.w2{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x1{left:13.749168px;}
.x7{left:33.416686px;}
.x11{left:64.014801px;}
.xc{left:276.763991px;}
.xd{left:296.253084px;}
.x10{left:313.058197px;}
.x4{left:370.951201px;}
.xe{left:414.165517px;}
.x6{left:417.239983px;}
.xa{left:432.227218px;}
.xb{left:451.716286px;}
.x8{left:533.866045px;}
.x9{left:553.355136px;}
.x5{left:618.029640px;}
.x14{left:628.052964px;}
.xf{left:684.677129px;}
.x15{left:741.104429px;}
.x16{left:756.094775px;}
.x17{left:839.306142px;}
.x18{left:854.296483px;}
.x2{left:924.954657px;}
.x3{left:929.222529px;}
.x19{left:943.236869px;}
.x12{left:1244.944532px;}
.x13{left:1280.619097px;}
@media print{
.v1{vertical-align:-3.706009pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.022234pt;}
.ws0{word-spacing:-22.601959pt;}
.ws3{word-spacing:-17.817750pt;}
.ws2{word-spacing:-15.974218pt;}
.ws1{word-spacing:-14.692122pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-3239.778880pt;}
._8{margin-left:-11.369442pt;}
._4{margin-left:-9.620249pt;}
._7{margin-left:-8.449979pt;}
._3{margin-left:-7.133498pt;}
._9{margin-left:-5.021869pt;}
._a{margin-left:-3.795863pt;}
._2{margin-left:-2.233929pt;}
._0{margin-left:-1.103989pt;}
._1{width:1.152591pt;}
._6{width:3729.050051pt;}
.fs0{font-size:53.306508pt;}
.fs2{font-size:58.625161pt;}
.fs4{font-size:69.302464pt;}
.fs3{font-size:69.942298pt;}
.fs8{font-size:74.621114pt;}
.fs7{font-size:77.300435pt;}
.fs6{font-size:79.979757pt;}
.fs1{font-size:106.613016pt;}
.fs5{font-size:223.943320pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.120018pt;}
.y1f{bottom:4.125239pt;}
.y5{bottom:14.455295pt;}
.y1e{bottom:28.119168pt;}
.y4{bottom:32.450741pt;}
.y1d{bottom:52.113097pt;}
.y21{bottom:59.277309pt;}
.y1c{bottom:76.107025pt;}
.y20{bottom:77.272755pt;}
.y1b{bottom:100.100954pt;}
.y2{bottom:104.099250pt;}
.y1a{bottom:124.094883pt;}
.y27{bottom:143.341645pt;}
.y19{bottom:148.088812pt;}
.y8{bottom:154.936003pt;}
.y26{bottom:161.337091pt;}
.y18{bottom:172.082740pt;}
.y7{bottom:172.931449pt;}
.y25{bottom:179.332536pt;}
.y6{bottom:190.926894pt;}
.y17{bottom:196.076669pt;}
.y24{bottom:197.327982pt;}
.y3{bottom:218.089027pt;}
.y16{bottom:220.070598pt;}
.y15{bottom:244.064527pt;}
.y4e{bottom:266.265867pt;}
.y14{bottom:268.058455pt;}
.y13{bottom:292.052384pt;}
.y4d{bottom:304.533860pt;}
.yb{bottom:311.800005pt;}
.y12{bottom:316.046313pt;}
.y4c{bottom:330.527281pt;}
.y3a{bottom:333.553813pt;}
.y11{bottom:340.040241pt;}
.y4b{bottom:356.520702pt;}
.y39{bottom:360.546982pt;}
.y10{bottom:364.034170pt;}
.y4a{bottom:382.514123pt;}
.y38{bottom:387.540150pt;}
.yf{bottom:388.028099pt;}
.y49{bottom:408.507545pt;}
.ye{bottom:412.022028pt;}
.y37{bottom:414.533318pt;}
.y48{bottom:434.500966pt;}
.yd{bottom:436.015956pt;}
.y36{bottom:441.526486pt;}
.yc{bottom:460.009885pt;}
.y47{bottom:460.494387pt;}
.y35{bottom:468.519654pt;}
.y46{bottom:486.487808pt;}
.y34{bottom:495.512822pt;}
.y45{bottom:512.481229pt;}
.y33{bottom:522.505990pt;}
.y44{bottom:538.474650pt;}
.y32{bottom:549.499158pt;}
.y43{bottom:564.468071pt;}
.y31{bottom:576.492326pt;}
.y42{bottom:590.461492pt;}
.y30{bottom:603.485494pt;}
.y41{bottom:616.454914pt;}
.y2f{bottom:630.478662pt;}
.y40{bottom:642.448335pt;}
.y2e{bottom:657.471831pt;}
.y3f{bottom:668.441756pt;}
.y2d{bottom:684.464999pt;}
.y3e{bottom:694.435177pt;}
.y2c{bottom:711.458167pt;}
.y3d{bottom:720.428598pt;}
.y2b{bottom:738.451335pt;}
.y3c{bottom:746.422019pt;}
.y2a{bottom:765.444503pt;}
.y3b{bottom:772.415440pt;}
.ya{bottom:831.084148pt;}
.y29{bottom:877.659605pt;}
.y28{bottom:905.652520pt;}
.y23{bottom:945.046559pt;}
.y22{bottom:1023.026822pt;}
.y9{bottom:1087.664004pt;}
.h5{height:47.762631pt;}
.h3{height:48.722148pt;}
.h11{height:50.641182pt;}
.h6{height:52.528145pt;}
.ha{height:62.095008pt;}
.h9{height:63.342452pt;}
.h7{height:63.927260pt;}
.hb{height:65.837341pt;}
.h10{height:66.860518pt;}
.hf{height:68.203698pt;}
.he{height:69.261190pt;}
.hd{height:71.661863pt;}
.h4{height:97.444297pt;}
.hc{height:204.684195pt;}
.h8{height:476.159980pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.w3{width:674.239972pt;}
.w2{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x1{left:12.221483pt;}
.x7{left:29.703721pt;}
.x11{left:56.902046pt;}
.xc{left:246.012437pt;}
.xd{left:263.336074pt;}
.x10{left:278.273953pt;}
.x4{left:329.734401pt;}
.xe{left:368.147126pt;}
.x6{left:370.879985pt;}
.xa{left:384.201971pt;}
.xb{left:401.525588pt;}
.x8{left:474.547596pt;}
.x9{left:491.871232pt;}
.x5{left:549.359680pt;}
.x14{left:558.269301pt;}
.xf{left:608.601892pt;}
.x15{left:658.759492pt;}
.x16{left:672.084245pt;}
.x17{left:746.049904pt;}
.x18{left:759.374652pt;}
.x2{left:822.181918pt;}
.x3{left:825.975582pt;}
.x19{left:838.432772pt;}
.x12{left:1106.617362pt;}
.x13{left:1138.328086pt;}
}




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