
    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_90be6b6fa2168ae0c945d672.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_df71655aa27c8af3e7b51ab6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.158000;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_ef586060bcefd0cc8d7701fe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_87677f7aef4e8185eb839d25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.762000;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_90be6b6fa2168ae0c945d672.woff')format("woff");}.ff5{font-family:ff5;line-height:1.171387;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_181635a0cdf5a3d340216fda.woff')format("woff");}.ff6{font-family:ff6;line-height:1.138000;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:ff7;src:url('chunks/assets/font_87677f7aef4e8185eb839d25.woff')format("woff");}.ff7{font-family:ff7;line-height:0.762000;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;}
.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:-0.229712px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-21.087549px;}
._0{margin-left:-11.057983px;}
._4{margin-left:-5.786191px;}
._7{margin-left:-4.257844px;}
._6{margin-left:-2.661395px;}
._1{margin-left:-1.017482px;}
._3{width:1.760142px;}
._5{width:22.400535px;}
.fc3{color:transparent;}
.fc2{color:rgb(252,59,99);}
.fc1{color:rgb(237,51,143);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:71.981782px;}
.fs0{font-size:92.069362px;}
.fs5{font-size:98.650191px;}
.fs6{font-size:101.944198px;}
.fs9{font-size:106.442673px;}
.fs4{font-size:118.567008px;}
.fs3{font-size:205.822907px;}
.fs8{font-size:211.389707px;}
.fs1{font-size:229.711865px;}
.fs2{font-size:247.707310px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000026px;}
.y2{bottom:7.217658px;}
.y32{bottom:7.241304px;}
.y24{bottom:7.721412px;}
.y17{bottom:7.999761px;}
.ye{bottom:9.430742px;}
.y26{bottom:9.534343px;}
.y2e{bottom:13.895999px;}
.y1c{bottom:34.695025px;}
.yf{bottom:35.775025px;}
.y23{bottom:42.146218px;}
.y16{bottom:42.424568px;}
.y22{bottom:76.571024px;}
.y15{bottom:76.849374px;}
.y2d{bottom:87.824640px;}
.y21{bottom:110.995830px;}
.y14{bottom:111.274180px;}
.y20{bottom:145.420636px;}
.y13{bottom:145.698986px;}
.y2c{bottom:161.753281px;}
.y1f{bottom:179.845443px;}
.y12{bottom:180.123792px;}
.y1e{bottom:214.270249px;}
.y11{bottom:214.548598px;}
.y1d{bottom:248.695055px;}
.y10{bottom:248.973405px;}
.y1{bottom:308.655014px;}
.y31{bottom:344.295012px;}
.y2a{bottom:420.066775px;}
.yc{bottom:426.765439px;}
.y29{bottom:492.048556px;}
.yb{bottom:498.747221px;}
.y28{bottom:564.030338px;}
.ya{bottom:570.729002px;}
.y27{bottom:636.012119px;}
.y9{bottom:723.710086px;}
.y8{bottom:803.564875px;}
.y7{bottom:883.419664px;}
.y6{bottom:1045.378672px;}
.y30{bottom:1126.297726px;}
.y5{bottom:1129.732323px;}
.y2f{bottom:1198.279507px;}
.y4{bottom:1209.587112px;}
.y2b{bottom:1297.934972px;}
.y25{bottom:1520.414963px;}
.yd{bottom:1525.454963px;}
.y35{bottom:1681.189018px;}
.y1b{bottom:1681.947685px;}
.y34{bottom:1705.932756px;}
.y1a{bottom:1706.691422px;}
.y18{bottom:1715.114737px;}
.y36{bottom:1718.627789px;}
.y33{bottom:1730.676493px;}
.y19{bottom:1731.435160px;}
.h10{height:28.439999px;}
.h2{height:31.319999px;}
.h8{height:41.039998px;}
.hd{height:67.026005px;}
.h3{height:85.730602px;}
.hb{height:91.858356px;}
.hc{height:94.925579px;}
.h11{height:98.778801px;}
.h9{height:110.403947px;}
.h7{height:191.003657px;}
.hf{height:196.169648px;}
.he{height:202.319992px;}
.h5{height:213.172611px;}
.h6{height:229.872384px;}
.ha{height:274.679989px;}
.h1{height:1785.000000px;}
.h4{height:1785.374896px;}
.h0{height:1785.374922px;}
.w7{width:339.839986px;}
.w2{width:340.199986px;}
.w4{width:682.199972px;}
.w9{width:848.159965px;}
.w6{width:952.199960px;}
.w5{width:952.559960px;}
.w8{width:1037.519957px;}
.w3{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x1e{left:56.389758px;}
.xa{left:94.299862px;}
.x1b{left:103.547183px;}
.x8{left:106.249962px;}
.x9{left:107.532841px;}
.x19{left:110.734817px;}
.x1a{left:112.017695px;}
.x1d{left:117.719995px;}
.xf{left:120.891089px;}
.x20{left:122.808362px;}
.x10{left:128.790812px;}
.x12{left:133.936868px;}
.x16{left:150.839994px;}
.xc{left:158.759993px;}
.x21{left:191.222687px;}
.xd{left:198.009720px;}
.x22{left:220.319991px;}
.x15{left:270.439902px;}
.x23{left:275.334731px;}
.xe{left:293.239909px;}
.x18{left:305.999987px;}
.x1f{left:311.205328px;}
.x13{left:319.829218px;}
.xb{left:325.439986px;}
.x11{left:342.348241px;}
.x1{left:446.039981px;}
.x17{left:457.199981px;}
.x1c{left:467.708921px;}
.x2{left:511.735993px;}
.x5{left:516.902654px;}
.x7{left:522.086889px;}
.x6{left:580.905986px;}
.x4{left:608.742691px;}
.x3{left:714.184759px;}
.x14{left:794.236406px;}
.x24{left:796.003790px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-0.204188pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-18.744488pt;}
._0{margin-left:-9.829318pt;}
._4{margin-left:-5.143281pt;}
._7{margin-left:-3.784750pt;}
._6{margin-left:-2.365684pt;}
._1{margin-left:-0.904429pt;}
._3{width:1.564571pt;}
._5{width:19.911587pt;}
.fs7{font-size:63.983806pt;}
.fs0{font-size:81.839433pt;}
.fs5{font-size:87.689059pt;}
.fs6{font-size:90.617065pt;}
.fs9{font-size:94.615710pt;}
.fs4{font-size:105.392896pt;}
.fs3{font-size:182.953695pt;}
.fs8{font-size:187.901962pt;}
.fs1{font-size:204.188324pt;}
.fs2{font-size:220.184276pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000023pt;}
.y2{bottom:6.415696pt;}
.y32{bottom:6.436715pt;}
.y24{bottom:6.863477pt;}
.y17{bottom:7.110899pt;}
.ye{bottom:8.382882pt;}
.y26{bottom:8.474971pt;}
.y2e{bottom:12.351999pt;}
.y1c{bottom:30.840022pt;}
.yf{bottom:31.800022pt;}
.y23{bottom:37.463305pt;}
.y16{bottom:37.710727pt;}
.y22{bottom:68.063133pt;}
.y15{bottom:68.310554pt;}
.y2d{bottom:78.066347pt;}
.y21{bottom:98.662960pt;}
.y14{bottom:98.910382pt;}
.y20{bottom:129.262788pt;}
.y13{bottom:129.510210pt;}
.y2c{bottom:143.780694pt;}
.y1f{bottom:159.862616pt;}
.y12{bottom:160.110038pt;}
.y1e{bottom:190.462443pt;}
.y11{bottom:190.709865pt;}
.y1d{bottom:221.062271pt;}
.y10{bottom:221.309693pt;}
.y1{bottom:274.360012pt;}
.y31{bottom:306.040011pt;}
.y2a{bottom:373.392689pt;}
.yc{bottom:379.347057pt;}
.y29{bottom:437.376494pt;}
.yb{bottom:443.330863pt;}
.y28{bottom:501.360300pt;}
.ya{bottom:507.314669pt;}
.y27{bottom:565.344106pt;}
.y9{bottom:643.297854pt;}
.y8{bottom:714.279889pt;}
.y7{bottom:785.261923pt;}
.y6{bottom:929.225487pt;}
.y30{bottom:1001.153534pt;}
.y5{bottom:1004.206509pt;}
.y2f{bottom:1065.137340pt;}
.y4{bottom:1075.188544pt;}
.y2b{bottom:1153.719975pt;}
.y25{bottom:1351.479967pt;}
.yd{bottom:1355.959967pt;}
.y35{bottom:1494.390238pt;}
.y1b{bottom:1495.064609pt;}
.y34{bottom:1516.384672pt;}
.y1a{bottom:1517.059042pt;}
.y18{bottom:1524.546433pt;}
.y36{bottom:1527.669145pt;}
.y33{bottom:1538.379105pt;}
.y19{bottom:1539.053475pt;}
.h10{height:25.279999pt;}
.h2{height:27.839999pt;}
.h8{height:36.479998pt;}
.hd{height:59.578671pt;}
.h3{height:76.204979pt;}
.hb{height:81.651872pt;}
.hc{height:84.378292pt;}
.h11{height:87.803378pt;}
.h9{height:98.136842pt;}
.h7{height:169.781029pt;}
.hf{height:174.373021pt;}
.he{height:179.839993pt;}
.h5{height:189.486765pt;}
.h6{height:204.331008pt;}
.ha{height:244.159990pt;}
.h1{height:1586.666667pt;}
.h4{height:1586.999907pt;}
.h0{height:1586.999931pt;}
.w7{width:302.079987pt;}
.w2{width:302.399987pt;}
.w4{width:606.399975pt;}
.w9{width:753.919969pt;}
.w6{width:846.399965pt;}
.w5{width:846.719965pt;}
.w8{width:922.239962pt;}
.w3{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:50.124229pt;}
.xa{left:83.822099pt;}
.x1b{left:92.041940pt;}
.x8{left:94.444411pt;}
.x9{left:95.584747pt;}
.x19{left:98.430948pt;}
.x1a{left:99.571285pt;}
.x1d{left:104.639996pt;}
.xf{left:107.458746pt;}
.x20{left:109.162988pt;}
.x10{left:114.480722pt;}
.x12{left:119.054994pt;}
.x16{left:134.079994pt;}
.xc{left:141.119994pt;}
.x21{left:169.975721pt;}
.xd{left:176.008640pt;}
.x22{left:195.839992pt;}
.x15{left:240.391024pt;}
.x23{left:244.741983pt;}
.xe{left:260.657697pt;}
.x18{left:271.999989pt;}
.x1f{left:276.626958pt;}
.x13{left:284.292639pt;}
.xb{left:289.279988pt;}
.x11{left:304.309548pt;}
.x1{left:396.479983pt;}
.x17{left:406.399983pt;}
.x1c{left:415.741263pt;}
.x2{left:454.876438pt;}
.x5{left:459.469026pt;}
.x7{left:464.077235pt;}
.x6{left:516.360877pt;}
.x4{left:541.104614pt;}
.x3{left:634.830897pt;}
.x14{left:705.987917pt;}
.x24{left:707.558925pt;}
}




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