
    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_2892b231f5160b854fca36d1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_345ca2597ab3a912f5d0bdda.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e4dd85e06416288e976570f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_a2eae03edc3c9cab0e5d60ce.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_43f7e7ef205f0df8892a0d49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_30ff44c0d308d7527d1e50b6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_bfa6df971ba89f1b05f4935d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_bdf2fd8492da1d8407c3cd9c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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:ffc;src:url('chunks/assets/font_5cb6f8a6e7993e6175ec5dc8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_45f42777d396af6bec8481a4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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:ffe;src:url('chunks/assets/font_88a816eefdabc564f132cb50.woff')format("woff");}.ffe{font-family:ffe;line-height:1.049805;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:fff;src:url('chunks/assets/font_6cdcd9e16d28593dd6da22ee.woff')format("woff");}.fff{font-family:fff;line-height:1.049805;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:ff10;src:url('chunks/assets/font_15c4b1b6fed16071de5caf77.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_283a62b06291c8f0ec14bce1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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:ff12;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.724000px;}
.ls18{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.596000px;}
.ls10{letter-spacing:-1.482000px;}
.lsf{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.256200px;}
.ls9{letter-spacing:-0.108000px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.256500px;}
.lsd{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls19{letter-spacing:1.482000px;}
.ls1{letter-spacing:1.656000px;}
.ls4{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.086500px;}
.ls15{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls16{letter-spacing:2.430000px;}
.ls7{letter-spacing:4.779000px;}
.ls1b{letter-spacing:15.387000px;}
.ls1a{letter-spacing:46.887000px;}
.ls13{letter-spacing:64.887000px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.wsd{word-spacing:-16.107000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.wsa{word-spacing:-14.368800px;}
.ws8{word-spacing:-13.221000px;}
.ws7{word-spacing:-13.143000px;}
.wsc{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-10.551600px;}
._a{margin-left:-8.131500px;}
._c{margin-left:-6.785550px;}
._9{margin-left:-5.501550px;}
._2{margin-left:-3.888000px;}
._3{margin-left:-2.538000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._5{width:3.150000px;}
._6{width:4.404000px;}
._4{width:6.348000px;}
._11{width:7.672500px;}
._b{width:8.893050px;}
._7{width:10.086000px;}
._18{width:11.397450px;}
._13{width:12.447000px;}
._14{width:16.431000px;}
._12{width:17.595000px;}
._16{width:19.674000px;}
._f{width:20.724000px;}
._e{width:21.861000px;}
._d{width:25.635000px;}
._15{width:29.938500px;}
._1e{width:31.170000px;}
._10{width:34.504500px;}
._17{width:35.551500px;}
._19{width:38.899500px;}
._1a{width:44.037000px;}
._1c{width:48.064050px;}
._1b{width:49.099500px;}
._1d{width:54.456000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y1a{bottom:4.500000px;}
.ye{bottom:11.250000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.530000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y45{bottom:20.250000px;}
.y48{bottom:22.530000px;}
.y47{bottom:25.905000px;}
.y19{bottom:29.295000px;}
.yb{bottom:30.405000px;}
.y44{bottom:38.295000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.185000px;}
.y43{bottom:55.170000px;}
.y5{bottom:57.412500px;}
.y17{bottom:58.545000px;}
.y16{bottom:72.075000px;}
.y42{bottom:72.090000px;}
.y9{bottom:73.185000px;}
.y1{bottom:81.075000px;}
.y15{bottom:82.200000px;}
.y41{bottom:90.075000px;}
.y8{bottom:93.480000px;}
.y14{bottom:96.825000px;}
.y40{bottom:106.950000px;}
.y7{bottom:110.355000px;}
.y13{bottom:111.495000px;}
.y3f{bottom:123.870000px;}
.yc1{bottom:124.987500px;}
.y55{bottom:126.112500px;}
.yd1{bottom:129.487500px;}
.y12{bottom:130.620000px;}
.y9a{bottom:136.237500px;}
.yc0{bottom:141.862500px;}
.y3e{bottom:141.870000px;}
.y54{bottom:142.987500px;}
.yd0{bottom:146.362500px;}
.y2d{bottom:149.775000px;}
.y99{bottom:153.105000px;}
.y11{bottom:156.525000px;}
.ybf{bottom:158.745000px;}
.y3d{bottom:158.790000px;}
.y53{bottom:161.025000px;}
.ycf{bottom:163.275000px;}
.y2c{bottom:164.415000px;}
.y98{bottom:170.025000px;}
.y3c{bottom:175.665000px;}
.ybe{bottom:176.775000px;}
.y52{bottom:177.900000px;}
.yce{bottom:181.275000px;}
.y10{bottom:182.400000px;}
.y2b{bottom:183.525000px;}
.y97{bottom:189.150000px;}
.ybd{bottom:193.650000px;}
.y3b{bottom:193.695000px;}
.y51{bottom:194.775000px;}
.ycd{bottom:198.150000px;}
.y2a{bottom:200.445000px;}
.y96{bottom:207.195000px;}
.y3a{bottom:210.570000px;}
.y50{bottom:212.820000px;}
.ycc{bottom:215.070000px;}
.y29{bottom:217.320000px;}
.y95{bottom:225.195000px;}
.y39{bottom:227.445000px;}
.ybc{bottom:228.570000px;}
.y4f{bottom:229.695000px;}
.ycb{bottom:233.070000px;}
.y28{bottom:235.365000px;}
.y94{bottom:243.225000px;}
.ybb{bottom:245.475000px;}
.y38{bottom:245.490000px;}
.y4e{bottom:246.600000px;}
.yca{bottom:249.975000px;}
.y27{bottom:252.240000px;}
.y93{bottom:261.225000px;}
.yba{bottom:262.350000px;}
.y37{bottom:262.365000px;}
.y4d{bottom:264.600000px;}
.yc9{bottom:266.850000px;}
.y26{bottom:270.240000px;}
.y92{bottom:278.100000px;}
.y36{bottom:279.270000px;}
.yb9{bottom:280.350000px;}
.y4c{bottom:281.475000px;}
.yc8{bottom:284.895000px;}
.y25{bottom:287.145000px;}
.y91{bottom:291.645000px;}
.yb8{bottom:297.255000px;}
.y35{bottom:297.270000px;}
.y4b{bottom:298.395000px;}
.yc7{bottom:301.770000px;}
.y24{bottom:305.145000px;}
.yb7{bottom:314.130000px;}
.y34{bottom:314.145000px;}
.y4a{bottom:316.380000px;}
.yc6{bottom:318.645000px;}
.y23{bottom:322.050000px;}
.y33{bottom:331.065000px;}
.yb6{bottom:332.175000px;}
.y49{bottom:333.300000px;}
.y87{bottom:334.425000px;}
.yc5{bottom:336.675000px;}
.y22{bottom:340.050000px;}
.y46{bottom:347.925000px;}
.y32{bottom:349.050000px;}
.y86{bottom:351.300000px;}
.yc4{bottom:353.550000px;}
.y21{bottom:356.925000px;}
.yb5{bottom:365.925000px;}
.y31{bottom:365.970000px;}
.y85{bottom:369.345000px;}
.yc3{bottom:370.455000px;}
.yae{bottom:373.830000px;}
.y20{bottom:373.845000px;}
.y30{bottom:382.845000px;}
.yb4{bottom:383.955000px;}
.y1d{bottom:385.080000px;}
.y84{bottom:387.330000px;}
.yc2{bottom:388.455000px;}
.yad{bottom:390.705000px;}
.yb3{bottom:397.455000px;}
.y2f{bottom:400.875000px;}
.y1f{bottom:402.000000px;}
.yac{bottom:404.205000px;}
.y83{bottom:405.330000px;}
.y2e{bottom:417.750000px;}
.y1e{bottom:420.000000px;}
.y82{bottom:422.250000px;}
.y81{bottom:440.250000px;}
.y80{bottom:457.170000px;}
.y7f{bottom:474.045000px;}
.y7e{bottom:492.030000px;}
.yab{bottom:505.575000px;}
.y7d{bottom:508.950000px;}
.yaa{bottom:522.450000px;}
.y7c{bottom:525.825000px;}
.ya9{bottom:535.995000px;}
.y7b{bottom:543.870000px;}
.y7a{bottom:560.745000px;}
.y79{bottom:577.650000px;}
.y78{bottom:595.650000px;}
.y90{bottom:596.775000px;}
.y77{bottom:612.525000px;}
.y8f{bottom:614.775000px;}
.y76{bottom:629.445000px;}
.y8e{bottom:632.820000px;}
.yb2{bottom:637.320000px;}
.y75{bottom:647.445000px;}
.y8d{bottom:650.820000px;}
.yb1{bottom:654.195000px;}
.y74{bottom:664.350000px;}
.yb0{bottom:667.725000px;}
.y8c{bottom:669.975000px;}
.y73{bottom:681.225000px;}
.y8b{bottom:687.975000px;}
.y72{bottom:699.225000px;}
.ya8{bottom:701.475000px;}
.y8a{bottom:704.880000px;}
.y71{bottom:716.145000px;}
.ya7{bottom:719.520000px;}
.y89{bottom:722.895000px;}
.y70{bottom:733.020000px;}
.ya6{bottom:736.395000px;}
.y88{bottom:739.770000px;}
.y6f{bottom:751.050000px;}
.ya5{bottom:753.300000px;}
.y9d{bottom:754.425000px;}
.y6e{bottom:767.925000px;}
.ya4{bottom:771.300000px;}
.y9c{bottom:772.425000px;}
.y6d{bottom:784.800000px;}
.ya3{bottom:788.205000px;}
.y9b{bottom:790.455000px;}
.y6c{bottom:802.830000px;}
.ya2{bottom:805.080000px;}
.y1b{bottom:816.330000px;}
.y6b{bottom:819.705000px;}
.ya1{bottom:823.080000px;}
.y6a{bottom:836.625000px;}
.ya0{bottom:840.000000px;}
.yf{bottom:845.625000px;}
.y69{bottom:854.625000px;}
.y9f{bottom:856.875000px;}
.y9e{bottom:870.420000px;}
.y68{bottom:871.545000px;}
.y67{bottom:888.420000px;}
.y66{bottom:906.420000px;}
.y65{bottom:923.325000px;}
.yaf{bottom:936.825000px;}
.y64{bottom:940.200000px;}
.y63{bottom:958.245000px;}
.y62{bottom:975.120000px;}
.y61{bottom:991.995000px;}
.y60{bottom:1010.025000px;}
.y5f{bottom:1026.900000px;}
.y5e{bottom:1043.820000px;}
.yd{bottom:1048.320000px;}
.y5d{bottom:1061.820000px;}
.y6{bottom:1074.195000px;}
.y5c{bottom:1078.725000px;}
.y5b{bottom:1095.600000px;}
.y5a{bottom:1113.600000px;}
.y59{bottom:1130.505000px;}
.y58{bottom:1147.380000px;}
.y57{bottom:1165.425000px;}
.y56{bottom:1182.300000px;}
.h1b{height:16.875000px;}
.h1c{height:16.912500px;}
.hb{height:25.875000px;}
.h11{height:29.287500px;}
.h2{height:32.625000px;}
.h10{height:33.723633px;}
.h8{height:37.125000px;}
.h19{height:37.162500px;}
.h1a{height:41.275635px;}
.h16{height:41.389893px;}
.h17{height:43.288330px;}
.ha{height:43.875000px;}
.h4{height:47.223633px;}
.h18{height:48.788086px;}
.h14{height:49.234131px;}
.h15{height:51.158936px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.he{height:58.185791px;}
.hf{height:59.899658px;}
.hd{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h12{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:202.680000px;}
.h13{height:431.250000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w9{width:135.150000px;}
.wd{width:135.187500px;}
.wa{width:136.312500px;}
.w4{width:152.055000px;}
.wb{width:156.570000px;}
.wc{width:162.180000px;}
.w7{width:224.145000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x14{left:12.405000px;}
.xe{left:77.692500px;}
.x1{left:81.112500px;}
.x1b{left:82.237500px;}
.xf{left:83.362500px;}
.x11{left:85.612500px;}
.x5{left:97.987500px;}
.x15{left:108.149987px;}
.x10{left:112.657500px;}
.xd{left:121.657500px;}
.x16{left:135.187487px;}
.x24{left:174.599987px;}
.x12{left:214.012500px;}
.x1c{left:218.520000px;}
.x6{left:233.175000px;}
.x21{left:235.424987px;}
.x1a{left:263.579987px;}
.x9{left:273.705000px;}
.xb{left:282.712500px;}
.x13{left:305.250000px;}
.x7{left:328.920000px;}
.x18{left:332.294987px;}
.x26{left:333.404987px;}
.x8{left:348.075000px;}
.x1d{left:355.950000px;}
.xc{left:364.957500px;}
.xa{left:437.055000px;}
.x17{left:447.194987px;}
.x1e{left:513.675000px;}
.x23{left:587.999987px;}
.x19{left:610.529987px;}
.x20{left:613.904987px;}
.x1f{left:676.995000px;}
.x25{left:682.619987px;}
.x27{left:684.869987px;}
.x3{left:740.070000px;}
.x22{left:835.799987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.ls18{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.418667pt;}
.ls10{letter-spacing:-1.317333pt;}
.lsf{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.227733pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.228000pt;}
.lsd{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls19{letter-spacing:1.317333pt;}
.ls1{letter-spacing:1.472000pt;}
.ls4{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls15{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls16{letter-spacing:2.160000pt;}
.ls7{letter-spacing:4.248000pt;}
.ls1b{letter-spacing:13.677333pt;}
.ls1a{letter-spacing:41.677333pt;}
.ls13{letter-spacing:57.677333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.wsd{word-spacing:-14.317333pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.772267pt;}
.ws8{word-spacing:-11.752000pt;}
.ws7{word-spacing:-11.682667pt;}
.wsc{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-9.379200pt;}
._a{margin-left:-7.228000pt;}
._c{margin-left:-6.031600pt;}
._9{margin-left:-4.890267pt;}
._2{margin-left:-3.456000pt;}
._3{margin-left:-2.256000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._5{width:2.800000pt;}
._6{width:3.914667pt;}
._4{width:5.642667pt;}
._11{width:6.820000pt;}
._b{width:7.904933pt;}
._7{width:8.965333pt;}
._18{width:10.131067pt;}
._13{width:11.064000pt;}
._14{width:14.605333pt;}
._12{width:15.640000pt;}
._16{width:17.488000pt;}
._f{width:18.421333pt;}
._e{width:19.432000pt;}
._d{width:22.786667pt;}
._15{width:26.612000pt;}
._1e{width:27.706667pt;}
._10{width:30.670667pt;}
._17{width:31.601333pt;}
._19{width:34.577333pt;}
._1a{width:39.144000pt;}
._1c{width:42.723600pt;}
._1b{width:43.644000pt;}
._1d{width:48.405333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y1a{bottom:4.000000pt;}
.ye{bottom:10.000000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.026667pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y45{bottom:18.000000pt;}
.y48{bottom:20.026667pt;}
.y47{bottom:23.026667pt;}
.y19{bottom:26.040000pt;}
.yb{bottom:27.026667pt;}
.y44{bottom:34.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.053333pt;}
.y43{bottom:49.040000pt;}
.y5{bottom:51.033333pt;}
.y17{bottom:52.040000pt;}
.y16{bottom:64.066667pt;}
.y42{bottom:64.080000pt;}
.y9{bottom:65.053333pt;}
.y1{bottom:72.066667pt;}
.y15{bottom:73.066667pt;}
.y41{bottom:80.066667pt;}
.y8{bottom:83.093333pt;}
.y14{bottom:86.066667pt;}
.y40{bottom:95.066667pt;}
.y7{bottom:98.093333pt;}
.y13{bottom:99.106667pt;}
.y3f{bottom:110.106667pt;}
.yc1{bottom:111.100000pt;}
.y55{bottom:112.100000pt;}
.yd1{bottom:115.100000pt;}
.y12{bottom:116.106667pt;}
.y9a{bottom:121.100000pt;}
.yc0{bottom:126.100000pt;}
.y3e{bottom:126.106667pt;}
.y54{bottom:127.100000pt;}
.yd0{bottom:130.100000pt;}
.y2d{bottom:133.133333pt;}
.y99{bottom:136.093333pt;}
.y11{bottom:139.133333pt;}
.ybf{bottom:141.106667pt;}
.y3d{bottom:141.146667pt;}
.y53{bottom:143.133333pt;}
.ycf{bottom:145.133333pt;}
.y2c{bottom:146.146667pt;}
.y98{bottom:151.133333pt;}
.y3c{bottom:156.146667pt;}
.ybe{bottom:157.133333pt;}
.y52{bottom:158.133333pt;}
.yce{bottom:161.133333pt;}
.y10{bottom:162.133333pt;}
.y2b{bottom:163.133333pt;}
.y97{bottom:168.133333pt;}
.ybd{bottom:172.133333pt;}
.y3b{bottom:172.173333pt;}
.y51{bottom:173.133333pt;}
.ycd{bottom:176.133333pt;}
.y2a{bottom:178.173333pt;}
.y96{bottom:184.173333pt;}
.y3a{bottom:187.173333pt;}
.y50{bottom:189.173333pt;}
.ycc{bottom:191.173333pt;}
.y29{bottom:193.173333pt;}
.y95{bottom:200.173333pt;}
.y39{bottom:202.173333pt;}
.ybc{bottom:203.173333pt;}
.y4f{bottom:204.173333pt;}
.ycb{bottom:207.173333pt;}
.y28{bottom:209.213333pt;}
.y94{bottom:216.200000pt;}
.ybb{bottom:218.200000pt;}
.y38{bottom:218.213333pt;}
.y4e{bottom:219.200000pt;}
.yca{bottom:222.200000pt;}
.y27{bottom:224.213333pt;}
.y93{bottom:232.200000pt;}
.yba{bottom:233.200000pt;}
.y37{bottom:233.213333pt;}
.y4d{bottom:235.200000pt;}
.yc9{bottom:237.200000pt;}
.y26{bottom:240.213333pt;}
.y92{bottom:247.200000pt;}
.y36{bottom:248.240000pt;}
.yb9{bottom:249.200000pt;}
.y4c{bottom:250.200000pt;}
.yc8{bottom:253.240000pt;}
.y25{bottom:255.240000pt;}
.y91{bottom:259.240000pt;}
.yb8{bottom:264.226667pt;}
.y35{bottom:264.240000pt;}
.y4b{bottom:265.240000pt;}
.yc7{bottom:268.240000pt;}
.y24{bottom:271.240000pt;}
.yb7{bottom:279.226667pt;}
.y34{bottom:279.240000pt;}
.y4a{bottom:281.226667pt;}
.yc6{bottom:283.240000pt;}
.y23{bottom:286.266667pt;}
.y33{bottom:294.280000pt;}
.yb6{bottom:295.266667pt;}
.y49{bottom:296.266667pt;}
.y87{bottom:297.266667pt;}
.yc5{bottom:299.266667pt;}
.y22{bottom:302.266667pt;}
.y46{bottom:309.266667pt;}
.y32{bottom:310.266667pt;}
.y86{bottom:312.266667pt;}
.yc4{bottom:314.266667pt;}
.y21{bottom:317.266667pt;}
.yb5{bottom:325.266667pt;}
.y31{bottom:325.306667pt;}
.y85{bottom:328.306667pt;}
.yc3{bottom:329.293333pt;}
.yae{bottom:332.293333pt;}
.y20{bottom:332.306667pt;}
.y30{bottom:340.306667pt;}
.yb4{bottom:341.293333pt;}
.y1d{bottom:342.293333pt;}
.y84{bottom:344.293333pt;}
.yc2{bottom:345.293333pt;}
.yad{bottom:347.293333pt;}
.yb3{bottom:353.293333pt;}
.y2f{bottom:356.333333pt;}
.y1f{bottom:357.333333pt;}
.yac{bottom:359.293333pt;}
.y83{bottom:360.293333pt;}
.y2e{bottom:371.333333pt;}
.y1e{bottom:373.333333pt;}
.y82{bottom:375.333333pt;}
.y81{bottom:391.333333pt;}
.y80{bottom:406.373333pt;}
.y7f{bottom:421.373333pt;}
.y7e{bottom:437.360000pt;}
.yab{bottom:449.400000pt;}
.y7d{bottom:452.400000pt;}
.yaa{bottom:464.400000pt;}
.y7c{bottom:467.400000pt;}
.ya9{bottom:476.440000pt;}
.y7b{bottom:483.440000pt;}
.y7a{bottom:498.440000pt;}
.y79{bottom:513.466667pt;}
.y78{bottom:529.466667pt;}
.y90{bottom:530.466667pt;}
.y77{bottom:544.466667pt;}
.y8f{bottom:546.466667pt;}
.y76{bottom:559.506667pt;}
.y8e{bottom:562.506667pt;}
.yb2{bottom:566.506667pt;}
.y75{bottom:575.506667pt;}
.y8d{bottom:578.506667pt;}
.yb1{bottom:581.506667pt;}
.y74{bottom:590.533333pt;}
.yb0{bottom:593.533333pt;}
.y8c{bottom:595.533333pt;}
.y73{bottom:605.533333pt;}
.y8b{bottom:611.533333pt;}
.y72{bottom:621.533333pt;}
.ya8{bottom:623.533333pt;}
.y8a{bottom:626.560000pt;}
.y71{bottom:636.573333pt;}
.ya7{bottom:639.573333pt;}
.y89{bottom:642.573333pt;}
.y70{bottom:651.573333pt;}
.ya6{bottom:654.573333pt;}
.y88{bottom:657.573333pt;}
.y6f{bottom:667.600000pt;}
.ya5{bottom:669.600000pt;}
.y9d{bottom:670.600000pt;}
.y6e{bottom:682.600000pt;}
.ya4{bottom:685.600000pt;}
.y9c{bottom:686.600000pt;}
.y6d{bottom:697.600000pt;}
.ya3{bottom:700.626667pt;}
.y9b{bottom:702.626667pt;}
.y6c{bottom:713.626667pt;}
.ya2{bottom:715.626667pt;}
.y1b{bottom:725.626667pt;}
.y6b{bottom:728.626667pt;}
.ya1{bottom:731.626667pt;}
.y6a{bottom:743.666667pt;}
.ya0{bottom:746.666667pt;}
.yf{bottom:751.666667pt;}
.y69{bottom:759.666667pt;}
.y9f{bottom:761.666667pt;}
.y9e{bottom:773.706667pt;}
.y68{bottom:774.706667pt;}
.y67{bottom:789.706667pt;}
.y66{bottom:805.706667pt;}
.y65{bottom:820.733333pt;}
.yaf{bottom:832.733333pt;}
.y64{bottom:835.733333pt;}
.y63{bottom:851.773333pt;}
.y62{bottom:866.773333pt;}
.y61{bottom:881.773333pt;}
.y60{bottom:897.800000pt;}
.y5f{bottom:912.800000pt;}
.y5e{bottom:927.840000pt;}
.yd{bottom:931.840000pt;}
.y5d{bottom:943.840000pt;}
.y6{bottom:954.840000pt;}
.y5c{bottom:958.866667pt;}
.y5b{bottom:973.866667pt;}
.y5a{bottom:989.866667pt;}
.y59{bottom:1004.893333pt;}
.y58{bottom:1019.893333pt;}
.y57{bottom:1035.933333pt;}
.y56{bottom:1050.933333pt;}
.h1b{height:15.000000pt;}
.h1c{height:15.033333pt;}
.hb{height:23.000000pt;}
.h11{height:26.033333pt;}
.h2{height:29.000000pt;}
.h10{height:29.976562pt;}
.h8{height:33.000000pt;}
.h19{height:33.033333pt;}
.h1a{height:36.689453pt;}
.h16{height:36.791016pt;}
.h17{height:38.478516pt;}
.ha{height:39.000000pt;}
.h4{height:41.976562pt;}
.h18{height:43.367188pt;}
.h14{height:43.763672pt;}
.h15{height:45.474609pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.he{height:51.720703pt;}
.hf{height:53.244141pt;}
.hd{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h12{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:180.160000pt;}
.h13{height:383.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w9{width:120.133333pt;}
.wd{width:120.166667pt;}
.wa{width:121.166667pt;}
.w4{width:135.160000pt;}
.wb{width:139.173333pt;}
.wc{width:144.160000pt;}
.w7{width:199.240000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x14{left:11.026667pt;}
.xe{left:69.060000pt;}
.x1{left:72.100000pt;}
.x1b{left:73.100000pt;}
.xf{left:74.100000pt;}
.x11{left:76.100000pt;}
.x5{left:87.100000pt;}
.x15{left:96.133322pt;}
.x10{left:100.140000pt;}
.xd{left:108.140000pt;}
.x16{left:120.166655pt;}
.x24{left:155.199988pt;}
.x12{left:190.233333pt;}
.x1c{left:194.240000pt;}
.x6{left:207.266667pt;}
.x21{left:209.266655pt;}
.x1a{left:234.293322pt;}
.x9{left:243.293333pt;}
.xb{left:251.300000pt;}
.x13{left:271.333333pt;}
.x7{left:292.373333pt;}
.x18{left:295.373322pt;}
.x26{left:296.359988pt;}
.x8{left:309.400000pt;}
.x1d{left:316.400000pt;}
.xc{left:324.406667pt;}
.xa{left:388.493333pt;}
.x17{left:397.506655pt;}
.x1e{left:456.600000pt;}
.x23{left:522.666655pt;}
.x19{left:542.693322pt;}
.x20{left:545.693322pt;}
.x1f{left:601.773333pt;}
.x25{left:606.773322pt;}
.x27{left:608.773322pt;}
.x3{left:657.840000pt;}
.x22{left:742.933322pt;}
}




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