
    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_da54fecf89ee512a73700388.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_587d2a3b9003860101674cd0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924805;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_fef499c5f548175c803cae28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909668;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_bca89d349388b55893537c0c.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v3{vertical-align:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.400000px;}
.v1{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls1{letter-spacing:72.000000px;}
.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:-27.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.750000px;}
.wsa{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.400000px;}
.ws11{word-spacing:-13.800000px;}
.wsf{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.000000px;}
.ws10{word-spacing:-11.100000px;}
.ws5{word-spacing:-10.500000px;}
.wsb{word-spacing:-8.700000px;}
.wsd{word-spacing:-3.000000px;}
.wse{word-spacing:-0.600000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:27.000000px;}
.ws7{word-spacing:57.000000px;}
._2c{margin-left:-1692.660000px;}
._4e{margin-left:-1665.840000px;}
._39{margin-left:-1635.840000px;}
._1f{margin-left:-1604.808000px;}
._43{margin-left:-1539.780000px;}
._21{margin-left:-1489.620000px;}
._16{margin-left:-1408.080000px;}
._4b{margin-left:-1335.240000px;}
._63{margin-left:-1328.760000px;}
._13{margin-left:-1288.380000px;}
._11{margin-left:-1284.900000px;}
._19{margin-left:-1236.120000px;}
._61{margin-left:-1229.520000px;}
._3d{margin-left:-1212.240000px;}
._a{margin-left:-1143.180000px;}
._1d{margin-left:-1118.040000px;}
._1b{margin-left:-1094.880000px;}
._34{margin-left:-1076.520000px;}
._25{margin-left:-1075.020000px;}
._31{margin-left:-1026.048000px;}
._3f{margin-left:-1018.800000px;}
._45{margin-left:-991.620000px;}
._67{margin-left:-928.260000px;}
._47{margin-left:-908.532000px;}
._37{margin-left:-901.920000px;}
._2f{margin-left:-891.900000px;}
._7{margin-left:-13.560000px;}
._4{margin-left:-11.616000px;}
._1{margin-left:-8.580000px;}
._2{margin-left:-6.708000px;}
._6{margin-left:-4.980000px;}
._3{margin-left:-3.888000px;}
._0{margin-left:-2.640000px;}
._5{margin-left:-1.020000px;}
._8{width:1.068000px;}
._9{width:2.082000px;}
._23{width:3.336000px;}
._36{width:12.000000px;}
._3c{width:17.280000px;}
._e{width:42.000000px;}
._f{width:44.640000px;}
._d{width:72.000000px;}
._5e{width:139.068000px;}
._49{width:163.212000px;}
._27{width:229.644000px;}
._5a{width:235.920000px;}
._5b{width:260.604000px;}
._41{width:274.200000px;}
._4d{width:275.352000px;}
._65{width:279.528000px;}
._66{width:282.288000px;}
._50{width:296.388000px;}
._3b{width:313.944000px;}
._c{width:320.476800px;}
._4a{width:329.436000px;}
._24{width:330.876000px;}
._5c{width:335.760000px;}
._42{width:344.424000px;}
._33{width:347.208000px;}
._15{width:354.312000px;}
._2e{width:356.088000px;}
._51{width:357.552000px;}
._10{width:363.504000px;}
._69{width:370.128000px;}
._54{width:371.784000px;}
._5d{width:375.280800px;}
._2a{width:377.736000px;}
._52{width:381.918000px;}
._29{width:387.384000px;}
._58{width:391.560000px;}
._55{width:393.936000px;}
._59{width:398.964000px;}
._57{width:407.472000px;}
._5f{width:417.768000px;}
._28{width:421.584000px;}
._60{width:432.108000px;}
._53{width:433.680000px;}
._56{width:445.488000px;}
._2b{width:452.112000px;}
._18{width:456.588000px;}
._30{width:861.840000px;}
._38{width:872.040000px;}
._48{width:878.640000px;}
._68{width:898.440000px;}
._46{width:961.740000px;}
._40{width:988.440000px;}
._32{width:996.240000px;}
._26{width:1045.140000px;}
._35{width:1046.940000px;}
._1c{width:1065.240000px;}
._1e{width:1088.340000px;}
._b{width:1113.540000px;}
._3e{width:1181.940000px;}
._62{width:1199.940000px;}
._1a{width:1206.540000px;}
._12{width:1255.140000px;}
._14{width:1258.440000px;}
._64{width:1299.540000px;}
._4c{width:1305.240000px;}
._17{width:1378.440000px;}
._22{width:1460.040000px;}
._44{width:1510.140000px;}
._20{width:1575.240000px;}
._3a{width:1606.740000px;}
._4f{width:1636.740000px;}
._2d{width:1663.440000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.800000px;}
.fs8{font-size:42.000000px;}
.fse{font-size:44.400000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:55.200000px;}
.fsa{font-size:57.600000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:132.000000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y22{bottom:59.116500px;}
.y10b{bottom:100.141500px;}
.y7e{bottom:100.441500px;}
.y86{bottom:105.241500px;}
.y21{bottom:105.541500px;}
.y6b{bottom:106.966500px;}
.y10a{bottom:116.041500px;}
.y7d{bottom:117.766500px;}
.y85{bottom:125.941500px;}
.y20{bottom:126.241500px;}
.y6a{bottom:127.666500px;}
.y109{bottom:131.941500px;}
.y7c{bottom:135.091500px;}
.yd9{bottom:136.291500px;}
.y84{bottom:146.641500px;}
.y1f{bottom:146.941500px;}
.y108{bottom:147.841500px;}
.y69{bottom:148.366500px;}
.y7b{bottom:152.416500px;}
.y107{bottom:163.741500px;}
.y83{bottom:167.341500px;}
.y1e{bottom:167.641500px;}
.y44{bottom:168.541500px;}
.y68{bottom:169.066500px;}
.y7a{bottom:169.741500px;}
.y106{bottom:179.641500px;}
.y79{bottom:187.066500px;}
.y82{bottom:188.041500px;}
.y1d{bottom:188.341500px;}
.y43{bottom:192.316500px;}
.y105{bottom:195.541500px;}
.yc0{bottom:198.391500px;}
.ya4{bottom:204.391500px;}
.y81{bottom:208.741500px;}
.y1c{bottom:209.041500px;}
.y67{bottom:210.466500px;}
.y104{bottom:211.441500px;}
.y42{bottom:216.091500px;}
.ya3{bottom:221.716500px;}
.y103{bottom:227.341500px;}
.y80{bottom:229.441500px;}
.y1b{bottom:229.741500px;}
.y66{bottom:231.166500px;}
.ya2{bottom:239.041500px;}
.y41{bottom:239.866500px;}
.y102{bottom:243.241500px;}
.y7f{bottom:250.141500px;}
.y1a{bottom:250.441500px;}
.y65{bottom:251.866500px;}
.ya1{bottom:256.366500px;}
.y101{bottom:259.141500px;}
.ybf{bottom:260.491500px;}
.y78{bottom:270.841500px;}
.y64{bottom:272.566500px;}
.ya0{bottom:273.691500px;}
.y100{bottom:275.041500px;}
.y19{bottom:281.491500px;}
.y40{bottom:287.416500px;}
.yff{bottom:290.941500px;}
.y9f{bottom:291.016500px;}
.y77{bottom:291.541500px;}
.y63{bottom:293.266500px;}
.y18{bottom:302.191500px;}
.yfe{bottom:306.841500px;}
.y9e{bottom:308.341500px;}
.y3f{bottom:311.191500px;}
.y76{bottom:312.241500px;}
.y62{bottom:313.966500px;}
.ybe{bottom:322.591500px;}
.yfd{bottom:322.741500px;}
.y9d{bottom:325.666500px;}
.y17{bottom:325.966500px;}
.y75{bottom:332.941500px;}
.y61{bottom:334.666500px;}
.y3e{bottom:334.966500px;}
.yfc{bottom:338.641500px;}
.y9c{bottom:342.991500px;}
.y74{bottom:353.641500px;}
.yfb{bottom:354.541500px;}
.yd8{bottom:359.941500px;}
.y9b{bottom:360.316500px;}
.yfa{bottom:370.441500px;}
.y16{bottom:372.691500px;}
.y73{bottom:374.341500px;}
.yd7{bottom:375.466500px;}
.y60{bottom:375.766500px;}
.y9a{bottom:377.641500px;}
.y3d{bottom:382.516500px;}
.yba{bottom:384.691500px;}
.yf9{bottom:386.341500px;}
.yd6{bottom:391.366500px;}
.y15{bottom:393.541500px;}
.y99{bottom:394.966500px;}
.y5f{bottom:395.041500px;}
.yf8{bottom:402.241500px;}
.y3c{bottom:406.291500px;}
.yd5{bottom:408.691500px;}
.y98{bottom:412.291500px;}
.y14{bottom:414.391500px;}
.y72{bottom:415.741500px;}
.yf7{bottom:418.141500px;}
.yd4{bottom:426.016500px;}
.y97{bottom:429.616500px;}
.yf6{bottom:434.041500px;}
.y13{bottom:435.241500px;}
.y71{bottom:436.441500px;}
.yd3{bottom:443.341500px;}
.yb0{bottom:446.791500px;}
.y96{bottom:446.941500px;}
.yf5{bottom:449.941500px;}
.y3b{bottom:453.841500px;}
.y12{bottom:456.091500px;}
.y5e{bottom:457.141500px;}
.yd2{bottom:460.666500px;}
.y95{bottom:464.266500px;}
.yf4{bottom:465.841500px;}
.y3a{bottom:477.616500px;}
.y11{bottom:477.766500px;}
.y5d{bottom:477.841500px;}
.yd1{bottom:477.991500px;}
.y94{bottom:481.591500px;}
.yf3{bottom:481.741500px;}
.yd0{bottom:495.316500px;}
.yf2{bottom:497.641500px;}
.y5c{bottom:498.541500px;}
.y93{bottom:498.916500px;}
.y39{bottom:501.391500px;}
.yaf{bottom:508.891500px;}
.ycf{bottom:512.641500px;}
.yf1{bottom:513.541500px;}
.y92{bottom:516.241500px;}
.y5b{bottom:519.241500px;}
.y38{bottom:525.166500px;}
.y10{bottom:525.316500px;}
.yf0{bottom:529.441500px;}
.yce{bottom:529.966500px;}
.y91{bottom:533.566500px;}
.y70{bottom:539.941500px;}
.yef{bottom:545.341500px;}
.ycd{bottom:547.291500px;}
.y37{bottom:548.941500px;}
.yf{bottom:549.091500px;}
.y90{bottom:550.891500px;}
.y5a{bottom:560.641500px;}
.yee{bottom:561.241500px;}
.ycc{bottom:564.616500px;}
.y8f{bottom:568.216500px;}
.yae{bottom:570.991500px;}
.y36{bottom:572.716500px;}
.ye{bottom:572.866500px;}
.yed{bottom:577.141500px;}
.y59{bottom:581.341500px;}
.ycb{bottom:581.941500px;}
.yb9{bottom:585.541500px;}
.yec{bottom:593.041500px;}
.y35{bottom:596.491500px;}
.yd{bottom:596.641500px;}
.yca{bottom:599.266500px;}
.y6f{bottom:602.041500px;}
.yb8{bottom:602.866500px;}
.yeb{bottom:608.941500px;}
.yc9{bottom:616.591500px;}
.yb7{bottom:620.191500px;}
.y6e{bottom:622.741500px;}
.yea{bottom:624.841500px;}
.yad{bottom:633.091500px;}
.yc8{bottom:633.916500px;}
.yb6{bottom:637.516500px;}
.ye9{bottom:640.741500px;}
.y58{bottom:643.441500px;}
.y34{bottom:644.041500px;}
.yc7{bottom:651.241500px;}
.y8e{bottom:653.791500px;}
.yb5{bottom:654.841500px;}
.ye8{bottom:656.641500px;}
.y57{bottom:664.141500px;}
.yc{bottom:665.866500px;}
.y33{bottom:667.816500px;}
.yc6{bottom:668.566500px;}
.yb4{bottom:672.166500px;}
.ye7{bottom:672.541500px;}
.y56{bottom:684.841500px;}
.yc5{bottom:685.891500px;}
.ye6{bottom:688.441500px;}
.yb3{bottom:689.491500px;}
.y32{bottom:691.591500px;}
.yac{bottom:695.191500px;}
.yc4{bottom:703.216500px;}
.ye5{bottom:704.341500px;}
.y55{bottom:705.541500px;}
.yb2{bottom:706.816500px;}
.yb{bottom:712.441500px;}
.y31{bottom:715.366500px;}
.y8d{bottom:715.891500px;}
.ye4{bottom:720.241500px;}
.yc3{bottom:720.541500px;}
.ybd{bottom:724.141500px;}
.y54{bottom:726.241500px;}
.ye3{bottom:736.141500px;}
.yc2{bottom:737.866500px;}
.y30{bottom:739.141500px;}
.yb1{bottom:741.466500px;}
.y53{bottom:746.941500px;}
.ye2{bottom:752.041500px;}
.yc1{bottom:755.191500px;}
.yab{bottom:757.291500px;}
.ybc{bottom:758.791500px;}
.y52{bottom:767.641500px;}
.ye1{bottom:767.941500px;}
.ybb{bottom:776.116500px;}
.y8c{bottom:777.991500px;}
.ye0{bottom:783.841500px;}
.y2f{bottom:786.691500px;}
.y51{bottom:788.341500px;}
.ydf{bottom:799.741500px;}
.y50{bottom:809.041500px;}
.y2e{bottom:810.466500px;}
.ya{bottom:811.666500px;}
.yde{bottom:815.641500px;}
.yaa{bottom:819.391500px;}
.y4f{bottom:829.741500px;}
.ydd{bottom:831.541500px;}
.y9{bottom:837.616500px;}
.y8b{bottom:840.091500px;}
.ydc{bottom:847.441500px;}
.y6d{bottom:850.441500px;}
.y2d{bottom:858.016500px;}
.ydb{bottom:863.341500px;}
.y8{bottom:863.566500px;}
.y4e{bottom:871.141500px;}
.yda{bottom:879.541500px;}
.ya9{bottom:881.491500px;}
.y2c{bottom:881.791500px;}
.y4d{bottom:891.841500px;}
.y8a{bottom:902.191500px;}
.y2b{bottom:905.566500px;}
.y7{bottom:906.091500px;}
.y4c{bottom:912.541500px;}
.y4b{bottom:933.241500px;}
.ya8{bottom:943.591500px;}
.y2a{bottom:953.116500px;}
.y6{bottom:953.941500px;}
.y89{bottom:964.291500px;}
.y4a{bottom:974.641500px;}
.y29{bottom:976.891500px;}
.y49{bottom:995.341500px;}
.y28{bottom:1000.666500px;}
.y5{bottom:1003.966500px;}
.ya7{bottom:1005.691500px;}
.y48{bottom:1016.041500px;}
.y27{bottom:1024.441500px;}
.y88{bottom:1026.391500px;}
.y47{bottom:1036.741500px;}
.y26{bottom:1048.216500px;}
.y4{bottom:1057.441500px;}
.ya6{bottom:1067.791500px;}
.y25{bottom:1071.991500px;}
.y46{bottom:1078.141500px;}
.y87{bottom:1088.491500px;}
.y3{bottom:1095.616500px;}
.y45{bottom:1098.841500px;}
.y24{bottom:1119.541500px;}
.ya5{bottom:1129.891500px;}
.y6c{bottom:1140.241500px;}
.y2{bottom:1146.916500px;}
.y23{bottom:1160.941500px;}
.he{height:39.102539px;}
.hf{height:39.971484px;}
.h8{height:43.447266px;}
.ha{height:45.619629px;}
.hb{height:47.791992px;}
.hd{height:48.599414px;}
.h9{height:50.695312px;}
.h5{height:52.136719px;}
.hc{height:58.613086px;}
.h4{height:78.205078px;}
.h3{height:95.583984px;}
.h7{height:104.273438px;}
.h6{height:121.652344px;}
.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:127.725000px;}
.x11{left:139.950000px;}
.xf{left:153.225000px;}
.xd{left:170.250000px;}
.x5{left:178.200000px;}
.xc{left:191.475000px;}
.xe{left:196.200000px;}
.x3{left:237.675000px;}
.x7{left:257.925000px;}
.x12{left:266.100000px;}
.x6{left:287.850000px;}
.x9{left:324.075000px;}
.x4{left:347.175000px;}
.x8{left:366.825000px;}
.x10{left:369.075000px;}
.xa{left:422.325000px;}
.x2{left:450.450000px;}
.x13{left:458.925000px;}
.xb{left:463.425000px;}
@media print{
.v3{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.800000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1{letter-spacing:64.000000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws2{word-spacing:-14.000000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.800000pt;}
.ws11{word-spacing:-12.266667pt;}
.wsf{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws10{word-spacing:-9.866667pt;}
.ws5{word-spacing:-9.333333pt;}
.wsb{word-spacing:-7.733333pt;}
.wsd{word-spacing:-2.666667pt;}
.wse{word-spacing:-0.533333pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:24.000000pt;}
.ws7{word-spacing:50.666667pt;}
._2c{margin-left:-1504.586667pt;}
._4e{margin-left:-1480.746667pt;}
._39{margin-left:-1454.080000pt;}
._1f{margin-left:-1426.496000pt;}
._43{margin-left:-1368.693333pt;}
._21{margin-left:-1324.106667pt;}
._16{margin-left:-1251.626667pt;}
._4b{margin-left:-1186.880000pt;}
._63{margin-left:-1181.120000pt;}
._13{margin-left:-1145.226667pt;}
._11{margin-left:-1142.133333pt;}
._19{margin-left:-1098.773333pt;}
._61{margin-left:-1092.906667pt;}
._3d{margin-left:-1077.546667pt;}
._a{margin-left:-1016.160000pt;}
._1d{margin-left:-993.813333pt;}
._1b{margin-left:-973.226667pt;}
._34{margin-left:-956.906667pt;}
._25{margin-left:-955.573333pt;}
._31{margin-left:-912.042667pt;}
._3f{margin-left:-905.600000pt;}
._45{margin-left:-881.440000pt;}
._67{margin-left:-825.120000pt;}
._47{margin-left:-807.584000pt;}
._37{margin-left:-801.706667pt;}
._2f{margin-left:-792.800000pt;}
._7{margin-left:-12.053333pt;}
._4{margin-left:-10.325333pt;}
._1{margin-left:-7.626667pt;}
._2{margin-left:-5.962667pt;}
._6{margin-left:-4.426667pt;}
._3{margin-left:-3.456000pt;}
._0{margin-left:-2.346667pt;}
._5{margin-left:-0.906667pt;}
._8{width:0.949333pt;}
._9{width:1.850667pt;}
._23{width:2.965333pt;}
._36{width:10.666667pt;}
._3c{width:15.360000pt;}
._e{width:37.333333pt;}
._f{width:39.680000pt;}
._d{width:64.000000pt;}
._5e{width:123.616000pt;}
._49{width:145.077333pt;}
._27{width:204.128000pt;}
._5a{width:209.706667pt;}
._5b{width:231.648000pt;}
._41{width:243.733333pt;}
._4d{width:244.757333pt;}
._65{width:248.469333pt;}
._66{width:250.922667pt;}
._50{width:263.456000pt;}
._3b{width:279.061333pt;}
._c{width:284.868267pt;}
._4a{width:292.832000pt;}
._24{width:294.112000pt;}
._5c{width:298.453333pt;}
._42{width:306.154667pt;}
._33{width:308.629333pt;}
._15{width:314.944000pt;}
._2e{width:316.522667pt;}
._51{width:317.824000pt;}
._10{width:323.114667pt;}
._69{width:329.002667pt;}
._54{width:330.474667pt;}
._5d{width:333.582933pt;}
._2a{width:335.765333pt;}
._52{width:339.482667pt;}
._29{width:344.341333pt;}
._58{width:348.053333pt;}
._55{width:350.165333pt;}
._59{width:354.634667pt;}
._57{width:362.197333pt;}
._5f{width:371.349333pt;}
._28{width:374.741333pt;}
._60{width:384.096000pt;}
._53{width:385.493333pt;}
._56{width:395.989333pt;}
._2b{width:401.877333pt;}
._18{width:405.856000pt;}
._30{width:766.080000pt;}
._38{width:775.146667pt;}
._48{width:781.013333pt;}
._68{width:798.613333pt;}
._46{width:854.880000pt;}
._40{width:878.613333pt;}
._32{width:885.546667pt;}
._26{width:929.013333pt;}
._35{width:930.613333pt;}
._1c{width:946.880000pt;}
._1e{width:967.413333pt;}
._b{width:989.813333pt;}
._3e{width:1050.613333pt;}
._62{width:1066.613333pt;}
._1a{width:1072.480000pt;}
._12{width:1115.680000pt;}
._14{width:1118.613333pt;}
._64{width:1155.146667pt;}
._4c{width:1160.213333pt;}
._17{width:1225.280000pt;}
._22{width:1297.813333pt;}
._44{width:1342.346667pt;}
._20{width:1400.213333pt;}
._3a{width:1428.213333pt;}
._4f{width:1454.880000pt;}
._2d{width:1478.613333pt;}
.fsb{font-size:30.933333pt;}
.fs8{font-size:37.333333pt;}
.fse{font-size:39.466667pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:49.066667pt;}
.fsa{font-size:51.200000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:117.333333pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y22{bottom:52.548000pt;}
.y10b{bottom:89.014667pt;}
.y7e{bottom:89.281333pt;}
.y86{bottom:93.548000pt;}
.y21{bottom:93.814667pt;}
.y6b{bottom:95.081333pt;}
.y10a{bottom:103.148000pt;}
.y7d{bottom:104.681333pt;}
.y85{bottom:111.948000pt;}
.y20{bottom:112.214667pt;}
.y6a{bottom:113.481333pt;}
.y109{bottom:117.281333pt;}
.y7c{bottom:120.081333pt;}
.yd9{bottom:121.148000pt;}
.y84{bottom:130.348000pt;}
.y1f{bottom:130.614667pt;}
.y108{bottom:131.414667pt;}
.y69{bottom:131.881333pt;}
.y7b{bottom:135.481333pt;}
.y107{bottom:145.548000pt;}
.y83{bottom:148.748000pt;}
.y1e{bottom:149.014667pt;}
.y44{bottom:149.814667pt;}
.y68{bottom:150.281333pt;}
.y7a{bottom:150.881333pt;}
.y106{bottom:159.681333pt;}
.y79{bottom:166.281333pt;}
.y82{bottom:167.148000pt;}
.y1d{bottom:167.414667pt;}
.y43{bottom:170.948000pt;}
.y105{bottom:173.814667pt;}
.yc0{bottom:176.348000pt;}
.ya4{bottom:181.681333pt;}
.y81{bottom:185.548000pt;}
.y1c{bottom:185.814667pt;}
.y67{bottom:187.081333pt;}
.y104{bottom:187.948000pt;}
.y42{bottom:192.081333pt;}
.ya3{bottom:197.081333pt;}
.y103{bottom:202.081333pt;}
.y80{bottom:203.948000pt;}
.y1b{bottom:204.214667pt;}
.y66{bottom:205.481333pt;}
.ya2{bottom:212.481333pt;}
.y41{bottom:213.214667pt;}
.y102{bottom:216.214667pt;}
.y7f{bottom:222.348000pt;}
.y1a{bottom:222.614667pt;}
.y65{bottom:223.881333pt;}
.ya1{bottom:227.881333pt;}
.y101{bottom:230.348000pt;}
.ybf{bottom:231.548000pt;}
.y78{bottom:240.748000pt;}
.y64{bottom:242.281333pt;}
.ya0{bottom:243.281333pt;}
.y100{bottom:244.481333pt;}
.y19{bottom:250.214667pt;}
.y40{bottom:255.481333pt;}
.yff{bottom:258.614667pt;}
.y9f{bottom:258.681333pt;}
.y77{bottom:259.148000pt;}
.y63{bottom:260.681333pt;}
.y18{bottom:268.614667pt;}
.yfe{bottom:272.748000pt;}
.y9e{bottom:274.081333pt;}
.y3f{bottom:276.614667pt;}
.y76{bottom:277.548000pt;}
.y62{bottom:279.081333pt;}
.ybe{bottom:286.748000pt;}
.yfd{bottom:286.881333pt;}
.y9d{bottom:289.481333pt;}
.y17{bottom:289.748000pt;}
.y75{bottom:295.948000pt;}
.y61{bottom:297.481333pt;}
.y3e{bottom:297.748000pt;}
.yfc{bottom:301.014667pt;}
.y9c{bottom:304.881333pt;}
.y74{bottom:314.348000pt;}
.yfb{bottom:315.148000pt;}
.yd8{bottom:319.948000pt;}
.y9b{bottom:320.281333pt;}
.yfa{bottom:329.281333pt;}
.y16{bottom:331.281333pt;}
.y73{bottom:332.748000pt;}
.yd7{bottom:333.748000pt;}
.y60{bottom:334.014667pt;}
.y9a{bottom:335.681333pt;}
.y3d{bottom:340.014667pt;}
.yba{bottom:341.948000pt;}
.yf9{bottom:343.414667pt;}
.yd6{bottom:347.881333pt;}
.y15{bottom:349.814667pt;}
.y99{bottom:351.081333pt;}
.y5f{bottom:351.148000pt;}
.yf8{bottom:357.548000pt;}
.y3c{bottom:361.148000pt;}
.yd5{bottom:363.281333pt;}
.y98{bottom:366.481333pt;}
.y14{bottom:368.348000pt;}
.y72{bottom:369.548000pt;}
.yf7{bottom:371.681333pt;}
.yd4{bottom:378.681333pt;}
.y97{bottom:381.881333pt;}
.yf6{bottom:385.814667pt;}
.y13{bottom:386.881333pt;}
.y71{bottom:387.948000pt;}
.yd3{bottom:394.081333pt;}
.yb0{bottom:397.148000pt;}
.y96{bottom:397.281333pt;}
.yf5{bottom:399.948000pt;}
.y3b{bottom:403.414667pt;}
.y12{bottom:405.414667pt;}
.y5e{bottom:406.348000pt;}
.yd2{bottom:409.481333pt;}
.y95{bottom:412.681333pt;}
.yf4{bottom:414.081333pt;}
.y3a{bottom:424.548000pt;}
.y11{bottom:424.681333pt;}
.y5d{bottom:424.748000pt;}
.yd1{bottom:424.881333pt;}
.y94{bottom:428.081333pt;}
.yf3{bottom:428.214667pt;}
.yd0{bottom:440.281333pt;}
.yf2{bottom:442.348000pt;}
.y5c{bottom:443.148000pt;}
.y93{bottom:443.481333pt;}
.y39{bottom:445.681333pt;}
.yaf{bottom:452.348000pt;}
.ycf{bottom:455.681333pt;}
.yf1{bottom:456.481333pt;}
.y92{bottom:458.881333pt;}
.y5b{bottom:461.548000pt;}
.y38{bottom:466.814667pt;}
.y10{bottom:466.948000pt;}
.yf0{bottom:470.614667pt;}
.yce{bottom:471.081333pt;}
.y91{bottom:474.281333pt;}
.y70{bottom:479.948000pt;}
.yef{bottom:484.748000pt;}
.ycd{bottom:486.481333pt;}
.y37{bottom:487.948000pt;}
.yf{bottom:488.081333pt;}
.y90{bottom:489.681333pt;}
.y5a{bottom:498.348000pt;}
.yee{bottom:498.881333pt;}
.ycc{bottom:501.881333pt;}
.y8f{bottom:505.081333pt;}
.yae{bottom:507.548000pt;}
.y36{bottom:509.081333pt;}
.ye{bottom:509.214667pt;}
.yed{bottom:513.014667pt;}
.y59{bottom:516.748000pt;}
.ycb{bottom:517.281333pt;}
.yb9{bottom:520.481333pt;}
.yec{bottom:527.148000pt;}
.y35{bottom:530.214667pt;}
.yd{bottom:530.348000pt;}
.yca{bottom:532.681333pt;}
.y6f{bottom:535.148000pt;}
.yb8{bottom:535.881333pt;}
.yeb{bottom:541.281333pt;}
.yc9{bottom:548.081333pt;}
.yb7{bottom:551.281333pt;}
.y6e{bottom:553.548000pt;}
.yea{bottom:555.414667pt;}
.yad{bottom:562.748000pt;}
.yc8{bottom:563.481333pt;}
.yb6{bottom:566.681333pt;}
.ye9{bottom:569.548000pt;}
.y58{bottom:571.948000pt;}
.y34{bottom:572.481333pt;}
.yc7{bottom:578.881333pt;}
.y8e{bottom:581.148000pt;}
.yb5{bottom:582.081333pt;}
.ye8{bottom:583.681333pt;}
.y57{bottom:590.348000pt;}
.yc{bottom:591.881333pt;}
.y33{bottom:593.614667pt;}
.yc6{bottom:594.281333pt;}
.yb4{bottom:597.481333pt;}
.ye7{bottom:597.814667pt;}
.y56{bottom:608.748000pt;}
.yc5{bottom:609.681333pt;}
.ye6{bottom:611.948000pt;}
.yb3{bottom:612.881333pt;}
.y32{bottom:614.748000pt;}
.yac{bottom:617.948000pt;}
.yc4{bottom:625.081333pt;}
.ye5{bottom:626.081333pt;}
.y55{bottom:627.148000pt;}
.yb2{bottom:628.281333pt;}
.yb{bottom:633.281333pt;}
.y31{bottom:635.881333pt;}
.y8d{bottom:636.348000pt;}
.ye4{bottom:640.214667pt;}
.yc3{bottom:640.481333pt;}
.ybd{bottom:643.681333pt;}
.y54{bottom:645.548000pt;}
.ye3{bottom:654.348000pt;}
.yc2{bottom:655.881333pt;}
.y30{bottom:657.014667pt;}
.yb1{bottom:659.081333pt;}
.y53{bottom:663.948000pt;}
.ye2{bottom:668.481333pt;}
.yc1{bottom:671.281333pt;}
.yab{bottom:673.148000pt;}
.ybc{bottom:674.481333pt;}
.y52{bottom:682.348000pt;}
.ye1{bottom:682.614667pt;}
.ybb{bottom:689.881333pt;}
.y8c{bottom:691.548000pt;}
.ye0{bottom:696.748000pt;}
.y2f{bottom:699.281333pt;}
.y51{bottom:700.748000pt;}
.ydf{bottom:710.881333pt;}
.y50{bottom:719.148000pt;}
.y2e{bottom:720.414667pt;}
.ya{bottom:721.481333pt;}
.yde{bottom:725.014667pt;}
.yaa{bottom:728.348000pt;}
.y4f{bottom:737.548000pt;}
.ydd{bottom:739.148000pt;}
.y9{bottom:744.548000pt;}
.y8b{bottom:746.748000pt;}
.ydc{bottom:753.281333pt;}
.y6d{bottom:755.948000pt;}
.y2d{bottom:762.681333pt;}
.ydb{bottom:767.414667pt;}
.y8{bottom:767.614667pt;}
.y4e{bottom:774.348000pt;}
.yda{bottom:781.814667pt;}
.ya9{bottom:783.548000pt;}
.y2c{bottom:783.814667pt;}
.y4d{bottom:792.748000pt;}
.y8a{bottom:801.948000pt;}
.y2b{bottom:804.948000pt;}
.y7{bottom:805.414667pt;}
.y4c{bottom:811.148000pt;}
.y4b{bottom:829.548000pt;}
.ya8{bottom:838.748000pt;}
.y2a{bottom:847.214667pt;}
.y6{bottom:847.948000pt;}
.y89{bottom:857.148000pt;}
.y4a{bottom:866.348000pt;}
.y29{bottom:868.348000pt;}
.y49{bottom:884.748000pt;}
.y28{bottom:889.481333pt;}
.y5{bottom:892.414667pt;}
.ya7{bottom:893.948000pt;}
.y48{bottom:903.148000pt;}
.y27{bottom:910.614667pt;}
.y88{bottom:912.348000pt;}
.y47{bottom:921.548000pt;}
.y26{bottom:931.748000pt;}
.y4{bottom:939.948000pt;}
.ya6{bottom:949.148000pt;}
.y25{bottom:952.881333pt;}
.y46{bottom:958.348000pt;}
.y87{bottom:967.548000pt;}
.y3{bottom:973.881333pt;}
.y45{bottom:976.748000pt;}
.y24{bottom:995.148000pt;}
.ya5{bottom:1004.348000pt;}
.y6c{bottom:1013.548000pt;}
.y2{bottom:1019.481333pt;}
.y23{bottom:1031.948000pt;}
.he{height:34.757812pt;}
.hf{height:35.530208pt;}
.h8{height:38.619792pt;}
.ha{height:40.550781pt;}
.hb{height:42.481771pt;}
.hd{height:43.199479pt;}
.h9{height:45.062500pt;}
.h5{height:46.343750pt;}
.hc{height:52.100521pt;}
.h4{height:69.515625pt;}
.h3{height:84.963542pt;}
.h7{height:92.687500pt;}
.h6{height:108.135417pt;}
.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:113.533333pt;}
.x11{left:124.400000pt;}
.xf{left:136.200000pt;}
.xd{left:151.333333pt;}
.x5{left:158.400000pt;}
.xc{left:170.200000pt;}
.xe{left:174.400000pt;}
.x3{left:211.266667pt;}
.x7{left:229.266667pt;}
.x12{left:236.533333pt;}
.x6{left:255.866667pt;}
.x9{left:288.066667pt;}
.x4{left:308.600000pt;}
.x8{left:326.066667pt;}
.x10{left:328.066667pt;}
.xa{left:375.400000pt;}
.x2{left:400.400000pt;}
.x13{left:407.933333pt;}
.xb{left:411.933333pt;}
}




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