
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_ac6816acb546872c319d113b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d984fbacda205a9b7d06bb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_0afd387083c35eb6e2dc52e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213379;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5c33c758b18e472bb5fe5e9e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6e05f68b513a5f2fe7b58536.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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);}
.v4{vertical-align:-69.300000px;}
.v3{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.269400px;}
.ls8{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.lse{letter-spacing:0.119520px;}
.lsc{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.540000px;}
.ls11{letter-spacing:2.340000px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.ls2{letter-spacing:46.026720px;}
.lsd{letter-spacing:93.180000px;}
.ls5{letter-spacing:155.124000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.790600px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-1.203840px;}
._0{width:1.135440px;}
._21{width:2.154960px;}
._7{width:3.223680px;}
._10{width:4.256400px;}
._9{width:5.455440px;}
._8{width:6.573600px;}
._c{width:8.306640px;}
._f{width:10.108560px;}
._6{width:11.504880px;}
._5{width:12.560400px;}
._d{width:13.863600px;}
._33{width:15.620400px;}
._b{width:16.660560px;}
._a{width:17.868240px;}
._1a{width:19.006560px;}
._19{width:20.283840px;}
._17{width:21.287520px;}
._e{width:22.528800px;}
._16{width:24.322320px;}
._15{width:25.338240px;}
._1e{width:26.951760px;}
._2d{width:28.266480px;}
._18{width:29.401920px;}
._1c{width:31.134960px;}
._1b{width:32.449680px;}
._14{width:34.231440px;}
._13{width:35.262000px;}
._12{width:36.558000px;}
._25{width:37.908240px;}
._1f{width:39.561120px;}
._24{width:41.712480px;}
._22{width:42.967440px;}
._2c{width:46.971360px;}
._27{width:47.987280px;}
._26{width:49.062960px;}
._32{width:54.979200px;}
._23{width:56.951280px;}
._1d{width:62.329680px;}
._2b{width:70.984080px;}
._2a{width:80.436960px;}
._29{width:81.452880px;}
._2f{width:85.158000px;}
._2e{width:86.233680px;}
._20{width:89.759520px;}
._30{width:98.066160px;}
._31{width:99.368400px;}
._28{width:103.205520px;}
._11{width:125.982000px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._4{width:813.330960px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:0.360000px;}
.y6{bottom:2.520000px;}
.y84{bottom:2.565000px;}
.y14{bottom:3.240000px;}
.y39{bottom:5.940000px;}
.y81{bottom:6.840000px;}
.y83{bottom:6.885000px;}
.y87{bottom:7.020000px;}
.y4{bottom:8.316000px;}
.y3f{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.ydf{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.yd5{bottom:16.425000px;}
.y37{bottom:19.440000px;}
.y2e{bottom:20.520000px;}
.y3e{bottom:25.200000px;}
.yde{bottom:30.060000px;}
.yd4{bottom:30.105000px;}
.y7{bottom:35.460000px;}
.y36{bottom:35.850000px;}
.y2d{bottom:37.620000px;}
.y3d{bottom:40.680000px;}
.ydd{bottom:43.920000px;}
.yd3{bottom:43.965000px;}
.y35{bottom:51.330000px;}
.y2c{bottom:54.900000px;}
.y3c{bottom:56.160000px;}
.ydc{bottom:57.600000px;}
.y3{bottom:58.140000px;}
.y34{bottom:66.810000px;}
.ydb{bottom:71.460000px;}
.y3b{bottom:71.640000px;}
.y2b{bottom:72.180000px;}
.y33{bottom:82.470000px;}
.y41{bottom:84.465000px;}
.yda{bottom:85.320000px;}
.y2a{bottom:89.505000px;}
.y32{bottom:97.950000px;}
.yd9{bottom:99.000000px;}
.y29{bottom:106.785000px;}
.y31{bottom:113.430000px;}
.y93{bottom:118.116000px;}
.ycd{bottom:120.816000px;}
.yd1{bottom:121.356000px;}
.y7b{bottom:123.876000px;}
.y28{bottom:124.065000px;}
.y47{bottom:126.036000px;}
.y30{bottom:128.910000px;}
.y92{bottom:131.976000px;}
.ycc{bottom:138.096000px;}
.yd0{bottom:138.636000px;}
.y7a{bottom:141.156000px;}
.y27{bottom:141.165000px;}
.y46{bottom:141.516000px;}
.y91{bottom:145.656000px;}
.ycb{bottom:155.190000px;}
.ycf{bottom:155.910000px;}
.y45{bottom:156.990000px;}
.y79{bottom:158.430000px;}
.y26{bottom:158.445000px;}
.y90{bottom:159.510000px;}
.yca{bottom:172.470000px;}
.yce{bottom:173.190000px;}
.y8f{bottom:173.370000px;}
.y78{bottom:175.710000px;}
.y25{bottom:175.725000px;}
.y8e{bottom:185.250000px;}
.y40{bottom:187.785000px;}
.yd7{bottom:187.950000px;}
.y44{bottom:188.490000px;}
.yc9{bottom:189.750000px;}
.y77{bottom:192.990000px;}
.y24{bottom:193.005000px;}
.y8d{bottom:199.830000px;}
.y43{bottom:205.770000px;}
.yc8{bottom:207.030000px;}
.y76{bottom:210.090000px;}
.y23{bottom:210.285000px;}
.y8c{bottom:214.410000px;}
.y42{bottom:222.690000px;}
.yc7{bottom:224.310000px;}
.y75{bottom:227.370000px;}
.y22{bottom:227.565000px;}
.y8b{bottom:228.990000px;}
.y15{bottom:236.010000px;}
.yc6{bottom:241.590000px;}
.y8a{bottom:243.570000px;}
.y74{bottom:244.650000px;}
.y21{bottom:244.665000px;}
.y89{bottom:258.150000px;}
.yc5{bottom:258.690000px;}
.y73{bottom:261.930000px;}
.y20{bottom:261.945000px;}
.y88{bottom:272.550000px;}
.yc4{bottom:275.970000px;}
.y72{bottom:279.210000px;}
.y1f{bottom:279.225000px;}
.y86{bottom:287.130000px;}
.yc3{bottom:293.250000px;}
.y71{bottom:296.490000px;}
.y1e{bottom:296.505000px;}
.yd6{bottom:299.010000px;}
.y85{bottom:301.710000px;}
.yc2{bottom:310.530000px;}
.y70{bottom:313.590000px;}
.y1d{bottom:313.785000px;}
.y82{bottom:316.290000px;}
.yc1{bottom:327.855000px;}
.y1c{bottom:330.885000px;}
.y6f{bottom:330.915000px;}
.yc0{bottom:345.135000px;}
.y80{bottom:345.495000px;}
.y1b{bottom:348.195000px;}
.y7f{bottom:361.515000px;}
.ybf{bottom:362.235000px;}
.y1a{bottom:365.475000px;}
.yd2{bottom:369.615000px;}
.y7e{bottom:378.075000px;}
.ybe{bottom:379.515000px;}
.y19{bottom:382.755000px;}
.y7d{bottom:388.875000px;}
.ybd{bottom:396.795000px;}
.y6e{bottom:399.855000px;}
.y18{bottom:400.035000px;}
.y7c{bottom:402.735000px;}
.ybc{bottom:414.075000px;}
.y6d{bottom:417.135000px;}
.y17{bottom:417.315000px;}
.ybb{bottom:431.355000px;}
.y16{bottom:434.415000px;}
.y3a{bottom:437.115000px;}
.yba{bottom:448.455000px;}
.y6c{bottom:451.695000px;}
.yb9{bottom:465.735000px;}
.y6b{bottom:468.975000px;}
.yb8{bottom:483.015000px;}
.y6a{bottom:486.255000px;}
.yb7{bottom:500.295000px;}
.y69{bottom:503.355000px;}
.yb6{bottom:517.575000px;}
.y68{bottom:520.635000px;}
.y38{bottom:522.255000px;}
.yb5{bottom:534.855000px;}
.y67{bottom:537.915000px;}
.y2f{bottom:542.955000px;}
.yb4{bottom:551.955000px;}
.y66{bottom:555.195000px;}
.yb3{bottom:569.265000px;}
.y65{bottom:572.505000px;}
.yb2{bottom:586.545000px;}
.y64{bottom:589.785000px;}
.yb1{bottom:603.825000px;}
.y63{bottom:606.885000px;}
.yb0{bottom:621.105000px;}
.y62{bottom:624.165000px;}
.yaf{bottom:638.385000px;}
.y61{bottom:641.445000px;}
.yae{bottom:655.485000px;}
.y60{bottom:658.725000px;}
.yad{bottom:672.765000px;}
.y5f{bottom:676.005000px;}
.y13{bottom:685.185000px;}
.yac{bottom:690.045000px;}
.y5e{bottom:693.285000px;}
.yab{bottom:707.325000px;}
.y5d{bottom:710.385000px;}
.y12{bottom:719.385000px;}
.yaa{bottom:724.605000px;}
.y5c{bottom:727.665000px;}
.y11{bottom:739.185000px;}
.ya9{bottom:741.705000px;}
.y5b{bottom:744.945000px;}
.ya8{bottom:758.985000px;}
.y5a{bottom:762.225000px;}
.y10{bottom:768.165000px;}
.ya7{bottom:776.265000px;}
.y59{bottom:779.505000px;}
.yf{bottom:787.065000px;}
.ya6{bottom:793.545000px;}
.y58{bottom:796.605000px;}
.ye{bottom:808.125000px;}
.ya5{bottom:810.825000px;}
.y57{bottom:813.885000px;}
.ya4{bottom:828.150000px;}
.y56{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.ya3{bottom:842.910000px;}
.y55{bottom:848.490000px;}
.ya2{bottom:857.310000px;}
.y54{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.ya1{bottom:871.890000px;}
.y53{bottom:883.050000px;}
.ya0{bottom:886.470000px;}
.y52{bottom:900.150000px;}
.y9f{bottom:901.050000px;}
.yb{bottom:901.410000px;}
.y9e{bottom:915.630000px;}
.y51{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y50{bottom:934.710000px;}
.y9d{bottom:944.610000px;}
.y8{bottom:945.510000px;}
.y4f{bottom:951.990000px;}
.y9c{bottom:959.190000px;}
.y4e{bottom:969.270000px;}
.y9b{bottom:973.770000px;}
.y4d{bottom:986.550000px;}
.y9a{bottom:988.350000px;}
.y99{bottom:1002.930000px;}
.y4c{bottom:1003.650000px;}
.y98{bottom:1017.510000px;}
.y4b{bottom:1020.930000px;}
.y97{bottom:1031.910000px;}
.y4a{bottom:1038.210000px;}
.y96{bottom:1048.110000px;}
.y49{bottom:1055.490000px;}
.y95{bottom:1064.670000px;}
.y48{bottom:1072.800000px;}
.y94{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h19{height:13.680000px;}
.h1b{height:13.860000px;}
.h1c{height:13.860150px;}
.h1a{height:13.896000px;}
.hc{height:17.280000px;}
.h12{height:19.980000px;}
.h3{height:27.576000px;}
.h18{height:32.765625px;}
.h17{height:34.036523px;}
.h15{height:38.100586px;}
.h11{height:39.999023px;}
.hd{height:42.164648px;}
.h16{height:43.506914px;}
.h5{height:43.905937px;}
.h2{height:45.024258px;}
.h10{height:49.148438px;}
.h8{height:49.906406px;}
.h1{height:50.800781px;}
.ha{height:53.224453px;}
.h4{height:54.390938px;}
.h1d{height:55.116000px;}
.h7{height:60.288750px;}
.h9{height:76.201172px;}
.h13{height:84.240000px;}
.hb{height:98.296875px;}
.h1e{height:110.340000px;}
.hf{height:141.516000px;}
.h6{height:153.930000px;}
.h14{height:200.370000px;}
.he{height:448.455000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.wc{width:63.000000px;}
.we{width:81.720000px;}
.w9{width:90.720000px;}
.w8{width:120.456000px;}
.wb{width:126.936000px;}
.w7{width:169.380000px;}
.wa{width:190.650000px;}
.w6{width:220.170000px;}
.wf{width:299.595000px;}
.wd{width:382.035000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.300000px;}
.x3{left:8.460000px;}
.x2a{left:12.240000px;}
.x28{left:13.860000px;}
.x21{left:16.740000px;}
.x2b{left:18.720000px;}
.x10{left:19.980000px;}
.x1f{left:21.060000px;}
.x36{left:23.220000px;}
.x35{left:25.380000px;}
.x15{left:27.360000px;}
.x31{left:28.440000px;}
.x23{left:32.040000px;}
.x13{left:33.300000px;}
.x11{left:34.740000px;}
.x14{left:35.865000px;}
.x27{left:39.780000px;}
.x24{left:42.300000px;}
.x29{left:43.605000px;}
.x6{left:45.540000px;}
.x34{left:46.845000px;}
.x33{left:50.256000px;}
.x1b{left:51.299986px;}
.x26{left:52.965000px;}
.x2{left:53.999986px;}
.x2e{left:55.260000px;}
.x1{left:60.659986px;}
.x16{left:65.519986px;}
.x37{left:73.979986px;}
.x9{left:77.939986px;}
.x25{left:84.600000px;}
.x32{left:95.250000px;}
.x4{left:100.836000px;}
.x3a{left:106.560000px;}
.x5{left:108.035986px;}
.x3b{left:113.580000px;}
.x2c{left:121.535986px;}
.x2f{left:246.630000px;}
.x2d{left:266.069986px;}
.xa{left:349.454986px;}
.xd{left:370.514986px;}
.x30{left:374.295000px;}
.xc{left:376.634986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x17{left:478.334986px;}
.x18{left:479.804986px;}
.x1e{left:484.485000px;}
.x39{left:487.905000px;}
.x19{left:505.364986px;}
.x1a{left:506.804986px;}
.x38{left:526.604986px;}
.x3c{left:570.345000px;}
.x1d{left:580.424986px;}
.xf{left:642.345000px;}
.x20{left:654.585000px;}
.x1c{left:684.689986px;}
.x22{left:775.770000px;}
.x7{left:812.490000px;}
@media print{
.v4{vertical-align:-61.600000pt;}
.v3{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.239467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106240pt;}
.lsc{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.ls2{letter-spacing:40.912640pt;}
.lsd{letter-spacing:82.826667pt;}
.ls5{letter-spacing:137.888000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.480533pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-1.070080pt;}
._0{width:1.009280pt;}
._21{width:1.915520pt;}
._7{width:2.865493pt;}
._10{width:3.783467pt;}
._9{width:4.849280pt;}
._8{width:5.843200pt;}
._c{width:7.383680pt;}
._f{width:8.985387pt;}
._6{width:10.226560pt;}
._5{width:11.164800pt;}
._d{width:12.323200pt;}
._33{width:13.884800pt;}
._b{width:14.809387pt;}
._a{width:15.882880pt;}
._1a{width:16.894720pt;}
._19{width:18.030080pt;}
._17{width:18.922240pt;}
._e{width:20.025600pt;}
._16{width:21.619840pt;}
._15{width:22.522880pt;}
._1e{width:23.957120pt;}
._2d{width:25.125760pt;}
._18{width:26.135040pt;}
._1c{width:27.675520pt;}
._1b{width:28.844160pt;}
._14{width:30.427947pt;}
._13{width:31.344000pt;}
._12{width:32.496000pt;}
._25{width:33.696213pt;}
._1f{width:35.165440pt;}
._24{width:37.077760pt;}
._22{width:38.193280pt;}
._2c{width:41.752320pt;}
._27{width:42.655360pt;}
._26{width:43.611520pt;}
._32{width:48.870400pt;}
._23{width:50.623360pt;}
._1d{width:55.404160pt;}
._2b{width:63.096960pt;}
._2a{width:71.499520pt;}
._29{width:72.402560pt;}
._2f{width:75.696000pt;}
._2e{width:76.652160pt;}
._20{width:79.786240pt;}
._30{width:87.169920pt;}
._31{width:88.327467pt;}
._28{width:91.738240pt;}
._11{width:111.984000pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._4{width:722.960853pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:0.320000pt;}
.y6{bottom:2.240000pt;}
.y84{bottom:2.280000pt;}
.y14{bottom:2.880000pt;}
.y39{bottom:5.280000pt;}
.y81{bottom:6.080000pt;}
.y83{bottom:6.120000pt;}
.y87{bottom:6.240000pt;}
.y4{bottom:7.392000pt;}
.y3f{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.ydf{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.yd5{bottom:14.600000pt;}
.y37{bottom:17.280000pt;}
.y2e{bottom:18.240000pt;}
.y3e{bottom:22.400000pt;}
.yde{bottom:26.720000pt;}
.yd4{bottom:26.760000pt;}
.y7{bottom:31.520000pt;}
.y36{bottom:31.866667pt;}
.y2d{bottom:33.440000pt;}
.y3d{bottom:36.160000pt;}
.ydd{bottom:39.040000pt;}
.yd3{bottom:39.080000pt;}
.y35{bottom:45.626667pt;}
.y2c{bottom:48.800000pt;}
.y3c{bottom:49.920000pt;}
.ydc{bottom:51.200000pt;}
.y3{bottom:51.680000pt;}
.y34{bottom:59.386667pt;}
.ydb{bottom:63.520000pt;}
.y3b{bottom:63.680000pt;}
.y2b{bottom:64.160000pt;}
.y33{bottom:73.306667pt;}
.y41{bottom:75.080000pt;}
.yda{bottom:75.840000pt;}
.y2a{bottom:79.560000pt;}
.y32{bottom:87.066667pt;}
.yd9{bottom:88.000000pt;}
.y29{bottom:94.920000pt;}
.y31{bottom:100.826667pt;}
.y93{bottom:104.992000pt;}
.ycd{bottom:107.392000pt;}
.yd1{bottom:107.872000pt;}
.y7b{bottom:110.112000pt;}
.y28{bottom:110.280000pt;}
.y47{bottom:112.032000pt;}
.y30{bottom:114.586667pt;}
.y92{bottom:117.312000pt;}
.ycc{bottom:122.752000pt;}
.yd0{bottom:123.232000pt;}
.y7a{bottom:125.472000pt;}
.y27{bottom:125.480000pt;}
.y46{bottom:125.792000pt;}
.y91{bottom:129.472000pt;}
.ycb{bottom:137.946667pt;}
.ycf{bottom:138.586667pt;}
.y45{bottom:139.546667pt;}
.y79{bottom:140.826667pt;}
.y26{bottom:140.840000pt;}
.y90{bottom:141.786667pt;}
.yca{bottom:153.306667pt;}
.yce{bottom:153.946667pt;}
.y8f{bottom:154.106667pt;}
.y78{bottom:156.186667pt;}
.y25{bottom:156.200000pt;}
.y8e{bottom:164.666667pt;}
.y40{bottom:166.920000pt;}
.yd7{bottom:167.066667pt;}
.y44{bottom:167.546667pt;}
.yc9{bottom:168.666667pt;}
.y77{bottom:171.546667pt;}
.y24{bottom:171.560000pt;}
.y8d{bottom:177.626667pt;}
.y43{bottom:182.906667pt;}
.yc8{bottom:184.026667pt;}
.y76{bottom:186.746667pt;}
.y23{bottom:186.920000pt;}
.y8c{bottom:190.586667pt;}
.y42{bottom:197.946667pt;}
.yc7{bottom:199.386667pt;}
.y75{bottom:202.106667pt;}
.y22{bottom:202.280000pt;}
.y8b{bottom:203.546667pt;}
.y15{bottom:209.786667pt;}
.yc6{bottom:214.746667pt;}
.y8a{bottom:216.506667pt;}
.y74{bottom:217.466667pt;}
.y21{bottom:217.480000pt;}
.y89{bottom:229.466667pt;}
.yc5{bottom:229.946667pt;}
.y73{bottom:232.826667pt;}
.y20{bottom:232.840000pt;}
.y88{bottom:242.266667pt;}
.yc4{bottom:245.306667pt;}
.y72{bottom:248.186667pt;}
.y1f{bottom:248.200000pt;}
.y86{bottom:255.226667pt;}
.yc3{bottom:260.666667pt;}
.y71{bottom:263.546667pt;}
.y1e{bottom:263.560000pt;}
.yd6{bottom:265.786667pt;}
.y85{bottom:268.186667pt;}
.yc2{bottom:276.026667pt;}
.y70{bottom:278.746667pt;}
.y1d{bottom:278.920000pt;}
.y82{bottom:281.146667pt;}
.yc1{bottom:291.426667pt;}
.y1c{bottom:294.120000pt;}
.y6f{bottom:294.146667pt;}
.yc0{bottom:306.786667pt;}
.y80{bottom:307.106667pt;}
.y1b{bottom:309.506667pt;}
.y7f{bottom:321.346667pt;}
.ybf{bottom:321.986667pt;}
.y1a{bottom:324.866667pt;}
.yd2{bottom:328.546667pt;}
.y7e{bottom:336.066667pt;}
.ybe{bottom:337.346667pt;}
.y19{bottom:340.226667pt;}
.y7d{bottom:345.666667pt;}
.ybd{bottom:352.706667pt;}
.y6e{bottom:355.426667pt;}
.y18{bottom:355.586667pt;}
.y7c{bottom:357.986667pt;}
.ybc{bottom:368.066667pt;}
.y6d{bottom:370.786667pt;}
.y17{bottom:370.946667pt;}
.ybb{bottom:383.426667pt;}
.y16{bottom:386.146667pt;}
.y3a{bottom:388.546667pt;}
.yba{bottom:398.626667pt;}
.y6c{bottom:401.506667pt;}
.yb9{bottom:413.986667pt;}
.y6b{bottom:416.866667pt;}
.yb8{bottom:429.346667pt;}
.y6a{bottom:432.226667pt;}
.yb7{bottom:444.706667pt;}
.y69{bottom:447.426667pt;}
.yb6{bottom:460.066667pt;}
.y68{bottom:462.786667pt;}
.y38{bottom:464.226667pt;}
.yb5{bottom:475.426667pt;}
.y67{bottom:478.146667pt;}
.y2f{bottom:482.626667pt;}
.yb4{bottom:490.626667pt;}
.y66{bottom:493.506667pt;}
.yb3{bottom:506.013333pt;}
.y65{bottom:508.893333pt;}
.yb2{bottom:521.373333pt;}
.y64{bottom:524.253333pt;}
.yb1{bottom:536.733333pt;}
.y63{bottom:539.453333pt;}
.yb0{bottom:552.093333pt;}
.y62{bottom:554.813333pt;}
.yaf{bottom:567.453333pt;}
.y61{bottom:570.173333pt;}
.yae{bottom:582.653333pt;}
.y60{bottom:585.533333pt;}
.yad{bottom:598.013333pt;}
.y5f{bottom:600.893333pt;}
.y13{bottom:609.053333pt;}
.yac{bottom:613.373333pt;}
.y5e{bottom:616.253333pt;}
.yab{bottom:628.733333pt;}
.y5d{bottom:631.453333pt;}
.y12{bottom:639.453333pt;}
.yaa{bottom:644.093333pt;}
.y5c{bottom:646.813333pt;}
.y11{bottom:657.053333pt;}
.ya9{bottom:659.293333pt;}
.y5b{bottom:662.173333pt;}
.ya8{bottom:674.653333pt;}
.y5a{bottom:677.533333pt;}
.y10{bottom:682.813333pt;}
.ya7{bottom:690.013333pt;}
.y59{bottom:692.893333pt;}
.yf{bottom:699.613333pt;}
.ya6{bottom:705.373333pt;}
.y58{bottom:708.093333pt;}
.ye{bottom:718.333333pt;}
.ya5{bottom:720.733333pt;}
.y57{bottom:723.453333pt;}
.ya4{bottom:736.133333pt;}
.y56{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.ya3{bottom:749.253333pt;}
.y55{bottom:754.213333pt;}
.ya2{bottom:762.053333pt;}
.y54{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.ya1{bottom:775.013333pt;}
.y53{bottom:784.933333pt;}
.ya0{bottom:787.973333pt;}
.y52{bottom:800.133333pt;}
.y9f{bottom:800.933333pt;}
.yb{bottom:801.253333pt;}
.y9e{bottom:813.893333pt;}
.y51{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y50{bottom:830.853333pt;}
.y9d{bottom:839.653333pt;}
.y8{bottom:840.453333pt;}
.y4f{bottom:846.213333pt;}
.y9c{bottom:852.613333pt;}
.y4e{bottom:861.573333pt;}
.y9b{bottom:865.573333pt;}
.y4d{bottom:876.933333pt;}
.y9a{bottom:878.533333pt;}
.y99{bottom:891.493333pt;}
.y4c{bottom:892.133333pt;}
.y98{bottom:904.453333pt;}
.y4b{bottom:907.493333pt;}
.y97{bottom:917.253333pt;}
.y4a{bottom:922.853333pt;}
.y96{bottom:931.653333pt;}
.y49{bottom:938.213333pt;}
.y95{bottom:946.373333pt;}
.y48{bottom:953.600000pt;}
.y94{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h19{height:12.160000pt;}
.h1b{height:12.320000pt;}
.h1c{height:12.320133pt;}
.h1a{height:12.352000pt;}
.hc{height:15.360000pt;}
.h12{height:17.760000pt;}
.h3{height:24.512000pt;}
.h18{height:29.125000pt;}
.h17{height:30.254687pt;}
.h15{height:33.867188pt;}
.h11{height:35.554688pt;}
.hd{height:37.479688pt;}
.h16{height:38.672812pt;}
.h5{height:39.027500pt;}
.h2{height:40.021563pt;}
.h10{height:43.687500pt;}
.h8{height:44.361250pt;}
.h1{height:45.156250pt;}
.ha{height:47.310625pt;}
.h4{height:48.347500pt;}
.h1d{height:48.992000pt;}
.h7{height:53.590000pt;}
.h9{height:67.734375pt;}
.h13{height:74.880000pt;}
.hb{height:87.375000pt;}
.h1e{height:98.080000pt;}
.hf{height:125.792000pt;}
.h6{height:136.826667pt;}
.h14{height:178.106667pt;}
.he{height:398.626667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.wc{width:56.000000pt;}
.we{width:72.640000pt;}
.w9{width:80.640000pt;}
.w8{width:107.072000pt;}
.wb{width:112.832000pt;}
.w7{width:150.560000pt;}
.wa{width:169.466667pt;}
.w6{width:195.706667pt;}
.wf{width:266.306667pt;}
.wd{width:339.586667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.600000pt;}
.x3{left:7.520000pt;}
.x2a{left:10.880000pt;}
.x28{left:12.320000pt;}
.x21{left:14.880000pt;}
.x2b{left:16.640000pt;}
.x10{left:17.760000pt;}
.x1f{left:18.720000pt;}
.x36{left:20.640000pt;}
.x35{left:22.560000pt;}
.x15{left:24.320000pt;}
.x31{left:25.280000pt;}
.x23{left:28.480000pt;}
.x13{left:29.600000pt;}
.x11{left:30.880000pt;}
.x14{left:31.880000pt;}
.x27{left:35.360000pt;}
.x24{left:37.600000pt;}
.x29{left:38.760000pt;}
.x6{left:40.480000pt;}
.x34{left:41.640000pt;}
.x33{left:44.672000pt;}
.x1b{left:45.599988pt;}
.x26{left:47.080000pt;}
.x2{left:47.999988pt;}
.x2e{left:49.120000pt;}
.x1{left:53.919988pt;}
.x16{left:58.239988pt;}
.x37{left:65.759988pt;}
.x9{left:69.279988pt;}
.x25{left:75.200000pt;}
.x32{left:84.666667pt;}
.x4{left:89.632000pt;}
.x3a{left:94.720000pt;}
.x5{left:96.031988pt;}
.x3b{left:100.960000pt;}
.x2c{left:108.031988pt;}
.x2f{left:219.226667pt;}
.x2d{left:236.506655pt;}
.xa{left:310.626655pt;}
.xd{left:329.346655pt;}
.x30{left:332.706667pt;}
.xc{left:334.786655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x17{left:425.186655pt;}
.x18{left:426.493321pt;}
.x1e{left:430.653333pt;}
.x39{left:433.693333pt;}
.x19{left:449.213321pt;}
.x1a{left:450.493321pt;}
.x38{left:468.093321pt;}
.x3c{left:506.973333pt;}
.x1d{left:515.933321pt;}
.xf{left:570.973333pt;}
.x20{left:581.853333pt;}
.x1c{left:608.613321pt;}
.x22{left:689.573333pt;}
.x7{left:722.213333pt;}
}




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