
    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_53a792666f6799f82a92dc15.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_ba3b827c5f06e1c0ad471082.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_5441d14bb5bef22b1e17d6f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_ecd25a8a00661fe966972096.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8189b7fdaa1811c9ecff1067.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_baa1f546d79299fa5f1e74a1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ff021ca50bf385910f1f7376.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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;}
.v1{vertical-align:4.501670px;}
.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;}
}
.ws1{word-spacing:-20.356490px;}
.ws0{word-spacing:-19.087192px;}
.ws2{word-spacing:-16.602255px;}
.ws3{word-spacing:-11.068153px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-7.983476px;}
._4{margin-left:-6.122428px;}
._2{margin-left:-4.502993px;}
._7{margin-left:-3.314504px;}
._5{margin-left:-1.439880px;}
._9{width:2.037543px;}
._1{width:4.224000px;}
._3{width:6.482028px;}
._0{width:9.552284px;}
._8{width:33.453166px;}
._6{width:34.604447px;}
._a{width:165.675110px;}
._b{width:167.634521px;}
.fc3{color:transparent;}
.fc2{color:rgb(208,163,0);}
.fc1{color:rgb(55,160,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.017971px;}
.fs2{font-size:48.018016px;}
.fs5{font-size:54.020354px;}
.fs7{font-size:72.027138px;}
.fs0{font-size:76.843953px;}
.fs8{font-size:84.001650px;}
.fs4{font-size:90.033923px;}
.fs9{font-size:96.021179px;}
.fs6{font-size:102.008434px;}
.fs1{font-size:180.067845px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y10{bottom:3.056999px;}
.yb{bottom:3.124945px;}
.y8{bottom:3.219470px;}
.y3f{bottom:3.322945px;}
.y19{bottom:3.342517px;}
.yf{bottom:19.063004px;}
.ya{bottom:19.130936px;}
.y3e{bottom:19.328951px;}
.yd{bottom:28.575019px;}
.ye{bottom:35.069010px;}
.y3d{bottom:35.334956px;}
.y3c{bottom:51.340961px;}
.y3b{bottom:67.346967px;}
.y3a{bottom:83.352972px;}
.y9{bottom:84.735017px;}
.y39{bottom:99.358978px;}
.y7{bottom:123.255016px;}
.y17{bottom:165.368756px;}
.y38{bottom:179.415013px;}
.y16{bottom:183.375541px;}
.y15{bottom:201.382326px;}
.y14{bottom:219.389110px;}
.y13{bottom:237.395895px;}
.y12{bottom:255.402679px;}
.y11{bottom:273.409464px;}
.yc{bottom:297.563698px;}
.y18{bottom:331.695007px;}
.y1d{bottom:360.922276px;}
.y1c{bottom:385.681605px;}
.y1b{bottom:410.440934px;}
.y2c{bottom:536.341371px;}
.y2b{bottom:561.100700px;}
.y2a{bottom:585.860029px;}
.y29{bottom:610.619357px;}
.y2d{bottom:621.398621px;}
.y20{bottom:641.956295px;}
.y1f{bottom:650.959675px;}
.y37{bottom:687.273349px;}
.y36{bottom:712.032678px;}
.y35{bottom:736.792007px;}
.y34{bottom:761.551335px;}
.y33{bottom:786.310664px;}
.y25{bottom:808.621968px;}
.y32{bottom:811.069993px;}
.y24{bottom:833.381297px;}
.y31{bottom:835.829321px;}
.y23{bottom:858.140626px;}
.y28{bottom:859.463248px;}
.y30{bottom:860.588650px;}
.y22{bottom:882.899955px;}
.y27{bottom:884.222577px;}
.y2f{bottom:885.347979px;}
.y21{bottom:907.659283px;}
.y26{bottom:908.981905px;}
.y2e{bottom:910.107308px;}
.y1e{bottom:937.508303px;}
.y1a{bottom:972.542071px;}
.y5{bottom:1022.464958px;}
.y4{bottom:1048.349711px;}
.y3{bottom:1100.119217px;}
.y2{bottom:1126.003969px;}
.y6{bottom:1172.287909px;}
.h5{height:14.399999px;}
.h7{height:30.239999px;}
.h8{height:43.024102px;}
.hb{height:43.024143px;}
.h6{height:43.888467px;}
.hd{height:45.617115px;}
.ha{height:46.079998px;}
.hc{height:48.402237px;}
.h12{height:52.437726px;}
.h3{height:58.871173px;}
.hf{height:64.536316px;}
.h10{height:81.279178px;}
.h9{height:82.291005px;}
.h11{height:87.763357px;}
.he{height:93.235709px;}
.h13{height:110.519995px;}
.h4{height:164.582011px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:278.279988px;}
.w6{width:448.559981px;}
.w2{width:583.559976px;}
.w3{width:587.519976px;}
.w4{width:589.679975px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:24.479999px;}
.xa{left:53.611544px;}
.xd{left:81.741870px;}
.x6{left:86.286654px;}
.x7{left:98.291158px;}
.x8{left:185.386336px;}
.x9{left:197.390840px;}
.x2{left:212.955261px;}
.x1{left:214.431143px;}
.xc{left:218.670964px;}
.xf{left:234.037471px;}
.xe{left:313.415819px;}
.x5{left:492.917102px;}
.x4{left:494.407509px;}
.xb{left:532.751551px;}
.x10{left:549.615931px;}
.x11{left:569.871467px;}
.x12{left:600.486518px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.001485pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-18.094658pt;}
.ws0{word-spacing:-16.966393pt;}
.ws2{word-spacing:-14.757560pt;}
.ws3{word-spacing:-9.838358pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-7.096424pt;}
._4{margin-left:-5.442158pt;}
._2{margin-left:-4.002661pt;}
._7{margin-left:-2.946226pt;}
._5{margin-left:-1.279894pt;}
._9{width:1.811149pt;}
._1{width:3.754667pt;}
._3{width:5.761803pt;}
._0{width:8.490919pt;}
._8{width:29.736148pt;}
._6{width:30.759508pt;}
._a{width:147.266764pt;}
._b{width:149.008463pt;}
.fs3{font-size:42.682641pt;}
.fs2{font-size:42.682681pt;}
.fs5{font-size:48.018092pt;}
.fs7{font-size:64.024123pt;}
.fs0{font-size:68.305736pt;}
.fs8{font-size:74.668133pt;}
.fs4{font-size:80.030153pt;}
.fs9{font-size:85.352159pt;}
.fs6{font-size:90.674164pt;}
.fs1{font-size:160.060307pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y10{bottom:2.717332pt;}
.yb{bottom:2.777729pt;}
.y8{bottom:2.861751pt;}
.y3f{bottom:2.953729pt;}
.y19{bottom:2.971126pt;}
.yf{bottom:16.944893pt;}
.ya{bottom:17.005276pt;}
.y3e{bottom:17.181289pt;}
.yd{bottom:25.400017pt;}
.ye{bottom:31.172453pt;}
.y3d{bottom:31.408850pt;}
.y3c{bottom:45.636410pt;}
.y3b{bottom:59.863970pt;}
.y3a{bottom:74.091531pt;}
.y9{bottom:75.320015pt;}
.y39{bottom:88.319091pt;}
.y7{bottom:109.560014pt;}
.y17{bottom:146.994450pt;}
.y38{bottom:159.480012pt;}
.y16{bottom:163.000481pt;}
.y15{bottom:179.006512pt;}
.y14{bottom:195.012542pt;}
.y13{bottom:211.018573pt;}
.y12{bottom:227.024604pt;}
.y11{bottom:243.030634pt;}
.yc{bottom:264.501065pt;}
.y18{bottom:294.840006pt;}
.y1d{bottom:320.819801pt;}
.y1c{bottom:342.828093pt;}
.y1b{bottom:364.836385pt;}
.y2c{bottom:476.747885pt;}
.y2b{bottom:498.756178pt;}
.y2a{bottom:520.764470pt;}
.y29{bottom:542.772762pt;}
.y2d{bottom:552.354330pt;}
.y20{bottom:570.627818pt;}
.y1f{bottom:578.630822pt;}
.y37{bottom:610.909644pt;}
.y36{bottom:632.917936pt;}
.y35{bottom:654.926228pt;}
.y34{bottom:676.934520pt;}
.y33{bottom:698.942812pt;}
.y25{bottom:718.775083pt;}
.y32{bottom:720.951105pt;}
.y24{bottom:740.783375pt;}
.y31{bottom:742.959397pt;}
.y23{bottom:762.791667pt;}
.y28{bottom:763.967331pt;}
.y30{bottom:764.967689pt;}
.y22{bottom:784.799960pt;}
.y27{bottom:785.975624pt;}
.y2f{bottom:786.975981pt;}
.y21{bottom:806.808252pt;}
.y26{bottom:807.983916pt;}
.y2e{bottom:808.984273pt;}
.y1e{bottom:833.340713pt;}
.y1a{bottom:864.481841pt;}
.y5{bottom:908.857741pt;}
.y4{bottom:931.866410pt;}
.y3{bottom:977.883748pt;}
.y2{bottom:1000.892417pt;}
.y6{bottom:1042.033697pt;}
.h5{height:12.799999pt;}
.h7{height:26.879999pt;}
.h8{height:38.243646pt;}
.hb{height:38.243682pt;}
.h6{height:39.011971pt;}
.hd{height:40.548547pt;}
.ha{height:40.959998pt;}
.hc{height:43.024211pt;}
.h12{height:46.611312pt;}
.h3{height:52.329932pt;}
.hf{height:57.365614pt;}
.h10{height:72.248158pt;}
.h9{height:73.147560pt;}
.h11{height:78.011873pt;}
.he{height:82.876186pt;}
.h13{height:98.239996pt;}
.h4{height:146.295121pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:247.359990pt;}
.w6{width:398.719983pt;}
.w2{width:518.719978pt;}
.w3{width:522.239978pt;}
.w4{width:524.159978pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:21.759999pt;}
.xa{left:47.654706pt;}
.xd{left:72.659440pt;}
.x6{left:76.699248pt;}
.x7{left:87.369918pt;}
.x8{left:164.787854pt;}
.x9{left:175.458525pt;}
.x2{left:189.293565pt;}
.x1{left:190.605461pt;}
.xc{left:194.374190pt;}
.xf{left:208.033308pt;}
.xe{left:278.591839pt;}
.x5{left:438.148535pt;}
.x4{left:439.473342pt;}
.xb{left:473.556934pt;}
.x10{left:488.547495pt;}
.x11{left:506.552415pt;}
.x12{left:533.765794pt;}
}




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