
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_64915b4e5e01dad7a1288002.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_e778d271814c3097b15b3987.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_4d04e8b79656cd6fb139c7b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_59a1adfb09d953e85e8b11dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_46cf7cc6a5827304d8459aab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_f5a7665c336941529ab94845.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_552dd6c563b569c86a532f87.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_28af146001ae73591e5f4030.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_ccb7232216025d98933102b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.ls18{letter-spacing:-0.444600px;}
.ls1a{letter-spacing:-0.267600px;}
.ls12{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.029880px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.043200px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.051120px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.113400px;}
.ls5{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.160800px;}
.ls11{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls4{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:2.253600px;}
.ls1d{letter-spacing:4.413600px;}
.ls1f{letter-spacing:9.813600px;}
.ls1e{letter-spacing:10.293600px;}
.ls21{letter-spacing:47.726640px;}
.ls20{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.387200px;}
.wse{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-9.309600px;}
.ws2{word-spacing:-9.266400px;}
.wsc{word-spacing:-9.236520px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._9{margin-left:-3.486720px;}
._8{margin-left:-2.435040px;}
._0{margin-left:-1.110000px;}
._4{width:1.399680px;}
._2{width:3.103728px;}
._1{width:4.194000px;}
._3{width:5.659272px;}
._6{width:7.529687px;}
._7{width:8.644040px;}
._b{width:10.078631px;}
._5{width:11.397042px;}
._10{width:14.609160px;}
._1a{width:15.732360px;}
._19{width:16.757640px;}
._a{width:18.517200px;}
._13{width:20.107439px;}
._11{width:21.162240px;}
._e{width:22.545000px;}
._14{width:25.222200px;}
._c{width:26.249400px;}
._d{width:27.289801px;}
._1c{width:28.580396px;}
._1b{width:33.727320px;}
._12{width:71.723160px;}
._f{width:77.975760px;}
._18{width:86.151960px;}
._16{width:123.804360px;}
._17{width:124.892040px;}
._15{width:128.957400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:7.830000px;}
.y66{bottom:7.920000px;}
.y6f{bottom:25.380000px;}
.y65{bottom:25.470000px;}
.y68{bottom:25.500000px;}
.yb5{bottom:43.020000px;}
.yb7{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y55{bottom:112.890000px;}
.y71{bottom:115.500000px;}
.ya7{bottom:115.680000px;}
.y54{bottom:130.440000px;}
.y81{bottom:133.230000px;}
.ya6{bottom:143.040000px;}
.yf0{bottom:154.290000px;}
.y27{bottom:155.370000px;}
.y53{bottom:156.990000px;}
.y80{bottom:160.590000px;}
.yc6{bottom:161.400000px;}
.ya5{bottom:170.400000px;}
.yef{bottom:171.840000px;}
.y26{bottom:173.010000px;}
.y70{bottom:175.440000px;}
.yc5{bottom:178.950000px;}
.y7f{bottom:187.950000px;}
.yee{bottom:189.480000px;}
.y25{bottom:190.560000px;}
.y52{bottom:192.900000px;}
.yc4{bottom:196.590000px;}
.ya4{bottom:197.760000px;}
.yc3{bottom:214.140000px;}
.y7e{bottom:215.220000px;}
.yed{bottom:216.390000px;}
.y6e{bottom:220.350000px;}
.ya3{bottom:225.030000px;}
.y24{bottom:226.110000px;}
.y51{bottom:241.230000px;}
.y7d{bottom:242.580000px;}
.y23{bottom:243.750000px;}
.yc2{bottom:249.690000px;}
.ya2{bottom:252.390000px;}
.y50{bottom:258.780000px;}
.y22{bottom:261.300000px;}
.yec{bottom:264.630000px;}
.y6d{bottom:265.260000px;}
.yc1{bottom:267.330000px;}
.y7c{bottom:269.940000px;}
.y4f{bottom:276.420000px;}
.y21{bottom:278.850000px;}
.ya1{bottom:279.750000px;}
.yc0{bottom:284.880000px;}
.yeb{bottom:291.540000px;}
.y4e{bottom:293.970000px;}
.y7b{bottom:297.300000px;}
.ybf{bottom:302.520000px;}
.y20{bottom:305.760000px;}
.ya0{bottom:307.020000px;}
.y6c{bottom:310.170000px;}
.y4d{bottom:311.520000px;}
.ybe{bottom:320.070000px;}
.y7a{bottom:324.570000px;}
.y107{bottom:327.990000px;}
.yea{bottom:328.890000px;}
.y4c{bottom:329.160000px;}
.y9f{bottom:334.380000px;}
.ybd{bottom:337.620000px;}
.y106{bottom:345.540000px;}
.y79{bottom:351.930000px;}
.y1f{bottom:354.360000px;}
.y6a{bottom:355.080000px;}
.ybc{bottom:355.260000px;}
.y9e{bottom:361.740000px;}
.y4b{bottom:364.710000px;}
.y105{bottom:372.180000px;}
.ye9{bottom:377.130000px;}
.ybb{bottom:382.170000px;}
.y4a{bottom:382.260000px;}
.y9d{bottom:389.100000px;}
.y104{bottom:389.730000px;}
.y1e{bottom:391.440000px;}
.ye8{bottom:394.770000px;}
.y49{bottom:399.900000px;}
.y69{bottom:399.990000px;}
.y78{bottom:400.620000px;}
.y1d{bottom:408.990000px;}
.ye7{bottom:412.320000px;}
.y9c{bottom:416.370000px;}
.y48{bottom:417.450000px;}
.y1c{bottom:426.630000px;}
.yba{bottom:427.800000px;}
.ye6{bottom:429.870000px;}
.y103{bottom:433.920000px;}
.y47{bottom:435.090000px;}
.y77{bottom:436.260000px;}
.y9b{bottom:443.730000px;}
.y1b{bottom:444.180000px;}
.y67{bottom:444.900000px;}
.ye5{bottom:447.510000px;}
.y102{bottom:460.470000px;}
.y46{bottom:461.640000px;}
.y1a{bottom:461.730000px;}
.ye4{bottom:465.060000px;}
.y9a{bottom:471.120000px;}
.y76{bottom:471.840000px;}
.yb9{bottom:472.740000px;}
.y101{bottom:478.140000px;}
.y19{bottom:479.400000px;}
.y75{bottom:489.390000px;}
.y64{bottom:489.840000px;}
.ye3{bottom:492.000000px;}
.y100{bottom:495.690000px;}
.y45{bottom:496.140000px;}
.y18{bottom:496.950000px;}
.y99{bottom:498.480000px;}
.y44{bottom:503.700000px;}
.y74{bottom:507.030000px;}
.y17{bottom:514.590000px;}
.yb8{bottom:517.650000px;}
.yff{bottom:522.330000px;}
.y98{bottom:525.750000px;}
.y16{bottom:532.140000px;}
.yfe{bottom:539.880000px;}
.ye2{bottom:540.330000px;}
.y73{bottom:542.580000px;}
.y43{bottom:543.660000px;}
.y15{bottom:549.690000px;}
.y97{bottom:553.110000px;}
.y63{bottom:556.170000px;}
.ye1{bottom:557.880000px;}
.yb6{bottom:562.560000px;}
.yfd{bottom:566.430000px;}
.y14{bottom:567.330000px;}
.y62{bottom:573.720000px;}
.y72{bottom:574.800000px;}
.ye0{bottom:575.430000px;}
.y42{bottom:579.210000px;}
.y96{bottom:580.470000px;}
.yfc{bottom:584.070000px;}
.y13{bottom:584.880000px;}
.ydf{bottom:593.070000px;}
.y41{bottom:596.760000px;}
.y95{bottom:607.740000px;}
.y61{bottom:609.360000px;}
.yde{bottom:610.620000px;}
.y12{bottom:611.790000px;}
.y40{bottom:614.400000px;}
.yb4{bottom:625.110000px;}
.y60{bottom:626.910000px;}
.yfb{bottom:628.260000px;}
.y3f{bottom:631.950000px;}
.y94{bottom:635.100000px;}
.y5f{bottom:644.460000px;}
.ydd{bottom:646.260000px;}
.yfa{bottom:654.810000px;}
.y3e{bottom:658.590000px;}
.y11{bottom:660.030000px;}
.y5e{bottom:662.100000px;}
.y93{bottom:662.460000px;}
.ydc{bottom:663.810000px;}
.ydb{bottom:681.360000px;}
.yb3{bottom:687.660000px;}
.y92{bottom:689.820000px;}
.y3d{bottom:694.140000px;}
.y10{bottom:695.850000px;}
.y5d{bottom:697.650000px;}
.yda{bottom:699.000000px;}
.y3c{bottom:711.690000px;}
.yd9{bottom:716.550000px;}
.y91{bottom:717.090000px;}
.y3b{bottom:729.330000px;}
.y5c{bottom:729.870000px;}
.yf{bottom:731.850000px;}
.yb2{bottom:732.570000px;}
.yd8{bottom:734.190000px;}
.yf9{bottom:743.190000px;}
.y90{bottom:744.450000px;}
.y3a{bottom:755.880000px;}
.yf8{bottom:760.740000px;}
.ye{bottom:767.850000px;}
.yd7{bottom:769.740000px;}
.y8f{bottom:771.810000px;}
.yb1{bottom:777.480000px;}
.yf7{bottom:778.290000px;}
.yd6{bottom:787.290000px;}
.yd{bottom:789.630000px;}
.y39{bottom:791.790000px;}
.y8e{bottom:799.170000px;}
.yc{bottom:803.850000px;}
.yd5{bottom:804.930000px;}
.yd4{bottom:822.480000px;}
.yb{bottom:825.630000px;}
.yb0{bottom:826.170000px;}
.y8d{bottom:826.440000px;}
.ya{bottom:839.850000px;}
.y38{bottom:840.030000px;}
.yaf{bottom:843.720000px;}
.yf6{bottom:849.030000px;}
.y8c{bottom:853.800000px;}
.y37{bottom:857.670000px;}
.yd3{bottom:858.030000px;}
.y9{bottom:861.630000px;}
.yf5{bottom:866.670000px;}
.y36{bottom:875.220000px;}
.yd2{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.yae{bottom:879.360000px;}
.y8b{bottom:881.160000px;}
.y35{bottom:892.860000px;}
.yd1{bottom:893.220000px;}
.yad{bottom:896.910000px;}
.y7{bottom:897.630000px;}
.y8a{bottom:908.430000px;}
.yd0{bottom:910.860000px;}
.yac{bottom:914.460000px;}
.y34{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.yab{bottom:932.100000px;}
.y89{bottom:935.790000px;}
.y33{bottom:945.960000px;}
.ycf{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yaa{bottom:949.650000px;}
.yf4{bottom:954.960000px;}
.y88{bottom:963.150000px;}
.y32{bottom:963.600000px;}
.yce{bottom:963.960000px;}
.ya9{bottom:967.290000px;}
.yf3{bottom:972.600000px;}
.y31{bottom:981.150000px;}
.ycd{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yf2{bottom:990.150000px;}
.y87{bottom:990.510000px;}
.y30{bottom:998.790000px;}
.ycc{bottom:999.150000px;}
.ya8{bottom:1002.840000px;}
.y3{bottom:1012.320000px;}
.yf1{bottom:1016.820000px;}
.y86{bottom:1017.810000px;}
.y5b{bottom:1025.820000px;}
.y2f{bottom:1034.370000px;}
.ycb{bottom:1034.820000px;}
.y5a{bottom:1043.370000px;}
.y85{bottom:1045.170000px;}
.y2e{bottom:1051.920000px;}
.yca{bottom:1052.370000px;}
.y59{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.yc9{bottom:1069.920000px;}
.y84{bottom:1072.530000px;}
.y58{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.yc8{bottom:1087.560000px;}
.y57{bottom:1096.110000px;}
.y83{bottom:1099.890000px;}
.yc7{bottom:1105.110000px;}
.y56{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y82{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h12{height:26.550000px;}
.h13{height:26.580000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h10{height:44.100000px;}
.hd{height:44.190000px;}
.hf{height:44.220000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:61.740000px;}
.h16{height:61.793886px;}
.h15{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.hb{height:70.777617px;}
.h4{height:72.985430px;}
.hc{height:82.551445px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:75.060000px;}
.w4{width:80.460000px;}
.w9{width:87.570000px;}
.wd{width:96.840000px;}
.w3{width:126.120000px;}
.w6{width:150.930000px;}
.w8{width:161.100000px;}
.wb{width:172.560000px;}
.wa{width:212.340000px;}
.w5{width:396.030000px;}
.wc{width:484.860000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:73.889987px;}
.x13{left:111.239987px;}
.xd{left:177.420000px;}
.x6{left:179.939987px;}
.x8{left:195.600000px;}
.x2{left:211.079987px;}
.x4{left:236.189987px;}
.x11{left:242.040000px;}
.xe{left:253.290000px;}
.x9{left:276.780000px;}
.xf{left:415.110000px;}
.x10{left:503.490000px;}
.xa{left:673.530000px;}
.x12{left:727.620000px;}
.x5{left:788.639987px;}
.x3{left:800.339987px;}
.xb{left:810.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.ls18{letter-spacing:-0.395200pt;}
.ls1a{letter-spacing:-0.237867pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.026560pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.038400pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.045440pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.100800pt;}
.ls5{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.142933pt;}
.ls11{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:2.003200pt;}
.ls1d{letter-spacing:3.923200pt;}
.ls1f{letter-spacing:8.723200pt;}
.ls1e{letter-spacing:9.149867pt;}
.ls21{letter-spacing:42.423680pt;}
.ls20{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.899733pt;}
.wse{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-8.275200pt;}
.ws2{word-spacing:-8.236800pt;}
.wsc{word-spacing:-8.210240pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._9{margin-left:-3.099307pt;}
._8{margin-left:-2.164480pt;}
._0{margin-left:-0.986667pt;}
._4{width:1.244160pt;}
._2{width:2.758869pt;}
._1{width:3.728000pt;}
._3{width:5.030464pt;}
._6{width:6.693055pt;}
._7{width:7.683591pt;}
._b{width:8.958783pt;}
._5{width:10.130704pt;}
._10{width:12.985920pt;}
._1a{width:13.984320pt;}
._19{width:14.895680pt;}
._a{width:16.459734pt;}
._13{width:17.873279pt;}
._11{width:18.810880pt;}
._e{width:20.040000pt;}
._14{width:22.419733pt;}
._c{width:23.332800pt;}
._d{width:24.257601pt;}
._1c{width:25.404797pt;}
._1b{width:29.979840pt;}
._12{width:63.753920pt;}
._f{width:69.311787pt;}
._18{width:76.579520pt;}
._16{width:110.048320pt;}
._17{width:111.015147pt;}
._15{width:114.628800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.960000pt;}
.y66{bottom:7.040000pt;}
.y6f{bottom:22.560000pt;}
.y65{bottom:22.640000pt;}
.y68{bottom:22.666667pt;}
.yb5{bottom:38.240000pt;}
.yb7{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y55{bottom:100.346667pt;}
.y71{bottom:102.666667pt;}
.ya7{bottom:102.826667pt;}
.y54{bottom:115.946667pt;}
.y81{bottom:118.426667pt;}
.ya6{bottom:127.146667pt;}
.yf0{bottom:137.146667pt;}
.y27{bottom:138.106667pt;}
.y53{bottom:139.546667pt;}
.y80{bottom:142.746667pt;}
.yc6{bottom:143.466667pt;}
.ya5{bottom:151.466667pt;}
.yef{bottom:152.746667pt;}
.y26{bottom:153.786667pt;}
.y70{bottom:155.946667pt;}
.yc5{bottom:159.066667pt;}
.y7f{bottom:167.066667pt;}
.yee{bottom:168.426667pt;}
.y25{bottom:169.386667pt;}
.y52{bottom:171.466667pt;}
.yc4{bottom:174.746667pt;}
.ya4{bottom:175.786667pt;}
.yc3{bottom:190.346667pt;}
.y7e{bottom:191.306667pt;}
.yed{bottom:192.346667pt;}
.y6e{bottom:195.866667pt;}
.ya3{bottom:200.026667pt;}
.y24{bottom:200.986667pt;}
.y51{bottom:214.426667pt;}
.y7d{bottom:215.626667pt;}
.y23{bottom:216.666667pt;}
.yc2{bottom:221.946667pt;}
.ya2{bottom:224.346667pt;}
.y50{bottom:230.026667pt;}
.y22{bottom:232.266667pt;}
.yec{bottom:235.226667pt;}
.y6d{bottom:235.786667pt;}
.yc1{bottom:237.626667pt;}
.y7c{bottom:239.946667pt;}
.y4f{bottom:245.706667pt;}
.y21{bottom:247.866667pt;}
.ya1{bottom:248.666667pt;}
.yc0{bottom:253.226667pt;}
.yeb{bottom:259.146667pt;}
.y4e{bottom:261.306667pt;}
.y7b{bottom:264.266667pt;}
.ybf{bottom:268.906667pt;}
.y20{bottom:271.786667pt;}
.ya0{bottom:272.906667pt;}
.y6c{bottom:275.706667pt;}
.y4d{bottom:276.906667pt;}
.ybe{bottom:284.506667pt;}
.y7a{bottom:288.506667pt;}
.y107{bottom:291.546667pt;}
.yea{bottom:292.346667pt;}
.y4c{bottom:292.586667pt;}
.y9f{bottom:297.226667pt;}
.ybd{bottom:300.106667pt;}
.y106{bottom:307.146667pt;}
.y79{bottom:312.826667pt;}
.y1f{bottom:314.986667pt;}
.y6a{bottom:315.626667pt;}
.ybc{bottom:315.786667pt;}
.y9e{bottom:321.546667pt;}
.y4b{bottom:324.186667pt;}
.y105{bottom:330.826667pt;}
.ye9{bottom:335.226667pt;}
.ybb{bottom:339.706667pt;}
.y4a{bottom:339.786667pt;}
.y9d{bottom:345.866667pt;}
.y104{bottom:346.426667pt;}
.y1e{bottom:347.946667pt;}
.ye8{bottom:350.906667pt;}
.y49{bottom:355.466667pt;}
.y69{bottom:355.546667pt;}
.y78{bottom:356.106667pt;}
.y1d{bottom:363.546667pt;}
.ye7{bottom:366.506667pt;}
.y9c{bottom:370.106667pt;}
.y48{bottom:371.066667pt;}
.y1c{bottom:379.226667pt;}
.yba{bottom:380.266667pt;}
.ye6{bottom:382.106667pt;}
.y103{bottom:385.706667pt;}
.y47{bottom:386.746667pt;}
.y77{bottom:387.786667pt;}
.y9b{bottom:394.426667pt;}
.y1b{bottom:394.826667pt;}
.y67{bottom:395.466667pt;}
.ye5{bottom:397.786667pt;}
.y102{bottom:409.306667pt;}
.y46{bottom:410.346667pt;}
.y1a{bottom:410.426667pt;}
.ye4{bottom:413.386667pt;}
.y9a{bottom:418.773333pt;}
.y76{bottom:419.413333pt;}
.yb9{bottom:420.213333pt;}
.y101{bottom:425.013333pt;}
.y19{bottom:426.133333pt;}
.y75{bottom:435.013333pt;}
.y64{bottom:435.413333pt;}
.ye3{bottom:437.333333pt;}
.y100{bottom:440.613333pt;}
.y45{bottom:441.013333pt;}
.y18{bottom:441.733333pt;}
.y99{bottom:443.093333pt;}
.y44{bottom:447.733333pt;}
.y74{bottom:450.693333pt;}
.y17{bottom:457.413333pt;}
.yb8{bottom:460.133333pt;}
.yff{bottom:464.293333pt;}
.y98{bottom:467.333333pt;}
.y16{bottom:473.013333pt;}
.yfe{bottom:479.893333pt;}
.ye2{bottom:480.293333pt;}
.y73{bottom:482.293333pt;}
.y43{bottom:483.253333pt;}
.y15{bottom:488.613333pt;}
.y97{bottom:491.653333pt;}
.y63{bottom:494.373333pt;}
.ye1{bottom:495.893333pt;}
.yb6{bottom:500.053333pt;}
.yfd{bottom:503.493333pt;}
.y14{bottom:504.293333pt;}
.y62{bottom:509.973333pt;}
.y72{bottom:510.933333pt;}
.ye0{bottom:511.493333pt;}
.y42{bottom:514.853333pt;}
.y96{bottom:515.973333pt;}
.yfc{bottom:519.173333pt;}
.y13{bottom:519.893333pt;}
.ydf{bottom:527.173333pt;}
.y41{bottom:530.453333pt;}
.y95{bottom:540.213333pt;}
.y61{bottom:541.653333pt;}
.yde{bottom:542.773333pt;}
.y12{bottom:543.813333pt;}
.y40{bottom:546.133333pt;}
.yb4{bottom:555.653333pt;}
.y60{bottom:557.253333pt;}
.yfb{bottom:558.453333pt;}
.y3f{bottom:561.733333pt;}
.y94{bottom:564.533333pt;}
.y5f{bottom:572.853333pt;}
.ydd{bottom:574.453333pt;}
.yfa{bottom:582.053333pt;}
.y3e{bottom:585.413333pt;}
.y11{bottom:586.693333pt;}
.y5e{bottom:588.533333pt;}
.y93{bottom:588.853333pt;}
.ydc{bottom:590.053333pt;}
.ydb{bottom:605.653333pt;}
.yb3{bottom:611.253333pt;}
.y92{bottom:613.173333pt;}
.y3d{bottom:617.013333pt;}
.y10{bottom:618.533333pt;}
.y5d{bottom:620.133333pt;}
.yda{bottom:621.333333pt;}
.y3c{bottom:632.613333pt;}
.yd9{bottom:636.933333pt;}
.y91{bottom:637.413333pt;}
.y3b{bottom:648.293333pt;}
.y5c{bottom:648.773333pt;}
.yf{bottom:650.533333pt;}
.yb2{bottom:651.173333pt;}
.yd8{bottom:652.613333pt;}
.yf9{bottom:660.613333pt;}
.y90{bottom:661.733333pt;}
.y3a{bottom:671.893333pt;}
.yf8{bottom:676.213333pt;}
.ye{bottom:682.533333pt;}
.yd7{bottom:684.213333pt;}
.y8f{bottom:686.053333pt;}
.yb1{bottom:691.093333pt;}
.yf7{bottom:691.813333pt;}
.yd6{bottom:699.813333pt;}
.yd{bottom:701.893333pt;}
.y39{bottom:703.813333pt;}
.y8e{bottom:710.373333pt;}
.yc{bottom:714.533333pt;}
.yd5{bottom:715.493333pt;}
.yd4{bottom:731.093333pt;}
.yb{bottom:733.893333pt;}
.yb0{bottom:734.373333pt;}
.y8d{bottom:734.613333pt;}
.ya{bottom:746.533333pt;}
.y38{bottom:746.693333pt;}
.yaf{bottom:749.973333pt;}
.yf6{bottom:754.693333pt;}
.y8c{bottom:758.933333pt;}
.y37{bottom:762.373333pt;}
.yd3{bottom:762.693333pt;}
.y9{bottom:765.893333pt;}
.yf5{bottom:770.373333pt;}
.y36{bottom:777.973333pt;}
.yd2{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.yae{bottom:781.653333pt;}
.y8b{bottom:783.253333pt;}
.y35{bottom:793.653333pt;}
.yd1{bottom:793.973333pt;}
.yad{bottom:797.253333pt;}
.y7{bottom:797.893333pt;}
.y8a{bottom:807.493333pt;}
.yd0{bottom:809.653333pt;}
.yac{bottom:812.853333pt;}
.y34{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.yab{bottom:828.533333pt;}
.y89{bottom:831.813333pt;}
.y33{bottom:840.853333pt;}
.ycf{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yaa{bottom:844.133333pt;}
.yf4{bottom:848.853333pt;}
.y88{bottom:856.133333pt;}
.y32{bottom:856.533333pt;}
.yce{bottom:856.853333pt;}
.ya9{bottom:859.813333pt;}
.yf3{bottom:864.533333pt;}
.y31{bottom:872.133333pt;}
.ycd{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yf2{bottom:880.133333pt;}
.y87{bottom:880.453333pt;}
.y30{bottom:887.813333pt;}
.ycc{bottom:888.133333pt;}
.ya8{bottom:891.413333pt;}
.y3{bottom:899.840000pt;}
.yf1{bottom:903.840000pt;}
.y86{bottom:904.720000pt;}
.y5b{bottom:911.840000pt;}
.y2f{bottom:919.440000pt;}
.ycb{bottom:919.840000pt;}
.y5a{bottom:927.440000pt;}
.y85{bottom:929.040000pt;}
.y2e{bottom:935.040000pt;}
.yca{bottom:935.440000pt;}
.y59{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.yc9{bottom:951.040000pt;}
.y84{bottom:953.360000pt;}
.y58{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.yc8{bottom:966.720000pt;}
.y57{bottom:974.320000pt;}
.y83{bottom:977.680000pt;}
.yc7{bottom:982.320000pt;}
.y56{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y82{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h12{height:23.600000pt;}
.h13{height:23.626667pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h10{height:39.200000pt;}
.hd{height:39.280000pt;}
.hf{height:39.306667pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:54.880000pt;}
.h16{height:54.927899pt;}
.h15{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.hb{height:62.913437pt;}
.h4{height:64.875937pt;}
.hc{height:73.379063pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:66.720000pt;}
.w4{width:71.520000pt;}
.w9{width:77.840000pt;}
.wd{width:86.080000pt;}
.w3{width:112.106667pt;}
.w6{width:134.160000pt;}
.w8{width:143.200000pt;}
.wb{width:153.386667pt;}
.wa{width:188.746667pt;}
.w5{width:352.026667pt;}
.wc{width:430.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:65.679988pt;}
.x13{left:98.879988pt;}
.xd{left:157.706667pt;}
.x6{left:159.946655pt;}
.x8{left:173.866667pt;}
.x2{left:187.626655pt;}
.x4{left:209.946655pt;}
.x11{left:215.146667pt;}
.xe{left:225.146667pt;}
.x9{left:246.026667pt;}
.xf{left:368.986667pt;}
.x10{left:447.546667pt;}
.xa{left:598.693333pt;}
.x12{left:646.773333pt;}
.x5{left:701.013322pt;}
.x3{left:711.413322pt;}
.xb{left:720.053322pt;}
}




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