
    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_3036cccdeef22f90d66c89d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_cdf2c1e39b556351e62fe092.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_eb52c063f34761d2ebc05454.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_d12ebdbce2c947b6668d9f3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.851562;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:108.000003px;}
.ls2{letter-spacing:108.008242px;}
.ls1{letter-spacing:108.014066px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-39.888001px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:68.126065px;}
._7{margin-left:-18.912000px;}
._0{margin-left:-17.760000px;}
._a{margin-left:-15.840001px;}
._c{margin-left:-14.208001px;}
._2{margin-left:-13.200000px;}
._6{margin-left:-10.656000px;}
._8{margin-left:-9.240000px;}
._5{margin-left:-7.422210px;}
._9{margin-left:-6.210098px;}
._1{margin-left:-4.320000px;}
._3{margin-left:-2.592000px;}
._b{width:3.360373px;}
._4{width:108.002340px;}
.fc6{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc5{color:rgb(28,58,132);}
.fc2{color:rgb(255,192,0);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(28,58,131);}
.fs4{font-size:96.000006px;}
.fs1{font-size:144.000005px;}
.fs3{font-size:167.999999px;}
.fs2{font-size:192.000012px;}
.fs0{font-size:240.000002px;}
.y0{bottom:0.000000px;}
.y39{bottom:43.606618px;}
.y42{bottom:56.513743px;}
.y7{bottom:75.381085px;}
.y1a{bottom:88.388212px;}
.y41{bottom:106.193745px;}
.y2b{bottom:116.348175px;}
.y14{bottom:117.809134px;}
.y59{bottom:121.234455px;}
.y54{bottom:125.108157px;}
.y32{bottom:134.747360px;}
.y27{bottom:144.308161px;}
.y19{bottom:146.348203px;}
.y6{bottom:152.061099px;}
.y43{bottom:155.873747px;}
.y40{bottom:170.873777px;}
.y58{bottom:170.914446px;}
.y13{bottom:171.188192px;}
.y2a{bottom:174.308166px;}
.yd{bottom:181.286935px;}
.y1f{bottom:183.939291px;}
.y31{bottom:184.427361px;}
.y53{bottom:189.788178px;}
.y38{bottom:195.908144px;}
.y5{bottom:201.741101px;}
.y23{bottom:202.268163px;}
.y18{bottom:204.308193px;}
.y26{bottom:217.268182px;}
.y3f{bottom:220.553779px;}
.y4c{bottom:225.634481px;}
.y30{bottom:234.107363px;}
.yb{bottom:235.289029px;}
.y12{bottom:235.868202px;}
.y52{bottom:239.468202px;}
.y37{bottom:245.588157px;}
.y29{bottom:247.268164px;}
.y57{bottom:247.594443px;}
.y1e{bottom:256.899312px;}
.y17{bottom:262.268184px;}
.y3e{bottom:270.233780px;}
.y22{bottom:275.228173px;}
.y48{bottom:275.314539px;}
.y4{bottom:278.421092px;}
.y2f{bottom:283.787376px;}
.y25{bottom:290.228158px;}
.y4b{bottom:290.314513px;}
.y36{bottom:295.268147px;}
.y56{bottom:297.274444px;}
.y11{bottom:300.548166px;}
.y51{bottom:304.148166px;}
.y28{bottom:305.228178px;}
.ya{bottom:319.529032px;}
.y47{bottom:324.994518px;}
.y3{bottom:328.101093px;}
.y1d{bottom:329.859300px;}
.y2e{bottom:333.467389px;}
.y3d{bottom:334.913756px;}
.y4a{bottom:339.994504px;}
.y21{bottom:348.188149px;}
.y50{bottom:353.828157px;}
.y35{bottom:359.948146px;}
.y24{bottom:363.188146px;}
.y10{bottom:365.228153px;}
.y16{bottom:378.188165px;}
.y2d{bottom:383.147390px;}
.y3c{bottom:384.593758px;}
.y46{bottom:389.674505px;}
.y9{bottom:400.769031px;}
.y1c{bottom:402.819281px;}
.y49{bottom:404.674502px;}
.y34{bottom:409.628147px;}
.yf{bottom:414.908144px;}
.y4f{bottom:418.508144px;}
.y20{bottom:421.148148px;}
.y3b{bottom:434.273759px;}
.y15{bottom:436.148150px;}
.y45{bottom:454.354497px;}
.y4e{bottom:468.188134px;}
.y2{bottom:476.639753px;}
.y2c{bottom:487.547371px;}
.y1b{bottom:487.779281px;}
.ye{bottom:494.108139px;}
.y33{bottom:506.348135px;}
.y3a{bottom:515.241018px;}
.y4d{bottom:517.868136px;}
.y55{bottom:518.039749px;}
.y44{bottom:519.034491px;}
.y1{bottom:559.439744px;}
.yc{bottom:682.400550px;}
.y8{bottom:716.160005px;}
.h7{height:69.937504px;}
.h9{height:104.835941px;}
.h2{height:104.906253px;}
.h8{height:115.312504px;}
.h4{height:122.308593px;}
.h5{height:122.390625px;}
.h6{height:139.781259px;}
.h3{height:139.875009px;}
.h1{height:174.726564px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:38.326772px;}
.xf{left:69.710464px;}
.x4{left:73.313980px;}
.xd{left:77.341536px;}
.x3{left:83.513396px;}
.x1{left:85.346463px;}
.x5{left:87.710465px;}
.x2{left:109.312563px;}
.x7{left:111.901345px;}
.xa{left:123.521488px;}
.x6{left:127.313982px;}
.xe{left:140.341538px;}
.xb{left:163.125005px;}
.x8{left:181.313983px;}
.x10{left:217.125007px;}
.x9{left:235.313985px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:96.000003pt;}
.ls2{letter-spacing:96.007326pt;}
.ls1{letter-spacing:96.012503pt;}
.ws1{word-spacing:-35.456001pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:60.556502pt;}
._7{margin-left:-16.810667pt;}
._0{margin-left:-15.786667pt;}
._a{margin-left:-14.080000pt;}
._c{margin-left:-12.629334pt;}
._2{margin-left:-11.733333pt;}
._6{margin-left:-9.472000pt;}
._8{margin-left:-8.213333pt;}
._5{margin-left:-6.597520pt;}
._9{margin-left:-5.520087pt;}
._1{margin-left:-3.840000pt;}
._3{margin-left:-2.304000pt;}
._b{width:2.986999pt;}
._4{width:96.002080pt;}
.fs4{font-size:85.333339pt;}
.fs1{font-size:128.000004pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:170.666677pt;}
.fs0{font-size:213.333335pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:38.761438pt;}
.y42{bottom:50.234439pt;}
.y7{bottom:67.005409pt;}
.y1a{bottom:78.567299pt;}
.y41{bottom:94.394440pt;}
.y2b{bottom:103.420600pt;}
.y14{bottom:104.719230pt;}
.y59{bottom:107.763960pt;}
.y54{bottom:111.207251pt;}
.y32{bottom:119.775431pt;}
.y27{bottom:128.273921pt;}
.y19{bottom:130.087291pt;}
.y6{bottom:135.165421pt;}
.y43{bottom:138.554441pt;}
.y40{bottom:151.887802pt;}
.y58{bottom:151.923952pt;}
.y13{bottom:152.167282pt;}
.y2a{bottom:154.940592pt;}
.yd{bottom:161.143942pt;}
.y1f{bottom:163.501592pt;}
.y31{bottom:163.935432pt;}
.y53{bottom:168.700602pt;}
.y38{bottom:174.140573pt;}
.y5{bottom:179.325423pt;}
.y23{bottom:179.793923pt;}
.y18{bottom:181.607283pt;}
.y26{bottom:193.127273pt;}
.y3f{bottom:196.047803pt;}
.y4c{bottom:200.563983pt;}
.y30{bottom:208.095434pt;}
.yb{bottom:209.145804pt;}
.y12{bottom:209.660624pt;}
.y52{bottom:212.860624pt;}
.y37{bottom:218.300584pt;}
.y29{bottom:219.793924pt;}
.y57{bottom:220.083949pt;}
.y1e{bottom:228.354944pt;}
.y17{bottom:233.127274pt;}
.y3e{bottom:240.207805pt;}
.y22{bottom:244.647265pt;}
.y48{bottom:244.724035pt;}
.y4{bottom:247.485415pt;}
.y2f{bottom:252.255445pt;}
.y25{bottom:257.980585pt;}
.y4b{bottom:258.057345pt;}
.y36{bottom:262.460575pt;}
.y56{bottom:264.243950pt;}
.y11{bottom:267.153926pt;}
.y51{bottom:270.353926pt;}
.y28{bottom:271.313936pt;}
.ya{bottom:284.025806pt;}
.y47{bottom:288.884016pt;}
.y3{bottom:291.645416pt;}
.y1d{bottom:293.208266pt;}
.y2e{bottom:296.415456pt;}
.y3d{bottom:297.701116pt;}
.y4a{bottom:302.217337pt;}
.y21{bottom:309.500577pt;}
.y50{bottom:314.513917pt;}
.y35{bottom:319.953907pt;}
.y24{bottom:322.833907pt;}
.y10{bottom:324.647247pt;}
.y16{bottom:336.167258pt;}
.y2d{bottom:340.575458pt;}
.y3c{bottom:341.861118pt;}
.y46{bottom:346.377338pt;}
.y9{bottom:356.239138pt;}
.y1c{bottom:358.061583pt;}
.y49{bottom:359.710668pt;}
.y34{bottom:364.113909pt;}
.yf{bottom:368.807239pt;}
.y4f{bottom:372.007239pt;}
.y20{bottom:374.353909pt;}
.y3b{bottom:386.021119pt;}
.y15{bottom:387.687244pt;}
.y45{bottom:403.870664pt;}
.y4e{bottom:416.167230pt;}
.y2{bottom:423.679781pt;}
.y2c{bottom:433.375441pt;}
.y1b{bottom:433.581583pt;}
.ye{bottom:439.207235pt;}
.y33{bottom:450.087231pt;}
.y3a{bottom:457.992016pt;}
.y4d{bottom:460.327232pt;}
.y55{bottom:460.479777pt;}
.y44{bottom:461.363992pt;}
.y1{bottom:497.279773pt;}
.yc{bottom:606.578266pt;}
.y8{bottom:636.586671pt;}
.h7{height:62.166671pt;}
.h9{height:93.187503pt;}
.h2{height:93.250003pt;}
.h8{height:102.500003pt;}
.h4{height:108.718750pt;}
.h5{height:108.791666pt;}
.h6{height:124.250008pt;}
.h3{height:124.333341pt;}
.h1{height:155.312501pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:34.068242pt;}
.xf{left:61.964857pt;}
.x4{left:65.167982pt;}
.xd{left:68.748032pt;}
.x3{left:74.234129pt;}
.x1{left:75.863522pt;}
.x5{left:77.964857pt;}
.x2{left:97.166723pt;}
.x7{left:99.467862pt;}
.xa{left:109.796879pt;}
.x6{left:113.167984pt;}
.xe{left:124.748034pt;}
.xb{left:145.000005pt;}
.x8{left:161.167985pt;}
.x10{left:193.000006pt;}
.x9{left:209.167987pt;}
}




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