
    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_dea61d3259d1e3a23e09ea2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_0cba78b742c2c2e18e5d5fbc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952637;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_e47c95b0962735753a3a72fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_eab23fed1833d4c147c97681.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.823242;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_08f99f02d921d06ad263247d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_0dc4e9b8fa3c559ca9b5789a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.828000px;}
.ls18{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.262200px;}
.ls1f{letter-spacing:-0.253200px;}
.ls10{letter-spacing:-0.169800px;}
.lsb{letter-spacing:-0.127200px;}
.ls16{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.079800px;}
.ls19{letter-spacing:-0.057600px;}
.ls13{letter-spacing:-0.048960px;}
.lsa{letter-spacing:-0.037200px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010200px;}
.ls1{letter-spacing:0.015120px;}
.ls11{letter-spacing:0.052560px;}
.ls2{letter-spacing:0.052800px;}
.ls12{letter-spacing:0.057600px;}
.ls17{letter-spacing:0.097800px;}
.ls1a{letter-spacing:0.146880px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.180960px;}
.ls4{letter-spacing:0.193440px;}
.ls1c{letter-spacing:0.237600px;}
.lsc{letter-spacing:0.282000px;}
.ls6{letter-spacing:0.302400px;}
.ls1e{letter-spacing:0.310800px;}
.lsd{letter-spacing:0.317400px;}
.lse{letter-spacing:0.355200px;}
.ls3{letter-spacing:0.373440px;}
.lsf{letter-spacing:0.397200px;}
.ls14{letter-spacing:2.880000px;}
.ls20{letter-spacing:78.660000px;}
.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;}
}
.ws4b{word-spacing:-16.870800px;}
.ws49{word-spacing:-16.862400px;}
.ws47{word-spacing:-16.657800px;}
.ws45{word-spacing:-16.617600px;}
.ws42{word-spacing:-16.560000px;}
.ws43{word-spacing:-16.511040px;}
.ws48{word-spacing:-16.502400px;}
.ws46{word-spacing:-16.453200px;}
.ws4c{word-spacing:-16.306800px;}
.ws44{word-spacing:-16.297800px;}
.ws4a{word-spacing:-15.732000px;}
.ws6{word-spacing:-15.337200px;}
.ws5{word-spacing:-15.257400px;}
.ws4{word-spacing:-15.222000px;}
.ws3{word-spacing:-14.992800px;}
.ws41{word-spacing:-14.992560px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.902800px;}
.ws0{word-spacing:-14.860200px;}
.ws15{word-spacing:-3.588000px;}
.ws16{word-spacing:-3.528000px;}
.ws14{word-spacing:-3.288000px;}
.wsb{word-spacing:-2.868000px;}
.wsa{word-spacing:-2.688000px;}
.ws17{word-spacing:-1.974000px;}
.ws12{word-spacing:-1.374000px;}
.ws11{word-spacing:-1.254000px;}
.ws13{word-spacing:-1.134000px;}
.ws34{word-spacing:-0.720000px;}
.ws33{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.654000px;}
.ws8{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.420000px;}
.ws40{word-spacing:-0.180000px;}
.ws7{word-spacing:0.000000px;}
.ws3f{word-spacing:0.114000px;}
.ws25{word-spacing:0.156000px;}
.ws27{word-spacing:0.240000px;}
.ws29{word-spacing:0.654000px;}
.ws23{word-spacing:0.714000px;}
.ws22{word-spacing:0.834000px;}
.ws24{word-spacing:0.894000px;}
.ws28{word-spacing:0.954000px;}
.ws26{word-spacing:0.972000px;}
.ws3e{word-spacing:1.374000px;}
.ws1d{word-spacing:1.434000px;}
.ws37{word-spacing:1.554000px;}
.ws36{word-spacing:1.674000px;}
.ws39{word-spacing:2.094000px;}
.ws1c{word-spacing:2.148000px;}
.ws1b{word-spacing:2.154000px;}
.ws3d{word-spacing:2.208000px;}
.ws38{word-spacing:2.268000px;}
.ws1e{word-spacing:2.334000px;}
.ws3c{word-spacing:2.388000px;}
.ws3b{word-spacing:2.448000px;}
.ws18{word-spacing:2.988000px;}
.ws19{word-spacing:3.588000px;}
.ws1a{word-spacing:3.762000px;}
.ws30{word-spacing:4.242000px;}
.ws2e{word-spacing:4.302000px;}
.ws2c{word-spacing:4.422000px;}
.ws31{word-spacing:4.542000px;}
.ws2d{word-spacing:4.578000px;}
.ws2f{word-spacing:5.004000px;}
.ws32{word-spacing:5.022000px;}
.wsc{word-spacing:5.796000px;}
.wsd{word-spacing:5.856000px;}
.ws3a{word-spacing:6.456000px;}
.ws2b{word-spacing:6.576000px;}
.ws2a{word-spacing:6.636000px;}
.ws20{word-spacing:7.950000px;}
.ws21{word-spacing:8.010000px;}
.ws1f{word-spacing:8.388000px;}
.ws10{word-spacing:9.564000px;}
.wse{word-spacing:20.856000px;}
.wsf{word-spacing:21.036000px;}
._e{margin-left:-5.275215px;}
._c{margin-left:-4.238876px;}
._2{margin-left:-3.166802px;}
._d{margin-left:-2.162627px;}
._1{margin-left:-1.152000px;}
._0{width:1.105680px;}
._a{width:2.127992px;}
._5{width:3.353192px;}
._9{width:4.698213px;}
._3{width:5.932196px;}
._b{width:7.813195px;}
._8{width:8.914226px;}
._7{width:10.295991px;}
._11{width:11.534927px;}
._21{width:13.579200px;}
._22{width:15.128867px;}
._4{width:21.143387px;}
._6{width:22.667737px;}
._1d{width:23.754559px;}
._10{width:25.567680px;}
._19{width:30.139200px;}
._f{width:31.247040px;}
._15{width:32.440573px;}
._14{width:33.759107px;}
._20{width:36.961920px;}
._1c{width:48.355200px;}
._18{width:50.077440px;}
._23{width:53.985600px;}
._24{width:55.177920px;}
._12{width:72.797760px;}
._13{width:74.174627px;}
._25{width:77.235840px;}
._26{width:78.287267px;}
._1b{width:88.416000px;}
._1a{width:89.887680px;}
._16{width:92.073600px;}
._17{width:93.968867px;}
._1e{width:145.065600px;}
._1f{width:146.522880px;}
.fc4{color:rgb(0,128,0);}
.fc5{color:rgb(17,17,17);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(51,119,85);}
.fc0{color:rgb(0,153,0);}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.960000px;}
.y10{bottom:21.780000px;}
.yf{bottom:21.960000px;}
.ye{bottom:38.700000px;}
.yd{bottom:55.620000px;}
.y39{bottom:58.896000px;}
.y2{bottom:75.636000px;}
.y3{bottom:76.896000px;}
.yc{bottom:77.580000px;}
.y3a{bottom:77.976000px;}
.yb{bottom:94.500000px;}
.ya{bottom:111.420000px;}
.yd8{bottom:121.356000px;}
.ycb{bottom:122.976000px;}
.yc8{bottom:123.516000px;}
.y6f{bottom:124.056000px;}
.y38{bottom:126.216000px;}
.yd7{bottom:139.896000px;}
.yca{bottom:141.516000px;}
.yc7{bottom:142.056000px;}
.y6e{bottom:142.596000px;}
.y37{bottom:144.216000px;}
.yd6{bottom:158.430000px;}
.ya3{bottom:160.050000px;}
.yc6{bottom:160.590000px;}
.y6d{bottom:161.310000px;}
.y36{bottom:162.210000px;}
.yd5{bottom:176.970000px;}
.ya2{bottom:178.590000px;}
.yc5{bottom:179.310000px;}
.y6c{bottom:179.850000px;}
.yd4{bottom:195.510000px;}
.ya1{bottom:197.310000px;}
.yc4{bottom:197.850000px;}
.y35{bottom:198.030000px;}
.y6b{bottom:198.390000px;}
.yd3{bottom:214.050000px;}
.ya0{bottom:215.850000px;}
.y6a{bottom:216.930000px;}
.yd2{bottom:232.590000px;}
.yc3{bottom:233.670000px;}
.y9f{bottom:234.390000px;}
.y69{bottom:235.470000px;}
.yd1{bottom:251.310000px;}
.yc2{bottom:251.670000px;}
.y9e{bottom:252.930000px;}
.y34{bottom:253.650000px;}
.y68{bottom:254.010000px;}
.yd0{bottom:269.850000px;}
.y33{bottom:270.570000px;}
.y9d{bottom:271.470000px;}
.y67{bottom:272.550000px;}
.y32{bottom:287.355000px;}
.yc1{bottom:288.435000px;}
.y9c{bottom:290.055000px;}
.y66{bottom:291.135000px;}
.yc0{bottom:306.975000px;}
.y9b{bottom:308.595000px;}
.y65{bottom:309.855000px;}
.y31{bottom:313.066500px;}
.ybf{bottom:325.515000px;}
.y9a{bottom:327.135000px;}
.y64{bottom:328.395000px;}
.y30{bottom:329.973000px;}
.ybe{bottom:344.055000px;}
.yce{bottom:344.415000px;}
.y99{bottom:345.855000px;}
.y2f{bottom:346.879500px;}
.y63{bottom:346.935000px;}
.ybd{bottom:362.595000px;}
.ycd{bottom:362.955000px;}
.y2e{bottom:363.786000px;}
.y98{bottom:364.395000px;}
.y62{bottom:365.475000px;}
.y2d{bottom:380.692500px;}
.ybc{bottom:381.135000px;}
.y97{bottom:382.935000px;}
.y61{bottom:384.015000px;}
.y2c{bottom:397.599000px;}
.ybb{bottom:399.855000px;}
.y96{bottom:401.475000px;}
.y60{bottom:402.555000px;}
.y2b{bottom:414.505500px;}
.yba{bottom:418.395000px;}
.ycf{bottom:418.755000px;}
.y95{bottom:420.015000px;}
.y5f{bottom:421.095000px;}
.y2a{bottom:431.412000px;}
.yb9{bottom:436.935000px;}
.y94{bottom:438.555000px;}
.y5e{bottom:439.635000px;}
.y29{bottom:448.318500px;}
.yb8{bottom:455.475000px;}
.y93{bottom:457.095000px;}
.y5d{bottom:458.355000px;}
.y28{bottom:465.225000px;}
.yb7{bottom:474.015000px;}
.ycc{bottom:474.375000px;}
.y92{bottom:475.635000px;}
.y5c{bottom:476.895000px;}
.y27{bottom:482.131500px;}
.yb6{bottom:492.555000px;}
.y91{bottom:494.355000px;}
.y5b{bottom:495.435000px;}
.y26{bottom:499.038000px;}
.yb5{bottom:511.095000px;}
.yc9{bottom:511.455000px;}
.y90{bottom:512.895000px;}
.y5a{bottom:513.975000px;}
.y25{bottom:515.944500px;}
.yb4{bottom:529.635000px;}
.y8f{bottom:531.435000px;}
.y59{bottom:532.515000px;}
.y24{bottom:532.851000px;}
.yb3{bottom:548.355000px;}
.y23{bottom:549.757500px;}
.y8e{bottom:549.975000px;}
.y58{bottom:551.055000px;}
.y22{bottom:566.097000px;}
.yb2{bottom:566.925000px;}
.y8d{bottom:568.545000px;}
.y57{bottom:569.625000px;}
.yb1{bottom:585.465000px;}
.y8c{bottom:587.085000px;}
.y56{bottom:588.165000px;}
.y21{bottom:598.497000px;}
.yb0{bottom:604.005000px;}
.y8b{bottom:605.625000px;}
.y55{bottom:606.885000px;}
.y20{bottom:615.394500px;}
.yaf{bottom:622.545000px;}
.y8a{bottom:624.165000px;}
.y54{bottom:625.425000px;}
.y1f{bottom:632.292000px;}
.yae{bottom:641.085000px;}
.y89{bottom:642.885000px;}
.y1e{bottom:649.189500px;}
.yad{bottom:659.625000px;}
.y53{bottom:661.245000px;}
.y88{bottom:661.425000px;}
.y1d{bottom:666.087000px;}
.yac{bottom:678.165000px;}
.y87{bottom:679.965000px;}
.y1c{bottom:682.984500px;}
.yab{bottom:696.885000px;}
.y52{bottom:697.965000px;}
.y86{bottom:698.505000px;}
.y1b{bottom:699.882000px;}
.yaa{bottom:715.425000px;}
.y51{bottom:716.505000px;}
.y1a{bottom:716.779500px;}
.y85{bottom:717.045000px;}
.y19{bottom:733.677000px;}
.ya9{bottom:733.965000px;}
.y50{bottom:735.045000px;}
.y84{bottom:735.585000px;}
.y18{bottom:750.574500px;}
.ya8{bottom:752.505000px;}
.y4f{bottom:753.585000px;}
.y83{bottom:754.125000px;}
.y17{bottom:767.472000px;}
.ya7{bottom:771.045000px;}
.y4e{bottom:772.125000px;}
.y82{bottom:772.665000px;}
.y16{bottom:784.369500px;}
.ya6{bottom:789.585000px;}
.y4d{bottom:790.665000px;}
.y15{bottom:801.267000px;}
.ya5{bottom:808.125000px;}
.y81{bottom:808.485000px;}
.y4c{bottom:809.385000px;}
.y14{bottom:818.164500px;}
.ya4{bottom:826.665000px;}
.y4b{bottom:827.925000px;}
.y13{bottom:835.062000px;}
.y80{bottom:845.385000px;}
.y4a{bottom:846.465000px;}
.y12{bottom:851.959500px;}
.y7f{bottom:863.970000px;}
.y49{bottom:865.050000px;}
.y11{bottom:868.290000px;}
.y7e{bottom:882.510000px;}
.y48{bottom:883.590000px;}
.y7d{bottom:901.050000px;}
.y47{bottom:902.130000px;}
.y9{bottom:910.230000px;}
.y7c{bottom:919.590000px;}
.y46{bottom:920.670000px;}
.y7b{bottom:938.130000px;}
.y45{bottom:939.210000px;}
.y7a{bottom:956.670000px;}
.y44{bottom:957.930000px;}
.y79{bottom:975.210000px;}
.y43{bottom:976.470000px;}
.y78{bottom:993.930000px;}
.y42{bottom:995.010000px;}
.y77{bottom:1012.470000px;}
.y41{bottom:1013.550000px;}
.y76{bottom:1031.010000px;}
.y40{bottom:1032.090000px;}
.y75{bottom:1049.550000px;}
.y3f{bottom:1050.630000px;}
.y8{bottom:1062.150000px;}
.y74{bottom:1068.090000px;}
.y3e{bottom:1069.170000px;}
.y7{bottom:1082.490000px;}
.y73{bottom:1086.630000px;}
.y3d{bottom:1087.710000px;}
.y72{bottom:1105.170000px;}
.y3c{bottom:1106.430000px;}
.y6{bottom:1120.650000px;}
.y71{bottom:1123.710000px;}
.y5{bottom:1141.020000px;}
.y3b{bottom:1142.280000px;}
.y70{bottom:1142.460000px;}
.y1{bottom:1196.820000px;}
.h4{height:16.740000px;}
.hb{height:16.920000px;}
.h8{height:41.610234px;}
.h9{height:45.246094px;}
.he{height:46.122187px;}
.h5{height:50.013984px;}
.h2{height:50.072344px;}
.hd{height:55.437187px;}
.hc{height:55.501875px;}
.h3{height:60.257812px;}
.h6{height:60.328125px;}
.ha{height:68.956875px;}
.h7{height:129.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:50.400000px;}
.w6{width:67.140000px;}
.w7{width:80.280000px;}
.w3{width:318.450000px;}
.w4{width:318.675000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x13{left:10.800000px;}
.x3{left:25.560000px;}
.x14{left:35.280000px;}
.xf{left:42.300000px;}
.xa{left:59.070000px;}
.x9{left:83.910000px;}
.x8{left:105.510000px;}
.x1{left:127.656000px;}
.x6{left:128.730000px;}
.x7{left:137.010000px;}
.x10{left:145.475987px;}
.x15{left:148.895987px;}
.x11{left:353.954987px;}
.x5{left:446.115000px;}
.xd{left:499.605000px;}
.xc{left:587.985000px;}
.xb{left:595.905000px;}
.xe{left:698.010000px;}
.x2{left:714.750000px;}
.x12{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.736000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.233067pt;}
.ls1f{letter-spacing:-0.225067pt;}
.ls10{letter-spacing:-0.150933pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.070933pt;}
.ls19{letter-spacing:-0.051200pt;}
.ls13{letter-spacing:-0.043520pt;}
.lsa{letter-spacing:-0.033067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009067pt;}
.ls1{letter-spacing:0.013440pt;}
.ls11{letter-spacing:0.046720pt;}
.ls2{letter-spacing:0.046933pt;}
.ls12{letter-spacing:0.051200pt;}
.ls17{letter-spacing:0.086933pt;}
.ls1a{letter-spacing:0.130560pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.160853pt;}
.ls4{letter-spacing:0.171947pt;}
.ls1c{letter-spacing:0.211200pt;}
.lsc{letter-spacing:0.250667pt;}
.ls6{letter-spacing:0.268800pt;}
.ls1e{letter-spacing:0.276267pt;}
.lsd{letter-spacing:0.282133pt;}
.lse{letter-spacing:0.315733pt;}
.ls3{letter-spacing:0.331947pt;}
.lsf{letter-spacing:0.353067pt;}
.ls14{letter-spacing:2.560000pt;}
.ls20{letter-spacing:69.920000pt;}
.ws4b{word-spacing:-14.996267pt;}
.ws49{word-spacing:-14.988800pt;}
.ws47{word-spacing:-14.806933pt;}
.ws45{word-spacing:-14.771200pt;}
.ws42{word-spacing:-14.720000pt;}
.ws43{word-spacing:-14.676480pt;}
.ws48{word-spacing:-14.668800pt;}
.ws46{word-spacing:-14.625067pt;}
.ws4c{word-spacing:-14.494933pt;}
.ws44{word-spacing:-14.486933pt;}
.ws4a{word-spacing:-13.984000pt;}
.ws6{word-spacing:-13.633067pt;}
.ws5{word-spacing:-13.562133pt;}
.ws4{word-spacing:-13.530667pt;}
.ws3{word-spacing:-13.326933pt;}
.ws41{word-spacing:-13.326720pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.246933pt;}
.ws0{word-spacing:-13.209067pt;}
.ws15{word-spacing:-3.189333pt;}
.ws16{word-spacing:-3.136000pt;}
.ws14{word-spacing:-2.922667pt;}
.wsb{word-spacing:-2.549333pt;}
.wsa{word-spacing:-2.389333pt;}
.ws17{word-spacing:-1.754667pt;}
.ws12{word-spacing:-1.221333pt;}
.ws11{word-spacing:-1.114667pt;}
.ws13{word-spacing:-1.008000pt;}
.ws34{word-spacing:-0.640000pt;}
.ws33{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.581333pt;}
.ws8{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.373333pt;}
.ws40{word-spacing:-0.160000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.101333pt;}
.ws25{word-spacing:0.138667pt;}
.ws27{word-spacing:0.213333pt;}
.ws29{word-spacing:0.581333pt;}
.ws23{word-spacing:0.634667pt;}
.ws22{word-spacing:0.741333pt;}
.ws24{word-spacing:0.794667pt;}
.ws28{word-spacing:0.848000pt;}
.ws26{word-spacing:0.864000pt;}
.ws3e{word-spacing:1.221333pt;}
.ws1d{word-spacing:1.274667pt;}
.ws37{word-spacing:1.381333pt;}
.ws36{word-spacing:1.488000pt;}
.ws39{word-spacing:1.861333pt;}
.ws1c{word-spacing:1.909333pt;}
.ws1b{word-spacing:1.914667pt;}
.ws3d{word-spacing:1.962667pt;}
.ws38{word-spacing:2.016000pt;}
.ws1e{word-spacing:2.074667pt;}
.ws3c{word-spacing:2.122667pt;}
.ws3b{word-spacing:2.176000pt;}
.ws18{word-spacing:2.656000pt;}
.ws19{word-spacing:3.189333pt;}
.ws1a{word-spacing:3.344000pt;}
.ws30{word-spacing:3.770667pt;}
.ws2e{word-spacing:3.824000pt;}
.ws2c{word-spacing:3.930667pt;}
.ws31{word-spacing:4.037333pt;}
.ws2d{word-spacing:4.069333pt;}
.ws2f{word-spacing:4.448000pt;}
.ws32{word-spacing:4.464000pt;}
.wsc{word-spacing:5.152000pt;}
.wsd{word-spacing:5.205333pt;}
.ws3a{word-spacing:5.738667pt;}
.ws2b{word-spacing:5.845333pt;}
.ws2a{word-spacing:5.898667pt;}
.ws20{word-spacing:7.066667pt;}
.ws21{word-spacing:7.120000pt;}
.ws1f{word-spacing:7.456000pt;}
.ws10{word-spacing:8.501333pt;}
.wse{word-spacing:18.538667pt;}
.wsf{word-spacing:18.698667pt;}
._e{margin-left:-4.689080pt;}
._c{margin-left:-3.767890pt;}
._2{margin-left:-2.814935pt;}
._d{margin-left:-1.922335pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.982827pt;}
._a{width:1.891548pt;}
._5{width:2.980615pt;}
._9{width:4.176189pt;}
._3{width:5.273063pt;}
._b{width:6.945062pt;}
._8{width:7.923757pt;}
._7{width:9.151992pt;}
._11{width:10.253268pt;}
._21{width:12.070400pt;}
._22{width:13.447881pt;}
._4{width:18.794122pt;}
._6{width:20.149100pt;}
._1d{width:21.115163pt;}
._10{width:22.726827pt;}
._19{width:26.790400pt;}
._f{width:27.775147pt;}
._15{width:28.836065pt;}
._14{width:30.008095pt;}
._20{width:32.855040pt;}
._1c{width:42.982400pt;}
._18{width:44.513280pt;}
._23{width:47.987200pt;}
._24{width:49.047040pt;}
._12{width:64.709120pt;}
._13{width:65.933001pt;}
._25{width:68.654080pt;}
._26{width:69.588681pt;}
._1b{width:78.592000pt;}
._1a{width:79.900160pt;}
._16{width:81.843200pt;}
._17{width:83.527881pt;}
._1e{width:128.947200pt;}
._1f{width:130.242560pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.520000pt;}
.y10{bottom:19.360000pt;}
.yf{bottom:19.520000pt;}
.ye{bottom:34.400000pt;}
.yd{bottom:49.440000pt;}
.y39{bottom:52.352000pt;}
.y2{bottom:67.232000pt;}
.y3{bottom:68.352000pt;}
.yc{bottom:68.960000pt;}
.y3a{bottom:69.312000pt;}
.yb{bottom:84.000000pt;}
.ya{bottom:99.040000pt;}
.yd8{bottom:107.872000pt;}
.ycb{bottom:109.312000pt;}
.yc8{bottom:109.792000pt;}
.y6f{bottom:110.272000pt;}
.y38{bottom:112.192000pt;}
.yd7{bottom:124.352000pt;}
.yca{bottom:125.792000pt;}
.yc7{bottom:126.272000pt;}
.y6e{bottom:126.752000pt;}
.y37{bottom:128.192000pt;}
.yd6{bottom:140.826667pt;}
.ya3{bottom:142.266667pt;}
.yc6{bottom:142.746667pt;}
.y6d{bottom:143.386667pt;}
.y36{bottom:144.186667pt;}
.yd5{bottom:157.306667pt;}
.ya2{bottom:158.746667pt;}
.yc5{bottom:159.386667pt;}
.y6c{bottom:159.866667pt;}
.yd4{bottom:173.786667pt;}
.ya1{bottom:175.386667pt;}
.yc4{bottom:175.866667pt;}
.y35{bottom:176.026667pt;}
.y6b{bottom:176.346667pt;}
.yd3{bottom:190.266667pt;}
.ya0{bottom:191.866667pt;}
.y6a{bottom:192.826667pt;}
.yd2{bottom:206.746667pt;}
.yc3{bottom:207.706667pt;}
.y9f{bottom:208.346667pt;}
.y69{bottom:209.306667pt;}
.yd1{bottom:223.386667pt;}
.yc2{bottom:223.706667pt;}
.y9e{bottom:224.826667pt;}
.y34{bottom:225.466667pt;}
.y68{bottom:225.786667pt;}
.yd0{bottom:239.866667pt;}
.y33{bottom:240.506667pt;}
.y9d{bottom:241.306667pt;}
.y67{bottom:242.266667pt;}
.y32{bottom:255.426667pt;}
.yc1{bottom:256.386667pt;}
.y9c{bottom:257.826667pt;}
.y66{bottom:258.786667pt;}
.yc0{bottom:272.866667pt;}
.y9b{bottom:274.306667pt;}
.y65{bottom:275.426667pt;}
.y31{bottom:278.281333pt;}
.ybf{bottom:289.346667pt;}
.y9a{bottom:290.786667pt;}
.y64{bottom:291.906667pt;}
.y30{bottom:293.309333pt;}
.ybe{bottom:305.826667pt;}
.yce{bottom:306.146667pt;}
.y99{bottom:307.426667pt;}
.y2f{bottom:308.337333pt;}
.y63{bottom:308.386667pt;}
.ybd{bottom:322.306667pt;}
.ycd{bottom:322.626667pt;}
.y2e{bottom:323.365333pt;}
.y98{bottom:323.906667pt;}
.y62{bottom:324.866667pt;}
.y2d{bottom:338.393333pt;}
.ybc{bottom:338.786667pt;}
.y97{bottom:340.386667pt;}
.y61{bottom:341.346667pt;}
.y2c{bottom:353.421333pt;}
.ybb{bottom:355.426667pt;}
.y96{bottom:356.866667pt;}
.y60{bottom:357.826667pt;}
.y2b{bottom:368.449333pt;}
.yba{bottom:371.906667pt;}
.ycf{bottom:372.226667pt;}
.y95{bottom:373.346667pt;}
.y5f{bottom:374.306667pt;}
.y2a{bottom:383.477333pt;}
.yb9{bottom:388.386667pt;}
.y94{bottom:389.826667pt;}
.y5e{bottom:390.786667pt;}
.y29{bottom:398.505333pt;}
.yb8{bottom:404.866667pt;}
.y93{bottom:406.306667pt;}
.y5d{bottom:407.426667pt;}
.y28{bottom:413.533333pt;}
.yb7{bottom:421.346667pt;}
.ycc{bottom:421.666667pt;}
.y92{bottom:422.786667pt;}
.y5c{bottom:423.906667pt;}
.y27{bottom:428.561333pt;}
.yb6{bottom:437.826667pt;}
.y91{bottom:439.426667pt;}
.y5b{bottom:440.386667pt;}
.y26{bottom:443.589333pt;}
.yb5{bottom:454.306667pt;}
.yc9{bottom:454.626667pt;}
.y90{bottom:455.906667pt;}
.y5a{bottom:456.866667pt;}
.y25{bottom:458.617333pt;}
.yb4{bottom:470.786667pt;}
.y8f{bottom:472.386667pt;}
.y59{bottom:473.346667pt;}
.y24{bottom:473.645333pt;}
.yb3{bottom:487.426667pt;}
.y23{bottom:488.673333pt;}
.y8e{bottom:488.866667pt;}
.y58{bottom:489.826667pt;}
.y22{bottom:503.197333pt;}
.yb2{bottom:503.933333pt;}
.y8d{bottom:505.373333pt;}
.y57{bottom:506.333333pt;}
.yb1{bottom:520.413333pt;}
.y8c{bottom:521.853333pt;}
.y56{bottom:522.813333pt;}
.y21{bottom:531.997333pt;}
.yb0{bottom:536.893333pt;}
.y8b{bottom:538.333333pt;}
.y55{bottom:539.453333pt;}
.y20{bottom:547.017333pt;}
.yaf{bottom:553.373333pt;}
.y8a{bottom:554.813333pt;}
.y54{bottom:555.933333pt;}
.y1f{bottom:562.037333pt;}
.yae{bottom:569.853333pt;}
.y89{bottom:571.453333pt;}
.y1e{bottom:577.057333pt;}
.yad{bottom:586.333333pt;}
.y53{bottom:587.773333pt;}
.y88{bottom:587.933333pt;}
.y1d{bottom:592.077333pt;}
.yac{bottom:602.813333pt;}
.y87{bottom:604.413333pt;}
.y1c{bottom:607.097333pt;}
.yab{bottom:619.453333pt;}
.y52{bottom:620.413333pt;}
.y86{bottom:620.893333pt;}
.y1b{bottom:622.117333pt;}
.yaa{bottom:635.933333pt;}
.y51{bottom:636.893333pt;}
.y1a{bottom:637.137333pt;}
.y85{bottom:637.373333pt;}
.y19{bottom:652.157333pt;}
.ya9{bottom:652.413333pt;}
.y50{bottom:653.373333pt;}
.y84{bottom:653.853333pt;}
.y18{bottom:667.177333pt;}
.ya8{bottom:668.893333pt;}
.y4f{bottom:669.853333pt;}
.y83{bottom:670.333333pt;}
.y17{bottom:682.197333pt;}
.ya7{bottom:685.373333pt;}
.y4e{bottom:686.333333pt;}
.y82{bottom:686.813333pt;}
.y16{bottom:697.217333pt;}
.ya6{bottom:701.853333pt;}
.y4d{bottom:702.813333pt;}
.y15{bottom:712.237333pt;}
.ya5{bottom:718.333333pt;}
.y81{bottom:718.653333pt;}
.y4c{bottom:719.453333pt;}
.y14{bottom:727.257333pt;}
.ya4{bottom:734.813333pt;}
.y4b{bottom:735.933333pt;}
.y13{bottom:742.277333pt;}
.y80{bottom:751.453333pt;}
.y4a{bottom:752.413333pt;}
.y12{bottom:757.297333pt;}
.y7f{bottom:767.973333pt;}
.y49{bottom:768.933333pt;}
.y11{bottom:771.813333pt;}
.y7e{bottom:784.453333pt;}
.y48{bottom:785.413333pt;}
.y7d{bottom:800.933333pt;}
.y47{bottom:801.893333pt;}
.y9{bottom:809.093333pt;}
.y7c{bottom:817.413333pt;}
.y46{bottom:818.373333pt;}
.y7b{bottom:833.893333pt;}
.y45{bottom:834.853333pt;}
.y7a{bottom:850.373333pt;}
.y44{bottom:851.493333pt;}
.y79{bottom:866.853333pt;}
.y43{bottom:867.973333pt;}
.y78{bottom:883.493333pt;}
.y42{bottom:884.453333pt;}
.y77{bottom:899.973333pt;}
.y41{bottom:900.933333pt;}
.y76{bottom:916.453333pt;}
.y40{bottom:917.413333pt;}
.y75{bottom:932.933333pt;}
.y3f{bottom:933.893333pt;}
.y8{bottom:944.133333pt;}
.y74{bottom:949.413333pt;}
.y3e{bottom:950.373333pt;}
.y7{bottom:962.213333pt;}
.y73{bottom:965.893333pt;}
.y3d{bottom:966.853333pt;}
.y72{bottom:982.373333pt;}
.y3c{bottom:983.493333pt;}
.y6{bottom:996.133333pt;}
.y71{bottom:998.853333pt;}
.y5{bottom:1014.240000pt;}
.y3b{bottom:1015.360000pt;}
.y70{bottom:1015.520000pt;}
.y1{bottom:1063.840000pt;}
.h4{height:14.880000pt;}
.hb{height:15.040000pt;}
.h8{height:36.986875pt;}
.h9{height:40.218750pt;}
.he{height:40.997500pt;}
.h5{height:44.456875pt;}
.h2{height:44.508750pt;}
.hd{height:49.277500pt;}
.hc{height:49.335000pt;}
.h3{height:53.562500pt;}
.h6{height:53.625000pt;}
.ha{height:61.295000pt;}
.h7{height:115.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.800000pt;}
.w6{width:59.680000pt;}
.w7{width:71.360000pt;}
.w3{width:283.066667pt;}
.w4{width:283.266667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x13{left:9.600000pt;}
.x3{left:22.720000pt;}
.x14{left:31.360000pt;}
.xf{left:37.600000pt;}
.xa{left:52.506667pt;}
.x9{left:74.586667pt;}
.x8{left:93.786667pt;}
.x1{left:113.472000pt;}
.x6{left:114.426667pt;}
.x7{left:121.786667pt;}
.x10{left:129.311988pt;}
.x15{left:132.351988pt;}
.x11{left:314.626655pt;}
.x5{left:396.546667pt;}
.xd{left:444.093333pt;}
.xc{left:522.653333pt;}
.xb{left:529.693333pt;}
.xe{left:620.453333pt;}
.x2{left:635.333333pt;}
.x12{left:680.453322pt;}
}




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