
    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_ea299a4720bf7835aae7af08.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_f3207dca6ef046c0f6c96f15.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_046b305ca8be2c9619884d96.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_e8c561ea8482e9a15acf24b7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_a6beae1489f5143303809202.woff')format("woff");}.ff5{font-family:ff5;line-height:1.274414;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_9290c3253d2a619bc4805205.woff')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_e4cde00e2ff506ff88826bf4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.926000;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_0e5be79dd03af9cd6fb82d61.woff')format("woff");}.ff8{font-family:ff8;line-height:1.020996;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_78010566e6662ac29f797a6d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_cb3408b966dcc61aee0ab840.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936523;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_a1f98e90a55b9ef3f8cff129.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_f0a2ed53e2078f57497c7bc8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.926000;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_dc16f3d22a6de79f5d1943b4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.977539;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_e173885443bc9e31ff441a5d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.926000;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:-1.265625px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.234375px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.068531px;}
.ls0{letter-spacing:0.068554px;}
.ls2{letter-spacing:0.068576px;}
.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;}
}
.ws5{word-spacing:-40.031998px;}
.ws1{word-spacing:-36.845507px;}
.ws9{word-spacing:-30.023999px;}
.ws0{word-spacing:-20.015999px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:272.732465px;}
.ws7{word-spacing:359.420250px;}
.ws6{word-spacing:388.796240px;}
.ws4{word-spacing:400.820183px;}
.ws3{word-spacing:1206.367993px;}
._4{margin-left:-12.220322px;}
._3{margin-left:-7.992941px;}
._6{margin-left:-6.625574px;}
._5{margin-left:-5.328282px;}
._1{margin-left:-4.104037px;}
._0{margin-left:-2.917081px;}
._2{margin-left:-1.296100px;}
._7{width:1.294749px;}
.fc6{color:rgb(150,152,150);}
.fc4{color:rgb(0,134,179);}
.fc3{color:rgb(167,29,93);}
.fc5{color:rgb(0,136,204);}
.fc2{color:rgb(121,93,163);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:61.199999px;}
.fs2{font-size:71.999997px;}
.fs5{font-size:89.999996px;}
.fs4{font-size:107.999996px;}
.fs1{font-size:125.999995px;}
.fs0{font-size:161.999993px;}
.y0{bottom:0.000000px;}
.yb0{bottom:12.392567px;}
.y61{bottom:13.517567px;}
.yc8{bottom:18.017567px;}
.yc9{bottom:18.333973px;}
.y17{bottom:21.374999px;}
.y1e{bottom:21.392567px;}
.y14{bottom:22.499999px;}
.y8f{bottom:27.017567px;}
.y60{bottom:38.267566px;}
.yaf{bottom:41.958973px;}
.y1{bottom:42.237453px;}
.yae{bottom:42.767566px;}
.ya4{bottom:46.124998px;}
.yc7{bottom:46.458972px;}
.y13{bottom:47.249998px;}
.yc6{bottom:47.267566px;}
.y1d{bottom:50.958972px;}
.y1c{bottom:51.767566px;}
.y8e{bottom:52.892566px;}
.y5f{bottom:63.017565px;}
.y25{bottom:71.999997px;}
.y8d{bottom:77.642565px;}
.y113{bottom:84.392564px;}
.y114{bottom:84.708971px;}
.y5e{bottom:88.892564px;}
.y9f{bottom:97.874996px;}
.y8c{bottom:103.517564px;}
.y5d{bottom:113.642563px;}
.y9e{bottom:122.624995px;}
.yad{bottom:124.380017px;}
.yc5{bottom:127.755017px;}
.y8b{bottom:128.267563px;}
.y112{bottom:129.392563px;}
.y1b{bottom:133.380017px;}
.yf5{bottom:136.755017px;}
.y5c{bottom:139.517562px;}
.y9d{bottom:147.374994px;}
.y116{bottom:148.499994px;}
.y8a{bottom:153.017562px;}
.y5b{bottom:164.267561px;}
.y1a{bottom:171.017561px;}
.y9c{bottom:173.249993px;}
.yf4{bottom:174.392561px;}
.y89{bottom:178.892561px;}
.yac{bottom:187.892560px;}
.y5a{bottom:189.017560px;}
.y110{bottom:190.142560px;}
.y111{bottom:190.458966px;}
.y9b{bottom:197.999992px;}
.y19{bottom:199.458966px;}
.y18{bottom:200.267560px;}
.y88{bottom:203.642560px;}
.yf3{bottom:203.958966px;}
.y59{bottom:214.892559px;}
.yab{bottom:216.017559px;}
.y10e{bottom:219.392559px;}
.y10f{bottom:219.708965px;}
.y9a{bottom:222.749991px;}
.y33{bottom:222.767559px;}
.y34{bottom:223.083965px;}
.ydd{bottom:223.874991px;}
.y87{bottom:229.517558px;}
.yf2{bottom:232.083965px;}
.yf1{bottom:232.892558px;}
.y58{bottom:239.642558px;}
.y99{bottom:248.624990px;}
.y31{bottom:252.017557px;}
.y32{bottom:252.333964px;}
.y86{bottom:254.267557px;}
.yef{bottom:261.017557px;}
.yf0{bottom:261.333963px;}
.y57{bottom:265.517557px;}
.yaa{bottom:271.142557px;}
.y98{bottom:273.374989px;}
.y85{bottom:279.017556px;}
.y16{bottom:280.755011px;}
.y56{bottom:290.267556px;}
.yc4{bottom:296.505010px;}
.y97{bottom:299.249988px;}
.y10d{bottom:299.880010px;}
.y84{bottom:304.892555px;}
.yda{bottom:307.142555px;}
.ydb{bottom:307.458961px;}
.y55{bottom:315.017555px;}
.y15{bottom:318.392555px;}
.yee{bottom:318.708961px;}
.y96{bottom:323.999987px;}
.y83{bottom:329.642554px;}
.y30{bottom:332.505009px;}
.yc3{bottom:335.267554px;}
.y54{bottom:340.892554px;}
.ya9{bottom:342.017554px;}
.yec{bottom:347.642554px;}
.yed{bottom:347.958960px;}
.y95{bottom:348.749985px;}
.yd9{bottom:352.142553px;}
.y82{bottom:354.392553px;}
.y10c{bottom:363.392553px;}
.y53{bottom:365.642553px;}
.y2f{bottom:370.142553px;}
.ya8{bottom:370.458959px;}
.y94{bottom:374.624984px;}
.yeb{bottom:376.083959px;}
.yea{bottom:376.892552px;}
.y81{bottom:380.267552px;}
.y52{bottom:390.392552px;}
.y10b{bottom:392.642552px;}
.y12{bottom:398.880006px;}
.y93{bottom:399.374983px;}
.ya6{bottom:399.392551px;}
.ya7{bottom:399.708958px;}
.y80{bottom:405.017551px;}
.ye9{bottom:405.333957px;}
.yc2{bottom:415.755005px;}
.y51{bottom:416.267551px;}
.y10a{bottom:420.767550px;}
.yd8{bottom:421.892550px;}
.y92{bottom:425.249982px;}
.ya5{bottom:428.642550px;}
.y7f{bottom:430.892550px;}
.ye8{bottom:433.458956px;}
.ye7{bottom:434.267550px;}
.y50{bottom:441.017550px;}
.y109{bottom:449.208956px;}
.y91{bottom:449.999981px;}
.y108{bottom:450.017549px;}
.y2e{bottom:450.630004px;}
.y7e{bottom:455.642549px;}
.y11{bottom:462.392549px;}
.ye6{bottom:462.708955px;}
.y4f{bottom:466.892549px;}
.yc1{bottom:479.267548px;}
.y7d{bottom:480.392548px;}
.y10{bottom:491.642548px;}
.ye5{bottom:491.958954px;}
.yd7{bottom:500.642547px;}
.y7c{bottom:506.267547px;}
.ya3{bottom:509.130001px;}
.y2d{bottom:514.142547px;}
.y4e{bottom:516.392546px;}
.yf{bottom:520.892546px;}
.y107{bottom:530.505001px;}
.y7b{bottom:531.017546px;}
.y4d{bottom:542.267545px;}
.yd6{bottom:543.392545px;}
.y7a{bottom:556.892545px;}
.yc0{bottom:559.754999px;}
.y4c{bottom:567.017544px;}
.y106{bottom:568.142544px;}
.ye4{bottom:572.129999px;}
.ye{bottom:574.892544px;}
.y79{bottom:581.642544px;}
.yd5{bottom:587.267544px;}
.y4b{bottom:592.892543px;}
.y2c{bottom:594.629998px;}
.ya2{bottom:597.392543px;}
.y78{bottom:606.392543px;}
.ye3{bottom:610.892543px;}
.y4a{bottom:617.642542px;}
.ya1{bottom:626.642542px;}
.yd4{bottom:630.017542px;}
.y77{bottom:632.267542px;}
.y49{bottom:642.392541px;}
.yd{bottom:645.767541px;}
.ybf{bottom:648.017541px;}
.ye2{bottom:653.642541px;}
.y76{bottom:657.017541px;}
.y104{bottom:664.892540px;}
.y105{bottom:665.208947px;}
.y48{bottom:668.267540px;}
.ya0{bottom:672.767540px;}
.yd3{bottom:673.892540px;}
.yc{bottom:675.017540px;}
.y75{bottom:682.892540px;}
.y2b{bottom:684.017539px;}
.y47{bottom:693.017539px;}
.y103{bottom:693.333945px;}
.ybe{bottom:694.142539px;}
.ye1{bottom:706.517539px;}
.y74{bottom:707.642539px;}
.y2a{bottom:712.142538px;}
.yd2{bottom:716.642538px;}
.y46{bottom:718.892538px;}
.yb{bottom:721.142538px;}
.y101{bottom:722.267538px;}
.y102{bottom:722.583944px;}
.ybd{bottom:723.392538px;}
.y73{bottom:732.392537px;}
.ye0{bottom:736.083944px;}
.ydf{bottom:736.892537px;}
.y45{bottom:743.642537px;}
.ya{bottom:750.392537px;}
.ybc{bottom:752.642537px;}
.y90{bottom:753.254991px;}
.y72{bottom:758.267536px;}
.y28{bottom:759.392536px;}
.y29{bottom:759.708943px;}
.yd1{bottom:760.517536px;}
.y44{bottom:768.392536px;}
.y9{bottom:778.517536px;}
.ybb{bottom:780.767535px;}
.y71{bottom:783.017535px;}
.yde{bottom:784.142535px;}
.y26{bottom:787.517535px;}
.y27{bottom:787.833941px;}
.y43{bottom:794.267535px;}
.y100{bottom:802.754989px;}
.yd0{bottom:804.392534px;}
.y8{bottom:807.767534px;}
.y70{bottom:808.892534px;}
.yba{bottom:810.017534px;}
.y42{bottom:819.017534px;}
.y6f{bottom:833.642533px;}
.y7{bottom:837.017533px;}
.yb9{bottom:839.267533px;}
.yff{bottom:841.517533px;}
.y41{bottom:844.892533px;}
.ycf{bottom:846.017533px;}
.y6e{bottom:858.392532px;}
.ydc{bottom:864.629987px;}
.y6{bottom:865.142532px;}
.y24{bottom:868.004986px;}
.yb8{bottom:868.517532px;}
.y40{bottom:869.642532px;}
.y6d{bottom:884.267531px;}
.y3f{bottom:894.392531px;}
.yb7{bottom:897.767531px;}
.yce{bottom:902.267530px;}
.y6c{bottom:909.017530px;}
.y5{bottom:912.392530px;}
.y3e{bottom:920.267530px;}
.yb6{bottom:925.892529px;}
.ycd{bottom:931.517529px;}
.y6b{bottom:933.767529px;}
.yfd{bottom:937.142529px;}
.yfe{bottom:937.458935px;}
.y115{bottom:940.004983px;}
.y3d{bottom:945.017529px;}
.yb4{bottom:956.267528px;}
.yb5{bottom:956.583934px;}
.y23{bottom:957.392528px;}
.y6a{bottom:959.642528px;}
.ycc{bottom:960.767528px;}
.yfb{bottom:966.392528px;}
.yfc{bottom:966.708934px;}
.y4{bottom:967.517528px;}
.y3c{bottom:969.767528px;}
.y69{bottom:984.392527px;}
.y22{bottom:985.517527px;}
.yb3{bottom:985.833933px;}
.yf9{bottom:994.517527px;}
.yfa{bottom:994.833933px;}
.y3b{bottom:995.642527px;}
.y68{bottom:1010.267526px;}
.y21{bottom:1014.767526px;}
.y3a{bottom:1020.392525px;}
.y67{bottom:1035.017525px;}
.ycb{bottom:1041.254979px;}
.y39{bottom:1046.267524px;}
.y3{bottom:1050.767524px;}
.y66{bottom:1059.767524px;}
.yb2{bottom:1066.004978px;}
.y38{bottom:1071.017523px;}
.yf8{bottom:1075.004978px;}
.y65{bottom:1085.642523px;}
.y20{bottom:1095.254977px;}
.y37{bottom:1095.767522px;}
.y2{bottom:1099.142522px;}
.y64{bottom:1110.392522px;}
.yf7{bottom:1113.767522px;}
.y36{bottom:1121.642521px;}
.yb1{bottom:1129.517521px;}
.y63{bottom:1136.267521px;}
.y35{bottom:1146.392520px;}
.yf6{bottom:1156.517520px;}
.y1f{bottom:1158.767520px;}
.yca{bottom:1159.083926px;}
.y62{bottom:1161.017520px;}
.hd{height:46.676953px;}
.h5{height:52.631998px;}
.ha{height:52.989257px;}
.h8{height:53.999998px;}
.h7{height:59.526562px;}
.h9{height:62.760937px;}
.h12{height:65.789997px;}
.hb{height:78.749997px;}
.h10{height:78.947997px;}
.h6{height:79.874997px;}
.h4{height:92.105996px;}
.hf{height:103.499996px;}
.hc{height:104.624996px;}
.h3{height:118.421995px;}
.h13{height:281.249988px;}
.h11{height:356.624985px;}
.he{height:467.999981px;}
.h2{height:1179.017519px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:807.943325px;}
.w2{width:808.505822px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:6.152343px;}
.x3{left:13.833987px;}
.x16{left:15.749999px;}
.x20{left:27.492186px;}
.x3f{left:31.499999px;}
.x2{left:35.999999px;}
.x15{left:39.164061px;}
.x1{left:41.624998px;}
.xf{left:46.494139px;}
.xe{left:54.175779px;}
.x19{left:59.818357px;}
.x30{left:83.759762px;}
.x25{left:111.392573px;}
.x34{left:112.851558px;}
.x39{left:153.527337px;}
.x17{left:167.291009px;}
.x31{left:170.578118px;}
.x3b{left:180.544914px;}
.x42{left:189.755857px;}
.xa{left:194.167961px;}
.x26{left:198.210929px;}
.x10{left:200.812492px;}
.x32{left:227.671866px;}
.x41{left:261.808583px;}
.x3a{left:269.894520px;}
.x1a{left:271.212885px;}
.x27{left:285.029291px;}
.x40{left:287.156238px;}
.x4{left:302.167956px;}
.x21{left:313.435539px;}
.xb{left:327.041008px;}
.x11{left:333.685539px;}
.x28{left:353.425767px;}
.x1b{left:358.031235px;}
.x14{left:363.533194px;}
.x18{left:369.861318px;}
.x44{left:377.208974px;}
.x6{left:408.603504px;}
.x3c{left:410.080067px;}
.x29{left:412.611317px;}
.x2d{left:423.193347px;}
.xc{left:469.124980px;}
.x1c{left:472.482408px;}
.x12{left:475.769511px;}
.x2a{left:481.007792px;}
.x2e{left:482.378886px;}
.x8{left:487.265605px;}
.x35{left:528.644509px;}
.x5{left:531.052718px;}
.x3d{left:533.302718px;}
.x2b{left:540.193342px;}
.x36{left:545.238259px;}
.x22{left:547.453102px;}
.x33{left:555.732404px;}
.x1d{left:568.511695px;}
.x43{left:578.777320px;}
.xd{left:611.208965px;}
.x23{left:615.849589px;}
.x13{left:617.853496px;}
.x2c{left:627.011693px;}
.x37{left:645.257786px;}
.x1e{left:655.330056px;}
.x2f{left:705.990211px;}
.x3e{left:707.220679px;}
.x9{left:713.478492px;}
.x24{left:721.089814px;}
.x1f{left:723.726532px;}
.x38{left:768.480437px;}
@media print{
.v2{vertical-align:-1.125000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.875000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.060917pt;}
.ls0{letter-spacing:0.060937pt;}
.ls2{letter-spacing:0.060957pt;}
.ws5{word-spacing:-35.583999pt;}
.ws1{word-spacing:-32.751562pt;}
.ws9{word-spacing:-26.687999pt;}
.ws0{word-spacing:-17.791999pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:242.428857pt;}
.ws7{word-spacing:319.484667pt;}
.ws6{word-spacing:345.596658pt;}
.ws4{word-spacing:356.284608pt;}
.ws3{word-spacing:1072.327105pt;}
._4{margin-left:-10.862508pt;}
._3{margin-left:-7.104837pt;}
._6{margin-left:-5.889399pt;}
._5{margin-left:-4.736251pt;}
._1{margin-left:-3.648033pt;}
._0{margin-left:-2.592961pt;}
._2{margin-left:-1.152089pt;}
._7{width:1.150888pt;}
.fs3{font-size:54.399999pt;}
.fs2{font-size:63.999997pt;}
.fs5{font-size:79.999997pt;}
.fs4{font-size:95.999996pt;}
.fs1{font-size:111.999995pt;}
.fs0{font-size:143.999994pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:11.015616pt;}
.y61{bottom:12.015615pt;}
.yc8{bottom:16.015615pt;}
.yc9{bottom:16.296865pt;}
.y17{bottom:18.999999pt;}
.y1e{bottom:19.015615pt;}
.y14{bottom:19.999999pt;}
.y8f{bottom:24.015615pt;}
.y60{bottom:34.015615pt;}
.yaf{bottom:37.296864pt;}
.y1{bottom:37.544403pt;}
.yae{bottom:38.015614pt;}
.ya4{bottom:40.999998pt;}
.yc7{bottom:41.296864pt;}
.y13{bottom:41.999998pt;}
.yc6{bottom:42.015614pt;}
.y1d{bottom:45.296864pt;}
.y1c{bottom:46.015614pt;}
.y8e{bottom:47.015614pt;}
.y5f{bottom:56.015614pt;}
.y25{bottom:63.999997pt;}
.y8d{bottom:69.015613pt;}
.y113{bottom:75.015613pt;}
.y114{bottom:75.296863pt;}
.y5e{bottom:79.015613pt;}
.y9f{bottom:86.999996pt;}
.y8c{bottom:92.015612pt;}
.y5d{bottom:101.015612pt;}
.y9e{bottom:108.999995pt;}
.yad{bottom:110.560015pt;}
.yc5{bottom:113.560015pt;}
.y8b{bottom:114.015611pt;}
.y112{bottom:115.015611pt;}
.y1b{bottom:118.560015pt;}
.yf5{bottom:121.560015pt;}
.y5c{bottom:124.015611pt;}
.y9d{bottom:130.999995pt;}
.y116{bottom:131.999995pt;}
.y8a{bottom:136.015610pt;}
.y5b{bottom:146.015610pt;}
.y1a{bottom:152.015610pt;}
.y9c{bottom:153.999994pt;}
.yf4{bottom:155.015610pt;}
.y89{bottom:159.015609pt;}
.yac{bottom:167.015609pt;}
.y5a{bottom:168.015609pt;}
.y110{bottom:169.015609pt;}
.y111{bottom:169.296859pt;}
.y9b{bottom:175.999993pt;}
.y19{bottom:177.296859pt;}
.y18{bottom:178.015609pt;}
.y88{bottom:181.015608pt;}
.yf3{bottom:181.296858pt;}
.y59{bottom:191.015608pt;}
.yab{bottom:192.015608pt;}
.y10e{bottom:195.015608pt;}
.y10f{bottom:195.296858pt;}
.y9a{bottom:197.999992pt;}
.y33{bottom:198.015608pt;}
.y34{bottom:198.296858pt;}
.ydd{bottom:198.999992pt;}
.y87{bottom:204.015607pt;}
.yf2{bottom:206.296857pt;}
.yf1{bottom:207.015607pt;}
.y58{bottom:213.015607pt;}
.y99{bottom:220.999991pt;}
.y31{bottom:224.015607pt;}
.y32{bottom:224.296857pt;}
.y86{bottom:226.015607pt;}
.yef{bottom:232.015606pt;}
.yf0{bottom:232.296856pt;}
.y57{bottom:236.015606pt;}
.yaa{bottom:241.015606pt;}
.y98{bottom:242.999990pt;}
.y85{bottom:248.015606pt;}
.y16{bottom:249.560010pt;}
.y56{bottom:258.015605pt;}
.yc4{bottom:263.560009pt;}
.y97{bottom:265.999989pt;}
.y10d{bottom:266.560009pt;}
.y84{bottom:271.015605pt;}
.yda{bottom:273.015605pt;}
.ydb{bottom:273.296855pt;}
.y55{bottom:280.015604pt;}
.y15{bottom:283.015604pt;}
.yee{bottom:283.296854pt;}
.y96{bottom:287.999988pt;}
.y83{bottom:293.015604pt;}
.y30{bottom:295.560008pt;}
.yc3{bottom:298.015604pt;}
.y54{bottom:303.015603pt;}
.ya9{bottom:304.015603pt;}
.yec{bottom:309.015603pt;}
.yed{bottom:309.296853pt;}
.y95{bottom:309.999987pt;}
.yd9{bottom:313.015603pt;}
.y82{bottom:315.015603pt;}
.y10c{bottom:323.015603pt;}
.y53{bottom:325.015602pt;}
.y2f{bottom:329.015602pt;}
.ya8{bottom:329.296852pt;}
.y94{bottom:332.999986pt;}
.yeb{bottom:334.296852pt;}
.yea{bottom:335.015602pt;}
.y81{bottom:338.015602pt;}
.y52{bottom:347.015602pt;}
.y10b{bottom:349.015601pt;}
.y12{bottom:354.560005pt;}
.y93{bottom:354.999985pt;}
.ya6{bottom:355.015601pt;}
.ya7{bottom:355.296851pt;}
.y80{bottom:360.015601pt;}
.ye9{bottom:360.296851pt;}
.yc2{bottom:369.560005pt;}
.y51{bottom:370.015601pt;}
.y10a{bottom:374.015600pt;}
.yd8{bottom:375.015600pt;}
.y92{bottom:377.999984pt;}
.ya5{bottom:381.015600pt;}
.y7f{bottom:383.015600pt;}
.ye8{bottom:385.296850pt;}
.ye7{bottom:386.015600pt;}
.y50{bottom:392.015600pt;}
.y109{bottom:399.296849pt;}
.y91{bottom:399.999983pt;}
.y108{bottom:400.015599pt;}
.y2e{bottom:400.560003pt;}
.y7e{bottom:405.015599pt;}
.y11{bottom:411.015599pt;}
.ye6{bottom:411.296849pt;}
.y4f{bottom:415.015599pt;}
.yc1{bottom:426.015598pt;}
.y7d{bottom:427.015598pt;}
.y10{bottom:437.015598pt;}
.ye5{bottom:437.296848pt;}
.yd7{bottom:445.015597pt;}
.y7c{bottom:450.015597pt;}
.ya3{bottom:452.560001pt;}
.y2d{bottom:457.015597pt;}
.y4e{bottom:459.015597pt;}
.yf{bottom:463.015597pt;}
.y107{bottom:471.560000pt;}
.y7b{bottom:472.015596pt;}
.y4d{bottom:482.015596pt;}
.yd6{bottom:483.015596pt;}
.y7a{bottom:495.015595pt;}
.yc0{bottom:497.559999pt;}
.y4c{bottom:504.015595pt;}
.y106{bottom:505.015595pt;}
.ye4{bottom:508.559999pt;}
.ye{bottom:511.015595pt;}
.y79{bottom:517.015594pt;}
.yd5{bottom:522.015594pt;}
.y4b{bottom:527.015594pt;}
.y2c{bottom:528.559998pt;}
.ya2{bottom:531.015594pt;}
.y78{bottom:539.015594pt;}
.ye3{bottom:543.015593pt;}
.y4a{bottom:549.015593pt;}
.ya1{bottom:557.015593pt;}
.yd4{bottom:560.015593pt;}
.y77{bottom:562.015593pt;}
.y49{bottom:571.015592pt;}
.yd{bottom:574.015592pt;}
.ybf{bottom:576.015592pt;}
.ye2{bottom:581.015592pt;}
.y76{bottom:584.015592pt;}
.y104{bottom:591.015591pt;}
.y105{bottom:591.296841pt;}
.y48{bottom:594.015591pt;}
.ya0{bottom:598.015591pt;}
.yd3{bottom:599.015591pt;}
.yc{bottom:600.015591pt;}
.y75{bottom:607.015591pt;}
.y2b{bottom:608.015591pt;}
.y47{bottom:616.015590pt;}
.y103{bottom:616.296840pt;}
.ybe{bottom:617.015590pt;}
.ye1{bottom:628.015590pt;}
.y74{bottom:629.015590pt;}
.y2a{bottom:633.015590pt;}
.yd2{bottom:637.015589pt;}
.y46{bottom:639.015589pt;}
.yb{bottom:641.015589pt;}
.y101{bottom:642.015589pt;}
.y102{bottom:642.296839pt;}
.ybd{bottom:643.015589pt;}
.y73{bottom:651.015589pt;}
.ye0{bottom:654.296839pt;}
.ydf{bottom:655.015589pt;}
.y45{bottom:661.015588pt;}
.ya{bottom:667.015588pt;}
.ybc{bottom:669.015588pt;}
.y90{bottom:669.559992pt;}
.y72{bottom:674.015588pt;}
.y28{bottom:675.015588pt;}
.y29{bottom:675.296838pt;}
.yd1{bottom:676.015588pt;}
.y44{bottom:683.015588pt;}
.y9{bottom:692.015587pt;}
.ybb{bottom:694.015587pt;}
.y71{bottom:696.015587pt;}
.yde{bottom:697.015587pt;}
.y26{bottom:700.015587pt;}
.y27{bottom:700.296837pt;}
.y43{bottom:706.015587pt;}
.y100{bottom:713.559990pt;}
.yd0{bottom:715.015586pt;}
.y8{bottom:718.015586pt;}
.y70{bottom:719.015586pt;}
.yba{bottom:720.015586pt;}
.y42{bottom:728.015586pt;}
.y6f{bottom:741.015585pt;}
.y7{bottom:744.015585pt;}
.yb9{bottom:746.015585pt;}
.yff{bottom:748.015585pt;}
.y41{bottom:751.015585pt;}
.ycf{bottom:752.015585pt;}
.y6e{bottom:763.015584pt;}
.ydc{bottom:768.559988pt;}
.y6{bottom:769.015584pt;}
.y24{bottom:771.559988pt;}
.yb8{bottom:772.015584pt;}
.y40{bottom:773.015584pt;}
.y6d{bottom:786.015583pt;}
.y3f{bottom:795.015583pt;}
.yb7{bottom:798.015583pt;}
.yce{bottom:802.015583pt;}
.y6c{bottom:808.015582pt;}
.y5{bottom:811.015582pt;}
.y3e{bottom:818.015582pt;}
.yb6{bottom:823.015582pt;}
.ycd{bottom:828.015581pt;}
.y6b{bottom:830.015581pt;}
.yfd{bottom:833.015581pt;}
.yfe{bottom:833.296831pt;}
.y115{bottom:835.559985pt;}
.y3d{bottom:840.015581pt;}
.yb4{bottom:850.015581pt;}
.yb5{bottom:850.296831pt;}
.y23{bottom:851.015581pt;}
.y6a{bottom:853.015580pt;}
.ycc{bottom:854.015580pt;}
.yfb{bottom:859.015580pt;}
.yfc{bottom:859.296830pt;}
.y4{bottom:860.015580pt;}
.y3c{bottom:862.015580pt;}
.y69{bottom:875.015580pt;}
.y22{bottom:876.015579pt;}
.yb3{bottom:876.296829pt;}
.yf9{bottom:884.015579pt;}
.yfa{bottom:884.296829pt;}
.y3b{bottom:885.015579pt;}
.y68{bottom:898.015579pt;}
.y21{bottom:902.015578pt;}
.y3a{bottom:907.015578pt;}
.y67{bottom:920.015578pt;}
.ycb{bottom:925.559982pt;}
.y39{bottom:930.015577pt;}
.y3{bottom:934.015577pt;}
.y66{bottom:942.015577pt;}
.yb2{bottom:947.559981pt;}
.y38{bottom:952.015576pt;}
.yf8{bottom:955.559980pt;}
.y65{bottom:965.015576pt;}
.y20{bottom:973.559980pt;}
.y37{bottom:974.015575pt;}
.y2{bottom:977.015575pt;}
.y64{bottom:987.015575pt;}
.yf7{bottom:990.015575pt;}
.y36{bottom:997.015574pt;}
.yb1{bottom:1004.015574pt;}
.y63{bottom:1010.015574pt;}
.y35{bottom:1019.015574pt;}
.yf6{bottom:1028.015573pt;}
.y1f{bottom:1030.015573pt;}
.yca{bottom:1030.296823pt;}
.y62{bottom:1032.015573pt;}
.hd{height:41.490624pt;}
.h5{height:46.783998pt;}
.ha{height:47.101562pt;}
.h8{height:47.999998pt;}
.h7{height:52.912499pt;}
.h9{height:55.787499pt;}
.h12{height:58.479998pt;}
.hb{height:69.999997pt;}
.h10{height:70.175997pt;}
.h6{height:70.999997pt;}
.h4{height:81.871997pt;}
.hf{height:91.999996pt;}
.hc{height:92.999996pt;}
.h3{height:105.263996pt;}
.h13{height:249.999990pt;}
.h11{height:316.999987pt;}
.he{height:415.999983pt;}
.h2{height:1048.015572pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:718.171845pt;}
.w2{width:718.671842pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:5.468750pt;}
.x3{left:12.296877pt;}
.x16{left:13.999999pt;}
.x20{left:24.437499pt;}
.x3f{left:27.999999pt;}
.x2{left:31.999999pt;}
.x15{left:34.812499pt;}
.x1{left:36.999998pt;}
.xf{left:41.328123pt;}
.xe{left:48.156248pt;}
.x19{left:53.171873pt;}
.x30{left:74.453122pt;}
.x25{left:99.015621pt;}
.x34{left:100.312496pt;}
.x39{left:136.468744pt;}
.x17{left:148.703119pt;}
.x31{left:151.624994pt;}
.x3b{left:160.484368pt;}
.x42{left:168.671873pt;}
.xa{left:172.593743pt;}
.x26{left:176.187493pt;}
.x10{left:178.499993pt;}
.x32{left:202.374992pt;}
.x41{left:232.718740pt;}
.x3a{left:239.906240pt;}
.x1a{left:241.078120pt;}
.x27{left:253.359369pt;}
.x40{left:255.249989pt;}
.x4{left:268.593739pt;}
.x21{left:278.609368pt;}
.xb{left:290.703118pt;}
.x11{left:296.609368pt;}
.x28{left:314.156237pt;}
.x1b{left:318.249987pt;}
.x14{left:323.140617pt;}
.x18{left:328.765616pt;}
.x44{left:335.296866pt;}
.x6{left:363.203115pt;}
.x3c{left:364.515615pt;}
.x29{left:366.765615pt;}
.x2d{left:376.171864pt;}
.xc{left:416.999983pt;}
.x1c{left:419.984363pt;}
.x12{left:422.906232pt;}
.x2a{left:427.562482pt;}
.x2e{left:428.781232pt;}
.x8{left:433.124982pt;}
.x35{left:469.906230pt;}
.x5{left:472.046860pt;}
.x3d{left:474.046860pt;}
.x2b{left:480.171860pt;}
.x36{left:484.656230pt;}
.x22{left:486.624980pt;}
.x33{left:493.984359pt;}
.x1d{left:505.343729pt;}
.x43{left:514.468729pt;}
.xd{left:543.296857pt;}
.x23{left:547.421857pt;}
.x13{left:549.203107pt;}
.x2c{left:557.343727pt;}
.x37{left:573.562476pt;}
.x1e{left:582.515606pt;}
.x2f{left:627.546854pt;}
.x3e{left:628.640604pt;}
.x9{left:634.203104pt;}
.x24{left:640.968723pt;}
.x1f{left:643.312473pt;}
.x38{left:683.093722pt;}
}




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