
    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_473944ce872dd1dac3e40b38.woff')format("woff");}.ff1{font-family:ff1;line-height:0.866699;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_a69f63c87baac917f2da0f00.woff')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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;}
.m1{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018468px;}
.ls0{letter-spacing:0.025503px;}
.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:-43.200035px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-2991.303428px;}
._22{margin-left:-2919.164612px;}
._2b{margin-left:-2911.380154px;}
._43{margin-left:-2909.397399px;}
._31{margin-left:-2908.270171px;}
._1d{margin-left:-2906.446222px;}
._29{margin-left:-2904.921826px;}
._30{margin-left:-2900.363405px;}
._37{margin-left:-2816.666517px;}
._d{margin-left:-2781.384825px;}
._11{margin-left:-2774.296507px;}
._17{margin-left:-2697.216753px;}
._28{margin-left:-2644.376440px;}
._1c{margin-left:-2643.017362px;}
._49{margin-left:-2571.199076px;}
._8{margin-left:-2565.212470px;}
._45{margin-left:-2520.597088px;}
._13{margin-left:-2473.686573px;}
._44{margin-left:-2433.030912px;}
._a{margin-left:-2387.598880px;}
._2e{margin-left:-2300.670282px;}
._47{margin-left:-2258.630565px;}
._42{margin-left:-2216.718363px;}
._3e{margin-left:-2212.376095px;}
._38{margin-left:-2084.121170px;}
._39{margin-left:-2001.501750px;}
._5{margin-left:-1999.110946px;}
._4b{margin-left:-1994.960574px;}
._1e{margin-left:-1981.763394px;}
._35{margin-left:-1959.589549px;}
._f{margin-left:-1916.306665px;}
._4c{margin-left:-1909.720822px;}
._3d{margin-left:-1868.248512px;}
._2c{margin-left:-1826.286551px;}
._33{margin-left:-1784.341260px;}
._2f{margin-left:-1742.684089px;}
._1{margin-left:-1698.043171px;}
._23{margin-left:-1615.971992px;}
._46{margin-left:-1610.247500px;}
._24{margin-left:-1569.030221px;}
._25{margin-left:-1567.518649px;}
._41{margin-left:-1526.683916px;}
._1a{margin-left:-1525.606448px;}
._20{margin-left:-1478.032853px;}
._19{margin-left:-1442.515845px;}
._16{margin-left:-1400.481916px;}
._14{margin-left:-1267.101163px;}
._40{margin-left:-1262.664469px;}
._10{margin-left:-1225.883884px;}
._34{margin-left:-1135.518304px;}
._26{margin-left:-1093.606102px;}
._36{margin-left:-878.485713px;}
._3a{margin-left:-703.262927px;}
._2d{margin-left:-662.485540px;}
._2a{margin-left:-532.885436px;}
._4d{margin-left:-528.919926px;}
._32{margin-left:-403.285333px;}
._3c{margin-left:-361.412009px;}
._3b{margin-left:-319.378080px;}
._3f{margin-left:-316.885264px;}
._0{margin-left:-23.053642px;}
._1b{margin-left:-12.712627px;}
._b{margin-left:-10.328148px;}
._21{margin-left:-9.066052px;}
._3{margin-left:-7.204254px;}
._48{margin-left:-5.763405px;}
._6{margin-left:-4.501075px;}
._1f{margin-left:-3.270588px;}
._2{margin-left:-1.982755px;}
._e{width:1.326711px;}
._15{width:2.492817px;}
._12{width:4.035680px;}
._4{width:5.805613px;}
._c{width:11.583073px;}
._27{width:13.038009px;}
._7{width:18.367679px;}
._9{width:23.952553px;}
._4a{width:37.284103px;}
.fc7{color:rgb(0,153,204);}
.fc6{color:rgb(153,51,0);}
.fc4{color:rgb(245,132,76);}
.fc3{color:rgb(0,0,150);}
.fc5{color:rgb(255,128,64);}
.fc2{color:rgb(0,95,242);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(139,38,201);}
.fs1{font-size:57.600046px;}
.fs2{font-size:66.240053px;}
.fs0{font-size:72.000058px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.600064px;}
.y2e{bottom:48.000938px;}
.y2b{bottom:98.940979px;}
.y2a{bottom:124.501000px;}
.y29{bottom:150.061620px;}
.y28{bottom:175.441640px;}
.y27{bottom:201.001661px;}
.y26{bottom:226.561681px;}
.y25{bottom:251.941702px;}
.y24{bottom:277.501722px;}
.y23{bottom:303.061742px;}
.y22{bottom:328.441763px;}
.y21{bottom:354.001783px;}
.y20{bottom:379.561804px;}
.y1f{bottom:404.941824px;}
.y1e{bottom:430.501844px;}
.y1d{bottom:456.061865px;}
.y1c{bottom:481.441885px;}
.y1b{bottom:507.001906px;}
.y1a{bottom:532.561926px;}
.y19{bottom:557.941946px;}
.y18{bottom:583.501967px;}
.y17{bottom:609.061987px;}
.y16{bottom:634.442008px;}
.y15{bottom:660.002028px;}
.y14{bottom:685.562048px;}
.y13{bottom:710.942069px;}
.y12{bottom:736.502089px;}
.y11{bottom:762.062110px;}
.y10{bottom:787.442130px;}
.yf{bottom:813.002150px;}
.ye{bottom:838.562171px;}
.yd{bottom:863.942191px;}
.yc{bottom:889.502212px;}
.yb{bottom:915.062232px;}
.ya{bottom:940.442252px;}
.y9{bottom:966.002273px;}
.y8{bottom:991.562293px;}
.y7{bottom:1016.942314px;}
.y6{bottom:1042.502334px;}
.y5{bottom:1068.062354px;}
.y4{bottom:1093.442375px;}
.y3{bottom:1119.002395px;}
.y2{bottom:1144.562416px;}
.y1{bottom:1169.942436px;}
.y2c{bottom:1200.902400px;}
.h3{height:18.540000px;}
.h2{height:39.065656px;}
.h4{height:47.610038px;}
.h1{height:48.832070px;}
.h0{height:1263.000000px;}
.w1{width:182.880000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:42.480000px;}
.x6{left:82.440066px;}
.x5{left:93.060074px;}
.x1{left:118.440095px;}
.x2{left:162.000130px;}
.x3{left:205.560164px;}
.x4{left:247.500198px;}
.x9{left:291.060233px;}
.xa{left:334.440268px;}
.x8{left:441.000353px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016416pt;}
.ls0{letter-spacing:0.022670pt;}
.ws0{word-spacing:-38.400031pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-2658.936380pt;}
._22{margin-left:-2594.812989pt;}
._2b{margin-left:-2587.893470pt;}
._43{margin-left:-2586.131021pt;}
._31{margin-left:-2585.129041pt;}
._1d{margin-left:-2583.507753pt;}
._29{margin-left:-2582.152735pt;}
._30{margin-left:-2578.100805pt;}
._37{margin-left:-2503.703571pt;}
._d{margin-left:-2472.342067pt;}
._11{margin-left:-2466.041340pt;}
._17{margin-left:-2397.526003pt;}
._28{margin-left:-2350.556836pt;}
._1c{margin-left:-2349.348766pt;}
._49{margin-left:-2285.510289pt;}
._8{margin-left:-2280.188863pt;}
._45{margin-left:-2240.530745pt;}
._13{margin-left:-2198.832509pt;}
._44{margin-left:-2162.694144pt;}
._a{margin-left:-2122.310116pt;}
._2e{margin-left:-2045.040251pt;}
._47{margin-left:-2007.671613pt;}
._42{margin-left:-1970.416323pt;}
._3e{margin-left:-1966.556529pt;}
._38{margin-left:-1852.552151pt;}
._39{margin-left:-1779.112667pt;}
._5{margin-left:-1776.987507pt;}
._4b{margin-left:-1773.298288pt;}
._1e{margin-left:-1761.567461pt;}
._35{margin-left:-1741.857377pt;}
._f{margin-left:-1703.383702pt;}
._4c{margin-left:-1697.529620pt;}
._3d{margin-left:-1660.665344pt;}
._2c{margin-left:-1623.365823pt;}
._33{margin-left:-1586.081120pt;}
._2f{margin-left:-1549.052523pt;}
._1{margin-left:-1509.371707pt;}
._23{margin-left:-1436.419548pt;}
._46{margin-left:-1431.331111pt;}
._24{margin-left:-1394.693530pt;}
._25{margin-left:-1393.349910pt;}
._41{margin-left:-1357.052370pt;}
._1a{margin-left:-1356.094620pt;}
._20{margin-left:-1313.806981pt;}
._19{margin-left:-1282.236306pt;}
._16{margin-left:-1244.872814pt;}
._14{margin-left:-1126.312145pt;}
._40{margin-left:-1122.368416pt;}
._10{margin-left:-1089.674563pt;}
._34{margin-left:-1009.349603pt;}
._26{margin-left:-972.094313pt;}
._36{margin-left:-780.876189pt;}
._3a{margin-left:-625.122602pt;}
._2d{margin-left:-588.876036pt;}
._2a{margin-left:-473.675944pt;}
._4d{margin-left:-470.151045pt;}
._32{margin-left:-358.475851pt;}
._3c{margin-left:-321.255119pt;}
._3b{margin-left:-283.891627pt;}
._3f{margin-left:-281.675790pt;}
._0{margin-left:-20.492126pt;}
._1b{margin-left:-11.300113pt;}
._b{margin-left:-9.180576pt;}
._21{margin-left:-8.058713pt;}
._3{margin-left:-6.403781pt;}
._48{margin-left:-5.123027pt;}
._6{margin-left:-4.000955pt;}
._1f{margin-left:-2.907190pt;}
._2{margin-left:-1.762449pt;}
._e{width:1.179298pt;}
._15{width:2.215837pt;}
._12{width:3.587271pt;}
._4{width:5.160545pt;}
._c{width:10.296065pt;}
._27{width:11.589341pt;}
._7{width:16.326826pt;}
._9{width:21.291158pt;}
._4a{width:33.141425pt;}
.fs1{font-size:51.200041pt;}
.fs2{font-size:58.880047pt;}
.fs0{font-size:64.000051pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.200057pt;}
.y2e{bottom:42.667501pt;}
.y2b{bottom:87.947537pt;}
.y2a{bottom:110.667555pt;}
.y29{bottom:133.388107pt;}
.y28{bottom:155.948125pt;}
.y27{bottom:178.668143pt;}
.y26{bottom:201.388161pt;}
.y25{bottom:223.948179pt;}
.y24{bottom:246.668197pt;}
.y23{bottom:269.388216pt;}
.y22{bottom:291.948234pt;}
.y21{bottom:314.668252pt;}
.y20{bottom:337.388270pt;}
.y1f{bottom:359.948288pt;}
.y1e{bottom:382.668306pt;}
.y1d{bottom:405.388324pt;}
.y1c{bottom:427.948342pt;}
.y1b{bottom:450.668361pt;}
.y1a{bottom:473.388379pt;}
.y19{bottom:495.948397pt;}
.y18{bottom:518.668415pt;}
.y17{bottom:541.388433pt;}
.y16{bottom:563.948451pt;}
.y15{bottom:586.668469pt;}
.y14{bottom:609.388488pt;}
.y13{bottom:631.948506pt;}
.y12{bottom:654.668524pt;}
.y11{bottom:677.388542pt;}
.y10{bottom:699.948560pt;}
.yf{bottom:722.668578pt;}
.ye{bottom:745.388596pt;}
.yd{bottom:767.948614pt;}
.yc{bottom:790.668633pt;}
.yb{bottom:813.388651pt;}
.ya{bottom:835.948669pt;}
.y9{bottom:858.668687pt;}
.y8{bottom:881.388705pt;}
.y7{bottom:903.948723pt;}
.y6{bottom:926.668741pt;}
.y5{bottom:949.388760pt;}
.y4{bottom:971.948778pt;}
.y3{bottom:994.668796pt;}
.y2{bottom:1017.388814pt;}
.y1{bottom:1039.948832pt;}
.y2c{bottom:1067.468800pt;}
.h3{height:16.480000pt;}
.h2{height:34.725028pt;}
.h4{height:42.320034pt;}
.h1{height:43.406285pt;}
.h0{height:1122.666667pt;}
.w1{width:162.560000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:37.760000pt;}
.x6{left:73.280059pt;}
.x5{left:82.720066pt;}
.x1{left:105.280084pt;}
.x2{left:144.000115pt;}
.x3{left:182.720146pt;}
.x4{left:220.000176pt;}
.x9{left:258.720207pt;}
.xa{left:297.280238pt;}
.x8{left:392.000314pt;}
}




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