
    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_7d81e6d6ed49ba17dcc0b0fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_abd188fd6f4832e0ba92440f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_33d7f1db72999b7ed01cb9fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_2f2552e3826d2bccbd7eb1b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1fc8ab4c4c11ecc1b77a87d9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_92bd71c2ce984fdf7d706839.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_bb2f90fd7ea6f99ff6e0e6d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891602;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_4a85882fd8a6585e387872d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_d878488232c21eb7641e4d9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694336;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_0b4d1eaf9dea48b39823ad38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.877930;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_375d5fb464d39cdf95073c22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_a626353476d8b632f23bf6c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_0fe0022ca0872c851a9d2ca5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.762207;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(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-33.120000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.360000px;}
.v4{vertical-align:33.120000px;}
.lsf{letter-spacing:-1.512000px;}
.lsb{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.211407px;}
.ls10{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls17{letter-spacing:1.224000px;}
.lsd{letter-spacing:1.440000px;}
.ls1{letter-spacing:1.512000px;}
.ls12{letter-spacing:1.632000px;}
.lsc{letter-spacing:7.200000px;}
.ls9{letter-spacing:11.496000px;}
.lsa{letter-spacing:23.040000px;}
.lse{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.wsf{word-spacing:-19.224000px;}
.ws8{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.208000px;}
.wsb{word-spacing:-16.488000px;}
.ws2{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.595840px;}
.ws9{word-spacing:-12.060000px;}
.ws6{word-spacing:-0.271152px;}
.ws7{word-spacing:-0.059745px;}
.ws4{word-spacing:-0.059602px;}
.ws5{word-spacing:-0.053857px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.344886px;}
._0{margin-left:-1.263516px;}
._1{width:1.901971px;}
._d{width:2.910029px;}
._12{width:4.705783px;}
._f{width:5.727433px;}
._e{width:6.768000px;}
._9{width:7.875516px;}
._4{width:8.976000px;}
._5{width:10.078891px;}
._c{width:11.137109px;}
._10{width:12.792000px;}
._11{width:14.226029px;}
._a{width:15.264000px;}
._b{width:16.560000px;}
._15{width:19.224000px;}
._13{width:20.448000px;}
._14{width:21.681545px;}
._1c{width:23.462455px;}
._1d{width:25.023516px;}
._1f{width:26.064000px;}
._17{width:27.144000px;}
._16{width:28.152000px;}
._1e{width:29.388000px;}
._1a{width:32.232000px;}
._1b{width:33.421061px;}
._8{width:39.960000px;}
._18{width:46.296000px;}
._19{width:47.664000px;}
._20{width:56.448000px;}
._21{width:57.600000px;}
._6{width:72.241061px;}
._7{width:73.586799px;}
._23{width:78.024000px;}
._22{width:114.024000px;}
._3{width:194.376000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs6{font-size:53.856971px;}
.fs5{font-size:59.601715px;}
.fs7{font-size:59.745333px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:71.809295px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.600000px;}
.y1{bottom:52.920000px;}
.y49{bottom:56.700000px;}
.y1f{bottom:81.252217px;}
.y24{bottom:81.359931px;}
.yc1{bottom:110.916000px;}
.ydf{bottom:111.996000px;}
.yf3{bottom:119.016000px;}
.y73{bottom:127.476000px;}
.y80{bottom:128.916000px;}
.y30{bottom:130.896000px;}
.y22{bottom:132.739482px;}
.y9e{bottom:136.116000px;}
.y19{bottom:137.376000px;}
.y48{bottom:138.816000px;}
.yb7{bottom:141.516000px;}
.yd3{bottom:144.216000px;}
.yd8{bottom:146.556000px;}
.y99{bottom:146.916000px;}
.yfe{bottom:147.816000px;}
.y5f{bottom:149.616000px;}
.yc0{bottom:152.310000px;}
.yde{bottom:153.390000px;}
.yf2{bottom:160.410000px;}
.y23{bottom:166.670870px;}
.y72{bottom:170.310000px;}
.y2f{bottom:172.290000px;}
.y90{bottom:173.010000px;}
.y18{bottom:178.770000px;}
.y20{bottom:179.267417px;}
.y47{bottom:180.210000px;}
.yb6{bottom:182.910000px;}
.yd2{bottom:185.610000px;}
.yd7{bottom:187.950000px;}
.y98{bottom:188.310000px;}
.yfd{bottom:189.210000px;}
.y5e{bottom:191.010000px;}
.ybf{bottom:193.710000px;}
.ydd{bottom:194.790000px;}
.yf1{bottom:201.810000px;}
.y7f{bottom:211.710000px;}
.y71{bottom:212.970000px;}
.y17{bottom:220.170000px;}
.y46{bottom:221.610000px;}
.y9d{bottom:222.870000px;}
.yb5{bottom:224.310000px;}
.yd1{bottom:227.010000px;}
.yd6{bottom:229.350000px;}
.y97{bottom:229.710000px;}
.yfc{bottom:230.610000px;}
.y8f{bottom:232.410000px;}
.y5d{bottom:233.670000px;}
.ybe{bottom:235.110000px;}
.ydc{bottom:236.190000px;}
.yf0{bottom:243.210000px;}
.y21{bottom:250.837348px;}
.y7e{bottom:253.110000px;}
.y2e{bottom:254.730000px;}
.y70{bottom:255.810000px;}
.y16{bottom:261.570000px;}
.y45{bottom:263.010000px;}
.yb4{bottom:265.710000px;}
.y9c{bottom:266.970000px;}
.yfb{bottom:267.690000px;}
.yd0{bottom:268.410000px;}
.yb9{bottom:270.750000px;}
.y96{bottom:271.110000px;}
.y8e{bottom:273.810000px;}
.y5c{bottom:276.510000px;}
.ydb{bottom:277.590000px;}
.yef{bottom:284.610000px;}
.y7d{bottom:294.510000px;}
.y6f{bottom:298.470000px;}
.y15{bottom:302.970000px;}
.y44{bottom:304.410000px;}
.yb3{bottom:307.110000px;}
.ycf{bottom:309.810000px;}
.y9b{bottom:311.070000px;}
.y95{bottom:312.510000px;}
.yda{bottom:314.490000px;}
.y8d{bottom:315.210000px;}
.y5b{bottom:317.910000px;}
.yee{bottom:321.690000px;}
.y103{bottom:325.290000px;}
.yed{bottom:331.275000px;}
.y7c{bottom:335.955000px;}
.y2d{bottom:337.935000px;}
.y6e{bottom:341.355000px;}
.y14{bottom:344.415000px;}
.y43{bottom:345.855000px;}
.y25{bottom:348.168863px;}
.yb2{bottom:348.555000px;}
.yce{bottom:351.255000px;}
.yfa{bottom:351.615000px;}
.y94{bottom:353.955000px;}
.y8c{bottom:356.655000px;}
.y5a{bottom:359.355000px;}
.yec{bottom:372.675000px;}
.y7b{bottom:377.355000px;}
.y2c{bottom:379.335000px;}
.y6d{bottom:382.755000px;}
.y13{bottom:385.815000px;}
.y42{bottom:387.255000px;}
.y102{bottom:387.975000px;}
.yb1{bottom:389.955000px;}
.ycd{bottom:392.655000px;}
.yf9{bottom:393.015000px;}
.y93{bottom:395.355000px;}
.y8b{bottom:398.055000px;}
.y59{bottom:400.755000px;}
.yeb{bottom:414.075000px;}
.y101{bottom:415.335000px;}
.y7a{bottom:418.755000px;}
.y2b{bottom:420.735000px;}
.y6c{bottom:424.155000px;}
.y12{bottom:428.475000px;}
.y41{bottom:428.655000px;}
.yb0{bottom:431.355000px;}
.ycc{bottom:434.055000px;}
.yf8{bottom:434.415000px;}
.y92{bottom:436.755000px;}
.y8a{bottom:439.455000px;}
.y58{bottom:442.155000px;}
.yea{bottom:455.475000px;}
.y100{bottom:456.735000px;}
.y79{bottom:460.155000px;}
.y2a{bottom:463.395000px;}
.y6b{bottom:465.555000px;}
.ye6{bottom:468.255000px;}
.y40{bottom:470.055000px;}
.y11{bottom:471.315000px;}
.yaf{bottom:472.755000px;}
.ycb{bottom:475.455000px;}
.yf7{bottom:475.815000px;}
.yd5{bottom:477.795000px;}
.y91{bottom:478.155000px;}
.y89{bottom:480.855000px;}
.y57{bottom:483.555000px;}
.yff{bottom:493.815000px;}
.ye9{bottom:496.875000px;}
.y29{bottom:506.235000px;}
.y6a{bottom:506.955000px;}
.ye5{bottom:509.655000px;}
.y3f{bottom:511.455000px;}
.y10{bottom:512.715000px;}
.yae{bottom:514.155000px;}
.yca{bottom:516.855000px;}
.yf6{bottom:517.215000px;}
.yd4{bottom:519.195000px;}
.y78{bottom:519.555000px;}
.y88{bottom:522.255000px;}
.y56{bottom:524.955000px;}
.ye8{bottom:538.275000px;}
.y69{bottom:548.355000px;}
.y28{bottom:548.895000px;}
.ye4{bottom:551.055000px;}
.y3e{bottom:552.855000px;}
.yf{bottom:554.115000px;}
.yad{bottom:555.555000px;}
.yc9{bottom:558.255000px;}
.yf5{bottom:558.615000px;}
.y77{bottom:560.955000px;}
.y87{bottom:563.655000px;}
.y55{bottom:566.355000px;}
.ye7{bottom:575.355000px;}
.y68{bottom:589.755000px;}
.y27{bottom:591.735000px;}
.ye3{bottom:592.455000px;}
.y3d{bottom:594.255000px;}
.ye{bottom:595.515000px;}
.yf4{bottom:595.695000px;}
.yac{bottom:596.985000px;}
.yc8{bottom:599.685000px;}
.y76{bottom:602.385000px;}
.y86{bottom:606.345000px;}
.y54{bottom:607.785000px;}
.y26{bottom:633.165000px;}
.ye2{bottom:633.885000px;}
.y3c{bottom:635.685000px;}
.yd{bottom:636.765000px;}
.yab{bottom:638.385000px;}
.yc7{bottom:641.085000px;}
.y75{bottom:643.785000px;}
.y67{bottom:649.185000px;}
.y53{bottom:666.825000px;}
.y1e{bottom:670.261456px;}
.ye1{bottom:675.285000px;}
.y3b{bottom:677.085000px;}
.yc{bottom:678.165000px;}
.yaa{bottom:679.785000px;}
.yc6{bottom:682.485000px;}
.y74{bottom:685.185000px;}
.y85{bottom:690.585000px;}
.y66{bottom:708.585000px;}
.ye0{bottom:712.365000px;}
.y3a{bottom:718.485000px;}
.yb{bottom:719.565000px;}
.ya9{bottom:721.185000px;}
.yc5{bottom:723.885000px;}
.y52{bottom:726.585000px;}
.y84{bottom:731.985000px;}
.y65{bottom:749.985000px;}
.y39{bottom:759.885000px;}
.ya{bottom:760.965000px;}
.ya8{bottom:762.585000px;}
.yc4{bottom:765.285000px;}
.y51{bottom:767.985000px;}
.y83{bottom:773.385000px;}
.y64{bottom:791.385000px;}
.y38{bottom:801.285000px;}
.ya7{bottom:803.985000px;}
.yc3{bottom:806.685000px;}
.y50{bottom:809.385000px;}
.y82{bottom:814.785000px;}
.y63{bottom:832.785000px;}
.y37{bottom:842.685000px;}
.y9{bottom:843.765000px;}
.ya6{bottom:845.385000px;}
.yc2{bottom:849.345000px;}
.y4f{bottom:850.785000px;}
.y81{bottom:856.185000px;}
.y62{bottom:874.230000px;}
.y36{bottom:884.130000px;}
.ya5{bottom:886.830000px;}
.y4e{bottom:892.230000px;}
.y8{bottom:893.490000px;}
.ybd{bottom:897.630000px;}
.y61{bottom:915.630000px;}
.y35{bottom:925.530000px;}
.y7{bottom:926.610000px;}
.ya4{bottom:928.230000px;}
.y4d{bottom:933.630000px;}
.ybc{bottom:938.670000px;}
.y60{bottom:957.030000px;}
.y6{bottom:968.010000px;}
.y34{bottom:968.190000px;}
.ya3{bottom:969.630000px;}
.y4c{bottom:975.030000px;}
.ybb{bottom:980.070000px;}
.ya2{bottom:1011.030000px;}
.y33{bottom:1012.290000px;}
.yb8{bottom:1016.070000px;}
.y4b{bottom:1016.430000px;}
.yba{bottom:1039.830000px;}
.y5{bottom:1050.810000px;}
.ya1{bottom:1052.430000px;}
.y32{bottom:1056.390000px;}
.y4a{bottom:1057.830000px;}
.y4{bottom:1092.210000px;}
.ya0{bottom:1095.090000px;}
.y9a{bottom:1098.870000px;}
.y31{bottom:1099.230000px;}
.y3{bottom:1137.420000px;}
.y9f{bottom:1139.220000px;}
.yd9{bottom:1140.300000px;}
.y1d{bottom:1140.660000px;}
.y1c{bottom:1201.339350px;}
.y1b{bottom:1219.339500px;}
.y1a{bottom:1237.339500px;}
.h2{height:19.296000px;}
.hb{height:36.500721px;}
.hc{height:40.394131px;}
.hd{height:40.491466px;}
.ha{height:40.714257px;}
.h8{height:41.689453px;}
.h3{height:46.283906px;}
.h7{height:48.616875px;}
.he{height:49.859774px;}
.h12{height:64.546875px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.hf{height:72.562500px;}
.h14{height:80.440922px;}
.h10{height:80.464922px;}
.h11{height:80.584922px;}
.h13{height:80.644922px;}
.h4{height:84.898125px;}
.h9{height:403.925789px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:9.216000px;}
.w4{width:18.396000px;}
.w3{width:541.198800px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:64.020000px;}
.x2{left:127.656000px;}
.x10{left:145.656000px;}
.x9{left:164.629668px;}
.xb{left:180.750000px;}
.x5{left:183.000361px;}
.xa{left:203.926715px;}
.x7{left:280.626611px;}
.x4{left:296.727275px;}
.x6{left:301.267332px;}
.x8{left:337.377319px;}
.xc{left:437.115000px;}
.x1{left:441.795000px;}
.xd{left:598.605000px;}
.xe{left:640.770000px;}
.xf{left:764.430000px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.320000pt;}
.v4{vertical-align:29.440000pt;}
.lsf{letter-spacing:-1.344000pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.187917pt;}
.ls10{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls17{letter-spacing:1.088000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.344000pt;}
.ls12{letter-spacing:1.450667pt;}
.lsc{letter-spacing:6.400000pt;}
.ls9{letter-spacing:10.218667pt;}
.lsa{letter-spacing:20.480000pt;}
.lse{letter-spacing:172.778667pt;}
.ws1{word-spacing:-64.000000pt;}
.wsf{word-spacing:-17.088000pt;}
.ws8{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.296000pt;}
.wsb{word-spacing:-14.656000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsd{word-spacing:-12.974080pt;}
.ws9{word-spacing:-10.720000pt;}
.ws6{word-spacing:-0.241024pt;}
.ws7{word-spacing:-0.053107pt;}
.ws4{word-spacing:-0.052979pt;}
.ws5{word-spacing:-0.047873pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.084343pt;}
._0{margin-left:-1.123125pt;}
._1{width:1.690641pt;}
._d{width:2.586693pt;}
._12{width:4.182918pt;}
._f{width:5.091052pt;}
._e{width:6.016000pt;}
._9{width:7.000458pt;}
._4{width:7.978667pt;}
._5{width:8.959014pt;}
._c{width:9.899652pt;}
._10{width:11.370667pt;}
._11{width:12.645359pt;}
._a{width:13.568000pt;}
._b{width:14.720000pt;}
._15{width:17.088000pt;}
._13{width:18.176000pt;}
._14{width:19.272484pt;}
._1c{width:20.855516pt;}
._1d{width:22.243125pt;}
._1f{width:23.168000pt;}
._17{width:24.128000pt;}
._16{width:25.024000pt;}
._1e{width:26.122667pt;}
._1a{width:28.650667pt;}
._1b{width:29.707610pt;}
._8{width:35.520000pt;}
._18{width:41.152000pt;}
._19{width:42.368000pt;}
._20{width:50.176000pt;}
._21{width:51.200000pt;}
._6{width:64.214276pt;}
._7{width:65.410488pt;}
._23{width:69.354667pt;}
._22{width:101.354667pt;}
._3{width:172.778667pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:47.872863pt;}
.fs5{font-size:52.979302pt;}
.fs7{font-size:53.106963pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:63.830484pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.200000pt;}
.y1{bottom:47.040000pt;}
.y49{bottom:50.400000pt;}
.y1f{bottom:72.224193pt;}
.y24{bottom:72.319939pt;}
.yc1{bottom:98.592000pt;}
.ydf{bottom:99.552000pt;}
.yf3{bottom:105.792000pt;}
.y73{bottom:113.312000pt;}
.y80{bottom:114.592000pt;}
.y30{bottom:116.352000pt;}
.y22{bottom:117.990651pt;}
.y9e{bottom:120.992000pt;}
.y19{bottom:122.112000pt;}
.y48{bottom:123.392000pt;}
.yb7{bottom:125.792000pt;}
.yd3{bottom:128.192000pt;}
.yd8{bottom:130.272000pt;}
.y99{bottom:130.592000pt;}
.yfe{bottom:131.392000pt;}
.y5f{bottom:132.992000pt;}
.yc0{bottom:135.386667pt;}
.yde{bottom:136.346667pt;}
.yf2{bottom:142.586667pt;}
.y23{bottom:148.151884pt;}
.y72{bottom:151.386667pt;}
.y2f{bottom:153.146667pt;}
.y90{bottom:153.786667pt;}
.y18{bottom:158.906667pt;}
.y20{bottom:159.348815pt;}
.y47{bottom:160.186667pt;}
.yb6{bottom:162.586667pt;}
.yd2{bottom:164.986667pt;}
.yd7{bottom:167.066667pt;}
.y98{bottom:167.386667pt;}
.yfd{bottom:168.186667pt;}
.y5e{bottom:169.786667pt;}
.ybf{bottom:172.186667pt;}
.ydd{bottom:173.146667pt;}
.yf1{bottom:179.386667pt;}
.y7f{bottom:188.186667pt;}
.y71{bottom:189.306667pt;}
.y17{bottom:195.706667pt;}
.y46{bottom:196.986667pt;}
.y9d{bottom:198.106667pt;}
.yb5{bottom:199.386667pt;}
.yd1{bottom:201.786667pt;}
.yd6{bottom:203.866667pt;}
.y97{bottom:204.186667pt;}
.yfc{bottom:204.986667pt;}
.y8f{bottom:206.586667pt;}
.y5d{bottom:207.706667pt;}
.ybe{bottom:208.986667pt;}
.ydc{bottom:209.946667pt;}
.yf0{bottom:216.186667pt;}
.y21{bottom:222.966531pt;}
.y7e{bottom:224.986667pt;}
.y2e{bottom:226.426667pt;}
.y70{bottom:227.386667pt;}
.y16{bottom:232.506667pt;}
.y45{bottom:233.786667pt;}
.yb4{bottom:236.186667pt;}
.y9c{bottom:237.306667pt;}
.yfb{bottom:237.946667pt;}
.yd0{bottom:238.586667pt;}
.yb9{bottom:240.666667pt;}
.y96{bottom:240.986667pt;}
.y8e{bottom:243.386667pt;}
.y5c{bottom:245.786667pt;}
.ydb{bottom:246.746667pt;}
.yef{bottom:252.986667pt;}
.y7d{bottom:261.786667pt;}
.y6f{bottom:265.306667pt;}
.y15{bottom:269.306667pt;}
.y44{bottom:270.586667pt;}
.yb3{bottom:272.986667pt;}
.ycf{bottom:275.386667pt;}
.y9b{bottom:276.506667pt;}
.y95{bottom:277.786667pt;}
.yda{bottom:279.546667pt;}
.y8d{bottom:280.186667pt;}
.y5b{bottom:282.586667pt;}
.yee{bottom:285.946667pt;}
.y103{bottom:289.146667pt;}
.yed{bottom:294.466667pt;}
.y7c{bottom:298.626667pt;}
.y2d{bottom:300.386667pt;}
.y6e{bottom:303.426667pt;}
.y14{bottom:306.146667pt;}
.y43{bottom:307.426667pt;}
.y25{bottom:309.483434pt;}
.yb2{bottom:309.826667pt;}
.yce{bottom:312.226667pt;}
.yfa{bottom:312.546667pt;}
.y94{bottom:314.626667pt;}
.y8c{bottom:317.026667pt;}
.y5a{bottom:319.426667pt;}
.yec{bottom:331.266667pt;}
.y7b{bottom:335.426667pt;}
.y2c{bottom:337.186667pt;}
.y6d{bottom:340.226667pt;}
.y13{bottom:342.946667pt;}
.y42{bottom:344.226667pt;}
.y102{bottom:344.866667pt;}
.yb1{bottom:346.626667pt;}
.ycd{bottom:349.026667pt;}
.yf9{bottom:349.346667pt;}
.y93{bottom:351.426667pt;}
.y8b{bottom:353.826667pt;}
.y59{bottom:356.226667pt;}
.yeb{bottom:368.066667pt;}
.y101{bottom:369.186667pt;}
.y7a{bottom:372.226667pt;}
.y2b{bottom:373.986667pt;}
.y6c{bottom:377.026667pt;}
.y12{bottom:380.866667pt;}
.y41{bottom:381.026667pt;}
.yb0{bottom:383.426667pt;}
.ycc{bottom:385.826667pt;}
.yf8{bottom:386.146667pt;}
.y92{bottom:388.226667pt;}
.y8a{bottom:390.626667pt;}
.y58{bottom:393.026667pt;}
.yea{bottom:404.866667pt;}
.y100{bottom:405.986667pt;}
.y79{bottom:409.026667pt;}
.y2a{bottom:411.906667pt;}
.y6b{bottom:413.826667pt;}
.ye6{bottom:416.226667pt;}
.y40{bottom:417.826667pt;}
.y11{bottom:418.946667pt;}
.yaf{bottom:420.226667pt;}
.ycb{bottom:422.626667pt;}
.yf7{bottom:422.946667pt;}
.yd5{bottom:424.706667pt;}
.y91{bottom:425.026667pt;}
.y89{bottom:427.426667pt;}
.y57{bottom:429.826667pt;}
.yff{bottom:438.946667pt;}
.ye9{bottom:441.666667pt;}
.y29{bottom:449.986667pt;}
.y6a{bottom:450.626667pt;}
.ye5{bottom:453.026667pt;}
.y3f{bottom:454.626667pt;}
.y10{bottom:455.746667pt;}
.yae{bottom:457.026667pt;}
.yca{bottom:459.426667pt;}
.yf6{bottom:459.746667pt;}
.yd4{bottom:461.506667pt;}
.y78{bottom:461.826667pt;}
.y88{bottom:464.226667pt;}
.y56{bottom:466.626667pt;}
.ye8{bottom:478.466667pt;}
.y69{bottom:487.426667pt;}
.y28{bottom:487.906667pt;}
.ye4{bottom:489.826667pt;}
.y3e{bottom:491.426667pt;}
.yf{bottom:492.546667pt;}
.yad{bottom:493.826667pt;}
.yc9{bottom:496.226667pt;}
.yf5{bottom:496.546667pt;}
.y77{bottom:498.626667pt;}
.y87{bottom:501.026667pt;}
.y55{bottom:503.426667pt;}
.ye7{bottom:511.426667pt;}
.y68{bottom:524.226667pt;}
.y27{bottom:525.986667pt;}
.ye3{bottom:526.626667pt;}
.y3d{bottom:528.226667pt;}
.ye{bottom:529.346667pt;}
.yf4{bottom:529.506667pt;}
.yac{bottom:530.653333pt;}
.yc8{bottom:533.053333pt;}
.y76{bottom:535.453333pt;}
.y86{bottom:538.973333pt;}
.y54{bottom:540.253333pt;}
.y26{bottom:562.813333pt;}
.ye2{bottom:563.453333pt;}
.y3c{bottom:565.053333pt;}
.yd{bottom:566.013333pt;}
.yab{bottom:567.453333pt;}
.yc7{bottom:569.853333pt;}
.y75{bottom:572.253333pt;}
.y67{bottom:577.053333pt;}
.y53{bottom:592.733333pt;}
.y1e{bottom:595.787961pt;}
.ye1{bottom:600.253333pt;}
.y3b{bottom:601.853333pt;}
.yc{bottom:602.813333pt;}
.yaa{bottom:604.253333pt;}
.yc6{bottom:606.653333pt;}
.y74{bottom:609.053333pt;}
.y85{bottom:613.853333pt;}
.y66{bottom:629.853333pt;}
.ye0{bottom:633.213333pt;}
.y3a{bottom:638.653333pt;}
.yb{bottom:639.613333pt;}
.ya9{bottom:641.053333pt;}
.yc5{bottom:643.453333pt;}
.y52{bottom:645.853333pt;}
.y84{bottom:650.653333pt;}
.y65{bottom:666.653333pt;}
.y39{bottom:675.453333pt;}
.ya{bottom:676.413333pt;}
.ya8{bottom:677.853333pt;}
.yc4{bottom:680.253333pt;}
.y51{bottom:682.653333pt;}
.y83{bottom:687.453333pt;}
.y64{bottom:703.453333pt;}
.y38{bottom:712.253333pt;}
.ya7{bottom:714.653333pt;}
.yc3{bottom:717.053333pt;}
.y50{bottom:719.453333pt;}
.y82{bottom:724.253333pt;}
.y63{bottom:740.253333pt;}
.y37{bottom:749.053333pt;}
.y9{bottom:750.013333pt;}
.ya6{bottom:751.453333pt;}
.yc2{bottom:754.973333pt;}
.y4f{bottom:756.253333pt;}
.y81{bottom:761.053333pt;}
.y62{bottom:777.093333pt;}
.y36{bottom:785.893333pt;}
.ya5{bottom:788.293333pt;}
.y4e{bottom:793.093333pt;}
.y8{bottom:794.213333pt;}
.ybd{bottom:797.893333pt;}
.y61{bottom:813.893333pt;}
.y35{bottom:822.693333pt;}
.y7{bottom:823.653333pt;}
.ya4{bottom:825.093333pt;}
.y4d{bottom:829.893333pt;}
.ybc{bottom:834.373333pt;}
.y60{bottom:850.693333pt;}
.y6{bottom:860.453333pt;}
.y34{bottom:860.613333pt;}
.ya3{bottom:861.893333pt;}
.y4c{bottom:866.693333pt;}
.ybb{bottom:871.173333pt;}
.ya2{bottom:898.693333pt;}
.y33{bottom:899.813333pt;}
.yb8{bottom:903.173333pt;}
.y4b{bottom:903.493333pt;}
.yba{bottom:924.293333pt;}
.y5{bottom:934.053333pt;}
.ya1{bottom:935.493333pt;}
.y32{bottom:939.013333pt;}
.y4a{bottom:940.293333pt;}
.y4{bottom:970.853333pt;}
.ya0{bottom:973.413333pt;}
.y9a{bottom:976.773333pt;}
.y31{bottom:977.093333pt;}
.y3{bottom:1011.040000pt;}
.y9f{bottom:1012.640000pt;}
.yd9{bottom:1013.600000pt;}
.y1d{bottom:1013.920000pt;}
.y1c{bottom:1067.857200pt;}
.y1b{bottom:1083.857333pt;}
.y1a{bottom:1099.857333pt;}
.h2{height:17.152000pt;}
.hb{height:32.445085pt;}
.hc{height:35.905894pt;}
.hd{height:35.992414pt;}
.ha{height:36.190451pt;}
.h8{height:37.057292pt;}
.h3{height:41.141250pt;}
.h7{height:43.215000pt;}
.he{height:44.319799pt;}
.h12{height:57.375000pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.hf{height:64.500000pt;}
.h14{height:71.503042pt;}
.h10{height:71.524375pt;}
.h11{height:71.631042pt;}
.h13{height:71.684375pt;}
.h4{height:75.465000pt;}
.h9{height:359.045145pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:8.192000pt;}
.w4{width:16.352000pt;}
.w3{width:481.065600pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:56.906667pt;}
.x2{left:113.472000pt;}
.x10{left:129.472000pt;}
.x9{left:146.337483pt;}
.xb{left:160.666667pt;}
.x5{left:162.666987pt;}
.xa{left:181.268191pt;}
.x7{left:249.445877pt;}
.x4{left:263.757578pt;}
.x6{left:267.793184pt;}
.x8{left:299.890950pt;}
.xc{left:388.546667pt;}
.x1{left:392.706667pt;}
.xd{left:532.093333pt;}
.xe{left:569.573333pt;}
.xf{left:679.493333pt;}
}




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