
    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_b45f2ac76888442f750b087f.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_ef4bf6cdd66f797ecd4c8a31.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_e469e8e151cc72ed88160e2a.woff2')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_c461ca1c05cc05989c314c66.woff2')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_76fe5ca47f8532bf0802ed8b.woff2')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_9f8be8d6418c4abb681b6b97.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9e27891b9dd9817bf7b8de93.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_7245862ee77a4dd0a089e6f9.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8682f753cc3975e44a93fdf0.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls11{letter-spacing:-0.444600px;}
.ls12{letter-spacing:-0.409800px;}
.ls18{letter-spacing:-0.368400px;}
.ls17{letter-spacing:-0.285600px;}
.lsd{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.009000px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.002880px;}
.lsb{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.047520px;}
.ls13{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.111000px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.533600px;}
.ls1e{letter-spacing:47.726640px;}
.ls1b{letter-spacing:63.566640px;}
.ls1d{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;}
}
.ws8{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.337400px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.217400px;}
.ws3{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.064400px;}
.ws6{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.940800px;}
.wse{word-spacing:-12.858000px;}
.wsa{word-spacing:-12.816600px;}
.ws10{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.480440px;}
._6{margin-left:-3.415680px;}
._2{margin-left:-2.316732px;}
._0{margin-left:-1.110000px;}
._1{width:1.218480px;}
._4{width:2.973600px;}
._5{width:4.174322px;}
._7{width:5.519516px;}
._a{width:6.624722px;}
._c{width:7.804078px;}
._d{width:8.914930px;}
._b{width:10.705800px;}
._8{width:12.139800px;}
._3{width:14.533440px;}
._9{width:15.580080px;}
._10{width:16.850639px;}
._13{width:17.902442px;}
._f{width:20.311920px;}
._e{width:21.336360px;}
._14{width:26.963640px;}
._15{width:29.843280px;}
._16{width:31.094640px;}
._18{width:39.286200px;}
._17{width:40.340520px;}
._12{width:50.560920px;}
._19{width:56.272320px;}
.fc2{color:transparent;}
.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;}
.fs8{font-size:47.880000px;}
.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;}
.y71{bottom:7.830000px;}
.y6f{bottom:7.920000px;}
.y88{bottom:26.550000px;}
.y6e{bottom:26.640000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y59{bottom:126.930000px;}
.ya0{bottom:128.280000px;}
.yc3{bottom:128.460000px;}
.y85{bottom:132.780000px;}
.y58{bottom:144.570000px;}
.yc2{bottom:146.100000px;}
.y10d{bottom:147.270000px;}
.y84{bottom:150.420000px;}
.ye5{bottom:158.250000px;}
.y57{bottom:162.120000px;}
.yc1{bottom:163.650000px;}
.y9f{bottom:163.920000px;}
.y10c{bottom:164.910000px;}
.y83{bottom:167.970000px;}
.ye4{bottom:176.700000px;}
.y56{bottom:179.670000px;}
.yc0{bottom:181.200000px;}
.y82{bottom:185.610000px;}
.y10b{bottom:191.460000px;}
.ye3{bottom:195.060000px;}
.y9e{bottom:196.140000px;}
.y55{bottom:197.310000px;}
.ybf{bottom:198.840000px;}
.y81{bottom:203.160000px;}
.y10a{bottom:209.100000px;}
.y24{bottom:212.520000px;}
.ye2{bottom:213.510000px;}
.y54{bottom:214.860000px;}
.ybe{bottom:216.390000px;}
.y80{bottom:220.710000px;}
.y23{bottom:230.430000px;}
.ye1{bottom:231.870000px;}
.y53{bottom:232.500000px;}
.ybd{bottom:233.940000px;}
.y109{bottom:235.650000px;}
.y7f{bottom:247.350000px;}
.y52{bottom:250.050000px;}
.ye0{bottom:250.320000px;}
.ybc{bottom:251.580000px;}
.y108{bottom:253.200000px;}
.y22{bottom:267.510000px;}
.y51{bottom:267.600000px;}
.ydf{bottom:268.770000px;}
.ybb{bottom:269.130000px;}
.y107{bottom:279.840000px;}
.y7e{bottom:280.290000px;}
.y21{bottom:285.060000px;}
.yba{bottom:286.770000px;}
.y106{bottom:297.390000px;}
.y20{bottom:302.700000px;}
.y50{bottom:303.240000px;}
.yde{bottom:305.220000px;}
.y7d{bottom:307.650000px;}
.y4f{bottom:320.790000px;}
.yb9{bottom:322.320000px;}
.y105{bottom:323.940000px;}
.ydd{bottom:332.040000px;}
.y7c{bottom:335.010000px;}
.y1f{bottom:338.250000px;}
.y4e{bottom:338.430000px;}
.yb8{bottom:339.870000px;}
.y104{bottom:341.580000px;}
.y1e{bottom:355.800000px;}
.y4d{bottom:355.980000px;}
.yb7{bottom:357.510000px;}
.y103{bottom:359.130000px;}
.y7b{bottom:362.280000px;}
.ydc{bottom:369.120000px;}
.y1d{bottom:373.440000px;}
.y4c{bottom:373.530000px;}
.yb6{bottom:375.060000px;}
.y102{bottom:385.770000px;}
.y7a{bottom:389.640000px;}
.y1c{bottom:390.990000px;}
.y4b{bottom:391.170000px;}
.yb5{bottom:392.700000px;}
.ydb{bottom:396.030000px;}
.y101{bottom:403.320000px;}
.y1b{bottom:408.630000px;}
.y4a{bottom:408.720000px;}
.yb4{bottom:410.250000px;}
.y79{bottom:417.000000px;}
.y49{bottom:426.360000px;}
.y100{bottom:429.870000px;}
.yda{bottom:433.020000px;}
.y1a{bottom:444.180000px;}
.y78{bottom:444.270000px;}
.yb3{bottom:445.800000px;}
.yff{bottom:447.510000px;}
.yd9{bottom:459.930000px;}
.y19{bottom:461.730000px;}
.y48{bottom:461.910000px;}
.yb2{bottom:463.440000px;}
.y77{bottom:471.660000px;}
.yfe{bottom:474.090000px;}
.y18{bottom:479.400000px;}
.y47{bottom:479.490000px;}
.yb1{bottom:481.020000px;}
.y9d{bottom:485.250000px;}
.yfd{bottom:491.730000px;}
.y17{bottom:496.950000px;}
.yd8{bottom:497.040000px;}
.y46{bottom:497.130000px;}
.yb0{bottom:498.660000px;}
.y76{bottom:499.020000px;}
.y16{bottom:514.590000px;}
.y45{bottom:514.680000px;}
.yaf{bottom:516.210000px;}
.yfc{bottom:518.280000px;}
.y9c{bottom:520.080000px;}
.yd7{bottom:523.860000px;}
.y75{bottom:526.380000px;}
.y44{bottom:532.230000px;}
.yae{bottom:533.760000px;}
.y9b{bottom:534.210000px;}
.yfb{bottom:535.830000px;}
.y9a{bottom:546.360000px;}
.y43{bottom:549.870000px;}
.y15{bottom:550.140000px;}
.yad{bottom:551.400000px;}
.y74{bottom:553.650000px;}
.yd6{bottom:560.940000px;}
.yfa{bottom:562.470000px;}
.y14{bottom:567.690000px;}
.y99{bottom:573.720000px;}
.y42{bottom:576.780000px;}
.yac{bottom:578.310000px;}
.yd5{bottom:578.490000px;}
.yf9{bottom:580.020000px;}
.y73{bottom:581.010000px;}
.y13{bottom:585.330000px;}
.yd4{bottom:596.130000px;}
.yf8{bottom:597.660000px;}
.y98{bottom:600.990000px;}
.y12{bottom:602.880000px;}
.y72{bottom:608.370000px;}
.yd3{bottom:613.680000px;}
.yab{bottom:623.940000px;}
.yf7{bottom:624.210000px;}
.y41{bottom:625.020000px;}
.y97{bottom:628.350000px;}
.y11{bottom:629.790000px;}
.y70{bottom:635.730000px;}
.yd2{bottom:640.590000px;}
.yf6{bottom:641.760000px;}
.y40{bottom:642.660000px;}
.yaa{bottom:651.300000px;}
.y96{bottom:655.710000px;}
.yf5{bottom:659.400000px;}
.y3f{bottom:660.210000px;}
.y6d{bottom:663.000000px;}
.yd1{bottom:677.580000px;}
.y3e{bottom:677.760000px;}
.y10{bottom:678.030000px;}
.ya9{bottom:678.660000px;}
.y95{bottom:683.070000px;}
.yf4{bottom:685.950000px;}
.yd0{bottom:695.220000px;}
.y3d{bottom:695.400000px;}
.yf3{bottom:703.590000px;}
.ya8{bottom:705.930000px;}
.y94{bottom:710.340000px;}
.y6c{bottom:711.690000px;}
.y3c{bottom:712.950000px;}
.yf{bottom:713.850000px;}
.ycf{bottom:722.130000px;}
.yf2{bottom:730.140000px;}
.ya7{bottom:733.290000px;}
.y93{bottom:737.700000px;}
.y6b{bottom:747.330000px;}
.yf1{bottom:747.690000px;}
.y3b{bottom:748.590000px;}
.ye{bottom:749.850000px;}
.yce{bottom:759.120000px;}
.ya6{bottom:760.650000px;}
.y6a{bottom:764.880000px;}
.y92{bottom:765.060000px;}
.y3a{bottom:766.140000px;}
.yf0{bottom:774.330000px;}
.ycd{bottom:776.670000px;}
.y69{bottom:782.520000px;}
.y39{bottom:783.690000px;}
.ya5{bottom:787.920000px;}
.yd{bottom:789.630000px;}
.yef{bottom:791.880000px;}
.y91{bottom:792.420000px;}
.y68{bottom:800.070000px;}
.y38{bottom:801.330000px;}
.ycc{bottom:803.580000px;}
.yc{bottom:803.850000px;}
.ya4{bottom:815.280000px;}
.yee{bottom:818.520000px;}
.y37{bottom:818.880000px;}
.y90{bottom:819.690000px;}
.yb{bottom:825.630000px;}
.y67{bottom:826.620000px;}
.yed{bottom:836.070000px;}
.y36{bottom:836.520000px;}
.ya{bottom:839.850000px;}
.ycb{bottom:840.930000px;}
.ya3{bottom:842.640000px;}
.y8f{bottom:847.050000px;}
.yec{bottom:853.620000px;}
.y35{bottom:854.070000px;}
.y9{bottom:861.630000px;}
.y66{bottom:862.530000px;}
.ya2{bottom:870.000000px;}
.y34{bottom:871.620000px;}
.y8e{bottom:874.410000px;}
.y8{bottom:879.630000px;}
.yeb{bottom:880.260000px;}
.y33{bottom:889.260000px;}
.ya1{bottom:897.270000px;}
.y7{bottom:897.630000px;}
.yea{bottom:897.810000px;}
.y8d{bottom:901.680000px;}
.y32{bottom:906.810000px;}
.y65{bottom:910.860000px;}
.ye9{bottom:915.450000px;}
.y31{bottom:924.450000px;}
.y64{bottom:928.410000px;}
.y8c{bottom:929.040000px;}
.y6{bottom:929.940000px;}
.yca{bottom:942.000000px;}
.y63{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y8b{bottom:956.400000px;}
.yc9{bottom:959.550000px;}
.y30{bottom:960.000000px;}
.yc8{bottom:977.190000px;}
.y2f{bottom:977.550000px;}
.y62{bottom:981.600000px;}
.y8a{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.yc7{bottom:994.740000px;}
.y2e{bottom:995.190000px;}
.y61{bottom:999.150000px;}
.ye8{bottom:1003.740000px;}
.y89{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y2d{bottom:1012.770000px;}
.y60{bottom:1016.820000px;}
.ye7{bottom:1021.320000px;}
.yc6{bottom:1021.680000px;}
.y2c{bottom:1030.320000px;}
.y5f{bottom:1034.370000px;}
.y87{bottom:1038.420000px;}
.ye6{bottom:1038.960000px;}
.y2b{bottom:1047.960000px;}
.y5e{bottom:1051.920000px;}
.y10f{bottom:1060.920000px;}
.y2a{bottom:1065.510000px;}
.y5d{bottom:1069.560000px;}
.yc5{bottom:1069.920000px;}
.y10e{bottom:1078.560000px;}
.y29{bottom:1083.150000px;}
.y86{bottom:1087.110000px;}
.yc4{bottom:1087.560000px;}
.y28{bottom:1100.700000px;}
.y5c{bottom:1105.110000px;}
.y5b{bottom:1122.750000px;}
.y27{bottom:1127.610000px;}
.y5a{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.hc{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h10{height:40.539023px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.h11{height:61.793886px;}
.hb{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.ha{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:43.470000px;}
.w5{width:43.560000px;}
.wd{width:68.040000px;}
.w4{width:79.830000px;}
.w7{width:96.300000px;}
.we{width:115.920000px;}
.wc{width:115.950000px;}
.wb{width:184.680000px;}
.wa{width:184.710000px;}
.w3{width:285.690000px;}
.w6{width:304.680000px;}
.w9{width:315.930000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:83.609987px;}
.x14{left:95.039987px;}
.xf{left:103.230000px;}
.x15{left:111.239987px;}
.xe{left:156.419987px;}
.x2{left:192.719987px;}
.x8{left:223.590000px;}
.x4{left:241.410000px;}
.xc{left:287.309987px;}
.x10{left:419.880000px;}
.x6{left:527.820000px;}
.x9{left:529.080000px;}
.x12{left:536.550000px;}
.x11{left:605.310000px;}
.x7{left:608.370000px;}
.xa{left:626.190000px;}
.xd{left:691.889987px;}
.x13{left:721.950000px;}
.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;}
.ls11{letter-spacing:-0.395200pt;}
.ls12{letter-spacing:-0.364267pt;}
.ls18{letter-spacing:-0.327467pt;}
.ls17{letter-spacing:-0.253867pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.002560pt;}
.lsb{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.042240pt;}
.ls13{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.098667pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.363200pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:56.503680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.855467pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.748800pt;}
.ws3{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.612800pt;}
.ws6{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.502933pt;}
.wse{word-spacing:-11.429333pt;}
.wsa{word-spacing:-11.392533pt;}
.ws10{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.982613pt;}
._6{margin-left:-3.036160pt;}
._2{margin-left:-2.059317pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.083093pt;}
._4{width:2.643200pt;}
._5{width:3.710508pt;}
._7{width:4.906237pt;}
._a{width:5.888642pt;}
._c{width:6.936958pt;}
._d{width:7.924382pt;}
._b{width:9.516267pt;}
._8{width:10.790933pt;}
._3{width:12.918613pt;}
._9{width:13.848960pt;}
._10{width:14.978346pt;}
._13{width:15.913282pt;}
._f{width:18.055040pt;}
._e{width:18.965654pt;}
._14{width:23.967680pt;}
._15{width:26.527360pt;}
._16{width:27.639680pt;}
._18{width:34.921067pt;}
._17{width:35.858240pt;}
._12{width:44.943040pt;}
._19{width:50.019840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.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;}
.y71{bottom:6.960000pt;}
.y6f{bottom:7.040000pt;}
.y88{bottom:23.600000pt;}
.y6e{bottom:23.680000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y59{bottom:112.826667pt;}
.ya0{bottom:114.026667pt;}
.yc3{bottom:114.186667pt;}
.y85{bottom:118.026667pt;}
.y58{bottom:128.506667pt;}
.yc2{bottom:129.866667pt;}
.y10d{bottom:130.906667pt;}
.y84{bottom:133.706667pt;}
.ye5{bottom:140.666667pt;}
.y57{bottom:144.106667pt;}
.yc1{bottom:145.466667pt;}
.y9f{bottom:145.706667pt;}
.y10c{bottom:146.586667pt;}
.y83{bottom:149.306667pt;}
.ye4{bottom:157.066667pt;}
.y56{bottom:159.706667pt;}
.yc0{bottom:161.066667pt;}
.y82{bottom:164.986667pt;}
.y10b{bottom:170.186667pt;}
.ye3{bottom:173.386667pt;}
.y9e{bottom:174.346667pt;}
.y55{bottom:175.386667pt;}
.ybf{bottom:176.746667pt;}
.y81{bottom:180.586667pt;}
.y10a{bottom:185.866667pt;}
.y24{bottom:188.906667pt;}
.ye2{bottom:189.786667pt;}
.y54{bottom:190.986667pt;}
.ybe{bottom:192.346667pt;}
.y80{bottom:196.186667pt;}
.y23{bottom:204.826667pt;}
.ye1{bottom:206.106667pt;}
.y53{bottom:206.666667pt;}
.ybd{bottom:207.946667pt;}
.y109{bottom:209.466667pt;}
.y7f{bottom:219.866667pt;}
.y52{bottom:222.266667pt;}
.ye0{bottom:222.506667pt;}
.ybc{bottom:223.626667pt;}
.y108{bottom:225.066667pt;}
.y22{bottom:237.786667pt;}
.y51{bottom:237.866667pt;}
.ydf{bottom:238.906667pt;}
.ybb{bottom:239.226667pt;}
.y107{bottom:248.746667pt;}
.y7e{bottom:249.146667pt;}
.y21{bottom:253.386667pt;}
.yba{bottom:254.906667pt;}
.y106{bottom:264.346667pt;}
.y20{bottom:269.066667pt;}
.y50{bottom:269.546667pt;}
.yde{bottom:271.306667pt;}
.y7d{bottom:273.466667pt;}
.y4f{bottom:285.146667pt;}
.yb9{bottom:286.506667pt;}
.y105{bottom:287.946667pt;}
.ydd{bottom:295.146667pt;}
.y7c{bottom:297.786667pt;}
.y1f{bottom:300.666667pt;}
.y4e{bottom:300.826667pt;}
.yb8{bottom:302.106667pt;}
.y104{bottom:303.626667pt;}
.y1e{bottom:316.266667pt;}
.y4d{bottom:316.426667pt;}
.yb7{bottom:317.786667pt;}
.y103{bottom:319.226667pt;}
.y7b{bottom:322.026667pt;}
.ydc{bottom:328.106667pt;}
.y1d{bottom:331.946667pt;}
.y4c{bottom:332.026667pt;}
.yb6{bottom:333.386667pt;}
.y102{bottom:342.906667pt;}
.y7a{bottom:346.346667pt;}
.y1c{bottom:347.546667pt;}
.y4b{bottom:347.706667pt;}
.yb5{bottom:349.066667pt;}
.ydb{bottom:352.026667pt;}
.y101{bottom:358.506667pt;}
.y1b{bottom:363.226667pt;}
.y4a{bottom:363.306667pt;}
.yb4{bottom:364.666667pt;}
.y79{bottom:370.666667pt;}
.y49{bottom:378.986667pt;}
.y100{bottom:382.106667pt;}
.yda{bottom:384.906667pt;}
.y1a{bottom:394.826667pt;}
.y78{bottom:394.906667pt;}
.yb3{bottom:396.266667pt;}
.yff{bottom:397.786667pt;}
.yd9{bottom:408.826667pt;}
.y19{bottom:410.426667pt;}
.y48{bottom:410.586667pt;}
.yb2{bottom:411.946667pt;}
.y77{bottom:419.253333pt;}
.yfe{bottom:421.413333pt;}
.y18{bottom:426.133333pt;}
.y47{bottom:426.213333pt;}
.yb1{bottom:427.573333pt;}
.y9d{bottom:431.333333pt;}
.yfd{bottom:437.093333pt;}
.y17{bottom:441.733333pt;}
.yd8{bottom:441.813333pt;}
.y46{bottom:441.893333pt;}
.yb0{bottom:443.253333pt;}
.y76{bottom:443.573333pt;}
.y16{bottom:457.413333pt;}
.y45{bottom:457.493333pt;}
.yaf{bottom:458.853333pt;}
.yfc{bottom:460.693333pt;}
.y9c{bottom:462.293333pt;}
.yd7{bottom:465.653333pt;}
.y75{bottom:467.893333pt;}
.y44{bottom:473.093333pt;}
.yae{bottom:474.453333pt;}
.y9b{bottom:474.853333pt;}
.yfb{bottom:476.293333pt;}
.y9a{bottom:485.653333pt;}
.y43{bottom:488.773333pt;}
.y15{bottom:489.013333pt;}
.yad{bottom:490.133333pt;}
.y74{bottom:492.133333pt;}
.yd6{bottom:498.613333pt;}
.yfa{bottom:499.973333pt;}
.y14{bottom:504.613333pt;}
.y99{bottom:509.973333pt;}
.y42{bottom:512.693333pt;}
.yac{bottom:514.053333pt;}
.yd5{bottom:514.213333pt;}
.yf9{bottom:515.573333pt;}
.y73{bottom:516.453333pt;}
.y13{bottom:520.293333pt;}
.yd4{bottom:529.893333pt;}
.yf8{bottom:531.253333pt;}
.y98{bottom:534.213333pt;}
.y12{bottom:535.893333pt;}
.y72{bottom:540.773333pt;}
.yd3{bottom:545.493333pt;}
.yab{bottom:554.613333pt;}
.yf7{bottom:554.853333pt;}
.y41{bottom:555.573333pt;}
.y97{bottom:558.533333pt;}
.y11{bottom:559.813333pt;}
.y70{bottom:565.093333pt;}
.yd2{bottom:569.413333pt;}
.yf6{bottom:570.453333pt;}
.y40{bottom:571.253333pt;}
.yaa{bottom:578.933333pt;}
.y96{bottom:582.853333pt;}
.yf5{bottom:586.133333pt;}
.y3f{bottom:586.853333pt;}
.y6d{bottom:589.333333pt;}
.yd1{bottom:602.293333pt;}
.y3e{bottom:602.453333pt;}
.y10{bottom:602.693333pt;}
.ya9{bottom:603.253333pt;}
.y95{bottom:607.173333pt;}
.yf4{bottom:609.733333pt;}
.yd0{bottom:617.973333pt;}
.y3d{bottom:618.133333pt;}
.yf3{bottom:625.413333pt;}
.ya8{bottom:627.493333pt;}
.y94{bottom:631.413333pt;}
.y6c{bottom:632.613333pt;}
.y3c{bottom:633.733333pt;}
.yf{bottom:634.533333pt;}
.ycf{bottom:641.893333pt;}
.yf2{bottom:649.013333pt;}
.ya7{bottom:651.813333pt;}
.y93{bottom:655.733333pt;}
.y6b{bottom:664.293333pt;}
.yf1{bottom:664.613333pt;}
.y3b{bottom:665.413333pt;}
.ye{bottom:666.533333pt;}
.yce{bottom:674.773333pt;}
.ya6{bottom:676.133333pt;}
.y6a{bottom:679.893333pt;}
.y92{bottom:680.053333pt;}
.y3a{bottom:681.013333pt;}
.yf0{bottom:688.293333pt;}
.ycd{bottom:690.373333pt;}
.y69{bottom:695.573333pt;}
.y39{bottom:696.613333pt;}
.ya5{bottom:700.373333pt;}
.yd{bottom:701.893333pt;}
.yef{bottom:703.893333pt;}
.y91{bottom:704.373333pt;}
.y68{bottom:711.173333pt;}
.y38{bottom:712.293333pt;}
.ycc{bottom:714.293333pt;}
.yc{bottom:714.533333pt;}
.ya4{bottom:724.693333pt;}
.yee{bottom:727.573333pt;}
.y37{bottom:727.893333pt;}
.y90{bottom:728.613333pt;}
.yb{bottom:733.893333pt;}
.y67{bottom:734.773333pt;}
.yed{bottom:743.173333pt;}
.y36{bottom:743.573333pt;}
.ya{bottom:746.533333pt;}
.ycb{bottom:747.493333pt;}
.ya3{bottom:749.013333pt;}
.y8f{bottom:752.933333pt;}
.yec{bottom:758.773333pt;}
.y35{bottom:759.173333pt;}
.y9{bottom:765.893333pt;}
.y66{bottom:766.693333pt;}
.ya2{bottom:773.333333pt;}
.y34{bottom:774.773333pt;}
.y8e{bottom:777.253333pt;}
.y8{bottom:781.893333pt;}
.yeb{bottom:782.453333pt;}
.y33{bottom:790.453333pt;}
.ya1{bottom:797.573333pt;}
.y7{bottom:797.893333pt;}
.yea{bottom:798.053333pt;}
.y8d{bottom:801.493333pt;}
.y32{bottom:806.053333pt;}
.y65{bottom:809.653333pt;}
.ye9{bottom:813.733333pt;}
.y31{bottom:821.733333pt;}
.y64{bottom:825.253333pt;}
.y8c{bottom:825.813333pt;}
.y6{bottom:826.613333pt;}
.yca{bottom:837.333333pt;}
.y63{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y8b{bottom:850.133333pt;}
.yc9{bottom:852.933333pt;}
.y30{bottom:853.333333pt;}
.yc8{bottom:868.613333pt;}
.y2f{bottom:868.933333pt;}
.y62{bottom:872.533333pt;}
.y8a{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.yc7{bottom:884.213333pt;}
.y2e{bottom:884.613333pt;}
.y61{bottom:888.133333pt;}
.ye8{bottom:892.213333pt;}
.y89{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y2d{bottom:900.240000pt;}
.y60{bottom:903.840000pt;}
.ye7{bottom:907.840000pt;}
.yc6{bottom:908.160000pt;}
.y2c{bottom:915.840000pt;}
.y5f{bottom:919.440000pt;}
.y87{bottom:923.040000pt;}
.ye6{bottom:923.520000pt;}
.y2b{bottom:931.520000pt;}
.y5e{bottom:935.040000pt;}
.y10f{bottom:943.040000pt;}
.y2a{bottom:947.120000pt;}
.y5d{bottom:950.720000pt;}
.yc5{bottom:951.040000pt;}
.y10e{bottom:958.720000pt;}
.y29{bottom:962.800000pt;}
.y86{bottom:966.320000pt;}
.yc4{bottom:966.720000pt;}
.y28{bottom:978.400000pt;}
.y5c{bottom:982.320000pt;}
.y5b{bottom:998.000000pt;}
.y27{bottom:1002.320000pt;}
.y5a{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.hc{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h10{height:36.034687pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.h11{height:54.927899pt;}
.hb{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.ha{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:38.640000pt;}
.w5{width:38.720000pt;}
.wd{width:60.480000pt;}
.w4{width:70.960000pt;}
.w7{width:85.600000pt;}
.we{width:103.040000pt;}
.wc{width:103.066667pt;}
.wb{width:164.160000pt;}
.wa{width:164.186667pt;}
.w3{width:253.946667pt;}
.w6{width:270.826667pt;}
.w9{width:280.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:74.319988pt;}
.x14{left:84.479988pt;}
.xf{left:91.760000pt;}
.x15{left:98.879988pt;}
.xe{left:139.039988pt;}
.x2{left:171.306655pt;}
.x8{left:198.746667pt;}
.x4{left:214.586667pt;}
.xc{left:255.386655pt;}
.x10{left:373.226667pt;}
.x6{left:469.173333pt;}
.x9{left:470.293333pt;}
.x12{left:476.933333pt;}
.x11{left:538.053333pt;}
.x7{left:540.773333pt;}
.xa{left:556.613333pt;}
.xd{left:615.013322pt;}
.x13{left:641.733333pt;}
.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; }
  