
    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_b274a2ecc5ea053dfd727594.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_a090ac6d27f902f61581fb49.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_8e4ce5176ee65470a4bda114.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_7d1474d39cd0d84d87c4a312.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_65d1db911af7b295347808ce.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a28f8a7492e2f67459e5b085.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e57e2f280599d7f951ed1dfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:ff8;src:url('chunks/assets/font_4a0ae672ff54e23517b47953.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.060547;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:ff9;src:url('chunks/assets/font_98d741f1ac0d7850115e2c7c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.269400px;}
.lse{letter-spacing:-0.085200px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.292200px;}
.lsc{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.738000px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.160000px;}
.ls3{letter-spacing:3.060000px;}
.lsd{letter-spacing:11.880000px;}
.ls7{letter-spacing:74.988000px;}
.lsb{letter-spacing:75.132000px;}
.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:-18.000000px;}
.ws7{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.790600px;}
.ws6{word-spacing:-10.905000px;}
.ws5{word-spacing:-10.527600px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._1{width:1.234560px;}
._6{width:2.287200px;}
._5{width:3.346560px;}
._7{width:4.860000px;}
._8{width:6.032400px;}
._b{width:7.074000px;}
._9{width:8.124240px;}
._a{width:9.522000px;}
._13{width:10.638000px;}
._17{width:12.258000px;}
._c{width:15.498000px;}
._d{width:16.578000px;}
._14{width:18.360000px;}
._1a{width:19.572000px;}
._e{width:20.844000px;}
._f{width:21.978000px;}
._15{width:23.706000px;}
._20{width:25.102560px;}
._1e{width:26.214000px;}
._1f{width:27.238560px;}
._23{width:28.352880px;}
._12{width:29.592000px;}
._11{width:30.780000px;}
._25{width:32.454000px;}
._24{width:34.360560px;}
._22{width:35.370000px;}
._10{width:36.558000px;}
._21{width:37.962000px;}
._18{width:39.528000px;}
._16{width:40.570560px;}
._1d{width:41.623200px;}
._19{width:42.768000px;}
._27{width:43.920000px;}
._26{width:45.144000px;}
._1b{width:47.862000px;}
._1c{width:48.912000px;}
._28{width:69.894000px;}
._29{width:101.844000px;}
._2{width:1625.460000px;}
._3{width:1960.972800px;}
.fc7{color:transparent;}
.fc6{color:rgb(15,17,21);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.240000px;}
.y111{bottom:5.565000px;}
.y106{bottom:5.580000px;}
.y10b{bottom:5.610000px;}
.y101{bottom:5.760000px;}
.y1d{bottom:10.260000px;}
.y110{bottom:23.385000px;}
.y105{bottom:23.400000px;}
.y10a{bottom:23.430000px;}
.y100{bottom:23.580000px;}
.y11b{bottom:23.610000px;}
.y1c{bottom:29.190000px;}
.y19{bottom:30.060000px;}
.y10f{bottom:41.205000px;}
.y104{bottom:41.220000px;}
.yff{bottom:41.400000px;}
.y115{bottom:41.430000px;}
.y18{bottom:48.060000px;}
.y59{bottom:58.500000px;}
.y10e{bottom:59.025000px;}
.y103{bottom:59.040000px;}
.y113{bottom:59.205000px;}
.y108{bottom:59.220000px;}
.yfe{bottom:59.250000px;}
.y17{bottom:65.880000px;}
.y7{bottom:76.860000px;}
.y10d{bottom:77.025000px;}
.y117{bottom:77.040000px;}
.yfd{bottom:77.070000px;}
.y116{bottom:80.100000px;}
.y16{bottom:83.700000px;}
.ye4{bottom:87.840000px;}
.yb1{bottom:94.860000px;}
.yfc{bottom:94.890000px;}
.y15{bottom:101.520000px;}
.y55{bottom:104.580000px;}
.y3b{bottom:108.000000px;}
.yb0{bottom:112.680000px;}
.y14{bottom:119.340000px;}
.ye3{bottom:120.600000px;}
.y54{bottom:122.400000px;}
.y3a{bottom:125.820000px;}
.yaf{bottom:130.680000px;}
.y13{bottom:137.160000px;}
.y53{bottom:140.220000px;}
.y39{bottom:143.640000px;}
.yae{bottom:148.500000px;}
.ye2{bottom:151.920000px;}
.y12{bottom:155.160000px;}
.y52{bottom:158.220000px;}
.y38{bottom:161.460000px;}
.y88{bottom:161.640000px;}
.yad{bottom:166.320000px;}
.ye1{bottom:169.920000px;}
.y11{bottom:172.980000px;}
.y114{bottom:173.880000px;}
.y37{bottom:179.280000px;}
.y87{bottom:179.460000px;}
.y51{bottom:186.480000px;}
.ye0{bottom:187.740000px;}
.y10{bottom:190.800000px;}
.yac{bottom:192.780000px;}
.y36{bottom:197.280000px;}
.ydf{bottom:205.560000px;}
.y35{bottom:215.130000px;}
.y50{bottom:217.830000px;}
.yab{bottom:219.990000px;}
.yde{bottom:223.410000px;}
.y34{bottom:232.950000px;}
.y4f{bottom:235.650000px;}
.yaa{bottom:237.810000px;}
.ydd{bottom:241.230000px;}
.y33{bottom:250.770000px;}
.y86{bottom:250.950000px;}
.y4e{bottom:253.470000px;}
.ya9{bottom:255.810000px;}
.ydc{bottom:259.050000px;}
.y112{bottom:267.705000px;}
.y32{bottom:268.590000px;}
.y85{bottom:268.770000px;}
.y4d{bottom:271.470000px;}
.ya8{bottom:273.630000px;}
.ydb{bottom:285.690000px;}
.y31{bottom:286.410000px;}
.y84{bottom:286.590000px;}
.ya7{bottom:291.450000px;}
.y4c{bottom:298.290000px;}
.y30{bottom:304.410000px;}
.yda{bottom:312.870000px;}
.y4b{bottom:316.110000px;}
.ya6{bottom:317.910000px;}
.y2f{bottom:322.230000px;}
.yd9{bottom:330.690000px;}
.y4a{bottom:333.930000px;}
.y2e{bottom:340.050000px;}
.y10c{bottom:343.665000px;}
.ya5{bottom:345.090000px;}
.yd8{bottom:348.510000px;}
.y49{bottom:351.750000px;}
.y2d{bottom:357.870000px;}
.y83{bottom:358.050000px;}
.ya4{bottom:363.090000px;}
.yd7{bottom:366.330000px;}
.y48{bottom:369.570000px;}
.y2c{bottom:375.690000px;}
.ya3{bottom:380.910000px;}
.yd6{bottom:384.150000px;}
.y82{bottom:384.870000px;}
.y47{bottom:387.570000px;}
.y2b{bottom:393.690000px;}
.ya2{bottom:398.730000px;}
.yd5{bottom:402.150000px;}
.y81{bottom:402.690000px;}
.y2a{bottom:411.510000px;}
.y46{bottom:414.390000px;}
.yd4{bottom:419.970000px;}
.y80{bottom:420.510000px;}
.ya1{bottom:425.550000px;}
.y29{bottom:429.330000px;}
.y45{bottom:432.210000px;}
.y109{bottom:437.445000px;}
.yd3{bottom:437.790000px;}
.y7f{bottom:438.330000px;}
.ya0{bottom:443.415000px;}
.y28{bottom:447.195000px;}
.y44{bottom:450.075000px;}
.yd2{bottom:455.655000px;}
.y7e{bottom:456.195000px;}
.y9f{bottom:461.235000px;}
.y27{bottom:465.015000px;}
.yd1{bottom:473.475000px;}
.y7d{bottom:474.195000px;}
.y107{bottom:477.615000px;}
.y43{bottom:478.335000px;}
.y9e{bottom:479.235000px;}
.y26{bottom:482.835000px;}
.y7c{bottom:492.015000px;}
.y9d{bottom:497.055000px;}
.yd0{bottom:500.115000px;}
.y25{bottom:500.835000px;}
.y42{bottom:509.835000px;}
.y9c{bottom:514.875000px;}
.y24{bottom:518.655000px;}
.ycf{bottom:527.295000px;}
.y41{bottom:527.655000px;}
.y9b{bottom:532.695000px;}
.y23{bottom:536.475000px;}
.yce{bottom:545.115000px;}
.y40{bottom:545.475000px;}
.y9a{bottom:550.515000px;}
.y102{bottom:553.575000px;}
.y22{bottom:554.295000px;}
.y7b{bottom:554.475000px;}
.ycd{bottom:562.935000px;}
.y3f{bottom:563.295000px;}
.y99{bottom:568.515000px;}
.y21{bottom:572.115000px;}
.y7a{bottom:572.475000px;}
.ycc{bottom:580.755000px;}
.y3e{bottom:581.115000px;}
.y98{bottom:586.335000px;}
.y20{bottom:589.935000px;}
.y3d{bottom:598.935000px;}
.y79{bottom:599.295000px;}
.y97{bottom:604.155000px;}
.ycb{bottom:607.215000px;}
.y1f{bottom:607.935000px;}
.y3c{bottom:616.935000px;}
.y78{bottom:617.115000px;}
.y96{bottom:621.975000px;}
.yca{bottom:625.215000px;}
.yfb{bottom:629.355000px;}
.y1e{bottom:636.375000px;}
.y77{bottom:643.935000px;}
.y95{bottom:649.695000px;}
.yc9{bottom:652.395000px;}
.y1b{bottom:656.715000px;}
.y76{bottom:661.755000px;}
.yc8{bottom:670.215000px;}
.y75{bottom:679.605000px;}
.yc7{bottom:688.065000px;}
.y74{bottom:697.605000px;}
.yf{bottom:707.865000px;}
.yc6{bottom:714.525000px;}
.y73{bottom:715.425000px;}
.y72{bottom:733.245000px;}
.yc5{bottom:741.885000px;}
.yfa{bottom:746.745000px;}
.y71{bottom:751.065000px;}
.yc4{bottom:759.705000px;}
.yf9{bottom:767.265000px;}
.y70{bottom:768.885000px;}
.yc3{bottom:777.525000px;}
.y6f{bottom:786.885000px;}
.yc2{bottom:795.345000px;}
.yf8{bottom:798.765000px;}
.y6e{bottom:804.705000px;}
.yc1{bottom:813.165000px;}
.yf7{bottom:816.585000px;}
.y6d{bottom:822.525000px;}
.yc0{bottom:830.985000px;}
.yf6{bottom:834.405000px;}
.y6c{bottom:840.345000px;}
.ybf{bottom:848.985000px;}
.yf5{bottom:852.225000px;}
.y6b{bottom:858.165000px;}
.ybe{bottom:866.805000px;}
.yf4{bottom:870.045000px;}
.y6a{bottom:875.985000px;}
.ybd{bottom:884.625000px;}
.yf3{bottom:888.045000px;}
.y69{bottom:893.985000px;}
.ybc{bottom:902.445000px;}
.yf2{bottom:905.865000px;}
.y68{bottom:911.850000px;}
.ybb{bottom:920.310000px;}
.yf1{bottom:923.730000px;}
.ye{bottom:926.430000px;}
.y94{bottom:929.670000px;}
.y67{bottom:938.670000px;}
.yf0{bottom:941.550000px;}
.yba{bottom:946.950000px;}
.y93{bottom:947.490000px;}
.yd{bottom:950.190000px;}
.y66{bottom:956.490000px;}
.yef{bottom:959.370000px;}
.y92{bottom:965.310000px;}
.y11f{bottom:973.050000px;}
.yc{bottom:974.130000px;}
.y65{bottom:974.310000px;}
.yee{bottom:977.190000px;}
.y91{bottom:983.310000px;}
.yb9{bottom:991.950000px;}
.y64{bottom:992.310000px;}
.yed{bottom:995.190000px;}
.yb{bottom:997.530000px;}
.y90{bottom:1001.130000px;}
.y11e{bottom:1007.790000px;}
.yb8{bottom:1009.770000px;}
.y63{bottom:1010.130000px;}
.yec{bottom:1013.010000px;}
.y8f{bottom:1018.950000px;}
.ya{bottom:1024.530000px;}
.y62{bottom:1027.950000px;}
.yeb{bottom:1030.830000px;}
.y11d{bottom:1032.990000px;}
.y119{bottom:1033.350000px;}
.yb7{bottom:1036.230000px;}
.y8e{bottom:1036.770000px;}
.y61{bottom:1045.770000px;}
.yea{bottom:1048.650000px;}
.y11c{bottom:1051.350000px;}
.y8d{bottom:1054.590000px;}
.y9{bottom:1056.930000px;}
.yb6{bottom:1063.410000px;}
.y60{bottom:1063.590000px;}
.ye9{bottom:1066.470000px;}
.y8c{bottom:1072.410000px;}
.y5f{bottom:1081.410000px;}
.ye8{bottom:1084.470000px;}
.y8{bottom:1087.350000px;}
.y8b{bottom:1090.410000px;}
.yb5{bottom:1099.230000px;}
.y5e{bottom:1099.410000px;}
.ye7{bottom:1102.290000px;}
.y8a{bottom:1108.230000px;}
.y118{bottom:1109.310000px;}
.y6{bottom:1113.270000px;}
.yb4{bottom:1117.050000px;}
.y5d{bottom:1117.230000px;}
.ye6{bottom:1120.110000px;}
.y89{bottom:1126.050000px;}
.y11a{bottom:1127.130000px;}
.y5{bottom:1132.530000px;}
.yb3{bottom:1134.870000px;}
.y5c{bottom:1135.050000px;}
.ye5{bottom:1137.930000px;}
.y4{bottom:1150.920000px;}
.y5b{bottom:1152.900000px;}
.yb2{bottom:1161.360000px;}
.y3{bottom:1166.220000px;}
.y5a{bottom:1170.720000px;}
.y2{bottom:1181.520000px;}
.y58{bottom:1183.860000px;}
.y57{bottom:1189.260000px;}
.y56{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h14{height:10.363359px;}
.h13{height:15.240234px;}
.h18{height:35.661000px;}
.h10{height:39.049805px;}
.h12{height:40.843828px;}
.h6{height:47.344922px;}
.hd{height:50.430000px;}
.h1a{height:52.971680px;}
.h7{height:52.998047px;}
.h1e{height:53.670000px;}
.hb{height:54.421875px;}
.h11{height:55.503491px;}
.ha{height:60.041250px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:66.757500px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.h16{height:71.265000px;}
.h17{height:71.445000px;}
.h1d{height:71.490000px;}
.hf{height:72.562500px;}
.h9{height:84.898125px;}
.h19{height:89.265000px;}
.h1c{height:89.278500px;}
.h1b{height:89.316000px;}
.h15{height:107.130000px;}
.hc{height:212.070000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.225000px;}
.w6{width:21.238500px;}
.w4{width:344.220000px;}
.w5{width:344.233500px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.065000px;}
.x9{left:8.098500px;}
.x17{left:52.921500px;}
.x5{left:54.000000px;}
.x10{left:55.440000px;}
.x8{left:72.901500px;}
.x16{left:76.501500px;}
.x11{left:81.000000px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.x12{left:108.036000px;}
.xf{left:231.870000px;}
.x1{left:259.950000px;}
.x2{left:320.475000px;}
.x4{left:335.055000px;}
.x3{left:353.055000px;}
.x13{left:472.440000px;}
.xb{left:473.505000px;}
.x15{left:496.020000px;}
.xd{left:500.505000px;}
.xc{left:514.725000px;}
.xe{left:527.505000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.239467pt;}
.lse{letter-spacing:-0.075733pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.259733pt;}
.lsc{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.656000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls3{letter-spacing:2.720000pt;}
.lsd{letter-spacing:10.560000pt;}
.ls7{letter-spacing:66.656000pt;}
.lsb{letter-spacing:66.784000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws6{word-spacing:-9.693333pt;}
.ws5{word-spacing:-9.357867pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.097387pt;}
._6{width:2.033067pt;}
._5{width:2.974720pt;}
._7{width:4.320000pt;}
._8{width:5.362133pt;}
._b{width:6.288000pt;}
._9{width:7.221547pt;}
._a{width:8.464000pt;}
._13{width:9.456000pt;}
._17{width:10.896000pt;}
._c{width:13.776000pt;}
._d{width:14.736000pt;}
._14{width:16.320000pt;}
._1a{width:17.397333pt;}
._e{width:18.528000pt;}
._f{width:19.536000pt;}
._15{width:21.072000pt;}
._20{width:22.313387pt;}
._1e{width:23.301333pt;}
._1f{width:24.212053pt;}
._23{width:25.202560pt;}
._12{width:26.304000pt;}
._11{width:27.360000pt;}
._25{width:28.848000pt;}
._24{width:30.542720pt;}
._22{width:31.440000pt;}
._10{width:32.496000pt;}
._21{width:33.744000pt;}
._18{width:35.136000pt;}
._16{width:36.062720pt;}
._1d{width:36.998400pt;}
._19{width:38.016000pt;}
._27{width:39.040000pt;}
._26{width:40.128000pt;}
._1b{width:42.544000pt;}
._1c{width:43.477333pt;}
._28{width:62.128000pt;}
._29{width:90.528000pt;}
._2{width:1444.853333pt;}
._3{width:1743.086933pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.880000pt;}
.y111{bottom:4.946667pt;}
.y106{bottom:4.960000pt;}
.y10b{bottom:4.986667pt;}
.y101{bottom:5.120000pt;}
.y1d{bottom:9.120000pt;}
.y110{bottom:20.786667pt;}
.y105{bottom:20.800000pt;}
.y10a{bottom:20.826667pt;}
.y100{bottom:20.960000pt;}
.y11b{bottom:20.986667pt;}
.y1c{bottom:25.946667pt;}
.y19{bottom:26.720000pt;}
.y10f{bottom:36.626667pt;}
.y104{bottom:36.640000pt;}
.yff{bottom:36.800000pt;}
.y115{bottom:36.826667pt;}
.y18{bottom:42.720000pt;}
.y59{bottom:52.000000pt;}
.y10e{bottom:52.466667pt;}
.y103{bottom:52.480000pt;}
.y113{bottom:52.626667pt;}
.y108{bottom:52.640000pt;}
.yfe{bottom:52.666667pt;}
.y17{bottom:58.560000pt;}
.y7{bottom:68.320000pt;}
.y10d{bottom:68.466667pt;}
.y117{bottom:68.480000pt;}
.yfd{bottom:68.506667pt;}
.y116{bottom:71.200000pt;}
.y16{bottom:74.400000pt;}
.ye4{bottom:78.080000pt;}
.yb1{bottom:84.320000pt;}
.yfc{bottom:84.346667pt;}
.y15{bottom:90.240000pt;}
.y55{bottom:92.960000pt;}
.y3b{bottom:96.000000pt;}
.yb0{bottom:100.160000pt;}
.y14{bottom:106.080000pt;}
.ye3{bottom:107.200000pt;}
.y54{bottom:108.800000pt;}
.y3a{bottom:111.840000pt;}
.yaf{bottom:116.160000pt;}
.y13{bottom:121.920000pt;}
.y53{bottom:124.640000pt;}
.y39{bottom:127.680000pt;}
.yae{bottom:132.000000pt;}
.ye2{bottom:135.040000pt;}
.y12{bottom:137.920000pt;}
.y52{bottom:140.640000pt;}
.y38{bottom:143.520000pt;}
.y88{bottom:143.680000pt;}
.yad{bottom:147.840000pt;}
.ye1{bottom:151.040000pt;}
.y11{bottom:153.760000pt;}
.y114{bottom:154.560000pt;}
.y37{bottom:159.360000pt;}
.y87{bottom:159.520000pt;}
.y51{bottom:165.760000pt;}
.ye0{bottom:166.880000pt;}
.y10{bottom:169.600000pt;}
.yac{bottom:171.360000pt;}
.y36{bottom:175.360000pt;}
.ydf{bottom:182.720000pt;}
.y35{bottom:191.226667pt;}
.y50{bottom:193.626667pt;}
.yab{bottom:195.546667pt;}
.yde{bottom:198.586667pt;}
.y34{bottom:207.066667pt;}
.y4f{bottom:209.466667pt;}
.yaa{bottom:211.386667pt;}
.ydd{bottom:214.426667pt;}
.y33{bottom:222.906667pt;}
.y86{bottom:223.066667pt;}
.y4e{bottom:225.306667pt;}
.ya9{bottom:227.386667pt;}
.ydc{bottom:230.266667pt;}
.y112{bottom:237.960000pt;}
.y32{bottom:238.746667pt;}
.y85{bottom:238.906667pt;}
.y4d{bottom:241.306667pt;}
.ya8{bottom:243.226667pt;}
.ydb{bottom:253.946667pt;}
.y31{bottom:254.586667pt;}
.y84{bottom:254.746667pt;}
.ya7{bottom:259.066667pt;}
.y4c{bottom:265.146667pt;}
.y30{bottom:270.586667pt;}
.yda{bottom:278.106667pt;}
.y4b{bottom:280.986667pt;}
.ya6{bottom:282.586667pt;}
.y2f{bottom:286.426667pt;}
.yd9{bottom:293.946667pt;}
.y4a{bottom:296.826667pt;}
.y2e{bottom:302.266667pt;}
.y10c{bottom:305.480000pt;}
.ya5{bottom:306.746667pt;}
.yd8{bottom:309.786667pt;}
.y49{bottom:312.666667pt;}
.y2d{bottom:318.106667pt;}
.y83{bottom:318.266667pt;}
.ya4{bottom:322.746667pt;}
.yd7{bottom:325.626667pt;}
.y48{bottom:328.506667pt;}
.y2c{bottom:333.946667pt;}
.ya3{bottom:338.586667pt;}
.yd6{bottom:341.466667pt;}
.y82{bottom:342.106667pt;}
.y47{bottom:344.506667pt;}
.y2b{bottom:349.946667pt;}
.ya2{bottom:354.426667pt;}
.yd5{bottom:357.466667pt;}
.y81{bottom:357.946667pt;}
.y2a{bottom:365.786667pt;}
.y46{bottom:368.346667pt;}
.yd4{bottom:373.306667pt;}
.y80{bottom:373.786667pt;}
.ya1{bottom:378.266667pt;}
.y29{bottom:381.626667pt;}
.y45{bottom:384.186667pt;}
.y109{bottom:388.840000pt;}
.yd3{bottom:389.146667pt;}
.y7f{bottom:389.626667pt;}
.ya0{bottom:394.146667pt;}
.y28{bottom:397.506667pt;}
.y44{bottom:400.066667pt;}
.yd2{bottom:405.026667pt;}
.y7e{bottom:405.506667pt;}
.y9f{bottom:409.986667pt;}
.y27{bottom:413.346667pt;}
.yd1{bottom:420.866667pt;}
.y7d{bottom:421.506667pt;}
.y107{bottom:424.546667pt;}
.y43{bottom:425.186667pt;}
.y9e{bottom:425.986667pt;}
.y26{bottom:429.186667pt;}
.y7c{bottom:437.346667pt;}
.y9d{bottom:441.826667pt;}
.yd0{bottom:444.546667pt;}
.y25{bottom:445.186667pt;}
.y42{bottom:453.186667pt;}
.y9c{bottom:457.666667pt;}
.y24{bottom:461.026667pt;}
.ycf{bottom:468.706667pt;}
.y41{bottom:469.026667pt;}
.y9b{bottom:473.506667pt;}
.y23{bottom:476.866667pt;}
.yce{bottom:484.546667pt;}
.y40{bottom:484.866667pt;}
.y9a{bottom:489.346667pt;}
.y102{bottom:492.066667pt;}
.y22{bottom:492.706667pt;}
.y7b{bottom:492.866667pt;}
.ycd{bottom:500.386667pt;}
.y3f{bottom:500.706667pt;}
.y99{bottom:505.346667pt;}
.y21{bottom:508.546667pt;}
.y7a{bottom:508.866667pt;}
.ycc{bottom:516.226667pt;}
.y3e{bottom:516.546667pt;}
.y98{bottom:521.186667pt;}
.y20{bottom:524.386667pt;}
.y3d{bottom:532.386667pt;}
.y79{bottom:532.706667pt;}
.y97{bottom:537.026667pt;}
.ycb{bottom:539.746667pt;}
.y1f{bottom:540.386667pt;}
.y3c{bottom:548.386667pt;}
.y78{bottom:548.546667pt;}
.y96{bottom:552.866667pt;}
.yca{bottom:555.746667pt;}
.yfb{bottom:559.426667pt;}
.y1e{bottom:565.666667pt;}
.y77{bottom:572.386667pt;}
.y95{bottom:577.506667pt;}
.yc9{bottom:579.906667pt;}
.y1b{bottom:583.746667pt;}
.y76{bottom:588.226667pt;}
.yc8{bottom:595.746667pt;}
.y75{bottom:604.093333pt;}
.yc7{bottom:611.613333pt;}
.y74{bottom:620.093333pt;}
.yf{bottom:629.213333pt;}
.yc6{bottom:635.133333pt;}
.y73{bottom:635.933333pt;}
.y72{bottom:651.773333pt;}
.yc5{bottom:659.453333pt;}
.yfa{bottom:663.773333pt;}
.y71{bottom:667.613333pt;}
.yc4{bottom:675.293333pt;}
.yf9{bottom:682.013333pt;}
.y70{bottom:683.453333pt;}
.yc3{bottom:691.133333pt;}
.y6f{bottom:699.453333pt;}
.yc2{bottom:706.973333pt;}
.yf8{bottom:710.013333pt;}
.y6e{bottom:715.293333pt;}
.yc1{bottom:722.813333pt;}
.yf7{bottom:725.853333pt;}
.y6d{bottom:731.133333pt;}
.yc0{bottom:738.653333pt;}
.yf6{bottom:741.693333pt;}
.y6c{bottom:746.973333pt;}
.ybf{bottom:754.653333pt;}
.yf5{bottom:757.533333pt;}
.y6b{bottom:762.813333pt;}
.ybe{bottom:770.493333pt;}
.yf4{bottom:773.373333pt;}
.y6a{bottom:778.653333pt;}
.ybd{bottom:786.333333pt;}
.yf3{bottom:789.373333pt;}
.y69{bottom:794.653333pt;}
.ybc{bottom:802.173333pt;}
.yf2{bottom:805.213333pt;}
.y68{bottom:810.533333pt;}
.ybb{bottom:818.053333pt;}
.yf1{bottom:821.093333pt;}
.ye{bottom:823.493333pt;}
.y94{bottom:826.373333pt;}
.y67{bottom:834.373333pt;}
.yf0{bottom:836.933333pt;}
.yba{bottom:841.733333pt;}
.y93{bottom:842.213333pt;}
.yd{bottom:844.613333pt;}
.y66{bottom:850.213333pt;}
.yef{bottom:852.773333pt;}
.y92{bottom:858.053333pt;}
.y11f{bottom:864.933333pt;}
.yc{bottom:865.893333pt;}
.y65{bottom:866.053333pt;}
.yee{bottom:868.613333pt;}
.y91{bottom:874.053333pt;}
.yb9{bottom:881.733333pt;}
.y64{bottom:882.053333pt;}
.yed{bottom:884.613333pt;}
.yb{bottom:886.693333pt;}
.y90{bottom:889.893333pt;}
.y11e{bottom:895.813333pt;}
.yb8{bottom:897.573333pt;}
.y63{bottom:897.893333pt;}
.yec{bottom:900.453333pt;}
.y8f{bottom:905.733333pt;}
.ya{bottom:910.693333pt;}
.y62{bottom:913.733333pt;}
.yeb{bottom:916.293333pt;}
.y11d{bottom:918.213333pt;}
.y119{bottom:918.533333pt;}
.yb7{bottom:921.093333pt;}
.y8e{bottom:921.573333pt;}
.y61{bottom:929.573333pt;}
.yea{bottom:932.133333pt;}
.y11c{bottom:934.533333pt;}
.y8d{bottom:937.413333pt;}
.y9{bottom:939.493333pt;}
.yb6{bottom:945.253333pt;}
.y60{bottom:945.413333pt;}
.ye9{bottom:947.973333pt;}
.y8c{bottom:953.253333pt;}
.y5f{bottom:961.253333pt;}
.ye8{bottom:963.973333pt;}
.y8{bottom:966.533333pt;}
.y8b{bottom:969.253333pt;}
.yb5{bottom:977.093333pt;}
.y5e{bottom:977.253333pt;}
.ye7{bottom:979.813333pt;}
.y8a{bottom:985.093333pt;}
.y118{bottom:986.053333pt;}
.y6{bottom:989.573333pt;}
.yb4{bottom:992.933333pt;}
.y5d{bottom:993.093333pt;}
.ye6{bottom:995.653333pt;}
.y89{bottom:1000.933333pt;}
.y11a{bottom:1001.893333pt;}
.y5{bottom:1006.693333pt;}
.yb3{bottom:1008.773333pt;}
.y5c{bottom:1008.933333pt;}
.ye5{bottom:1011.493333pt;}
.y4{bottom:1023.040000pt;}
.y5b{bottom:1024.800000pt;}
.yb2{bottom:1032.320000pt;}
.y3{bottom:1036.640000pt;}
.y5a{bottom:1040.640000pt;}
.y2{bottom:1050.240000pt;}
.y58{bottom:1052.320000pt;}
.y57{bottom:1057.120000pt;}
.y56{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h14{height:9.211875pt;}
.h13{height:13.546875pt;}
.h18{height:31.698667pt;}
.h10{height:34.710938pt;}
.h12{height:36.305625pt;}
.h6{height:42.084375pt;}
.hd{height:44.826667pt;}
.h1a{height:47.085938pt;}
.h7{height:47.109375pt;}
.h1e{height:47.706667pt;}
.hb{height:48.375000pt;}
.h11{height:49.336436pt;}
.ha{height:53.370000pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:59.340000pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.h16{height:63.346667pt;}
.h17{height:63.506667pt;}
.h1d{height:63.546667pt;}
.hf{height:64.500000pt;}
.h9{height:75.465000pt;}
.h19{height:79.346667pt;}
.h1c{height:79.358667pt;}
.h1b{height:79.392000pt;}
.h15{height:95.226667pt;}
.hc{height:188.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.866667pt;}
.w6{width:18.878667pt;}
.w4{width:305.973333pt;}
.w5{width:305.985333pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:0.946667pt;}
.x9{left:7.198667pt;}
.x17{left:47.041333pt;}
.x5{left:48.000000pt;}
.x10{left:49.280000pt;}
.x8{left:64.801333pt;}
.x16{left:68.001333pt;}
.x11{left:72.000000pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.x12{left:96.032000pt;}
.xf{left:206.106667pt;}
.x1{left:231.066667pt;}
.x2{left:284.866667pt;}
.x4{left:297.826667pt;}
.x3{left:313.826667pt;}
.x13{left:419.946667pt;}
.xb{left:420.893333pt;}
.x15{left:440.906667pt;}
.xd{left:444.893333pt;}
.xc{left:457.533333pt;}
.xe{left:468.893333pt;}
.x7{left:739.200000pt;}
}




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