
    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_edaeade4dc4e66475abe25fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_50e3725b7bb435b270178a66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_200afd3a9d9b6be8ad04ee78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_10e7dee764e1f9ad4c590c09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_48762bd4072e406bba392070.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079590;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_01bbbf302e1b2862a736ad2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_2b5577cce98601442309d08d.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;}
.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);}
.v4{vertical-align:-28.200000px;}
.v2{vertical-align:-21.600000px;}
.v6{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.v1{vertical-align:25.800000px;}
.v3{vertical-align:28.200000px;}
.v7{vertical-align:64.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.228000px;}
.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;}
}
.wsc{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.500000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws5{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.wsa{word-spacing:-10.500000px;}
.ws4{word-spacing:-9.600000px;}
.ws6{word-spacing:-7.800000px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:245.580000px;}
.wsb{word-spacing:550.320000px;}
.wsd{word-spacing:596.232000px;}
._6{margin-left:-9.966000px;}
._4{margin-left:-7.566000px;}
._5{margin-left:-5.616000px;}
._2{margin-left:-3.936000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._c{width:3.228000px;}
._d{width:4.560000px;}
._12{width:6.180000px;}
._a{width:7.524000px;}
._b{width:8.976000px;}
._e{width:10.464000px;}
._8{width:11.520000px;}
._14{width:13.320000px;}
._7{width:15.114000px;}
._13{width:16.440000px;}
._11{width:18.420000px;}
._10{width:19.620000px;}
._16{width:20.916000px;}
._1d{width:22.944000px;}
._1f{width:24.432000px;}
._1e{width:26.556000px;}
._1c{width:27.654000px;}
._9{width:30.360000px;}
._15{width:33.252000px;}
._f{width:38.700000px;}
._1b{width:144.000000px;}
._1a{width:290.280000px;}
._18{width:330.780000px;}
._19{width:342.780000px;}
._17{width:750.384000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs8{font-size:31.200000px;}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fsa{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y4d{bottom:87.541500px;}
.y5f{bottom:89.641500px;}
.y9b{bottom:135.691500px;}
.yfa{bottom:144.241500px;}
.yd2{bottom:151.591500px;}
.y9a{bottom:152.941500px;}
.y7a{bottom:156.391500px;}
.y81{bottom:156.883500px;}
.y4c{bottom:167.491500px;}
.yf9{bottom:167.941500px;}
.y80{bottom:177.583500px;}
.y7f{bottom:182.233500px;}
.yd1{bottom:182.641500px;}
.y4b{bottom:187.441500px;}
.y99{bottom:189.991500px;}
.yf8{bottom:191.791500px;}
.y4a{bottom:207.241500px;}
.yd0{bottom:213.691500px;}
.yf7{bottom:215.491500px;}
.y79{bottom:218.491500px;}
.y98{bottom:224.491500px;}
.y49{bottom:227.191500px;}
.yf6{bottom:239.341500px;}
.y97{bottom:241.741500px;}
.y48{bottom:246.991500px;}
.y78{bottom:249.541500px;}
.y96{bottom:258.991500px;}
.yf5{bottom:263.041500px;}
.y47{bottom:266.941500px;}
.ycf{bottom:268.291500px;}
.y7e{bottom:270.733500px;}
.y95{bottom:276.241500px;}
.y77{bottom:280.591500px;}
.yce{bottom:286.291500px;}
.y46{bottom:286.741500px;}
.yf4{bottom:286.891500px;}
.y94{bottom:293.491500px;}
.y7d{bottom:295.183500px;}
.ycd{bottom:303.541500px;}
.y45{bottom:306.691500px;}
.yf3{bottom:310.591500px;}
.y93{bottom:310.741500px;}
.y76{bottom:311.641500px;}
.ycc{bottom:320.791500px;}
.y44{bottom:326.491500px;}
.y92{bottom:327.991500px;}
.yf2{bottom:334.441500px;}
.ycb{bottom:338.041500px;}
.y75{bottom:342.691500px;}
.y91{bottom:345.241500px;}
.y43{bottom:346.441500px;}
.yca{bottom:355.291500px;}
.yf1{bottom:358.141500px;}
.y90{bottom:362.491500px;}
.y42{bottom:366.241500px;}
.yc9{bottom:372.541500px;}
.y74{bottom:373.741500px;}
.y8f{bottom:379.741500px;}
.y7c{bottom:381.883500px;}
.yf0{bottom:381.991500px;}
.y41{bottom:386.191500px;}
.yc8{bottom:389.791500px;}
.y8e{bottom:396.991500px;}
.y7b{bottom:398.983500px;}
.y73{bottom:404.791500px;}
.yef{bottom:405.691500px;}
.y40{bottom:405.991500px;}
.yc7{bottom:407.041500px;}
.y8d{bottom:414.241500px;}
.yc6{bottom:424.291500px;}
.y3f{bottom:425.941500px;}
.y1e{bottom:426.691500px;}
.yee{bottom:429.541500px;}
.y8c{bottom:431.491500px;}
.y72{bottom:435.841500px;}
.yc5{bottom:441.541500px;}
.y1d{bottom:443.941500px;}
.y3e{bottom:445.741500px;}
.y8b{bottom:448.741500px;}
.yed{bottom:453.241500px;}
.yc4{bottom:458.791500px;}
.y1c{bottom:461.341500px;}
.y3d{bottom:465.691500px;}
.y71{bottom:466.891500px;}
.yc3{bottom:476.041500px;}
.yec{bottom:477.091500px;}
.y1b{bottom:478.591500px;}
.y3c{bottom:485.491500px;}
.y8a{bottom:485.641500px;}
.yc2{bottom:493.291500px;}
.y1a{bottom:495.991500px;}
.y70{bottom:497.941500px;}
.yeb{bottom:500.791500px;}
.y89{bottom:502.891500px;}
.y3b{bottom:505.441500px;}
.yc1{bottom:510.541500px;}
.y19{bottom:513.241500px;}
.y88{bottom:520.141500px;}
.yea{bottom:524.641500px;}
.y3a{bottom:525.241500px;}
.yc0{bottom:527.791500px;}
.y6f{bottom:528.991500px;}
.y18{bottom:530.641500px;}
.y87{bottom:537.391500px;}
.y39{bottom:545.191500px;}
.y17{bottom:547.891500px;}
.ye9{bottom:548.341500px;}
.y86{bottom:554.641500px;}
.y6e{bottom:560.041500px;}
.ybf{bottom:564.691500px;}
.y38{bottom:564.991500px;}
.y16{bottom:565.291500px;}
.y85{bottom:571.891500px;}
.ye8{bottom:572.191500px;}
.ybe{bottom:581.941500px;}
.y15{bottom:582.541500px;}
.y37{bottom:584.941500px;}
.y84{bottom:589.141500px;}
.y6d{bottom:591.091500px;}
.ye7{bottom:595.891500px;}
.ybd{bottom:599.191500px;}
.y14{bottom:599.941500px;}
.y36{bottom:604.741500px;}
.y83{bottom:606.391500px;}
.ybc{bottom:616.441500px;}
.y13{bottom:617.191500px;}
.ye6{bottom:619.741500px;}
.y5e{bottom:621.991500px;}
.y6c{bottom:622.141500px;}
.y35{bottom:624.691500px;}
.ybb{bottom:633.691500px;}
.y12{bottom:634.591500px;}
.ye5{bottom:643.441500px;}
.y34{bottom:644.491500px;}
.yba{bottom:650.941500px;}
.y11{bottom:651.841500px;}
.y5d{bottom:653.041500px;}
.y6b{bottom:653.191500px;}
.y82{bottom:655.141500px;}
.y33{bottom:664.441500px;}
.ye4{bottom:667.291500px;}
.yb9{bottom:668.191500px;}
.y10{bottom:669.241500px;}
.y5c{bottom:684.091500px;}
.y6a{bottom:684.241500px;}
.yb8{bottom:685.441500px;}
.yf{bottom:686.491500px;}
.ye3{bottom:690.991500px;}
.y32{bottom:692.641500px;}
.yb7{bottom:702.691500px;}
.ye2{bottom:714.841500px;}
.y5b{bottom:715.141500px;}
.y69{bottom:715.291500px;}
.yb6{bottom:719.941500px;}
.ye{bottom:724.291500px;}
.y31{bottom:730.741500px;}
.yb5{bottom:737.191500px;}
.ye1{bottom:738.541500px;}
.yd{bottom:741.691500px;}
.y5a{bottom:746.191500px;}
.y30{bottom:746.341500px;}
.yb4{bottom:754.441500px;}
.y2f{bottom:761.791500px;}
.ye0{bottom:762.391500px;}
.yb3{bottom:771.691500px;}
.y2e{bottom:771.991500px;}
.yc{bottom:776.341500px;}
.y59{bottom:777.241500px;}
.y68{bottom:777.391500px;}
.ydf{bottom:786.091500px;}
.yb2{bottom:788.941500px;}
.y2d{bottom:792.841500px;}
.yb1{bottom:806.191500px;}
.y58{bottom:808.291500px;}
.y2c{bottom:808.441500px;}
.yde{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.y2b{bottom:818.641500px;}
.yb0{bottom:823.441500px;}
.ya{bottom:828.241500px;}
.ydd{bottom:833.641500px;}
.y57{bottom:839.341500px;}
.y2a{bottom:839.491500px;}
.yaf{bottom:840.691500px;}
.ydc{bottom:857.491500px;}
.yae{bottom:857.941500px;}
.y9{bottom:862.741500px;}
.y29{bottom:869.341500px;}
.y56{bottom:870.391500px;}
.y67{bottom:870.541500px;}
.yad{bottom:875.191500px;}
.y8{bottom:879.991500px;}
.ydb{bottom:881.191500px;}
.y28{bottom:888.241500px;}
.yac{bottom:892.441500px;}
.y7{bottom:897.391500px;}
.y55{bottom:901.441500px;}
.y66{bottom:901.591500px;}
.yda{bottom:905.041500px;}
.y27{bottom:907.291500px;}
.yab{bottom:909.691500px;}
.y26{bottom:926.191500px;}
.yaa{bottom:926.941500px;}
.yd9{bottom:928.741500px;}
.y6{bottom:931.891500px;}
.y54{bottom:932.491500px;}
.y65{bottom:932.641500px;}
.ya0{bottom:936.583500px;}
.y25{bottom:945.241500px;}
.y5{bottom:949.291500px;}
.yd8{bottom:952.591500px;}
.y9f{bottom:957.283500px;}
.y53{bottom:963.541500px;}
.y64{bottom:963.691500px;}
.y24{bottom:964.141500px;}
.yd7{bottom:976.291500px;}
.ya9{bottom:982.891500px;}
.y23{bottom:987.091500px;}
.y52{bottom:994.591500px;}
.y63{bottom:994.741500px;}
.ya8{bottom:1000.141500px;}
.y22{bottom:1012.741500px;}
.y9e{bottom:1016.083500px;}
.ya7{bottom:1017.391500px;}
.yd6{bottom:1023.841500px;}
.y51{bottom:1025.641500px;}
.y62{bottom:1025.791500px;}
.ya6{bottom:1034.641500px;}
.y9d{bottom:1036.783500px;}
.y21{bottom:1038.541500px;}
.yd5{bottom:1047.691500px;}
.ya5{bottom:1051.891500px;}
.y50{bottom:1056.691500px;}
.y61{bottom:1056.841500px;}
.y9c{bottom:1057.483500px;}
.y20{bottom:1064.191500px;}
.ya4{bottom:1069.141500px;}
.yd4{bottom:1071.391500px;}
.ya3{bottom:1086.391500px;}
.y4f{bottom:1087.741500px;}
.y60{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.yd3{bottom:1095.241500px;}
.ya2{bottom:1103.641500px;}
.y4e{bottom:1118.941500px;}
.ya1{bottom:1120.891500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.ha{height:27.376172px;}
.hf{height:33.796875px;}
.h4{height:41.882812px;}
.he{height:42.246094px;}
.h15{height:43.681641px;}
.hb{height:47.381836px;}
.h3{height:50.695312px;}
.hd{height:51.533203px;}
.h6{height:52.353516px;}
.h7{height:52.646484px;}
.h5{height:53.291016px;}
.h9{height:59.493750px;}
.h16{height:61.839844px;}
.h13{height:62.824219px;}
.h10{height:63.175781px;}
.hc{height:63.949219px;}
.h11{height:65.052539px;}
.h8{height:69.278320px;}
.h12{height:77.224219px;}
.h14{height:127.024219px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x8{left:87.300000px;}
.x4c{left:94.500000px;}
.x12{left:96.450000px;}
.x3d{left:99.450000px;}
.x4b{left:103.650000px;}
.x46{left:106.950000px;}
.xa{left:108.600000px;}
.x57{left:113.250000px;}
.xe{left:114.900000px;}
.x11{left:116.100000px;}
.x44{left:124.650000px;}
.x29{left:132.750000px;}
.xc{left:134.550000px;}
.x9{left:140.550000px;}
.x4d{left:231.900000px;}
.x2e{left:233.250000px;}
.x14{left:234.450000px;}
.x15{left:237.300000px;}
.x16{left:240.750000px;}
.x3e{left:242.400000px;}
.x2d{left:244.500000px;}
.x2a{left:245.700000px;}
.x4f{left:247.350000px;}
.x17{left:249.900000px;}
.x2b{left:251.100000px;}
.x58{left:252.750000px;}
.x18{left:257.400000px;}
.x50{left:259.950000px;}
.x51{left:262.800000px;}
.x2c{left:267.000000px;}
.x13{left:269.100000px;}
.x4e{left:281.550000px;}
.x7{left:347.400000px;}
.x3{left:351.450000px;}
.x4{left:364.200000px;}
.x34{left:367.200000px;}
.x35{left:369.300000px;}
.x1b{left:370.650000px;}
.x1c{left:373.500000px;}
.x33{left:375.150000px;}
.x1d{left:376.800000px;}
.x5{left:378.750000px;}
.x47{left:381.450000px;}
.x32{left:383.550000px;}
.x1e{left:385.950000px;}
.x30{left:387.300000px;}
.x1f{left:391.500000px;}
.x2f{left:393.150000px;}
.x31{left:395.100000px;}
.x19{left:398.550000px;}
.x52{left:402.300000px;}
.x1a{left:405.150000px;}
.xb{left:406.950000px;}
.xf{left:411.750000px;}
.x43{left:415.050000px;}
.x10{left:422.850000px;}
.x45{left:428.250000px;}
.x42{left:431.550000px;}
.x2{left:442.200000px;}
.xd{left:475.050000px;}
.x5a{left:502.800000px;}
.x5d{left:507.000000px;}
.x37{left:508.200000px;}
.x38{left:510.750000px;}
.x5e{left:511.950000px;}
.x59{left:515.250000px;}
.x39{left:517.350000px;}
.x20{left:520.350000px;}
.x5b{left:522.000000px;}
.x22{left:523.650000px;}
.x21{left:528.600000px;}
.x53{left:530.250000px;}
.x3f{left:532.350000px;}
.x36{left:534.450000px;}
.x6{left:537.150000px;}
.x5c{left:541.200000px;}
.x27{left:637.650000px;}
.x3b{left:639.300000px;}
.x23{left:640.950000px;}
.x48{left:643.050000px;}
.x28{left:644.400000px;}
.x26{left:646.350000px;}
.x25{left:649.350000px;}
.x55{left:651.900000px;}
.x54{left:653.850000px;}
.x40{left:656.400000px;}
.x5f{left:657.600000px;}
.x60{left:659.400000px;}
.x24{left:663.150000px;}
.x3a{left:665.100000px;}
.x3c{left:666.450000px;}
.x41{left:670.950000px;}
.x4a{left:675.150000px;}
.x49{left:677.250000px;}
.x56{left:693.450000px;}
@media print{
.v4{vertical-align:-25.066667pt;}
.v2{vertical-align:-19.200000pt;}
.v6{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.v1{vertical-align:22.933333pt;}
.v3{vertical-align:25.066667pt;}
.v7{vertical-align:57.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.202667pt;}
.wsc{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.333333pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws5{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.wsa{word-spacing:-9.333333pt;}
.ws4{word-spacing:-8.533333pt;}
.ws6{word-spacing:-6.933333pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:218.293333pt;}
.wsb{word-spacing:489.173333pt;}
.wsd{word-spacing:529.984000pt;}
._6{margin-left:-8.858667pt;}
._4{margin-left:-6.725333pt;}
._5{margin-left:-4.992000pt;}
._2{margin-left:-3.498667pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._c{width:2.869333pt;}
._d{width:4.053333pt;}
._12{width:5.493333pt;}
._a{width:6.688000pt;}
._b{width:7.978667pt;}
._e{width:9.301333pt;}
._8{width:10.240000pt;}
._14{width:11.840000pt;}
._7{width:13.434667pt;}
._13{width:14.613333pt;}
._11{width:16.373333pt;}
._10{width:17.440000pt;}
._16{width:18.592000pt;}
._1d{width:20.394667pt;}
._1f{width:21.717333pt;}
._1e{width:23.605333pt;}
._1c{width:24.581333pt;}
._9{width:26.986667pt;}
._15{width:29.557333pt;}
._f{width:34.400000pt;}
._1b{width:128.000000pt;}
._1a{width:258.026667pt;}
._18{width:294.026667pt;}
._19{width:304.693333pt;}
._17{width:667.008000pt;}
.fs8{font-size:27.733333pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fsa{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y4d{bottom:77.814667pt;}
.y5f{bottom:79.681333pt;}
.y9b{bottom:120.614667pt;}
.yfa{bottom:128.214667pt;}
.yd2{bottom:134.748000pt;}
.y9a{bottom:135.948000pt;}
.y7a{bottom:139.014667pt;}
.y81{bottom:139.452000pt;}
.y4c{bottom:148.881333pt;}
.yf9{bottom:149.281333pt;}
.y80{bottom:157.852000pt;}
.y7f{bottom:161.985333pt;}
.yd1{bottom:162.348000pt;}
.y4b{bottom:166.614667pt;}
.y99{bottom:168.881333pt;}
.yf8{bottom:170.481333pt;}
.y4a{bottom:184.214667pt;}
.yd0{bottom:189.948000pt;}
.yf7{bottom:191.548000pt;}
.y79{bottom:194.214667pt;}
.y98{bottom:199.548000pt;}
.y49{bottom:201.948000pt;}
.yf6{bottom:212.748000pt;}
.y97{bottom:214.881333pt;}
.y48{bottom:219.548000pt;}
.y78{bottom:221.814667pt;}
.y96{bottom:230.214667pt;}
.yf5{bottom:233.814667pt;}
.y47{bottom:237.281333pt;}
.ycf{bottom:238.481333pt;}
.y7e{bottom:240.652000pt;}
.y95{bottom:245.548000pt;}
.y77{bottom:249.414667pt;}
.yce{bottom:254.481333pt;}
.y46{bottom:254.881333pt;}
.yf4{bottom:255.014667pt;}
.y94{bottom:260.881333pt;}
.y7d{bottom:262.385333pt;}
.ycd{bottom:269.814667pt;}
.y45{bottom:272.614667pt;}
.yf3{bottom:276.081333pt;}
.y93{bottom:276.214667pt;}
.y76{bottom:277.014667pt;}
.ycc{bottom:285.148000pt;}
.y44{bottom:290.214667pt;}
.y92{bottom:291.548000pt;}
.yf2{bottom:297.281333pt;}
.ycb{bottom:300.481333pt;}
.y75{bottom:304.614667pt;}
.y91{bottom:306.881333pt;}
.y43{bottom:307.948000pt;}
.yca{bottom:315.814667pt;}
.yf1{bottom:318.348000pt;}
.y90{bottom:322.214667pt;}
.y42{bottom:325.548000pt;}
.yc9{bottom:331.148000pt;}
.y74{bottom:332.214667pt;}
.y8f{bottom:337.548000pt;}
.y7c{bottom:339.452000pt;}
.yf0{bottom:339.548000pt;}
.y41{bottom:343.281333pt;}
.yc8{bottom:346.481333pt;}
.y8e{bottom:352.881333pt;}
.y7b{bottom:354.652000pt;}
.y73{bottom:359.814667pt;}
.yef{bottom:360.614667pt;}
.y40{bottom:360.881333pt;}
.yc7{bottom:361.814667pt;}
.y8d{bottom:368.214667pt;}
.yc6{bottom:377.148000pt;}
.y3f{bottom:378.614667pt;}
.y1e{bottom:379.281333pt;}
.yee{bottom:381.814667pt;}
.y8c{bottom:383.548000pt;}
.y72{bottom:387.414667pt;}
.yc5{bottom:392.481333pt;}
.y1d{bottom:394.614667pt;}
.y3e{bottom:396.214667pt;}
.y8b{bottom:398.881333pt;}
.yed{bottom:402.881333pt;}
.yc4{bottom:407.814667pt;}
.y1c{bottom:410.081333pt;}
.y3d{bottom:413.948000pt;}
.y71{bottom:415.014667pt;}
.yc3{bottom:423.148000pt;}
.yec{bottom:424.081333pt;}
.y1b{bottom:425.414667pt;}
.y3c{bottom:431.548000pt;}
.y8a{bottom:431.681333pt;}
.yc2{bottom:438.481333pt;}
.y1a{bottom:440.881333pt;}
.y70{bottom:442.614667pt;}
.yeb{bottom:445.148000pt;}
.y89{bottom:447.014667pt;}
.y3b{bottom:449.281333pt;}
.yc1{bottom:453.814667pt;}
.y19{bottom:456.214667pt;}
.y88{bottom:462.348000pt;}
.yea{bottom:466.348000pt;}
.y3a{bottom:466.881333pt;}
.yc0{bottom:469.148000pt;}
.y6f{bottom:470.214667pt;}
.y18{bottom:471.681333pt;}
.y87{bottom:477.681333pt;}
.y39{bottom:484.614667pt;}
.y17{bottom:487.014667pt;}
.ye9{bottom:487.414667pt;}
.y86{bottom:493.014667pt;}
.y6e{bottom:497.814667pt;}
.ybf{bottom:501.948000pt;}
.y38{bottom:502.214667pt;}
.y16{bottom:502.481333pt;}
.y85{bottom:508.348000pt;}
.ye8{bottom:508.614667pt;}
.ybe{bottom:517.281333pt;}
.y15{bottom:517.814667pt;}
.y37{bottom:519.948000pt;}
.y84{bottom:523.681333pt;}
.y6d{bottom:525.414667pt;}
.ye7{bottom:529.681333pt;}
.ybd{bottom:532.614667pt;}
.y14{bottom:533.281333pt;}
.y36{bottom:537.548000pt;}
.y83{bottom:539.014667pt;}
.ybc{bottom:547.948000pt;}
.y13{bottom:548.614667pt;}
.ye6{bottom:550.881333pt;}
.y5e{bottom:552.881333pt;}
.y6c{bottom:553.014667pt;}
.y35{bottom:555.281333pt;}
.ybb{bottom:563.281333pt;}
.y12{bottom:564.081333pt;}
.ye5{bottom:571.948000pt;}
.y34{bottom:572.881333pt;}
.yba{bottom:578.614667pt;}
.y11{bottom:579.414667pt;}
.y5d{bottom:580.481333pt;}
.y6b{bottom:580.614667pt;}
.y82{bottom:582.348000pt;}
.y33{bottom:590.614667pt;}
.ye4{bottom:593.148000pt;}
.yb9{bottom:593.948000pt;}
.y10{bottom:594.881333pt;}
.y5c{bottom:608.081333pt;}
.y6a{bottom:608.214667pt;}
.yb8{bottom:609.281333pt;}
.yf{bottom:610.214667pt;}
.ye3{bottom:614.214667pt;}
.y32{bottom:615.681333pt;}
.yb7{bottom:624.614667pt;}
.ye2{bottom:635.414667pt;}
.y5b{bottom:635.681333pt;}
.y69{bottom:635.814667pt;}
.yb6{bottom:639.948000pt;}
.ye{bottom:643.814667pt;}
.y31{bottom:649.548000pt;}
.yb5{bottom:655.281333pt;}
.ye1{bottom:656.481333pt;}
.yd{bottom:659.281333pt;}
.y5a{bottom:663.281333pt;}
.y30{bottom:663.414667pt;}
.yb4{bottom:670.614667pt;}
.y2f{bottom:677.148000pt;}
.ye0{bottom:677.681333pt;}
.yb3{bottom:685.948000pt;}
.y2e{bottom:686.214667pt;}
.yc{bottom:690.081333pt;}
.y59{bottom:690.881333pt;}
.y68{bottom:691.014667pt;}
.ydf{bottom:698.748000pt;}
.yb2{bottom:701.281333pt;}
.y2d{bottom:704.748000pt;}
.yb1{bottom:716.614667pt;}
.y58{bottom:718.481333pt;}
.y2c{bottom:718.614667pt;}
.yde{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.y2b{bottom:727.681333pt;}
.yb0{bottom:731.948000pt;}
.ya{bottom:736.214667pt;}
.ydd{bottom:741.014667pt;}
.y57{bottom:746.081333pt;}
.y2a{bottom:746.214667pt;}
.yaf{bottom:747.281333pt;}
.ydc{bottom:762.214667pt;}
.yae{bottom:762.614667pt;}
.y9{bottom:766.881333pt;}
.y29{bottom:772.748000pt;}
.y56{bottom:773.681333pt;}
.y67{bottom:773.814667pt;}
.yad{bottom:777.948000pt;}
.y8{bottom:782.214667pt;}
.ydb{bottom:783.281333pt;}
.y28{bottom:789.548000pt;}
.yac{bottom:793.281333pt;}
.y7{bottom:797.681333pt;}
.y55{bottom:801.281333pt;}
.y66{bottom:801.414667pt;}
.yda{bottom:804.481333pt;}
.y27{bottom:806.481333pt;}
.yab{bottom:808.614667pt;}
.y26{bottom:823.281333pt;}
.yaa{bottom:823.948000pt;}
.yd9{bottom:825.548000pt;}
.y6{bottom:828.348000pt;}
.y54{bottom:828.881333pt;}
.y65{bottom:829.014667pt;}
.ya0{bottom:832.518667pt;}
.y25{bottom:840.214667pt;}
.y5{bottom:843.814667pt;}
.yd8{bottom:846.748000pt;}
.y9f{bottom:850.918667pt;}
.y53{bottom:856.481333pt;}
.y64{bottom:856.614667pt;}
.y24{bottom:857.014667pt;}
.yd7{bottom:867.814667pt;}
.ya9{bottom:873.681333pt;}
.y23{bottom:877.414667pt;}
.y52{bottom:884.081333pt;}
.y63{bottom:884.214667pt;}
.ya8{bottom:889.014667pt;}
.y22{bottom:900.214667pt;}
.y9e{bottom:903.185333pt;}
.ya7{bottom:904.348000pt;}
.yd6{bottom:910.081333pt;}
.y51{bottom:911.681333pt;}
.y62{bottom:911.814667pt;}
.ya6{bottom:919.681333pt;}
.y9d{bottom:921.585333pt;}
.y21{bottom:923.148000pt;}
.yd5{bottom:931.281333pt;}
.ya5{bottom:935.014667pt;}
.y50{bottom:939.281333pt;}
.y61{bottom:939.414667pt;}
.y9c{bottom:939.985333pt;}
.y20{bottom:945.948000pt;}
.ya4{bottom:950.348000pt;}
.yd4{bottom:952.348000pt;}
.ya3{bottom:965.681333pt;}
.y4f{bottom:966.881333pt;}
.y60{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.yd3{bottom:973.548000pt;}
.ya2{bottom:981.014667pt;}
.y4e{bottom:994.614667pt;}
.ya1{bottom:996.348000pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.ha{height:24.334375pt;}
.hf{height:30.041667pt;}
.h4{height:37.229167pt;}
.he{height:37.552083pt;}
.h15{height:38.828125pt;}
.hb{height:42.117188pt;}
.h3{height:45.062500pt;}
.hd{height:45.807292pt;}
.h6{height:46.536458pt;}
.h7{height:46.796875pt;}
.h5{height:47.369792pt;}
.h9{height:52.883333pt;}
.h16{height:54.968750pt;}
.h13{height:55.843750pt;}
.h10{height:56.156250pt;}
.hc{height:56.843750pt;}
.h11{height:57.824479pt;}
.h8{height:61.580729pt;}
.h12{height:68.643750pt;}
.h14{height:112.910417pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x8{left:77.600000pt;}
.x4c{left:84.000000pt;}
.x12{left:85.733333pt;}
.x3d{left:88.400000pt;}
.x4b{left:92.133333pt;}
.x46{left:95.066667pt;}
.xa{left:96.533333pt;}
.x57{left:100.666667pt;}
.xe{left:102.133333pt;}
.x11{left:103.200000pt;}
.x44{left:110.800000pt;}
.x29{left:118.000000pt;}
.xc{left:119.600000pt;}
.x9{left:124.933333pt;}
.x4d{left:206.133333pt;}
.x2e{left:207.333333pt;}
.x14{left:208.400000pt;}
.x15{left:210.933333pt;}
.x16{left:214.000000pt;}
.x3e{left:215.466667pt;}
.x2d{left:217.333333pt;}
.x2a{left:218.400000pt;}
.x4f{left:219.866667pt;}
.x17{left:222.133333pt;}
.x2b{left:223.200000pt;}
.x58{left:224.666667pt;}
.x18{left:228.800000pt;}
.x50{left:231.066667pt;}
.x51{left:233.600000pt;}
.x2c{left:237.333333pt;}
.x13{left:239.200000pt;}
.x4e{left:250.266667pt;}
.x7{left:308.800000pt;}
.x3{left:312.400000pt;}
.x4{left:323.733333pt;}
.x34{left:326.400000pt;}
.x35{left:328.266667pt;}
.x1b{left:329.466667pt;}
.x1c{left:332.000000pt;}
.x33{left:333.466667pt;}
.x1d{left:334.933333pt;}
.x5{left:336.666667pt;}
.x47{left:339.066667pt;}
.x32{left:340.933333pt;}
.x1e{left:343.066667pt;}
.x30{left:344.266667pt;}
.x1f{left:348.000000pt;}
.x2f{left:349.466667pt;}
.x31{left:351.200000pt;}
.x19{left:354.266667pt;}
.x52{left:357.600000pt;}
.x1a{left:360.133333pt;}
.xb{left:361.733333pt;}
.xf{left:366.000000pt;}
.x43{left:368.933333pt;}
.x10{left:375.866667pt;}
.x45{left:380.666667pt;}
.x42{left:383.600000pt;}
.x2{left:393.066667pt;}
.xd{left:422.266667pt;}
.x5a{left:446.933333pt;}
.x5d{left:450.666667pt;}
.x37{left:451.733333pt;}
.x38{left:454.000000pt;}
.x5e{left:455.066667pt;}
.x59{left:458.000000pt;}
.x39{left:459.866667pt;}
.x20{left:462.533333pt;}
.x5b{left:464.000000pt;}
.x22{left:465.466667pt;}
.x21{left:469.866667pt;}
.x53{left:471.333333pt;}
.x3f{left:473.200000pt;}
.x36{left:475.066667pt;}
.x6{left:477.466667pt;}
.x5c{left:481.066667pt;}
.x27{left:566.800000pt;}
.x3b{left:568.266667pt;}
.x23{left:569.733333pt;}
.x48{left:571.600000pt;}
.x28{left:572.800000pt;}
.x26{left:574.533333pt;}
.x25{left:577.200000pt;}
.x55{left:579.466667pt;}
.x54{left:581.200000pt;}
.x40{left:583.466667pt;}
.x5f{left:584.533333pt;}
.x60{left:586.133333pt;}
.x24{left:589.466667pt;}
.x3a{left:591.200000pt;}
.x3c{left:592.400000pt;}
.x41{left:596.400000pt;}
.x4a{left:600.133333pt;}
.x49{left:602.000000pt;}
.x56{left:616.400000pt;}
}




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