
    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_4407ba8ed72b3f36c9c809fb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_89e38986fb597a7192af38ad.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_da128d6742c6573192c42af1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab61c52d156588181bd5b328.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae1904a1e031817ade1a6ace.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4d6e689032c85a8a94b0d921.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c1a4b09cceee08f60b3885f9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0dd4aca92f2f0eee20488fa7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.695312;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_abc92f0fdd1f37821e70aa5d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3dad6febebac35b0f7c165f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871582;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_74792eddaab4a5eac1b26ad1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0ddbb15f7122b5417a490ab6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_47b67ed302c3b9300aff5bf9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_11e1774624e8affe5df25545.woff2')format("woff");}.fff{font-family:fff;line-height:0.871582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3b9ad8870284b45359bc348c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_01010b3d8eb8723c456f7dc7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:86.400000px;}
.lse{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.702000px;}
.ls11{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.306000px;}
.lsd{letter-spacing:-0.222000px;}
.ls17{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.126000px;}
.ls14{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.030000px;}
.ls12{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.312000px;}
.ls0{letter-spacing:0.318000px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:9.228000px;}
.ls8{letter-spacing:9.414000px;}
.ls3{letter-spacing:42.684000px;}
.ls6{letter-spacing:42.725982px;}
.ls5{letter-spacing:42.908148px;}
.ls9{letter-spacing:83.160000px;}
.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;}
}
.ws7{word-spacing:-30.456000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.190000px;}
.ws1e{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.482000px;}
.ws1c{word-spacing:-13.374000px;}
.ws1d{word-spacing:-13.284000px;}
.ws1f{word-spacing:-13.140000px;}
.ws21{word-spacing:-12.798000px;}
.ws6{word-spacing:-9.000000px;}
.wsc{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.486000px;}
.ws10{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.414000px;}
.ws13{word-spacing:-0.006000px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:0.162000px;}
.wsb{word-spacing:0.180000px;}
.ws12{word-spacing:0.216000px;}
.ws1b{word-spacing:0.218160px;}
.wse{word-spacing:0.720000px;}
.wsd{word-spacing:1.326000px;}
.ws20{word-spacing:4.590000px;}
.ws16{word-spacing:7.200000px;}
.ws15{word-spacing:7.380000px;}
.ws18{word-spacing:12.240000px;}
.ws17{word-spacing:12.420000px;}
._1{margin-left:-2632.980000px;}
._b{margin-left:-4.453200px;}
._2{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._4{width:1.278037px;}
._5{width:3.036000px;}
._f{width:4.536000px;}
._11{width:5.825412px;}
._12{width:6.884350px;}
._14{width:7.971644px;}
._8{width:9.228006px;}
._c{width:11.052000px;}
._16{width:18.036000px;}
._a{width:20.899704px;}
._9{width:21.944154px;}
._e{width:23.580000px;}
._d{width:24.786000px;}
._15{width:45.036000px;}
._6{width:49.626006px;}
._7{width:50.970000px;}
._3{width:229.587120px;}
._13{width:989.772000px;}
._10{width:1006.332000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.960000px;}
.y59{bottom:4.140000px;}
.y57{bottom:7.200000px;}
.y5b{bottom:7.560000px;}
.y58{bottom:23.040000px;}
.y5d{bottom:23.085000px;}
.y5f{bottom:41.940000px;}
.y1{bottom:76.860000px;}
.yb1{bottom:95.400000px;}
.yea{bottom:97.740000px;}
.yb0{bottom:111.060000px;}
.ye9{bottom:113.220000px;}
.y81{bottom:118.800000px;}
.ye8{bottom:128.880000px;}
.y50{bottom:133.920000px;}
.y80{bottom:134.280000px;}
.yaf{bottom:141.876000px;}
.ye7{bottom:144.396000px;}
.y7f{bottom:149.796000px;}
.y4f{bottom:150.510000px;}
.ye6{bottom:159.870000px;}
.y7e{bottom:165.270000px;}
.y4e{bottom:167.070000px;}
.yae{bottom:173.370000px;}
.ye5{bottom:175.350000px;}
.y7d{bottom:180.930000px;}
.y4d{bottom:183.630000px;}
.yad{bottom:189.930000px;}
.y2b{bottom:192.810000px;}
.y4c{bottom:200.190000px;}
.ye4{bottom:206.130000px;}
.y2a{bottom:208.290000px;}
.y7c{bottom:211.710000px;}
.y4b{bottom:216.750000px;}
.yac{bottom:221.790000px;}
.y29{bottom:223.770000px;}
.y4a{bottom:233.490000px;}
.ye3{bottom:237.630000px;}
.y7b{bottom:243.210000px;}
.y49{bottom:250.050000px;}
.yab{bottom:252.930000px;}
.ye2{bottom:253.110000px;}
.y28{bottom:254.730000px;}
.y7a{bottom:258.690000px;}
.y48{bottom:266.250000px;}
.ye1{bottom:268.770000px;}
.y79{bottom:274.350000px;}
.ye0{bottom:284.250000px;}
.yaa{bottom:284.430000px;}
.y27{bottom:286.230000px;}
.y78{bottom:289.830000px;}
.y47{bottom:297.570000px;}
.ydf{bottom:299.730000px;}
.ya9{bottom:300.090000px;}
.yde{bottom:315.210000px;}
.ya8{bottom:315.570000px;}
.y26{bottom:317.370000px;}
.y77{bottom:320.790000px;}
.y46{bottom:328.890000px;}
.ydd{bottom:330.870000px;}
.ya7{bottom:331.050000px;}
.y25{bottom:333.930000px;}
.y76{bottom:336.270000px;}
.y45{bottom:344.550000px;}
.ydc{bottom:346.350000px;}
.ya6{bottom:346.530000px;}
.y24{bottom:350.490000px;}
.y44{bottom:360.030000px;}
.ydb{bottom:361.830000px;}
.ya5{bottom:362.190000px;}
.y43{bottom:375.690000px;}
.ya4{bottom:377.670000px;}
.y23{bottom:382.530000px;}
.y75{bottom:385.770000px;}
.yda{bottom:392.835000px;}
.y74{bottom:402.375000px;}
.y42{bottom:406.515000px;}
.ya3{bottom:409.035000px;}
.y22{bottom:413.715000px;}
.y73{bottom:418.935000px;}
.yd9{bottom:424.335000px;}
.ya2{bottom:424.515000px;}
.y21{bottom:429.195000px;}
.y72{bottom:435.495000px;}
.y41{bottom:438.015000px;}
.yd8{bottom:439.815000px;}
.ya1{bottom:440.175000px;}
.y20{bottom:444.675000px;}
.y71{bottom:452.055000px;}
.y40{bottom:453.495000px;}
.yd7{bottom:455.295000px;}
.ya0{bottom:455.835000px;}
.y1f{bottom:460.335000px;}
.y70{bottom:468.615000px;}
.y3f{bottom:468.975000px;}
.yd6{bottom:470.775000px;}
.y9f{bottom:471.315000px;}
.y1e{bottom:475.815000px;}
.y3e{bottom:484.635000px;}
.y6f{bottom:484.815000px;}
.yd5{bottom:486.435000px;}
.y3d{bottom:500.115000px;}
.yd4{bottom:501.915000px;}
.y9e{bottom:504.795000px;}
.y1d{bottom:506.595000px;}
.y6e{bottom:516.315000px;}
.yd3{bottom:517.575000px;}
.y3c{bottom:531.075000px;}
.y6d{bottom:532.875000px;}
.yd2{bottom:533.055000px;}
.y9d{bottom:538.455000px;}
.y1c{bottom:544.395000px;}
.yd1{bottom:548.535000px;}
.y6c{bottom:549.435000px;}
.y3b{bottom:562.395000px;}
.yd0{bottom:564.195000px;}
.y6b{bottom:565.995000px;}
.y1b{bottom:568.515000px;}
.y9c{bottom:569.595000px;}
.y3a{bottom:578.055000px;}
.ycf{bottom:579.675000px;}
.y6a{bottom:582.555000px;}
.y1a{bottom:583.995000px;}
.y9b{bottom:585.075000px;}
.y39{bottom:593.535000px;}
.yce{bottom:595.155000px;}
.y69{bottom:599.115000px;}
.y19{bottom:599.475000px;}
.ycd{bottom:610.815000px;}
.y18{bottom:614.955000px;}
.y68{bottom:615.675000px;}
.y9a{bottom:616.215000px;}
.y38{bottom:624.675000px;}
.ycc{bottom:626.295000px;}
.y17{bottom:630.615000px;}
.y67{bottom:632.415000px;}
.y99{bottom:632.775000px;}
.y37{bottom:640.185000px;}
.ycb{bottom:641.985000px;}
.y16{bottom:646.125000px;}
.y66{bottom:647.925000px;}
.y98{bottom:649.365000px;}
.y36{bottom:655.845000px;}
.yca{bottom:657.465000px;}
.y15{bottom:661.605000px;}
.y65{bottom:664.485000px;}
.yc9{bottom:673.125000px;}
.y14{bottom:677.085000px;}
.y64{bottom:681.045000px;}
.y97{bottom:681.585000px;}
.y35{bottom:686.985000px;}
.yc8{bottom:688.605000px;}
.y13{bottom:692.745000px;}
.y63{bottom:697.245000px;}
.y34{bottom:702.645000px;}
.yc7{bottom:704.265000px;}
.y12{bottom:708.045000px;}
.y96{bottom:712.545000px;}
.yc6{bottom:719.745000px;}
.y33{bottom:733.785000px;}
.yc5{bottom:735.405000px;}
.y95{bottom:744.045000px;}
.y62{bottom:744.225000px;}
.yc4{bottom:750.885000px;}
.y11{bottom:755.682000px;}
.y94{bottom:759.525000px;}
.yc3{bottom:766.545000px;}
.y10{bottom:773.533500px;}
.y93{bottom:775.005000px;}
.y61{bottom:782.925000px;}
.yf{bottom:791.385000px;}
.y92{bottom:791.565000px;}
.yc2{bottom:797.325000px;}
.y91{bottom:807.045000px;}
.y5e{bottom:821.625000px;}
.y90{bottom:822.705000px;}
.ye{bottom:827.385000px;}
.yc1{bottom:828.825000px;}
.y8f{bottom:838.185000px;}
.yc0{bottom:844.305000px;}
.yd{bottom:849.705000px;}
.y8e{bottom:853.665000px;}
.ybf{bottom:859.785000px;}
.yc{bottom:863.025000px;}
.y8d{bottom:870.225000px;}
.ybe{bottom:875.445000px;}
.y5c{bottom:879.225000px;}
.y8c{bottom:885.705000px;}
.ybd{bottom:890.925000px;}
.yb{bottom:899.970000px;}
.y8b{bottom:901.230000px;}
.ybc{bottom:906.450000px;}
.y5a{bottom:917.970000px;}
.ybb{bottom:921.930000px;}
.y8a{bottom:933.450000px;}
.yba{bottom:937.590000px;}
.ya{bottom:941.190000px;}
.y89{bottom:949.110000px;}
.yb9{bottom:968.370000px;}
.y56{bottom:979.890000px;}
.yb8{bottom:999.870000px;}
.y88{bottom:1011.390000px;}
.yb7{bottom:1015.530000px;}
.yee{bottom:1015.710000px;}
.y55{bottom:1024.530000px;}
.y32{bottom:1027.590000px;}
.y87{bottom:1027.950000px;}
.yb6{bottom:1031.010000px;}
.yed{bottom:1031.190000px;}
.y8{bottom:1034.070000px;}
.y9{bottom:1038.934500px;}
.y31{bottom:1043.130000px;}
.y86{bottom:1043.430000px;}
.yec{bottom:1046.670000px;}
.y7{bottom:1057.290000px;}
.y30{bottom:1058.670000px;}
.y85{bottom:1059.990000px;}
.yeb{bottom:1062.330000px;}
.y54{bottom:1073.490000px;}
.y2f{bottom:1074.210000px;}
.y84{bottom:1076.550000px;}
.yb5{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y53{bottom:1090.050000px;}
.y83{bottom:1093.110000px;}
.yb4{bottom:1093.290000px;}
.y2e{bottom:1104.990000px;}
.y5{bottom:1105.710000px;}
.y52{bottom:1106.610000px;}
.y82{bottom:1108.770000px;}
.y4{bottom:1122.990000px;}
.y51{bottom:1123.350000px;}
.yb3{bottom:1124.430000px;}
.y2d{bottom:1139.550000px;}
.yb2{bottom:1139.910000px;}
.y3{bottom:1140.270000px;}
.y2{bottom:1158.300000px;}
.y2c{bottom:1193.760000px;}
.hd{height:22.500000px;}
.h9{height:35.314453px;}
.he{height:37.980000px;}
.hf{height:38.016000px;}
.h8{height:52.971680px;}
.hb{height:52.998047px;}
.ha{height:54.421875px;}
.h10{height:56.880000px;}
.hc{height:64.978594px;}
.h2{height:65.010937px;}
.h7{height:66.757500px;}
.h3{height:72.562500px;}
.h4{height:81.995625px;}
.h6{height:84.898125px;}
.h5{height:143.724375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:50.400000px;}
.w3{width:314.715000px;}
.w4{width:319.755000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x3{left:-5.040000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.xa{left:63.900000px;}
.x9{left:66.240000px;}
.x19{left:90.936000px;}
.x12{left:103.356000px;}
.xd{left:117.936000px;}
.x16{left:144.936000px;}
.x14{left:154.470000px;}
.x8{left:178.770000px;}
.x5{left:244.110000px;}
.x2{left:274.575000px;}
.x11{left:278.715000px;}
.x4{left:290.595000px;}
.x7{left:334.695000px;}
.xf{left:353.235000px;}
.x10{left:360.795000px;}
.xc{left:401.115000px;}
.x18{left:405.435000px;}
.x17{left:415.875000px;}
.xb{left:418.395000px;}
.xe{left:434.265000px;}
.x1{left:440.925000px;}
.x15{left:470.085000px;}
.x6{left:526.505850px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:76.800000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.272000pt;}
.lsd{letter-spacing:-0.197333pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.112000pt;}
.ls14{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.026667pt;}
.ls12{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.277333pt;}
.ls0{letter-spacing:0.282667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:8.202667pt;}
.ls8{letter-spacing:8.368000pt;}
.ls3{letter-spacing:37.941333pt;}
.ls6{letter-spacing:37.978651pt;}
.ls5{letter-spacing:38.140576pt;}
.ls9{letter-spacing:73.920000pt;}
.ws7{word-spacing:-27.072000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.613333pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.984000pt;}
.ws1c{word-spacing:-11.888000pt;}
.ws1d{word-spacing:-11.808000pt;}
.ws1f{word-spacing:-11.680000pt;}
.ws21{word-spacing:-11.376000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsc{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.432000pt;}
.ws10{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.368000pt;}
.ws13{word-spacing:-0.005333pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:0.144000pt;}
.wsb{word-spacing:0.160000pt;}
.ws12{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.193920pt;}
.wse{word-spacing:0.640000pt;}
.wsd{word-spacing:1.178667pt;}
.ws20{word-spacing:4.080000pt;}
.ws16{word-spacing:6.400000pt;}
.ws15{word-spacing:6.560000pt;}
.ws18{word-spacing:10.880000pt;}
.ws17{word-spacing:11.040000pt;}
._1{margin-left:-2340.426667pt;}
._b{margin-left:-3.958400pt;}
._2{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._4{width:1.136033pt;}
._5{width:2.698667pt;}
._f{width:4.032000pt;}
._11{width:5.178144pt;}
._12{width:6.119422pt;}
._14{width:7.085906pt;}
._8{width:8.202672pt;}
._c{width:9.824000pt;}
._16{width:16.032000pt;}
._a{width:18.577515pt;}
._9{width:19.505915pt;}
._e{width:20.960000pt;}
._d{width:22.032000pt;}
._15{width:40.032000pt;}
._6{width:44.112005pt;}
._7{width:45.306667pt;}
._3{width:204.077440pt;}
._13{width:879.797333pt;}
._10{width:894.517333pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.520000pt;}
.y59{bottom:3.680000pt;}
.y57{bottom:6.400000pt;}
.y5b{bottom:6.720000pt;}
.y58{bottom:20.480000pt;}
.y5d{bottom:20.520000pt;}
.y5f{bottom:37.280000pt;}
.y1{bottom:68.320000pt;}
.yb1{bottom:84.800000pt;}
.yea{bottom:86.880000pt;}
.yb0{bottom:98.720000pt;}
.ye9{bottom:100.640000pt;}
.y81{bottom:105.600000pt;}
.ye8{bottom:114.560000pt;}
.y50{bottom:119.040000pt;}
.y80{bottom:119.360000pt;}
.yaf{bottom:126.112000pt;}
.ye7{bottom:128.352000pt;}
.y7f{bottom:133.152000pt;}
.y4f{bottom:133.786667pt;}
.ye6{bottom:142.106667pt;}
.y7e{bottom:146.906667pt;}
.y4e{bottom:148.506667pt;}
.yae{bottom:154.106667pt;}
.ye5{bottom:155.866667pt;}
.y7d{bottom:160.826667pt;}
.y4d{bottom:163.226667pt;}
.yad{bottom:168.826667pt;}
.y2b{bottom:171.386667pt;}
.y4c{bottom:177.946667pt;}
.ye4{bottom:183.226667pt;}
.y2a{bottom:185.146667pt;}
.y7c{bottom:188.186667pt;}
.y4b{bottom:192.666667pt;}
.yac{bottom:197.146667pt;}
.y29{bottom:198.906667pt;}
.y4a{bottom:207.546667pt;}
.ye3{bottom:211.226667pt;}
.y7b{bottom:216.186667pt;}
.y49{bottom:222.266667pt;}
.yab{bottom:224.826667pt;}
.ye2{bottom:224.986667pt;}
.y28{bottom:226.426667pt;}
.y7a{bottom:229.946667pt;}
.y48{bottom:236.666667pt;}
.ye1{bottom:238.906667pt;}
.y79{bottom:243.866667pt;}
.ye0{bottom:252.666667pt;}
.yaa{bottom:252.826667pt;}
.y27{bottom:254.426667pt;}
.y78{bottom:257.626667pt;}
.y47{bottom:264.506667pt;}
.ydf{bottom:266.426667pt;}
.ya9{bottom:266.746667pt;}
.yde{bottom:280.186667pt;}
.ya8{bottom:280.506667pt;}
.y26{bottom:282.106667pt;}
.y77{bottom:285.146667pt;}
.y46{bottom:292.346667pt;}
.ydd{bottom:294.106667pt;}
.ya7{bottom:294.266667pt;}
.y25{bottom:296.826667pt;}
.y76{bottom:298.906667pt;}
.y45{bottom:306.266667pt;}
.ydc{bottom:307.866667pt;}
.ya6{bottom:308.026667pt;}
.y24{bottom:311.546667pt;}
.y44{bottom:320.026667pt;}
.ydb{bottom:321.626667pt;}
.ya5{bottom:321.946667pt;}
.y43{bottom:333.946667pt;}
.ya4{bottom:335.706667pt;}
.y23{bottom:340.026667pt;}
.y75{bottom:342.906667pt;}
.yda{bottom:349.186667pt;}
.y74{bottom:357.666667pt;}
.y42{bottom:361.346667pt;}
.ya3{bottom:363.586667pt;}
.y22{bottom:367.746667pt;}
.y73{bottom:372.386667pt;}
.yd9{bottom:377.186667pt;}
.ya2{bottom:377.346667pt;}
.y21{bottom:381.506667pt;}
.y72{bottom:387.106667pt;}
.y41{bottom:389.346667pt;}
.yd8{bottom:390.946667pt;}
.ya1{bottom:391.266667pt;}
.y20{bottom:395.266667pt;}
.y71{bottom:401.826667pt;}
.y40{bottom:403.106667pt;}
.yd7{bottom:404.706667pt;}
.ya0{bottom:405.186667pt;}
.y1f{bottom:409.186667pt;}
.y70{bottom:416.546667pt;}
.y3f{bottom:416.866667pt;}
.yd6{bottom:418.466667pt;}
.y9f{bottom:418.946667pt;}
.y1e{bottom:422.946667pt;}
.y3e{bottom:430.786667pt;}
.y6f{bottom:430.946667pt;}
.yd5{bottom:432.386667pt;}
.y3d{bottom:444.546667pt;}
.yd4{bottom:446.146667pt;}
.y9e{bottom:448.706667pt;}
.y1d{bottom:450.306667pt;}
.y6e{bottom:458.946667pt;}
.yd3{bottom:460.066667pt;}
.y3c{bottom:472.066667pt;}
.y6d{bottom:473.666667pt;}
.yd2{bottom:473.826667pt;}
.y9d{bottom:478.626667pt;}
.y1c{bottom:483.906667pt;}
.yd1{bottom:487.586667pt;}
.y6c{bottom:488.386667pt;}
.y3b{bottom:499.906667pt;}
.yd0{bottom:501.506667pt;}
.y6b{bottom:503.106667pt;}
.y1b{bottom:505.346667pt;}
.y9c{bottom:506.306667pt;}
.y3a{bottom:513.826667pt;}
.ycf{bottom:515.266667pt;}
.y6a{bottom:517.826667pt;}
.y1a{bottom:519.106667pt;}
.y9b{bottom:520.066667pt;}
.y39{bottom:527.586667pt;}
.yce{bottom:529.026667pt;}
.y69{bottom:532.546667pt;}
.y19{bottom:532.866667pt;}
.ycd{bottom:542.946667pt;}
.y18{bottom:546.626667pt;}
.y68{bottom:547.266667pt;}
.y9a{bottom:547.746667pt;}
.y38{bottom:555.266667pt;}
.ycc{bottom:556.706667pt;}
.y17{bottom:560.546667pt;}
.y67{bottom:562.146667pt;}
.y99{bottom:562.466667pt;}
.y37{bottom:569.053333pt;}
.ycb{bottom:570.653333pt;}
.y16{bottom:574.333333pt;}
.y66{bottom:575.933333pt;}
.y98{bottom:577.213333pt;}
.y36{bottom:582.973333pt;}
.yca{bottom:584.413333pt;}
.y15{bottom:588.093333pt;}
.y65{bottom:590.653333pt;}
.yc9{bottom:598.333333pt;}
.y14{bottom:601.853333pt;}
.y64{bottom:605.373333pt;}
.y97{bottom:605.853333pt;}
.y35{bottom:610.653333pt;}
.yc8{bottom:612.093333pt;}
.y13{bottom:615.773333pt;}
.y63{bottom:619.773333pt;}
.y34{bottom:624.573333pt;}
.yc7{bottom:626.013333pt;}
.y12{bottom:629.373333pt;}
.y96{bottom:633.373333pt;}
.yc6{bottom:639.773333pt;}
.y33{bottom:652.253333pt;}
.yc5{bottom:653.693333pt;}
.y95{bottom:661.373333pt;}
.y62{bottom:661.533333pt;}
.yc4{bottom:667.453333pt;}
.y11{bottom:671.717333pt;}
.y94{bottom:675.133333pt;}
.yc3{bottom:681.373333pt;}
.y10{bottom:687.585333pt;}
.y93{bottom:688.893333pt;}
.y61{bottom:695.933333pt;}
.yf{bottom:703.453333pt;}
.y92{bottom:703.613333pt;}
.yc2{bottom:708.733333pt;}
.y91{bottom:717.373333pt;}
.y5e{bottom:730.333333pt;}
.y90{bottom:731.293333pt;}
.ye{bottom:735.453333pt;}
.yc1{bottom:736.733333pt;}
.y8f{bottom:745.053333pt;}
.yc0{bottom:750.493333pt;}
.yd{bottom:755.293333pt;}
.y8e{bottom:758.813333pt;}
.ybf{bottom:764.253333pt;}
.yc{bottom:767.133333pt;}
.y8d{bottom:773.533333pt;}
.ybe{bottom:778.173333pt;}
.y5c{bottom:781.533333pt;}
.y8c{bottom:787.293333pt;}
.ybd{bottom:791.933333pt;}
.yb{bottom:799.973333pt;}
.y8b{bottom:801.093333pt;}
.ybc{bottom:805.733333pt;}
.y5a{bottom:815.973333pt;}
.ybb{bottom:819.493333pt;}
.y8a{bottom:829.733333pt;}
.yba{bottom:833.413333pt;}
.ya{bottom:836.613333pt;}
.y89{bottom:843.653333pt;}
.yb9{bottom:860.773333pt;}
.y56{bottom:871.013333pt;}
.yb8{bottom:888.773333pt;}
.y88{bottom:899.013333pt;}
.yb7{bottom:902.693333pt;}
.yee{bottom:902.853333pt;}
.y55{bottom:910.693333pt;}
.y32{bottom:913.413333pt;}
.y87{bottom:913.733333pt;}
.yb6{bottom:916.453333pt;}
.yed{bottom:916.613333pt;}
.y8{bottom:919.173333pt;}
.y9{bottom:923.497333pt;}
.y31{bottom:927.226667pt;}
.y86{bottom:927.493333pt;}
.yec{bottom:930.373333pt;}
.y7{bottom:939.813333pt;}
.y30{bottom:941.040000pt;}
.y85{bottom:942.213333pt;}
.yeb{bottom:944.293333pt;}
.y54{bottom:954.213333pt;}
.y2f{bottom:954.853333pt;}
.y84{bottom:956.933333pt;}
.yb5{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y53{bottom:968.933333pt;}
.y83{bottom:971.653333pt;}
.yb4{bottom:971.813333pt;}
.y2e{bottom:982.213333pt;}
.y5{bottom:982.853333pt;}
.y52{bottom:983.653333pt;}
.y82{bottom:985.573333pt;}
.y4{bottom:998.213333pt;}
.y51{bottom:998.533333pt;}
.yb3{bottom:999.493333pt;}
.y2d{bottom:1012.933333pt;}
.yb2{bottom:1013.253333pt;}
.y3{bottom:1013.573333pt;}
.y2{bottom:1029.600000pt;}
.y2c{bottom:1061.120000pt;}
.hd{height:20.000000pt;}
.h9{height:31.390625pt;}
.he{height:33.760000pt;}
.hf{height:33.792000pt;}
.h8{height:47.085938pt;}
.hb{height:47.109375pt;}
.ha{height:48.375000pt;}
.h10{height:50.560000pt;}
.hc{height:57.758750pt;}
.h2{height:57.787500pt;}
.h7{height:59.340000pt;}
.h3{height:64.500000pt;}
.h4{height:72.885000pt;}
.h6{height:75.465000pt;}
.h5{height:127.755000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:44.800000pt;}
.w3{width:279.746667pt;}
.w4{width:284.226667pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x3{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.xa{left:56.800000pt;}
.x9{left:58.880000pt;}
.x19{left:80.832000pt;}
.x12{left:91.872000pt;}
.xd{left:104.832000pt;}
.x16{left:128.832000pt;}
.x14{left:137.306667pt;}
.x8{left:158.906667pt;}
.x5{left:216.986667pt;}
.x2{left:244.066667pt;}
.x11{left:247.746667pt;}
.x4{left:258.306667pt;}
.x7{left:297.506667pt;}
.xf{left:313.986667pt;}
.x10{left:320.706667pt;}
.xc{left:356.546667pt;}
.x18{left:360.386667pt;}
.x17{left:369.666667pt;}
.xb{left:371.906667pt;}
.xe{left:386.013333pt;}
.x1{left:391.933333pt;}
.x15{left:417.853333pt;}
.x6{left:468.005200pt;}
}




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