
    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_6d35664235e485f9b7c254ab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_9b7590cb241281fe01f789bd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_e30f22aa42741bd6242f5d21.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_0234e4d6ee03cbbc3eedb391.woff')format("woff");}.ff4{font-family:ff4;line-height:0.680176;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_ef9ea9a734f2f0d14b547e08.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_b877ff8e218abad935a357bf.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws9{word-spacing:-38.802600px;}
.ws46{word-spacing:-38.660400px;}
.ws8d{word-spacing:-38.660100px;}
.ws58{word-spacing:-38.653200px;}
.ws20{word-spacing:-38.652300px;}
.ws6b{word-spacing:-38.651400px;}
.ws6a{word-spacing:-38.651100px;}
.ws7c{word-spacing:-38.647800px;}
.ws62{word-spacing:-38.647200px;}
.ws95{word-spacing:-38.646900px;}
.ws1d{word-spacing:-38.644200px;}
.ws76{word-spacing:-38.592000px;}
.ws49{word-spacing:-38.586300px;}
.ws1f{word-spacing:-38.445000px;}
.ws7b{word-spacing:-38.444400px;}
.ws5e{word-spacing:-38.443500px;}
.ws92{word-spacing:-38.439900px;}
.ws1a{word-spacing:-38.439000px;}
.wsd{word-spacing:-38.432700px;}
.ws47{word-spacing:-38.431800px;}
.ws5f{word-spacing:-38.375700px;}
.ws65{word-spacing:-38.373300px;}
.ws5b{word-spacing:-38.369700px;}
.ws21{word-spacing:-38.289600px;}
.ws57{word-spacing:-38.166000px;}
.ws5d{word-spacing:-38.161500px;}
.wsb{word-spacing:-38.160000px;}
.ws3f{word-spacing:-38.157000px;}
.ws93{word-spacing:-38.156400px;}
.ws39{word-spacing:-38.154600px;}
.ws78{word-spacing:-38.151900px;}
.ws71{word-spacing:-38.149200px;}
.wsc{word-spacing:-38.148300px;}
.ws1e{word-spacing:-38.147700px;}
.ws0{word-spacing:-38.096400px;}
.wsf{word-spacing:-38.084400px;}
.ws22{word-spacing:-38.007900px;}
.ws63{word-spacing:-37.948200px;}
.ws36{word-spacing:-37.946400px;}
.ws1{word-spacing:-37.944000px;}
.ws41{word-spacing:-37.942200px;}
.ws44{word-spacing:-37.941300px;}
.ws2f{word-spacing:-37.940400px;}
.ws6c{word-spacing:-37.936800px;}
.ws8a{word-spacing:-37.936200px;}
.ws3{word-spacing:-37.931400px;}
.ws24{word-spacing:-37.728000px;}
.ws40{word-spacing:-37.714500px;}
.wse{word-spacing:-37.713900px;}
.ws23{word-spacing:-37.710000px;}
.ws3a{word-spacing:-37.440000px;}
.ws4a{word-spacing:-37.431900px;}
.ws34{word-spacing:-37.222200px;}
.ws16{word-spacing:-36.720000px;}
.ws61{word-spacing:-36.504000px;}
.ws43{word-spacing:-36.490500px;}
.ws90{word-spacing:-36.486600px;}
.ws3d{word-spacing:-36.430200px;}
.ws42{word-spacing:-36.000000px;}
.ws3c{word-spacing:-35.771400px;}
.ws66{word-spacing:-35.280000px;}
.ws5c{word-spacing:-35.266800px;}
.ws7a{word-spacing:-35.198400px;}
.ws4f{word-spacing:-34.839000px;}
.ws67{word-spacing:-34.765200px;}
.ws4e{word-spacing:-34.344000px;}
.ws68{word-spacing:-34.340400px;}
.ws79{word-spacing:-34.335000px;}
.ws12{word-spacing:-34.329600px;}
.ws8{word-spacing:-33.547800px;}
.ws31{word-spacing:-33.116400px;}
.ws98{word-spacing:-32.908200px;}
.ws3e{word-spacing:-32.900400px;}
.ws70{word-spacing:-32.899200px;}
.ws91{word-spacing:-32.895900px;}
.ws82{word-spacing:-32.895000px;}
.ws6f{word-spacing:-32.887800px;}
.ws74{word-spacing:-32.406000px;}
.ws60{word-spacing:-32.401500px;}
.ws38{word-spacing:-32.396400px;}
.ws72{word-spacing:-32.175900px;}
.ws8e{word-spacing:-31.960500px;}
.ws26{word-spacing:-31.816500px;}
.ws2e{word-spacing:-31.686000px;}
.ws25{word-spacing:-31.680000px;}
.ws73{word-spacing:-31.679700px;}
.ws2c{word-spacing:-31.464000px;}
.ws19{word-spacing:-30.960000px;}
.ws52{word-spacing:-30.951900px;}
.ws50{word-spacing:-30.744600px;}
.ws51{word-spacing:-30.744000px;}
.ws3b{word-spacing:-30.740400px;}
.ws15{word-spacing:-30.236400px;}
.ws86{word-spacing:-30.012300px;}
.ws48{word-spacing:-29.520000px;}
.ws83{word-spacing:-29.289600px;}
.ws35{word-spacing:-28.800000px;}
.ws37{word-spacing:-28.791900px;}
.ws89{word-spacing:-28.787400px;}
.ws88{word-spacing:-28.582800px;}
.ws10{word-spacing:-28.086000px;}
.ws30{word-spacing:-28.082400px;}
.ws11{word-spacing:-27.868200px;}
.ws1b{word-spacing:-27.347400px;}
.ws87{word-spacing:-27.140400px;}
.ws96{word-spacing:-26.640000px;}
.ws1c{word-spacing:-26.631000px;}
.ws55{word-spacing:-26.564400px;}
.ws53{word-spacing:-26.424000px;}
.ws56{word-spacing:-26.414400px;}
.ws77{word-spacing:-26.404200px;}
.ws6e{word-spacing:-26.352000px;}
.ws54{word-spacing:-26.337600px;}
.ws33{word-spacing:-25.905900px;}
.ws4c{word-spacing:-24.984000px;}
.ws4b{word-spacing:-24.480600px;}
.ws4d{word-spacing:-24.264000px;}
.ws5{word-spacing:-23.687700px;}
.ws27{word-spacing:-23.544000px;}
.ws64{word-spacing:-23.179500px;}
.ws8f{word-spacing:-22.822200px;}
.ws14{word-spacing:-22.320000px;}
.ws32{word-spacing:-22.100400px;}
.ws85{word-spacing:-21.606000px;}
.ws2b{word-spacing:-21.012300px;}
.ws28{word-spacing:-20.285100px;}
.ws6d{word-spacing:-19.946400px;}
.wsa{word-spacing:-19.931400px;}
.ws81{word-spacing:-19.440000px;}
.ws84{word-spacing:-16.984800px;}
.ws97{word-spacing:-16.566000px;}
.ws2a{word-spacing:-16.542900px;}
.ws99{word-spacing:-16.494000px;}
.ws17{word-spacing:-16.117800px;}
.ws80{word-spacing:-13.450500px;}
.ws69{word-spacing:-13.377600px;}
.ws45{word-spacing:-12.960000px;}
.ws7e{word-spacing:-8.646000px;}
.ws7f{word-spacing:-8.424000px;}
.ws7d{word-spacing:-8.410500px;}
.ws8c{word-spacing:-8.398800px;}
.ws8b{word-spacing:-8.196000px;}
.ws18{word-spacing:-7.189200px;}
.ws94{word-spacing:-6.972900px;}
.ws4{word-spacing:-5.177700px;}
.ws75{word-spacing:-4.317300px;}
.ws13{word-spacing:-2.157000px;}
.ws5a{word-spacing:3.826800px;}
.ws29{word-spacing:11.520000px;}
.ws59{word-spacing:35.999400px;}
.ws2d{word-spacing:70.056000px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._11{width:17.421900px;}
._4{width:18.775200px;}
._b{width:20.232000px;}
._15{width:21.520800px;}
._7{width:23.673600px;}
._13{width:25.052400px;}
._e{width:26.208000px;}
._a{width:27.280800px;}
._12{width:28.408200px;}
._6{width:29.674200px;}
._10{width:31.155900px;}
._17{width:32.531100px;}
._9{width:34.632000px;}
._5{width:36.222900px;}
._18{width:37.860000px;}
._1b{width:40.115400px;}
._c{width:41.245800px;}
._16{width:44.352000px;}
._1a{width:48.425100px;}
._d{width:49.936500px;}
._1c{width:51.034800px;}
._19{width:52.824600px;}
._8{width:54.927000px;}
._14{width:62.640000px;}
._f{width:68.898900px;}
._1{width:71.928000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:3.886500px;}
.yb{bottom:4.486500px;}
.y64{bottom:18.765000px;}
.y60{bottom:18.825000px;}
.y62{bottom:18.886500px;}
.y66{bottom:18.900000px;}
.y69{bottom:24.586500px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y5e{bottom:43.050000px;}
.y5d{bottom:63.750000px;}
.y5c{bottom:84.270000px;}
.y9c{bottom:109.515000px;}
.y31{bottom:119.415000px;}
.y70{bottom:139.575000px;}
.y82{bottom:141.015000px;}
.y51{bottom:151.275000px;}
.y30{bottom:155.236500px;}
.y6f{bottom:160.275000px;}
.y9b{bottom:171.975000px;}
.y2f{bottom:175.936500px;}
.y6e{bottom:180.975000px;}
.y81{bottom:182.775000px;}
.y9a{bottom:192.675000px;}
.y50{bottom:193.036500px;}
.y2e{bottom:196.636500px;}
.y80{bottom:203.475000px;}
.y99{bottom:213.375000px;}
.y6d{bottom:218.775000px;}
.y7f{bottom:224.175000px;}
.y2d{bottom:232.275000px;}
.y4f{bottom:234.615000px;}
.y2c{bottom:252.975000px;}
.y6c{bottom:254.550000px;}
.y98{bottom:255.136500px;}
.y7e{bottom:265.936500px;}
.y2b{bottom:273.675000px;}
.y97{bottom:275.836500px;}
.y4e{bottom:276.375000px;}
.y7d{bottom:286.636500px;}
.y6b{bottom:290.250000px;}
.y2a{bottom:294.375000px;}
.y96{bottom:296.536500px;}
.y4d{bottom:297.075000px;}
.y7c{bottom:307.336500px;}
.y29{bottom:315.075000px;}
.y68{bottom:325.950000px;}
.y7b{bottom:328.036500px;}
.y28{bottom:335.775000px;}
.y95{bottom:338.115000px;}
.y4c{bottom:338.836500px;}
.y27{bottom:356.475000px;}
.y94{bottom:358.815000px;}
.y7a{bottom:369.615000px;}
.y4b{bottom:380.415000px;}
.y26{bottom:392.115000px;}
.y93{bottom:400.575000px;}
.y4a{bottom:401.115000px;}
.y79{bottom:411.375000px;}
.y92{bottom:421.275000px;}
.y49{bottom:421.815000px;}
.y25{bottom:427.936500px;}
.y48{bottom:442.515000px;}
.y78{bottom:453.136500px;}
.y67{bottom:457.636500px;}
.y91{bottom:463.036500px;}
.y24{bottom:463.575000px;}
.y65{bottom:474.375000px;}
.y90{bottom:483.736500px;}
.y47{bottom:484.275000px;}
.y77{bottom:494.715000px;}
.y23{bottom:499.215000px;}
.y63{bottom:510.150000px;}
.y8f{bottom:525.315000px;}
.y46{bottom:526.036500px;}
.y22{bottom:535.036500px;}
.y76{bottom:536.475000px;}
.y61{bottom:545.850000px;}
.y8e{bottom:546.015000px;}
.y45{bottom:546.736500px;}
.y8d{bottom:566.715000px;}
.y44{bottom:567.436500px;}
.y21{bottom:570.675000px;}
.y75{bottom:578.236500px;}
.y5f{bottom:581.550000px;}
.y8c{bottom:587.415000px;}
.y43{bottom:588.136500px;}
.y20{bottom:591.375000px;}
.y74{bottom:598.936500px;}
.y8b{bottom:608.115000px;}
.y73{bottom:619.636500px;}
.y42{bottom:629.715000px;}
.y1f{bottom:633.136500px;}
.y8a{bottom:649.875000px;}
.y41{bottom:650.415000px;}
.yaa{bottom:651.315000px;}
.y5b{bottom:653.625000px;}
.y1e{bottom:653.836500px;}
.y72{bottom:661.215000px;}
.y89{bottom:670.575000px;}
.ya9{bottom:672.015000px;}
.y88{bottom:691.275000px;}
.y40{bottom:692.175000px;}
.ya8{bottom:692.715000px;}
.y1d{bottom:695.415000px;}
.y71{bottom:702.975000px;}
.y87{bottom:711.975000px;}
.y3f{bottom:712.875000px;}
.ya7{bottom:713.415000px;}
.y1c{bottom:716.115000px;}
.y86{bottom:732.675000px;}
.y3e{bottom:733.575000px;}
.ya6{bottom:734.115000px;}
.y1b{bottom:736.815000px;}
.y3d{bottom:754.275000px;}
.ya5{bottom:754.815000px;}
.y1a{bottom:757.515000px;}
.y5a{bottom:774.436500px;}
.y3c{bottom:774.975000px;}
.ya4{bottom:775.515000px;}
.y19{bottom:778.215000px;}
.ya3{bottom:796.215000px;}
.y18{bottom:798.915000px;}
.y59{bottom:816.015000px;}
.y3b{bottom:816.736500px;}
.ya2{bottom:816.915000px;}
.y17{bottom:819.615000px;}
.y58{bottom:836.715000px;}
.y3a{bottom:837.436500px;}
.ya1{bottom:837.615000px;}
.y16{bottom:840.315000px;}
.y57{bottom:857.415000px;}
.y39{bottom:858.136500px;}
.ya0{bottom:858.315000px;}
.y15{bottom:861.015000px;}
.y56{bottom:878.115000px;}
.y38{bottom:878.836500px;}
.y9f{bottom:879.015000px;}
.y14{bottom:881.715000px;}
.y55{bottom:898.815000px;}
.y85{bottom:899.175000px;}
.y37{bottom:899.536500px;}
.y9e{bottom:899.715000px;}
.y13{bottom:905.475000px;}
.y54{bottom:919.515000px;}
.y9d{bottom:920.415000px;}
.y12{bottom:926.175000px;}
.y84{bottom:940.936500px;}
.y36{bottom:941.115000px;}
.y11{bottom:946.875000px;}
.y53{bottom:961.275000px;}
.y83{bottom:961.636500px;}
.y35{bottom:961.815000px;}
.y10{bottom:967.575000px;}
.y34{bottom:982.515000px;}
.yf{bottom:988.275000px;}
.y52{bottom:1003.036500px;}
.y33{bottom:1003.215000px;}
.ye{bottom:1008.975000px;}
.y32{bottom:1023.915000px;}
.yd{bottom:1044.615000px;}
.yc{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.ya{bottom:1231.650000px;}
.h7{height:20.175000px;}
.ha{height:35.625000px;}
.hb{height:35.700000px;}
.hc{height:41.325000px;}
.h6{height:44.480566px;}
.h4{height:48.761719px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h3{height:62.261719px;}
.h8{height:63.457031px;}
.h9{height:101.850000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w3{width:65.100000px;}
.w4{width:108.375000px;}
.w6{width:112.200000px;}
.w5{width:113.475000px;}
.w8{width:162.075000px;}
.w7{width:268.650000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.145000px;}
.x19{left:12.645000px;}
.x12{left:119.475000px;}
.x2{left:127.620000px;}
.x4{left:157.320000px;}
.xc{left:192.420000px;}
.x1{left:201.060000px;}
.x14{left:202.500000px;}
.xd{left:212.760000px;}
.x18{left:281.475000px;}
.x15{left:328.800000px;}
.x5{left:434.520000px;}
.x1a{left:443.475000px;}
.x16{left:459.900000px;}
.x3{left:465.675000px;}
.xf{left:485.460000px;}
.x10{left:532.260000px;}
.x7{left:561.600000px;}
.x9{left:565.020000px;}
.xb{left:569.700000px;}
.xe{left:576.000000px;}
.x17{left:590.025000px;}
.x1b{left:605.475000px;}
.x8{left:651.600000px;}
.x6{left:656.460000px;}
.x11{left:664.920000px;}
.xa{left:668.878500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws9{word-spacing:-34.491200pt;}
.ws46{word-spacing:-34.364800pt;}
.ws8d{word-spacing:-34.364533pt;}
.ws58{word-spacing:-34.358400pt;}
.ws20{word-spacing:-34.357600pt;}
.ws6b{word-spacing:-34.356800pt;}
.ws6a{word-spacing:-34.356533pt;}
.ws7c{word-spacing:-34.353600pt;}
.ws62{word-spacing:-34.353067pt;}
.ws95{word-spacing:-34.352800pt;}
.ws1d{word-spacing:-34.350400pt;}
.ws76{word-spacing:-34.304000pt;}
.ws49{word-spacing:-34.298933pt;}
.ws1f{word-spacing:-34.173333pt;}
.ws7b{word-spacing:-34.172800pt;}
.ws5e{word-spacing:-34.172000pt;}
.ws92{word-spacing:-34.168800pt;}
.ws1a{word-spacing:-34.168000pt;}
.wsd{word-spacing:-34.162400pt;}
.ws47{word-spacing:-34.161600pt;}
.ws5f{word-spacing:-34.111733pt;}
.ws65{word-spacing:-34.109600pt;}
.ws5b{word-spacing:-34.106400pt;}
.ws21{word-spacing:-34.035200pt;}
.ws57{word-spacing:-33.925333pt;}
.ws5d{word-spacing:-33.921333pt;}
.wsb{word-spacing:-33.920000pt;}
.ws3f{word-spacing:-33.917333pt;}
.ws93{word-spacing:-33.916800pt;}
.ws39{word-spacing:-33.915200pt;}
.ws78{word-spacing:-33.912800pt;}
.ws71{word-spacing:-33.910400pt;}
.wsc{word-spacing:-33.909600pt;}
.ws1e{word-spacing:-33.909067pt;}
.ws0{word-spacing:-33.863467pt;}
.wsf{word-spacing:-33.852800pt;}
.ws22{word-spacing:-33.784800pt;}
.ws63{word-spacing:-33.731733pt;}
.ws36{word-spacing:-33.730133pt;}
.ws1{word-spacing:-33.728000pt;}
.ws41{word-spacing:-33.726400pt;}
.ws44{word-spacing:-33.725600pt;}
.ws2f{word-spacing:-33.724800pt;}
.ws6c{word-spacing:-33.721600pt;}
.ws8a{word-spacing:-33.721067pt;}
.ws3{word-spacing:-33.716800pt;}
.ws24{word-spacing:-33.536000pt;}
.ws40{word-spacing:-33.524000pt;}
.wse{word-spacing:-33.523467pt;}
.ws23{word-spacing:-33.520000pt;}
.ws3a{word-spacing:-33.280000pt;}
.ws4a{word-spacing:-33.272800pt;}
.ws34{word-spacing:-33.086400pt;}
.ws16{word-spacing:-32.640000pt;}
.ws61{word-spacing:-32.448000pt;}
.ws43{word-spacing:-32.436000pt;}
.ws90{word-spacing:-32.432533pt;}
.ws3d{word-spacing:-32.382400pt;}
.ws42{word-spacing:-32.000000pt;}
.ws3c{word-spacing:-31.796800pt;}
.ws66{word-spacing:-31.360000pt;}
.ws5c{word-spacing:-31.348267pt;}
.ws7a{word-spacing:-31.287467pt;}
.ws4f{word-spacing:-30.968000pt;}
.ws67{word-spacing:-30.902400pt;}
.ws4e{word-spacing:-30.528000pt;}
.ws68{word-spacing:-30.524800pt;}
.ws79{word-spacing:-30.520000pt;}
.ws12{word-spacing:-30.515200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws31{word-spacing:-29.436800pt;}
.ws98{word-spacing:-29.251733pt;}
.ws3e{word-spacing:-29.244800pt;}
.ws70{word-spacing:-29.243733pt;}
.ws91{word-spacing:-29.240800pt;}
.ws82{word-spacing:-29.240000pt;}
.ws6f{word-spacing:-29.233600pt;}
.ws74{word-spacing:-28.805333pt;}
.ws60{word-spacing:-28.801333pt;}
.ws38{word-spacing:-28.796800pt;}
.ws72{word-spacing:-28.600800pt;}
.ws8e{word-spacing:-28.409333pt;}
.ws26{word-spacing:-28.281333pt;}
.ws2e{word-spacing:-28.165333pt;}
.ws25{word-spacing:-28.160000pt;}
.ws73{word-spacing:-28.159733pt;}
.ws2c{word-spacing:-27.968000pt;}
.ws19{word-spacing:-27.520000pt;}
.ws52{word-spacing:-27.512800pt;}
.ws50{word-spacing:-27.328533pt;}
.ws51{word-spacing:-27.328000pt;}
.ws3b{word-spacing:-27.324800pt;}
.ws15{word-spacing:-26.876800pt;}
.ws86{word-spacing:-26.677600pt;}
.ws48{word-spacing:-26.240000pt;}
.ws83{word-spacing:-26.035200pt;}
.ws35{word-spacing:-25.600000pt;}
.ws37{word-spacing:-25.592800pt;}
.ws89{word-spacing:-25.588800pt;}
.ws88{word-spacing:-25.406933pt;}
.ws10{word-spacing:-24.965333pt;}
.ws30{word-spacing:-24.962133pt;}
.ws11{word-spacing:-24.771733pt;}
.ws1b{word-spacing:-24.308800pt;}
.ws87{word-spacing:-24.124800pt;}
.ws96{word-spacing:-23.680000pt;}
.ws1c{word-spacing:-23.672000pt;}
.ws55{word-spacing:-23.612800pt;}
.ws53{word-spacing:-23.488000pt;}
.ws56{word-spacing:-23.479467pt;}
.ws77{word-spacing:-23.470400pt;}
.ws6e{word-spacing:-23.424000pt;}
.ws54{word-spacing:-23.411200pt;}
.ws33{word-spacing:-23.027467pt;}
.ws4c{word-spacing:-22.208000pt;}
.ws4b{word-spacing:-21.760533pt;}
.ws4d{word-spacing:-21.568000pt;}
.ws5{word-spacing:-21.055733pt;}
.ws27{word-spacing:-20.928000pt;}
.ws64{word-spacing:-20.604000pt;}
.ws8f{word-spacing:-20.286400pt;}
.ws14{word-spacing:-19.840000pt;}
.ws32{word-spacing:-19.644800pt;}
.ws85{word-spacing:-19.205333pt;}
.ws2b{word-spacing:-18.677600pt;}
.ws28{word-spacing:-18.031200pt;}
.ws6d{word-spacing:-17.730133pt;}
.wsa{word-spacing:-17.716800pt;}
.ws81{word-spacing:-17.280000pt;}
.ws84{word-spacing:-15.097600pt;}
.ws97{word-spacing:-14.725333pt;}
.ws2a{word-spacing:-14.704800pt;}
.ws99{word-spacing:-14.661333pt;}
.ws17{word-spacing:-14.326933pt;}
.ws80{word-spacing:-11.956000pt;}
.ws69{word-spacing:-11.891200pt;}
.ws45{word-spacing:-11.520000pt;}
.ws7e{word-spacing:-7.685333pt;}
.ws7f{word-spacing:-7.488000pt;}
.ws7d{word-spacing:-7.476000pt;}
.ws8c{word-spacing:-7.465600pt;}
.ws8b{word-spacing:-7.285333pt;}
.ws18{word-spacing:-6.390400pt;}
.ws94{word-spacing:-6.198133pt;}
.ws4{word-spacing:-4.602400pt;}
.ws75{word-spacing:-3.837600pt;}
.ws13{word-spacing:-1.917333pt;}
.ws5a{word-spacing:3.401600pt;}
.ws29{word-spacing:10.240000pt;}
.ws59{word-spacing:31.999467pt;}
.ws2d{word-spacing:62.272000pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._11{width:15.486133pt;}
._4{width:16.689067pt;}
._b{width:17.984000pt;}
._15{width:19.129600pt;}
._7{width:21.043200pt;}
._13{width:22.268800pt;}
._e{width:23.296000pt;}
._a{width:24.249600pt;}
._12{width:25.251733pt;}
._6{width:26.377067pt;}
._10{width:27.694133pt;}
._17{width:28.916533pt;}
._9{width:30.784000pt;}
._5{width:32.198133pt;}
._18{width:33.653333pt;}
._1b{width:35.658133pt;}
._c{width:36.662933pt;}
._16{width:39.424000pt;}
._1a{width:43.044533pt;}
._d{width:44.388000pt;}
._1c{width:45.364267pt;}
._19{width:46.955200pt;}
._8{width:48.824000pt;}
._14{width:55.680000pt;}
._f{width:61.243467pt;}
._1{width:63.936000pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:3.454667pt;}
.yb{bottom:3.988000pt;}
.y64{bottom:16.680000pt;}
.y60{bottom:16.733333pt;}
.y62{bottom:16.788000pt;}
.y66{bottom:16.800000pt;}
.y69{bottom:21.854667pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y5e{bottom:38.266667pt;}
.y5d{bottom:56.666667pt;}
.y5c{bottom:74.906667pt;}
.y9c{bottom:97.346667pt;}
.y31{bottom:106.146667pt;}
.y70{bottom:124.066667pt;}
.y82{bottom:125.346667pt;}
.y51{bottom:134.466667pt;}
.y30{bottom:137.988000pt;}
.y6f{bottom:142.466667pt;}
.y9b{bottom:152.866667pt;}
.y2f{bottom:156.388000pt;}
.y6e{bottom:160.866667pt;}
.y81{bottom:162.466667pt;}
.y9a{bottom:171.266667pt;}
.y50{bottom:171.588000pt;}
.y2e{bottom:174.788000pt;}
.y80{bottom:180.866667pt;}
.y99{bottom:189.666667pt;}
.y6d{bottom:194.466667pt;}
.y7f{bottom:199.266667pt;}
.y2d{bottom:206.466667pt;}
.y4f{bottom:208.546667pt;}
.y2c{bottom:224.866667pt;}
.y6c{bottom:226.266667pt;}
.y98{bottom:226.788000pt;}
.y7e{bottom:236.388000pt;}
.y2b{bottom:243.266667pt;}
.y97{bottom:245.188000pt;}
.y4e{bottom:245.666667pt;}
.y7d{bottom:254.788000pt;}
.y6b{bottom:258.000000pt;}
.y2a{bottom:261.666667pt;}
.y96{bottom:263.588000pt;}
.y4d{bottom:264.066667pt;}
.y7c{bottom:273.188000pt;}
.y29{bottom:280.066667pt;}
.y68{bottom:289.733333pt;}
.y7b{bottom:291.588000pt;}
.y28{bottom:298.466667pt;}
.y95{bottom:300.546667pt;}
.y4c{bottom:301.188000pt;}
.y27{bottom:316.866667pt;}
.y94{bottom:318.946667pt;}
.y7a{bottom:328.546667pt;}
.y4b{bottom:338.146667pt;}
.y26{bottom:348.546667pt;}
.y93{bottom:356.066667pt;}
.y4a{bottom:356.546667pt;}
.y79{bottom:365.666667pt;}
.y92{bottom:374.466667pt;}
.y49{bottom:374.946667pt;}
.y25{bottom:380.388000pt;}
.y48{bottom:393.346667pt;}
.y78{bottom:402.788000pt;}
.y67{bottom:406.788000pt;}
.y91{bottom:411.588000pt;}
.y24{bottom:412.066667pt;}
.y65{bottom:421.666667pt;}
.y90{bottom:429.988000pt;}
.y47{bottom:430.466667pt;}
.y77{bottom:439.746667pt;}
.y23{bottom:443.746667pt;}
.y63{bottom:453.466667pt;}
.y8f{bottom:466.946667pt;}
.y46{bottom:467.588000pt;}
.y22{bottom:475.588000pt;}
.y76{bottom:476.866667pt;}
.y61{bottom:485.200000pt;}
.y8e{bottom:485.346667pt;}
.y45{bottom:485.988000pt;}
.y8d{bottom:503.746667pt;}
.y44{bottom:504.388000pt;}
.y21{bottom:507.266667pt;}
.y75{bottom:513.988000pt;}
.y5f{bottom:516.933333pt;}
.y8c{bottom:522.146667pt;}
.y43{bottom:522.788000pt;}
.y20{bottom:525.666667pt;}
.y74{bottom:532.388000pt;}
.y8b{bottom:540.546667pt;}
.y73{bottom:550.788000pt;}
.y42{bottom:559.746667pt;}
.y1f{bottom:562.788000pt;}
.y8a{bottom:577.666667pt;}
.y41{bottom:578.146667pt;}
.yaa{bottom:578.946667pt;}
.y5b{bottom:581.000000pt;}
.y1e{bottom:581.188000pt;}
.y72{bottom:587.746667pt;}
.y89{bottom:596.066667pt;}
.ya9{bottom:597.346667pt;}
.y88{bottom:614.466667pt;}
.y40{bottom:615.266667pt;}
.ya8{bottom:615.746667pt;}
.y1d{bottom:618.146667pt;}
.y71{bottom:624.866667pt;}
.y87{bottom:632.866667pt;}
.y3f{bottom:633.666667pt;}
.ya7{bottom:634.146667pt;}
.y1c{bottom:636.546667pt;}
.y86{bottom:651.266667pt;}
.y3e{bottom:652.066667pt;}
.ya6{bottom:652.546667pt;}
.y1b{bottom:654.946667pt;}
.y3d{bottom:670.466667pt;}
.ya5{bottom:670.946667pt;}
.y1a{bottom:673.346667pt;}
.y5a{bottom:688.388000pt;}
.y3c{bottom:688.866667pt;}
.ya4{bottom:689.346667pt;}
.y19{bottom:691.746667pt;}
.ya3{bottom:707.746667pt;}
.y18{bottom:710.146667pt;}
.y59{bottom:725.346667pt;}
.y3b{bottom:725.988000pt;}
.ya2{bottom:726.146667pt;}
.y17{bottom:728.546667pt;}
.y58{bottom:743.746667pt;}
.y3a{bottom:744.388000pt;}
.ya1{bottom:744.546667pt;}
.y16{bottom:746.946667pt;}
.y57{bottom:762.146667pt;}
.y39{bottom:762.788000pt;}
.ya0{bottom:762.946667pt;}
.y15{bottom:765.346667pt;}
.y56{bottom:780.546667pt;}
.y38{bottom:781.188000pt;}
.y9f{bottom:781.346667pt;}
.y14{bottom:783.746667pt;}
.y55{bottom:798.946667pt;}
.y85{bottom:799.266667pt;}
.y37{bottom:799.588000pt;}
.y9e{bottom:799.746667pt;}
.y13{bottom:804.866667pt;}
.y54{bottom:817.346667pt;}
.y9d{bottom:818.146667pt;}
.y12{bottom:823.266667pt;}
.y84{bottom:836.388000pt;}
.y36{bottom:836.546667pt;}
.y11{bottom:841.666667pt;}
.y53{bottom:854.466667pt;}
.y83{bottom:854.788000pt;}
.y35{bottom:854.946667pt;}
.y10{bottom:860.066667pt;}
.y34{bottom:873.346667pt;}
.yf{bottom:878.466667pt;}
.y52{bottom:891.588000pt;}
.y33{bottom:891.746667pt;}
.ye{bottom:896.866667pt;}
.y32{bottom:910.146667pt;}
.yd{bottom:928.546667pt;}
.yc{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.ya{bottom:1094.800000pt;}
.h7{height:17.933333pt;}
.ha{height:31.666667pt;}
.hb{height:31.733333pt;}
.hc{height:36.733333pt;}
.h6{height:39.538281pt;}
.h4{height:43.343750pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h3{height:55.343750pt;}
.h8{height:56.406250pt;}
.h9{height:90.533333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w3{width:57.866667pt;}
.w4{width:96.333333pt;}
.w6{width:99.733333pt;}
.w5{width:100.866667pt;}
.w8{width:144.066667pt;}
.w7{width:238.800000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.240000pt;}
.x19{left:11.240000pt;}
.x12{left:106.200000pt;}
.x2{left:113.440000pt;}
.x4{left:139.840000pt;}
.xc{left:171.040000pt;}
.x1{left:178.720000pt;}
.x14{left:180.000000pt;}
.xd{left:189.120000pt;}
.x18{left:250.200000pt;}
.x15{left:292.266667pt;}
.x5{left:386.240000pt;}
.x1a{left:394.200000pt;}
.x16{left:408.800000pt;}
.x3{left:413.933333pt;}
.xf{left:431.520000pt;}
.x10{left:473.120000pt;}
.x7{left:499.200000pt;}
.x9{left:502.240000pt;}
.xb{left:506.400000pt;}
.xe{left:512.000000pt;}
.x17{left:524.466667pt;}
.x1b{left:538.200000pt;}
.x8{left:579.200000pt;}
.x6{left:583.520000pt;}
.x11{left:591.040000pt;}
.xa{left:594.558667pt;}
}




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