
    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_96aa9f273415b4c43751da7d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d92f5fad94b3310a3cd585d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_55dbed1c703e729dd53f8525.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_0614c46a703cd960efb911bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_72d1379ee8f7b13ce58e8034.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_338b52c64e49a814aecf16b3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.199518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199518,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.229607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229607,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.234156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234156,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.263524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.266883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266883,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-57.600000px;}
.v3{vertical-align:-43.200000px;}
.vb{vertical-align:-40.800000px;}
.vc{vertical-align:-24.360000px;}
.va{vertical-align:-18.240000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:9.120000px;}
.vd{vertical-align:34.020000px;}
.v8{vertical-align:37.260000px;}
.v1{vertical-align:57.600000px;}
.v7{vertical-align:73.560000px;}
.v9{vertical-align:78.660000px;}
.v6{vertical-align:129.600000px;}
.v5{vertical-align:135.540000px;}
.v4{vertical-align:162.840000px;}
.ls10{letter-spacing:-5.184000px;}
.ls13{letter-spacing:-0.280200px;}
.lse{letter-spacing:-0.234600px;}
.lsf{letter-spacing:-0.144000px;}
.lsd{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018720px;}
.ls0{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.181200px;}
.ls9{letter-spacing:0.186903px;}
.ls4{letter-spacing:0.187800px;}
.ls3{letter-spacing:0.250800px;}
.ls11{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.280080px;}
.ls6{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.306600px;}
.ls8{letter-spacing:18.000000px;}
.ls7{letter-spacing:20.160000px;}
.lsa{letter-spacing:33.120000px;}
.ls2{letter-spacing:39.637440px;}
.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;}
}
.ws0{word-spacing:-110.128032px;}
.ws3{word-spacing:-73.458720px;}
.ws1{word-spacing:-43.622520px;}
.ws2{word-spacing:-36.629280px;}
.ws19{word-spacing:-33.733320px;}
.ws18{word-spacing:-33.533520px;}
.ws8{word-spacing:-33.426720px;}
.ws17{word-spacing:-33.146520px;}
.ws11{word-spacing:-30.276000px;}
.ws10{word-spacing:-30.024000px;}
.ws14{word-spacing:-26.640000px;}
.ws13{word-spacing:-26.621280px;}
.ws16{word-spacing:-18.583525px;}
.ws6{word-spacing:-17.827322px;}
.ws5{word-spacing:-16.222863px;}
.ws1a{word-spacing:0.000000px;}
.ws4{word-spacing:370.942974px;}
.ws15{word-spacing:373.499624px;}
.wse{word-spacing:385.549553px;}
.wsb{word-spacing:504.646702px;}
.wsc{word-spacing:507.219135px;}
.wsd{word-spacing:532.999693px;}
.wsa{word-spacing:898.060560px;}
.wsf{word-spacing:977.748000px;}
.ws12{word-spacing:1047.243840px;}
.ws9{word-spacing:1061.713920px;}
.ws7{word-spacing:1306.859520px;}
._21{margin-left:-2539.758960px;}
._3{margin-left:-30.106944px;}
._1f{margin-left:-18.221760px;}
._4{margin-left:-16.848000px;}
._d{margin-left:-14.610960px;}
._7{margin-left:-12.816000px;}
._6{margin-left:-11.808000px;}
._c{margin-left:-10.145520px;}
._1{margin-left:-8.962560px;}
._9{margin-left:-7.481280px;}
._8{margin-left:-5.926560px;}
._a{margin-left:-4.626720px;}
._19{margin-left:-3.493440px;}
._2{margin-left:-2.184000px;}
._0{margin-left:-1.153440px;}
._5{width:1.752000px;}
._b{width:3.506880px;}
._10{width:21.576000px;}
._f{width:397.630518px;}
._1b{width:403.568628px;}
._17{width:425.063944px;}
._e{width:437.699242px;}
._12{width:529.210267px;}
._14{width:531.907912px;}
._16{width:558.943334px;}
._11{width:567.013160px;}
._13{width:569.903506px;}
._15{width:598.870139px;}
._18{width:831.000000px;}
._1a{width:992.892480px;}
._1c{width:2153.994960px;}
._22{width:3271.841040px;}
._20{width:3367.841040px;}
._1d{width:4004.184000px;}
._1e{width:4142.650560px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:45.357424px;}
.fs16{font-size:45.588633px;}
.fs1a{font-size:46.725728px;}
.fs18{font-size:47.905779px;}
.fse{font-size:48.095294px;}
.fs15{font-size:55.033675px;}
.fs1d{font-size:55.093857px;}
.fs17{font-size:55.314208px;}
.fs1b{font-size:56.693883px;}
.fs19{font-size:58.125678px;}
.fsf{font-size:58.355624px;}
.fs10{font-size:64.127059px;}
.fs1e{font-size:66.847214px;}
.fs13{font-size:72.000000px;}
.fs12{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs1c{font-size:108.000000px;}
.fs11{font-size:120.240000px;}
.fs1{font-size:128.160000px;}
.fsa{font-size:131.760000px;}
.fsb{font-size:131.904000px;}
.fs6{font-size:144.000000px;}
.fs1f{font-size:144.144000px;}
.fs8{font-size:156.240000px;}
.fs20{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs9{font-size:200.160000px;}
.fs21{font-size:216.000000px;}
.fs22{font-size:239.760000px;}
.fs23{font-size:239.904000px;}
.fsc{font-size:264.240000px;}
.fs7{font-size:288.000000px;}
.fsd{font-size:396.000000px;}
.fs3{font-size:396.144000px;}
.fs4{font-size:432.000000px;}
.fs2{font-size:432.144000px;}
.y0{bottom:0.000000px;}
.y45{bottom:15.940604px;}
.y4b{bottom:16.021872px;}
.y57{bottom:16.421487px;}
.y51{bottom:16.836209px;}
.y2a{bottom:16.902786px;}
.y6b{bottom:19.362430px;}
.y76{bottom:50.400000px;}
.y2c{bottom:64.356824px;}
.y46{bottom:68.706413px;}
.y4c{bottom:69.056649px;}
.y58{bottom:70.779088px;}
.y52{bottom:72.566604px;}
.y2b{bottom:81.029862px;}
.y6d{bottom:89.882568px;}
.y6c{bottom:108.981772px;}
.y75{bottom:112.500000px;}
.y47{bottom:152.463936px;}
.y2e{bottom:153.170151px;}
.y4d{bottom:153.241126px;}
.y59{bottom:157.063336px;}
.y53{bottom:161.029947px;}
.y74{bottom:166.500000px;}
.y2d{bottom:169.843170px;}
.y6f{bottom:180.968018px;}
.y6e{bottom:200.067222px;}
.y48{bottom:236.072788px;}
.y4e{bottom:237.276173px;}
.y30{bottom:241.825809px;}
.y5a{bottom:243.194427px;}
.y54{bottom:249.336265px;}
.y2f{bottom:258.498836px;}
.y71{bottom:272.240175px;}
.y70{bottom:291.339379px;}
.y49{bottom:319.832832px;}
.y4f{bottom:321.463183px;}
.y34{bottom:328.717848px;}
.y5b{bottom:329.481271px;}
.y32{bottom:330.641778px;}
.y55{bottom:337.802270px;}
.y31{bottom:347.314806px;}
.y73{bottom:363.328686px;}
.y33{bottom:367.194083px;}
.y72{bottom:382.427890px;}
.y3a{bottom:560.670000px;}
.y27{bottom:694.365000px;}
.y12{bottom:812.310000px;}
.y26{bottom:822.750000px;}
.y25{bottom:882.150000px;}
.y24{bottom:941.550000px;}
.y7c{bottom:969.840000px;}
.y23{bottom:1000.950000px;}
.y22{bottom:1060.350000px;}
.y21{bottom:1119.750000px;}
.y20{bottom:1179.150000px;}
.y1f{bottom:1238.550000px;}
.y1e{bottom:1297.950000px;}
.y1d{bottom:1357.350000px;}
.y1c{bottom:1416.750000px;}
.y1b{bottom:1476.150000px;}
.y1a{bottom:1535.550000px;}
.y19{bottom:1594.980000px;}
.y18{bottom:1654.380000px;}
.y17{bottom:1713.780000px;}
.y16{bottom:1773.180000px;}
.y15{bottom:1832.580000px;}
.y14{bottom:1891.980000px;}
.y7b{bottom:1934.715000px;}
.y79{bottom:1935.720000px;}
.y13{bottom:1951.380000px;}
.y39{bottom:2019.420000px;}
.y7d{bottom:2068.590000px;}
.yb{bottom:2082.960000px;}
.y43{bottom:2187.510000px;}
.y40{bottom:2188.515000px;}
.y42{bottom:2191.110000px;}
.y41{bottom:2193.225000px;}
.y78{bottom:2205.510000px;}
.y6a{bottom:2212.920000px;}
.y3f{bottom:2224.515000px;}
.y29{bottom:2245.140000px;}
.y7e{bottom:2273.790000px;}
.y44{bottom:2281.680000px;}
.y50{bottom:2282.580000px;}
.y4a{bottom:2284.740000px;}
.y56{bottom:2288.520000px;}
.y37{bottom:2325.135000px;}
.y3e{bottom:2482.890000px;}
.y3d{bottom:2515.290000px;}
.y3c{bottom:2547.690000px;}
.y3b{bottom:2580.090000px;}
.y38{bottom:2606.370000px;}
.y36{bottom:2692.980000px;}
.y77{bottom:2725.710000px;}
.y35{bottom:2728.980000px;}
.y3{bottom:2846.670000px;}
.y62{bottom:2979.030000px;}
.y5f{bottom:2982.570000px;}
.y5e{bottom:2984.970000px;}
.y60{bottom:2986.920000px;}
.y61{bottom:3011.430000px;}
.y5d{bottom:3415.140000px;}
.y69{bottom:3429.435000px;}
.y5c{bottom:3466.050000px;}
.y68{bottom:3467.850000px;}
.y67{bottom:3496.650000px;}
.y66{bottom:3530.010000px;}
.y65{bottom:3613.575000px;}
.y64{bottom:3622.710000px;}
.y63{bottom:3651.510000px;}
.y7a{bottom:3721.425000px;}
.y28{bottom:3841.230000px;}
.y11{bottom:3971.730000px;}
.y10{bottom:4041.930000px;}
.yf{bottom:4112.130000px;}
.ye{bottom:4182.330000px;}
.yd{bottom:4252.530000px;}
.yc{bottom:4322.730000px;}
.y2{bottom:4438.335000px;}
.ya{bottom:4556.520000px;}
.y9{bottom:4599.720000px;}
.y8{bottom:4642.920000px;}
.y7{bottom:4675.320000px;}
.y6{bottom:4729.320000px;}
.y1{bottom:4779.900000px;}
.y5{bottom:4868.715000px;}
.y4{bottom:4998.315000px;}
.h1b{height:47.306376px;}
.h1e{height:47.547520px;}
.h24{height:48.733474px;}
.h21{height:49.964230px;}
.h10{height:50.161889px;}
.h1c{height:57.398403px;}
.h2b{height:57.461172px;}
.h1f{height:57.690991px;}
.h25{height:59.129948px;}
.h22{height:60.623266px;}
.h11{height:60.863092px;}
.h12{height:66.882519px;}
.h2c{height:69.719555px;}
.h15{height:75.093750px;}
.h14{height:87.859688px;}
.h33{height:96.979687px;}
.h28{height:99.874688px;}
.h6{height:106.987500px;}
.h27{height:112.640625px;}
.h13{height:125.406562px;}
.hb{height:137.421562px;}
.hc{height:137.571750px;}
.h7{height:150.187500px;}
.h2d{height:150.337688px;}
.h9{height:162.953438px;}
.h2e{height:174.968437px;}
.h29{height:178.534687px;}
.h26{height:186.200625px;}
.h2{height:200.500313px;}
.ha{height:208.760625px;}
.h30{height:208.988437px;}
.h2f{height:225.281250px;}
.h31{height:250.062187px;}
.h32{height:250.212375px;}
.h19{height:255.006562px;}
.h18{height:260.946563px;}
.hd{height:275.594063px;}
.h17{height:288.246563px;}
.h8{height:300.375000px;}
.h1a{height:387.717782px;}
.h1d{height:389.694171px;}
.h23{height:399.414115px;}
.h20{height:409.500000px;}
.hf{height:411.120000px;}
.he{height:413.015625px;}
.h4{height:413.165813px;}
.h2a{height:438.300000px;}
.h5{height:450.562500px;}
.h3{height:450.712688px;}
.h16{height:1058.580000px;}
.h0{height:5101.920000px;}
.h1{height:5102.250000px;}
.w4{width:312.480000px;}
.w8{width:443.700000px;}
.w7{width:533.880000px;}
.w5{width:547.560000px;}
.w6{width:579.060000px;}
.w9{width:721.243111px;}
.w3{width:739.620000px;}
.w1{width:3826.500000px;}
.w2{width:3826.619943px;}
.w0{width:3826.620000px;}
.x0{left:0.000000px;}
.x25{left:7.266510px;}
.x55{left:9.276485px;}
.x2f{left:10.404000px;}
.x27{left:13.181126px;}
.x40{left:14.667554px;}
.x39{left:18.101067px;}
.x3c{left:19.142496px;}
.x3f{left:28.358355px;}
.x2e{left:32.040000px;}
.x38{left:34.996687px;}
.x3b{left:37.010203px;}
.x31{left:42.983943px;}
.x58{left:46.214162px;}
.x29{left:48.500005px;}
.x26{left:49.851954px;}
.x56{left:55.996832px;}
.x30{left:59.723943px;}
.xa{left:70.991943px;}
.x24{left:80.439183px;}
.x54{left:82.308766px;}
.x28{left:83.818913px;}
.x9{left:86.651943px;}
.x57{left:90.067258px;}
.x8{left:91.151943px;}
.x52{left:95.127435px;}
.x22{left:97.507210px;}
.x23{left:105.956717px;}
.xc{left:110.771943px;}
.x53{left:111.994031px;}
.x4{left:115.091943px;}
.xb{left:132.191943px;}
.x21{left:174.932829px;}
.x51{left:183.367831px;}
.x5b{left:269.429943px;}
.xe{left:308.954943px;}
.x37{left:362.700000px;}
.x2d{left:375.119943px;}
.x5{left:407.084943px;}
.x5f{left:461.264943px;}
.x5c{left:496.544943px;}
.x32{left:505.109943px;}
.x60{left:507.389943px;}
.x33{left:517.709943px;}
.x2a{left:588.085126px;}
.xd{left:632.444943px;}
.x6{left:798.839943px;}
.x1{left:809.279943px;}
.x3a{left:851.580000px;}
.x5e{left:858.629943px;}
.x34{left:901.184943px;}
.x5d{left:1141.484943px;}
.x3d{left:1372.320000px;}
.x35{left:1440.539943px;}
.x2{left:1495.829943px;}
.x1f{left:1519.589943px;}
.x3{left:1688.069943px;}
.x3e{left:1855.260000px;}
.x41{left:1897.919943px;}
.x36{left:1947.884943px;}
.x46{left:1977.479943px;}
.x49{left:2027.339943px;}
.x4b{left:2034.389943px;}
.x48{left:2044.619943px;}
.x47{left:2068.559943px;}
.x20{left:2319.840000px;}
.x4d{left:2388.884943px;}
.x4a{left:2399.504943px;}
.x4c{left:2408.864943px;}
.x2b{left:2418.479943px;}
.x45{left:2486.729943px;}
.x2c{left:2493.749943px;}
.x5a{left:2651.294943px;}
.x1c{left:2794.709943px;}
.xf{left:2804.789943px;}
.x1b{left:2809.109943px;}
.x15{left:2810.189943px;}
.x1d{left:2812.169943px;}
.x18{left:2818.289943px;}
.x1a{left:2820.629943px;}
.x11{left:2822.249943px;}
.x16{left:2828.549943px;}
.x14{left:2836.109943px;}
.x19{left:2839.529943px;}
.x12{left:2843.489943px;}
.x13{left:2851.769943px;}
.x17{left:2868.869943px;}
.x59{left:2900.084943px;}
.x10{left:2914.769943px;}
.x1e{left:2920.709943px;}
.x44{left:2965.169943px;}
.x7{left:3046.754943px;}
.x50{left:3061.620000px;}
.x4e{left:3235.679943px;}
.x4f{left:3299.429943px;}
.x43{left:3403.649943px;}
.x42{left:3418.709943px;}
@media print{
.v2{vertical-align:-51.200000pt;}
.v3{vertical-align:-38.400000pt;}
.vb{vertical-align:-36.266667pt;}
.vc{vertical-align:-21.653333pt;}
.va{vertical-align:-16.213333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:8.106667pt;}
.vd{vertical-align:30.240000pt;}
.v8{vertical-align:33.120000pt;}
.v1{vertical-align:51.200000pt;}
.v7{vertical-align:65.386667pt;}
.v9{vertical-align:69.920000pt;}
.v6{vertical-align:115.200000pt;}
.v5{vertical-align:120.480000pt;}
.v4{vertical-align:144.746667pt;}
.ls10{letter-spacing:-4.608000pt;}
.ls13{letter-spacing:-0.249067pt;}
.lse{letter-spacing:-0.208533pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016640pt;}
.ls0{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.161067pt;}
.ls9{letter-spacing:0.166136pt;}
.ls4{letter-spacing:0.166933pt;}
.ls3{letter-spacing:0.222933pt;}
.ls11{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.248960pt;}
.ls6{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.272533pt;}
.ls8{letter-spacing:16.000000pt;}
.ls7{letter-spacing:17.920000pt;}
.lsa{letter-spacing:29.440000pt;}
.ls2{letter-spacing:35.233280pt;}
.ws0{word-spacing:-97.891584pt;}
.ws3{word-spacing:-65.296640pt;}
.ws1{word-spacing:-38.775573pt;}
.ws2{word-spacing:-32.559360pt;}
.ws19{word-spacing:-29.985173pt;}
.ws18{word-spacing:-29.807573pt;}
.ws8{word-spacing:-29.712640pt;}
.ws17{word-spacing:-29.463573pt;}
.ws11{word-spacing:-26.912000pt;}
.ws10{word-spacing:-26.688000pt;}
.ws14{word-spacing:-23.680000pt;}
.ws13{word-spacing:-23.663360pt;}
.ws16{word-spacing:-16.518689pt;}
.ws6{word-spacing:-15.846509pt;}
.ws5{word-spacing:-14.420323pt;}
.ws1a{word-spacing:0.000000pt;}
.ws4{word-spacing:329.727088pt;}
.ws15{word-spacing:331.999666pt;}
.wse{word-spacing:342.710714pt;}
.wsb{word-spacing:448.574846pt;}
.wsc{word-spacing:450.861453pt;}
.wsd{word-spacing:473.777505pt;}
.wsa{word-spacing:798.276053pt;}
.wsf{word-spacing:869.109333pt;}
.ws12{word-spacing:930.883413pt;}
.ws9{word-spacing:943.745707pt;}
.ws7{word-spacing:1161.652907pt;}
._21{margin-left:-2257.563520pt;}
._3{margin-left:-26.761728pt;}
._1f{margin-left:-16.197120pt;}
._4{margin-left:-14.976000pt;}
._d{margin-left:-12.987520pt;}
._7{margin-left:-11.392000pt;}
._6{margin-left:-10.496000pt;}
._c{margin-left:-9.018240pt;}
._1{margin-left:-7.966720pt;}
._9{margin-left:-6.650027pt;}
._8{margin-left:-5.268053pt;}
._a{margin-left:-4.112640pt;}
._19{margin-left:-3.105280pt;}
._2{margin-left:-1.941333pt;}
._0{margin-left:-1.025280pt;}
._5{width:1.557333pt;}
._b{width:3.117227pt;}
._10{width:19.178667pt;}
._f{width:353.449349pt;}
._1b{width:358.727669pt;}
._17{width:377.834616pt;}
._e{width:389.065993pt;}
._12{width:470.409126pt;}
._14{width:472.807033pt;}
._16{width:496.838519pt;}
._11{width:504.011698pt;}
._13{width:506.580894pt;}
._15{width:532.329012pt;}
._18{width:738.666667pt;}
._1a{width:882.571093pt;}
._1c{width:1914.662187pt;}
._22{width:2908.303147pt;}
._20{width:2993.636480pt;}
._1d{width:3559.274667pt;}
._1e{width:3682.356053pt;}
.fs14{font-size:40.317710pt;}
.fs16{font-size:40.523230pt;}
.fs1a{font-size:41.533980pt;}
.fs18{font-size:42.582914pt;}
.fse{font-size:42.751373pt;}
.fs15{font-size:48.918822pt;}
.fs1d{font-size:48.972318pt;}
.fs17{font-size:49.168185pt;}
.fs1b{font-size:50.394562pt;}
.fs19{font-size:51.667269pt;}
.fsf{font-size:51.871666pt;}
.fs10{font-size:57.001830pt;}
.fs1e{font-size:59.419746pt;}
.fs13{font-size:64.000000pt;}
.fs12{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs1c{font-size:96.000000pt;}
.fs11{font-size:106.880000pt;}
.fs1{font-size:113.920000pt;}
.fsa{font-size:117.120000pt;}
.fsb{font-size:117.248000pt;}
.fs6{font-size:128.000000pt;}
.fs1f{font-size:128.128000pt;}
.fs8{font-size:138.880000pt;}
.fs20{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs9{font-size:177.920000pt;}
.fs21{font-size:192.000000pt;}
.fs22{font-size:213.120000pt;}
.fs23{font-size:213.248000pt;}
.fsc{font-size:234.880000pt;}
.fs7{font-size:256.000000pt;}
.fsd{font-size:352.000000pt;}
.fs3{font-size:352.128000pt;}
.fs4{font-size:384.000000pt;}
.fs2{font-size:384.128000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:14.169426pt;}
.y4b{bottom:14.241664pt;}
.y57{bottom:14.596877pt;}
.y51{bottom:14.965519pt;}
.y2a{bottom:15.024698pt;}
.y6b{bottom:17.211049pt;}
.y76{bottom:44.800000pt;}
.y2c{bottom:57.206066pt;}
.y46{bottom:61.072367pt;}
.y4c{bottom:61.383688pt;}
.y58{bottom:62.914745pt;}
.y52{bottom:64.503648pt;}
.y2b{bottom:72.026544pt;}
.y6d{bottom:79.895616pt;}
.y6c{bottom:96.872686pt;}
.y75{bottom:100.000000pt;}
.y47{bottom:135.523499pt;}
.y2e{bottom:136.151245pt;}
.y4d{bottom:136.214334pt;}
.y59{bottom:139.611854pt;}
.y53{bottom:143.137730pt;}
.y74{bottom:148.000000pt;}
.y2d{bottom:150.971707pt;}
.y6f{bottom:160.860460pt;}
.y6e{bottom:177.837531pt;}
.y48{bottom:209.842478pt;}
.y4e{bottom:210.912154pt;}
.y30{bottom:214.956275pt;}
.y5a{bottom:216.172824pt;}
.y54{bottom:221.632236pt;}
.y2f{bottom:229.776743pt;}
.y71{bottom:241.991267pt;}
.y70{bottom:258.968337pt;}
.y49{bottom:284.295850pt;}
.y4f{bottom:285.745051pt;}
.y34{bottom:292.193642pt;}
.y5b{bottom:292.872241pt;}
.y32{bottom:293.903803pt;}
.y55{bottom:300.268684pt;}
.y31{bottom:308.724272pt;}
.y73{bottom:322.958832pt;}
.y33{bottom:326.394741pt;}
.y72{bottom:339.935902pt;}
.y3a{bottom:498.373333pt;}
.y27{bottom:617.213333pt;}
.y12{bottom:722.053333pt;}
.y26{bottom:731.333333pt;}
.y25{bottom:784.133333pt;}
.y24{bottom:836.933333pt;}
.y7c{bottom:862.080000pt;}
.y23{bottom:889.733333pt;}
.y22{bottom:942.533333pt;}
.y21{bottom:995.333333pt;}
.y20{bottom:1048.133333pt;}
.y1f{bottom:1100.933333pt;}
.y1e{bottom:1153.733333pt;}
.y1d{bottom:1206.533333pt;}
.y1c{bottom:1259.333333pt;}
.y1b{bottom:1312.133333pt;}
.y1a{bottom:1364.933333pt;}
.y19{bottom:1417.760000pt;}
.y18{bottom:1470.560000pt;}
.y17{bottom:1523.360000pt;}
.y16{bottom:1576.160000pt;}
.y15{bottom:1628.960000pt;}
.y14{bottom:1681.760000pt;}
.y7b{bottom:1719.746667pt;}
.y79{bottom:1720.640000pt;}
.y13{bottom:1734.560000pt;}
.y39{bottom:1795.040000pt;}
.y7d{bottom:1838.746667pt;}
.yb{bottom:1851.520000pt;}
.y43{bottom:1944.453333pt;}
.y40{bottom:1945.346667pt;}
.y42{bottom:1947.653333pt;}
.y41{bottom:1949.533333pt;}
.y78{bottom:1960.453333pt;}
.y6a{bottom:1967.040000pt;}
.y3f{bottom:1977.346667pt;}
.y29{bottom:1995.680000pt;}
.y7e{bottom:2021.146667pt;}
.y44{bottom:2028.160000pt;}
.y50{bottom:2028.960000pt;}
.y4a{bottom:2030.880000pt;}
.y56{bottom:2034.240000pt;}
.y37{bottom:2066.786667pt;}
.y3e{bottom:2207.013333pt;}
.y3d{bottom:2235.813333pt;}
.y3c{bottom:2264.613333pt;}
.y3b{bottom:2293.413333pt;}
.y38{bottom:2316.773333pt;}
.y36{bottom:2393.760000pt;}
.y77{bottom:2422.853333pt;}
.y35{bottom:2425.760000pt;}
.y3{bottom:2530.373333pt;}
.y62{bottom:2648.026667pt;}
.y5f{bottom:2651.173333pt;}
.y5e{bottom:2653.306667pt;}
.y60{bottom:2655.040000pt;}
.y61{bottom:2676.826667pt;}
.y5d{bottom:3035.680000pt;}
.y69{bottom:3048.386667pt;}
.y5c{bottom:3080.933333pt;}
.y68{bottom:3082.533333pt;}
.y67{bottom:3108.133333pt;}
.y66{bottom:3137.786667pt;}
.y65{bottom:3212.066667pt;}
.y64{bottom:3220.186667pt;}
.y63{bottom:3245.786667pt;}
.y7a{bottom:3307.933333pt;}
.y28{bottom:3414.426667pt;}
.y11{bottom:3530.426667pt;}
.y10{bottom:3592.826667pt;}
.yf{bottom:3655.226667pt;}
.ye{bottom:3717.626667pt;}
.yd{bottom:3780.026667pt;}
.yc{bottom:3842.426667pt;}
.y2{bottom:3945.186667pt;}
.ya{bottom:4050.240000pt;}
.y9{bottom:4088.640000pt;}
.y8{bottom:4127.040000pt;}
.y7{bottom:4155.840000pt;}
.y6{bottom:4203.840000pt;}
.y1{bottom:4248.800000pt;}
.y5{bottom:4327.746667pt;}
.y4{bottom:4442.946667pt;}
.h1b{height:42.050112pt;}
.h1e{height:42.264462pt;}
.h24{height:43.318643pt;}
.h21{height:44.412649pt;}
.h10{height:44.588346pt;}
.h1c{height:51.020803pt;}
.h2b{height:51.076597pt;}
.h1f{height:51.280881pt;}
.h25{height:52.559954pt;}
.h22{height:53.887347pt;}
.h11{height:54.100526pt;}
.h12{height:59.451128pt;}
.h2c{height:61.972938pt;}
.h15{height:66.750000pt;}
.h14{height:78.097500pt;}
.h33{height:86.204167pt;}
.h28{height:88.777500pt;}
.h6{height:95.100000pt;}
.h27{height:100.125000pt;}
.h13{height:111.472500pt;}
.hb{height:122.152500pt;}
.hc{height:122.286000pt;}
.h7{height:133.500000pt;}
.h2d{height:133.633500pt;}
.h9{height:144.847500pt;}
.h2e{height:155.527500pt;}
.h29{height:158.697500pt;}
.h26{height:165.511667pt;}
.h2{height:178.222500pt;}
.ha{height:185.565000pt;}
.h30{height:185.767500pt;}
.h2f{height:200.250000pt;}
.h31{height:222.277500pt;}
.h32{height:222.411000pt;}
.h19{height:226.672500pt;}
.h18{height:231.952500pt;}
.hd{height:244.972500pt;}
.h17{height:256.219167pt;}
.h8{height:267.000000pt;}
.h1a{height:344.638028pt;}
.h1d{height:346.394818pt;}
.h23{height:355.034769pt;}
.h20{height:364.000000pt;}
.hf{height:365.440000pt;}
.he{height:367.125000pt;}
.h4{height:367.258500pt;}
.h2a{height:389.600000pt;}
.h5{height:400.500000pt;}
.h3{height:400.633500pt;}
.h16{height:940.960000pt;}
.h0{height:4535.040000pt;}
.h1{height:4535.333333pt;}
.w4{width:277.760000pt;}
.w8{width:394.400000pt;}
.w7{width:474.560000pt;}
.w5{width:486.720000pt;}
.w6{width:514.720000pt;}
.w9{width:641.104987pt;}
.w3{width:657.440000pt;}
.w1{width:3401.333333pt;}
.w2{width:3401.439949pt;}
.w0{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x25{left:6.459120pt;}
.x55{left:8.245765pt;}
.x2f{left:9.248000pt;}
.x27{left:11.716556pt;}
.x40{left:13.037825pt;}
.x39{left:16.089837pt;}
.x3c{left:17.015552pt;}
.x3f{left:25.207427pt;}
.x2e{left:28.480000pt;}
.x38{left:31.108166pt;}
.x3b{left:32.897958pt;}
.x31{left:38.207949pt;}
.x58{left:41.079255pt;}
.x29{left:43.111116pt;}
.x26{left:44.312848pt;}
.x56{left:49.774962pt;}
.x30{left:53.087949pt;}
.xa{left:63.103949pt;}
.x24{left:71.501496pt;}
.x54{left:73.163348pt;}
.x28{left:74.505700pt;}
.x9{left:77.023949pt;}
.x57{left:80.059785pt;}
.x8{left:81.023949pt;}
.x52{left:84.557720pt;}
.x22{left:86.673075pt;}
.x23{left:94.183749pt;}
.xc{left:98.463949pt;}
.x53{left:99.550249pt;}
.x4{left:102.303949pt;}
.xb{left:117.503949pt;}
.x21{left:155.495848pt;}
.x51{left:162.993628pt;}
.x5b{left:239.493283pt;}
.xe{left:274.626616pt;}
.x37{left:322.400000pt;}
.x2d{left:333.439949pt;}
.x5{left:361.853283pt;}
.x5f{left:410.013283pt;}
.x5c{left:441.373283pt;}
.x32{left:448.986616pt;}
.x60{left:451.013283pt;}
.x33{left:460.186616pt;}
.x2a{left:522.742334pt;}
.xd{left:562.173283pt;}
.x6{left:710.079949pt;}
.x1{left:719.359949pt;}
.x3a{left:756.960000pt;}
.x5e{left:763.226616pt;}
.x34{left:801.053283pt;}
.x5d{left:1014.653283pt;}
.x3d{left:1219.840000pt;}
.x35{left:1280.479949pt;}
.x2{left:1329.626616pt;}
.x1f{left:1350.746616pt;}
.x3{left:1500.506616pt;}
.x3e{left:1649.120000pt;}
.x41{left:1687.039949pt;}
.x36{left:1731.453283pt;}
.x46{left:1757.759949pt;}
.x49{left:1802.079949pt;}
.x4b{left:1808.346616pt;}
.x48{left:1817.439949pt;}
.x47{left:1838.719949pt;}
.x20{left:2062.080000pt;}
.x4d{left:2123.453283pt;}
.x4a{left:2132.893283pt;}
.x4c{left:2141.213283pt;}
.x2b{left:2149.759949pt;}
.x45{left:2210.426616pt;}
.x2c{left:2216.666616pt;}
.x5a{left:2356.706616pt;}
.x1c{left:2484.186616pt;}
.xf{left:2493.146616pt;}
.x1b{left:2496.986616pt;}
.x15{left:2497.946616pt;}
.x1d{left:2499.706616pt;}
.x18{left:2505.146616pt;}
.x1a{left:2507.226616pt;}
.x11{left:2508.666616pt;}
.x16{left:2514.266616pt;}
.x14{left:2520.986616pt;}
.x19{left:2524.026616pt;}
.x12{left:2527.546616pt;}
.x13{left:2534.906616pt;}
.x17{left:2550.106616pt;}
.x59{left:2577.853283pt;}
.x10{left:2590.906616pt;}
.x1e{left:2596.186616pt;}
.x44{left:2635.706616pt;}
.x7{left:2708.226616pt;}
.x50{left:2721.440000pt;}
.x4e{left:2876.159949pt;}
.x4f{left:2932.826616pt;}
.x43{left:3025.466616pt;}
.x42{left:3038.853283pt;}
}




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