
    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_c64f47a875bdc4b6410c4d5c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7af0d51f63db3d1516c70289.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_73936a70cb6f0650c4981858.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_6ad464c7c22d07da9b217757.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_37e689c3cfd30e1f61ce6754.woff')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be1924f1315701d784858f50.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_6b81692e9e86310f885a5e04.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_c39537818db0c31dfdbaba38.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-4.680000px;}
.ls14{letter-spacing:-4.062000px;}
.lse{letter-spacing:-1.386000px;}
.lsf{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.828000px;}
.ls8{letter-spacing:0.900000px;}
.ls19{letter-spacing:7.374240px;}
.ls12{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:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199920px;}
.wse{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.554000px;}
.ws1{word-spacing:-10.440000px;}
.wsd{word-spacing:-10.260000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._24{margin-left:-8.672880px;}
._1d{margin-left:-7.549680px;}
._11{margin-left:-6.318240px;}
._12{margin-left:-5.088720px;}
._13{margin-left:-3.126720px;}
._b{margin-left:-2.108640px;}
._0{margin-left:-1.080000px;}
._f{width:1.162560px;}
._1{width:2.220000px;}
._16{width:3.231600px;}
._18{width:4.610880px;}
._14{width:5.917440px;}
._17{width:7.230960px;}
._19{width:8.817360px;}
._6{width:10.800000px;}
._1c{width:12.761520px;}
._15{width:13.909920px;}
._1f{width:16.461120px;}
._1e{width:17.721600px;}
._2e{width:19.358640px;}
._39{width:20.507280px;}
._23{width:21.784080px;}
._22{width:22.801200px;}
._34{width:26.207520px;}
._28{width:27.408720px;}
._21{width:28.678800px;}
._20{width:30.178800px;}
._2a{width:37.980000px;}
._2b{width:39.023280px;}
._32{width:41.519520px;}
._33{width:43.238400px;}
._2f{width:44.278560px;}
._30{width:46.116720px;}
._31{width:47.528640px;}
._29{width:48.856560px;}
._2d{width:50.796000px;}
._2c{width:52.515840px;}
._35{width:62.345280px;}
._36{width:64.725600px;}
._7{width:76.284960px;}
._27{width:82.828080px;}
._25{width:83.962800px;}
._26{width:86.134560px;}
._37{width:125.142720px;}
._38{width:126.169920px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._2{width:255.692640px;}
._1a{width:256.721280px;}
._3{width:357.120000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._1b{width:605.392800px;}
._e{width:653.880000px;}
._10{width:703.560000px;}
._a{width:1097.040000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:4.785000px;}
.y7f{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y80{bottom:8.460000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:38.340000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:81.900000px;}
.y3{bottom:96.330000px;}
.y3c{bottom:105.480000px;}
.ye5{bottom:105.660000px;}
.y5f{bottom:109.800000px;}
.ydd{bottom:110.700000px;}
.ya3{bottom:115.020000px;}
.ye0{bottom:117.720000px;}
.y3b{bottom:125.280000px;}
.ye4{bottom:125.460000px;}
.y2{bottom:125.670000px;}
.y5e{bottom:126.360000px;}
.ydc{bottom:127.080000px;}
.ya2{bottom:134.820000px;}
.ye7{bottom:135.180000px;}
.y98{bottom:135.360000px;}
.y6c{bottom:137.520000px;}
.y3a{bottom:145.080000px;}
.ye3{bottom:145.440000px;}
.y97{bottom:151.920000px;}
.ya1{bottom:154.800000px;}
.ye6{bottom:155.160000px;}
.y6b{bottom:157.500000px;}
.ye2{bottom:162.720000px;}
.y39{bottom:164.880000px;}
.ya0{bottom:174.600000px;}
.y6a{bottom:177.300000px;}
.ye1{bottom:179.820000px;}
.y38{bottom:184.680000px;}
.y9f{bottom:194.400000px;}
.y69{bottom:197.100000px;}
.y37{bottom:204.660000px;}
.y86{bottom:204.840000px;}
.y9e{bottom:214.230000px;}
.y68{bottom:216.930000px;}
.y85{bottom:220.350000px;}
.y36{bottom:224.490000px;}
.y9d{bottom:234.030000px;}
.y67{bottom:236.730000px;}
.y35{bottom:244.290000px;}
.y84{bottom:244.470000px;}
.y9c{bottom:254.010000px;}
.y66{bottom:256.710000px;}
.yba{bottom:259.770000px;}
.y34{bottom:264.090000px;}
.y83{bottom:268.410000px;}
.y9b{bottom:273.810000px;}
.y65{bottom:276.510000px;}
.yb9{bottom:279.570000px;}
.y33{bottom:283.890000px;}
.y82{bottom:292.350000px;}
.y9a{bottom:293.610000px;}
.y64{bottom:296.310000px;}
.yb8{bottom:299.370000px;}
.y32{bottom:303.870000px;}
.yca{bottom:307.110000px;}
.y99{bottom:310.170000px;}
.y63{bottom:316.110000px;}
.y81{bottom:316.470000px;}
.yb7{bottom:319.170000px;}
.yad{bottom:320.430000px;}
.y31{bottom:323.670000px;}
.yc9{bottom:326.910000px;}
.y62{bottom:335.910000px;}
.yb6{bottom:338.970000px;}
.yac{bottom:340.230000px;}
.y7e{bottom:340.410000px;}
.y30{bottom:343.470000px;}
.yc8{bottom:346.710000px;}
.y61{bottom:355.890000px;}
.yb5{bottom:358.950000px;}
.yab{bottom:360.030000px;}
.y2f{bottom:363.270000px;}
.yc7{bottom:366.690000px;}
.y7d{bottom:370.110000px;}
.y60{bottom:375.690000px;}
.yb4{bottom:378.750000px;}
.yaa{bottom:379.830000px;}
.y2e{bottom:383.070000px;}
.yc6{bottom:386.490000px;}
.y7c{bottom:390.090000px;}
.ydb{bottom:394.950000px;}
.y5d{bottom:395.490000px;}
.yb3{bottom:398.550000px;}
.ya9{bottom:399.810000px;}
.y2d{bottom:403.050000px;}
.yc5{bottom:406.290000px;}
.y7b{bottom:409.890000px;}
.yda{bottom:414.750000px;}
.y5c{bottom:415.290000px;}
.yb2{bottom:418.350000px;}
.ya8{bottom:419.610000px;}
.y2c{bottom:422.850000px;}
.yc4{bottom:426.090000px;}
.y7a{bottom:429.690000px;}
.yd9{bottom:434.550000px;}
.y5b{bottom:435.090000px;}
.yb1{bottom:438.150000px;}
.ya7{bottom:439.410000px;}
.y2b{bottom:442.650000px;}
.yc3{bottom:445.935000px;}
.y79{bottom:449.535000px;}
.yd8{bottom:454.395000px;}
.y5a{bottom:455.115000px;}
.yb0{bottom:458.175000px;}
.ya6{bottom:459.255000px;}
.y2a{bottom:462.495000px;}
.yc2{bottom:465.915000px;}
.y78{bottom:469.335000px;}
.yd7{bottom:474.195000px;}
.y59{bottom:474.915000px;}
.yaf{bottom:477.975000px;}
.ya5{bottom:479.055000px;}
.y29{bottom:482.295000px;}
.yc1{bottom:485.715000px;}
.y77{bottom:489.315000px;}
.yd6{bottom:494.175000px;}
.yae{bottom:494.355000px;}
.y58{bottom:494.715000px;}
.ya4{bottom:495.615000px;}
.y96{bottom:498.315000px;}
.y28{bottom:502.275000px;}
.yc0{bottom:505.515000px;}
.y76{bottom:509.115000px;}
.yd5{bottom:513.975000px;}
.y57{bottom:514.515000px;}
.y95{bottom:518.295000px;}
.y27{bottom:522.075000px;}
.ybf{bottom:525.315000px;}
.y75{bottom:528.915000px;}
.yd4{bottom:533.775000px;}
.y56{bottom:534.315000px;}
.y94{bottom:538.095000px;}
.y26{bottom:541.875000px;}
.ybe{bottom:545.115000px;}
.y74{bottom:548.715000px;}
.yd3{bottom:553.575000px;}
.y55{bottom:554.295000px;}
.y93{bottom:557.895000px;}
.y25{bottom:561.675000px;}
.ybd{bottom:565.095000px;}
.y73{bottom:568.515000px;}
.yd2{bottom:573.375000px;}
.y54{bottom:574.095000px;}
.y92{bottom:577.695000px;}
.y24{bottom:581.475000px;}
.ybc{bottom:584.895000px;}
.y72{bottom:588.495000px;}
.yd1{bottom:593.355000px;}
.y53{bottom:593.895000px;}
.y91{bottom:597.495000px;}
.y23{bottom:601.455000px;}
.ybb{bottom:604.695000px;}
.y71{bottom:608.295000px;}
.yd0{bottom:613.155000px;}
.y52{bottom:613.695000px;}
.y90{bottom:617.475000px;}
.y22{bottom:621.255000px;}
.y70{bottom:628.095000px;}
.ycf{bottom:632.955000px;}
.y51{bottom:633.495000px;}
.y8f{bottom:637.275000px;}
.y21{bottom:641.055000px;}
.y6f{bottom:647.895000px;}
.yce{bottom:652.755000px;}
.y50{bottom:653.475000px;}
.y8e{bottom:657.075000px;}
.y20{bottom:660.855000px;}
.y6e{bottom:667.695000px;}
.ycd{bottom:672.555000px;}
.y4f{bottom:673.275000px;}
.y8d{bottom:676.875000px;}
.y1f{bottom:680.655000px;}
.y6d{bottom:684.285000px;}
.ycc{bottom:692.565000px;}
.y4e{bottom:693.105000px;}
.y8c{bottom:696.705000px;}
.y1e{bottom:700.665000px;}
.yde{bottom:707.400000px;}
.ycb{bottom:708.945000px;}
.y4d{bottom:712.905000px;}
.y8b{bottom:716.505000px;}
.y1d{bottom:720.465000px;}
.y4c{bottom:732.705000px;}
.y8a{bottom:736.485000px;}
.y1c{bottom:740.265000px;}
.y4b{bottom:752.685000px;}
.y89{bottom:756.285000px;}
.y1b{bottom:760.065000px;}
.y4a{bottom:772.485000px;}
.y88{bottom:776.085000px;}
.y1a{bottom:779.865000px;}
.y49{bottom:792.285000px;}
.y87{bottom:792.645000px;}
.y19{bottom:799.845000px;}
.y48{bottom:812.085000px;}
.y18{bottom:819.645000px;}
.y47{bottom:831.885000px;}
.y17{bottom:839.445000px;}
.y46{bottom:851.865000px;}
.y16{bottom:859.245000px;}
.y45{bottom:871.665000px;}
.y15{bottom:879.045000px;}
.y44{bottom:891.465000px;}
.y14{bottom:896.325000px;}
.y43{bottom:911.265000px;}
.y13{bottom:921.390000px;}
.y42{bottom:931.110000px;}
.y12{bottom:936.690000px;}
.y41{bottom:951.090000px;}
.y11{bottom:957.930000px;}
.y40{bottom:970.890000px;}
.y10{bottom:981.330000px;}
.y3f{bottom:990.690000px;}
.y3e{bottom:1010.490000px;}
.yf{bottom:1013.010000px;}
.y3d{bottom:1030.290000px;}
.y9{bottom:1047.750000px;}
.y1{bottom:1062.330000px;}
.y7{bottom:1096.530000px;}
.h7{height:2.401875px;}
.h11{height:18.900000px;}
.hb{height:21.780000px;}
.h10{height:22.500000px;}
.hd{height:32.425313px;}
.h8{height:33.480000px;}
.he{height:42.164648px;}
.hf{height:45.024258px;}
.h4{height:46.736719px;}
.h12{height:49.255313px;}
.h5{height:49.838906px;}
.ha{height:55.243125px;}
.h13{height:59.439023px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:5.760000px;}
.w5{width:9.900000px;}
.wa{width:17.640000px;}
.wb{width:66.996000px;}
.w6{width:67.536000px;}
.w8{width:88.776000px;}
.wd{width:93.600000px;}
.we{width:94.536000px;}
.w9{width:94.680000px;}
.w7{width:97.380000px;}
.wc{width:120.276000px;}
.w3{width:131.976000px;}
.w2{width:654.450000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x16{left:18.900000px;}
.x1d{left:23.580000px;}
.x14{left:30.276000px;}
.x1{left:53.460000px;}
.xb{left:54.719987px;}
.x10{left:74.519987px;}
.x27{left:75.599987px;}
.xd{left:81.035987px;}
.x6{left:106.055987px;}
.xc{left:108.035987px;}
.x4{left:118.290000px;}
.x15{left:122.436000px;}
.x9{left:126.575987px;}
.x26{left:167.789987px;}
.x24{left:186.509987px;}
.x22{left:187.949987px;}
.xa{left:202.709987px;}
.x12{left:205.589987px;}
.x17{left:219.810000px;}
.x29{left:236.189987px;}
.x2d{left:252.254987px;}
.xf{left:271.694987px;}
.x7{left:282.674987px;}
.x2b{left:285.374987px;}
.x18{left:308.595000px;}
.x1f{left:314.534987px;}
.x19{left:403.275000px;}
.x1a{left:420.915000px;}
.x13{left:446.684987px;}
.x8{left:449.564987px;}
.x20{left:457.124987px;}
.x1b{left:487.905000px;}
.x1c{left:608.190000px;}
.x1e{left:667.589987px;}
.x2e{left:699.089987px;}
.x11{left:701.249987px;}
.x3{left:707.910000px;}
.x21{left:721.229987px;}
.x25{left:754.889987px;}
.x28{left:756.329987px;}
.xe{left:776.339987px;}
.x2f{left:777.420000px;}
.x23{left:779.759987px;}
.x2c{left:784.259987px;}
.x2a{left:827.999987px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-4.160000pt;}
.ls14{letter-spacing:-3.610667pt;}
.lse{letter-spacing:-1.232000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls19{letter-spacing:6.554880pt;}
.ls12{letter-spacing:14.672640pt;}
.ls6{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.511040pt;}
.wse{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.048000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsd{word-spacing:-9.120000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._24{margin-left:-7.709227pt;}
._1d{margin-left:-6.710827pt;}
._11{margin-left:-5.616213pt;}
._12{margin-left:-4.523307pt;}
._13{margin-left:-2.779307pt;}
._b{margin-left:-1.874347pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.033387pt;}
._1{width:1.973333pt;}
._16{width:2.872533pt;}
._18{width:4.098560pt;}
._14{width:5.259947pt;}
._17{width:6.427520pt;}
._19{width:7.837653pt;}
._6{width:9.600000pt;}
._1c{width:11.343573pt;}
._15{width:12.364373pt;}
._1f{width:14.632107pt;}
._1e{width:15.752533pt;}
._2e{width:17.207680pt;}
._39{width:18.228693pt;}
._23{width:19.363627pt;}
._22{width:20.267733pt;}
._34{width:23.295573pt;}
._28{width:24.363307pt;}
._21{width:25.492267pt;}
._20{width:26.825600pt;}
._2a{width:33.760000pt;}
._2b{width:34.687360pt;}
._32{width:36.906240pt;}
._33{width:38.434133pt;}
._2f{width:39.358720pt;}
._30{width:40.992640pt;}
._31{width:42.247680pt;}
._29{width:43.428053pt;}
._2d{width:45.152000pt;}
._2c{width:46.680747pt;}
._35{width:55.418027pt;}
._36{width:57.533867pt;}
._7{width:67.808853pt;}
._27{width:73.624960pt;}
._25{width:74.633600pt;}
._26{width:76.564053pt;}
._37{width:111.237973pt;}
._38{width:112.151040pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._2{width:227.282347pt;}
._1a{width:228.196693pt;}
._3{width:317.440000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._1b{width:538.126933pt;}
._e{width:581.226667pt;}
._10{width:625.386667pt;}
._a{width:975.146667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:4.253333pt;}
.y7f{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y80{bottom:7.520000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:34.080000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.800000pt;}
.y3{bottom:85.626667pt;}
.y3c{bottom:93.760000pt;}
.ye5{bottom:93.920000pt;}
.y5f{bottom:97.600000pt;}
.ydd{bottom:98.400000pt;}
.ya3{bottom:102.240000pt;}
.ye0{bottom:104.640000pt;}
.y3b{bottom:111.360000pt;}
.ye4{bottom:111.520000pt;}
.y2{bottom:111.706667pt;}
.y5e{bottom:112.320000pt;}
.ydc{bottom:112.960000pt;}
.ya2{bottom:119.840000pt;}
.ye7{bottom:120.160000pt;}
.y98{bottom:120.320000pt;}
.y6c{bottom:122.240000pt;}
.y3a{bottom:128.960000pt;}
.ye3{bottom:129.280000pt;}
.y97{bottom:135.040000pt;}
.ya1{bottom:137.600000pt;}
.ye6{bottom:137.920000pt;}
.y6b{bottom:140.000000pt;}
.ye2{bottom:144.640000pt;}
.y39{bottom:146.560000pt;}
.ya0{bottom:155.200000pt;}
.y6a{bottom:157.600000pt;}
.ye1{bottom:159.840000pt;}
.y38{bottom:164.160000pt;}
.y9f{bottom:172.800000pt;}
.y69{bottom:175.200000pt;}
.y37{bottom:181.920000pt;}
.y86{bottom:182.080000pt;}
.y9e{bottom:190.426667pt;}
.y68{bottom:192.826667pt;}
.y85{bottom:195.866667pt;}
.y36{bottom:199.546667pt;}
.y9d{bottom:208.026667pt;}
.y67{bottom:210.426667pt;}
.y35{bottom:217.146667pt;}
.y84{bottom:217.306667pt;}
.y9c{bottom:225.786667pt;}
.y66{bottom:228.186667pt;}
.yba{bottom:230.906667pt;}
.y34{bottom:234.746667pt;}
.y83{bottom:238.586667pt;}
.y9b{bottom:243.386667pt;}
.y65{bottom:245.786667pt;}
.yb9{bottom:248.506667pt;}
.y33{bottom:252.346667pt;}
.y82{bottom:259.866667pt;}
.y9a{bottom:260.986667pt;}
.y64{bottom:263.386667pt;}
.yb8{bottom:266.106667pt;}
.y32{bottom:270.106667pt;}
.yca{bottom:272.986667pt;}
.y99{bottom:275.706667pt;}
.y63{bottom:280.986667pt;}
.y81{bottom:281.306667pt;}
.yb7{bottom:283.706667pt;}
.yad{bottom:284.826667pt;}
.y31{bottom:287.706667pt;}
.yc9{bottom:290.586667pt;}
.y62{bottom:298.586667pt;}
.yb6{bottom:301.306667pt;}
.yac{bottom:302.426667pt;}
.y7e{bottom:302.586667pt;}
.y30{bottom:305.306667pt;}
.yc8{bottom:308.186667pt;}
.y61{bottom:316.346667pt;}
.yb5{bottom:319.066667pt;}
.yab{bottom:320.026667pt;}
.y2f{bottom:322.906667pt;}
.yc7{bottom:325.946667pt;}
.y7d{bottom:328.986667pt;}
.y60{bottom:333.946667pt;}
.yb4{bottom:336.666667pt;}
.yaa{bottom:337.626667pt;}
.y2e{bottom:340.506667pt;}
.yc6{bottom:343.546667pt;}
.y7c{bottom:346.746667pt;}
.ydb{bottom:351.066667pt;}
.y5d{bottom:351.546667pt;}
.yb3{bottom:354.266667pt;}
.ya9{bottom:355.386667pt;}
.y2d{bottom:358.266667pt;}
.yc5{bottom:361.146667pt;}
.y7b{bottom:364.346667pt;}
.yda{bottom:368.666667pt;}
.y5c{bottom:369.146667pt;}
.yb2{bottom:371.866667pt;}
.ya8{bottom:372.986667pt;}
.y2c{bottom:375.866667pt;}
.yc4{bottom:378.746667pt;}
.y7a{bottom:381.946667pt;}
.yd9{bottom:386.266667pt;}
.y5b{bottom:386.746667pt;}
.yb1{bottom:389.466667pt;}
.ya7{bottom:390.586667pt;}
.y2b{bottom:393.466667pt;}
.yc3{bottom:396.386667pt;}
.y79{bottom:399.586667pt;}
.yd8{bottom:403.906667pt;}
.y5a{bottom:404.546667pt;}
.yb0{bottom:407.266667pt;}
.ya6{bottom:408.226667pt;}
.y2a{bottom:411.106667pt;}
.yc2{bottom:414.146667pt;}
.y78{bottom:417.186667pt;}
.yd7{bottom:421.506667pt;}
.y59{bottom:422.146667pt;}
.yaf{bottom:424.866667pt;}
.ya5{bottom:425.826667pt;}
.y29{bottom:428.706667pt;}
.yc1{bottom:431.746667pt;}
.y77{bottom:434.946667pt;}
.yd6{bottom:439.266667pt;}
.yae{bottom:439.426667pt;}
.y58{bottom:439.746667pt;}
.ya4{bottom:440.546667pt;}
.y96{bottom:442.946667pt;}
.y28{bottom:446.466667pt;}
.yc0{bottom:449.346667pt;}
.y76{bottom:452.546667pt;}
.yd5{bottom:456.866667pt;}
.y57{bottom:457.346667pt;}
.y95{bottom:460.706667pt;}
.y27{bottom:464.066667pt;}
.ybf{bottom:466.946667pt;}
.y75{bottom:470.146667pt;}
.yd4{bottom:474.466667pt;}
.y56{bottom:474.946667pt;}
.y94{bottom:478.306667pt;}
.y26{bottom:481.666667pt;}
.ybe{bottom:484.546667pt;}
.y74{bottom:487.746667pt;}
.yd3{bottom:492.066667pt;}
.y55{bottom:492.706667pt;}
.y93{bottom:495.906667pt;}
.y25{bottom:499.266667pt;}
.ybd{bottom:502.306667pt;}
.y73{bottom:505.346667pt;}
.yd2{bottom:509.666667pt;}
.y54{bottom:510.306667pt;}
.y92{bottom:513.506667pt;}
.y24{bottom:516.866667pt;}
.ybc{bottom:519.906667pt;}
.y72{bottom:523.106667pt;}
.yd1{bottom:527.426667pt;}
.y53{bottom:527.906667pt;}
.y91{bottom:531.106667pt;}
.y23{bottom:534.626667pt;}
.ybb{bottom:537.506667pt;}
.y71{bottom:540.706667pt;}
.yd0{bottom:545.026667pt;}
.y52{bottom:545.506667pt;}
.y90{bottom:548.866667pt;}
.y22{bottom:552.226667pt;}
.y70{bottom:558.306667pt;}
.ycf{bottom:562.626667pt;}
.y51{bottom:563.106667pt;}
.y8f{bottom:566.466667pt;}
.y21{bottom:569.826667pt;}
.y6f{bottom:575.906667pt;}
.yce{bottom:580.226667pt;}
.y50{bottom:580.866667pt;}
.y8e{bottom:584.066667pt;}
.y20{bottom:587.426667pt;}
.y6e{bottom:593.506667pt;}
.ycd{bottom:597.826667pt;}
.y4f{bottom:598.466667pt;}
.y8d{bottom:601.666667pt;}
.y1f{bottom:605.026667pt;}
.y6d{bottom:608.253333pt;}
.ycc{bottom:615.613333pt;}
.y4e{bottom:616.093333pt;}
.y8c{bottom:619.293333pt;}
.y1e{bottom:622.813333pt;}
.yde{bottom:628.800000pt;}
.ycb{bottom:630.173333pt;}
.y4d{bottom:633.693333pt;}
.y8b{bottom:636.893333pt;}
.y1d{bottom:640.413333pt;}
.y4c{bottom:651.293333pt;}
.y8a{bottom:654.653333pt;}
.y1c{bottom:658.013333pt;}
.y4b{bottom:669.053333pt;}
.y89{bottom:672.253333pt;}
.y1b{bottom:675.613333pt;}
.y4a{bottom:686.653333pt;}
.y88{bottom:689.853333pt;}
.y1a{bottom:693.213333pt;}
.y49{bottom:704.253333pt;}
.y87{bottom:704.573333pt;}
.y19{bottom:710.973333pt;}
.y48{bottom:721.853333pt;}
.y18{bottom:728.573333pt;}
.y47{bottom:739.453333pt;}
.y17{bottom:746.173333pt;}
.y46{bottom:757.213333pt;}
.y16{bottom:763.773333pt;}
.y45{bottom:774.813333pt;}
.y15{bottom:781.373333pt;}
.y44{bottom:792.413333pt;}
.y14{bottom:796.733333pt;}
.y43{bottom:810.013333pt;}
.y13{bottom:819.013333pt;}
.y42{bottom:827.653333pt;}
.y12{bottom:832.613333pt;}
.y41{bottom:845.413333pt;}
.y11{bottom:851.493333pt;}
.y40{bottom:863.013333pt;}
.y10{bottom:872.293333pt;}
.y3f{bottom:880.613333pt;}
.y3e{bottom:898.213333pt;}
.yf{bottom:900.453333pt;}
.y3d{bottom:915.813333pt;}
.y9{bottom:931.333333pt;}
.y1{bottom:944.293333pt;}
.y7{bottom:974.693333pt;}
.h7{height:2.135000pt;}
.h11{height:16.800000pt;}
.hb{height:19.360000pt;}
.h10{height:20.000000pt;}
.hd{height:28.822500pt;}
.h8{height:29.760000pt;}
.he{height:37.479688pt;}
.hf{height:40.021563pt;}
.h4{height:41.543750pt;}
.h12{height:43.782500pt;}
.h5{height:44.301250pt;}
.ha{height:49.105000pt;}
.h13{height:52.834688pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:5.120000pt;}
.w5{width:8.800000pt;}
.wa{width:15.680000pt;}
.wb{width:59.552000pt;}
.w6{width:60.032000pt;}
.w8{width:78.912000pt;}
.wd{width:83.200000pt;}
.we{width:84.032000pt;}
.w9{width:84.160000pt;}
.w7{width:86.560000pt;}
.wc{width:106.912000pt;}
.w3{width:117.312000pt;}
.w2{width:581.733333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x16{left:16.800000pt;}
.x1d{left:20.960000pt;}
.x14{left:26.912000pt;}
.x1{left:47.520000pt;}
.xb{left:48.639988pt;}
.x10{left:66.239988pt;}
.x27{left:67.199988pt;}
.xd{left:72.031988pt;}
.x6{left:94.271988pt;}
.xc{left:96.031988pt;}
.x4{left:105.146667pt;}
.x15{left:108.832000pt;}
.x9{left:112.511988pt;}
.x26{left:149.146655pt;}
.x24{left:165.786655pt;}
.x22{left:167.066655pt;}
.xa{left:180.186655pt;}
.x12{left:182.746655pt;}
.x17{left:195.386667pt;}
.x29{left:209.946655pt;}
.x2d{left:224.226655pt;}
.xf{left:241.506655pt;}
.x7{left:251.266655pt;}
.x2b{left:253.666655pt;}
.x18{left:274.306667pt;}
.x1f{left:279.586655pt;}
.x19{left:358.466667pt;}
.x1a{left:374.146667pt;}
.x13{left:397.053322pt;}
.x8{left:399.613322pt;}
.x20{left:406.333322pt;}
.x1b{left:433.693333pt;}
.x1c{left:540.613333pt;}
.x1e{left:593.413322pt;}
.x2e{left:621.413322pt;}
.x11{left:623.333322pt;}
.x3{left:629.253333pt;}
.x21{left:641.093322pt;}
.x25{left:671.013322pt;}
.x28{left:672.293322pt;}
.xe{left:690.079988pt;}
.x2f{left:691.040000pt;}
.x23{left:693.119988pt;}
.x2c{left:697.119988pt;}
.x2a{left:735.999988pt;}
.x5{left:737.280000pt;}
}




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