
    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_bd5a55db2c7815cad8f06fe6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_1cb066d9c9253cf11348dff0.woff')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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_61d319d3513aa2932a9c6d10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b47a2cc10fbc730f96a85c93.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_7856c2decff1fdba1beeee0c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_36160a8c5bb3a8a78249e43b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_2a86e79fde8300a5bad7c105.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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;}
.ls4{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.ls13{letter-spacing:16.506720px;}
.ls6{letter-spacing:46.026720px;}
.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:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.426400px;}
.ws6{word-spacing:-14.328000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-463.308480px;}
._c{margin-left:-3.695760px;}
._a{margin-left:-2.481840px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._d{width:4.378080px;}
._10{width:6.132960px;}
._b{width:7.768800px;}
._9{width:9.001440px;}
._8{width:10.128960px;}
._7{width:11.212560px;}
._13{width:12.310560px;}
._6{width:13.342800px;}
._15{width:16.085040px;}
._4{width:17.332560px;}
._5{width:18.568800px;}
._16{width:20.355840px;}
._14{width:24.479280px;}
._11{width:25.577280px;}
._18{width:29.342160px;}
._17{width:30.597120px;}
._e{width:43.326000px;}
._f{width:59.102640px;}
._12{width:64.268640px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:3.240000px;}
.y7{bottom:5.220000px;}
.y25{bottom:5.940000px;}
.yea{bottom:8.100000px;}
.ye8{bottom:8.280000px;}
.ye6{bottom:8.640000px;}
.y3f{bottom:12.420000px;}
.ydd{bottom:13.680000px;}
.ye4{bottom:13.710000px;}
.ye1{bottom:14.040000px;}
.y6{bottom:14.220000px;}
.y24{bottom:25.740000px;}
.y3e{bottom:32.220000px;}
.y23{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y3d{bottom:52.020000px;}
.y9{bottom:60.120000px;}
.y22{bottom:65.340000px;}
.y3c{bottom:72.000000px;}
.y4{bottom:77.400000px;}
.yac{bottom:83.880000px;}
.y21{bottom:85.140000px;}
.ye2{bottom:88.020000px;}
.y3b{bottom:89.280000px;}
.y12c{bottom:92.880000px;}
.y87{bottom:94.680000px;}
.yab{bottom:103.680000px;}
.y20{bottom:105.120000px;}
.yb9{bottom:105.480000px;}
.y3a{bottom:106.560000px;}
.y119{bottom:106.920000px;}
.y51{bottom:107.100000px;}
.y3{bottom:109.110000px;}
.ye0{bottom:109.800000px;}
.y12b{bottom:112.680000px;}
.y86{bottom:114.480000px;}
.yaa{bottom:123.480000px;}
.y39{bottom:123.660000px;}
.y1f{bottom:124.920000px;}
.yb8{bottom:125.280000px;}
.y118{bottom:126.720000px;}
.y50{bottom:126.900000px;}
.y12a{bottom:132.480000px;}
.y85{bottom:134.280000px;}
.y38{bottom:140.940000px;}
.y2{bottom:142.230000px;}
.ya9{bottom:143.280000px;}
.y1e{bottom:144.720000px;}
.yb7{bottom:145.080000px;}
.y117{bottom:146.520000px;}
.y4f{bottom:146.700000px;}
.y129{bottom:152.310000px;}
.yde{bottom:153.210000px;}
.y84{bottom:154.110000px;}
.y37{bottom:158.220000px;}
.ya8{bottom:163.110000px;}
.y1d{bottom:164.520000px;}
.yb6{bottom:165.090000px;}
.y116{bottom:166.350000px;}
.y4e{bottom:166.710000px;}
.y128{bottom:172.110000px;}
.y83{bottom:174.090000px;}
.y36{bottom:175.500000px;}
.ydc{bottom:175.710000px;}
.ya7{bottom:183.090000px;}
.y1c{bottom:184.320000px;}
.yb5{bottom:184.890000px;}
.y115{bottom:186.330000px;}
.y4d{bottom:186.510000px;}
.y35{bottom:192.090000px;}
.y82{bottom:193.890000px;}
.ya6{bottom:202.890000px;}
.y1b{bottom:204.330000px;}
.yb4{bottom:204.690000px;}
.y34{bottom:205.770000px;}
.y114{bottom:206.130000px;}
.y4c{bottom:206.310000px;}
.y127{bottom:211.890000px;}
.y81{bottom:213.690000px;}
.y33{bottom:219.630000px;}
.ya5{bottom:222.690000px;}
.y1a{bottom:224.130000px;}
.yb3{bottom:224.490000px;}
.y113{bottom:225.930000px;}
.y4b{bottom:226.110000px;}
.y126{bottom:231.690000px;}
.y32{bottom:233.490000px;}
.ya4{bottom:242.490000px;}
.y19{bottom:243.930000px;}
.yb2{bottom:244.290000px;}
.y112{bottom:245.730000px;}
.y4a{bottom:245.910000px;}
.y31{bottom:247.170000px;}
.y125{bottom:251.490000px;}
.y80{bottom:253.290000px;}
.y30{bottom:261.030000px;}
.ya3{bottom:262.290000px;}
.y18{bottom:263.730000px;}
.ydb{bottom:264.270000px;}
.y111{bottom:265.530000px;}
.y49{bottom:265.890000px;}
.y124{bottom:271.290000px;}
.y7f{bottom:273.270000px;}
.y2f{bottom:274.890000px;}
.ya2{bottom:282.270000px;}
.y17{bottom:283.530000px;}
.yda{bottom:284.070000px;}
.y110{bottom:285.510000px;}
.y48{bottom:285.690000px;}
.y2e{bottom:288.570000px;}
.y123{bottom:291.270000px;}
.y7e{bottom:293.070000px;}
.ya1{bottom:302.070000px;}
.y2d{bottom:302.430000px;}
.y16{bottom:303.510000px;}
.yd9{bottom:303.870000px;}
.y10f{bottom:305.310000px;}
.y47{bottom:305.490000px;}
.y122{bottom:311.070000px;}
.y7d{bottom:312.870000px;}
.y2c{bottom:316.290000px;}
.ya0{bottom:321.870000px;}
.y15{bottom:323.310000px;}
.yd8{bottom:323.670000px;}
.y10e{bottom:325.110000px;}
.y46{bottom:325.290000px;}
.y2b{bottom:329.970000px;}
.y121{bottom:330.870000px;}
.y7c{bottom:332.670000px;}
.y9f{bottom:341.670000px;}
.y14{bottom:343.110000px;}
.yd7{bottom:343.470000px;}
.y2a{bottom:343.830000px;}
.y10d{bottom:344.910000px;}
.y45{bottom:345.090000px;}
.y120{bottom:350.670000px;}
.y7b{bottom:352.470000px;}
.y29{bottom:357.690000px;}
.y9e{bottom:361.470000px;}
.y13{bottom:362.910000px;}
.yd6{bottom:363.450000px;}
.y10c{bottom:364.710000px;}
.y44{bottom:365.070000px;}
.y11f{bottom:370.470000px;}
.y28{bottom:372.090000px;}
.y7a{bottom:372.450000px;}
.y9d{bottom:381.450000px;}
.y12{bottom:382.710000px;}
.yd5{bottom:383.250000px;}
.y10b{bottom:384.690000px;}
.y43{bottom:384.870000px;}
.y27{bottom:389.370000px;}
.y11e{bottom:390.450000px;}
.yb1{bottom:392.250000px;}
.y79{bottom:401.295000px;}
.yd4{bottom:403.095000px;}
.y11{bottom:403.950000px;}
.y10a{bottom:404.535000px;}
.y42{bottom:404.715000px;}
.y26{bottom:406.650000px;}
.y11d{bottom:410.295000px;}
.yb0{bottom:412.095000px;}
.y78{bottom:421.095000px;}
.yd3{bottom:422.895000px;}
.y109{bottom:424.335000px;}
.y41{bottom:424.515000px;}
.y11c{bottom:430.095000px;}
.yaf{bottom:431.895000px;}
.y77{bottom:440.895000px;}
.yd2{bottom:442.695000px;}
.y108{bottom:444.135000px;}
.y40{bottom:444.315000px;}
.y11b{bottom:449.895000px;}
.yae{bottom:451.695000px;}
.y10{bottom:459.075000px;}
.y76{bottom:460.695000px;}
.yd1{bottom:462.675000px;}
.y107{bottom:463.935000px;}
.y11a{bottom:469.695000px;}
.yad{bottom:471.675000px;}
.y75{bottom:480.675000px;}
.yd0{bottom:482.475000px;}
.y106{bottom:483.915000px;}
.y9c{bottom:489.675000px;}
.y74{bottom:500.475000px;}
.ycf{bottom:502.275000px;}
.y105{bottom:503.715000px;}
.y9b{bottom:509.475000px;}
.y73{bottom:520.275000px;}
.yce{bottom:522.075000px;}
.y104{bottom:523.515000px;}
.y9a{bottom:529.275000px;}
.y72{bottom:540.075000px;}
.ycd{bottom:541.875000px;}
.y103{bottom:543.315000px;}
.y99{bottom:549.075000px;}
.y71{bottom:559.875000px;}
.ycc{bottom:561.855000px;}
.y102{bottom:563.115000px;}
.y98{bottom:568.875000px;}
.y70{bottom:579.855000px;}
.ycb{bottom:581.655000px;}
.y101{bottom:583.095000px;}
.y97{bottom:588.855000px;}
.y6f{bottom:599.655000px;}
.yca{bottom:601.455000px;}
.y100{bottom:602.895000px;}
.y96{bottom:608.655000px;}
.y6e{bottom:619.455000px;}
.yc9{bottom:621.255000px;}
.yff{bottom:622.695000px;}
.y95{bottom:628.455000px;}
.y6d{bottom:639.255000px;}
.yc8{bottom:641.055000px;}
.yfe{bottom:642.495000px;}
.y94{bottom:648.255000px;}
.y6c{bottom:659.085000px;}
.yfd{bottom:662.325000px;}
.y93{bottom:668.085000px;}
.yc7{bottom:670.065000px;}
.y6b{bottom:679.065000px;}
.yfc{bottom:682.305000px;}
.y92{bottom:688.065000px;}
.yc6{bottom:689.865000px;}
.y6a{bottom:698.865000px;}
.yfb{bottom:702.105000px;}
.y91{bottom:707.865000px;}
.yc5{bottom:709.665000px;}
.y69{bottom:718.665000px;}
.yfa{bottom:721.905000px;}
.y90{bottom:727.665000px;}
.yc4{bottom:729.465000px;}
.y68{bottom:738.465000px;}
.yf9{bottom:741.705000px;}
.y8f{bottom:747.465000px;}
.yc3{bottom:749.265000px;}
.y67{bottom:758.265000px;}
.yf8{bottom:761.505000px;}
.y8e{bottom:767.265000px;}
.yc2{bottom:769.245000px;}
.y66{bottom:778.245000px;}
.yf7{bottom:781.485000px;}
.y8d{bottom:787.245000px;}
.y65{bottom:798.045000px;}
.yf6{bottom:801.285000px;}
.y8c{bottom:807.045000px;}
.y64{bottom:817.845000px;}
.yf5{bottom:821.085000px;}
.y8b{bottom:826.845000px;}
.y63{bottom:837.645000px;}
.yf4{bottom:840.885000px;}
.y8a{bottom:846.645000px;}
.y62{bottom:857.445000px;}
.yf3{bottom:860.685000px;}
.y89{bottom:866.445000px;}
.y61{bottom:877.245000px;}
.yf2{bottom:880.665000px;}
.yf{bottom:886.245000px;}
.y60{bottom:897.225000px;}
.yf1{bottom:900.510000px;}
.ye{bottom:906.090000px;}
.y88{bottom:906.270000px;}
.yc1{bottom:917.070000px;}
.yf0{bottom:920.310000px;}
.y5f{bottom:926.070000px;}
.yd{bottom:926.430000px;}
.yc0{bottom:936.870000px;}
.yef{bottom:940.110000px;}
.y5e{bottom:945.870000px;}
.yc{bottom:947.850000px;}
.ybf{bottom:956.670000px;}
.yee{bottom:959.910000px;}
.y5d{bottom:965.670000px;}
.yb{bottom:971.250000px;}
.ybe{bottom:976.470000px;}
.yed{bottom:979.890000px;}
.y5c{bottom:985.470000px;}
.ybd{bottom:996.450000px;}
.yec{bottom:999.690000px;}
.ya{bottom:1002.930000px;}
.y5b{bottom:1005.450000px;}
.ybc{bottom:1016.250000px;}
.yeb{bottom:1019.490000px;}
.y5a{bottom:1025.250000px;}
.y8{bottom:1029.750000px;}
.ybb{bottom:1036.050000px;}
.ye9{bottom:1038.390000px;}
.y59{bottom:1045.050000px;}
.y1{bottom:1046.130000px;}
.yba{bottom:1055.850000px;}
.y58{bottom:1064.850000px;}
.ye7{bottom:1069.890000px;}
.y57{bottom:1084.650000px;}
.ye5{bottom:1101.750000px;}
.y56{bottom:1104.630000px;}
.y55{bottom:1124.430000px;}
.ye3{bottom:1135.050000px;}
.y54{bottom:1144.230000px;}
.y53{bottom:1164.060000px;}
.y52{bottom:1192.140000px;}
.h5{height:2.082656px;}
.h12{height:17.280000px;}
.h17{height:27.000000px;}
.h16{height:27.360000px;}
.h15{height:28.080000px;}
.he{height:34.036523px;}
.h11{height:38.160000px;}
.h14{height:38.196000px;}
.h13{height:38.880000px;}
.h9{height:42.164648px;}
.hb{height:43.215117px;}
.h10{height:43.506914px;}
.ha{height:46.736719px;}
.h7{height:47.901094px;}
.hf{height:48.127500px;}
.h4{height:48.774375px;}
.h18{height:49.255313px;}
.hd{height:50.800781px;}
.h3{height:57.256875px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h2{height:162.750000px;}
.hc{height:420.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:36.720000px;}
.w9{width:46.260000px;}
.w7{width:55.440000px;}
.wc{width:64.080000px;}
.wa{width:68.256000px;}
.w3{width:147.456000px;}
.w6{width:215.535000px;}
.w8{width:340.635000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.080000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.880000px;}
.x9{left:80.999987px;}
.xa{left:108.035987px;}
.xb{left:110.916000px;}
.x4{left:139.350000px;}
.xd{left:168.510000px;}
.x8{left:333.794987px;}
.x5{left:393.014987px;}
.xe{left:511.485000px;}
.xf{left:560.085000px;}
.x10{left:608.685000px;}
.x7{left:620.565000px;}
.x11{left:679.290000px;}
.x3{left:687.930000px;}
.x12{left:718.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls6{letter-spacing:40.912640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.823467pt;}
.ws6{word-spacing:-12.736000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-411.829760pt;}
._c{margin-left:-3.285120pt;}
._a{margin-left:-2.206080pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._d{width:3.891627pt;}
._10{width:5.451520pt;}
._b{width:6.905600pt;}
._9{width:8.001280pt;}
._8{width:9.003520pt;}
._7{width:9.966720pt;}
._13{width:10.942720pt;}
._6{width:11.860267pt;}
._15{width:14.297813pt;}
._4{width:15.406720pt;}
._5{width:16.505600pt;}
._16{width:18.094080pt;}
._14{width:21.759360pt;}
._11{width:22.735360pt;}
._18{width:26.081920pt;}
._17{width:27.197440pt;}
._e{width:38.512000pt;}
._f{width:52.535680pt;}
._12{width:57.127680pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:2.880000pt;}
.y7{bottom:4.640000pt;}
.y25{bottom:5.280000pt;}
.yea{bottom:7.200000pt;}
.ye8{bottom:7.360000pt;}
.ye6{bottom:7.680000pt;}
.y3f{bottom:11.040000pt;}
.ydd{bottom:12.160000pt;}
.ye4{bottom:12.186667pt;}
.ye1{bottom:12.480000pt;}
.y6{bottom:12.640000pt;}
.y24{bottom:22.880000pt;}
.y3e{bottom:28.640000pt;}
.y23{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y3d{bottom:46.240000pt;}
.y9{bottom:53.440000pt;}
.y22{bottom:58.080000pt;}
.y3c{bottom:64.000000pt;}
.y4{bottom:68.800000pt;}
.yac{bottom:74.560000pt;}
.y21{bottom:75.680000pt;}
.ye2{bottom:78.240000pt;}
.y3b{bottom:79.360000pt;}
.y12c{bottom:82.560000pt;}
.y87{bottom:84.160000pt;}
.yab{bottom:92.160000pt;}
.y20{bottom:93.440000pt;}
.yb9{bottom:93.760000pt;}
.y3a{bottom:94.720000pt;}
.y119{bottom:95.040000pt;}
.y51{bottom:95.200000pt;}
.y3{bottom:96.986667pt;}
.ye0{bottom:97.600000pt;}
.y12b{bottom:100.160000pt;}
.y86{bottom:101.760000pt;}
.yaa{bottom:109.760000pt;}
.y39{bottom:109.920000pt;}
.y1f{bottom:111.040000pt;}
.yb8{bottom:111.360000pt;}
.y118{bottom:112.640000pt;}
.y50{bottom:112.800000pt;}
.y12a{bottom:117.760000pt;}
.y85{bottom:119.360000pt;}
.y38{bottom:125.280000pt;}
.y2{bottom:126.426667pt;}
.ya9{bottom:127.360000pt;}
.y1e{bottom:128.640000pt;}
.yb7{bottom:128.960000pt;}
.y117{bottom:130.240000pt;}
.y4f{bottom:130.400000pt;}
.y129{bottom:135.386667pt;}
.yde{bottom:136.186667pt;}
.y84{bottom:136.986667pt;}
.y37{bottom:140.640000pt;}
.ya8{bottom:144.986667pt;}
.y1d{bottom:146.240000pt;}
.yb6{bottom:146.746667pt;}
.y116{bottom:147.866667pt;}
.y4e{bottom:148.186667pt;}
.y128{bottom:152.986667pt;}
.y83{bottom:154.746667pt;}
.y36{bottom:156.000000pt;}
.ydc{bottom:156.186667pt;}
.ya7{bottom:162.746667pt;}
.y1c{bottom:163.840000pt;}
.yb5{bottom:164.346667pt;}
.y115{bottom:165.626667pt;}
.y4d{bottom:165.786667pt;}
.y35{bottom:170.746667pt;}
.y82{bottom:172.346667pt;}
.ya6{bottom:180.346667pt;}
.y1b{bottom:181.626667pt;}
.yb4{bottom:181.946667pt;}
.y34{bottom:182.906667pt;}
.y114{bottom:183.226667pt;}
.y4c{bottom:183.386667pt;}
.y127{bottom:188.346667pt;}
.y81{bottom:189.946667pt;}
.y33{bottom:195.226667pt;}
.ya5{bottom:197.946667pt;}
.y1a{bottom:199.226667pt;}
.yb3{bottom:199.546667pt;}
.y113{bottom:200.826667pt;}
.y4b{bottom:200.986667pt;}
.y126{bottom:205.946667pt;}
.y32{bottom:207.546667pt;}
.ya4{bottom:215.546667pt;}
.y19{bottom:216.826667pt;}
.yb2{bottom:217.146667pt;}
.y112{bottom:218.426667pt;}
.y4a{bottom:218.586667pt;}
.y31{bottom:219.706667pt;}
.y125{bottom:223.546667pt;}
.y80{bottom:225.146667pt;}
.y30{bottom:232.026667pt;}
.ya3{bottom:233.146667pt;}
.y18{bottom:234.426667pt;}
.ydb{bottom:234.906667pt;}
.y111{bottom:236.026667pt;}
.y49{bottom:236.346667pt;}
.y124{bottom:241.146667pt;}
.y7f{bottom:242.906667pt;}
.y2f{bottom:244.346667pt;}
.ya2{bottom:250.906667pt;}
.y17{bottom:252.026667pt;}
.yda{bottom:252.506667pt;}
.y110{bottom:253.786667pt;}
.y48{bottom:253.946667pt;}
.y2e{bottom:256.506667pt;}
.y123{bottom:258.906667pt;}
.y7e{bottom:260.506667pt;}
.ya1{bottom:268.506667pt;}
.y2d{bottom:268.826667pt;}
.y16{bottom:269.786667pt;}
.yd9{bottom:270.106667pt;}
.y10f{bottom:271.386667pt;}
.y47{bottom:271.546667pt;}
.y122{bottom:276.506667pt;}
.y7d{bottom:278.106667pt;}
.y2c{bottom:281.146667pt;}
.ya0{bottom:286.106667pt;}
.y15{bottom:287.386667pt;}
.yd8{bottom:287.706667pt;}
.y10e{bottom:288.986667pt;}
.y46{bottom:289.146667pt;}
.y2b{bottom:293.306667pt;}
.y121{bottom:294.106667pt;}
.y7c{bottom:295.706667pt;}
.y9f{bottom:303.706667pt;}
.y14{bottom:304.986667pt;}
.yd7{bottom:305.306667pt;}
.y2a{bottom:305.626667pt;}
.y10d{bottom:306.586667pt;}
.y45{bottom:306.746667pt;}
.y120{bottom:311.706667pt;}
.y7b{bottom:313.306667pt;}
.y29{bottom:317.946667pt;}
.y9e{bottom:321.306667pt;}
.y13{bottom:322.586667pt;}
.yd6{bottom:323.066667pt;}
.y10c{bottom:324.186667pt;}
.y44{bottom:324.506667pt;}
.y11f{bottom:329.306667pt;}
.y28{bottom:330.746667pt;}
.y7a{bottom:331.066667pt;}
.y9d{bottom:339.066667pt;}
.y12{bottom:340.186667pt;}
.yd5{bottom:340.666667pt;}
.y10b{bottom:341.946667pt;}
.y43{bottom:342.106667pt;}
.y27{bottom:346.106667pt;}
.y11e{bottom:347.066667pt;}
.yb1{bottom:348.666667pt;}
.y79{bottom:356.706667pt;}
.yd4{bottom:358.306667pt;}
.y11{bottom:359.066667pt;}
.y10a{bottom:359.586667pt;}
.y42{bottom:359.746667pt;}
.y26{bottom:361.466667pt;}
.y11d{bottom:364.706667pt;}
.yb0{bottom:366.306667pt;}
.y78{bottom:374.306667pt;}
.yd3{bottom:375.906667pt;}
.y109{bottom:377.186667pt;}
.y41{bottom:377.346667pt;}
.y11c{bottom:382.306667pt;}
.yaf{bottom:383.906667pt;}
.y77{bottom:391.906667pt;}
.yd2{bottom:393.506667pt;}
.y108{bottom:394.786667pt;}
.y40{bottom:394.946667pt;}
.y11b{bottom:399.906667pt;}
.yae{bottom:401.506667pt;}
.y10{bottom:408.066667pt;}
.y76{bottom:409.506667pt;}
.yd1{bottom:411.266667pt;}
.y107{bottom:412.386667pt;}
.y11a{bottom:417.506667pt;}
.yad{bottom:419.266667pt;}
.y75{bottom:427.266667pt;}
.yd0{bottom:428.866667pt;}
.y106{bottom:430.146667pt;}
.y9c{bottom:435.266667pt;}
.y74{bottom:444.866667pt;}
.ycf{bottom:446.466667pt;}
.y105{bottom:447.746667pt;}
.y9b{bottom:452.866667pt;}
.y73{bottom:462.466667pt;}
.yce{bottom:464.066667pt;}
.y104{bottom:465.346667pt;}
.y9a{bottom:470.466667pt;}
.y72{bottom:480.066667pt;}
.ycd{bottom:481.666667pt;}
.y103{bottom:482.946667pt;}
.y99{bottom:488.066667pt;}
.y71{bottom:497.666667pt;}
.ycc{bottom:499.426667pt;}
.y102{bottom:500.546667pt;}
.y98{bottom:505.666667pt;}
.y70{bottom:515.426667pt;}
.ycb{bottom:517.026667pt;}
.y101{bottom:518.306667pt;}
.y97{bottom:523.426667pt;}
.y6f{bottom:533.026667pt;}
.yca{bottom:534.626667pt;}
.y100{bottom:535.906667pt;}
.y96{bottom:541.026667pt;}
.y6e{bottom:550.626667pt;}
.yc9{bottom:552.226667pt;}
.yff{bottom:553.506667pt;}
.y95{bottom:558.626667pt;}
.y6d{bottom:568.226667pt;}
.yc8{bottom:569.826667pt;}
.yfe{bottom:571.106667pt;}
.y94{bottom:576.226667pt;}
.y6c{bottom:585.853333pt;}
.yfd{bottom:588.733333pt;}
.y93{bottom:593.853333pt;}
.yc7{bottom:595.613333pt;}
.y6b{bottom:603.613333pt;}
.yfc{bottom:606.493333pt;}
.y92{bottom:611.613333pt;}
.yc6{bottom:613.213333pt;}
.y6a{bottom:621.213333pt;}
.yfb{bottom:624.093333pt;}
.y91{bottom:629.213333pt;}
.yc5{bottom:630.813333pt;}
.y69{bottom:638.813333pt;}
.yfa{bottom:641.693333pt;}
.y90{bottom:646.813333pt;}
.yc4{bottom:648.413333pt;}
.y68{bottom:656.413333pt;}
.yf9{bottom:659.293333pt;}
.y8f{bottom:664.413333pt;}
.yc3{bottom:666.013333pt;}
.y67{bottom:674.013333pt;}
.yf8{bottom:676.893333pt;}
.y8e{bottom:682.013333pt;}
.yc2{bottom:683.773333pt;}
.y66{bottom:691.773333pt;}
.yf7{bottom:694.653333pt;}
.y8d{bottom:699.773333pt;}
.y65{bottom:709.373333pt;}
.yf6{bottom:712.253333pt;}
.y8c{bottom:717.373333pt;}
.y64{bottom:726.973333pt;}
.yf5{bottom:729.853333pt;}
.y8b{bottom:734.973333pt;}
.y63{bottom:744.573333pt;}
.yf4{bottom:747.453333pt;}
.y8a{bottom:752.573333pt;}
.y62{bottom:762.173333pt;}
.yf3{bottom:765.053333pt;}
.y89{bottom:770.173333pt;}
.y61{bottom:779.773333pt;}
.yf2{bottom:782.813333pt;}
.yf{bottom:787.773333pt;}
.y60{bottom:797.533333pt;}
.yf1{bottom:800.453333pt;}
.ye{bottom:805.413333pt;}
.y88{bottom:805.573333pt;}
.yc1{bottom:815.173333pt;}
.yf0{bottom:818.053333pt;}
.y5f{bottom:823.173333pt;}
.yd{bottom:823.493333pt;}
.yc0{bottom:832.773333pt;}
.yef{bottom:835.653333pt;}
.y5e{bottom:840.773333pt;}
.yc{bottom:842.533333pt;}
.ybf{bottom:850.373333pt;}
.yee{bottom:853.253333pt;}
.y5d{bottom:858.373333pt;}
.yb{bottom:863.333333pt;}
.ybe{bottom:867.973333pt;}
.yed{bottom:871.013333pt;}
.y5c{bottom:875.973333pt;}
.ybd{bottom:885.733333pt;}
.yec{bottom:888.613333pt;}
.ya{bottom:891.493333pt;}
.y5b{bottom:893.733333pt;}
.ybc{bottom:903.333333pt;}
.yeb{bottom:906.213333pt;}
.y5a{bottom:911.333333pt;}
.y8{bottom:915.333333pt;}
.ybb{bottom:920.933333pt;}
.ye9{bottom:923.013333pt;}
.y59{bottom:928.933333pt;}
.y1{bottom:929.893333pt;}
.yba{bottom:938.533333pt;}
.y58{bottom:946.533333pt;}
.ye7{bottom:951.013333pt;}
.y57{bottom:964.133333pt;}
.ye5{bottom:979.333333pt;}
.y56{bottom:981.893333pt;}
.y55{bottom:999.493333pt;}
.ye3{bottom:1008.933333pt;}
.y54{bottom:1017.093333pt;}
.y53{bottom:1034.720000pt;}
.y52{bottom:1059.680000pt;}
.h5{height:1.851250pt;}
.h12{height:15.360000pt;}
.h17{height:24.000000pt;}
.h16{height:24.320000pt;}
.h15{height:24.960000pt;}
.he{height:30.254687pt;}
.h11{height:33.920000pt;}
.h14{height:33.952000pt;}
.h13{height:34.560000pt;}
.h9{height:37.479688pt;}
.hb{height:38.413438pt;}
.h10{height:38.672812pt;}
.ha{height:41.543750pt;}
.h7{height:42.578750pt;}
.hf{height:42.780000pt;}
.h4{height:43.355000pt;}
.h18{height:43.782500pt;}
.hd{height:45.156250pt;}
.h3{height:50.895000pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h2{height:144.666667pt;}
.hc{height:373.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:32.640000pt;}
.w9{width:41.120000pt;}
.w7{width:49.280000pt;}
.wc{width:56.960000pt;}
.wa{width:60.672000pt;}
.w3{width:131.072000pt;}
.w6{width:191.586667pt;}
.w8{width:302.786667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:0.960000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.560000pt;}
.x9{left:71.999988pt;}
.xa{left:96.031988pt;}
.xb{left:98.592000pt;}
.x4{left:123.866667pt;}
.xd{left:149.786667pt;}
.x8{left:296.706655pt;}
.x5{left:349.346655pt;}
.xe{left:454.653333pt;}
.xf{left:497.853333pt;}
.x10{left:541.053333pt;}
.x7{left:551.613333pt;}
.x11{left:603.813333pt;}
.x3{left:611.493333pt;}
.x12{left:638.373333pt;}
}




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