
    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_604105788a6613bbf896e67c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_8d3e557eb5911082bd61ff36.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_c178c056539ea90374f3751f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_9de7a59c8267e23186249e66.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.085400px;}
.v1{vertical-align:81.000000px;}
.ls2f{letter-spacing:-6.624000px;}
.ls24{letter-spacing:-5.451000px;}
.ls4e{letter-spacing:-2.457000px;}
.ls48{letter-spacing:-1.449000px;}
.ls3e{letter-spacing:-1.035000px;}
.ls3a{letter-spacing:-0.966000px;}
.ls3f{letter-spacing:-0.897000px;}
.ls16{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.759000px;}
.lsc{letter-spacing:-0.690000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls3d{letter-spacing:-0.621000px;}
.ls22{letter-spacing:-0.552000px;}
.ls23{letter-spacing:-0.483000px;}
.ls30{letter-spacing:-0.414000px;}
.ls51{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.345000px;}
.ls50{letter-spacing:-0.315000px;}
.ls9{letter-spacing:-0.276000px;}
.ls14{letter-spacing:-0.207000px;}
.ls8{letter-spacing:-0.138000px;}
.ls17{letter-spacing:-0.069000px;}
.ls7{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.063000px;}
.ls3{letter-spacing:0.069000px;}
.ls4b{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.138000px;}
.ls1a{letter-spacing:0.207000px;}
.ls32{letter-spacing:0.276000px;}
.ls36{letter-spacing:0.345000px;}
.ls35{letter-spacing:0.414000px;}
.ls44{letter-spacing:0.483000px;}
.ls2c{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.621000px;}
.ls4{letter-spacing:0.690000px;}
.ls6{letter-spacing:0.759000px;}
.ls5{letter-spacing:0.828000px;}
.ls46{letter-spacing:0.897000px;}
.ls2e{letter-spacing:1.035000px;}
.ls1b{letter-spacing:1.104000px;}
.ls38{letter-spacing:1.863000px;}
.ls27{letter-spacing:2.208000px;}
.ls39{letter-spacing:2.415000px;}
.ls1e{letter-spacing:2.553000px;}
.ls11{letter-spacing:2.622000px;}
.ls10{letter-spacing:2.691000px;}
.ls13{letter-spacing:2.730000px;}
.ls1c{letter-spacing:2.760000px;}
.ls41{letter-spacing:2.967000px;}
.ls26{letter-spacing:3.105000px;}
.ls40{letter-spacing:3.243000px;}
.ls33{letter-spacing:3.312000px;}
.ls34{letter-spacing:3.381000px;}
.ls3b{letter-spacing:3.864000px;}
.ls0{letter-spacing:3.900000px;}
.ls31{letter-spacing:4.140000px;}
.ls29{letter-spacing:4.209000px;}
.ls2a{letter-spacing:4.278000px;}
.ls43{letter-spacing:4.830000px;}
.ls4c{letter-spacing:5.400000px;}
.ls1d{letter-spacing:5.451000px;}
.ls19{letter-spacing:5.589000px;}
.ls1f{letter-spacing:5.658000px;}
.ls1{letter-spacing:6.000000px;}
.lsd{letter-spacing:6.240000px;}
.ls18{letter-spacing:6.279000px;}
.ls49{letter-spacing:6.300000px;}
.ls45{letter-spacing:6.348000px;}
.lsf{letter-spacing:6.555000px;}
.ls20{letter-spacing:6.624000px;}
.ls2d{letter-spacing:6.693000px;}
.ls3c{letter-spacing:7.245000px;}
.lse{letter-spacing:7.727400px;}
.ls37{letter-spacing:7.797000px;}
.ls2{letter-spacing:7.967074px;}
.ls21{letter-spacing:8.142000px;}
.ls42{letter-spacing:8.211000px;}
.ls25{letter-spacing:8.418000px;}
.ls28{letter-spacing:8.625000px;}
.ls2b{letter-spacing:8.694000px;}
.ls4f{letter-spacing:9.072000px;}
.ls47{letter-spacing:9.246000px;}
.ls52{letter-spacing:9.450000px;}
.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;}
}
.ws21{word-spacing:-24.003000px;}
.ws0{word-spacing:-21.075000px;}
.ws10{word-spacing:-19.596000px;}
.ws11{word-spacing:-19.527000px;}
.ws5{word-spacing:-19.389000px;}
.wsd{word-spacing:-19.320000px;}
.ws1c{word-spacing:-19.182000px;}
.wsb{word-spacing:-19.044000px;}
.ws1e{word-spacing:-18.699000px;}
.ws6{word-spacing:-18.630000px;}
.ws7{word-spacing:-18.561000px;}
.ws18{word-spacing:-18.354000px;}
.ws20{word-spacing:-17.802000px;}
.ws22{word-spacing:-17.703000px;}
.ws1f{word-spacing:-17.526000px;}
.ws1a{word-spacing:-17.388000px;}
.ws23{word-spacing:-17.325000px;}
.ws12{word-spacing:-17.319000px;}
.wsf{word-spacing:-17.250000px;}
.ws13{word-spacing:-17.181000px;}
.ws14{word-spacing:-17.112000px;}
.ws4{word-spacing:-17.043000px;}
.wse{word-spacing:-16.974000px;}
.ws8{word-spacing:-16.905000px;}
.ws1b{word-spacing:-16.767000px;}
.ws2{word-spacing:-16.698000px;}
.ws16{word-spacing:-16.629000px;}
.wsc{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.491000px;}
.ws17{word-spacing:-16.422000px;}
.ws1{word-spacing:-16.353000px;}
.wsa{word-spacing:-16.284000px;}
.ws19{word-spacing:-16.146000px;}
.ws15{word-spacing:-16.077000px;}
.ws9{word-spacing:-10.225800px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1615.748400px;}
._f{margin-left:-17.112000px;}
._a{margin-left:-14.472000px;}
._12{margin-left:-13.104000px;}
._8{margin-left:-11.124000px;}
._11{margin-left:-9.450000px;}
._7{margin-left:-8.208000px;}
._e{margin-left:-6.999000px;}
._5{margin-left:-5.220000px;}
._b{margin-left:-3.720000px;}
._2{margin-left:-1.800000px;}
._6{width:1.560000px;}
._d{width:2.979000px;}
._1{width:4.080000px;}
._3{width:6.000000px;}
._9{width:7.668000px;}
._c{width:9.660000px;}
._4{width:11.580000px;}
._10{width:13.749000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:41.400000px;}
.fs9{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y24{bottom:77.948850px;}
.y1{bottom:77.960550px;}
.y23{bottom:129.601800px;}
.y4d{bottom:131.286750px;}
.y52{bottom:131.291400px;}
.y9f{bottom:131.352600px;}
.y7b{bottom:131.411100px;}
.ybb{bottom:131.424600px;}
.yd9{bottom:131.457900px;}
.yd8{bottom:131.469600px;}
.y22{bottom:149.853300px;}
.y51{bottom:151.611900px;}
.y9e{bottom:151.673100px;}
.y7a{bottom:151.731600px;}
.yba{bottom:151.745100px;}
.y4c{bottom:151.778400px;}
.yd7{bottom:151.790100px;}
.y21{bottom:170.104800px;}
.y50{bottom:171.936900px;}
.y9d{bottom:171.993600px;}
.y79{bottom:172.052100px;}
.yb9{bottom:172.065600px;}
.y4b{bottom:172.098900px;}
.yd6{bottom:172.110600px;}
.y20{bottom:190.356300px;}
.y4f{bottom:192.261900px;}
.y9c{bottom:192.314100px;}
.y78{bottom:192.372600px;}
.yb8{bottom:192.386100px;}
.y4a{bottom:192.419400px;}
.yd5{bottom:192.431100px;}
.y1f{bottom:210.607800px;}
.y9b{bottom:212.634600px;}
.y77{bottom:212.693100px;}
.yb7{bottom:212.706600px;}
.y49{bottom:212.739900px;}
.yd4{bottom:212.751600px;}
.y1e{bottom:230.859300px;}
.y9a{bottom:232.955100px;}
.y76{bottom:233.013600px;}
.yb6{bottom:233.027100px;}
.y48{bottom:233.060400px;}
.yd3{bottom:233.072100px;}
.yee{bottom:237.423750px;}
.y1d{bottom:251.110800px;}
.y99{bottom:253.275600px;}
.y75{bottom:253.334100px;}
.yb5{bottom:253.347600px;}
.y47{bottom:253.380900px;}
.yd2{bottom:253.392600px;}
.yed{bottom:257.673750px;}
.y1c{bottom:271.362300px;}
.y98{bottom:273.596100px;}
.y74{bottom:273.654600px;}
.yb4{bottom:273.668100px;}
.y46{bottom:273.701400px;}
.yd1{bottom:273.713100px;}
.yec{bottom:277.923750px;}
.y1b{bottom:291.613800px;}
.y97{bottom:293.916600px;}
.y73{bottom:293.975100px;}
.yb3{bottom:293.988600px;}
.y45{bottom:294.021900px;}
.yd0{bottom:294.033600px;}
.yeb{bottom:298.173750px;}
.y1a{bottom:311.865300px;}
.y96{bottom:314.237100px;}
.y72{bottom:314.295600px;}
.yb2{bottom:314.309100px;}
.y44{bottom:314.342400px;}
.ycf{bottom:314.354100px;}
.yea{bottom:318.423750px;}
.y19{bottom:332.116800px;}
.y95{bottom:334.557600px;}
.y71{bottom:334.616100px;}
.yb1{bottom:334.629600px;}
.y43{bottom:334.662900px;}
.yce{bottom:334.674600px;}
.y18{bottom:352.368300px;}
.ye9{bottom:353.673750px;}
.y94{bottom:354.878100px;}
.y70{bottom:354.936600px;}
.yb0{bottom:354.950100px;}
.y42{bottom:354.983400px;}
.ycd{bottom:354.995100px;}
.y17{bottom:372.619800px;}
.y93{bottom:375.198600px;}
.y6f{bottom:375.257100px;}
.yaf{bottom:375.270600px;}
.y41{bottom:375.303900px;}
.ycc{bottom:375.315600px;}
.y16{bottom:392.871300px;}
.y92{bottom:395.568600px;}
.y6e{bottom:395.577600px;}
.yae{bottom:395.591100px;}
.y40{bottom:395.624400px;}
.ycb{bottom:395.636100px;}
.ye8{bottom:403.921650px;}
.y15{bottom:413.122800px;}
.y91{bottom:415.889100px;}
.y6d{bottom:415.898100px;}
.yad{bottom:415.911600px;}
.y3f{bottom:415.944900px;}
.yca{bottom:415.956600px;}
.ye7{bottom:431.625900px;}
.y14{bottom:433.374300px;}
.y90{bottom:436.209600px;}
.y6c{bottom:436.218600px;}
.yac{bottom:436.232100px;}
.y3e{bottom:436.265400px;}
.yc9{bottom:436.277100px;}
.ye6{bottom:450.825150px;}
.y13{bottom:453.625800px;}
.y8f{bottom:456.530100px;}
.y6b{bottom:456.539100px;}
.yab{bottom:456.552600px;}
.y3d{bottom:456.585900px;}
.yc8{bottom:456.597600px;}
.y12{bottom:473.877300px;}
.y8e{bottom:476.850600px;}
.y6a{bottom:476.859600px;}
.yaa{bottom:476.873100px;}
.y3c{bottom:476.906400px;}
.yc7{bottom:476.918100px;}
.ye5{bottom:478.529400px;}
.y11{bottom:494.128800px;}
.y8d{bottom:497.171100px;}
.y69{bottom:497.180100px;}
.ya9{bottom:497.193600px;}
.y3b{bottom:497.226900px;}
.yc6{bottom:497.238600px;}
.ye4{bottom:497.728650px;}
.y10{bottom:514.380300px;}
.y8c{bottom:517.491600px;}
.y68{bottom:517.500600px;}
.ya8{bottom:517.514100px;}
.y3a{bottom:517.547400px;}
.yc5{bottom:517.559100px;}
.ye3{bottom:525.432900px;}
.yf{bottom:534.631800px;}
.y8b{bottom:537.812100px;}
.y67{bottom:537.821100px;}
.ya7{bottom:537.834600px;}
.y39{bottom:537.867900px;}
.yc4{bottom:537.879600px;}
.ye2{bottom:544.632150px;}
.ye{bottom:554.883300px;}
.yd{bottom:554.884800px;}
.y8a{bottom:558.132600px;}
.y66{bottom:558.141600px;}
.ya6{bottom:558.155100px;}
.y38{bottom:558.188400px;}
.yc3{bottom:558.200100px;}
.ye1{bottom:572.336400px;}
.y89{bottom:578.453100px;}
.y65{bottom:578.462100px;}
.ya5{bottom:578.475600px;}
.y37{bottom:578.508900px;}
.yc2{bottom:578.520600px;}
.y88{bottom:598.773600px;}
.y64{bottom:598.782600px;}
.ya4{bottom:598.796100px;}
.y36{bottom:598.829400px;}
.yc1{bottom:598.841100px;}
.ye0{bottom:600.040650px;}
.yc{bottom:616.736700px;}
.y63{bottom:619.103100px;}
.ya3{bottom:619.116600px;}
.y87{bottom:619.143600px;}
.y35{bottom:619.149900px;}
.yc0{bottom:619.161600px;}
.ydf{bottom:619.239900px;}
.yb{bottom:635.636700px;}
.y62{bottom:639.423600px;}
.ya2{bottom:639.437100px;}
.y86{bottom:639.464100px;}
.y34{bottom:639.470400px;}
.ybf{bottom:639.482100px;}
.yde{bottom:653.433150px;}
.y61{bottom:659.753100px;}
.ya1{bottom:659.757600px;}
.y85{bottom:659.784600px;}
.y33{bottom:659.790900px;}
.ybe{bottom:659.802600px;}
.ya{bottom:668.945700px;}
.y60{bottom:680.073600px;}
.ya0{bottom:680.078100px;}
.y84{bottom:680.105100px;}
.y32{bottom:680.111400px;}
.ybd{bottom:680.123100px;}
.y9{bottom:693.536700px;}
.y5f{bottom:700.398600px;}
.y83{bottom:700.425600px;}
.y31{bottom:700.431900px;}
.ybc{bottom:700.443600px;}
.ydd{bottom:702.651900px;}
.y82{bottom:720.746100px;}
.y30{bottom:720.752400px;}
.y5e{bottom:720.764100px;}
.ydc{bottom:721.851150px;}
.y8{bottom:732.524700px;}
.ydb{bottom:741.050400px;}
.y81{bottom:741.066600px;}
.y2f{bottom:741.072900px;}
.y5d{bottom:741.084600px;}
.y80{bottom:761.387100px;}
.y2e{bottom:761.393400px;}
.y5c{bottom:761.405100px;}
.y7{bottom:764.330700px;}
.yda{bottom:773.432400px;}
.y7f{bottom:781.707600px;}
.y2d{bottom:781.713900px;}
.y5b{bottom:781.725600px;}
.y6{bottom:796.136700px;}
.y7e{bottom:802.028100px;}
.y2c{bottom:802.034400px;}
.y5a{bottom:802.046100px;}
.y7d{bottom:822.348600px;}
.y2b{bottom:822.354900px;}
.y59{bottom:822.366600px;}
.y2a{bottom:842.675400px;}
.y58{bottom:842.687100px;}
.y5{bottom:862.131600px;}
.y29{bottom:862.995900px;}
.y57{bottom:863.007600px;}
.y4{bottom:879.531600px;}
.y28{bottom:883.316400px;}
.y56{bottom:883.328100px;}
.y27{bottom:903.636900px;}
.y55{bottom:903.648600px;}
.y3{bottom:907.566600px;}
.y26{bottom:923.957400px;}
.y54{bottom:923.969100px;}
.y2{bottom:924.966600px;}
.y25{bottom:969.664200px;}
.y53{bottom:969.675900px;}
.y4e{bottom:987.664200px;}
.y7c{bottom:987.675900px;}
.h9{height:46.312500px;}
.he{height:50.947266px;}
.hb{height:51.745605px;}
.hd{height:52.101562px;}
.h2{height:57.890625px;}
.h3{height:60.785156px;}
.ha{height:65.944219px;}
.hc{height:66.394219px;}
.h7{height:66.574219px;}
.h8{height:72.363281px;}
.h5{height:81.046875px;}
.h4{height:104.203125px;}
.h6{height:192.206716px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x5{left:106.309312px;}
.x7{left:127.602900px;}
.x4{left:130.317000px;}
.x8{left:228.561525px;}
.x2{left:233.858250px;}
.x6{left:255.118050px;}
.x9{left:372.066862px;}
.xa{left:386.954550px;}
.xb{left:515.572200px;}
.x1{left:609.670350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.631467pt;}
.v1{vertical-align:72.000000pt;}
.ls2f{letter-spacing:-5.888000pt;}
.ls24{letter-spacing:-4.845333pt;}
.ls4e{letter-spacing:-2.184000pt;}
.ls48{letter-spacing:-1.288000pt;}
.ls3e{letter-spacing:-0.920000pt;}
.ls3a{letter-spacing:-0.858667pt;}
.ls3f{letter-spacing:-0.797333pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.674667pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls3d{letter-spacing:-0.552000pt;}
.ls22{letter-spacing:-0.490667pt;}
.ls23{letter-spacing:-0.429333pt;}
.ls30{letter-spacing:-0.368000pt;}
.ls51{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.306667pt;}
.ls50{letter-spacing:-0.280000pt;}
.ls9{letter-spacing:-0.245333pt;}
.ls14{letter-spacing:-0.184000pt;}
.ls8{letter-spacing:-0.122667pt;}
.ls17{letter-spacing:-0.061333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.056000pt;}
.ls3{letter-spacing:0.061333pt;}
.ls4b{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.122667pt;}
.ls1a{letter-spacing:0.184000pt;}
.ls32{letter-spacing:0.245333pt;}
.ls36{letter-spacing:0.306667pt;}
.ls35{letter-spacing:0.368000pt;}
.ls44{letter-spacing:0.429333pt;}
.ls2c{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.552000pt;}
.ls4{letter-spacing:0.613333pt;}
.ls6{letter-spacing:0.674667pt;}
.ls5{letter-spacing:0.736000pt;}
.ls46{letter-spacing:0.797333pt;}
.ls2e{letter-spacing:0.920000pt;}
.ls1b{letter-spacing:0.981333pt;}
.ls38{letter-spacing:1.656000pt;}
.ls27{letter-spacing:1.962667pt;}
.ls39{letter-spacing:2.146667pt;}
.ls1e{letter-spacing:2.269333pt;}
.ls11{letter-spacing:2.330667pt;}
.ls10{letter-spacing:2.392000pt;}
.ls13{letter-spacing:2.426667pt;}
.ls1c{letter-spacing:2.453333pt;}
.ls41{letter-spacing:2.637333pt;}
.ls26{letter-spacing:2.760000pt;}
.ls40{letter-spacing:2.882667pt;}
.ls33{letter-spacing:2.944000pt;}
.ls34{letter-spacing:3.005333pt;}
.ls3b{letter-spacing:3.434667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls31{letter-spacing:3.680000pt;}
.ls29{letter-spacing:3.741333pt;}
.ls2a{letter-spacing:3.802667pt;}
.ls43{letter-spacing:4.293333pt;}
.ls4c{letter-spacing:4.800000pt;}
.ls1d{letter-spacing:4.845333pt;}
.ls19{letter-spacing:4.968000pt;}
.ls1f{letter-spacing:5.029333pt;}
.ls1{letter-spacing:5.333333pt;}
.lsd{letter-spacing:5.546667pt;}
.ls18{letter-spacing:5.581333pt;}
.ls49{letter-spacing:5.600000pt;}
.ls45{letter-spacing:5.642667pt;}
.lsf{letter-spacing:5.826667pt;}
.ls20{letter-spacing:5.888000pt;}
.ls2d{letter-spacing:5.949333pt;}
.ls3c{letter-spacing:6.440000pt;}
.lse{letter-spacing:6.868800pt;}
.ls37{letter-spacing:6.930667pt;}
.ls2{letter-spacing:7.081844pt;}
.ls21{letter-spacing:7.237333pt;}
.ls42{letter-spacing:7.298667pt;}
.ls25{letter-spacing:7.482667pt;}
.ls28{letter-spacing:7.666667pt;}
.ls2b{letter-spacing:7.728000pt;}
.ls4f{letter-spacing:8.064000pt;}
.ls47{letter-spacing:8.218667pt;}
.ls52{letter-spacing:8.400000pt;}
.ws21{word-spacing:-21.336000pt;}
.ws0{word-spacing:-18.733333pt;}
.ws10{word-spacing:-17.418667pt;}
.ws11{word-spacing:-17.357333pt;}
.ws5{word-spacing:-17.234667pt;}
.wsd{word-spacing:-17.173333pt;}
.ws1c{word-spacing:-17.050667pt;}
.wsb{word-spacing:-16.928000pt;}
.ws1e{word-spacing:-16.621333pt;}
.ws6{word-spacing:-16.560000pt;}
.ws7{word-spacing:-16.498667pt;}
.ws18{word-spacing:-16.314667pt;}
.ws20{word-spacing:-15.824000pt;}
.ws22{word-spacing:-15.736000pt;}
.ws1f{word-spacing:-15.578667pt;}
.ws1a{word-spacing:-15.456000pt;}
.ws23{word-spacing:-15.400000pt;}
.ws12{word-spacing:-15.394667pt;}
.wsf{word-spacing:-15.333333pt;}
.ws13{word-spacing:-15.272000pt;}
.ws14{word-spacing:-15.210667pt;}
.ws4{word-spacing:-15.149333pt;}
.wse{word-spacing:-15.088000pt;}
.ws8{word-spacing:-15.026667pt;}
.ws1b{word-spacing:-14.904000pt;}
.ws2{word-spacing:-14.842667pt;}
.ws16{word-spacing:-14.781333pt;}
.wsc{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.658667pt;}
.ws17{word-spacing:-14.597333pt;}
.ws1{word-spacing:-14.536000pt;}
.wsa{word-spacing:-14.474667pt;}
.ws19{word-spacing:-14.352000pt;}
.ws15{word-spacing:-14.290667pt;}
.ws9{word-spacing:-9.089600pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1436.220800pt;}
._f{margin-left:-15.210667pt;}
._a{margin-left:-12.864000pt;}
._12{margin-left:-11.648000pt;}
._8{margin-left:-9.888000pt;}
._11{margin-left:-8.400000pt;}
._7{margin-left:-7.296000pt;}
._e{margin-left:-6.221333pt;}
._5{margin-left:-4.640000pt;}
._b{margin-left:-3.306667pt;}
._2{margin-left:-1.600000pt;}
._6{width:1.386667pt;}
._d{width:2.648000pt;}
._1{width:3.626667pt;}
._3{width:5.333333pt;}
._9{width:6.816000pt;}
._c{width:8.586667pt;}
._4{width:10.293333pt;}
._10{width:12.221333pt;}
.fsa{font-size:36.800000pt;}
.fs9{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:69.287867pt;}
.y1{bottom:69.298267pt;}
.y23{bottom:115.201600pt;}
.y4d{bottom:116.699333pt;}
.y52{bottom:116.703467pt;}
.y9f{bottom:116.757867pt;}
.y7b{bottom:116.809867pt;}
.ybb{bottom:116.821867pt;}
.yd9{bottom:116.851467pt;}
.yd8{bottom:116.861867pt;}
.y22{bottom:133.202933pt;}
.y51{bottom:134.766133pt;}
.y9e{bottom:134.820533pt;}
.y7a{bottom:134.872533pt;}
.yba{bottom:134.884533pt;}
.y4c{bottom:134.914133pt;}
.yd7{bottom:134.924533pt;}
.y21{bottom:151.204267pt;}
.y50{bottom:152.832800pt;}
.y9d{bottom:152.883200pt;}
.y79{bottom:152.935200pt;}
.yb9{bottom:152.947200pt;}
.y4b{bottom:152.976800pt;}
.yd6{bottom:152.987200pt;}
.y20{bottom:169.205600pt;}
.y4f{bottom:170.899467pt;}
.y9c{bottom:170.945867pt;}
.y78{bottom:170.997867pt;}
.yb8{bottom:171.009867pt;}
.y4a{bottom:171.039467pt;}
.yd5{bottom:171.049867pt;}
.y1f{bottom:187.206933pt;}
.y9b{bottom:189.008533pt;}
.y77{bottom:189.060533pt;}
.yb7{bottom:189.072533pt;}
.y49{bottom:189.102133pt;}
.yd4{bottom:189.112533pt;}
.y1e{bottom:205.208267pt;}
.y9a{bottom:207.071200pt;}
.y76{bottom:207.123200pt;}
.yb6{bottom:207.135200pt;}
.y48{bottom:207.164800pt;}
.yd3{bottom:207.175200pt;}
.yee{bottom:211.043333pt;}
.y1d{bottom:223.209600pt;}
.y99{bottom:225.133867pt;}
.y75{bottom:225.185867pt;}
.yb5{bottom:225.197867pt;}
.y47{bottom:225.227467pt;}
.yd2{bottom:225.237867pt;}
.yed{bottom:229.043333pt;}
.y1c{bottom:241.210933pt;}
.y98{bottom:243.196533pt;}
.y74{bottom:243.248533pt;}
.yb4{bottom:243.260533pt;}
.y46{bottom:243.290133pt;}
.yd1{bottom:243.300533pt;}
.yec{bottom:247.043333pt;}
.y1b{bottom:259.212267pt;}
.y97{bottom:261.259200pt;}
.y73{bottom:261.311200pt;}
.yb3{bottom:261.323200pt;}
.y45{bottom:261.352800pt;}
.yd0{bottom:261.363200pt;}
.yeb{bottom:265.043333pt;}
.y1a{bottom:277.213600pt;}
.y96{bottom:279.321867pt;}
.y72{bottom:279.373867pt;}
.yb2{bottom:279.385867pt;}
.y44{bottom:279.415467pt;}
.ycf{bottom:279.425867pt;}
.yea{bottom:283.043333pt;}
.y19{bottom:295.214933pt;}
.y95{bottom:297.384533pt;}
.y71{bottom:297.436533pt;}
.yb1{bottom:297.448533pt;}
.y43{bottom:297.478133pt;}
.yce{bottom:297.488533pt;}
.y18{bottom:313.216267pt;}
.ye9{bottom:314.376667pt;}
.y94{bottom:315.447200pt;}
.y70{bottom:315.499200pt;}
.yb0{bottom:315.511200pt;}
.y42{bottom:315.540800pt;}
.ycd{bottom:315.551200pt;}
.y17{bottom:331.217600pt;}
.y93{bottom:333.509867pt;}
.y6f{bottom:333.561867pt;}
.yaf{bottom:333.573867pt;}
.y41{bottom:333.603467pt;}
.ycc{bottom:333.613867pt;}
.y16{bottom:349.218933pt;}
.y92{bottom:351.616533pt;}
.y6e{bottom:351.624533pt;}
.yae{bottom:351.636533pt;}
.y40{bottom:351.666133pt;}
.ycb{bottom:351.676533pt;}
.ye8{bottom:359.041467pt;}
.y15{bottom:367.220267pt;}
.y91{bottom:369.679200pt;}
.y6d{bottom:369.687200pt;}
.yad{bottom:369.699200pt;}
.y3f{bottom:369.728800pt;}
.yca{bottom:369.739200pt;}
.ye7{bottom:383.667467pt;}
.y14{bottom:385.221600pt;}
.y90{bottom:387.741867pt;}
.y6c{bottom:387.749867pt;}
.yac{bottom:387.761867pt;}
.y3e{bottom:387.791467pt;}
.yc9{bottom:387.801867pt;}
.ye6{bottom:400.733467pt;}
.y13{bottom:403.222933pt;}
.y8f{bottom:405.804533pt;}
.y6b{bottom:405.812533pt;}
.yab{bottom:405.824533pt;}
.y3d{bottom:405.854133pt;}
.yc8{bottom:405.864533pt;}
.y12{bottom:421.224267pt;}
.y8e{bottom:423.867200pt;}
.y6a{bottom:423.875200pt;}
.yaa{bottom:423.887200pt;}
.y3c{bottom:423.916800pt;}
.yc7{bottom:423.927200pt;}
.ye5{bottom:425.359467pt;}
.y11{bottom:439.225600pt;}
.y8d{bottom:441.929867pt;}
.y69{bottom:441.937867pt;}
.ya9{bottom:441.949867pt;}
.y3b{bottom:441.979467pt;}
.yc6{bottom:441.989867pt;}
.ye4{bottom:442.425467pt;}
.y10{bottom:457.226933pt;}
.y8c{bottom:459.992533pt;}
.y68{bottom:460.000533pt;}
.ya8{bottom:460.012533pt;}
.y3a{bottom:460.042133pt;}
.yc5{bottom:460.052533pt;}
.ye3{bottom:467.051467pt;}
.yf{bottom:475.228267pt;}
.y8b{bottom:478.055200pt;}
.y67{bottom:478.063200pt;}
.ya7{bottom:478.075200pt;}
.y39{bottom:478.104800pt;}
.yc4{bottom:478.115200pt;}
.ye2{bottom:484.117467pt;}
.ye{bottom:493.229600pt;}
.yd{bottom:493.230933pt;}
.y8a{bottom:496.117867pt;}
.y66{bottom:496.125867pt;}
.ya6{bottom:496.137867pt;}
.y38{bottom:496.167467pt;}
.yc3{bottom:496.177867pt;}
.ye1{bottom:508.743467pt;}
.y89{bottom:514.180533pt;}
.y65{bottom:514.188533pt;}
.ya5{bottom:514.200533pt;}
.y37{bottom:514.230133pt;}
.yc2{bottom:514.240533pt;}
.y88{bottom:532.243200pt;}
.y64{bottom:532.251200pt;}
.ya4{bottom:532.263200pt;}
.y36{bottom:532.292800pt;}
.yc1{bottom:532.303200pt;}
.ye0{bottom:533.369467pt;}
.yc{bottom:548.210400pt;}
.y63{bottom:550.313867pt;}
.ya3{bottom:550.325867pt;}
.y87{bottom:550.349867pt;}
.y35{bottom:550.355467pt;}
.yc0{bottom:550.365867pt;}
.ydf{bottom:550.435467pt;}
.yb{bottom:565.010400pt;}
.y62{bottom:568.376533pt;}
.ya2{bottom:568.388533pt;}
.y86{bottom:568.412533pt;}
.y34{bottom:568.418133pt;}
.ybf{bottom:568.428533pt;}
.yde{bottom:580.829467pt;}
.y61{bottom:586.447200pt;}
.ya1{bottom:586.451200pt;}
.y85{bottom:586.475200pt;}
.y33{bottom:586.480800pt;}
.ybe{bottom:586.491200pt;}
.ya{bottom:594.618400pt;}
.y60{bottom:604.509867pt;}
.ya0{bottom:604.513867pt;}
.y84{bottom:604.537867pt;}
.y32{bottom:604.543467pt;}
.ybd{bottom:604.553867pt;}
.y9{bottom:616.477067pt;}
.y5f{bottom:622.576533pt;}
.y83{bottom:622.600533pt;}
.y31{bottom:622.606133pt;}
.ybc{bottom:622.616533pt;}
.ydd{bottom:624.579467pt;}
.y82{bottom:640.663200pt;}
.y30{bottom:640.668800pt;}
.y5e{bottom:640.679200pt;}
.ydc{bottom:641.645467pt;}
.y8{bottom:651.133067pt;}
.ydb{bottom:658.711467pt;}
.y81{bottom:658.725867pt;}
.y2f{bottom:658.731467pt;}
.y5d{bottom:658.741867pt;}
.y80{bottom:676.788533pt;}
.y2e{bottom:676.794133pt;}
.y5c{bottom:676.804533pt;}
.y7{bottom:679.405067pt;}
.yda{bottom:687.495467pt;}
.y7f{bottom:694.851200pt;}
.y2d{bottom:694.856800pt;}
.y5b{bottom:694.867200pt;}
.y6{bottom:707.677067pt;}
.y7e{bottom:712.913867pt;}
.y2c{bottom:712.919467pt;}
.y5a{bottom:712.929867pt;}
.y7d{bottom:730.976533pt;}
.y2b{bottom:730.982133pt;}
.y59{bottom:730.992533pt;}
.y2a{bottom:749.044800pt;}
.y58{bottom:749.055200pt;}
.y5{bottom:766.339200pt;}
.y29{bottom:767.107467pt;}
.y57{bottom:767.117867pt;}
.y4{bottom:781.805867pt;}
.y28{bottom:785.170133pt;}
.y56{bottom:785.180533pt;}
.y27{bottom:803.232800pt;}
.y55{bottom:803.243200pt;}
.y3{bottom:806.725867pt;}
.y26{bottom:821.295467pt;}
.y54{bottom:821.305867pt;}
.y2{bottom:822.192533pt;}
.y25{bottom:861.923733pt;}
.y53{bottom:861.934133pt;}
.y4e{bottom:877.923733pt;}
.y7c{bottom:877.934133pt;}
.h9{height:41.166667pt;}
.he{height:45.286458pt;}
.hb{height:45.996094pt;}
.hd{height:46.312500pt;}
.h2{height:51.458333pt;}
.h3{height:54.031250pt;}
.ha{height:58.617083pt;}
.hc{height:59.017083pt;}
.h7{height:59.177083pt;}
.h8{height:64.322917pt;}
.h5{height:72.041667pt;}
.h4{height:92.625000pt;}
.h6{height:170.850415pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x5{left:94.497167pt;}
.x7{left:113.424800pt;}
.x4{left:115.837333pt;}
.x8{left:203.165800pt;}
.x2{left:207.874000pt;}
.x6{left:226.771600pt;}
.x9{left:330.726100pt;}
.xa{left:343.959600pt;}
.xb{left:458.286400pt;}
.x1{left:541.929200pt;}
}




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