
    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_10a8bb0281ebee4598e464dc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_666f7d749b5832cdbbd71a29.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5ce0dbbb51d9e52692988ed0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b37a3afdeb3ed570008f0243.woff')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_2c77cedbcf6bce9520ec609d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_8cb1b1fde2d9e540aad3b12e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_840f5e8ebcce679ca62c8aa3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9688a335e40bc6321131c300.woff')format("woff");}.ff9{font-family:ff9;line-height:1.208008;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_f91aac3af311b87c2640cb73.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_05ad44f30a27bb995ed3ce98.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a278e34cd95602150263a8b2.woff')format("woff");}.ffd{font-family:ffd;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;}
.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:-27.360000px;}
.v4{vertical-align:-14.400000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.v7{vertical-align:48.240000px;}
.v5{vertical-align:56.880000px;}
.ls10{letter-spacing:-2.880000px;}
.lsf{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.164400px;}
.ls21{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.269280px;}
.ls1c{letter-spacing:0.269400px;}
.ls12{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.936000px;}
.ls1b{letter-spacing:1.200000px;}
.ls19{letter-spacing:1.584000px;}
.ls20{letter-spacing:2.160000px;}
.ls23{letter-spacing:2.340000px;}
.ls5{letter-spacing:3.029760px;}
.ls16{letter-spacing:4.376880px;}
.ls15{letter-spacing:4.824720px;}
.ls1e{letter-spacing:5.040000px;}
.ls1f{letter-spacing:10.080000px;}
.ls14{letter-spacing:20.376000px;}
.ls13{letter-spacing:23.816880px;}
.lsc{letter-spacing:25.920000px;}
.ls22{letter-spacing:31.602720px;}
.ls17{letter-spacing:230.664000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.wsa{word-spacing:-71.928000px;}
.ws12{word-spacing:-59.760000px;}
.wsc{word-spacing:-56.088000px;}
.ws3{word-spacing:-21.420000px;}
.ws4{word-spacing:-18.936000px;}
.wse{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.496000px;}
.ws8{word-spacing:-17.280000px;}
.wsd{word-spacing:-15.226440px;}
.ws14{word-spacing:-14.970240px;}
.ws13{word-spacing:-14.506440px;}
.ws10{word-spacing:-12.060000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-12.096000px;}
._c{margin-left:-5.252400px;}
._b{margin-left:-3.672000px;}
._4{margin-left:-2.160000px;}
._1{margin-left:-1.152000px;}
._0{width:1.436400px;}
._9{width:3.312000px;}
._7{width:4.680000px;}
._8{width:5.688000px;}
._5{width:6.984000px;}
._6{width:8.079600px;}
._e{width:10.005600px;}
._11{width:11.787600px;}
._18{width:12.868800px;}
._17{width:14.076000px;}
._d{width:15.168000px;}
._10{width:16.791600px;}
._a{width:19.872000px;}
._19{width:21.288000px;}
._15{width:22.536000px;}
._2{width:24.048000px;}
._3{width:25.267200px;}
._16{width:26.395200px;}
._1d{width:27.724800px;}
._1e{width:28.992000px;}
._12{width:30.744000px;}
._14{width:31.803600px;}
._13{width:33.132000px;}
._f{width:37.128000px;}
._1c{width:47.520000px;}
._1b{width:49.032000px;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(13,13,13);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.420000px;}
.y1{bottom:77.616000px;}
.ya9{bottom:112.356000px;}
.y101{bottom:113.616000px;}
.y9f{bottom:119.196000px;}
.y46{bottom:121.356000px;}
.y5d{bottom:126.756000px;}
.y100{bottom:133.776000px;}
.y7e{bottom:135.936000px;}
.y9d{bottom:137.196000px;}
.ycf{bottom:141.516000px;}
.y2d{bottom:146.196000px;}
.y85{bottom:150.150000px;}
.ya8{bottom:153.750000px;}
.yff{bottom:153.930000px;}
.y72{bottom:160.590000px;}
.yce{bottom:161.670000px;}
.y45{bottom:162.750000px;}
.y5c{bottom:168.150000px;}
.yfe{bottom:174.090000px;}
.y7d{bottom:177.330000px;}
.y9c{bottom:178.590000px;}
.ycd{bottom:181.830000px;}
.y2c{bottom:187.590000px;}
.y84{bottom:191.550000px;}
.yfd{bottom:194.070000px;}
.ya7{bottom:195.150000px;}
.y71{bottom:201.990000px;}
.y44{bottom:204.150000px;}
.y5b{bottom:209.550000px;}
.yfc{bottom:214.230000px;}
.y7c{bottom:218.730000px;}
.y9b{bottom:219.990000px;}
.ycc{bottom:222.150000px;}
.y2b{bottom:228.990000px;}
.y83{bottom:232.950000px;}
.yfb{bottom:234.390000px;}
.ya6{bottom:236.550000px;}
.ycb{bottom:242.310000px;}
.y70{bottom:243.390000px;}
.y43{bottom:245.550000px;}
.y5a{bottom:250.950000px;}
.yfa{bottom:254.550000px;}
.y7b{bottom:260.130000px;}
.y9a{bottom:261.390000px;}
.yca{bottom:262.470000px;}
.y2a{bottom:270.390000px;}
.y82{bottom:274.350000px;}
.yf9{bottom:274.710000px;}
.ya5{bottom:277.950000px;}
.yc9{bottom:282.630000px;}
.y6f{bottom:284.790000px;}
.y42{bottom:286.950000px;}
.y59{bottom:292.350000px;}
.yf8{bottom:294.870000px;}
.y7a{bottom:301.530000px;}
.y99{bottom:302.790000px;}
.y29{bottom:311.790000px;}
.yf7{bottom:315.030000px;}
.ya4{bottom:319.350000px;}
.yc8{bottom:322.770000px;}
.y81{bottom:324.750000px;}
.y6e{bottom:326.190000px;}
.y41{bottom:328.350000px;}
.y58{bottom:333.750000px;}
.yf6{bottom:335.190000px;}
.y79{bottom:342.975000px;}
.y98{bottom:344.235000px;}
.y28{bottom:353.235000px;}
.yf5{bottom:355.395000px;}
.ya3{bottom:360.795000px;}
.yc7{bottom:363.135000px;}
.y6d{bottom:367.635000px;}
.y40{bottom:369.795000px;}
.y57{bottom:375.195000px;}
.yf4{bottom:375.555000px;}
.yc6{bottom:383.295000px;}
.y97{bottom:385.635000px;}
.y80{bottom:388.155000px;}
.y78{bottom:393.375000px;}
.y27{bottom:394.635000px;}
.yf3{bottom:395.535000px;}
.ya2{bottom:402.195000px;}
.yc5{bottom:403.455000px;}
.y6c{bottom:409.035000px;}
.y3f{bottom:411.195000px;}
.yf2{bottom:415.695000px;}
.yc4{bottom:423.615000px;}
.y56{bottom:425.595000px;}
.y96{bottom:427.035000px;}
.yf1{bottom:435.855000px;}
.y26{bottom:436.035000px;}
.ya1{bottom:443.595000px;}
.yc3{bottom:443.775000px;}
.y6b{bottom:450.435000px;}
.y3e{bottom:452.595000px;}
.y77{bottom:452.775000px;}
.yf0{bottom:456.015000px;}
.yc2{bottom:463.935000px;}
.y95{bottom:468.435000px;}
.yef{bottom:476.175000px;}
.y25{bottom:477.435000px;}
.yc1{bottom:484.095000px;}
.y55{bottom:484.995000px;}
.y6a{bottom:491.835000px;}
.y3d{bottom:493.995000px;}
.y76{bottom:494.175000px;}
.yee{bottom:496.335000px;}
.yc0{bottom:504.255000px;}
.y94{bottom:509.835000px;}
.yed{bottom:516.495000px;}
.y24{bottom:518.835000px;}
.ybf{bottom:524.235000px;}
.y54{bottom:526.395000px;}
.y69{bottom:533.235000px;}
.y3c{bottom:535.395000px;}
.y75{bottom:535.575000px;}
.yec{bottom:536.655000px;}
.ybe{bottom:544.395000px;}
.y93{bottom:551.235000px;}
.yeb{bottom:556.815000px;}
.y23{bottom:560.235000px;}
.ybd{bottom:564.555000px;}
.y53{bottom:567.795000px;}
.y74{bottom:573.555000px;}
.y14{bottom:574.095000px;}
.y68{bottom:574.635000px;}
.y3b{bottom:576.795000px;}
.yea{bottom:576.975000px;}
.ybc{bottom:584.715000px;}
.y73{bottom:585.615000px;}
.y92{bottom:592.635000px;}
.ye9{bottom:596.955000px;}
.y22{bottom:601.635000px;}
.ybb{bottom:604.905000px;}
.y52{bottom:609.045000px;}
.y13{bottom:615.345000px;}
.y67{bottom:616.065000px;}
.ye8{bottom:617.145000px;}
.y3a{bottom:618.045000px;}
.ya0{bottom:622.185000px;}
.yba{bottom:625.065000px;}
.y91{bottom:634.065000px;}
.y102{bottom:636.225000px;}
.ye7{bottom:637.305000px;}
.y21{bottom:643.065000px;}
.yb9{bottom:645.225000px;}
.y51{bottom:650.445000px;}
.y12{bottom:656.745000px;}
.y66{bottom:657.465000px;}
.y39{bottom:659.445000px;}
.yb8{bottom:665.385000px;}
.y90{bottom:675.465000px;}
.ye6{bottom:677.625000px;}
.y20{bottom:684.465000px;}
.yb7{bottom:685.545000px;}
.y50{bottom:691.845000px;}
.ye5{bottom:697.785000px;}
.y11{bottom:698.145000px;}
.y65{bottom:698.865000px;}
.y38{bottom:700.845000px;}
.y10{bottom:704.985000px;}
.yb6{bottom:705.705000px;}
.y8f{bottom:716.865000px;}
.ye4{bottom:717.945000px;}
.yb5{bottom:725.685000px;}
.y1f{bottom:725.865000px;}
.y4f{bottom:733.245000px;}
.ye3{bottom:738.105000px;}
.yf{bottom:739.545000px;}
.y64{bottom:740.265000px;}
.y37{bottom:742.245000px;}
.yb4{bottom:745.845000px;}
.y7f{bottom:749.265000px;}
.y8e{bottom:758.265000px;}
.yb3{bottom:766.005000px;}
.y1e{bottom:767.265000px;}
.y4e{bottom:774.645000px;}
.ye2{bottom:778.425000px;}
.ye{bottom:780.945000px;}
.y63{bottom:781.665000px;}
.y36{bottom:783.645000px;}
.yb2{bottom:786.165000px;}
.yd{bottom:787.785000px;}
.y9e{bottom:790.665000px;}
.ye1{bottom:798.405000px;}
.y8d{bottom:799.665000px;}
.yb1{bottom:806.325000px;}
.y1d{bottom:808.665000px;}
.y4d{bottom:816.045000px;}
.ye0{bottom:818.565000px;}
.yc{bottom:822.345000px;}
.y62{bottom:823.065000px;}
.y35{bottom:825.045000px;}
.yb0{bottom:826.485000px;}
.ydf{bottom:838.725000px;}
.y8c{bottom:841.065000px;}
.yaf{bottom:846.645000px;}
.y1c{bottom:850.065000px;}
.y4c{bottom:857.445000px;}
.yde{bottom:858.885000px;}
.yb{bottom:863.745000px;}
.y61{bottom:864.465000px;}
.y34{bottom:866.445000px;}
.ya{bottom:870.630000px;}
.ydd{bottom:879.090000px;}
.y8b{bottom:882.510000px;}
.y1b{bottom:891.510000px;}
.y4b{bottom:898.890000px;}
.ydc{bottom:899.250000px;}
.yae{bottom:899.790000px;}
.y9{bottom:905.190000px;}
.y60{bottom:905.910000px;}
.y33{bottom:907.890000px;}
.ydb{bottom:919.410000px;}
.y8a{bottom:923.910000px;}
.y1a{bottom:932.910000px;}
.yda{bottom:939.570000px;}
.y4a{bottom:940.290000px;}
.y8{bottom:946.590000px;}
.y5f{bottom:947.310000px;}
.y32{bottom:949.290000px;}
.y7{bottom:953.430000px;}
.yd9{bottom:959.730000px;}
.yad{bottom:962.250000px;}
.y89{bottom:965.310000px;}
.y19{bottom:974.310000px;}
.yd8{bottom:979.890000px;}
.y49{bottom:981.690000px;}
.y6{bottom:987.990000px;}
.y31{bottom:990.690000px;}
.y5e{bottom:997.710000px;}
.yd7{bottom:999.870000px;}
.yac{bottom:1003.650000px;}
.y88{bottom:1006.710000px;}
.y18{bottom:1015.710000px;}
.yd6{bottom:1020.030000px;}
.y48{bottom:1023.090000px;}
.y5{bottom:1029.390000px;}
.y30{bottom:1032.090000px;}
.yd5{bottom:1040.190000px;}
.yab{bottom:1045.050000px;}
.y87{bottom:1048.110000px;}
.y17{bottom:1057.110000px;}
.yd4{bottom:1060.350000px;}
.y2f{bottom:1073.490000px;}
.y4{bottom:1078.890000px;}
.yd3{bottom:1080.510000px;}
.yaa{bottom:1086.450000px;}
.y86{bottom:1089.510000px;}
.y16{bottom:1098.510000px;}
.yd2{bottom:1100.670000px;}
.yd1{bottom:1120.830000px;}
.y2e{bottom:1128.030000px;}
.y3{bottom:1134.150000px;}
.y47{bottom:1137.030000px;}
.y15{bottom:1139.940000px;}
.yd0{bottom:1141.020000px;}
.h6{height:36.698203px;}
.h5{height:50.800781px;}
.h8{height:52.066406px;}
.hc{height:52.417969px;}
.h7{height:54.773438px;}
.h9{height:61.329023px;}
.h4{height:62.244492px;}
.h2{height:65.884219px;}
.h3{height:67.565039px;}
.hb{height:100.306406px;}
.ha{height:120.934688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:53.819973px;}
.x5{left:62.279973px;}
.x3{left:70.739973px;}
.x4{left:79.199987px;}
.x2{left:106.235987px;}
.xd{left:127.655987px;}
.x6{left:133.235987px;}
.x9{left:138.275987px;}
.x7{left:159.329987px;}
.xa{left:366.554987px;}
.xc{left:438.014987px;}
.x1{left:442.334987px;}
.xb{left:462.854987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-12.800000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.v7{vertical-align:42.880000pt;}
.v5{vertical-align:50.560000pt;}
.ls10{letter-spacing:-2.560000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.146133pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.239360pt;}
.ls1c{letter-spacing:0.239467pt;}
.ls12{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.832000pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls19{letter-spacing:1.408000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls23{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.693120pt;}
.ls16{letter-spacing:3.890560pt;}
.ls15{letter-spacing:4.288640pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:8.960000pt;}
.ls14{letter-spacing:18.112000pt;}
.ls13{letter-spacing:21.170560pt;}
.lsc{letter-spacing:23.040000pt;}
.ls22{letter-spacing:28.091307pt;}
.ls17{letter-spacing:205.034667pt;}
.wsb{word-spacing:-64.000000pt;}
.wsa{word-spacing:-63.936000pt;}
.ws12{word-spacing:-53.120000pt;}
.wsc{word-spacing:-49.856000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws4{word-spacing:-16.832000pt;}
.wse{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.552000pt;}
.ws8{word-spacing:-15.360000pt;}
.wsd{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.306880pt;}
.ws13{word-spacing:-12.894613pt;}
.ws10{word-spacing:-10.720000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-10.752000pt;}
._c{margin-left:-4.668800pt;}
._b{margin-left:-3.264000pt;}
._4{margin-left:-1.920000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.276800pt;}
._9{width:2.944000pt;}
._7{width:4.160000pt;}
._8{width:5.056000pt;}
._5{width:6.208000pt;}
._6{width:7.181867pt;}
._e{width:8.893867pt;}
._11{width:10.477867pt;}
._18{width:11.438933pt;}
._17{width:12.512000pt;}
._d{width:13.482667pt;}
._10{width:14.925867pt;}
._a{width:17.664000pt;}
._19{width:18.922667pt;}
._15{width:20.032000pt;}
._2{width:21.376000pt;}
._3{width:22.459733pt;}
._16{width:23.462400pt;}
._1d{width:24.644267pt;}
._1e{width:25.770667pt;}
._12{width:27.328000pt;}
._14{width:28.269867pt;}
._13{width:29.450667pt;}
._f{width:33.002667pt;}
._1c{width:42.240000pt;}
._1b{width:43.584000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.992000pt;}
.ya9{bottom:99.872000pt;}
.y101{bottom:100.992000pt;}
.y9f{bottom:105.952000pt;}
.y46{bottom:107.872000pt;}
.y5d{bottom:112.672000pt;}
.y100{bottom:118.912000pt;}
.y7e{bottom:120.832000pt;}
.y9d{bottom:121.952000pt;}
.ycf{bottom:125.792000pt;}
.y2d{bottom:129.952000pt;}
.y85{bottom:133.466667pt;}
.ya8{bottom:136.666667pt;}
.yff{bottom:136.826667pt;}
.y72{bottom:142.746667pt;}
.yce{bottom:143.706667pt;}
.y45{bottom:144.666667pt;}
.y5c{bottom:149.466667pt;}
.yfe{bottom:154.746667pt;}
.y7d{bottom:157.626667pt;}
.y9c{bottom:158.746667pt;}
.ycd{bottom:161.626667pt;}
.y2c{bottom:166.746667pt;}
.y84{bottom:170.266667pt;}
.yfd{bottom:172.506667pt;}
.ya7{bottom:173.466667pt;}
.y71{bottom:179.546667pt;}
.y44{bottom:181.466667pt;}
.y5b{bottom:186.266667pt;}
.yfc{bottom:190.426667pt;}
.y7c{bottom:194.426667pt;}
.y9b{bottom:195.546667pt;}
.ycc{bottom:197.466667pt;}
.y2b{bottom:203.546667pt;}
.y83{bottom:207.066667pt;}
.yfb{bottom:208.346667pt;}
.ya6{bottom:210.266667pt;}
.ycb{bottom:215.386667pt;}
.y70{bottom:216.346667pt;}
.y43{bottom:218.266667pt;}
.y5a{bottom:223.066667pt;}
.yfa{bottom:226.266667pt;}
.y7b{bottom:231.226667pt;}
.y9a{bottom:232.346667pt;}
.yca{bottom:233.306667pt;}
.y2a{bottom:240.346667pt;}
.y82{bottom:243.866667pt;}
.yf9{bottom:244.186667pt;}
.ya5{bottom:247.066667pt;}
.yc9{bottom:251.226667pt;}
.y6f{bottom:253.146667pt;}
.y42{bottom:255.066667pt;}
.y59{bottom:259.866667pt;}
.yf8{bottom:262.106667pt;}
.y7a{bottom:268.026667pt;}
.y99{bottom:269.146667pt;}
.y29{bottom:277.146667pt;}
.yf7{bottom:280.026667pt;}
.ya4{bottom:283.866667pt;}
.yc8{bottom:286.906667pt;}
.y81{bottom:288.666667pt;}
.y6e{bottom:289.946667pt;}
.y41{bottom:291.866667pt;}
.y58{bottom:296.666667pt;}
.yf6{bottom:297.946667pt;}
.y79{bottom:304.866667pt;}
.y98{bottom:305.986667pt;}
.y28{bottom:313.986667pt;}
.yf5{bottom:315.906667pt;}
.ya3{bottom:320.706667pt;}
.yc7{bottom:322.786667pt;}
.y6d{bottom:326.786667pt;}
.y40{bottom:328.706667pt;}
.y57{bottom:333.506667pt;}
.yf4{bottom:333.826667pt;}
.yc6{bottom:340.706667pt;}
.y97{bottom:342.786667pt;}
.y80{bottom:345.026667pt;}
.y78{bottom:349.666667pt;}
.y27{bottom:350.786667pt;}
.yf3{bottom:351.586667pt;}
.ya2{bottom:357.506667pt;}
.yc5{bottom:358.626667pt;}
.y6c{bottom:363.586667pt;}
.y3f{bottom:365.506667pt;}
.yf2{bottom:369.506667pt;}
.yc4{bottom:376.546667pt;}
.y56{bottom:378.306667pt;}
.y96{bottom:379.586667pt;}
.yf1{bottom:387.426667pt;}
.y26{bottom:387.586667pt;}
.ya1{bottom:394.306667pt;}
.yc3{bottom:394.466667pt;}
.y6b{bottom:400.386667pt;}
.y3e{bottom:402.306667pt;}
.y77{bottom:402.466667pt;}
.yf0{bottom:405.346667pt;}
.yc2{bottom:412.386667pt;}
.y95{bottom:416.386667pt;}
.yef{bottom:423.266667pt;}
.y25{bottom:424.386667pt;}
.yc1{bottom:430.306667pt;}
.y55{bottom:431.106667pt;}
.y6a{bottom:437.186667pt;}
.y3d{bottom:439.106667pt;}
.y76{bottom:439.266667pt;}
.yee{bottom:441.186667pt;}
.yc0{bottom:448.226667pt;}
.y94{bottom:453.186667pt;}
.yed{bottom:459.106667pt;}
.y24{bottom:461.186667pt;}
.ybf{bottom:465.986667pt;}
.y54{bottom:467.906667pt;}
.y69{bottom:473.986667pt;}
.y3c{bottom:475.906667pt;}
.y75{bottom:476.066667pt;}
.yec{bottom:477.026667pt;}
.ybe{bottom:483.906667pt;}
.y93{bottom:489.986667pt;}
.yeb{bottom:494.946667pt;}
.y23{bottom:497.986667pt;}
.ybd{bottom:501.826667pt;}
.y53{bottom:504.706667pt;}
.y74{bottom:509.826667pt;}
.y14{bottom:510.306667pt;}
.y68{bottom:510.786667pt;}
.y3b{bottom:512.706667pt;}
.yea{bottom:512.866667pt;}
.ybc{bottom:519.746667pt;}
.y73{bottom:520.546667pt;}
.y92{bottom:526.786667pt;}
.ye9{bottom:530.626667pt;}
.y22{bottom:534.786667pt;}
.ybb{bottom:537.693333pt;}
.y52{bottom:541.373333pt;}
.y13{bottom:546.973333pt;}
.y67{bottom:547.613333pt;}
.ye8{bottom:548.573333pt;}
.y3a{bottom:549.373333pt;}
.ya0{bottom:553.053333pt;}
.yba{bottom:555.613333pt;}
.y91{bottom:563.613333pt;}
.y102{bottom:565.533333pt;}
.ye7{bottom:566.493333pt;}
.y21{bottom:571.613333pt;}
.yb9{bottom:573.533333pt;}
.y51{bottom:578.173333pt;}
.y12{bottom:583.773333pt;}
.y66{bottom:584.413333pt;}
.y39{bottom:586.173333pt;}
.yb8{bottom:591.453333pt;}
.y90{bottom:600.413333pt;}
.ye6{bottom:602.333333pt;}
.y20{bottom:608.413333pt;}
.yb7{bottom:609.373333pt;}
.y50{bottom:614.973333pt;}
.ye5{bottom:620.253333pt;}
.y11{bottom:620.573333pt;}
.y65{bottom:621.213333pt;}
.y38{bottom:622.973333pt;}
.y10{bottom:626.653333pt;}
.yb6{bottom:627.293333pt;}
.y8f{bottom:637.213333pt;}
.ye4{bottom:638.173333pt;}
.yb5{bottom:645.053333pt;}
.y1f{bottom:645.213333pt;}
.y4f{bottom:651.773333pt;}
.ye3{bottom:656.093333pt;}
.yf{bottom:657.373333pt;}
.y64{bottom:658.013333pt;}
.y37{bottom:659.773333pt;}
.yb4{bottom:662.973333pt;}
.y7f{bottom:666.013333pt;}
.y8e{bottom:674.013333pt;}
.yb3{bottom:680.893333pt;}
.y1e{bottom:682.013333pt;}
.y4e{bottom:688.573333pt;}
.ye2{bottom:691.933333pt;}
.ye{bottom:694.173333pt;}
.y63{bottom:694.813333pt;}
.y36{bottom:696.573333pt;}
.yb2{bottom:698.813333pt;}
.yd{bottom:700.253333pt;}
.y9e{bottom:702.813333pt;}
.ye1{bottom:709.693333pt;}
.y8d{bottom:710.813333pt;}
.yb1{bottom:716.733333pt;}
.y1d{bottom:718.813333pt;}
.y4d{bottom:725.373333pt;}
.ye0{bottom:727.613333pt;}
.yc{bottom:730.973333pt;}
.y62{bottom:731.613333pt;}
.y35{bottom:733.373333pt;}
.yb0{bottom:734.653333pt;}
.ydf{bottom:745.533333pt;}
.y8c{bottom:747.613333pt;}
.yaf{bottom:752.573333pt;}
.y1c{bottom:755.613333pt;}
.y4c{bottom:762.173333pt;}
.yde{bottom:763.453333pt;}
.yb{bottom:767.773333pt;}
.y61{bottom:768.413333pt;}
.y34{bottom:770.173333pt;}
.ya{bottom:773.893333pt;}
.ydd{bottom:781.413333pt;}
.y8b{bottom:784.453333pt;}
.y1b{bottom:792.453333pt;}
.y4b{bottom:799.013333pt;}
.ydc{bottom:799.333333pt;}
.yae{bottom:799.813333pt;}
.y9{bottom:804.613333pt;}
.y60{bottom:805.253333pt;}
.y33{bottom:807.013333pt;}
.ydb{bottom:817.253333pt;}
.y8a{bottom:821.253333pt;}
.y1a{bottom:829.253333pt;}
.yda{bottom:835.173333pt;}
.y4a{bottom:835.813333pt;}
.y8{bottom:841.413333pt;}
.y5f{bottom:842.053333pt;}
.y32{bottom:843.813333pt;}
.y7{bottom:847.493333pt;}
.yd9{bottom:853.093333pt;}
.yad{bottom:855.333333pt;}
.y89{bottom:858.053333pt;}
.y19{bottom:866.053333pt;}
.yd8{bottom:871.013333pt;}
.y49{bottom:872.613333pt;}
.y6{bottom:878.213333pt;}
.y31{bottom:880.613333pt;}
.y5e{bottom:886.853333pt;}
.yd7{bottom:888.773333pt;}
.yac{bottom:892.133333pt;}
.y88{bottom:894.853333pt;}
.y18{bottom:902.853333pt;}
.yd6{bottom:906.693333pt;}
.y48{bottom:909.413333pt;}
.y5{bottom:915.013333pt;}
.y30{bottom:917.413333pt;}
.yd5{bottom:924.613333pt;}
.yab{bottom:928.933333pt;}
.y87{bottom:931.653333pt;}
.y17{bottom:939.653333pt;}
.yd4{bottom:942.533333pt;}
.y2f{bottom:954.213333pt;}
.y4{bottom:959.013333pt;}
.yd3{bottom:960.453333pt;}
.yaa{bottom:965.733333pt;}
.y86{bottom:968.453333pt;}
.y16{bottom:976.453333pt;}
.yd2{bottom:978.373333pt;}
.yd1{bottom:996.293333pt;}
.y2e{bottom:1002.693333pt;}
.y3{bottom:1008.133333pt;}
.y47{bottom:1010.693333pt;}
.y15{bottom:1013.280000pt;}
.yd0{bottom:1014.240000pt;}
.h6{height:32.620625pt;}
.h5{height:45.156250pt;}
.h8{height:46.281250pt;}
.hc{height:46.593750pt;}
.h7{height:48.687500pt;}
.h9{height:54.514687pt;}
.h4{height:55.328438pt;}
.h2{height:58.563750pt;}
.h3{height:60.057813pt;}
.hb{height:89.161250pt;}
.ha{height:107.497500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:47.839976pt;}
.x5{left:55.359976pt;}
.x3{left:62.879976pt;}
.x4{left:70.399988pt;}
.x2{left:94.431988pt;}
.xd{left:113.471988pt;}
.x6{left:118.431988pt;}
.x9{left:122.911988pt;}
.x7{left:141.626655pt;}
.xa{left:325.826655pt;}
.xc{left:389.346655pt;}
.x1{left:393.186655pt;}
.xb{left:411.426655pt;}
}




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