
    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_23395042de4eeea1b2f824cc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_c81f027c291456ea122600fc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_1e3c6549274c0d0a9cc33d93.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_547ef059f445424008efe7c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_cea015f7d79d40560abd2ea7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_256185bcb0299d2fe816d82d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_bfb4f4f43d4e245fcd8a1eb3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_7fd68e8a7a751a2a6551f3d7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.ls10{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.081520px;}
.ls4{letter-spacing:2.801520px;}
.ls6{letter-spacing:2.921520px;}
.lse{letter-spacing:5.040000px;}
.lsf{letter-spacing:5.760000px;}
.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;}
}
.wsd{word-spacing:-72.216000px;}
.wsf{word-spacing:-72.072000px;}
.wsc{word-spacing:-72.000000px;}
.wse{word-spacing:-71.640000px;}
.wsa{word-spacing:-56.484000px;}
.ws7{word-spacing:-55.944000px;}
.ws8{word-spacing:-55.764000px;}
.wsb{word-spacing:-54.576000px;}
.ws5{word-spacing:-52.368000px;}
.ws6{word-spacing:-52.344000px;}
.ws9{word-spacing:-50.040000px;}
.ws11{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-6.936000px;}
._c{margin-left:-4.548000px;}
._b{margin-left:-3.312000px;}
._2{margin-left:-2.304000px;}
._1{margin-left:-1.152000px;}
._0{width:1.080000px;}
._f{width:2.232000px;}
._13{width:3.816000px;}
._16{width:5.112000px;}
._15{width:6.480000px;}
._12{width:7.920000px;}
._a{width:9.072000px;}
._9{width:10.584000px;}
._17{width:12.024000px;}
._d{width:13.032000px;}
._14{width:14.520000px;}
._4{width:15.696000px;}
._3{width:16.776000px;}
._21{width:17.868000px;}
._e{width:19.368000px;}
._7{width:21.096000px;}
._8{width:22.596000px;}
._1b{width:23.976000px;}
._5{width:24.984000px;}
._6{width:26.136000px;}
._1a{width:27.216000px;}
._19{width:28.656000px;}
._1e{width:29.736000px;}
._1c{width:31.680000px;}
._1d{width:33.048000px;}
._25{width:34.344000px;}
._26{width:35.352000px;}
._29{width:36.576000px;}
._2a{width:37.764000px;}
._30{width:38.916000px;}
._27{width:40.104000px;}
._28{width:41.112000px;}
._33{width:42.120000px;}
._18{width:44.352000px;}
._10{width:45.648000px;}
._11{width:46.800000px;}
._22{width:58.392000px;}
._34{width:78.984000px;}
._1f{width:113.484000px;}
._24{width:116.556000px;}
._35{width:118.092000px;}
._31{width:127.512000px;}
._32{width:128.772000px;}
._2e{width:166.788000px;}
._2f{width:167.832000px;}
._2b{width:179.280000px;}
._20{width:198.180000px;}
._2c{width:285.624000px;}
._2d{width:286.716000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:7.020000px;}
.y79{bottom:7.200000px;}
.y7c{bottom:10.440000px;}
.y7f{bottom:10.485000px;}
.y9a{bottom:25.734000px;}
.y94{bottom:25.740000px;}
.y98{bottom:25.920000px;}
.y76{bottom:30.960000px;}
.y7b{bottom:34.200000px;}
.y7e{bottom:34.245000px;}
.y81{bottom:34.380000px;}
.y2{bottom:46.800000px;}
.y77{bottom:54.720000px;}
.y1{bottom:66.960000px;}
.y9b{bottom:96.696000px;}
.y4f{bottom:99.756000px;}
.y104{bottom:100.656000px;}
.y73{bottom:103.716000px;}
.y92{bottom:116.496000px;}
.y2a{bottom:123.516000px;}
.y103{bottom:124.596000px;}
.y5a{bottom:125.316000px;}
.y4e{bottom:130.716000px;}
.y72{bottom:134.676000px;}
.y99{bottom:139.176000px;}
.ydc{bottom:141.156000px;}
.y91{bottom:147.636000px;}
.yb6{bottom:147.816000px;}
.y102{bottom:148.356000px;}
.y29{bottom:154.470000px;}
.y59{bottom:156.630000px;}
.y4d{bottom:161.850000px;}
.ydb{bottom:164.910000px;}
.y71{bottom:165.810000px;}
.y101{bottom:172.110000px;}
.y90{bottom:178.590000px;}
.yb5{bottom:178.950000px;}
.y97{bottom:181.650000px;}
.y28{bottom:185.610000px;}
.y58{bottom:188.130000px;}
.yda{bottom:188.670000px;}
.y4c{bottom:192.810000px;}
.y100{bottom:195.870000px;}
.y70{bottom:196.770000px;}
.y8f{bottom:209.730000px;}
.yb4{bottom:209.910000px;}
.yd9{bottom:212.430000px;}
.y27{bottom:216.570000px;}
.y57{bottom:219.810000px;}
.y4b{bottom:223.950000px;}
.y96{bottom:224.310000px;}
.y6f{bottom:227.910000px;}
.yd8{bottom:236.370000px;}
.y8e{bottom:240.690000px;}
.yb3{bottom:241.050000px;}
.yff{bottom:243.570000px;}
.y26{bottom:247.710000px;}
.y56{bottom:251.490000px;}
.y4a{bottom:254.910000px;}
.y8d{bottom:258.150000px;}
.y6e{bottom:258.870000px;}
.yd7{bottom:260.130000px;}
.y95{bottom:266.790000px;}
.yfe{bottom:267.330000px;}
.yb2{bottom:272.010000px;}
.y25{bottom:278.670000px;}
.y55{bottom:282.990000px;}
.yd6{bottom:283.890000px;}
.y49{bottom:286.050000px;}
.y6d{bottom:290.010000px;}
.yfd{bottom:291.090000px;}
.y24{bottom:302.430000px;}
.yb1{bottom:303.150000px;}
.yd5{bottom:307.650000px;}
.y8c{bottom:309.270000px;}
.y54{bottom:314.310000px;}
.yfc{bottom:315.030000px;}
.y48{bottom:317.010000px;}
.y6c{bottom:320.970000px;}
.y23{bottom:326.370000px;}
.yd4{bottom:331.410000px;}
.yb0{bottom:334.110000px;}
.yfb{bottom:338.835000px;}
.y53{bottom:345.855000px;}
.y47{bottom:348.015000px;}
.y22{bottom:350.175000px;}
.y6b{bottom:352.155000px;}
.y93{bottom:352.695000px;}
.yd3{bottom:355.395000px;}
.y8b{bottom:360.255000px;}
.yfa{bottom:362.595000px;}
.yaf{bottom:365.295000px;}
.y21{bottom:373.935000px;}
.y52{bottom:377.535000px;}
.y46{bottom:379.155000px;}
.y6a{bottom:383.115000px;}
.yf9{bottom:386.355000px;}
.yae{bottom:396.255000px;}
.y20{bottom:397.695000px;}
.yd2{bottom:402.915000px;}
.y51{bottom:409.215000px;}
.y45{bottom:410.115000px;}
.y8a{bottom:411.195000px;}
.y69{bottom:414.255000px;}
.y1f{bottom:421.635000px;}
.yd1{bottom:426.675000px;}
.yad{bottom:427.395000px;}
.yf8{bottom:434.055000px;}
.y50{bottom:440.895000px;}
.y44{bottom:441.255000px;}
.y68{bottom:445.215000px;}
.y1e{bottom:445.395000px;}
.yd0{bottom:450.615000px;}
.yf7{bottom:457.815000px;}
.yac{bottom:458.355000px;}
.y89{bottom:462.315000px;}
.y1d{bottom:469.155000px;}
.y43{bottom:472.215000px;}
.ycf{bottom:474.375000px;}
.y67{bottom:476.355000px;}
.yf6{bottom:481.575000px;}
.yab{bottom:489.495000px;}
.y1c{bottom:492.915000px;}
.yce{bottom:498.135000px;}
.y42{bottom:503.355000px;}
.yf5{bottom:505.335000px;}
.y66{bottom:507.315000px;}
.y88{bottom:513.255000px;}
.y1b{bottom:516.675000px;}
.yaa{bottom:520.455000px;}
.ycd{bottom:521.895000px;}
.yf4{bottom:529.275000px;}
.y41{bottom:534.315000px;}
.y65{bottom:538.455000px;}
.y1a{bottom:540.615000px;}
.ycc{bottom:545.835000px;}
.ya9{bottom:551.595000px;}
.yf3{bottom:553.035000px;}
.y19{bottom:564.375000px;}
.y87{bottom:565.095000px;}
.y40{bottom:565.455000px;}
.y64{bottom:569.415000px;}
.ycb{bottom:569.595000px;}
.yf2{bottom:576.795000px;}
.ya8{bottom:582.555000px;}
.y18{bottom:588.135000px;}
.yca{bottom:593.355000px;}
.y3f{bottom:596.415000px;}
.y63{bottom:600.555000px;}
.y17{bottom:611.925000px;}
.ya7{bottom:613.725000px;}
.yc9{bottom:617.145000px;}
.yf1{bottom:624.525000px;}
.y3e{bottom:627.585000px;}
.y86{bottom:631.185000px;}
.y62{bottom:631.545000px;}
.y16{bottom:635.865000px;}
.yc8{bottom:641.085000px;}
.ya6{bottom:644.685000px;}
.yf0{bottom:648.285000px;}
.y3d{bottom:658.545000px;}
.y15{bottom:659.625000px;}
.y85{bottom:662.145000px;}
.y61{bottom:662.685000px;}
.yc7{bottom:664.845000px;}
.yef{bottom:672.045000px;}
.yc6{bottom:688.605000px;}
.y3c{bottom:689.685000px;}
.y14{bottom:690.585000px;}
.y84{bottom:693.285000px;}
.y60{bottom:693.645000px;}
.yee{bottom:695.805000px;}
.ya5{bottom:704.625000px;}
.y83{bottom:710.745000px;}
.yc5{bottom:712.365000px;}
.yed{bottom:719.745000px;}
.y3b{bottom:720.645000px;}
.y13{bottom:721.725000px;}
.y5f{bottom:724.785000px;}
.yc4{bottom:736.305000px;}
.yec{bottom:743.505000px;}
.ya4{bottom:747.285000px;}
.y3a{bottom:751.785000px;}
.y12{bottom:752.685000px;}
.y5e{bottom:755.745000px;}
.yc3{bottom:760.065000px;}
.y82{bottom:761.685000px;}
.yeb{bottom:767.265000px;}
.y39{bottom:782.745000px;}
.y11{bottom:783.825000px;}
.y5d{bottom:786.885000px;}
.ya3{bottom:789.765000px;}
.yea{bottom:791.025000px;}
.yc2{bottom:807.585000px;}
.y80{bottom:812.625000px;}
.y38{bottom:813.885000px;}
.y10{bottom:814.785000px;}
.ye9{bottom:814.965000px;}
.y5c{bottom:817.845000px;}
.yc1{bottom:831.525000px;}
.ya2{bottom:832.245000px;}
.ye8{bottom:838.725000px;}
.y37{bottom:844.845000px;}
.yf{bottom:845.925000px;}
.y5b{bottom:848.985000px;}
.yc0{bottom:855.285000px;}
.ye7{bottom:862.485000px;}
.y7d{bottom:863.745000px;}
.ya1{bottom:874.770000px;}
.y36{bottom:876.030000px;}
.ye{bottom:876.930000px;}
.ybf{bottom:879.090000px;}
.ye6{bottom:886.290000px;}
.ybe{bottom:902.850000px;}
.y35{bottom:906.990000px;}
.yd{bottom:908.070000px;}
.ye5{bottom:910.050000px;}
.y7a{bottom:914.730000px;}
.ya0{bottom:918.150000px;}
.ybd{bottom:926.610000px;}
.ye4{bottom:933.990000px;}
.y34{bottom:938.130000px;}
.yc{bottom:939.030000px;}
.ybc{bottom:950.550000px;}
.ye3{bottom:957.750000px;}
.y78{bottom:965.670000px;}
.y33{bottom:969.090000px;}
.yb{bottom:970.170000px;}
.ybb{bottom:974.310000px;}
.y9f{bottom:975.750000px;}
.ye2{bottom:981.510000px;}
.yba{bottom:998.070000px;}
.y32{bottom:1000.230000px;}
.ya{bottom:1001.130000px;}
.ye1{bottom:1005.270000px;}
.y9e{bottom:1006.710000px;}
.yb9{bottom:1021.830000px;}
.ye0{bottom:1029.210000px;}
.y31{bottom:1031.190000px;}
.y9{bottom:1032.270000px;}
.y74{bottom:1037.850000px;}
.yb8{bottom:1045.770000px;}
.ydf{bottom:1052.970000px;}
.y9d{bottom:1055.310000px;}
.y30{bottom:1062.330000px;}
.y8{bottom:1063.230000px;}
.yb7{bottom:1069.530000px;}
.yde{bottom:1076.730000px;}
.y7{bottom:1086.990000px;}
.y2f{bottom:1093.290000px;}
.y9c{bottom:1097.790000px;}
.ydd{bottom:1100.490000px;}
.y6{bottom:1110.930000px;}
.y2e{bottom:1124.430000px;}
.y5{bottom:1134.690000px;}
.y2d{bottom:1145.700000px;}
.y4{bottom:1158.480000px;}
.y2c{bottom:1168.380000px;}
.y3{bottom:1182.240000px;}
.y2b{bottom:1192.140000px;}
.hb{height:42.480000px;}
.hc{height:42.516000px;}
.hd{height:42.660000px;}
.h3{height:50.800781px;}
.h8{height:50.940000px;}
.h9{height:50.976000px;}
.ha{height:51.120000px;}
.h6{height:58.429688px;}
.h5{height:59.343750px;}
.h4{height:64.546875px;}
.h2{height:65.884219px;}
.h7{height:71.460000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:61.200000px;}
.w10{width:85.860000px;}
.wd{width:86.580000px;}
.w9{width:86.616000px;}
.wa{width:86.760000px;}
.wc{width:86.796000px;}
.w11{width:90.756000px;}
.wb{width:101.160000px;}
.w4{width:119.556000px;}
.w12{width:120.060000px;}
.w7{width:127.440000px;}
.w5{width:133.596000px;}
.w8{width:142.560000px;}
.w6{width:147.096000px;}
.w3{width:149.400000px;}
.we{width:185.610000px;}
.wf{width:194.790000px;}
.w15{width:217.290000px;}
.w13{width:383.835000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x2{left:108.035987px;}
.x13{left:162.029987px;}
.x10{left:179.129987px;}
.xa{left:204.689987px;}
.x8{left:217.109987px;}
.x22{left:224.309987px;}
.x1d{left:233.849987px;}
.x15{left:250.769987px;}
.x18{left:257.430000px;}
.xe{left:273.269987px;}
.x16{left:293.114987px;}
.x9{left:318.314987px;}
.xd{left:321.374987px;}
.x1e{left:337.215000px;}
.xc{left:342.074987px;}
.x11{left:346.934987px;}
.x26{left:348.554987px;}
.x1c{left:362.954987px;}
.x3{left:364.394987px;}
.xf{left:368.714987px;}
.x19{left:376.995000px;}
.x1f{left:423.975000px;}
.x12{left:438.194987px;}
.x1{left:442.334987px;}
.xb{left:446.474987px;}
.x23{left:488.445000px;}
.x27{left:491.865000px;}
.x1a{left:510.585000px;}
.x28{left:553.065000px;}
.x24{left:574.305000px;}
.x7{left:577.544987px;}
.x6{left:608.504987px;}
.x20{left:611.745000px;}
.x14{left:616.604987px;}
.x5{left:624.524987px;}
.x4{left:650.984987px;}
.x1b{left:657.690000px;}
.x25{left:665.070000px;}
.x21{left:698.550000px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.850240pt;}
.ls4{letter-spacing:2.490240pt;}
.ls6{letter-spacing:2.596907pt;}
.lse{letter-spacing:4.480000pt;}
.lsf{letter-spacing:5.120000pt;}
.wsd{word-spacing:-64.192000pt;}
.wsf{word-spacing:-64.064000pt;}
.wsc{word-spacing:-64.000000pt;}
.wse{word-spacing:-63.680000pt;}
.wsa{word-spacing:-50.208000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws8{word-spacing:-49.568000pt;}
.wsb{word-spacing:-48.512000pt;}
.ws5{word-spacing:-46.549333pt;}
.ws6{word-spacing:-46.528000pt;}
.ws9{word-spacing:-44.480000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-6.165333pt;}
._c{margin-left:-4.042667pt;}
._b{margin-left:-2.944000pt;}
._2{margin-left:-2.048000pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.960000pt;}
._f{width:1.984000pt;}
._13{width:3.392000pt;}
._16{width:4.544000pt;}
._15{width:5.760000pt;}
._12{width:7.040000pt;}
._a{width:8.064000pt;}
._9{width:9.408000pt;}
._17{width:10.688000pt;}
._d{width:11.584000pt;}
._14{width:12.906667pt;}
._4{width:13.952000pt;}
._3{width:14.912000pt;}
._21{width:15.882667pt;}
._e{width:17.216000pt;}
._7{width:18.752000pt;}
._8{width:20.085333pt;}
._1b{width:21.312000pt;}
._5{width:22.208000pt;}
._6{width:23.232000pt;}
._1a{width:24.192000pt;}
._19{width:25.472000pt;}
._1e{width:26.432000pt;}
._1c{width:28.160000pt;}
._1d{width:29.376000pt;}
._25{width:30.528000pt;}
._26{width:31.424000pt;}
._29{width:32.512000pt;}
._2a{width:33.568000pt;}
._30{width:34.592000pt;}
._27{width:35.648000pt;}
._28{width:36.544000pt;}
._33{width:37.440000pt;}
._18{width:39.424000pt;}
._10{width:40.576000pt;}
._11{width:41.600000pt;}
._22{width:51.904000pt;}
._34{width:70.208000pt;}
._1f{width:100.874667pt;}
._24{width:103.605333pt;}
._35{width:104.970667pt;}
._31{width:113.344000pt;}
._32{width:114.464000pt;}
._2e{width:148.256000pt;}
._2f{width:149.184000pt;}
._2b{width:159.360000pt;}
._20{width:176.160000pt;}
._2c{width:253.888000pt;}
._2d{width:254.858667pt;}
.fs2{font-size:45.440000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:6.240000pt;}
.y79{bottom:6.400000pt;}
.y7c{bottom:9.280000pt;}
.y7f{bottom:9.320000pt;}
.y9a{bottom:22.874667pt;}
.y94{bottom:22.880000pt;}
.y98{bottom:23.040000pt;}
.y76{bottom:27.520000pt;}
.y7b{bottom:30.400000pt;}
.y7e{bottom:30.440000pt;}
.y81{bottom:30.560000pt;}
.y2{bottom:41.600000pt;}
.y77{bottom:48.640000pt;}
.y1{bottom:59.520000pt;}
.y9b{bottom:85.952000pt;}
.y4f{bottom:88.672000pt;}
.y104{bottom:89.472000pt;}
.y73{bottom:92.192000pt;}
.y92{bottom:103.552000pt;}
.y2a{bottom:109.792000pt;}
.y103{bottom:110.752000pt;}
.y5a{bottom:111.392000pt;}
.y4e{bottom:116.192000pt;}
.y72{bottom:119.712000pt;}
.y99{bottom:123.712000pt;}
.ydc{bottom:125.472000pt;}
.y91{bottom:131.232000pt;}
.yb6{bottom:131.392000pt;}
.y102{bottom:131.872000pt;}
.y29{bottom:137.306667pt;}
.y59{bottom:139.226667pt;}
.y4d{bottom:143.866667pt;}
.ydb{bottom:146.586667pt;}
.y71{bottom:147.386667pt;}
.y101{bottom:152.986667pt;}
.y90{bottom:158.746667pt;}
.yb5{bottom:159.066667pt;}
.y97{bottom:161.466667pt;}
.y28{bottom:164.986667pt;}
.y58{bottom:167.226667pt;}
.yda{bottom:167.706667pt;}
.y4c{bottom:171.386667pt;}
.y100{bottom:174.106667pt;}
.y70{bottom:174.906667pt;}
.y8f{bottom:186.426667pt;}
.yb4{bottom:186.586667pt;}
.yd9{bottom:188.826667pt;}
.y27{bottom:192.506667pt;}
.y57{bottom:195.386667pt;}
.y4b{bottom:199.066667pt;}
.y96{bottom:199.386667pt;}
.y6f{bottom:202.586667pt;}
.yd8{bottom:210.106667pt;}
.y8e{bottom:213.946667pt;}
.yb3{bottom:214.266667pt;}
.yff{bottom:216.506667pt;}
.y26{bottom:220.186667pt;}
.y56{bottom:223.546667pt;}
.y4a{bottom:226.586667pt;}
.y8d{bottom:229.466667pt;}
.y6e{bottom:230.106667pt;}
.yd7{bottom:231.226667pt;}
.y95{bottom:237.146667pt;}
.yfe{bottom:237.626667pt;}
.yb2{bottom:241.786667pt;}
.y25{bottom:247.706667pt;}
.y55{bottom:251.546667pt;}
.yd6{bottom:252.346667pt;}
.y49{bottom:254.266667pt;}
.y6d{bottom:257.786667pt;}
.yfd{bottom:258.746667pt;}
.y24{bottom:268.826667pt;}
.yb1{bottom:269.466667pt;}
.yd5{bottom:273.466667pt;}
.y8c{bottom:274.906667pt;}
.y54{bottom:279.386667pt;}
.yfc{bottom:280.026667pt;}
.y48{bottom:281.786667pt;}
.y6c{bottom:285.306667pt;}
.y23{bottom:290.106667pt;}
.yd4{bottom:294.586667pt;}
.yb0{bottom:296.986667pt;}
.yfb{bottom:301.186667pt;}
.y53{bottom:307.426667pt;}
.y47{bottom:309.346667pt;}
.y22{bottom:311.266667pt;}
.y6b{bottom:313.026667pt;}
.y93{bottom:313.506667pt;}
.yd3{bottom:315.906667pt;}
.y8b{bottom:320.226667pt;}
.yfa{bottom:322.306667pt;}
.yaf{bottom:324.706667pt;}
.y21{bottom:332.386667pt;}
.y52{bottom:335.586667pt;}
.y46{bottom:337.026667pt;}
.y6a{bottom:340.546667pt;}
.yf9{bottom:343.426667pt;}
.yae{bottom:352.226667pt;}
.y20{bottom:353.506667pt;}
.yd2{bottom:358.146667pt;}
.y51{bottom:363.746667pt;}
.y45{bottom:364.546667pt;}
.y8a{bottom:365.506667pt;}
.y69{bottom:368.226667pt;}
.y1f{bottom:374.786667pt;}
.yd1{bottom:379.266667pt;}
.yad{bottom:379.906667pt;}
.yf8{bottom:385.826667pt;}
.y50{bottom:391.906667pt;}
.y44{bottom:392.226667pt;}
.y68{bottom:395.746667pt;}
.y1e{bottom:395.906667pt;}
.yd0{bottom:400.546667pt;}
.yf7{bottom:406.946667pt;}
.yac{bottom:407.426667pt;}
.y89{bottom:410.946667pt;}
.y1d{bottom:417.026667pt;}
.y43{bottom:419.746667pt;}
.ycf{bottom:421.666667pt;}
.y67{bottom:423.426667pt;}
.yf6{bottom:428.066667pt;}
.yab{bottom:435.106667pt;}
.y1c{bottom:438.146667pt;}
.yce{bottom:442.786667pt;}
.y42{bottom:447.426667pt;}
.yf5{bottom:449.186667pt;}
.y66{bottom:450.946667pt;}
.y88{bottom:456.226667pt;}
.y1b{bottom:459.266667pt;}
.yaa{bottom:462.626667pt;}
.ycd{bottom:463.906667pt;}
.yf4{bottom:470.466667pt;}
.y41{bottom:474.946667pt;}
.y65{bottom:478.626667pt;}
.y1a{bottom:480.546667pt;}
.ycc{bottom:485.186667pt;}
.ya9{bottom:490.306667pt;}
.yf3{bottom:491.586667pt;}
.y19{bottom:501.666667pt;}
.y87{bottom:502.306667pt;}
.y40{bottom:502.626667pt;}
.y64{bottom:506.146667pt;}
.ycb{bottom:506.306667pt;}
.yf2{bottom:512.706667pt;}
.ya8{bottom:517.826667pt;}
.y18{bottom:522.786667pt;}
.yca{bottom:527.426667pt;}
.y3f{bottom:530.146667pt;}
.y63{bottom:533.826667pt;}
.y17{bottom:543.933333pt;}
.ya7{bottom:545.533333pt;}
.yc9{bottom:548.573333pt;}
.yf1{bottom:555.133333pt;}
.y3e{bottom:557.853333pt;}
.y86{bottom:561.053333pt;}
.y62{bottom:561.373333pt;}
.y16{bottom:565.213333pt;}
.yc8{bottom:569.853333pt;}
.ya6{bottom:573.053333pt;}
.yf0{bottom:576.253333pt;}
.y3d{bottom:585.373333pt;}
.y15{bottom:586.333333pt;}
.y85{bottom:588.573333pt;}
.y61{bottom:589.053333pt;}
.yc7{bottom:590.973333pt;}
.yef{bottom:597.373333pt;}
.yc6{bottom:612.093333pt;}
.y3c{bottom:613.053333pt;}
.y14{bottom:613.853333pt;}
.y84{bottom:616.253333pt;}
.y60{bottom:616.573333pt;}
.yee{bottom:618.493333pt;}
.ya5{bottom:626.333333pt;}
.y83{bottom:631.773333pt;}
.yc5{bottom:633.213333pt;}
.yed{bottom:639.773333pt;}
.y3b{bottom:640.573333pt;}
.y13{bottom:641.533333pt;}
.y5f{bottom:644.253333pt;}
.yc4{bottom:654.493333pt;}
.yec{bottom:660.893333pt;}
.ya4{bottom:664.253333pt;}
.y3a{bottom:668.253333pt;}
.y12{bottom:669.053333pt;}
.y5e{bottom:671.773333pt;}
.yc3{bottom:675.613333pt;}
.y82{bottom:677.053333pt;}
.yeb{bottom:682.013333pt;}
.y39{bottom:695.773333pt;}
.y11{bottom:696.733333pt;}
.y5d{bottom:699.453333pt;}
.ya3{bottom:702.013333pt;}
.yea{bottom:703.133333pt;}
.yc2{bottom:717.853333pt;}
.y80{bottom:722.333333pt;}
.y38{bottom:723.453333pt;}
.y10{bottom:724.253333pt;}
.ye9{bottom:724.413333pt;}
.y5c{bottom:726.973333pt;}
.yc1{bottom:739.133333pt;}
.ya2{bottom:739.773333pt;}
.ye8{bottom:745.533333pt;}
.y37{bottom:750.973333pt;}
.yf{bottom:751.933333pt;}
.y5b{bottom:754.653333pt;}
.yc0{bottom:760.253333pt;}
.ye7{bottom:766.653333pt;}
.y7d{bottom:767.773333pt;}
.ya1{bottom:777.573333pt;}
.y36{bottom:778.693333pt;}
.ye{bottom:779.493333pt;}
.ybf{bottom:781.413333pt;}
.ye6{bottom:787.813333pt;}
.ybe{bottom:802.533333pt;}
.y35{bottom:806.213333pt;}
.yd{bottom:807.173333pt;}
.ye5{bottom:808.933333pt;}
.y7a{bottom:813.093333pt;}
.ya0{bottom:816.133333pt;}
.ybd{bottom:823.653333pt;}
.ye4{bottom:830.213333pt;}
.y34{bottom:833.893333pt;}
.yc{bottom:834.693333pt;}
.ybc{bottom:844.933333pt;}
.ye3{bottom:851.333333pt;}
.y78{bottom:858.373333pt;}
.y33{bottom:861.413333pt;}
.yb{bottom:862.373333pt;}
.ybb{bottom:866.053333pt;}
.y9f{bottom:867.333333pt;}
.ye2{bottom:872.453333pt;}
.yba{bottom:887.173333pt;}
.y32{bottom:889.093333pt;}
.ya{bottom:889.893333pt;}
.ye1{bottom:893.573333pt;}
.y9e{bottom:894.853333pt;}
.yb9{bottom:908.293333pt;}
.ye0{bottom:914.853333pt;}
.y31{bottom:916.613333pt;}
.y9{bottom:917.573333pt;}
.y74{bottom:922.533333pt;}
.yb8{bottom:929.573333pt;}
.ydf{bottom:935.973333pt;}
.y9d{bottom:938.053333pt;}
.y30{bottom:944.293333pt;}
.y8{bottom:945.093333pt;}
.yb7{bottom:950.693333pt;}
.yde{bottom:957.093333pt;}
.y7{bottom:966.213333pt;}
.y2f{bottom:971.813333pt;}
.y9c{bottom:975.813333pt;}
.ydd{bottom:978.213333pt;}
.y6{bottom:987.493333pt;}
.y2e{bottom:999.493333pt;}
.y5{bottom:1008.613333pt;}
.y2d{bottom:1018.400000pt;}
.y4{bottom:1029.760000pt;}
.y2c{bottom:1038.560000pt;}
.y3{bottom:1050.880000pt;}
.y2b{bottom:1059.680000pt;}
.hb{height:37.760000pt;}
.hc{height:37.792000pt;}
.hd{height:37.920000pt;}
.h3{height:45.156250pt;}
.h8{height:45.280000pt;}
.h9{height:45.312000pt;}
.ha{height:45.440000pt;}
.h6{height:51.937500pt;}
.h5{height:52.750000pt;}
.h4{height:57.375000pt;}
.h2{height:58.563750pt;}
.h7{height:63.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:54.400000pt;}
.w10{width:76.320000pt;}
.wd{width:76.960000pt;}
.w9{width:76.992000pt;}
.wa{width:77.120000pt;}
.wc{width:77.152000pt;}
.w11{width:80.672000pt;}
.wb{width:89.920000pt;}
.w4{width:106.272000pt;}
.w12{width:106.720000pt;}
.w7{width:113.280000pt;}
.w5{width:118.752000pt;}
.w8{width:126.720000pt;}
.w6{width:130.752000pt;}
.w3{width:132.800000pt;}
.we{width:164.986667pt;}
.wf{width:173.146667pt;}
.w15{width:193.146667pt;}
.w13{width:341.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x2{left:96.031988pt;}
.x13{left:144.026655pt;}
.x10{left:159.226655pt;}
.xa{left:181.946655pt;}
.x8{left:192.986655pt;}
.x22{left:199.386655pt;}
.x1d{left:207.866655pt;}
.x15{left:222.906655pt;}
.x18{left:228.826667pt;}
.xe{left:242.906655pt;}
.x16{left:260.546655pt;}
.x9{left:282.946655pt;}
.xd{left:285.666655pt;}
.x1e{left:299.746667pt;}
.xc{left:304.066655pt;}
.x11{left:308.386655pt;}
.x26{left:309.826655pt;}
.x1c{left:322.626655pt;}
.x3{left:323.906655pt;}
.xf{left:327.746655pt;}
.x19{left:335.106667pt;}
.x1f{left:376.866667pt;}
.x12{left:389.506655pt;}
.x1{left:393.186655pt;}
.xb{left:396.866655pt;}
.x23{left:434.173333pt;}
.x27{left:437.213333pt;}
.x1a{left:453.853333pt;}
.x28{left:491.613333pt;}
.x24{left:510.493333pt;}
.x7{left:513.373322pt;}
.x6{left:540.893322pt;}
.x20{left:543.773333pt;}
.x14{left:548.093322pt;}
.x5{left:555.133322pt;}
.x4{left:578.653322pt;}
.x1b{left:584.613333pt;}
.x25{left:591.173333pt;}
.x21{left:620.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; }
  