
    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_16182480d05f98a9b4163530.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_2ca0640763e815eb42bfe524.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_c41a0c76679a837fce84f3b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_cf11477dba18aad603656b36.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_ccd29120fb7e9dbec37cf3b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_9169b97654ace333adf24e68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.702000;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_68a1b36269552b1ae4afd9f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_bd8c71082649a465b6ded11c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_431a73557acc7ec171cccb64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_6bb10a1730b7cb0e3977302e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903000;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:ffb;src:url('chunks/assets/font_bdbbd8ae1dbbd84334500234.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888000;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:ffc;src:url('chunks/assets/font_fbaa8eeb7d50d75fcc7a7445.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.997000;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:ffd;src:url('chunks/assets/font_5d8aec143fa4afa4d80a6559.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.715820;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:ffe;src:url('chunks/assets/font_ac93d53d5c3b894aa241a826.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692383;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;}
.m3{transform:matrix(-0.244541,-0.051959,0.051959,-0.244541,0,0);-ms-transform:matrix(-0.244541,-0.051959,0.051959,-0.244541,0,0);-webkit-transform:matrix(-0.244541,-0.051959,0.051959,-0.244541,0,0);}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,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(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);}
.m2{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:-7.159079px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.720992px;}
.v1{vertical-align:4.080539px;}
.v6{vertical-align:17.346328px;}
.v5{vertical-align:19.728000px;}
.v4{vertical-align:23.472000px;}
.v3{vertical-align:38.772942px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020285px;}
.ls3{letter-spacing:0.051381px;}
.ls14{letter-spacing:0.198978px;}
.ls9{letter-spacing:0.205700px;}
.ls19{letter-spacing:2.655600px;}
.ls15{letter-spacing:2.824500px;}
.ls5{letter-spacing:2.991600px;}
.ls7{letter-spacing:2.992800px;}
.ls4{letter-spacing:3.162077px;}
.lsf{letter-spacing:3.166500px;}
.ls8{letter-spacing:7.723027px;}
.lsc{letter-spacing:10.783545px;}
.ls13{letter-spacing:12.662895px;}
.ls18{letter-spacing:13.002421px;}
.lsb{letter-spacing:13.179357px;}
.ls11{letter-spacing:13.184139px;}
.ls17{letter-spacing:13.781897px;}
.ls10{letter-spacing:14.021000px;}
.ls12{letter-spacing:14.121423px;}
.ls16{letter-spacing:14.360526px;}
.lse{letter-spacing:15.070500px;}
.ls2{letter-spacing:15.900349px;}
.lsa{letter-spacing:16.132548px;}
.ls1b{letter-spacing:16.584184px;}
.ls1c{letter-spacing:18.586487px;}
.ls0{letter-spacing:19.038201px;}
.ls1a{letter-spacing:24.780635px;}
.lsd{letter-spacing:35.325077px;}
.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;}
}
.ws9{word-spacing:-47.820600px;}
.ws14{word-spacing:-38.255400px;}
.wsf{word-spacing:-37.362235px;}
.wsa{word-spacing:-37.319196px;}
.ws17{word-spacing:-37.204427px;}
.ws16{word-spacing:-35.865450px;}
.ws8{word-spacing:-30.844287px;}
.ws15{word-spacing:-28.691550px;}
.ws2{word-spacing:-24.230394px;}
.ws3{word-spacing:-14.011436px;}
.ws4{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws5{word-spacing:-11.208832px;}
.ws7{word-spacing:-10.061328px;}
.ws13{word-spacing:-9.563850px;}
.wse{word-spacing:-1.353323px;}
.wsb{word-spacing:-0.243750px;}
.wsc{word-spacing:-0.106222px;}
.ws11{word-spacing:-0.100222px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:0.092250px;}
.ws12{word-spacing:0.889463px;}
.wsd{word-spacing:1.181169px;}
.ws1{word-spacing:9.511398px;}
.ws19{word-spacing:12.674014px;}
.ws18{word-spacing:12.781129px;}
._5{margin-left:-17.343592px;}
._10{margin-left:-5.159843px;}
._c{margin-left:-4.150828px;}
._a{margin-left:-2.664170px;}
._3{margin-left:-1.222161px;}
._1{width:1.000643px;}
._4{width:2.040661px;}
._2{width:3.211741px;}
._6{width:4.566332px;}
._7{width:5.844560px;}
._f{width:6.892011px;}
._8{width:7.918992px;}
._9{width:8.926081px;}
._e{width:19.328277px;}
._d{width:20.328920px;}
._11{width:23.989961px;}
._b{width:29.854401px;}
._0{width:80.093718px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fsa{font-size:31.083000px;}
.fs9{font-size:33.472800px;}
.fsd{font-size:35.867400px;}
.fsc{font-size:37.778400px;}
.fs4{font-size:38.255400px;}
.fs8{font-size:38.256000px;}
.fsb{font-size:40.644723px;}
.fs5{font-size:41.842200px;}
.fs0{font-size:43.038000px;}
.fs3{font-size:44.327400px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs7{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y34{bottom:53.097757px;}
.y4{bottom:81.672757px;}
.y6a{bottom:84.189200px;}
.y76{bottom:84.191152px;}
.ybd{bottom:84.191609px;}
.y86{bottom:88.528538px;}
.y3{bottom:96.027757px;}
.ybc{bottom:96.096689px;}
.y69{bottom:99.836618px;}
.y75{bottom:99.838052px;}
.y85{bottom:104.261516px;}
.y2{bottom:108.012757px;}
.ybb{bottom:108.086888px;}
.y68{bottom:115.568400px;}
.y66{bottom:115.568750px;}
.y74{bottom:115.571030px;}
.y84{bottom:119.908416px;}
.yba{bottom:119.992925px;}
.y67{bottom:120.840900px;}
.y32{bottom:122.456736px;}
.y65{bottom:131.215650px;}
.y63{bottom:131.216168px;}
.y73{bottom:131.217930px;}
.yb9{bottom:131.983124px;}
.y83{bottom:135.640198px;}
.y64{bottom:136.573200px;}
.y31{bottom:136.828200px;}
.y36{bottom:142.440900px;}
.yb8{bottom:143.888204px;}
.y62{bottom:146.947950px;}
.y72{bottom:146.949712px;}
.y60{bottom:146.950347px;}
.y82{bottom:151.287098px;}
.y61{bottom:152.220000px;}
.yb7{bottom:155.878403px;}
.y5f{bottom:162.597247px;}
.y81{bottom:167.020076px;}
.yb6{bottom:167.869558px;}
.y2d{bottom:168.209150px;}
.y71{bottom:170.420062px;}
.y5e{bottom:178.329029px;}
.yb5{bottom:179.774638px;}
.y2c{bottom:181.049575px;}
.y80{bottom:182.666976px;}
.yb4{bottom:191.764837px;}
.y2b{bottom:193.890000px;}
.y5d{bottom:193.975929px;}
.y7f{bottom:198.398758px;}
.y70{bottom:203.245318px;}
.yb3{bottom:203.670874px;}
.y5c{bottom:209.708907px;}
.y7e{bottom:214.045658px;}
.yb2{bottom:215.661073px;}
.y6f{bottom:218.892218px;}
.y5b{bottom:225.355807px;}
.yb1{bottom:227.651272px;}
.y7d{bottom:229.778636px;}
.y6d{bottom:234.624000px;}
.yb0{bottom:239.556352px;}
.y6e{bottom:239.896500px;}
.y2a{bottom:243.045406px;}
.y7c{bottom:245.425536px;}
.y5a{bottom:246.274928px;}
.yaf{bottom:251.547507px;}
.y29{bottom:258.777188px;}
.y7b{bottom:261.157318px;}
.yae{bottom:263.452588px;}
.y77{bottom:268.299000px;}
.y28{bottom:274.424088px;}
.y58{bottom:275.017500px;}
.y56{bottom:275.017512px;}
.yad{bottom:275.442786px;}
.y7a{bottom:276.804218px;}
.y57{bottom:280.630500px;}
.y59{bottom:286.837557px;}
.y53{bottom:286.839181px;}
.yac{bottom:287.432985px;}
.y27{bottom:290.157066px;}
.y79{bottom:292.536000px;}
.y55{bottom:296.532000px;}
.yab{bottom:299.339022px;}
.y54{bottom:302.145000px;}
.y26{bottom:305.803966px;}
.yaa{bottom:311.329221px;}
.y25{bottom:321.535748px;}
.y52{bottom:322.470310px;}
.ya9{bottom:323.234301px;}
.y87{bottom:326.125500px;}
.ya8{bottom:335.224500px;}
.y24{bottom:337.182648px;}
.y51{bottom:338.628036px;}
.y23{bottom:352.915626px;}
.y50{bottom:354.359818px;}
.ya7{bottom:358.186500px;}
.y22{bottom:368.562526px;}
.y4f{bottom:370.006718px;}
.y21{bottom:384.294308px;}
.y4e{bottom:385.739879px;}
.y20{bottom:399.941208px;}
.y4d{bottom:401.387975px;}
.y1f{bottom:415.672990px;}
.y4c{bottom:427.579318px;}
.y1e{bottom:431.321086px;}
.y4b{bottom:443.226218px;}
.y1d{bottom:447.052868px;}
.y4a{bottom:458.961270px;}
.y1c{bottom:462.699768px;}
.y49{bottom:474.608170px;}
.y1b{bottom:486.255000px;}
.y48{bottom:490.341148px;}
.ya6{bottom:507.856476px;}
.y47{bottom:511.260269px;}
.ya5{bottom:523.588258px;}
.y46{bottom:538.642345px;}
.ya4{bottom:539.235158px;}
.y1a{bottom:542.043359px;}
.y45{bottom:554.289245px;}
.ya3{bottom:554.968136px;}
.y19{bottom:556.414823px;}
.y44{bottom:570.022222px;}
.ya2{bottom:570.615036px;}
.y18{bottom:570.701287px;}
.y17{bottom:585.072751px;}
.ya1{bottom:586.346818px;}
.y43{bottom:590.941344px;}
.y16{bottom:599.444215px;}
.ya0{bottom:601.993718px;}
.y15{bottom:613.730679px;}
.y42{bottom:614.496576px;}
.y9f{bottom:617.725500px;}
.y9d{bottom:617.730077px;}
.y9e{bottom:622.998000px;}
.y14{bottom:628.102143px;}
.yf{bottom:632.523344px;}
.y9c{bottom:633.376977px;}
.y13{bottom:642.473608px;}
.ye{bottom:645.363769px;}
.y41{bottom:646.131098px;}
.y12{bottom:656.845072px;}
.y9b{bottom:656.933405px;}
.yd{bottom:658.205150px;}
.y40{bottom:661.864076px;}
.yc{bottom:671.045575px;}
.y11{bottom:671.131536px;}
.y3f{bottom:677.510976px;}
.yb{bottom:683.886000px;}
.y10{bottom:685.503000px;}
.y9a{bottom:688.312087px;}
.y3e{bottom:693.242758px;}
.y99{bottom:704.045064px;}
.y3d{bottom:708.889658px;}
.ya{bottom:714.756000px;}
.y3c{bottom:724.622636px;}
.y98{bottom:727.600296px;}
.y3b{bottom:740.269536px;}
.y3a{bottom:756.001318px;}
.y97{bottom:758.978978px;}
.y9{bottom:764.248500px;}
.y39{bottom:771.648218px;}
.y96{bottom:774.711956px;}
.y38{bottom:787.380000px;}
.y7{bottom:788.910000px;}
.y95{bottom:790.358856px;}
.y35{bottom:794.013000px;}
.y8{bottom:795.969000px;}
.y94{bottom:813.914088px;}
.y6b{bottom:821.055000px;}
.y6{bottom:826.412716px;}
.y93{bottom:845.293966px;}
.yce{bottom:848.014403px;}
.y5{bottom:852.264000px;}
.ycd{bottom:860.005558px;}
.y92{bottom:860.940866px;}
.ycc{bottom:871.910638px;}
.y91{bottom:876.672648px;}
.ycb{bottom:883.900837px;}
.y90{bottom:892.319548px;}
.yca{bottom:895.806874px;}
.yc9{bottom:907.797073px;}
.y8f{bottom:908.052526px;}
.yc8{bottom:919.787272px;}
.y8e{bottom:923.699426px;}
.y30{bottom:931.096500px;}
.yc7{bottom:931.692352px;}
.y8d{bottom:939.431208px;}
.yc6{bottom:943.683507px;}
.yc5{bottom:955.588588px;}
.y8c{bottom:962.987636px;}
.yc4{bottom:967.578786px;}
.y2f{bottom:971.490000px;}
.yc3{bottom:979.568985px;}
.yc2{bottom:991.475022px;}
.y8b{bottom:994.366318px;}
.yc1{bottom:1003.465221px;}
.y8a{bottom:1010.013218px;}
.y2e{bottom:1014.009000px;}
.yc0{bottom:1015.370301px;}
.y89{bottom:1025.745000px;}
.ybf{bottom:1027.360500px;}
.y1{bottom:1054.632757px;}
.y37{bottom:1055.073199px;}
.y78{bottom:1055.073902px;}
.y88{bottom:1055.074496px;}
.ybe{bottom:1055.075405px;}
.y6c{bottom:1055.080497px;}
.ycf{bottom:1055.082276px;}
.y33{bottom:1055.097757px;}
.hf{height:25.991539px;}
.he{height:30.442898px;}
.h13{height:31.524082px;}
.h6{height:33.622910px;}
.hc{height:33.623438px;}
.h12{height:35.865402px;}
.h10{height:35.865450px;}
.hb{height:36.343656px;}
.h7{height:36.775371px;}
.h2{height:37.826367px;}
.h5{height:38.959629px;}
.h8{height:42.029824px;}
.h14{height:42.450928px;}
.h15{height:42.451601px;}
.h11{height:44.857104px;}
.h4{height:55.689609px;}
.h3{height:70.925098px;}
.ha{height:73.551270px;}
.hd{height:74.636725px;}
.h1{height:1113.750000px;}
.h9{height:1114.015500px;}
.h0{height:1114.015503px;}
.w2{width:816.375000px;}
.w3{width:816.378000px;}
.w0{width:816.378021px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x2{left:58.335000px;}
.x2b{left:61.908600px;}
.x33{left:63.609300px;}
.x2c{left:67.350274px;}
.x2a{left:71.347950px;}
.xa{left:76.449339px;}
.x35{left:83.082255px;}
.x36{left:90.480913px;}
.x12{left:94.394685px;}
.x19{left:102.304697px;}
.x11{left:113.782650px;}
.x2d{left:115.311945px;}
.x28{left:136.998300px;}
.x29{left:153.156000px;}
.x2e{left:175.096500px;}
.x37{left:176.540261px;}
.x2f{left:185.301000px;}
.x3{left:191.848500px;}
.x14{left:194.145000px;}
.x13{left:196.015500px;}
.x4{left:197.802000px;}
.x1b{left:203.329500px;}
.x1a{left:205.285500px;}
.x15{left:211.152000px;}
.x5{left:219.231164px;}
.x1c{left:220.336500px;}
.xc{left:237.769500px;}
.xd{left:268.725000px;}
.x10{left:271.615500px;}
.x1{left:274.545000px;}
.x17{left:276.123000px;}
.x16{left:277.993500px;}
.x1e{left:285.307500px;}
.x1d{left:287.178000px;}
.x18{left:293.130000px;}
.x9{left:296.617500px;}
.x34{left:300.100357px;}
.x1f{left:302.314500px;}
.xb{left:304.270500px;}
.x6{left:343.219500px;}
.x27{left:346.705500px;}
.x38{left:351.293798px;}
.x7{left:355.125000px;}
.xf{left:405.255000px;}
.x21{left:407.508000px;}
.x22{left:415.758000px;}
.x8{left:441.098272px;}
.xe{left:534.855000px;}
.x30{left:610.668000px;}
.x23{left:622.659000px;}
.x31{left:624.444000px;}
.x24{left:631.417500px;}
.x25{left:633.288000px;}
.x26{left:640.771500px;}
.x32{left:684.480372px;}
.x20{left:742.134119px;}
@media print{
.v2{vertical-align:-6.363626pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.418660pt;}
.v1{vertical-align:3.627145pt;}
.v6{vertical-align:15.418958pt;}
.v5{vertical-align:17.536000pt;}
.v4{vertical-align:20.864000pt;}
.v3{vertical-align:34.464838pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.018031pt;}
.ls3{letter-spacing:0.045672pt;}
.ls14{letter-spacing:0.176869pt;}
.ls9{letter-spacing:0.182845pt;}
.ls19{letter-spacing:2.360533pt;}
.ls15{letter-spacing:2.510667pt;}
.ls5{letter-spacing:2.659200pt;}
.ls7{letter-spacing:2.660267pt;}
.ls4{letter-spacing:2.810735pt;}
.lsf{letter-spacing:2.814667pt;}
.ls8{letter-spacing:6.864913pt;}
.lsc{letter-spacing:9.585374pt;}
.ls13{letter-spacing:11.255907pt;}
.ls18{letter-spacing:11.557708pt;}
.lsb{letter-spacing:11.714984pt;}
.ls11{letter-spacing:11.719235pt;}
.ls17{letter-spacing:12.250575pt;}
.ls10{letter-spacing:12.463111pt;}
.ls12{letter-spacing:12.552376pt;}
.ls16{letter-spacing:12.764912pt;}
.lse{letter-spacing:13.396000pt;}
.ls2{letter-spacing:14.133644pt;}
.lsa{letter-spacing:14.340043pt;}
.ls1b{letter-spacing:14.741497pt;}
.ls1c{letter-spacing:16.521321pt;}
.ls0{letter-spacing:16.922845pt;}
.ls1a{letter-spacing:22.027231pt;}
.lsd{letter-spacing:31.400069pt;}
.ws9{word-spacing:-42.507200pt;}
.ws14{word-spacing:-34.004800pt;}
.wsf{word-spacing:-33.210875pt;}
.wsa{word-spacing:-33.172619pt;}
.ws17{word-spacing:-33.070602pt;}
.ws16{word-spacing:-31.880400pt;}
.ws8{word-spacing:-27.417144pt;}
.ws15{word-spacing:-25.503600pt;}
.ws2{word-spacing:-21.538128pt;}
.ws3{word-spacing:-12.454610pt;}
.ws4{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws5{word-spacing:-9.963406pt;}
.ws7{word-spacing:-8.943403pt;}
.ws13{word-spacing:-8.501200pt;}
.wse{word-spacing:-1.202954pt;}
.wsb{word-spacing:-0.216667pt;}
.wsc{word-spacing:-0.094420pt;}
.ws11{word-spacing:-0.089086pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:0.082000pt;}
.ws12{word-spacing:0.790634pt;}
.wsd{word-spacing:1.049928pt;}
.ws1{word-spacing:8.454576pt;}
.ws19{word-spacing:11.265790pt;}
.ws18{word-spacing:11.361004pt;}
._5{margin-left:-15.416526pt;}
._10{margin-left:-4.586527pt;}
._c{margin-left:-3.689625pt;}
._a{margin-left:-2.368151pt;}
._3{margin-left:-1.086366pt;}
._1{width:0.889460pt;}
._4{width:1.813921pt;}
._2{width:2.854881pt;}
._6{width:4.058962pt;}
._7{width:5.195165pt;}
._f{width:6.126232pt;}
._8{width:7.039104pt;}
._9{width:7.934294pt;}
._e{width:17.180690pt;}
._d{width:18.070151pt;}
._11{width:21.324410pt;}
._b{width:26.537245pt;}
._0{width:71.194416pt;}
.fsa{font-size:27.629333pt;}
.fs9{font-size:29.753600pt;}
.fsd{font-size:31.882133pt;}
.fsc{font-size:33.580800pt;}
.fs4{font-size:34.004800pt;}
.fs8{font-size:34.005333pt;}
.fsb{font-size:36.128643pt;}
.fs5{font-size:37.193067pt;}
.fs0{font-size:38.256000pt;}
.fs3{font-size:39.402133pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs7{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:47.198006pt;}
.y4{bottom:72.598006pt;}
.y6a{bottom:74.834844pt;}
.y76{bottom:74.836580pt;}
.ybd{bottom:74.836986pt;}
.y86{bottom:78.692034pt;}
.y3{bottom:85.358006pt;}
.ybc{bottom:85.419279pt;}
.y69{bottom:88.743661pt;}
.y75{bottom:88.744935pt;}
.y85{bottom:92.676903pt;}
.y2{bottom:96.011340pt;}
.ybb{bottom:96.077234pt;}
.y68{bottom:102.727467pt;}
.y66{bottom:102.727777pt;}
.y74{bottom:102.729804pt;}
.y84{bottom:106.585259pt;}
.yba{bottom:106.660378pt;}
.y67{bottom:107.414133pt;}
.y32{bottom:108.850432pt;}
.y65{bottom:116.636133pt;}
.y63{bottom:116.636594pt;}
.y73{bottom:116.638160pt;}
.yb9{bottom:117.318332pt;}
.y83{bottom:120.569065pt;}
.y64{bottom:121.398400pt;}
.y31{bottom:121.625067pt;}
.y36{bottom:126.614133pt;}
.yb8{bottom:127.900626pt;}
.y62{bottom:130.620400pt;}
.y72{bottom:130.621966pt;}
.y60{bottom:130.622530pt;}
.y82{bottom:134.477421pt;}
.y61{bottom:135.306667pt;}
.yb7{bottom:138.558580pt;}
.y5f{bottom:144.530886pt;}
.y81{bottom:148.462289pt;}
.yb6{bottom:149.217385pt;}
.y2d{bottom:149.519244pt;}
.y71{bottom:151.484500pt;}
.y5e{bottom:158.514692pt;}
.yb5{bottom:159.799679pt;}
.y2c{bottom:160.932956pt;}
.y80{bottom:162.370645pt;}
.yb4{bottom:170.457633pt;}
.y2b{bottom:172.346667pt;}
.y5d{bottom:172.423048pt;}
.y7f{bottom:176.354451pt;}
.y70{bottom:180.662505pt;}
.yb3{bottom:181.040777pt;}
.y5c{bottom:186.407917pt;}
.y7e{bottom:190.262807pt;}
.yb2{bottom:191.698731pt;}
.y6f{bottom:194.570861pt;}
.y5b{bottom:200.316273pt;}
.yb1{bottom:202.356686pt;}
.y7d{bottom:204.247676pt;}
.y6d{bottom:208.554667pt;}
.yb0{bottom:212.938980pt;}
.y6e{bottom:213.241333pt;}
.y2a{bottom:216.040361pt;}
.y7c{bottom:218.156032pt;}
.y5a{bottom:218.911047pt;}
.yaf{bottom:223.597784pt;}
.y29{bottom:230.024167pt;}
.y7b{bottom:232.139838pt;}
.yae{bottom:234.180078pt;}
.y77{bottom:238.488000pt;}
.y28{bottom:243.932523pt;}
.y58{bottom:244.460000pt;}
.y56{bottom:244.460011pt;}
.yad{bottom:244.838032pt;}
.y7a{bottom:246.048194pt;}
.y57{bottom:249.449333pt;}
.y59{bottom:254.966717pt;}
.y53{bottom:254.968161pt;}
.yac{bottom:255.495987pt;}
.y27{bottom:257.917392pt;}
.y79{bottom:260.032000pt;}
.y55{bottom:263.584000pt;}
.yab{bottom:266.079131pt;}
.y54{bottom:268.573333pt;}
.y26{bottom:271.825747pt;}
.yaa{bottom:276.737085pt;}
.y25{bottom:285.809554pt;}
.y52{bottom:286.640276pt;}
.ya9{bottom:287.319379pt;}
.y87{bottom:289.889333pt;}
.ya8{bottom:297.977333pt;}
.y24{bottom:299.717909pt;}
.y51{bottom:301.002699pt;}
.y23{bottom:313.702778pt;}
.y50{bottom:314.986505pt;}
.ya7{bottom:318.388000pt;}
.y22{bottom:327.611134pt;}
.y4f{bottom:328.894861pt;}
.y21{bottom:341.594940pt;}
.y4e{bottom:342.879893pt;}
.y20{bottom:355.503296pt;}
.y4d{bottom:356.789311pt;}
.y1f{bottom:369.487102pt;}
.y4c{bottom:380.070505pt;}
.y1e{bottom:383.396521pt;}
.y4b{bottom:393.978861pt;}
.y1d{bottom:397.380327pt;}
.y4a{bottom:407.965573pt;}
.y1c{bottom:411.288683pt;}
.y49{bottom:421.873929pt;}
.y1b{bottom:432.226667pt;}
.y48{bottom:435.858798pt;}
.ya6{bottom:451.427979pt;}
.y47{bottom:454.453572pt;}
.ya5{bottom:465.411785pt;}
.y46{bottom:478.793195pt;}
.ya4{bottom:479.320141pt;}
.y1a{bottom:481.816319pt;}
.y45{bottom:492.701551pt;}
.ya3{bottom:493.305009pt;}
.y19{bottom:494.590954pt;}
.y44{bottom:506.686420pt;}
.ya2{bottom:507.213365pt;}
.y18{bottom:507.290033pt;}
.y17{bottom:520.064668pt;}
.ya1{bottom:521.197171pt;}
.y43{bottom:525.281194pt;}
.y16{bottom:532.839302pt;}
.ya0{bottom:535.105527pt;}
.y15{bottom:545.538382pt;}
.y42{bottom:546.219179pt;}
.y9f{bottom:549.089333pt;}
.y9d{bottom:549.093401pt;}
.y9e{bottom:553.776000pt;}
.y14{bottom:558.313016pt;}
.yf{bottom:562.242972pt;}
.y9c{bottom:563.001757pt;}
.y13{bottom:571.087651pt;}
.ye{bottom:573.656683pt;}
.y41{bottom:574.338754pt;}
.y12{bottom:583.862286pt;}
.y9b{bottom:583.940804pt;}
.yd{bottom:585.071244pt;}
.y40{bottom:588.323623pt;}
.yc{bottom:596.484956pt;}
.y11{bottom:596.561365pt;}
.y3f{bottom:602.231979pt;}
.yb{bottom:607.898667pt;}
.y10{bottom:609.336000pt;}
.y9a{bottom:611.832966pt;}
.y3e{bottom:616.215785pt;}
.y99{bottom:625.817835pt;}
.y3d{bottom:630.124141pt;}
.ya{bottom:635.338667pt;}
.y3c{bottom:644.109009pt;}
.y98{bottom:646.755819pt;}
.y3b{bottom:658.017365pt;}
.y3a{bottom:672.001171pt;}
.y97{bottom:674.647981pt;}
.y9{bottom:679.332000pt;}
.y39{bottom:685.909527pt;}
.y96{bottom:688.632850pt;}
.y38{bottom:699.893333pt;}
.y7{bottom:701.253333pt;}
.y95{bottom:702.541205pt;}
.y35{bottom:705.789333pt;}
.y8{bottom:707.528000pt;}
.y94{bottom:723.479189pt;}
.y6b{bottom:729.826667pt;}
.y6{bottom:734.589081pt;}
.y93{bottom:751.372414pt;}
.yce{bottom:753.790580pt;}
.y5{bottom:757.568000pt;}
.ycd{bottom:764.449385pt;}
.y92{bottom:765.280770pt;}
.ycc{bottom:775.031679pt;}
.y91{bottom:779.264576pt;}
.ycb{bottom:785.689633pt;}
.y90{bottom:793.172932pt;}
.yca{bottom:796.272777pt;}
.yc9{bottom:806.930731pt;}
.y8f{bottom:807.157801pt;}
.yc8{bottom:817.588686pt;}
.y8e{bottom:821.066157pt;}
.y30{bottom:827.641333pt;}
.yc7{bottom:828.170980pt;}
.y8d{bottom:835.049963pt;}
.yc6{bottom:838.829784pt;}
.yc5{bottom:849.412078pt;}
.y8c{bottom:855.989009pt;}
.yc4{bottom:860.070032pt;}
.y2f{bottom:863.546667pt;}
.yc3{bottom:870.727987pt;}
.yc2{bottom:881.311131pt;}
.y8b{bottom:883.881171pt;}
.yc1{bottom:891.969085pt;}
.y8a{bottom:897.789527pt;}
.y2e{bottom:901.341333pt;}
.yc0{bottom:902.551379pt;}
.y89{bottom:911.773333pt;}
.ybf{bottom:913.209333pt;}
.y1{bottom:937.451340pt;}
.y37{bottom:937.842844pt;}
.y78{bottom:937.843469pt;}
.y88{bottom:937.843996pt;}
.ybe{bottom:937.844805pt;}
.y6c{bottom:937.849330pt;}
.ycf{bottom:937.850912pt;}
.y33{bottom:937.864673pt;}
.hf{height:23.103590pt;}
.he{height:27.060353pt;}
.h13{height:28.021406pt;}
.h6{height:29.887031pt;}
.hc{height:29.887500pt;}
.h12{height:31.880357pt;}
.h10{height:31.880400pt;}
.hb{height:32.305472pt;}
.h7{height:32.689219pt;}
.h2{height:33.623437pt;}
.h5{height:34.630781pt;}
.h8{height:37.359844pt;}
.h14{height:37.734158pt;}
.h15{height:37.734757pt;}
.h11{height:39.872981pt;}
.h4{height:49.501875pt;}
.h3{height:63.044531pt;}
.ha{height:65.378906pt;}
.hd{height:66.343756pt;}
.h1{height:990.000000pt;}
.h9{height:990.236000pt;}
.h0{height:990.236003pt;}
.w2{width:725.666667pt;}
.w3{width:725.669333pt;}
.w0{width:725.669352pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.853333pt;}
.x2b{left:55.029867pt;}
.x33{left:56.541600pt;}
.x2c{left:59.866911pt;}
.x2a{left:63.420400pt;}
.xa{left:67.954968pt;}
.x35{left:73.850893pt;}
.x36{left:80.427479pt;}
.x12{left:83.906386pt;}
.x19{left:90.937508pt;}
.x11{left:101.140133pt;}
.x2d{left:102.499507pt;}
.x28{left:121.776267pt;}
.x29{left:136.138667pt;}
.x2e{left:155.641333pt;}
.x37{left:156.924677pt;}
.x2f{left:164.712000pt;}
.x3{left:170.532000pt;}
.x14{left:172.573333pt;}
.x13{left:174.236000pt;}
.x4{left:175.824000pt;}
.x1b{left:180.737333pt;}
.x1a{left:182.476000pt;}
.x15{left:187.690667pt;}
.x5{left:194.872145pt;}
.x1c{left:195.854667pt;}
.xc{left:211.350667pt;}
.xd{left:238.866667pt;}
.x10{left:241.436000pt;}
.x1{left:244.040000pt;}
.x17{left:245.442667pt;}
.x16{left:247.105333pt;}
.x1e{left:253.606667pt;}
.x1d{left:255.269333pt;}
.x18{left:260.560000pt;}
.x9{left:263.660000pt;}
.x34{left:266.755873pt;}
.x1f{left:268.724000pt;}
.xb{left:270.462667pt;}
.x6{left:305.084000pt;}
.x27{left:308.182667pt;}
.x38{left:312.261153pt;}
.x7{left:315.666667pt;}
.xf{left:360.226667pt;}
.x21{left:362.229333pt;}
.x22{left:369.562667pt;}
.x8{left:392.087353pt;}
.xe{left:475.426667pt;}
.x30{left:542.816000pt;}
.x23{left:553.474667pt;}
.x31{left:555.061333pt;}
.x24{left:561.260000pt;}
.x25{left:562.922667pt;}
.x26{left:569.574667pt;}
.x32{left:608.426998pt;}
.x20{left:659.674772pt;}
}




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