
    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_47eca088fd8c12c392c5b263.woff')format("woff");}.ff1{font-family:ff1;line-height:0.882812;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_5ddd37f0cfdb597ed1d15f50.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_b3ceff5ec9b69b24b9c5cc78.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_23e690f0863c3c9ecb5a8eac.woff')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_de5f856ea7c8072f654b1405.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_4b3a7c124a3eb50a33a27dde.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_f9466b9a0416d7e0f477a0a8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_42de7268cbd6ca2c22843b90.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_d26436c3393019393b8b5583.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_eb68f312d37fc3eb93d1359b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.718750;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_2e8d94bd6cd760e7debf7940.woff')format("woff");}.ffb{font-family:ffb;line-height:0.718750;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_546733a594534e520158de72.woff')format("woff");}.ffc{font-family:ffc;line-height:0.760254;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_8c68a462c5c9bfee81e4cc3b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.917480;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_3da501b8eca210dc869af565.woff')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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_7e7404a4ce8bb97b2e053984.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls15{letter-spacing:-5.356800px;}
.ls16{letter-spacing:-5.335200px;}
.ls8{letter-spacing:-0.308736px;}
.lsd{letter-spacing:-0.260064px;}
.ls7{letter-spacing:-0.254016px;}
.lse{letter-spacing:-0.158976px;}
.lsa{letter-spacing:-0.145152px;}
.lsf{letter-spacing:-0.125856px;}
.ls10{letter-spacing:-0.079488px;}
.ls9{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000576px;}
.ls19{letter-spacing:0.001440px;}
.ls12{letter-spacing:0.005328px;}
.ls11{letter-spacing:0.005760px;}
.ls17{letter-spacing:0.012096px;}
.ls0{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.090288px;}
.ls2{letter-spacing:0.228096px;}
.ls1{letter-spacing:0.274176px;}
.lsb{letter-spacing:0.283968px;}
.ls5{letter-spacing:0.327888px;}
.ls6{letter-spacing:0.346896px;}
.ls14{letter-spacing:0.359136px;}
.lsc{letter-spacing:0.442656px;}
.ls13{letter-spacing:12.889440px;}
.ls1a{letter-spacing:187.883568px;}
.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;}
}
.ws1{word-spacing:-20.030400px;}
.ws8{word-spacing:-20.016000px;}
.ws9{word-spacing:-20.001600px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.335232px;}
.ws4{word-spacing:-18.288864px;}
.wsa{word-spacing:-14.680800px;}
.ws0{word-spacing:-13.414464px;}
.wsb{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.060480px;}
.ws7{word-spacing:0.000000px;}
.ws2{word-spacing:0.199584px;}
._5{margin-left:-7.977600px;}
._4{margin-left:-6.703200px;}
._6{margin-left:-5.261616px;}
._3{margin-left:-3.974400px;}
._2{margin-left:-2.656800px;}
._0{margin-left:-1.398240px;}
._1{width:1.140480px;}
._1b{width:2.351520px;}
._9{width:3.440448px;}
._b{width:4.591728px;}
._a{width:5.601600px;}
._7{width:6.638400px;}
._e{width:8.409600px;}
._15{width:9.844416px;}
._8{width:10.994400px;}
._17{width:12.643200px;}
._10{width:13.651200px;}
._23{width:14.810112px;}
._11{width:15.912000px;}
._19{width:16.912800px;}
._1a{width:18.316800px;}
._16{width:21.211200px;}
._22{width:22.363200px;}
._f{width:23.464800px;}
._12{width:25.660800px;}
._18{width:27.014400px;}
._d{width:29.070864px;}
._1e{width:30.103200px;}
._c{width:31.845600px;}
._1d{width:34.128000px;}
._1c{width:36.050400px;}
._21{width:37.612800px;}
._26{width:46.579680px;}
._13{width:54.252000px;}
._29{width:59.803200px;}
._25{width:63.820800px;}
._20{width:67.204944px;}
._1f{width:69.408000px;}
._24{width:72.014400px;}
._2a{width:151.883568px;}
._28{width:187.883568px;}
._27{width:200.916000px;}
._14{width:843.984000px;}
.fc2{color:rgb(2,133,78);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,42,53);}
.fs0{font-size:47.520000px;}
.fs2{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:3.720000px;}
.y98{bottom:3.900000px;}
.ybb{bottom:3.960000px;}
.y95{bottom:4.020000px;}
.yc3{bottom:4.260000px;}
.y9e{bottom:4.320000px;}
.y90{bottom:4.380000px;}
.ybf{bottom:4.500000px;}
.y9c{bottom:4.560000px;}
.y93{bottom:4.620000px;}
.yd0{bottom:4.920000px;}
.y9a{bottom:5.160000px;}
.ya2{bottom:5.220000px;}
.y8{bottom:5.400000px;}
.y54{bottom:7.080000px;}
.y52{bottom:7.560000px;}
.y1e{bottom:7.740000px;}
.y40{bottom:7.920000px;}
.y39{bottom:7.980000px;}
.y1c{bottom:8.220000px;}
.y10{bottom:10.980000px;}
.ye{bottom:11.940000px;}
.y91{bottom:13.140000px;}
.y1{bottom:15.000000px;}
.y4{bottom:18.120000px;}
.y97{bottom:24.780000px;}
.yb7{bottom:25.080000px;}
.yc1{bottom:25.260000px;}
.ybe{bottom:25.380000px;}
.ycf{bottom:25.440000px;}
.yd4{bottom:25.920000px;}
.yb9{bottom:26.460000px;}
.y38{bottom:28.860000px;}
.y51{bottom:31.320000px;}
.y3b{bottom:31.500000px;}
.y3{bottom:32.160000px;}
.yd{bottom:32.820000px;}
.y8e{bottom:34.380000px;}
.yd6{bottom:45.300000px;}
.y2{bottom:46.200000px;}
.yd3{bottom:46.800000px;}
.y37{bottom:49.380000px;}
.yf{bottom:49.500000px;}
.yc{bottom:53.340000px;}
.y7{bottom:54.000000px;}
.y50{bottom:55.080000px;}
.y6{bottom:56.880000px;}
.yd2{bottom:67.320000px;}
.y36{bottom:70.260000px;}
.yb{bottom:74.220000px;}
.y4f{bottom:78.840000px;}
.y35{bottom:90.780000px;}
.ya{bottom:96.180000px;}
.y8c{bottom:96.480000px;}
.yb5{bottom:100.800000px;}
.y4e{bottom:102.960000px;}
.yd9{bottom:106.920000px;}
.y34{bottom:111.660000px;}
.y8b{bottom:117.360000px;}
.yb4{bottom:121.680000px;}
.yda{bottom:126.000000px;}
.y4d{bottom:126.720000px;}
.y3d{bottom:127.440000px;}
.y61{bottom:127.800000px;}
.y33{bottom:132.180000px;}
.y8a{bottom:137.880000px;}
.yb3{bottom:142.200000px;}
.y3c{bottom:148.320000px;}
.y4c{bottom:150.480000px;}
.y32{bottom:153.060000px;}
.y89{bottom:158.760000px;}
.yb2{bottom:163.080000px;}
.yd8{bottom:165.000000px;}
.y3a{bottom:166.500000px;}
.y60{bottom:169.200000px;}
.y31{bottom:173.580000px;}
.y4b{bottom:174.240000px;}
.y88{bottom:179.280000px;}
.yb1{bottom:183.600000px;}
.yd7{bottom:186.000000px;}
.y5f{bottom:189.720000px;}
.y30{bottom:194.460000px;}
.y4a{bottom:198.000000px;}
.y87{bottom:200.160000px;}
.yb0{bottom:204.480000px;}
.yd5{bottom:208.500000px;}
.y5e{bottom:210.600000px;}
.y1f{bottom:214.500000px;}
.y2f{bottom:214.980000px;}
.y86{bottom:220.680000px;}
.y49{bottom:221.760000px;}
.yaf{bottom:225.000000px;}
.y5d{bottom:231.120000px;}
.y2e{bottom:235.860000px;}
.y85{bottom:241.560000px;}
.y48{bottom:245.520000px;}
.yae{bottom:245.880000px;}
.y5c{bottom:252.000000px;}
.y2d{bottom:256.380000px;}
.y84{bottom:262.080000px;}
.yad{bottom:266.400000px;}
.y47{bottom:269.280000px;}
.yd1{bottom:270.000000px;}
.y5b{bottom:272.520000px;}
.y2c{bottom:277.260000px;}
.y83{bottom:282.960000px;}
.yac{bottom:287.280000px;}
.y46{bottom:293.400000px;}
.y2b{bottom:297.780000px;}
.y82{bottom:303.480000px;}
.yab{bottom:307.800000px;}
.y5a{bottom:313.920000px;}
.y45{bottom:317.160000px;}
.y2a{bottom:318.660000px;}
.y81{bottom:324.360000px;}
.yaa{bottom:328.680000px;}
.y59{bottom:334.800000px;}
.y29{bottom:339.180000px;}
.y44{bottom:340.920000px;}
.y80{bottom:344.880000px;}
.ya9{bottom:349.200000px;}
.yce{bottom:354.000000px;}
.y58{bottom:355.320000px;}
.y28{bottom:360.060000px;}
.y43{bottom:364.680000px;}
.y7f{bottom:365.760000px;}
.ya8{bottom:370.080000px;}
.y57{bottom:376.200000px;}
.y27{bottom:380.580000px;}
.y7e{bottom:386.280000px;}
.y42{bottom:388.440000px;}
.ya7{bottom:390.600000px;}
.y56{bottom:396.720000px;}
.ycd{bottom:401.040000px;}
.y26{bottom:401.460000px;}
.y7d{bottom:407.160000px;}
.ya6{bottom:411.480000px;}
.y55{bottom:417.600000px;}
.ycc{bottom:421.560000px;}
.y25{bottom:421.980000px;}
.y7c{bottom:427.680000px;}
.ya5{bottom:432.000000px;}
.y53{bottom:435.000000px;}
.ycb{bottom:442.440000px;}
.y24{bottom:442.860000px;}
.y7b{bottom:448.560000px;}
.ya4{bottom:452.880000px;}
.y41{bottom:459.000000px;}
.yca{bottom:462.960000px;}
.y23{bottom:463.380000px;}
.y21{bottom:463.740000px;}
.y7a{bottom:469.080000px;}
.ya3{bottom:469.500000px;}
.yc9{bottom:483.840000px;}
.y22{bottom:484.260000px;}
.y20{bottom:485.700000px;}
.y79{bottom:489.960000px;}
.ya1{bottom:490.500000px;}
.y9f{bottom:492.000000px;}
.yc8{bottom:504.360000px;}
.y78{bottom:510.480000px;}
.y9d{bottom:513.000000px;}
.yc7{bottom:525.240000px;}
.y77{bottom:531.360000px;}
.y9b{bottom:534.000000px;}
.yc6{bottom:545.760000px;}
.y76{bottom:551.880000px;}
.y99{bottom:555.000000px;}
.yc5{bottom:566.640000px;}
.y75{bottom:572.760000px;}
.y96{bottom:577.500000px;}
.yc4{bottom:587.160000px;}
.y74{bottom:593.280000px;}
.yc2{bottom:604.500000px;}
.y73{bottom:614.160000px;}
.y94{bottom:619.500000px;}
.y72{bottom:634.680000px;}
.y92{bottom:640.500000px;}
.yc0{bottom:646.500000px;}
.y71{bottom:655.560000px;}
.y8d{bottom:661.500000px;}
.y70{bottom:676.080000px;}
.ybd{bottom:688.500000px;}
.y8f{bottom:691.500000px;}
.y6f{bottom:696.960000px;}
.y1d{bottom:715.500000px;}
.y6e{bottom:717.480000px;}
.ybc{bottom:730.500000px;}
.y6d{bottom:738.360000px;}
.y1b{bottom:739.500000px;}
.yb8{bottom:751.500000px;}
.y6c{bottom:758.880000px;}
.y1a{bottom:769.680000px;}
.yba{bottom:774.000000px;}
.y6b{bottom:779.760000px;}
.y19{bottom:791.640000px;}
.yb6{bottom:795.000000px;}
.y6a{bottom:800.280000px;}
.y18{bottom:818.640000px;}
.y69{bottom:821.160000px;}
.y17{bottom:839.160000px;}
.y68{bottom:841.680000px;}
.y16{bottom:860.040000px;}
.y67{bottom:862.560000px;}
.y3f{bottom:864.000000px;}
.y15{bottom:874.440000px;}
.y66{bottom:883.080000px;}
.y3e{bottom:893.880000px;}
.y14{bottom:895.320000px;}
.y65{bottom:903.960000px;}
.y13{bottom:916.200000px;}
.y64{bottom:924.480000px;}
.y12{bottom:938.880000px;}
.y63{bottom:945.360000px;}
.y11{bottom:963.000000px;}
.y62{bottom:965.880000px;}
.y9{bottom:1024.500000px;}
.y5{bottom:1117.440000px;}
.h5{height:21.000000px;}
.h16{height:22.500000px;}
.h14{height:24.000000px;}
.ha{height:25.500000px;}
.h17{height:30.000000px;}
.h2{height:31.997109px;}
.hf{height:34.155000px;}
.h6{height:40.310156px;}
.h18{height:42.000000px;}
.h19{height:43.500000px;}
.hb{height:44.031094px;}
.h11{height:47.610000px;}
.h3{height:47.988281px;}
.h12{height:49.500000px;}
.hd{height:51.827344px;}
.h4{height:52.417969px;}
.h9{height:52.453125px;}
.h15{height:52.500000px;}
.h1{height:58.500000px;}
.he{height:58.635000px;}
.h1b{height:63.000000px;}
.h8{height:70.240078px;}
.hc{height:74.058750px;}
.h1a{height:85.500000px;}
.h7{height:118.500000px;}
.h13{height:406.500000px;}
.h10{height:502.500000px;}
.h0{height:1188.000000px;}
.w2{width:16.500000px;}
.w4{width:88.500000px;}
.wb{width:96.000000px;}
.wa{width:105.000000px;}
.wc{width:106.500000px;}
.wd{width:114.000000px;}
.w10{width:120.000000px;}
.w11{width:144.000000px;}
.we{width:145.500000px;}
.w13{width:154.500000px;}
.w6{width:225.000000px;}
.w8{width:283.500000px;}
.w12{width:403.500000px;}
.w9{width:418.500000px;}
.wf{width:438.000000px;}
.w7{width:525.000000px;}
.w1{width:612.000000px;}
.w3{width:664.500000px;}
.w5{width:748.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:4.943496px;}
.x1f{left:8.100000px;}
.x14{left:9.239856px;}
.x9{left:11.280036px;}
.x15{left:51.070704px;}
.x4{left:58.029420px;}
.x24{left:68.023800px;}
.x25{left:69.043800px;}
.x13{left:84.000000px;}
.x29{left:88.682004px;}
.x2a{left:90.339840px;}
.xb{left:93.542724px;}
.x18{left:107.421372px;}
.x11{left:119.734128px;}
.x1b{left:127.484964px;}
.x1{left:132.000000px;}
.x1a{left:138.134772px;}
.x2c{left:148.130280px;}
.x1e{left:160.746120px;}
.x3{left:179.796000px;}
.x27{left:195.357240px;}
.x5{left:200.460204px;}
.x8{left:213.000000px;}
.x17{left:226.094880px;}
.x10{left:228.301020px;}
.x23{left:239.590188px;}
.x19{left:247.141116px;}
.x26{left:252.000000px;}
.x2b{left:264.227076px;}
.xc{left:269.320320px;}
.x16{left:307.500000px;}
.xe{left:377.561160px;}
.x1d{left:391.500000px;}
.xf{left:403.058520px;}
.x12{left:411.888600px;}
.xd{left:458.910000px;}
.x20{left:496.500000px;}
.x21{left:591.000000px;}
.x2d{left:655.500000px;}
.x28{left:690.000000px;}
.x22{left:696.000000px;}
.x1c{left:763.495560px;}
.x7{left:783.000000px;}
.xa{left:789.000000px;}
.x6{left:805.860000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls15{letter-spacing:-4.761600pt;}
.ls16{letter-spacing:-4.742400pt;}
.ls8{letter-spacing:-0.274432pt;}
.lsd{letter-spacing:-0.231168pt;}
.ls7{letter-spacing:-0.225792pt;}
.lse{letter-spacing:-0.141312pt;}
.lsa{letter-spacing:-0.129024pt;}
.lsf{letter-spacing:-0.111872pt;}
.ls10{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000512pt;}
.ls19{letter-spacing:0.001280pt;}
.ls12{letter-spacing:0.004736pt;}
.ls11{letter-spacing:0.005120pt;}
.ls17{letter-spacing:0.010752pt;}
.ls0{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.080256pt;}
.ls2{letter-spacing:0.202752pt;}
.ls1{letter-spacing:0.243712pt;}
.lsb{letter-spacing:0.252416pt;}
.ls5{letter-spacing:0.291456pt;}
.ls6{letter-spacing:0.308352pt;}
.ls14{letter-spacing:0.319232pt;}
.lsc{letter-spacing:0.393472pt;}
.ls13{letter-spacing:11.457280pt;}
.ls1a{letter-spacing:167.007616pt;}
.ws1{word-spacing:-17.804800pt;}
.ws8{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.779200pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.297984pt;}
.ws4{word-spacing:-16.256768pt;}
.wsa{word-spacing:-13.049600pt;}
.ws0{word-spacing:-11.923968pt;}
.wsb{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.053760pt;}
.ws7{word-spacing:0.000000pt;}
.ws2{word-spacing:0.177408pt;}
._5{margin-left:-7.091200pt;}
._4{margin-left:-5.958400pt;}
._6{margin-left:-4.676992pt;}
._3{margin-left:-3.532800pt;}
._2{margin-left:-2.361600pt;}
._0{margin-left:-1.242880pt;}
._1{width:1.013760pt;}
._1b{width:2.090240pt;}
._9{width:3.058176pt;}
._b{width:4.081536pt;}
._a{width:4.979200pt;}
._7{width:5.900800pt;}
._e{width:7.475200pt;}
._15{width:8.750592pt;}
._8{width:9.772800pt;}
._17{width:11.238400pt;}
._10{width:12.134400pt;}
._23{width:13.164544pt;}
._11{width:14.144000pt;}
._19{width:15.033600pt;}
._1a{width:16.281600pt;}
._16{width:18.854400pt;}
._22{width:19.878400pt;}
._f{width:20.857600pt;}
._12{width:22.809600pt;}
._18{width:24.012800pt;}
._d{width:25.840768pt;}
._1e{width:26.758400pt;}
._c{width:28.307200pt;}
._1d{width:30.336000pt;}
._1c{width:32.044800pt;}
._21{width:33.433600pt;}
._26{width:41.404160pt;}
._13{width:48.224000pt;}
._29{width:53.158400pt;}
._25{width:56.729600pt;}
._20{width:59.737728pt;}
._1f{width:61.696000pt;}
._24{width:64.012800pt;}
._2a{width:135.007616pt;}
._28{width:167.007616pt;}
._27{width:178.592000pt;}
._14{width:750.208000pt;}
.fs0{font-size:42.240000pt;}
.fs2{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:3.306667pt;}
.y98{bottom:3.466667pt;}
.ybb{bottom:3.520000pt;}
.y95{bottom:3.573333pt;}
.yc3{bottom:3.786667pt;}
.y9e{bottom:3.840000pt;}
.y90{bottom:3.893333pt;}
.ybf{bottom:4.000000pt;}
.y9c{bottom:4.053333pt;}
.y93{bottom:4.106667pt;}
.yd0{bottom:4.373333pt;}
.y9a{bottom:4.586667pt;}
.ya2{bottom:4.640000pt;}
.y8{bottom:4.800000pt;}
.y54{bottom:6.293333pt;}
.y52{bottom:6.720000pt;}
.y1e{bottom:6.880000pt;}
.y40{bottom:7.040000pt;}
.y39{bottom:7.093333pt;}
.y1c{bottom:7.306667pt;}
.y10{bottom:9.760000pt;}
.ye{bottom:10.613333pt;}
.y91{bottom:11.680000pt;}
.y1{bottom:13.333333pt;}
.y4{bottom:16.106667pt;}
.y97{bottom:22.026667pt;}
.yb7{bottom:22.293333pt;}
.yc1{bottom:22.453333pt;}
.ybe{bottom:22.560000pt;}
.ycf{bottom:22.613333pt;}
.yd4{bottom:23.040000pt;}
.yb9{bottom:23.520000pt;}
.y38{bottom:25.653333pt;}
.y51{bottom:27.840000pt;}
.y3b{bottom:28.000000pt;}
.y3{bottom:28.586667pt;}
.yd{bottom:29.173333pt;}
.y8e{bottom:30.560000pt;}
.yd6{bottom:40.266667pt;}
.y2{bottom:41.066667pt;}
.yd3{bottom:41.600000pt;}
.y37{bottom:43.893333pt;}
.yf{bottom:44.000000pt;}
.yc{bottom:47.413333pt;}
.y7{bottom:48.000000pt;}
.y50{bottom:48.960000pt;}
.y6{bottom:50.560000pt;}
.yd2{bottom:59.840000pt;}
.y36{bottom:62.453333pt;}
.yb{bottom:65.973333pt;}
.y4f{bottom:70.080000pt;}
.y35{bottom:80.693333pt;}
.ya{bottom:85.493333pt;}
.y8c{bottom:85.760000pt;}
.yb5{bottom:89.600000pt;}
.y4e{bottom:91.520000pt;}
.yd9{bottom:95.040000pt;}
.y34{bottom:99.253333pt;}
.y8b{bottom:104.320000pt;}
.yb4{bottom:108.160000pt;}
.yda{bottom:112.000000pt;}
.y4d{bottom:112.640000pt;}
.y3d{bottom:113.280000pt;}
.y61{bottom:113.600000pt;}
.y33{bottom:117.493333pt;}
.y8a{bottom:122.560000pt;}
.yb3{bottom:126.400000pt;}
.y3c{bottom:131.840000pt;}
.y4c{bottom:133.760000pt;}
.y32{bottom:136.053333pt;}
.y89{bottom:141.120000pt;}
.yb2{bottom:144.960000pt;}
.yd8{bottom:146.666667pt;}
.y3a{bottom:148.000000pt;}
.y60{bottom:150.400000pt;}
.y31{bottom:154.293333pt;}
.y4b{bottom:154.880000pt;}
.y88{bottom:159.360000pt;}
.yb1{bottom:163.200000pt;}
.yd7{bottom:165.333333pt;}
.y5f{bottom:168.640000pt;}
.y30{bottom:172.853333pt;}
.y4a{bottom:176.000000pt;}
.y87{bottom:177.920000pt;}
.yb0{bottom:181.760000pt;}
.yd5{bottom:185.333333pt;}
.y5e{bottom:187.200000pt;}
.y1f{bottom:190.666667pt;}
.y2f{bottom:191.093333pt;}
.y86{bottom:196.160000pt;}
.y49{bottom:197.120000pt;}
.yaf{bottom:200.000000pt;}
.y5d{bottom:205.440000pt;}
.y2e{bottom:209.653333pt;}
.y85{bottom:214.720000pt;}
.y48{bottom:218.240000pt;}
.yae{bottom:218.560000pt;}
.y5c{bottom:224.000000pt;}
.y2d{bottom:227.893333pt;}
.y84{bottom:232.960000pt;}
.yad{bottom:236.800000pt;}
.y47{bottom:239.360000pt;}
.yd1{bottom:240.000000pt;}
.y5b{bottom:242.240000pt;}
.y2c{bottom:246.453333pt;}
.y83{bottom:251.520000pt;}
.yac{bottom:255.360000pt;}
.y46{bottom:260.800000pt;}
.y2b{bottom:264.693333pt;}
.y82{bottom:269.760000pt;}
.yab{bottom:273.600000pt;}
.y5a{bottom:279.040000pt;}
.y45{bottom:281.920000pt;}
.y2a{bottom:283.253333pt;}
.y81{bottom:288.320000pt;}
.yaa{bottom:292.160000pt;}
.y59{bottom:297.600000pt;}
.y29{bottom:301.493333pt;}
.y44{bottom:303.040000pt;}
.y80{bottom:306.560000pt;}
.ya9{bottom:310.400000pt;}
.yce{bottom:314.666667pt;}
.y58{bottom:315.840000pt;}
.y28{bottom:320.053333pt;}
.y43{bottom:324.160000pt;}
.y7f{bottom:325.120000pt;}
.ya8{bottom:328.960000pt;}
.y57{bottom:334.400000pt;}
.y27{bottom:338.293333pt;}
.y7e{bottom:343.360000pt;}
.y42{bottom:345.280000pt;}
.ya7{bottom:347.200000pt;}
.y56{bottom:352.640000pt;}
.ycd{bottom:356.480000pt;}
.y26{bottom:356.853333pt;}
.y7d{bottom:361.920000pt;}
.ya6{bottom:365.760000pt;}
.y55{bottom:371.200000pt;}
.ycc{bottom:374.720000pt;}
.y25{bottom:375.093333pt;}
.y7c{bottom:380.160000pt;}
.ya5{bottom:384.000000pt;}
.y53{bottom:386.666667pt;}
.ycb{bottom:393.280000pt;}
.y24{bottom:393.653333pt;}
.y7b{bottom:398.720000pt;}
.ya4{bottom:402.560000pt;}
.y41{bottom:408.000000pt;}
.yca{bottom:411.520000pt;}
.y23{bottom:411.893333pt;}
.y21{bottom:412.213333pt;}
.y7a{bottom:416.960000pt;}
.ya3{bottom:417.333333pt;}
.yc9{bottom:430.080000pt;}
.y22{bottom:430.453333pt;}
.y20{bottom:431.733333pt;}
.y79{bottom:435.520000pt;}
.ya1{bottom:436.000000pt;}
.y9f{bottom:437.333333pt;}
.yc8{bottom:448.320000pt;}
.y78{bottom:453.760000pt;}
.y9d{bottom:456.000000pt;}
.yc7{bottom:466.880000pt;}
.y77{bottom:472.320000pt;}
.y9b{bottom:474.666667pt;}
.yc6{bottom:485.120000pt;}
.y76{bottom:490.560000pt;}
.y99{bottom:493.333333pt;}
.yc5{bottom:503.680000pt;}
.y75{bottom:509.120000pt;}
.y96{bottom:513.333333pt;}
.yc4{bottom:521.920000pt;}
.y74{bottom:527.360000pt;}
.yc2{bottom:537.333333pt;}
.y73{bottom:545.920000pt;}
.y94{bottom:550.666667pt;}
.y72{bottom:564.160000pt;}
.y92{bottom:569.333333pt;}
.yc0{bottom:574.666667pt;}
.y71{bottom:582.720000pt;}
.y8d{bottom:588.000000pt;}
.y70{bottom:600.960000pt;}
.ybd{bottom:612.000000pt;}
.y8f{bottom:614.666667pt;}
.y6f{bottom:619.520000pt;}
.y1d{bottom:636.000000pt;}
.y6e{bottom:637.760000pt;}
.ybc{bottom:649.333333pt;}
.y6d{bottom:656.320000pt;}
.y1b{bottom:657.333333pt;}
.yb8{bottom:668.000000pt;}
.y6c{bottom:674.560000pt;}
.y1a{bottom:684.160000pt;}
.yba{bottom:688.000000pt;}
.y6b{bottom:693.120000pt;}
.y19{bottom:703.680000pt;}
.yb6{bottom:706.666667pt;}
.y6a{bottom:711.360000pt;}
.y18{bottom:727.680000pt;}
.y69{bottom:729.920000pt;}
.y17{bottom:745.920000pt;}
.y68{bottom:748.160000pt;}
.y16{bottom:764.480000pt;}
.y67{bottom:766.720000pt;}
.y3f{bottom:768.000000pt;}
.y15{bottom:777.280000pt;}
.y66{bottom:784.960000pt;}
.y3e{bottom:794.560000pt;}
.y14{bottom:795.840000pt;}
.y65{bottom:803.520000pt;}
.y13{bottom:814.400000pt;}
.y64{bottom:821.760000pt;}
.y12{bottom:834.560000pt;}
.y63{bottom:840.320000pt;}
.y11{bottom:856.000000pt;}
.y62{bottom:858.560000pt;}
.y9{bottom:910.666667pt;}
.y5{bottom:993.280000pt;}
.h5{height:18.666667pt;}
.h16{height:20.000000pt;}
.h14{height:21.333333pt;}
.ha{height:22.666667pt;}
.h17{height:26.666667pt;}
.h2{height:28.441875pt;}
.hf{height:30.360000pt;}
.h6{height:35.831250pt;}
.h18{height:37.333333pt;}
.h19{height:38.666667pt;}
.hb{height:39.138750pt;}
.h11{height:42.320000pt;}
.h3{height:42.656250pt;}
.h12{height:44.000000pt;}
.hd{height:46.068750pt;}
.h4{height:46.593750pt;}
.h9{height:46.625000pt;}
.h15{height:46.666667pt;}
.h1{height:52.000000pt;}
.he{height:52.120000pt;}
.h1b{height:56.000000pt;}
.h8{height:62.435625pt;}
.hc{height:65.830000pt;}
.h1a{height:76.000000pt;}
.h7{height:105.333333pt;}
.h13{height:361.333333pt;}
.h10{height:446.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:14.666667pt;}
.w4{width:78.666667pt;}
.wb{width:85.333333pt;}
.wa{width:93.333333pt;}
.wc{width:94.666667pt;}
.wd{width:101.333333pt;}
.w10{width:106.666667pt;}
.w11{width:128.000000pt;}
.we{width:129.333333pt;}
.w13{width:137.333333pt;}
.w6{width:200.000000pt;}
.w8{width:252.000000pt;}
.w12{width:358.666667pt;}
.w9{width:372.000000pt;}
.wf{width:389.333333pt;}
.w7{width:466.666667pt;}
.w1{width:544.000000pt;}
.w3{width:590.666667pt;}
.w5{width:665.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.394219pt;}
.x1f{left:7.200000pt;}
.x14{left:8.213205pt;}
.x9{left:10.026699pt;}
.x15{left:45.396181pt;}
.x4{left:51.581707pt;}
.x24{left:60.465600pt;}
.x25{left:61.372267pt;}
.x13{left:74.666667pt;}
.x29{left:78.828448pt;}
.x2a{left:80.302080pt;}
.xb{left:83.149088pt;}
.x18{left:95.485664pt;}
.x11{left:106.430336pt;}
.x1b{left:113.319968pt;}
.x1{left:117.333333pt;}
.x1a{left:122.786464pt;}
.x2c{left:131.671360pt;}
.x1e{left:142.885440pt;}
.x3{left:159.818667pt;}
.x27{left:173.650880pt;}
.x5{left:178.186848pt;}
.x8{left:189.333333pt;}
.x17{left:200.973227pt;}
.x10{left:202.934240pt;}
.x23{left:212.969056pt;}
.x19{left:219.680992pt;}
.x26{left:224.000000pt;}
.x2b{left:234.868512pt;}
.xc{left:239.395840pt;}
.x16{left:273.333333pt;}
.xe{left:335.609920pt;}
.x1d{left:348.000000pt;}
.xf{left:358.274240pt;}
.x12{left:366.123200pt;}
.xd{left:407.920000pt;}
.x20{left:441.333333pt;}
.x21{left:525.333333pt;}
.x2d{left:582.666667pt;}
.x28{left:613.333333pt;}
.x22{left:618.666667pt;}
.x1c{left:678.662720pt;}
.x7{left:696.000000pt;}
.xa{left:701.333333pt;}
.x6{left:716.320000pt;}
}




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