
    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_f8de17391443a44397b9724f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_8cbe35e79e42b00bb9feae5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_31692e652159bf8cb05d41f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_4de2acd01aa237b9ae7c56ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_41488fad34921281a40a7a30.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_9f4b844c7113dda66f783603.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e64f6483a64c343612c4f91.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.457800px;}
.ls18{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.357000px;}
.lse{letter-spacing:-0.322800px;}
.ls4{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.282000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.106560px;}
.lsf{letter-spacing:0.178800px;}
.ls13{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.ls2{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.340000px;}
.lsb{letter-spacing:3.029760px;}
.ls17{letter-spacing:3.060000px;}
.ls16{letter-spacing:3.780000px;}
.ls20{letter-spacing:4.500000px;}
.ls1f{letter-spacing:5.940000px;}
.ls22{letter-spacing:8.820000px;}
.ls0{letter-spacing:11.340000px;}
.ls25{letter-spacing:11.610720px;}
.lsc{letter-spacing:19.386720px;}
.ls1e{letter-spacing:20.340000px;}
.ls1{letter-spacing:31.626720px;}
.ls15{letter-spacing:35.226720px;}
.ls24{letter-spacing:41.850720px;}
.ls1b{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-24.300000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.wsc{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.647440px;}
.ws9{word-spacing:-14.613240px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-936.230400px;}
._6{margin-left:-592.908480px;}
._18{margin-left:-15.312480px;}
._1a{margin-left:-11.546640px;}
._19{margin-left:-8.153280px;}
._15{margin-left:-6.006720px;}
._14{margin-left:-4.423440px;}
._11{margin-left:-3.420000px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:3.139920px;}
._f{width:4.374960px;}
._10{width:5.497440px;}
._d{width:6.527520px;}
._c{width:7.529760px;}
._12{width:8.940960px;}
._e{width:10.194480px;}
._7{width:11.491200px;}
._8{width:12.730080px;}
._13{width:13.822320px;}
._a{width:14.898720px;}
._9{width:16.406400px;}
._17{width:18.366960px;}
._16{width:19.541520px;}
._1e{width:20.550480px;}
._1d{width:21.657120px;}
._1b{width:22.684800px;}
._1c{width:23.874720px;}
._24{width:25.647600px;}
._23{width:28.095600px;}
._21{width:31.583520px;}
._22{width:33.489600px;}
._1f{width:60.068880px;}
._20{width:67.240080px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:3.240000px;}
.yce{bottom:10.800000px;}
.ybd{bottom:20.520000px;}
.ycd{bottom:30.600000px;}
.yca{bottom:34.740000px;}
.ycc{bottom:50.400000px;}
.y6{bottom:60.120000px;}
.ycb{bottom:70.194000px;}
.yc9{bottom:84.816000px;}
.y33{bottom:87.156000px;}
.yc4{bottom:88.056000px;}
.y32{bottom:92.376000px;}
.y7a{bottom:104.436000px;}
.y31{bottom:105.696000px;}
.y9d{bottom:107.856000px;}
.y8a{bottom:109.656000px;}
.y79{bottom:121.536000px;}
.yc3{bottom:122.796000px;}
.y78{bottom:126.756000px;}
.y9c{bottom:127.656000px;}
.y77{bottom:138.816000px;}
.y89{bottom:144.036000px;}
.y9b{bottom:147.636000px;}
.y76{bottom:156.090000px;}
.y75{bottom:161.310000px;}
.yc2{bottom:164.910000px;}
.y30{bottom:165.450000px;}
.y9a{bottom:167.430000px;}
.y74{bottom:173.370000px;}
.y73{bottom:178.590000px;}
.y2f{bottom:185.250000px;}
.y99{bottom:187.230000px;}
.y72{bottom:190.650000px;}
.y71{bottom:195.870000px;}
.yc1{bottom:200.190000px;}
.y2e{bottom:205.050000px;}
.y98{bottom:207.030000px;}
.y70{bottom:207.930000px;}
.y6f{bottom:213.150000px;}
.yc0{bottom:218.190000px;}
.y2d{bottom:225.030000px;}
.yb9{bottom:226.290000px;}
.y97{bottom:226.830000px;}
.y6e{bottom:230.250000px;}
.y6d{bottom:242.310000px;}
.y2c{bottom:244.830000px;}
.y96{bottom:246.810000px;}
.y92{bottom:247.530000px;}
.ybf{bottom:253.470000px;}
.yb7{bottom:257.610000px;}
.y6c{bottom:259.590000px;}
.yb8{bottom:262.830000px;}
.y2b{bottom:264.630000px;}
.y6b{bottom:264.810000px;}
.y95{bottom:266.610000px;}
.ybe{bottom:271.470000px;}
.y6a{bottom:276.870000px;}
.yb6{bottom:277.410000px;}
.y88{bottom:282.090000px;}
.y29{bottom:284.430000px;}
.y94{bottom:286.410000px;}
.y2a{bottom:289.650000px;}
.y69{bottom:294.150000px;}
.y91{bottom:295.410000px;}
.yb5{bottom:297.210000px;}
.y68{bottom:299.370000px;}
.y28{bottom:304.230000px;}
.y93{bottom:306.210000px;}
.ybc{bottom:306.750000px;}
.y87{bottom:311.430000px;}
.y67{bottom:312.690000px;}
.yb4{bottom:317.010000px;}
.y27{bottom:324.210000px;}
.y90{bottom:326.010000px;}
.y86{bottom:328.575000px;}
.y85{bottom:333.795000px;}
.yb2{bottom:337.035000px;}
.yba{bottom:342.075000px;}
.yb3{bottom:342.255000px;}
.y26{bottom:344.055000px;}
.y65{bottom:346.035000px;}
.y84{bottom:347.115000px;}
.y66{bottom:351.255000px;}
.yb0{bottom:356.835000px;}
.yb1{bottom:362.055000px;}
.y25{bottom:363.855000px;}
.y64{bottom:365.835000px;}
.yaf{bottom:376.635000px;}
.y24{bottom:383.655000px;}
.y63{bottom:385.635000px;}
.yae{bottom:396.435000px;}
.y23{bottom:403.455000px;}
.y62{bottom:405.435000px;}
.y83{bottom:410.655000px;}
.yad{bottom:416.235000px;}
.y22{bottom:423.435000px;}
.y60{bottom:425.235000px;}
.y61{bottom:430.455000px;}
.yac{bottom:436.215000px;}
.y21{bottom:443.235000px;}
.y5f{bottom:445.215000px;}
.y82{bottom:450.435000px;}
.yab{bottom:456.015000px;}
.y20{bottom:463.035000px;}
.y5e{bottom:465.015000px;}
.yaa{bottom:475.815000px;}
.y1f{bottom:482.835000px;}
.y5d{bottom:484.815000px;}
.ya9{bottom:495.615000px;}
.y1e{bottom:502.635000px;}
.y5c{bottom:504.615000px;}
.ya8{bottom:515.415000px;}
.y1d{bottom:522.615000px;}
.y5a{bottom:524.415000px;}
.y5b{bottom:529.635000px;}
.ya7{bottom:535.395000px;}
.y1c{bottom:542.415000px;}
.y59{bottom:544.395000px;}
.y81{bottom:549.615000px;}
.ya6{bottom:555.195000px;}
.y1b{bottom:562.215000px;}
.y58{bottom:564.195000px;}
.y80{bottom:569.415000px;}
.ya4{bottom:574.995000px;}
.ya5{bottom:580.215000px;}
.y57{bottom:583.995000px;}
.ya3{bottom:594.825000px;}
.y56{bottom:603.825000px;}
.y1a{bottom:604.185000px;}
.y7f{bottom:609.045000px;}
.ya2{bottom:614.625000px;}
.y55{bottom:623.625000px;}
.y19{bottom:632.985000px;}
.ya1{bottom:634.605000px;}
.y54{bottom:643.605000px;}
.y18{bottom:652.785000px;}
.ya0{bottom:654.405000px;}
.y53{bottom:663.405000px;}
.y7e{bottom:668.625000px;}
.y17{bottom:672.765000px;}
.y9f{bottom:674.205000px;}
.y52{bottom:683.205000px;}
.y16{bottom:692.565000px;}
.y51{bottom:703.005000px;}
.y7d{bottom:708.225000px;}
.y15{bottom:712.365000px;}
.y50{bottom:722.805000px;}
.y14{bottom:732.165000px;}
.y4e{bottom:742.785000px;}
.y4f{bottom:748.005000px;}
.y13{bottom:751.965000px;}
.y4d{bottom:762.585000px;}
.y8f{bottom:767.805000px;}
.y12{bottom:771.945000px;}
.y4c{bottom:782.385000px;}
.y11{bottom:791.745000px;}
.y4b{bottom:802.185000px;}
.y8e{bottom:807.405000px;}
.y10{bottom:811.545000px;}
.y4a{bottom:821.985000px;}
.yf{bottom:831.345000px;}
.y49{bottom:841.965000px;}
.y9e{bottom:847.185000px;}
.ye{bottom:851.145000px;}
.y48{bottom:861.765000px;}
.y7c{bottom:867.030000px;}
.yc8{bottom:867.930000px;}
.yd{bottom:873.330000px;}
.y47{bottom:881.610000px;}
.yc{bottom:898.350000px;}
.y46{bottom:901.410000px;}
.yc7{bottom:904.470000px;}
.y8d{bottom:906.630000px;}
.yb{bottom:913.470000px;}
.y45{bottom:921.210000px;}
.ya{bottom:934.890000px;}
.yc6{bottom:941.010000px;}
.y44{bottom:941.190000px;}
.y9{bottom:958.290000px;}
.y43{bottom:960.990000px;}
.y7b{bottom:966.210000px;}
.yc5{bottom:979.170000px;}
.y41{bottom:980.790000px;}
.y42{bottom:986.010000px;}
.y8{bottom:989.970000px;}
.y40{bottom:1000.590000px;}
.y8c{bottom:1005.810000px;}
.y3f{bottom:1020.390000px;}
.y7{bottom:1021.830000px;}
.y8b{bottom:1025.610000px;}
.y3d{bottom:1040.370000px;}
.y3e{bottom:1045.590000px;}
.y5{bottom:1060.170000px;}
.y3c{bottom:1065.390000px;}
.y3b{bottom:1079.970000px;}
.y4{bottom:1090.950000px;}
.y3a{bottom:1099.770000px;}
.y38{bottom:1119.570000px;}
.y3{bottom:1121.730000px;}
.y39{bottom:1124.790000px;}
.y36{bottom:1139.580000px;}
.y37{bottom:1144.800000px;}
.y2{bottom:1152.720000px;}
.y35{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y34{bottom:1193.220000px;}
.h12{height:2.826563px;}
.he{height:17.280000px;}
.h10{height:34.560000px;}
.hf{height:34.596000px;}
.h6{height:38.158594px;}
.hd{height:41.726953px;}
.h7{height:58.621992px;}
.h8{height:58.651172px;}
.h5{height:60.226875px;}
.hc{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:65.010937px;}
.ha{height:65.884219px;}
.h3{height:66.757500px;}
.hb{height:67.824844px;}
.h11{height:84.240000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:194.610000px;}
.w7{width:210.810000px;}
.w5{width:254.775000px;}
.w6{width:270.390000px;}
.w8{width:580.965000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5a{left:7.560000px;}
.x5e{left:45.900000px;}
.x45{left:47.159987px;}
.x1{left:54.179987px;}
.x6{left:58.859987px;}
.x1a{left:63.719987px;}
.x13{left:74.339987px;}
.x2{left:75.599987px;}
.x46{left:77.219987px;}
.x4f{left:78.299987px;}
.x4c{left:81.899987px;}
.x59{left:86.040000px;}
.x27{left:93.599973px;}
.x5c{left:101.375987px;}
.x28{left:103.355987px;}
.x5d{left:108.035987px;}
.x29{left:113.975973px;}
.xb{left:120.275973px;}
.x2a{left:123.695987px;}
.xc{left:125.135987px;}
.x24{left:129.995987px;}
.x47{left:140.975987px;}
.x35{left:143.675973px;}
.x36{left:153.389987px;}
.x31{left:161.489973px;}
.x39{left:169.769973px;}
.x32{left:171.209987px;}
.x3a{left:179.489987px;}
.x5f{left:190.290000px;}
.x54{left:203.249973px;}
.x55{left:212.969987px;}
.x51{left:229.889973px;}
.x52{left:239.609987px;}
.x33{left:242.669973px;}
.x3d{left:248.969973px;}
.x34{left:252.389987px;}
.x4d{left:256.709987px;}
.x3e{left:258.689987px;}
.x5{left:270.029987px;}
.x25{left:281.729973px;}
.x3f{left:282.809973px;}
.x26{left:291.494987px;}
.x40{left:292.574987px;}
.x4e{left:299.414987px;}
.x3b{left:301.754973px;}
.x3c{left:311.474987px;}
.x48{left:324.974973px;}
.x4a{left:330.194973px;}
.x49{left:334.694987px;}
.x4b{left:339.914987px;}
.x50{left:343.874987px;}
.x43{left:354.314973px;}
.x44{left:364.034987px;}
.x11{left:414.074973px;}
.x12{left:418.934987px;}
.x58{left:430.454987px;}
.xf{left:433.154973px;}
.x10{left:438.014987px;}
.x1c{left:463.394973px;}
.x1d{left:473.144987px;}
.x41{left:476.924973px;}
.x22{left:481.064973px;}
.x42{left:486.644987px;}
.x23{left:490.784987px;}
.x7{left:529.664973px;}
.x37{left:532.544973px;}
.x8{left:534.524987px;}
.x5b{left:536.865000px;}
.x38{left:542.264987px;}
.x3{left:543.524973px;}
.x4{left:548.384987px;}
.x9{left:553.604973px;}
.xa{left:558.464987px;}
.x16{left:560.084973px;}
.x17{left:564.944987px;}
.x1b{left:570.164973px;}
.xd{left:578.984973px;}
.xe{left:583.844987px;}
.x2d{left:626.864973px;}
.x2e{left:636.584987px;}
.x56{left:656.924973px;}
.x18{left:661.649973px;}
.x57{left:666.689987px;}
.x19{left:671.369987px;}
.x20{left:691.709973px;}
.x21{left:701.429987px;}
.x53{left:702.509973px;}
.x1e{left:712.049973px;}
.x1f{left:721.769987px;}
.x2b{left:727.169973px;}
.x2c{left:736.889987px;}
.x2f{left:789.089973px;}
.x30{left:798.809987px;}
.x14{left:803.849973px;}
.x15{left:808.709987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls18{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.317333pt;}
.lse{letter-spacing:-0.286933pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.250667pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.094720pt;}
.lsf{letter-spacing:0.158933pt;}
.ls13{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.080000pt;}
.lsb{letter-spacing:2.693120pt;}
.ls17{letter-spacing:2.720000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls20{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:5.280000pt;}
.ls22{letter-spacing:7.840000pt;}
.ls0{letter-spacing:10.080000pt;}
.ls25{letter-spacing:10.320640pt;}
.lsc{letter-spacing:17.232640pt;}
.ls1e{letter-spacing:18.080000pt;}
.ls1{letter-spacing:28.112640pt;}
.ls15{letter-spacing:31.312640pt;}
.ls24{letter-spacing:37.200640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.600000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsb{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.wsa{word-spacing:-13.019947pt;}
.ws9{word-spacing:-12.989547pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-832.204800pt;}
._6{margin-left:-527.029760pt;}
._18{margin-left:-13.611093pt;}
._1a{margin-left:-10.263680pt;}
._19{margin-left:-7.247360pt;}
._15{margin-left:-5.339307pt;}
._14{margin-left:-3.931947pt;}
._11{margin-left:-3.040000pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.791040pt;}
._f{width:3.888853pt;}
._10{width:4.886613pt;}
._d{width:5.802240pt;}
._c{width:6.693120pt;}
._12{width:7.947520pt;}
._e{width:9.061760pt;}
._7{width:10.214400pt;}
._8{width:11.315627pt;}
._13{width:12.286507pt;}
._a{width:13.243307pt;}
._9{width:14.583467pt;}
._17{width:16.326187pt;}
._16{width:17.370240pt;}
._1e{width:18.267093pt;}
._1d{width:19.250773pt;}
._1b{width:20.164267pt;}
._1c{width:21.221973pt;}
._24{width:22.797867pt;}
._23{width:24.973867pt;}
._21{width:28.074240pt;}
._22{width:29.768533pt;}
._1f{width:53.394560pt;}
._20{width:59.768960pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:2.880000pt;}
.yce{bottom:9.600000pt;}
.ybd{bottom:18.240000pt;}
.ycd{bottom:27.200000pt;}
.yca{bottom:30.880000pt;}
.ycc{bottom:44.800000pt;}
.y6{bottom:53.440000pt;}
.ycb{bottom:62.394667pt;}
.yc9{bottom:75.392000pt;}
.y33{bottom:77.472000pt;}
.yc4{bottom:78.272000pt;}
.y32{bottom:82.112000pt;}
.y7a{bottom:92.832000pt;}
.y31{bottom:93.952000pt;}
.y9d{bottom:95.872000pt;}
.y8a{bottom:97.472000pt;}
.y79{bottom:108.032000pt;}
.yc3{bottom:109.152000pt;}
.y78{bottom:112.672000pt;}
.y9c{bottom:113.472000pt;}
.y77{bottom:123.392000pt;}
.y89{bottom:128.032000pt;}
.y9b{bottom:131.232000pt;}
.y76{bottom:138.746667pt;}
.y75{bottom:143.386667pt;}
.yc2{bottom:146.586667pt;}
.y30{bottom:147.066667pt;}
.y9a{bottom:148.826667pt;}
.y74{bottom:154.106667pt;}
.y73{bottom:158.746667pt;}
.y2f{bottom:164.666667pt;}
.y99{bottom:166.426667pt;}
.y72{bottom:169.466667pt;}
.y71{bottom:174.106667pt;}
.yc1{bottom:177.946667pt;}
.y2e{bottom:182.266667pt;}
.y98{bottom:184.026667pt;}
.y70{bottom:184.826667pt;}
.y6f{bottom:189.466667pt;}
.yc0{bottom:193.946667pt;}
.y2d{bottom:200.026667pt;}
.yb9{bottom:201.146667pt;}
.y97{bottom:201.626667pt;}
.y6e{bottom:204.666667pt;}
.y6d{bottom:215.386667pt;}
.y2c{bottom:217.626667pt;}
.y96{bottom:219.386667pt;}
.y92{bottom:220.026667pt;}
.ybf{bottom:225.306667pt;}
.yb7{bottom:228.986667pt;}
.y6c{bottom:230.746667pt;}
.yb8{bottom:233.626667pt;}
.y2b{bottom:235.226667pt;}
.y6b{bottom:235.386667pt;}
.y95{bottom:236.986667pt;}
.ybe{bottom:241.306667pt;}
.y6a{bottom:246.106667pt;}
.yb6{bottom:246.586667pt;}
.y88{bottom:250.746667pt;}
.y29{bottom:252.826667pt;}
.y94{bottom:254.586667pt;}
.y2a{bottom:257.466667pt;}
.y69{bottom:261.466667pt;}
.y91{bottom:262.586667pt;}
.yb5{bottom:264.186667pt;}
.y68{bottom:266.106667pt;}
.y28{bottom:270.426667pt;}
.y93{bottom:272.186667pt;}
.ybc{bottom:272.666667pt;}
.y87{bottom:276.826667pt;}
.y67{bottom:277.946667pt;}
.yb4{bottom:281.786667pt;}
.y27{bottom:288.186667pt;}
.y90{bottom:289.786667pt;}
.y86{bottom:292.066667pt;}
.y85{bottom:296.706667pt;}
.yb2{bottom:299.586667pt;}
.yba{bottom:304.066667pt;}
.yb3{bottom:304.226667pt;}
.y26{bottom:305.826667pt;}
.y65{bottom:307.586667pt;}
.y84{bottom:308.546667pt;}
.y66{bottom:312.226667pt;}
.yb0{bottom:317.186667pt;}
.yb1{bottom:321.826667pt;}
.y25{bottom:323.426667pt;}
.y64{bottom:325.186667pt;}
.yaf{bottom:334.786667pt;}
.y24{bottom:341.026667pt;}
.y63{bottom:342.786667pt;}
.yae{bottom:352.386667pt;}
.y23{bottom:358.626667pt;}
.y62{bottom:360.386667pt;}
.y83{bottom:365.026667pt;}
.yad{bottom:369.986667pt;}
.y22{bottom:376.386667pt;}
.y60{bottom:377.986667pt;}
.y61{bottom:382.626667pt;}
.yac{bottom:387.746667pt;}
.y21{bottom:393.986667pt;}
.y5f{bottom:395.746667pt;}
.y82{bottom:400.386667pt;}
.yab{bottom:405.346667pt;}
.y20{bottom:411.586667pt;}
.y5e{bottom:413.346667pt;}
.yaa{bottom:422.946667pt;}
.y1f{bottom:429.186667pt;}
.y5d{bottom:430.946667pt;}
.ya9{bottom:440.546667pt;}
.y1e{bottom:446.786667pt;}
.y5c{bottom:448.546667pt;}
.ya8{bottom:458.146667pt;}
.y1d{bottom:464.546667pt;}
.y5a{bottom:466.146667pt;}
.y5b{bottom:470.786667pt;}
.ya7{bottom:475.906667pt;}
.y1c{bottom:482.146667pt;}
.y59{bottom:483.906667pt;}
.y81{bottom:488.546667pt;}
.ya6{bottom:493.506667pt;}
.y1b{bottom:499.746667pt;}
.y58{bottom:501.506667pt;}
.y80{bottom:506.146667pt;}
.ya4{bottom:511.106667pt;}
.ya5{bottom:515.746667pt;}
.y57{bottom:519.106667pt;}
.ya3{bottom:528.733333pt;}
.y56{bottom:536.733333pt;}
.y1a{bottom:537.053333pt;}
.y7f{bottom:541.373333pt;}
.ya2{bottom:546.333333pt;}
.y55{bottom:554.333333pt;}
.y19{bottom:562.653333pt;}
.ya1{bottom:564.093333pt;}
.y54{bottom:572.093333pt;}
.y18{bottom:580.253333pt;}
.ya0{bottom:581.693333pt;}
.y53{bottom:589.693333pt;}
.y7e{bottom:594.333333pt;}
.y17{bottom:598.013333pt;}
.y9f{bottom:599.293333pt;}
.y52{bottom:607.293333pt;}
.y16{bottom:615.613333pt;}
.y51{bottom:624.893333pt;}
.y7d{bottom:629.533333pt;}
.y15{bottom:633.213333pt;}
.y50{bottom:642.493333pt;}
.y14{bottom:650.813333pt;}
.y4e{bottom:660.253333pt;}
.y4f{bottom:664.893333pt;}
.y13{bottom:668.413333pt;}
.y4d{bottom:677.853333pt;}
.y8f{bottom:682.493333pt;}
.y12{bottom:686.173333pt;}
.y4c{bottom:695.453333pt;}
.y11{bottom:703.773333pt;}
.y4b{bottom:713.053333pt;}
.y8e{bottom:717.693333pt;}
.y10{bottom:721.373333pt;}
.y4a{bottom:730.653333pt;}
.yf{bottom:738.973333pt;}
.y49{bottom:748.413333pt;}
.y9e{bottom:753.053333pt;}
.ye{bottom:756.573333pt;}
.y48{bottom:766.013333pt;}
.y7c{bottom:770.693333pt;}
.yc8{bottom:771.493333pt;}
.yd{bottom:776.293333pt;}
.y47{bottom:783.653333pt;}
.yc{bottom:798.533333pt;}
.y46{bottom:801.253333pt;}
.yc7{bottom:803.973333pt;}
.y8d{bottom:805.893333pt;}
.yb{bottom:811.973333pt;}
.y45{bottom:818.853333pt;}
.ya{bottom:831.013333pt;}
.yc6{bottom:836.453333pt;}
.y44{bottom:836.613333pt;}
.y9{bottom:851.813333pt;}
.y43{bottom:854.213333pt;}
.y7b{bottom:858.853333pt;}
.yc5{bottom:870.373333pt;}
.y41{bottom:871.813333pt;}
.y42{bottom:876.453333pt;}
.y8{bottom:879.973333pt;}
.y40{bottom:889.413333pt;}
.y8c{bottom:894.053333pt;}
.y3f{bottom:907.013333pt;}
.y7{bottom:908.293333pt;}
.y8b{bottom:911.653333pt;}
.y3d{bottom:924.773333pt;}
.y3e{bottom:929.413333pt;}
.y5{bottom:942.373333pt;}
.y3c{bottom:947.013333pt;}
.y3b{bottom:959.973333pt;}
.y4{bottom:969.733333pt;}
.y3a{bottom:977.573333pt;}
.y38{bottom:995.173333pt;}
.y3{bottom:997.093333pt;}
.y39{bottom:999.813333pt;}
.y36{bottom:1012.960000pt;}
.y37{bottom:1017.600000pt;}
.y2{bottom:1024.640000pt;}
.y35{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y34{bottom:1060.640000pt;}
.h12{height:2.512500pt;}
.he{height:15.360000pt;}
.h10{height:30.720000pt;}
.hf{height:30.752000pt;}
.h6{height:33.918750pt;}
.hd{height:37.090625pt;}
.h7{height:52.108438pt;}
.h8{height:52.134375pt;}
.h5{height:53.535000pt;}
.hc{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:57.787500pt;}
.ha{height:58.563750pt;}
.h3{height:59.340000pt;}
.hb{height:60.288750pt;}
.h11{height:74.880000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:172.986667pt;}
.w7{width:187.386667pt;}
.w5{width:226.466667pt;}
.w6{width:240.346667pt;}
.w8{width:516.413333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:6.720000pt;}
.x5e{left:40.800000pt;}
.x45{left:41.919988pt;}
.x1{left:48.159988pt;}
.x6{left:52.319988pt;}
.x1a{left:56.639988pt;}
.x13{left:66.079988pt;}
.x2{left:67.199988pt;}
.x46{left:68.639988pt;}
.x4f{left:69.599988pt;}
.x4c{left:72.799988pt;}
.x59{left:76.480000pt;}
.x27{left:83.199976pt;}
.x5c{left:90.111988pt;}
.x28{left:91.871988pt;}
.x5d{left:96.031988pt;}
.x29{left:101.311976pt;}
.xb{left:106.911976pt;}
.x2a{left:109.951988pt;}
.xc{left:111.231988pt;}
.x24{left:115.551988pt;}
.x47{left:125.311988pt;}
.x35{left:127.711976pt;}
.x36{left:136.346655pt;}
.x31{left:143.546643pt;}
.x39{left:150.906643pt;}
.x32{left:152.186655pt;}
.x3a{left:159.546655pt;}
.x5f{left:169.146667pt;}
.x54{left:180.666643pt;}
.x55{left:189.306655pt;}
.x51{left:204.346643pt;}
.x52{left:212.986655pt;}
.x33{left:215.706643pt;}
.x3d{left:221.306643pt;}
.x34{left:224.346655pt;}
.x4d{left:228.186655pt;}
.x3e{left:229.946655pt;}
.x5{left:240.026655pt;}
.x25{left:250.426643pt;}
.x3f{left:251.386643pt;}
.x26{left:259.106655pt;}
.x40{left:260.066655pt;}
.x4e{left:266.146655pt;}
.x3b{left:268.226643pt;}
.x3c{left:276.866655pt;}
.x48{left:288.866643pt;}
.x4a{left:293.506643pt;}
.x49{left:297.506655pt;}
.x4b{left:302.146655pt;}
.x50{left:305.666655pt;}
.x43{left:314.946643pt;}
.x44{left:323.586655pt;}
.x11{left:368.066643pt;}
.x12{left:372.386655pt;}
.x58{left:382.626655pt;}
.xf{left:385.026643pt;}
.x10{left:389.346655pt;}
.x1c{left:411.906643pt;}
.x1d{left:420.573322pt;}
.x41{left:423.933310pt;}
.x22{left:427.613310pt;}
.x42{left:432.573322pt;}
.x23{left:436.253322pt;}
.x7{left:470.813310pt;}
.x37{left:473.373310pt;}
.x8{left:475.133322pt;}
.x5b{left:477.213333pt;}
.x38{left:482.013322pt;}
.x3{left:483.133310pt;}
.x4{left:487.453322pt;}
.x9{left:492.093310pt;}
.xa{left:496.413322pt;}
.x16{left:497.853310pt;}
.x17{left:502.173322pt;}
.x1b{left:506.813310pt;}
.xd{left:514.653310pt;}
.xe{left:518.973322pt;}
.x2d{left:557.213310pt;}
.x2e{left:565.853322pt;}
.x56{left:583.933310pt;}
.x18{left:588.133310pt;}
.x57{left:592.613322pt;}
.x19{left:596.773322pt;}
.x20{left:614.853310pt;}
.x21{left:623.493322pt;}
.x53{left:624.453310pt;}
.x1e{left:632.933310pt;}
.x1f{left:641.573322pt;}
.x2b{left:646.373310pt;}
.x2c{left:655.013322pt;}
.x2f{left:701.413310pt;}
.x30{left:710.053322pt;}
.x14{left:714.533310pt;}
.x15{left:718.853322pt;}
}




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