
    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_65d959bce1efa0c951a647ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_53a36f7ab224b37576acd56e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_d76e8c9495cebf72dcde4c98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_c9e89f4f14dd09afdd0386e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_79333831a8e13eacff715c79.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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_e219637df4eed61243843faa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.889000;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);}
.v1{vertical-align:-9.414000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000960px;}
.lsd{letter-spacing:0.840017px;}
.ls2{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.986766px;}
.lsf{letter-spacing:2.987108px;}
.ls15{letter-spacing:2.987675px;}
.lsc{letter-spacing:2.988780px;}
.ls1{letter-spacing:2.990725px;}
.ls11{letter-spacing:2.993675px;}
.ls8{letter-spacing:16.490725px;}
.lsa{letter-spacing:17.114725px;}
.ls13{letter-spacing:20.918100px;}
.ls12{letter-spacing:20.924640px;}
.ls7{letter-spacing:20.924725px;}
.ls9{letter-spacing:22.154725px;}
.ls5{letter-spacing:24.080100px;}
.ls4{letter-spacing:24.080725px;}
.ls14{letter-spacing:26.546100px;}
.ls6{letter-spacing:27.614725px;}
.ls3{letter-spacing:29.887409px;}
.lse{letter-spacing:29.890200px;}
.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;}
}
.ws5{word-spacing:-14.943900px;}
.ws12{word-spacing:-14.920027px;}
.ws3{word-spacing:-11.955150px;}
.ws41{word-spacing:-1.195512px;}
.ws44{word-spacing:-0.657532px;}
.ws1f{word-spacing:-0.059776px;}
.ws4f{word-spacing:-0.053798px;}
.ws54{word-spacing:-0.001446px;}
.ws29{word-spacing:0.000000px;}
.ws2b{word-spacing:0.119551px;}
.ws34{word-spacing:0.345025px;}
.ws32{word-spacing:0.358654px;}
.ws25{word-spacing:1.554166px;}
.ws46{word-spacing:1.733492px;}
.wsc{word-spacing:1.912819px;}
.ws27{word-spacing:2.151922px;}
.wsf{word-spacing:2.391024px;}
.ws4a{word-spacing:2.574582px;}
.ws16{word-spacing:2.630126px;}
.ws51{word-spacing:3.227882px;}
.ws1b{word-spacing:3.586536px;}
.ws10{word-spacing:3.646312px;}
.ws36{word-spacing:3.825638px;}
.ws49{word-spacing:4.004965px;}
.ws3d{word-spacing:4.356092px;}
.ws3e{word-spacing:4.363619px;}
.ws45{word-spacing:4.423394px;}
.ws17{word-spacing:4.662497px;}
.ws5d{word-spacing:4.782060px;}
.ws47{word-spacing:4.961375px;}
.ws13{word-spacing:5.002654px;}
.ws14{word-spacing:5.021150px;}
.ws53{word-spacing:5.320028px;}
.ws43{word-spacing:5.439580px;}
.ws18{word-spacing:5.917784px;}
.ws50{word-spacing:5.929754px;}
.ws11{word-spacing:5.933150px;}
.ws31{word-spacing:5.945572px;}
.ws2{word-spacing:5.949739px;}
.ws55{word-spacing:5.950495px;}
.ws5b{word-spacing:5.973401px;}
.ws5a{word-spacing:5.974774px;}
.wsb{word-spacing:5.977560px;}
.ws5f{word-spacing:5.977575px;}
.ws59{word-spacing:5.977601px;}
.ws4c{word-spacing:5.979025px;}
.ws15{word-spacing:6.276438px;}
.ws28{word-spacing:6.395989px;}
.ws1d{word-spacing:6.515540px;}
.ws3a{word-spacing:6.635092px;}
.ws26{word-spacing:7.232848px;}
.ws2a{word-spacing:7.292623px;}
.ws38{word-spacing:7.352399px;}
.ws19{word-spacing:7.471950px;}
.ws3f{word-spacing:7.830604px;}
.ws39{word-spacing:7.890379px;}
.ws4{word-spacing:7.950155px;}
.ws60{word-spacing:8.033861px;}
.ws40{word-spacing:8.129482px;}
.ws3c{word-spacing:8.189257px;}
.ws5c{word-spacing:8.272964px;}
.ws48{word-spacing:8.308808px;}
.ws1a{word-spacing:8.428360px;}
.wse{word-spacing:9.026116px;}
.ws21{word-spacing:9.124667px;}
.ws20{word-spacing:9.145667px;}
.ws2f{word-spacing:9.265218px;}
.ws2d{word-spacing:10.564428px;}
.ws2c{word-spacing:10.580281px;}
.ws5e{word-spacing:11.237841px;}
.ws57{word-spacing:11.596466px;}
.ws3b{word-spacing:11.775793px;}
.ws30{word-spacing:11.955120px;}
.ws6{word-spacing:12.552876px;}
.ws9{word-spacing:12.576934px;}
.ws7{word-spacing:12.579920px;}
.ws8{word-spacing:12.584134px;}
.wsa{word-spacing:12.612652px;}
.ws23{word-spacing:12.672427px;}
.ws42{word-spacing:13.678544px;}
.ws0{word-spacing:14.346180px;}
.ws35{word-spacing:15.216944px;}
.ws33{word-spacing:15.218144px;}
.wsd{word-spacing:16.802144px;}
.ws4b{word-spacing:17.491184px;}
.ws1{word-spacing:17.932680px;}
.ws52{word-spacing:18.084704px;}
.ws1c{word-spacing:18.463904px;}
.ws37{word-spacing:18.732944px;}
.ws4d{word-spacing:20.860064px;}
.ws56{word-spacing:20.861504px;}
.ws2e{word-spacing:20.863424px;}
.ws24{word-spacing:20.863904px;}
.ws58{word-spacing:26.483504px;}
.ws4e{word-spacing:32.221882px;}
.ws1e{word-spacing:32.225242px;}
.ws22{word-spacing:35.805584px;}
._1{margin-left:-13.198486px;}
._5{margin-left:-5.977560px;}
._4{margin-left:-4.184292px;}
._0{margin-left:-2.582312px;}
._2{margin-left:-1.434618px;}
._9{width:1.024316px;}
._3{width:2.988780px;}
._8{width:13.270183px;}
._7{width:21.220338px;}
._6{width:29.887800px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:69.175500px;}
.yb9{bottom:81.295500px;}
.y8a{bottom:84.120000px;}
.y2f{bottom:87.108000px;}
.ye8{bottom:95.700000px;}
.y5b{bottom:96.010500px;}
.y89{bottom:99.063000px;}
.yb8{bottom:103.875000px;}
.y2e{bottom:111.127500px;}
.y88{bottom:114.007500px;}
.ye7{bottom:119.305500px;}
.y5a{bottom:119.869500px;}
.yb7{bottom:129.145500px;}
.y2d{bottom:132.687000px;}
.y59{bottom:142.498500px;}
.y87{bottom:143.895000px;}
.ye6{bottom:145.831500px;}
.yb6{bottom:151.725000px;}
.y2c{bottom:156.705000px;}
.y86{bottom:158.839500px;}
.ye5{bottom:160.774500px;}
.y85{bottom:173.782500px;}
.yb5{bottom:174.066000px;}
.ye4{bottom:175.719000px;}
.y2b{bottom:178.264500px;}
.y58{bottom:192.696000px;}
.ye3{bottom:199.324500px;}
.y2a{bottom:202.284000px;}
.y84{bottom:203.671500px;}
.y57{bottom:207.640500px;}
.ye2{bottom:217.257000px;}
.yb4{bottom:218.383500px;}
.y83{bottom:218.614500px;}
.y29{bottom:223.843500px;}
.y56{bottom:231.499500px;}
.y82{bottom:233.559000px;}
.ye1{bottom:239.827500px;}
.yb3{bottom:240.964500px;}
.y28{bottom:256.291500px;}
.y55{bottom:258.334500px;}
.yb2{bottom:258.597000px;}
.y81{bottom:263.446500px;}
.y27{bottom:274.224000px;}
.yb1{bottom:276.531000px;}
.y80{bottom:278.391000px;}
.ye0{bottom:280.198500px;}
.y54{bottom:282.193500px;}
.y26{bottom:292.156500px;}
.y7f{bottom:293.335500px;}
.yb0{bottom:294.463500px;}
.ydf{bottom:298.131000px;}
.y53{bottom:304.822500px;}
.y7e{bottom:308.278500px;}
.y25{bottom:310.089000px;}
.yaf{bottom:312.396000px;}
.yde{bottom:320.703000px;}
.y24{bottom:328.021500px;}
.yae{bottom:334.737000px;}
.y7d{bottom:338.167500px;}
.y23{bottom:345.954000px;}
.y52{bottom:351.657000px;}
.ydd{bottom:357.711000px;}
.y7c{bottom:361.921500px;}
.y22{bottom:363.888000px;}
.y51{bottom:366.601500px;}
.yad{bottom:368.055000px;}
.y7b{bottom:379.854000px;}
.y50{bottom:381.546000px;}
.y21{bottom:381.820500px;}
.ydc{bottom:384.237000px;}
.yac{bottom:393.325500px;}
.y7a{bottom:397.786500px;}
.ydb{bottom:399.180000px;}
.y20{bottom:399.753000px;}
.y4f{bottom:405.405000px;}
.yab{bottom:408.270000px;}
.yda{bottom:414.124500px;}
.y105{bottom:417.145500px;}
.y1f{bottom:417.685500px;}
.yaa{bottom:423.213000px;}
.y4e{bottom:423.337500px;}
.yd9{bottom:429.069000px;}
.y104{bottom:430.596000px;}
.y1e{bottom:435.618000px;}
.y79{bottom:436.330500px;}
.yd8{bottom:444.012000px;}
.y103{bottom:444.045000px;}
.ya9{bottom:445.794000px;}
.y4d{bottom:445.965000px;}
.y1d{bottom:453.552000px;}
.y78{bottom:454.263000px;}
.y102{bottom:457.494000px;}
.yd7{bottom:458.956500px;}
.ya8{bottom:468.135000px;}
.y101{bottom:470.944500px;}
.y1c{bottom:472.768500px;}
.yd6{bottom:473.901000px;}
.y77{bottom:475.183500px;}
.y100{bottom:484.393500px;}
.yd5{bottom:488.844000px;}
.y76{bottom:493.117500px;}
.y4c{bottom:496.164000px;}
.y1b{bottom:496.788000px;}
.yff{bottom:497.844000px;}
.yd4{bottom:503.788500px;}
.y75{bottom:511.050000px;}
.y4b{bottom:511.107000px;}
.yfe{bottom:511.293000px;}
.y1a{bottom:511.731000px;}
.ya7{bottom:512.452500px;}
.y4a{bottom:526.051500px;}
.y19{bottom:526.675500px;}
.yd3{bottom:527.394000px;}
.ya6{bottom:527.395500px;}
.y74{bottom:528.982500px;}
.yfd{bottom:533.484000px;}
.ya5{bottom:542.340000px;}
.y73{bottom:546.915000px;}
.y18{bottom:548.235000px;}
.y49{bottom:549.910500px;}
.yd2{bottom:553.918500px;}
.ya4{bottom:557.284500px;}
.y72{bottom:564.847500px;}
.y48{bottom:567.843000px;}
.yd1{bottom:568.863000px;}
.yfc{bottom:571.591500px;}
.ya3{bottom:572.227500px;}
.y17{bottom:578.869500px;}
.y71{bottom:582.780000px;}
.y47{bottom:585.775500px;}
.yd0{bottom:592.468500px;}
.ya2{bottom:594.808500px;}
.y16{bottom:596.802000px;}
.y70{bottom:600.714000px;}
.yfb{bottom:607.456500px;}
.y46{bottom:608.404500px;}
.ya1{bottom:612.741000px;}
.y15{bottom:614.734500px;}
.ycf{bottom:615.039000px;}
.y6f{bottom:621.522000px;}
.ya0{bottom:630.673500px;}
.y14{bottom:632.667000px;}
.yfa{bottom:634.356000px;}
.y9f{bottom:648.307500px;}
.yce{bottom:655.410000px;}
.yf9{bottom:658.266000px;}
.y45{bottom:658.602000px;}
.y13{bottom:663.301500px;}
.y6e{bottom:668.763000px;}
.y9e{bottom:673.576500px;}
.y12{bottom:681.234000px;}
.ycd{bottom:681.934500px;}
.y44{bottom:682.461000px;}
.yf8{bottom:685.165500px;}
.y9d{bottom:688.521000px;}
.y6d{bottom:692.517000px;}
.ycc{bottom:696.879000px;}
.y11{bottom:699.168000px;}
.yf7{bottom:709.075500px;}
.y43{bottom:709.296000px;}
.y6c{bottom:710.451000px;}
.y9c{bottom:711.100500px;}
.ycb{bottom:711.823500px;}
.y10{bottom:717.100500px;}
.yca{bottom:726.766500px;}
.yf6{bottom:727.009500px;}
.y9b{bottom:729.034500px;}
.y42{bottom:733.155000px;}
.y6b{bottom:737.193000px;}
.yf{bottom:739.210500px;}
.yc9{bottom:741.711000px;}
.yf5{bottom:744.942000px;}
.y9a{bottom:746.967000px;}
.y41{bottom:759.991500px;}
.y6a{bottom:760.948500px;}
.y99{bottom:764.599500px;}
.yc8{bottom:765.316500px;}
.yf4{bottom:771.841500px;}
.ye{bottom:772.216500px;}
.y40{bottom:774.934500px;}
.y69{bottom:781.756500px;}
.y98{bottom:789.870000px;}
.y3f{bottom:789.879000px;}
.yc7{bottom:791.841000px;}
.yd{bottom:794.328000px;}
.yf3{bottom:795.751500px;}
.y68{bottom:799.690500px;}
.y97{bottom:804.814500px;}
.y3e{bottom:804.823500px;}
.yc6{bottom:806.785500px;}
.yf2{bottom:813.684000px;}
.y67{bottom:817.623000px;}
.y3d{bottom:819.766500px;}
.yc{bottom:823.971000px;}
.y96{bottom:827.394000px;}
.yc5{bottom:830.391000px;}
.y3c{bottom:834.711000px;}
.y66{bottom:835.555500px;}
.yf1{bottom:840.583500px;}
.yb{bottom:841.903500px;}
.y3b{bottom:849.655500px;}
.y95{bottom:852.664500px;}
.yc4{bottom:852.961500px;}
.y65{bottom:858.160500px;}
.ya{bottom:859.836000px;}
.yf0{bottom:864.493500px;}
.y94{bottom:867.607500px;}
.y3a{bottom:873.513000px;}
.y9{bottom:877.770000px;}
.yef{bottom:882.426000px;}
.y93{bottom:890.188500px;}
.y39{bottom:891.447000px;}
.yc3{bottom:893.332500px;}
.y8{bottom:895.702500px;}
.y64{bottom:899.068500px;}
.yee{bottom:900.358500px;}
.yc2{bottom:911.265000px;}
.y92{bottom:912.529500px;}
.y7{bottom:913.105500px;}
.y38{bottom:914.074500px;}
.y63{bottom:917.002500px;}
.yed{bottom:918.291000px;}
.yc1{bottom:929.197500px;}
.y6{bottom:931.038000px;}
.y62{bottom:934.935000px;}
.yec{bottom:940.932000px;}
.yc0{bottom:947.131500px;}
.y5{bottom:948.972000px;}
.y61{bottom:952.867500px;}
.y91{bottom:956.847000px;}
.yeb{bottom:963.571500px;}
.y37{bottom:964.273500px;}
.ybf{bottom:967.831500px;}
.y4{bottom:971.082000px;}
.y90{bottom:971.790000px;}
.y60{bottom:979.576500px;}
.y8f{bottom:986.734500px;}
.y36{bottom:988.131000px;}
.ybe{bottom:994.356000px;}
.y8e{bottom:1001.679000px;}
.y5f{bottom:1003.330500px;}
.ybd{bottom:1009.300500px;}
.yea{bottom:1010.644500px;}
.y35{bottom:1014.967500px;}
.y34{bottom:1029.912000px;}
.y5e{bottom:1030.039500px;}
.y8d{bottom:1031.566500px;}
.ybc{bottom:1032.906000px;}
.ye9{bottom:1034.556000px;}
.y3{bottom:1042.972500px;}
.y33{bottom:1044.855000px;}
.y5d{bottom:1044.982500px;}
.ybb{bottom:1050.838500px;}
.y8c{bottom:1061.454000px;}
.y32{bottom:1068.714000px;}
.y5c{bottom:1068.738000px;}
.yba{bottom:1068.771000px;}
.y8b{bottom:1076.398500px;}
.y2{bottom:1084.815000px;}
.y31{bottom:1091.343000px;}
.y1{bottom:1141.168500px;}
.h1{height:28.787846px;}
.h7{height:32.900573px;}
.h6{height:35.937331px;}
.h5{height:41.006062px;}
.h3{height:41.125613px;}
.h4{height:41.364715px;}
.h2{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:73.446000px;}
.x5{left:88.390500px;}
.x8{left:89.739000px;}
.x2{left:95.433000px;}
.x9{left:103.333500px;}
.x3{left:204.573000px;}
.xd{left:329.026500px;}
.x7{left:345.009000px;}
.xc{left:353.041500px;}
.xb{left:357.801000px;}
.xa{left:385.110000px;}
.x4{left:389.706000px;}
.xe{left:417.157500px;}
.x1{left:839.323500px;}
@media print{
.v1{vertical-align:-8.368000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000853pt;}
.lsd{letter-spacing:0.746682pt;}
.ls2{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.654903pt;}
.lsf{letter-spacing:2.655207pt;}
.ls15{letter-spacing:2.655711pt;}
.lsc{letter-spacing:2.656693pt;}
.ls1{letter-spacing:2.658422pt;}
.ls11{letter-spacing:2.661044pt;}
.ls8{letter-spacing:14.658422pt;}
.lsa{letter-spacing:15.213089pt;}
.ls13{letter-spacing:18.593867pt;}
.ls12{letter-spacing:18.599680pt;}
.ls7{letter-spacing:18.599756pt;}
.ls9{letter-spacing:19.693089pt;}
.ls5{letter-spacing:21.404533pt;}
.ls4{letter-spacing:21.405089pt;}
.ls14{letter-spacing:23.596533pt;}
.ls6{letter-spacing:24.546422pt;}
.ls3{letter-spacing:26.566586pt;}
.lse{letter-spacing:26.569067pt;}
.ws5{word-spacing:-13.283467pt;}
.ws12{word-spacing:-13.262246pt;}
.ws3{word-spacing:-10.626800pt;}
.ws41{word-spacing:-1.062677pt;}
.ws44{word-spacing:-0.584473pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws4f{word-spacing:-0.047821pt;}
.ws54{word-spacing:-0.001285pt;}
.ws29{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.106268pt;}
.ws34{word-spacing:0.306689pt;}
.ws32{word-spacing:0.318803pt;}
.ws25{word-spacing:1.381481pt;}
.ws46{word-spacing:1.540882pt;}
.wsc{word-spacing:1.700284pt;}
.ws27{word-spacing:1.912819pt;}
.wsf{word-spacing:2.125355pt;}
.ws4a{word-spacing:2.288517pt;}
.ws16{word-spacing:2.337890pt;}
.ws51{word-spacing:2.869229pt;}
.ws1b{word-spacing:3.188032pt;}
.ws10{word-spacing:3.241166pt;}
.ws36{word-spacing:3.400567pt;}
.ws49{word-spacing:3.559969pt;}
.ws3d{word-spacing:3.872082pt;}
.ws3e{word-spacing:3.878772pt;}
.ws45{word-spacing:3.931906pt;}
.ws17{word-spacing:4.144442pt;}
.ws5d{word-spacing:4.250720pt;}
.ws47{word-spacing:4.410111pt;}
.ws13{word-spacing:4.446803pt;}
.ws14{word-spacing:4.463245pt;}
.ws53{word-spacing:4.728914pt;}
.ws43{word-spacing:4.835182pt;}
.ws18{word-spacing:5.260253pt;}
.ws50{word-spacing:5.270893pt;}
.ws11{word-spacing:5.273911pt;}
.ws31{word-spacing:5.284953pt;}
.ws2{word-spacing:5.288657pt;}
.ws55{word-spacing:5.289329pt;}
.ws5b{word-spacing:5.309690pt;}
.ws5a{word-spacing:5.310910pt;}
.wsb{word-spacing:5.313387pt;}
.ws5f{word-spacing:5.313400pt;}
.ws59{word-spacing:5.313423pt;}
.ws4c{word-spacing:5.314689pt;}
.ws15{word-spacing:5.579056pt;}
.ws28{word-spacing:5.685324pt;}
.ws1d{word-spacing:5.791591pt;}
.ws3a{word-spacing:5.897859pt;}
.ws26{word-spacing:6.429198pt;}
.ws2a{word-spacing:6.482332pt;}
.ws38{word-spacing:6.535466pt;}
.ws19{word-spacing:6.641733pt;}
.ws3f{word-spacing:6.960537pt;}
.ws39{word-spacing:7.013670pt;}
.ws4{word-spacing:7.066804pt;}
.ws60{word-spacing:7.141210pt;}
.ws40{word-spacing:7.226206pt;}
.ws3c{word-spacing:7.279340pt;}
.ws5c{word-spacing:7.353746pt;}
.ws48{word-spacing:7.385607pt;}
.ws1a{word-spacing:7.491875pt;}
.wse{word-spacing:8.023214pt;}
.ws21{word-spacing:8.110815pt;}
.ws20{word-spacing:8.129482pt;}
.ws2f{word-spacing:8.235749pt;}
.ws2d{word-spacing:9.390603pt;}
.ws2c{word-spacing:9.404694pt;}
.ws5e{word-spacing:9.989192pt;}
.ws57{word-spacing:10.307970pt;}
.ws3b{word-spacing:10.467372pt;}
.ws30{word-spacing:10.626773pt;}
.ws6{word-spacing:11.158112pt;}
.ws9{word-spacing:11.179497pt;}
.ws7{word-spacing:11.182151pt;}
.ws8{word-spacing:11.185897pt;}
.wsa{word-spacing:11.211246pt;}
.ws23{word-spacing:11.264380pt;}
.ws42{word-spacing:12.158706pt;}
.ws0{word-spacing:12.752160pt;}
.ws35{word-spacing:13.526173pt;}
.ws33{word-spacing:13.527239pt;}
.wsd{word-spacing:14.935239pt;}
.ws4b{word-spacing:15.547719pt;}
.ws1{word-spacing:15.940160pt;}
.ws52{word-spacing:16.075293pt;}
.ws1c{word-spacing:16.412359pt;}
.ws37{word-spacing:16.651506pt;}
.ws4d{word-spacing:18.542279pt;}
.ws56{word-spacing:18.543559pt;}
.ws2e{word-spacing:18.545266pt;}
.ws24{word-spacing:18.545693pt;}
.ws58{word-spacing:23.540893pt;}
.ws4e{word-spacing:28.641673pt;}
.ws1e{word-spacing:28.644659pt;}
.ws22{word-spacing:31.827186pt;}
._1{margin-left:-11.731987pt;}
._5{margin-left:-5.313387pt;}
._4{margin-left:-3.719371pt;}
._0{margin-left:-2.295389pt;}
._2{margin-left:-1.275216pt;}
._9{width:0.910503pt;}
._3{width:2.656693pt;}
._8{width:11.795718pt;}
._7{width:18.862523pt;}
._6{width:26.566933pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:61.489333pt;}
.yb9{bottom:72.262667pt;}
.y8a{bottom:74.773333pt;}
.y2f{bottom:77.429333pt;}
.ye8{bottom:85.066667pt;}
.y5b{bottom:85.342667pt;}
.y89{bottom:88.056000pt;}
.yb8{bottom:92.333333pt;}
.y2e{bottom:98.780000pt;}
.y88{bottom:101.340000pt;}
.ye7{bottom:106.049333pt;}
.y5a{bottom:106.550667pt;}
.yb7{bottom:114.796000pt;}
.y2d{bottom:117.944000pt;}
.y59{bottom:126.665333pt;}
.y87{bottom:127.906667pt;}
.ye6{bottom:129.628000pt;}
.yb6{bottom:134.866667pt;}
.y2c{bottom:139.293333pt;}
.y86{bottom:141.190667pt;}
.ye5{bottom:142.910667pt;}
.y85{bottom:154.473333pt;}
.yb5{bottom:154.725333pt;}
.ye4{bottom:156.194667pt;}
.y2b{bottom:158.457333pt;}
.y58{bottom:171.285333pt;}
.ye3{bottom:177.177333pt;}
.y2a{bottom:179.808000pt;}
.y84{bottom:181.041333pt;}
.y57{bottom:184.569333pt;}
.ye2{bottom:193.117333pt;}
.yb4{bottom:194.118667pt;}
.y83{bottom:194.324000pt;}
.y29{bottom:198.972000pt;}
.y56{bottom:205.777333pt;}
.y82{bottom:207.608000pt;}
.ye1{bottom:213.180000pt;}
.yb3{bottom:214.190667pt;}
.y28{bottom:227.814667pt;}
.y55{bottom:229.630667pt;}
.yb2{bottom:229.864000pt;}
.y81{bottom:234.174667pt;}
.y27{bottom:243.754667pt;}
.yb1{bottom:245.805333pt;}
.y80{bottom:247.458667pt;}
.ye0{bottom:249.065333pt;}
.y54{bottom:250.838667pt;}
.y26{bottom:259.694667pt;}
.y7f{bottom:260.742667pt;}
.yb0{bottom:261.745333pt;}
.ydf{bottom:265.005333pt;}
.y53{bottom:270.953333pt;}
.y7e{bottom:274.025333pt;}
.y25{bottom:275.634667pt;}
.yaf{bottom:277.685333pt;}
.yde{bottom:285.069333pt;}
.y24{bottom:291.574667pt;}
.yae{bottom:297.544000pt;}
.y7d{bottom:300.593333pt;}
.y23{bottom:307.514667pt;}
.y52{bottom:312.584000pt;}
.ydd{bottom:317.965333pt;}
.y7c{bottom:321.708000pt;}
.y22{bottom:323.456000pt;}
.y51{bottom:325.868000pt;}
.yad{bottom:327.160000pt;}
.y7b{bottom:337.648000pt;}
.y50{bottom:339.152000pt;}
.y21{bottom:339.396000pt;}
.ydc{bottom:341.544000pt;}
.yac{bottom:349.622667pt;}
.y7a{bottom:353.588000pt;}
.ydb{bottom:354.826667pt;}
.y20{bottom:355.336000pt;}
.y4f{bottom:360.360000pt;}
.yab{bottom:362.906667pt;}
.yda{bottom:368.110667pt;}
.y105{bottom:370.796000pt;}
.y1f{bottom:371.276000pt;}
.yaa{bottom:376.189333pt;}
.y4e{bottom:376.300000pt;}
.yd9{bottom:381.394667pt;}
.y104{bottom:382.752000pt;}
.y1e{bottom:387.216000pt;}
.y79{bottom:387.849333pt;}
.yd8{bottom:394.677333pt;}
.y103{bottom:394.706667pt;}
.ya9{bottom:396.261333pt;}
.y4d{bottom:396.413333pt;}
.y1d{bottom:403.157333pt;}
.y78{bottom:403.789333pt;}
.y102{bottom:406.661333pt;}
.yd7{bottom:407.961333pt;}
.ya8{bottom:416.120000pt;}
.y101{bottom:418.617333pt;}
.y1c{bottom:420.238667pt;}
.yd6{bottom:421.245333pt;}
.y77{bottom:422.385333pt;}
.y100{bottom:430.572000pt;}
.yd5{bottom:434.528000pt;}
.y76{bottom:438.326667pt;}
.y4c{bottom:441.034667pt;}
.y1b{bottom:441.589333pt;}
.yff{bottom:442.528000pt;}
.yd4{bottom:447.812000pt;}
.y75{bottom:454.266667pt;}
.y4b{bottom:454.317333pt;}
.yfe{bottom:454.482667pt;}
.y1a{bottom:454.872000pt;}
.ya7{bottom:455.513333pt;}
.y4a{bottom:467.601333pt;}
.y19{bottom:468.156000pt;}
.yd3{bottom:468.794667pt;}
.ya6{bottom:468.796000pt;}
.y74{bottom:470.206667pt;}
.yfd{bottom:474.208000pt;}
.ya5{bottom:482.080000pt;}
.y73{bottom:486.146667pt;}
.y18{bottom:487.320000pt;}
.y49{bottom:488.809333pt;}
.yd2{bottom:492.372000pt;}
.ya4{bottom:495.364000pt;}
.y72{bottom:502.086667pt;}
.y48{bottom:504.749333pt;}
.yd1{bottom:505.656000pt;}
.yfc{bottom:508.081333pt;}
.ya3{bottom:508.646667pt;}
.y17{bottom:514.550667pt;}
.y71{bottom:518.026667pt;}
.y47{bottom:520.689333pt;}
.yd0{bottom:526.638667pt;}
.ya2{bottom:528.718667pt;}
.y16{bottom:530.490667pt;}
.y70{bottom:533.968000pt;}
.yfb{bottom:539.961333pt;}
.y46{bottom:540.804000pt;}
.ya1{bottom:544.658667pt;}
.y15{bottom:546.430667pt;}
.ycf{bottom:546.701333pt;}
.y6f{bottom:552.464000pt;}
.ya0{bottom:560.598667pt;}
.y14{bottom:562.370667pt;}
.yfa{bottom:563.872000pt;}
.y9f{bottom:576.273333pt;}
.yce{bottom:582.586667pt;}
.yf9{bottom:585.125333pt;}
.y45{bottom:585.424000pt;}
.y13{bottom:589.601333pt;}
.y6e{bottom:594.456000pt;}
.y9e{bottom:598.734667pt;}
.y12{bottom:605.541333pt;}
.ycd{bottom:606.164000pt;}
.y44{bottom:606.632000pt;}
.yf8{bottom:609.036000pt;}
.y9d{bottom:612.018667pt;}
.y6d{bottom:615.570667pt;}
.ycc{bottom:619.448000pt;}
.y11{bottom:621.482667pt;}
.yf7{bottom:630.289333pt;}
.y43{bottom:630.485333pt;}
.y6c{bottom:631.512000pt;}
.y9c{bottom:632.089333pt;}
.ycb{bottom:632.732000pt;}
.y10{bottom:637.422667pt;}
.yca{bottom:646.014667pt;}
.yf6{bottom:646.230667pt;}
.y9b{bottom:648.030667pt;}
.y42{bottom:651.693333pt;}
.y6b{bottom:655.282667pt;}
.yf{bottom:657.076000pt;}
.yc9{bottom:659.298667pt;}
.yf5{bottom:662.170667pt;}
.y9a{bottom:663.970667pt;}
.y41{bottom:675.548000pt;}
.y6a{bottom:676.398667pt;}
.y99{bottom:679.644000pt;}
.yc8{bottom:680.281333pt;}
.yf4{bottom:686.081333pt;}
.ye{bottom:686.414667pt;}
.y40{bottom:688.830667pt;}
.y69{bottom:694.894667pt;}
.y98{bottom:702.106667pt;}
.y3f{bottom:702.114667pt;}
.yc7{bottom:703.858667pt;}
.yd{bottom:706.069333pt;}
.yf3{bottom:707.334667pt;}
.y68{bottom:710.836000pt;}
.y97{bottom:715.390667pt;}
.y3e{bottom:715.398667pt;}
.yc6{bottom:717.142667pt;}
.yf2{bottom:723.274667pt;}
.y67{bottom:726.776000pt;}
.y3d{bottom:728.681333pt;}
.yc{bottom:732.418667pt;}
.y96{bottom:735.461333pt;}
.yc5{bottom:738.125333pt;}
.y3c{bottom:741.965333pt;}
.y66{bottom:742.716000pt;}
.yf1{bottom:747.185333pt;}
.yb{bottom:748.358667pt;}
.y3b{bottom:755.249333pt;}
.y95{bottom:757.924000pt;}
.yc4{bottom:758.188000pt;}
.y65{bottom:762.809333pt;}
.ya{bottom:764.298667pt;}
.yf0{bottom:768.438667pt;}
.y94{bottom:771.206667pt;}
.y3a{bottom:776.456000pt;}
.y9{bottom:780.240000pt;}
.yef{bottom:784.378667pt;}
.y93{bottom:791.278667pt;}
.y39{bottom:792.397333pt;}
.yc3{bottom:794.073333pt;}
.y8{bottom:796.180000pt;}
.y64{bottom:799.172000pt;}
.yee{bottom:800.318667pt;}
.yc2{bottom:810.013333pt;}
.y92{bottom:811.137333pt;}
.y7{bottom:811.649333pt;}
.y38{bottom:812.510667pt;}
.y63{bottom:815.113333pt;}
.yed{bottom:816.258667pt;}
.yc1{bottom:825.953333pt;}
.y6{bottom:827.589333pt;}
.y62{bottom:831.053333pt;}
.yec{bottom:836.384000pt;}
.yc0{bottom:841.894667pt;}
.y5{bottom:843.530667pt;}
.y61{bottom:846.993333pt;}
.y91{bottom:850.530667pt;}
.yeb{bottom:856.508000pt;}
.y37{bottom:857.132000pt;}
.ybf{bottom:860.294667pt;}
.y4{bottom:863.184000pt;}
.y90{bottom:863.813333pt;}
.y60{bottom:870.734667pt;}
.y8f{bottom:877.097333pt;}
.y36{bottom:878.338667pt;}
.ybe{bottom:883.872000pt;}
.y8e{bottom:890.381333pt;}
.y5f{bottom:891.849333pt;}
.ybd{bottom:897.156000pt;}
.yea{bottom:898.350667pt;}
.y35{bottom:902.193333pt;}
.y34{bottom:915.477333pt;}
.y5e{bottom:915.590667pt;}
.y8d{bottom:916.948000pt;}
.ybc{bottom:918.138667pt;}
.ye9{bottom:919.605333pt;}
.y3{bottom:927.086667pt;}
.y33{bottom:928.760000pt;}
.y5d{bottom:928.873333pt;}
.ybb{bottom:934.078667pt;}
.y8c{bottom:943.514667pt;}
.y32{bottom:949.968000pt;}
.y5c{bottom:949.989333pt;}
.yba{bottom:950.018667pt;}
.y8b{bottom:956.798667pt;}
.y2{bottom:964.280000pt;}
.y31{bottom:970.082667pt;}
.y1{bottom:1014.372000pt;}
.h1{height:25.589197pt;}
.h7{height:29.244954pt;}
.h6{height:31.944294pt;}
.h5{height:36.449833pt;}
.h3{height:36.556100pt;}
.h4{height:36.768636pt;}
.h2{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:65.285333pt;}
.x5{left:78.569333pt;}
.x8{left:79.768000pt;}
.x2{left:84.829333pt;}
.x9{left:91.852000pt;}
.x3{left:181.842667pt;}
.xd{left:292.468000pt;}
.x7{left:306.674667pt;}
.xc{left:313.814667pt;}
.xb{left:318.045333pt;}
.xa{left:342.320000pt;}
.x4{left:346.405333pt;}
.xe{left:370.806667pt;}
.x1{left:746.065333pt;}
}




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