
    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_edcfe1a88a0960a1ce3a8d03.woff')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_543a8e0a551fb130b88902da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_3ced4aec060900bbbeeb3147.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_fe55eff4e6c06afb5893c0af.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_150e3bbd423f1b2c0e7417d0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d2937c64dbe81e3e3a2a88e8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_9d65b404f51c487c0e268ad2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ea017f056d901b4ed4c4aeea.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061035;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_290c2af524b4ac1a2ceaffab.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_84c57490c445f0e2670cece1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.246838,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246838,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246838,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-27.360000px;}
.v9{vertical-align:-14.400000px;}
.vf{vertical-align:-11.373910px;}
.v6{vertical-align:-10.080000px;}
.vc{vertical-align:-8.640000px;}
.v1{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.080000px;}
.va{vertical-align:14.400000px;}
.ve{vertical-align:18.020111px;}
.vd{vertical-align:20.075637px;}
.v10{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.v8{vertical-align:36.000000px;}
.v5{vertical-align:42.480000px;}
.vb{vertical-align:64.800000px;}
.ls7{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.152640px;}
.ls12{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.223800px;}
.ls14{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.289440px;}
.ls2{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.531491px;}
.lsb{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.008000px;}
.lsc{letter-spacing:3.096000px;}
.lse{letter-spacing:3.307680px;}
.lsd{letter-spacing:22.961520px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-72.000000px;}
.ws5{word-spacing:-42.351078px;}
.ws2{word-spacing:-36.869528px;}
.ws0{word-spacing:-31.758809px;}
.ws4{word-spacing:-22.978918px;}
.ws1{word-spacing:-21.201928px;}
.ws3{word-spacing:-21.191371px;}
.ws6{word-spacing:-20.602362px;}
.ws7{word-spacing:-20.555504px;}
.ws9{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.712000px;}
.ws15{word-spacing:-15.840000px;}
.ws18{word-spacing:-13.759994px;}
.ws1b{word-spacing:-12.420000px;}
.wse{word-spacing:-12.349440px;}
.ws1a{word-spacing:-12.241200px;}
.wsb{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.878800px;}
.ws11{word-spacing:-11.246400px;}
.ws12{word-spacing:-9.187200px;}
.ws19{word-spacing:-8.747736px;}
.ws14{word-spacing:-3.744000px;}
.ws16{word-spacing:-0.048240px;}
.ws8{word-spacing:0.000000px;}
.ws13{word-spacing:9.444240px;}
.ws10{word-spacing:76.872000px;}
.ws17{word-spacing:119.770479px;}
._1{margin-left:-7.781406px;}
._0{margin-left:-5.452861px;}
._5{margin-left:-2.328000px;}
._2{margin-left:-1.248387px;}
._4{width:1.620387px;}
._d{width:3.173201px;}
._6{width:9.878347px;}
._7{width:17.697653px;}
._f{width:54.264000px;}
._e{width:90.264000px;}
._9{width:115.200000px;}
._c{width:135.154498px;}
._8{width:158.039613px;}
._a{width:194.400000px;}
._b{width:846.156000px;}
._3{width:1343.100000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.466677px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:44.904335px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:49.496381px;}
.fs5{font-size:51.120000px;}
.fsb{font-size:62.934039px;}
.fsa{font-size:64.256579px;}
.fs1{font-size:71.730600px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.708400px;}
.fs0{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yab{bottom:16.453286px;}
.ycd{bottom:24.840000px;}
.yc5{bottom:24.870000px;}
.yc7{bottom:25.200000px;}
.yc4{bottom:25.230000px;}
.yd5{bottom:26.445000px;}
.yd0{bottom:26.460000px;}
.yd4{bottom:26.625000px;}
.ycf{bottom:26.640000px;}
.ya1{bottom:39.669939px;}
.ycb{bottom:52.020000px;}
.ya2{bottom:52.215499px;}
.yb{bottom:57.420000px;}
.ya{bottom:78.156000px;}
.y9{bottom:98.856000px;}
.yaa{bottom:99.797499px;}
.ya3{bottom:115.020382px;}
.y80{bottom:121.356000px;}
.y67{bottom:125.136000px;}
.yec{bottom:126.036000px;}
.y2c{bottom:133.956000px;}
.y98{bottom:134.496000px;}
.y7f{bottom:142.056000px;}
.yb8{bottom:143.496000px;}
.y51{bottom:144.036000px;}
.y4a{bottom:146.376000px;}
.y48{bottom:146.736000px;}
.y97{bottom:155.190000px;}
.y7e{bottom:162.750000px;}
.yb7{bottom:164.190000px;}
.y66{bottom:166.530000px;}
.yeb{bottom:167.430000px;}
.y2b{bottom:175.350000px;}
.y96{bottom:175.890000px;}
.ya4{bottom:177.820127px;}
.y7d{bottom:183.450000px;}
.yb6{bottom:184.530000px;}
.y50{bottom:185.430000px;}
.y43{bottom:188.130000px;}
.y95{bottom:196.590000px;}
.yb5{bottom:205.590000px;}
.y65{bottom:207.930000px;}
.yea{bottom:208.830000px;}
.y2a{bottom:216.750000px;}
.y94{bottom:217.290000px;}
.y7c{bottom:224.850000px;}
.yb4{bottom:226.290000px;}
.y4f{bottom:226.830000px;}
.y42{bottom:229.530000px;}
.y93{bottom:237.990000px;}
.ya5{bottom:241.267362px;}
.y7b{bottom:245.550000px;}
.yb3{bottom:246.990000px;}
.y64{bottom:249.330000px;}
.ye9{bottom:250.230000px;}
.yaf{bottom:250.328806px;}
.ya9{bottom:250.842688px;}
.y29{bottom:258.150000px;}
.y92{bottom:258.690000px;}
.yae{bottom:266.190615px;}
.y7a{bottom:266.250000px;}
.ya8{bottom:266.704496px;}
.yb2{bottom:267.510000px;}
.y55{bottom:268.230000px;}
.y4e{bottom:269.490000px;}
.y47{bottom:270.570000px;}
.y41{bottom:270.930000px;}
.y91{bottom:279.390000px;}
.yad{bottom:282.052424px;}
.ya7{bottom:282.566305px;}
.y79{bottom:286.950000px;}
.yb1{bottom:287.850000px;}
.y63{bottom:290.730000px;}
.ye8{bottom:291.630000px;}
.ya6{bottom:297.914233px;}
.y28{bottom:299.550000px;}
.y90{bottom:300.090000px;}
.yac{bottom:300.123923px;}
.y78{bottom:307.650000px;}
.y54{bottom:309.630000px;}
.y40{bottom:312.330000px;}
.y8f{bottom:320.430000px;}
.yb0{bottom:325.290000px;}
.ya0{bottom:325.365000px;}
.y77{bottom:328.215000px;}
.y62{bottom:332.175000px;}
.ye7{bottom:333.075000px;}
.y27{bottom:340.995000px;}
.y76{bottom:348.915000px;}
.y53{bottom:352.335000px;}
.y3f{bottom:353.775000px;}
.y8e{bottom:357.915000px;}
.yc2{bottom:361.695000px;}
.y75{bottom:369.615000px;}
.y61{bottom:373.215000px;}
.ye6{bottom:374.475000px;}
.y26{bottom:382.395000px;}
.y74{bottom:390.315000px;}
.y3e{bottom:395.175000px;}
.yc1{bottom:403.095000px;}
.y73{bottom:406.695000px;}
.y60{bottom:414.975000px;}
.ye5{bottom:415.875000px;}
.y25{bottom:423.795000px;}
.y52{bottom:436.215000px;}
.y3d{bottom:436.575000px;}
.yc9{bottom:441.435000px;}
.y5f{bottom:456.375000px;}
.ye4{bottom:457.275000px;}
.y24{bottom:465.195000px;}
.y4d{bottom:477.615000px;}
.y3c{bottom:477.975000px;}
.yc8{bottom:484.275000px;}
.y5e{bottom:497.775000px;}
.ye3{bottom:498.675000px;}
.y23{bottom:506.595000px;}
.y4c{bottom:519.015000px;}
.y3b{bottom:519.375000px;}
.yc6{bottom:527.295000px;}
.y5d{bottom:539.175000px;}
.ye2{bottom:540.075000px;}
.y22{bottom:547.995000px;}
.y3a{bottom:560.775000px;}
.yc3{bottom:570.135000px;}
.y5c{bottom:580.575000px;}
.ye1{bottom:581.475000px;}
.y21{bottom:589.395000px;}
.y39{bottom:602.205000px;}
.y6{bottom:612.647700px;}
.y8d{bottom:615.705000px;}
.y5b{bottom:622.005000px;}
.ye0{bottom:622.905000px;}
.y72{bottom:625.965000px;}
.y20{bottom:630.825000px;}
.yc0{bottom:631.905000px;}
.y8c{bottom:636.405000px;}
.y5{bottom:638.041050px;}
.y38{bottom:643.605000px;}
.ybf{bottom:652.605000px;}
.y8b{bottom:657.105000px;}
.y59{bottom:663.585000px;}
.ydf{bottom:664.305000px;}
.y5a{bottom:665.745000px;}
.y71{bottom:667.365000px;}
.y1f{bottom:672.225000px;}
.ybe{bottom:672.945000px;}
.y8a{bottom:677.805000px;}
.y37{bottom:685.005000px;}
.y9f{bottom:686.625000px;}
.y89{bottom:698.505000px;}
.y4{bottom:699.317850px;}
.yde{bottom:705.705000px;}
.y70{bottom:708.765000px;}
.y58{bottom:712.365000px;}
.y1e{bottom:713.625000px;}
.ybd{bottom:714.705000px;}
.y88{bottom:719.205000px;}
.y57{bottom:721.365000px;}
.y3{bottom:724.724700px;}
.y36{bottom:726.405000px;}
.y9e{bottom:728.385000px;}
.y6f{bottom:729.465000px;}
.ybc{bottom:738.285000px;}
.y87{bottom:739.905000px;}
.ydd{bottom:747.105000px;}
.y9d{bottom:749.085000px;}
.y6e{bottom:750.165000px;}
.y1d{bottom:755.025000px;}
.ybb{bottom:759.165000px;}
.y86{bottom:760.605000px;}
.y49{bottom:767.445000px;}
.y35{bottom:767.805000px;}
.y9c{bottom:769.785000px;}
.y6d{bottom:770.865000px;}
.y1c{bottom:776.085000px;}
.yba{bottom:779.865000px;}
.y85{bottom:781.305000px;}
.y2{bottom:785.988000px;}
.ydc{bottom:788.505000px;}
.y9b{bottom:790.485000px;}
.y6c{bottom:791.565000px;}
.y1b{bottom:796.785000px;}
.yb9{bottom:800.565000px;}
.y84{bottom:802.005000px;}
.y34{bottom:809.205000px;}
.y9a{bottom:810.825000px;}
.y6b{bottom:812.265000px;}
.y1a{bottom:817.485000px;}
.y83{bottom:822.705000px;}
.yd3{bottom:823.620000px;}
.y6a{bottom:828.645000px;}
.ydb{bottom:829.905000px;}
.y19{bottom:838.185000px;}
.y82{bottom:843.405000px;}
.y1{bottom:845.766000px;}
.y99{bottom:848.265000px;}
.y56{bottom:850.245000px;}
.y33{bottom:850.605000px;}
.y18{bottom:858.885000px;}
.y81{bottom:859.605000px;}
.y68{bottom:871.350000px;}
.y17{bottom:879.630000px;}
.yd2{bottom:880.170000px;}
.y4b{bottom:891.690000px;}
.y32{bottom:892.050000px;}
.y16{bottom:900.330000px;}
.yda{bottom:912.750000px;}
.y15{bottom:921.030000px;}
.y31{bottom:933.450000px;}
.yd1{bottom:936.510000px;}
.y14{bottom:941.730000px;}
.yd9{bottom:954.150000px;}
.y13{bottom:962.430000px;}
.y30{bottom:974.850000px;}
.y12{bottom:983.130000px;}
.yce{bottom:992.850000px;}
.yd8{bottom:995.550000px;}
.y11{bottom:1003.830000px;}
.y46{bottom:1015.890000px;}
.y2f{bottom:1016.250000px;}
.y10{bottom:1027.050000px;}
.yd7{bottom:1036.950000px;}
.yca{bottom:1049.370000px;}
.yf{bottom:1050.810000px;}
.y2e{bottom:1057.650000px;}
.ye{bottom:1074.570000px;}
.yd6{bottom:1078.350000px;}
.yd{bottom:1098.510000px;}
.y2d{bottom:1098.690000px;}
.y45{bottom:1099.050000px;}
.ycc{bottom:1103.010000px;}
.y69{bottom:1119.750000px;}
.yc{bottom:1140.120000px;}
.y44{bottom:1140.480000px;}
.y8{bottom:1172.880000px;}
.y7{bottom:1193.580000px;}
.h1a{height:41.385000px;}
.h19{height:41.430000px;}
.h1c{height:44.085000px;}
.h1d{height:44.121000px;}
.h17{height:46.833819px;}
.hc{height:50.273438px;}
.h14{height:50.838872px;}
.h12{height:51.623178px;}
.h13{height:52.894398px;}
.h3{height:53.295836px;}
.h4{height:57.426508px;}
.h5{height:57.737341px;}
.h10{height:63.922500px;}
.h16{height:65.638236px;}
.h15{height:67.017604px;}
.ha{height:70.628906px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h18{height:74.680922px;}
.hb{height:74.704922px;}
.h2{height:79.514035px;}
.hd{height:85.562578px;}
.h1b{height:95.070000px;}
.hf{height:99.994219px;}
.he{height:108.562500px;}
.h11{height:336.609509px;}
.h0{height:1173.540000px;}
.h1{height:1173.750000px;}
.h6{height:1262.880000px;}
.h7{height:1263.000000px;}
.w7{width:102.051000px;}
.wa{width:102.081000px;}
.wd{width:126.021000px;}
.wc{width:126.165000px;}
.wb{width:141.696000px;}
.w5{width:199.290000px;}
.w6{width:200.355000px;}
.w4{width:201.075000px;}
.w8{width:245.220000px;}
.w9{width:253.635000px;}
.w3{width:318.437687px;}
.w0{width:892.920000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:10.065000px;}
.x13{left:32.817038px;}
.x11{left:45.349829px;}
.x10{left:52.284155px;}
.x2{left:71.941500px;}
.xf{left:82.733078px;}
.x15{left:95.911246px;}
.x4{left:106.236000px;}
.x14{left:122.312688px;}
.x6{left:132.516000px;}
.x17{left:144.585000px;}
.x1f{left:154.290000px;}
.x7{left:163.290000px;}
.x12{left:241.356857px;}
.x1b{left:248.085000px;}
.xe{left:287.190000px;}
.x1{left:311.607000px;}
.x18{left:347.115000px;}
.x1d{left:351.615000px;}
.x8{left:437.475000px;}
.x5{left:441.975000px;}
.x3{left:446.475000px;}
.x1c{left:494.760000px;}
.x19{left:548.040000px;}
.x9{left:596.265000px;}
.xc{left:598.605000px;}
.xd{left:601.305000px;}
.x16{left:605.625000px;}
.x1e{left:622.380000px;}
.xb{left:786.030000px;}
.xa{left:814.650000px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v9{vertical-align:-12.800000pt;}
.vf{vertical-align:-10.110143pt;}
.v6{vertical-align:-8.960000pt;}
.vc{vertical-align:-7.680000pt;}
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.960000pt;}
.va{vertical-align:12.800000pt;}
.ve{vertical-align:16.017877pt;}
.vd{vertical-align:17.845011pt;}
.v10{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.v8{vertical-align:32.000000pt;}
.v5{vertical-align:37.760000pt;}
.vb{vertical-align:57.600000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.135680pt;}
.ls12{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.198933pt;}
.ls14{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.257280pt;}
.ls2{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.472436pt;}
.lsb{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.896000pt;}
.lsc{letter-spacing:2.752000pt;}
.lse{letter-spacing:2.940160pt;}
.lsd{letter-spacing:20.410240pt;}
.wsf{word-spacing:-64.000000pt;}
.ws5{word-spacing:-37.645403pt;}
.ws2{word-spacing:-32.772914pt;}
.ws0{word-spacing:-28.230053pt;}
.ws4{word-spacing:-20.425705pt;}
.ws1{word-spacing:-18.846158pt;}
.ws3{word-spacing:-18.836774pt;}
.ws6{word-spacing:-18.313211pt;}
.ws7{word-spacing:-18.271559pt;}
.ws9{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws15{word-spacing:-14.080000pt;}
.ws18{word-spacing:-12.231106pt;}
.ws1b{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.977280pt;}
.ws1a{word-spacing:-10.881067pt;}
.wsb{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.558933pt;}
.ws11{word-spacing:-9.996800pt;}
.ws12{word-spacing:-8.166400pt;}
.ws19{word-spacing:-7.775766pt;}
.ws14{word-spacing:-3.328000pt;}
.ws16{word-spacing:-0.042880pt;}
.ws8{word-spacing:0.000000pt;}
.ws13{word-spacing:8.394880pt;}
.ws10{word-spacing:68.330667pt;}
.ws17{word-spacing:106.462648pt;}
._1{margin-left:-6.916805pt;}
._0{margin-left:-4.846987pt;}
._5{margin-left:-2.069333pt;}
._2{margin-left:-1.109677pt;}
._4{width:1.440344pt;}
._d{width:2.820623pt;}
._6{width:8.780753pt;}
._7{width:15.731247pt;}
._f{width:48.234667pt;}
._e{width:80.234667pt;}
._9{width:102.400000pt;}
._c{width:120.137331pt;}
._8{width:140.479656pt;}
._a{width:172.800000pt;}
._b{width:752.138667pt;}
._3{width:1193.866667pt;}
.fs9{font-size:27.970380pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:39.914965pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:43.996783pt;}
.fs5{font-size:45.440000pt;}
.fsb{font-size:55.941368pt;}
.fsa{font-size:57.116959pt;}
.fs1{font-size:63.760533pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.074133pt;}
.fs0{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:14.625144pt;}
.ycd{bottom:22.080000pt;}
.yc5{bottom:22.106667pt;}
.yc7{bottom:22.400000pt;}
.yc4{bottom:22.426667pt;}
.yd5{bottom:23.506667pt;}
.yd0{bottom:23.520000pt;}
.yd4{bottom:23.666667pt;}
.ycf{bottom:23.680000pt;}
.ya1{bottom:35.262168pt;}
.ycb{bottom:46.240000pt;}
.ya2{bottom:46.413777pt;}
.yb{bottom:51.040000pt;}
.ya{bottom:69.472000pt;}
.y9{bottom:87.872000pt;}
.yaa{bottom:88.708888pt;}
.ya3{bottom:102.240340pt;}
.y80{bottom:107.872000pt;}
.y67{bottom:111.232000pt;}
.yec{bottom:112.032000pt;}
.y2c{bottom:119.072000pt;}
.y98{bottom:119.552000pt;}
.y7f{bottom:126.272000pt;}
.yb8{bottom:127.552000pt;}
.y51{bottom:128.032000pt;}
.y4a{bottom:130.112000pt;}
.y48{bottom:130.432000pt;}
.y97{bottom:137.946667pt;}
.y7e{bottom:144.666667pt;}
.yb7{bottom:145.946667pt;}
.y66{bottom:148.026667pt;}
.yeb{bottom:148.826667pt;}
.y2b{bottom:155.866667pt;}
.y96{bottom:156.346667pt;}
.ya4{bottom:158.062335pt;}
.y7d{bottom:163.066667pt;}
.yb6{bottom:164.026667pt;}
.y50{bottom:164.826667pt;}
.y43{bottom:167.226667pt;}
.y95{bottom:174.746667pt;}
.yb5{bottom:182.746667pt;}
.y65{bottom:184.826667pt;}
.yea{bottom:185.626667pt;}
.y2a{bottom:192.666667pt;}
.y94{bottom:193.146667pt;}
.y7c{bottom:199.866667pt;}
.yb4{bottom:201.146667pt;}
.y4f{bottom:201.626667pt;}
.y42{bottom:204.026667pt;}
.y93{bottom:211.546667pt;}
.ya5{bottom:214.459878pt;}
.y7b{bottom:218.266667pt;}
.yb3{bottom:219.546667pt;}
.y64{bottom:221.626667pt;}
.ye9{bottom:222.426667pt;}
.yaf{bottom:222.514494pt;}
.ya9{bottom:222.971278pt;}
.y29{bottom:229.466667pt;}
.y92{bottom:229.946667pt;}
.yae{bottom:236.613880pt;}
.y7a{bottom:236.666667pt;}
.ya8{bottom:237.070663pt;}
.yb2{bottom:237.786667pt;}
.y55{bottom:238.426667pt;}
.y4e{bottom:239.546667pt;}
.y47{bottom:240.506667pt;}
.y41{bottom:240.826667pt;}
.y91{bottom:248.346667pt;}
.yad{bottom:250.713266pt;}
.ya7{bottom:251.170049pt;}
.y79{bottom:255.066667pt;}
.yb1{bottom:255.866667pt;}
.y63{bottom:258.426667pt;}
.ye8{bottom:259.226667pt;}
.ya6{bottom:264.812651pt;}
.y28{bottom:266.266667pt;}
.y90{bottom:266.746667pt;}
.yac{bottom:266.776820pt;}
.y78{bottom:273.466667pt;}
.y54{bottom:275.226667pt;}
.y40{bottom:277.626667pt;}
.y8f{bottom:284.826667pt;}
.yb0{bottom:289.146667pt;}
.ya0{bottom:289.213333pt;}
.y77{bottom:291.746667pt;}
.y62{bottom:295.266667pt;}
.ye7{bottom:296.066667pt;}
.y27{bottom:303.106667pt;}
.y76{bottom:310.146667pt;}
.y53{bottom:313.186667pt;}
.y3f{bottom:314.466667pt;}
.y8e{bottom:318.146667pt;}
.yc2{bottom:321.506667pt;}
.y75{bottom:328.546667pt;}
.y61{bottom:331.746667pt;}
.ye6{bottom:332.866667pt;}
.y26{bottom:339.906667pt;}
.y74{bottom:346.946667pt;}
.y3e{bottom:351.266667pt;}
.yc1{bottom:358.306667pt;}
.y73{bottom:361.506667pt;}
.y60{bottom:368.866667pt;}
.ye5{bottom:369.666667pt;}
.y25{bottom:376.706667pt;}
.y52{bottom:387.746667pt;}
.y3d{bottom:388.066667pt;}
.yc9{bottom:392.386667pt;}
.y5f{bottom:405.666667pt;}
.ye4{bottom:406.466667pt;}
.y24{bottom:413.506667pt;}
.y4d{bottom:424.546667pt;}
.y3c{bottom:424.866667pt;}
.yc8{bottom:430.466667pt;}
.y5e{bottom:442.466667pt;}
.ye3{bottom:443.266667pt;}
.y23{bottom:450.306667pt;}
.y4c{bottom:461.346667pt;}
.y3b{bottom:461.666667pt;}
.yc6{bottom:468.706667pt;}
.y5d{bottom:479.266667pt;}
.ye2{bottom:480.066667pt;}
.y22{bottom:487.106667pt;}
.y3a{bottom:498.466667pt;}
.yc3{bottom:506.786667pt;}
.y5c{bottom:516.066667pt;}
.ye1{bottom:516.866667pt;}
.y21{bottom:523.906667pt;}
.y39{bottom:535.293333pt;}
.y6{bottom:544.575733pt;}
.y8d{bottom:547.293333pt;}
.y5b{bottom:552.893333pt;}
.ye0{bottom:553.693333pt;}
.y72{bottom:556.413333pt;}
.y20{bottom:560.733333pt;}
.yc0{bottom:561.693333pt;}
.y8c{bottom:565.693333pt;}
.y5{bottom:567.147600pt;}
.y38{bottom:572.093333pt;}
.ybf{bottom:580.093333pt;}
.y8b{bottom:584.093333pt;}
.y59{bottom:589.853333pt;}
.ydf{bottom:590.493333pt;}
.y5a{bottom:591.773333pt;}
.y71{bottom:593.213333pt;}
.y1f{bottom:597.533333pt;}
.ybe{bottom:598.173333pt;}
.y8a{bottom:602.493333pt;}
.y37{bottom:608.893333pt;}
.y9f{bottom:610.333333pt;}
.y89{bottom:620.893333pt;}
.y4{bottom:621.615867pt;}
.yde{bottom:627.293333pt;}
.y70{bottom:630.013333pt;}
.y58{bottom:633.213333pt;}
.y1e{bottom:634.333333pt;}
.ybd{bottom:635.293333pt;}
.y88{bottom:639.293333pt;}
.y57{bottom:641.213333pt;}
.y3{bottom:644.199733pt;}
.y36{bottom:645.693333pt;}
.y9e{bottom:647.453333pt;}
.y6f{bottom:648.413333pt;}
.ybc{bottom:656.253333pt;}
.y87{bottom:657.693333pt;}
.ydd{bottom:664.093333pt;}
.y9d{bottom:665.853333pt;}
.y6e{bottom:666.813333pt;}
.y1d{bottom:671.133333pt;}
.ybb{bottom:674.813333pt;}
.y86{bottom:676.093333pt;}
.y49{bottom:682.173333pt;}
.y35{bottom:682.493333pt;}
.y9c{bottom:684.253333pt;}
.y6d{bottom:685.213333pt;}
.y1c{bottom:689.853333pt;}
.yba{bottom:693.213333pt;}
.y85{bottom:694.493333pt;}
.y2{bottom:698.656000pt;}
.ydc{bottom:700.893333pt;}
.y9b{bottom:702.653333pt;}
.y6c{bottom:703.613333pt;}
.y1b{bottom:708.253333pt;}
.yb9{bottom:711.613333pt;}
.y84{bottom:712.893333pt;}
.y34{bottom:719.293333pt;}
.y9a{bottom:720.733333pt;}
.y6b{bottom:722.013333pt;}
.y1a{bottom:726.653333pt;}
.y83{bottom:731.293333pt;}
.yd3{bottom:732.106667pt;}
.y6a{bottom:736.573333pt;}
.ydb{bottom:737.693333pt;}
.y19{bottom:745.053333pt;}
.y82{bottom:749.693333pt;}
.y1{bottom:751.792000pt;}
.y99{bottom:754.013333pt;}
.y56{bottom:755.773333pt;}
.y33{bottom:756.093333pt;}
.y18{bottom:763.453333pt;}
.y81{bottom:764.093333pt;}
.y68{bottom:774.533333pt;}
.y17{bottom:781.893333pt;}
.yd2{bottom:782.373333pt;}
.y4b{bottom:792.613333pt;}
.y32{bottom:792.933333pt;}
.y16{bottom:800.293333pt;}
.yda{bottom:811.333333pt;}
.y15{bottom:818.693333pt;}
.y31{bottom:829.733333pt;}
.yd1{bottom:832.453333pt;}
.y14{bottom:837.093333pt;}
.yd9{bottom:848.133333pt;}
.y13{bottom:855.493333pt;}
.y30{bottom:866.533333pt;}
.y12{bottom:873.893333pt;}
.yce{bottom:882.533333pt;}
.yd8{bottom:884.933333pt;}
.y11{bottom:892.293333pt;}
.y46{bottom:903.013333pt;}
.y2f{bottom:903.333333pt;}
.y10{bottom:912.933333pt;}
.yd7{bottom:921.733333pt;}
.yca{bottom:932.773333pt;}
.yf{bottom:934.053333pt;}
.y2e{bottom:940.133333pt;}
.ye{bottom:955.173333pt;}
.yd6{bottom:958.533333pt;}
.yd{bottom:976.453333pt;}
.y2d{bottom:976.613333pt;}
.y45{bottom:976.933333pt;}
.ycc{bottom:980.453333pt;}
.y69{bottom:995.333333pt;}
.yc{bottom:1013.440000pt;}
.y44{bottom:1013.760000pt;}
.y8{bottom:1042.560000pt;}
.y7{bottom:1060.960000pt;}
.h1a{height:36.786667pt;}
.h19{height:36.826667pt;}
.h1c{height:39.186667pt;}
.h1d{height:39.218667pt;}
.h17{height:41.630061pt;}
.hc{height:44.687500pt;}
.h14{height:45.190108pt;}
.h12{height:45.887269pt;}
.h13{height:47.017243pt;}
.h3{height:47.374076pt;}
.h4{height:51.045785pt;}
.h5{height:51.322081pt;}
.h10{height:56.820000pt;}
.h16{height:58.345099pt;}
.h15{height:59.571203pt;}
.ha{height:62.781250pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h18{height:66.383042pt;}
.hb{height:66.404375pt;}
.h2{height:70.679142pt;}
.hd{height:76.055625pt;}
.h1b{height:84.506667pt;}
.hf{height:88.883750pt;}
.he{height:96.500000pt;}
.h11{height:299.208453pt;}
.h0{height:1043.146667pt;}
.h1{height:1043.333333pt;}
.h6{height:1122.560000pt;}
.h7{height:1122.666667pt;}
.w7{width:90.712000pt;}
.wa{width:90.738667pt;}
.wd{width:112.018667pt;}
.wc{width:112.146667pt;}
.wb{width:125.952000pt;}
.w5{width:177.146667pt;}
.w6{width:178.093333pt;}
.w4{width:178.733333pt;}
.w8{width:217.973333pt;}
.w9{width:225.453333pt;}
.w3{width:283.055722pt;}
.w0{width:793.706667pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:8.946667pt;}
.x13{left:29.170700pt;}
.x11{left:40.310959pt;}
.x10{left:46.474804pt;}
.x2{left:63.948000pt;}
.xf{left:73.540514pt;}
.x15{left:85.254440pt;}
.x4{left:94.432000pt;}
.x14{left:108.722389pt;}
.x6{left:117.792000pt;}
.x17{left:128.520000pt;}
.x1f{left:137.146667pt;}
.x7{left:145.146667pt;}
.x12{left:214.539428pt;}
.x1b{left:220.520000pt;}
.xe{left:255.280000pt;}
.x1{left:276.984000pt;}
.x18{left:308.546667pt;}
.x1d{left:312.546667pt;}
.x8{left:388.866667pt;}
.x5{left:392.866667pt;}
.x3{left:396.866667pt;}
.x1c{left:439.786667pt;}
.x19{left:487.146667pt;}
.x9{left:530.013333pt;}
.xc{left:532.093333pt;}
.xd{left:534.493333pt;}
.x16{left:538.333333pt;}
.x1e{left:553.226667pt;}
.xb{left:698.693333pt;}
.xa{left:724.133333pt;}
}




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