
    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_214a2148f313c29c505a6bc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_bf6799de95e91d6d6aca6504.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_aea7419b61f2f067cf61e5a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_f2336f54f05325c0cc7dc9b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.732000;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.336010px;}
.ls2{letter-spacing:1.458000px;}
.ls1{letter-spacing:931.319000px;}
.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:-21.129671px;}
.ws6{word-spacing:-16.416000px;}
.ws2{word-spacing:-14.958000px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:-10.508889px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:312.696000px;}
._d{margin-left:-5.819832px;}
._7{margin-left:-3.309610px;}
._3{margin-left:-2.203242px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._b{width:4.218640px;}
._f{width:5.334209px;}
._c{width:7.217807px;}
._9{width:8.262000px;}
._a{width:9.424511px;}
._8{width:10.831333px;}
._e{width:12.559452px;}
._10{width:13.598605px;}
._4{width:16.251447px;}
._14{width:17.336209px;}
._6{width:19.264040px;}
._13{width:27.725249px;}
._12{width:33.177481px;}
._5{width:35.606955px;}
._15{width:242.628724px;}
._11{width:339.984000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y25{bottom:46.734370px;}
.y24{bottom:59.015622px;}
.y23{bottom:71.302734px;}
.y49{bottom:121.898437px;}
.y21{bottom:136.312419px;}
.y48{bottom:152.554687px;}
.y20{bottom:155.214768px;}
.y1f{bottom:174.117117px;}
.y1e{bottom:193.013607px;}
.y47{bottom:208.166016px;}
.y1d{bottom:211.915956px;}
.y1c{bottom:230.812446px;}
.y46{bottom:238.822266px;}
.y1b{bottom:263.214795px;}
.y1a{bottom:282.117144px;}
.y45{bottom:294.427567px;}
.y19{bottom:301.013634px;}
.y44{bottom:313.329916px;}
.y18{bottom:319.915983px;}
.y43{bottom:332.232265px;}
.y17{bottom:338.812473px;}
.y42{bottom:351.128755px;}
.y16{bottom:357.714822px;}
.y41{bottom:370.031104px;}
.y15{bottom:376.617171px;}
.y40{bottom:388.927594px;}
.y3f{bottom:407.829943px;}
.y14{bottom:409.013661px;}
.y4d{bottom:421.610343px;}
.y13{bottom:427.916010px;}
.y3e{bottom:440.232293px;}
.y12{bottom:446.812500px;}
.y4c{bottom:452.266593px;}
.y4b{bottom:458.854500px;}
.y3d{bottom:459.128782px;}
.y59{bottom:461.712891px;}
.y11{bottom:477.468750px;}
.y3c{bottom:478.031131px;}
.y58{bottom:490.458984px;}
.y3b{bottom:496.927621px;}
.y3a{bottom:529.329971px;}
.y57{bottom:546.070313px;}
.y10{bottom:546.568359px;}
.y39{bottom:548.232319px;}
.yf{bottom:563.367185px;}
.y38{bottom:567.128809px;}
.y56{bottom:576.726562px;}
.ye{bottom:580.171870px;}
.y37{bottom:586.031159px;}
.yd{bottom:601.470703px;}
.y36{bottom:604.927649px;}
.y35{bottom:623.829997px;}
.yc{bottom:627.269532px;}
.y55{bottom:632.337879px;}
.y34{bottom:642.732346px;}
.y54{bottom:651.234369px;}
.y33{bottom:661.628837px;}
.y53{bottom:670.136718px;}
.yb{bottom:677.525410px;}
.y32{bottom:680.531185px;}
.ya{bottom:690.755874px;}
.y31{bottom:699.427676px;}
.y52{bottom:700.792968px;}
.y9{bottom:703.986338px;}
.y8{bottom:717.216802px;}
.y30{bottom:718.330025px;}
.y7{bottom:730.441407px;}
.y2f{bottom:737.232373px;}
.y6{bottom:751.400391px;}
.y22{bottom:755.900391px;}
.y2e{bottom:756.128864px;}
.y51{bottom:756.398427px;}
.y50{bottom:775.300776px;}
.y2d{bottom:788.531213px;}
.y5{bottom:793.710931px;}
.y4f{bottom:794.203125px;}
.y2c{bottom:807.427703px;}
.y4e{bottom:824.853516px;}
.y2b{bottom:826.330052px;}
.y4{bottom:831.269532px;}
.y2a{bottom:845.232401px;}
.y29{bottom:864.128891px;}
.y28{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y27{bottom:901.927730px;}
.y26{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4a{bottom:974.730470px;}
.h7{height:26.244141px;}
.h5{height:27.557629px;}
.h8{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.h9{height:35.617086px;}
.h2{height:39.366211px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.ha{height:476.109000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x6{left:138.287109px;}
.x7{left:146.039062px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.298676pt;}
.ls2{letter-spacing:1.296000pt;}
.ls1{letter-spacing:827.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws6{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.296000pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:-9.341234pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:277.952000pt;}
._d{margin-left:-5.173184pt;}
._7{margin-left:-2.941875pt;}
._3{margin-left:-1.958438pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._b{width:3.749902pt;}
._f{width:4.741519pt;}
._c{width:6.415828pt;}
._9{width:7.344000pt;}
._a{width:8.377343pt;}
._8{width:9.627852pt;}
._e{width:11.163957pt;}
._10{width:12.087648pt;}
._4{width:14.445730pt;}
._14{width:15.409963pt;}
._6{width:17.123591pt;}
._13{width:24.644666pt;}
._12{width:29.491094pt;}
._5{width:31.650626pt;}
._15{width:215.669977pt;}
._11{width:302.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:41.541662pt;}
.y24{bottom:52.458331pt;}
.y23{bottom:63.380208pt;}
.y49{bottom:108.354167pt;}
.y21{bottom:121.166595pt;}
.y48{bottom:135.604167pt;}
.y20{bottom:137.968683pt;}
.y1f{bottom:154.770771pt;}
.y1e{bottom:171.567651pt;}
.y47{bottom:185.036459pt;}
.y1d{bottom:188.369739pt;}
.y1c{bottom:205.166619pt;}
.y46{bottom:212.286459pt;}
.y1b{bottom:233.968707pt;}
.y1a{bottom:250.770795pt;}
.y45{bottom:261.713393pt;}
.y19{bottom:267.567675pt;}
.y44{bottom:278.515481pt;}
.y18{bottom:284.369763pt;}
.y43{bottom:295.317569pt;}
.y17{bottom:301.166643pt;}
.y42{bottom:312.114449pt;}
.y16{bottom:317.968731pt;}
.y41{bottom:328.916537pt;}
.y15{bottom:334.770819pt;}
.y40{bottom:345.713417pt;}
.y3f{bottom:362.515505pt;}
.y14{bottom:363.567699pt;}
.y4d{bottom:374.764749pt;}
.y13{bottom:380.369787pt;}
.y3e{bottom:391.317593pt;}
.y12{bottom:397.166667pt;}
.y4c{bottom:402.014749pt;}
.y4b{bottom:407.870667pt;}
.y3d{bottom:408.114473pt;}
.y59{bottom:410.411459pt;}
.y11{bottom:424.416667pt;}
.y3c{bottom:424.916561pt;}
.y58{bottom:435.963541pt;}
.y3b{bottom:441.713441pt;}
.y3a{bottom:470.515529pt;}
.y57{bottom:485.395833pt;}
.y10{bottom:485.838541pt;}
.y39{bottom:487.317617pt;}
.yf{bottom:500.770831pt;}
.y38{bottom:504.114497pt;}
.y56{bottom:512.645833pt;}
.ye{bottom:515.708329pt;}
.y37{bottom:520.916585pt;}
.yd{bottom:534.640625pt;}
.y36{bottom:537.713465pt;}
.y35{bottom:554.515553pt;}
.yc{bottom:557.572917pt;}
.y55{bottom:562.078115pt;}
.y34{bottom:571.317641pt;}
.y54{bottom:578.874995pt;}
.y33{bottom:588.114521pt;}
.y53{bottom:595.677083pt;}
.yb{bottom:602.244809pt;}
.y32{bottom:604.916609pt;}
.ya{bottom:614.005221pt;}
.y31{bottom:621.713489pt;}
.y52{bottom:622.927083pt;}
.y9{bottom:625.765634pt;}
.y8{bottom:637.526046pt;}
.y30{bottom:638.515577pt;}
.y7{bottom:649.281251pt;}
.y2f{bottom:655.317665pt;}
.y6{bottom:667.911459pt;}
.y22{bottom:671.911459pt;}
.y2e{bottom:672.114545pt;}
.y51{bottom:672.354157pt;}
.y50{bottom:689.156245pt;}
.y2d{bottom:700.916633pt;}
.y5{bottom:705.520828pt;}
.y4f{bottom:705.958333pt;}
.y2c{bottom:717.713513pt;}
.y4e{bottom:733.203125pt;}
.y2b{bottom:734.515601pt;}
.y4{bottom:738.906251pt;}
.y2a{bottom:751.317689pt;}
.y29{bottom:768.114569pt;}
.y28{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y27{bottom:801.713537pt;}
.y26{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4a{bottom:866.427084pt;}
.h7{height:23.328125pt;}
.h5{height:24.495670pt;}
.h8{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.h9{height:31.659632pt;}
.h2{height:34.992188pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.ha{height:423.208000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x6{left:122.921875pt;}
.x7{left:129.812500pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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