
    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_b8c327195112a0643c21cae7.woff')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_14376ff444803aa946eedb95.woff')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_8ee7d8ce371f1f365f1eae6f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_22fd6e37327c7fdafc7ff337.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_abe80d4704c9679b023fed5d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_79a7b6ed38da8871eb22cf18.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_f0e4d65baa19727ea775dd98.woff')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_fa3775c822d77c1991eb45f5.woff')format("woff");}.ff8{font-family:ff8;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;}
.ls12{letter-spacing:-0.266400px;}
.lsb{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.060600px;}
.ls8{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:13.080000px;}
.ls15{letter-spacing:47.726640px;}
.ls13{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;}
}
.ws5{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.246560px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.165800px;}
.wsb{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:-8.625600px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._10{margin-left:-3.791640px;}
._a{margin-left:-2.464800px;}
._1{margin-left:-1.047840px;}
._0{width:1.006812px;}
._9{width:2.125444px;}
._b{width:3.671997px;}
._7{width:4.945317px;}
._4{width:6.192600px;}
._5{width:7.694398px;}
._e{width:9.486852px;}
._8{width:10.614959px;}
._6{width:11.749441px;}
._2{width:14.248200px;}
._f{width:15.811560px;}
._46{width:17.123640px;}
._c{width:18.156000px;}
._d{width:19.292403px;}
._3{width:21.042000px;}
._48{width:22.142520px;}
._18{width:23.627160px;}
._1e{width:26.452800px;}
._35{width:27.595080px;}
._2a{width:29.158200px;}
._47{width:30.166680px;}
._22{width:31.863600px;}
._3e{width:34.749360px;}
._2c{width:36.192240px;}
._45{width:39.705000px;}
._26{width:41.001840px;}
._13{width:42.564960px;}
._21{width:44.669160px;}
._23{width:48.576960px;}
._37{width:50.681160px;}
._36{width:55.671120px;}
._33{width:59.338440px;}
._16{width:63.366480px;}
._31{width:66.312360px;}
._17{width:67.514760px;}
._42{width:68.717160px;}
._2d{width:71.843400px;}
._19{width:76.532760px;}
._24{width:79.659000px;}
._30{width:80.681040px;}
._41{width:81.883440px;}
._1b{width:83.687040px;}
._34{width:85.610880px;}
._28{width:87.654960px;}
._3c{width:89.157960px;}
._25{width:91.622880px;}
._39{width:99.919440px;}
._11{width:102.143880px;}
._2f{width:104.964480px;}
._15{width:108.757080px;}
._1a{width:117.414360px;}
._40{width:120.179880px;}
._38{width:124.268040px;}
._1f{width:125.951400px;}
._29{width:141.342120px;}
._32{width:149.518440px;}
._2b{width:161.843040px;}
._27{width:173.025360px;}
._44{width:181.802880px;}
._3b{width:182.945160px;}
._1d{width:184.568400px;}
._12{width:196.772760px;}
._3d{width:200.199600px;}
._3f{width:202.604400px;}
._3a{width:205.679520px;}
._1c{width:212.824800px;}
._2e{width:239.337720px;}
._20{width:243.425880px;}
._43{width:261.822600px;}
._14{width:298.375560px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y85{bottom:7.830000px;}
.y6c{bottom:7.920000px;}
.y75{bottom:16.470000px;}
.y81{bottom:24.750000px;}
.y84{bottom:25.380000px;}
.ya0{bottom:25.410000px;}
.y6b{bottom:25.470000px;}
.y74{bottom:38.520000px;}
.y77{bottom:43.020000px;}
.y9f{bottom:43.050000px;}
.y7f{bottom:43.110000px;}
.y73{bottom:56.160000px;}
.y83{bottom:60.570000px;}
.y9e{bottom:60.600000px;}
.y76{bottom:60.660000px;}
.y7d{bottom:69.210000px;}
.y98{bottom:69.240000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y72{bottom:78.210000px;}
.y9d{bottom:78.240000px;}
.y97{bottom:86.790000px;}
.y7c{bottom:86.850000px;}
.y9c{bottom:95.790000px;}
.y71{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y96{bottom:104.340000px;}
.y7b{bottom:112.680000px;}
.y9b{bottom:113.340000px;}
.y7e{bottom:113.400000px;}
.y70{bottom:113.430000px;}
.y80{bottom:113.520000px;}
.yaf{bottom:114.510000px;}
.y102{bottom:116.580000px;}
.y8c{bottom:121.950000px;}
.y95{bottom:121.980000px;}
.y50{bottom:129.180000px;}
.y29{bottom:129.630000px;}
.y8f{bottom:130.950000px;}
.y6f{bottom:130.980000px;}
.y7a{bottom:131.040000px;}
.yae{bottom:132.150000px;}
.y101{bottom:134.130000px;}
.y8b{bottom:139.590000px;}
.y94{bottom:144.030000px;}
.y4f{bottom:146.730000px;}
.y28{bottom:147.270000px;}
.y9a{bottom:148.530000px;}
.y79{bottom:148.590000px;}
.y6e{bottom:148.620000px;}
.yad{bottom:149.700000px;}
.y100{bottom:151.680000px;}
.y8a{bottom:157.140000px;}
.yd2{bottom:158.700000px;}
.y93{bottom:161.670000px;}
.y4e{bottom:164.370000px;}
.y27{bottom:164.820000px;}
.y8e{bottom:166.140000px;}
.y99{bottom:166.170000px;}
.yac{bottom:167.250000px;}
.yd1{bottom:176.250000px;}
.yff{bottom:178.320000px;}
.y4d{bottom:181.920000px;}
.y26{bottom:182.370000px;}
.y89{bottom:183.060000px;}
.y92{bottom:183.720000px;}
.y8d{bottom:183.780000px;}
.yab{bottom:184.890000px;}
.y78{bottom:193.620000px;}
.yd0{bottom:193.890000px;}
.yfe{bottom:195.870000px;}
.y4c{bottom:199.470000px;}
.y25{bottom:200.010000px;}
.y88{bottom:201.360000px;}
.yaa{bottom:202.440000px;}
.yfd{bottom:213.510000px;}
.y4b{bottom:217.110000px;}
.y24{bottom:217.560000px;}
.y87{bottom:218.910000px;}
.ya9{bottom:220.080000px;}
.ycf{bottom:220.440000px;}
.y4a{bottom:234.660000px;}
.y23{bottom:235.200000px;}
.ya8{bottom:237.630000px;}
.yce{bottom:238.080000px;}
.yfc{bottom:240.060000px;}
.y49{bottom:252.300000px;}
.y22{bottom:252.750000px;}
.yfb{bottom:257.610000px;}
.ya7{bottom:264.540000px;}
.ycd{bottom:264.630000px;}
.y21{bottom:270.300000px;}
.yfa{bottom:275.250000px;}
.y48{bottom:278.850000px;}
.ycc{bottom:282.180000px;}
.y20{bottom:287.940000px;}
.yf9{bottom:301.800000px;}
.ycb{bottom:308.820000px;}
.ya6{bottom:312.780000px;}
.y47{bottom:314.400000px;}
.yf8{bottom:319.440000px;}
.y1f{bottom:323.490000px;}
.yca{bottom:326.370000px;}
.ya5{bottom:330.420000px;}
.yf7{bottom:336.990000px;}
.y1e{bottom:341.130000px;}
.y46{bottom:346.620000px;}
.yc9{bottom:353.010000px;}
.y1d{bottom:358.680000px;}
.y61{bottom:360.030000px;}
.y6d{bottom:361.650000px;}
.yf6{bottom:363.540000px;}
.ya4{bottom:365.970000px;}
.yc8{bottom:370.560000px;}
.y1c{bottom:376.230000px;}
.y60{bottom:377.580000px;}
.yf5{bottom:381.180000px;}
.ya3{bottom:383.610000px;}
.y1b{bottom:393.870000px;}
.y5f{bottom:395.220000px;}
.yc7{bottom:397.110000px;}
.yf4{bottom:398.730000px;}
.ya2{bottom:401.160000px;}
.y1a{bottom:411.420000px;}
.y5e{bottom:412.770000px;}
.yc6{bottom:414.750000px;}
.ya1{bottom:418.710000px;}
.yf3{bottom:425.370000px;}
.y19{bottom:429.060000px;}
.y5d{bottom:430.410000px;}
.yc5{bottom:441.300000px;}
.yf2{bottom:442.920000px;}
.y18{bottom:446.610000px;}
.y5c{bottom:447.960000px;}
.y91{bottom:451.740000px;}
.yc4{bottom:458.940000px;}
.yf1{bottom:460.470000px;}
.y17{bottom:464.160000px;}
.y5b{bottom:465.510000px;}
.yc3{bottom:476.520000px;}
.y16{bottom:481.830000px;}
.y5a{bottom:483.180000px;}
.yf0{bottom:487.140000px;}
.y59{bottom:500.730000px;}
.yc2{bottom:503.070000px;}
.yef{bottom:504.690000px;}
.y15{bottom:508.740000px;}
.y58{bottom:518.280000px;}
.yc1{bottom:520.710000px;}
.yee{bottom:522.330000px;}
.y6a{bottom:529.710000px;}
.yc0{bottom:547.260000px;}
.yed{bottom:548.880000px;}
.y57{bottom:553.920000px;}
.y14{bottom:557.340000px;}
.ybf{bottom:564.900000px;}
.yec{bottom:566.430000px;}
.y56{bottom:586.140000px;}
.ybe{bottom:591.450000px;}
.yeb{bottom:593.070000px;}
.y13{bottom:594.330000px;}
.y69{bottom:596.040000px;}
.ybd{bottom:609.000000px;}
.yea{bottom:610.620000px;}
.y12{bottom:611.880000px;}
.y11{bottom:629.520000px;}
.y68{bottom:631.590000px;}
.ybc{bottom:635.640000px;}
.ye9{bottom:637.260000px;}
.y45{bottom:638.070000px;}
.y10{bottom:647.070000px;}
.y67{bottom:649.140000px;}
.ybb{bottom:653.190000px;}
.ye8{bottom:654.810000px;}
.y90{bottom:654.900000px;}
.y44{bottom:655.620000px;}
.yf{bottom:664.710000px;}
.y66{bottom:666.780000px;}
.yba{bottom:670.830000px;}
.ye7{bottom:672.360000px;}
.y43{bottom:673.260000px;}
.ye{bottom:682.260000px;}
.y65{bottom:684.330000px;}
.yb9{bottom:688.380000px;}
.y42{bottom:690.810000px;}
.ye6{bottom:699.000000px;}
.yd{bottom:699.810000px;}
.y64{bottom:701.970000px;}
.y41{bottom:708.360000px;}
.yb8{bottom:714.930000px;}
.ye5{bottom:716.550000px;}
.yc{bottom:717.450000px;}
.y55{bottom:724.470000px;}
.yb7{bottom:732.570000px;}
.ye4{bottom:734.190000px;}
.yb{bottom:735.000000px;}
.y63{bottom:737.520000px;}
.yb6{bottom:750.120000px;}
.y54{bottom:756.690000px;}
.ye3{bottom:760.740000px;}
.ya{bottom:761.910000px;}
.y62{bottom:769.740000px;}
.y40{bottom:770.550000px;}
.yb5{bottom:776.670000px;}
.ye2{bottom:778.290000px;}
.y3f{bottom:788.190000px;}
.yb4{bottom:794.310000px;}
.ye1{bottom:795.930000px;}
.y3e{bottom:805.740000px;}
.y9{bottom:810.240000px;}
.yb3{bottom:821.220000px;}
.ye0{bottom:822.480000px;}
.y86{bottom:822.930000px;}
.y3d{bottom:823.290000px;}
.ydf{bottom:840.030000px;}
.y3c{bottom:840.930000px;}
.y8{bottom:845.790000px;}
.y3b{bottom:858.480000px;}
.yde{bottom:866.670000px;}
.yb2{bottom:869.460000px;}
.y3a{bottom:876.030000px;}
.y7{bottom:881.610000px;}
.ydd{bottom:884.220000px;}
.y39{bottom:893.670000px;}
.yb1{bottom:896.370000px;}
.ydc{bottom:901.860000px;}
.y38{bottom:911.220000px;}
.y6{bottom:921.390000px;}
.ydb{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.yb0{bottom:933.720000px;}
.y5{bottom:939.390000px;}
.yda{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y53{bottom:946.860000px;}
.y35{bottom:963.960000px;}
.y52{bottom:964.410000px;}
.y4{bottom:971.700000px;}
.yd9{bottom:972.600000px;}
.y105{bottom:981.600000px;}
.y51{bottom:981.960000px;}
.yd8{bottom:990.150000px;}
.y104{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.y3{bottom:1009.980000px;}
.yd7{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.yd6{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.yd5{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y103{bottom:1060.920000px;}
.y82{bottom:1061.370000px;}
.y30{bottom:1069.920000px;}
.yd4{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.yd3{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.hd{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.ha{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.h13{height:61.793886px;}
.h9{height:62.585859px;}
.h12{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:79.380000px;}
.hf{height:92.430000px;}
.hc{height:167.310000px;}
.hb{height:167.340000px;}
.h11{height:202.440000px;}
.h10{height:237.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:96.930000px;}
.w6{width:99.750000px;}
.w4{width:110.970000px;}
.w8{width:135.990000px;}
.w7{width:139.140000px;}
.w3{width:169.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x12{left:111.239987px;}
.x2{left:192.719987px;}
.xd{left:238.800000px;}
.xb{left:291.269987px;}
.x7{left:301.619987px;}
.x9{left:305.129987px;}
.x5{left:312.779987px;}
.xe{left:350.490000px;}
.xf{left:448.140000px;}
.x10{left:548.610000px;}
.x6{left:550.139987px;}
.x8{left:559.139987px;}
.x11{left:688.470000px;}
.x4{left:745.889987px;}
.xa{left:787.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.236800pt;}
.lsb{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.053867pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:11.626667pt;}
.ls15{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.774720pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.702933pt;}
.wsb{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:-7.667200pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._10{margin-left:-3.370347pt;}
._a{margin-left:-2.190933pt;}
._1{margin-left:-0.931414pt;}
._0{width:0.894944pt;}
._9{width:1.889283pt;}
._b{width:3.263997pt;}
._7{width:4.395837pt;}
._4{width:5.504534pt;}
._5{width:6.839465pt;}
._e{width:8.432757pt;}
._8{width:9.435519pt;}
._6{width:10.443947pt;}
._2{width:12.665066pt;}
._f{width:14.054720pt;}
._46{width:15.221014pt;}
._c{width:16.138666pt;}
._d{width:17.148803pt;}
._3{width:18.704000pt;}
._48{width:19.682240pt;}
._18{width:21.001920pt;}
._1e{width:23.513600pt;}
._35{width:24.528960pt;}
._2a{width:25.918400pt;}
._47{width:26.814827pt;}
._22{width:28.323200pt;}
._3e{width:30.888320pt;}
._2c{width:32.170880pt;}
._45{width:35.293334pt;}
._26{width:36.446080pt;}
._13{width:37.835520pt;}
._21{width:39.705920pt;}
._23{width:43.179520pt;}
._37{width:45.049920pt;}
._36{width:49.485440pt;}
._33{width:52.745280pt;}
._16{width:56.325760pt;}
._31{width:58.944320pt;}
._17{width:60.013120pt;}
._42{width:61.081920pt;}
._2d{width:63.860800pt;}
._19{width:68.029120pt;}
._24{width:70.808000pt;}
._30{width:71.716480pt;}
._41{width:72.785280pt;}
._1b{width:74.388480pt;}
._34{width:76.098560pt;}
._28{width:77.915520pt;}
._3c{width:79.251520pt;}
._25{width:81.442560pt;}
._39{width:88.817280pt;}
._11{width:90.794560pt;}
._2f{width:93.301760pt;}
._15{width:96.672960pt;}
._1a{width:104.368320pt;}
._40{width:106.826560pt;}
._38{width:110.460480pt;}
._1f{width:111.956800pt;}
._29{width:125.637440pt;}
._32{width:132.905280pt;}
._2b{width:143.860480pt;}
._27{width:153.800320pt;}
._44{width:161.602560pt;}
._3b{width:162.617920pt;}
._1d{width:164.060800pt;}
._12{width:174.909120pt;}
._3d{width:177.955200pt;}
._3f{width:180.092800pt;}
._3a{width:182.826240pt;}
._1c{width:189.177600pt;}
._2e{width:212.744640pt;}
._20{width:216.378560pt;}
._43{width:232.731200pt;}
._14{width:265.222720pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:6.960000pt;}
.y6c{bottom:7.040000pt;}
.y75{bottom:14.640000pt;}
.y81{bottom:22.000000pt;}
.y84{bottom:22.560000pt;}
.ya0{bottom:22.586667pt;}
.y6b{bottom:22.640000pt;}
.y74{bottom:34.240000pt;}
.y77{bottom:38.240000pt;}
.y9f{bottom:38.266667pt;}
.y7f{bottom:38.320000pt;}
.y73{bottom:49.920000pt;}
.y83{bottom:53.840000pt;}
.y9e{bottom:53.866667pt;}
.y76{bottom:53.920000pt;}
.y7d{bottom:61.520000pt;}
.y98{bottom:61.546667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y72{bottom:69.520000pt;}
.y9d{bottom:69.546667pt;}
.y97{bottom:77.146667pt;}
.y7c{bottom:77.200000pt;}
.y9c{bottom:85.146667pt;}
.y71{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y96{bottom:92.746667pt;}
.y7b{bottom:100.160000pt;}
.y9b{bottom:100.746667pt;}
.y7e{bottom:100.800000pt;}
.y70{bottom:100.826667pt;}
.y80{bottom:100.906667pt;}
.yaf{bottom:101.786667pt;}
.y102{bottom:103.626667pt;}
.y8c{bottom:108.400000pt;}
.y95{bottom:108.426667pt;}
.y50{bottom:114.826667pt;}
.y29{bottom:115.226667pt;}
.y8f{bottom:116.400000pt;}
.y6f{bottom:116.426667pt;}
.y7a{bottom:116.480000pt;}
.yae{bottom:117.466667pt;}
.y101{bottom:119.226667pt;}
.y8b{bottom:124.080000pt;}
.y94{bottom:128.026667pt;}
.y4f{bottom:130.426667pt;}
.y28{bottom:130.906667pt;}
.y9a{bottom:132.026667pt;}
.y79{bottom:132.080000pt;}
.y6e{bottom:132.106667pt;}
.yad{bottom:133.066667pt;}
.y100{bottom:134.826667pt;}
.y8a{bottom:139.680000pt;}
.yd2{bottom:141.066667pt;}
.y93{bottom:143.706667pt;}
.y4e{bottom:146.106667pt;}
.y27{bottom:146.506667pt;}
.y8e{bottom:147.680000pt;}
.y99{bottom:147.706667pt;}
.yac{bottom:148.666667pt;}
.yd1{bottom:156.666667pt;}
.yff{bottom:158.506667pt;}
.y4d{bottom:161.706667pt;}
.y26{bottom:162.106667pt;}
.y89{bottom:162.720000pt;}
.y92{bottom:163.306667pt;}
.y8d{bottom:163.360000pt;}
.yab{bottom:164.346667pt;}
.y78{bottom:172.106667pt;}
.yd0{bottom:172.346667pt;}
.yfe{bottom:174.106667pt;}
.y4c{bottom:177.306667pt;}
.y25{bottom:177.786667pt;}
.y88{bottom:178.986667pt;}
.yaa{bottom:179.946667pt;}
.yfd{bottom:189.786667pt;}
.y4b{bottom:192.986667pt;}
.y24{bottom:193.386667pt;}
.y87{bottom:194.586667pt;}
.ya9{bottom:195.626667pt;}
.ycf{bottom:195.946667pt;}
.y4a{bottom:208.586667pt;}
.y23{bottom:209.066667pt;}
.ya8{bottom:211.226667pt;}
.yce{bottom:211.626667pt;}
.yfc{bottom:213.386667pt;}
.y49{bottom:224.266667pt;}
.y22{bottom:224.666667pt;}
.yfb{bottom:228.986667pt;}
.ya7{bottom:235.146667pt;}
.ycd{bottom:235.226667pt;}
.y21{bottom:240.266667pt;}
.yfa{bottom:244.666667pt;}
.y48{bottom:247.866667pt;}
.ycc{bottom:250.826667pt;}
.y20{bottom:255.946667pt;}
.yf9{bottom:268.266667pt;}
.ycb{bottom:274.506667pt;}
.ya6{bottom:278.026667pt;}
.y47{bottom:279.466667pt;}
.yf8{bottom:283.946667pt;}
.y1f{bottom:287.546667pt;}
.yca{bottom:290.106667pt;}
.ya5{bottom:293.706667pt;}
.yf7{bottom:299.546667pt;}
.y1e{bottom:303.226667pt;}
.y46{bottom:308.106667pt;}
.yc9{bottom:313.786667pt;}
.y1d{bottom:318.826667pt;}
.y61{bottom:320.026667pt;}
.y6d{bottom:321.466667pt;}
.yf6{bottom:323.146667pt;}
.ya4{bottom:325.306667pt;}
.yc8{bottom:329.386667pt;}
.y1c{bottom:334.426667pt;}
.y60{bottom:335.626667pt;}
.yf5{bottom:338.826667pt;}
.ya3{bottom:340.986667pt;}
.y1b{bottom:350.106667pt;}
.y5f{bottom:351.306667pt;}
.yc7{bottom:352.986667pt;}
.yf4{bottom:354.426667pt;}
.ya2{bottom:356.586667pt;}
.y1a{bottom:365.706667pt;}
.y5e{bottom:366.906667pt;}
.yc6{bottom:368.666667pt;}
.ya1{bottom:372.186667pt;}
.yf3{bottom:378.106667pt;}
.y19{bottom:381.386667pt;}
.y5d{bottom:382.586667pt;}
.yc5{bottom:392.266667pt;}
.yf2{bottom:393.706667pt;}
.y18{bottom:396.986667pt;}
.y5c{bottom:398.186667pt;}
.y91{bottom:401.546667pt;}
.yc4{bottom:407.946667pt;}
.yf1{bottom:409.306667pt;}
.y17{bottom:412.586667pt;}
.y5b{bottom:413.786667pt;}
.yc3{bottom:423.573333pt;}
.y16{bottom:428.293333pt;}
.y5a{bottom:429.493333pt;}
.yf0{bottom:433.013333pt;}
.y59{bottom:445.093333pt;}
.yc2{bottom:447.173333pt;}
.yef{bottom:448.613333pt;}
.y15{bottom:452.213333pt;}
.y58{bottom:460.693333pt;}
.yc1{bottom:462.853333pt;}
.yee{bottom:464.293333pt;}
.y6a{bottom:470.853333pt;}
.yc0{bottom:486.453333pt;}
.yed{bottom:487.893333pt;}
.y57{bottom:492.373333pt;}
.y14{bottom:495.413333pt;}
.ybf{bottom:502.133333pt;}
.yec{bottom:503.493333pt;}
.y56{bottom:521.013333pt;}
.ybe{bottom:525.733333pt;}
.yeb{bottom:527.173333pt;}
.y13{bottom:528.293333pt;}
.y69{bottom:529.813333pt;}
.ybd{bottom:541.333333pt;}
.yea{bottom:542.773333pt;}
.y12{bottom:543.893333pt;}
.y11{bottom:559.573333pt;}
.y68{bottom:561.413333pt;}
.ybc{bottom:565.013333pt;}
.ye9{bottom:566.453333pt;}
.y45{bottom:567.173333pt;}
.y10{bottom:575.173333pt;}
.y67{bottom:577.013333pt;}
.ybb{bottom:580.613333pt;}
.ye8{bottom:582.053333pt;}
.y90{bottom:582.133333pt;}
.y44{bottom:582.773333pt;}
.yf{bottom:590.853333pt;}
.y66{bottom:592.693333pt;}
.yba{bottom:596.293333pt;}
.ye7{bottom:597.653333pt;}
.y43{bottom:598.453333pt;}
.ye{bottom:606.453333pt;}
.y65{bottom:608.293333pt;}
.yb9{bottom:611.893333pt;}
.y42{bottom:614.053333pt;}
.ye6{bottom:621.333333pt;}
.yd{bottom:622.053333pt;}
.y64{bottom:623.973333pt;}
.y41{bottom:629.653333pt;}
.yb8{bottom:635.493333pt;}
.ye5{bottom:636.933333pt;}
.yc{bottom:637.733333pt;}
.y55{bottom:643.973333pt;}
.yb7{bottom:651.173333pt;}
.ye4{bottom:652.613333pt;}
.yb{bottom:653.333333pt;}
.y63{bottom:655.573333pt;}
.yb6{bottom:666.773333pt;}
.y54{bottom:672.613333pt;}
.ye3{bottom:676.213333pt;}
.ya{bottom:677.253333pt;}
.y62{bottom:684.213333pt;}
.y40{bottom:684.933333pt;}
.yb5{bottom:690.373333pt;}
.ye2{bottom:691.813333pt;}
.y3f{bottom:700.613333pt;}
.yb4{bottom:706.053333pt;}
.ye1{bottom:707.493333pt;}
.y3e{bottom:716.213333pt;}
.y9{bottom:720.213333pt;}
.yb3{bottom:729.973333pt;}
.ye0{bottom:731.093333pt;}
.y86{bottom:731.493333pt;}
.y3d{bottom:731.813333pt;}
.ydf{bottom:746.693333pt;}
.y3c{bottom:747.493333pt;}
.y8{bottom:751.813333pt;}
.y3b{bottom:763.093333pt;}
.yde{bottom:770.373333pt;}
.yb2{bottom:772.853333pt;}
.y3a{bottom:778.693333pt;}
.y7{bottom:783.653333pt;}
.ydd{bottom:785.973333pt;}
.y39{bottom:794.373333pt;}
.yb1{bottom:796.773333pt;}
.ydc{bottom:801.653333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:819.013333pt;}
.ydb{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.yb0{bottom:829.973333pt;}
.y5{bottom:835.013333pt;}
.yda{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y53{bottom:841.653333pt;}
.y35{bottom:856.853333pt;}
.y52{bottom:857.253333pt;}
.y4{bottom:863.733333pt;}
.yd9{bottom:864.533333pt;}
.y105{bottom:872.533333pt;}
.y51{bottom:872.853333pt;}
.yd8{bottom:880.133333pt;}
.y104{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.y3{bottom:897.760000pt;}
.yd7{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.yd6{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.yd5{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y103{bottom:943.040000pt;}
.y82{bottom:943.440000pt;}
.y30{bottom:951.040000pt;}
.yd4{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.yd3{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.hd{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.ha{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.h13{height:54.927899pt;}
.h9{height:55.631875pt;}
.h12{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:70.560000pt;}
.hf{height:82.160000pt;}
.hc{height:148.720000pt;}
.hb{height:148.746667pt;}
.h11{height:179.946667pt;}
.h10{height:211.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:86.160000pt;}
.w6{width:88.666667pt;}
.w4{width:98.640000pt;}
.w8{width:120.880000pt;}
.w7{width:123.680000pt;}
.w3{width:150.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x12{left:98.879988pt;}
.x2{left:171.306655pt;}
.xd{left:212.266667pt;}
.xb{left:258.906655pt;}
.x7{left:268.106655pt;}
.x9{left:271.226655pt;}
.x5{left:278.026655pt;}
.xe{left:311.546667pt;}
.xf{left:398.346667pt;}
.x10{left:487.653333pt;}
.x6{left:489.013322pt;}
.x8{left:497.013322pt;}
.x11{left:611.973333pt;}
.x4{left:663.013322pt;}
.xa{left:700.053322pt;}
.x3{left:711.413322pt;}
}




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