
    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_5203078787abea21b45c3086.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8500f3a2d9b6245888c4968.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_df12bdb15a7ba764357b634e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5fe1044f268d28fbc1c3b0ef.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3f94118b9a759a9e02c4f32e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_dcb80d3a9a41b30c91235272.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_bf26c299dd3e75e1b9e12145.woff2')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_651c5689cf584fc2d223df70.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_982f1cf6292feb8b177271d9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9c4405e546b8600b0fc27731.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v1{vertical-align:-83.520000px;}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-3.744000px;}
.lse{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.341280px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.930000px;}
.ls6{letter-spacing:1.061280px;}
.ls0{letter-spacing:1841.340000px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.568000px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.680200px;}
.wsa{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-12.257280px;}
._1{margin-left:-7.948800px;}
._8{margin-left:-6.511680px;}
._5{margin-left:-5.032320px;}
._e{margin-left:-3.582720px;}
._1d{margin-left:-2.465280px;}
._0{margin-left:-1.457280px;}
._2{width:1.127040px;}
._1e{width:2.616960px;}
._25{width:3.862080px;}
._24{width:4.878720px;}
._19{width:6.650400px;}
._18{width:7.974720px;}
._22{width:10.008000px;}
._16{width:11.424000px;}
._15{width:12.432000px;}
._17{width:13.664640px;}
._1a{width:15.384000px;}
._26{width:16.950720px;}
._2b{width:19.272000px;}
._29{width:20.711040px;}
._28{width:21.714240px;}
._21{width:23.201280px;}
._20{width:24.534720px;}
._2a{width:25.552320px;}
._23{width:26.568000px;}
._1c{width:29.415840px;}
._1b{width:30.726720px;}
._27{width:31.985280px;}
._2c{width:33.840000px;}
._2d{width:35.766720px;}
._1f{width:42.312000px;}
._10{width:51.309840px;}
._7{width:57.743280px;}
._f{width:59.410800px;}
._9{width:64.371600px;}
._a{width:66.487680px;}
._d{width:92.025360px;}
._b{width:99.973440px;}
._c{width:101.109360px;}
._6{width:107.081760px;}
._14{width:114.816240px;}
._11{width:115.869600px;}
._13{width:120.488160px;}
._12{width:122.572800px;}
._4{width:130.520880px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y83{bottom:11.700000px;}
.y86{bottom:11.880000px;}
.y68{bottom:16.740000px;}
.y74{bottom:16.770000px;}
.y98{bottom:16.920000px;}
.y97{bottom:21.780000px;}
.y67{bottom:37.620000px;}
.y66{bottom:42.660000px;}
.y73{bottom:42.690000px;}
.y85{bottom:43.380000px;}
.y9a{bottom:47.520000px;}
.y96{bottom:47.700000px;}
.y6b{bottom:47.745000px;}
.y6c{bottom:52.605000px;}
.y70{bottom:68.400000px;}
.y65{bottom:68.580000px;}
.y72{bottom:68.610000px;}
.y6a{bottom:78.525000px;}
.y4{bottom:84.780000px;}
.y6f{bottom:94.320000px;}
.y76{bottom:94.500000px;}
.y6e{bottom:120.240000px;}
.y3{bottom:127.260000px;}
.y2{bottom:147.096000px;}
.y1{bottom:166.350000px;}
.y99{bottom:192.990000px;}
.yb0{bottom:197.310000px;}
.y2c{bottom:198.030000px;}
.y81{bottom:203.790000px;}
.yaf{bottom:214.770000px;}
.y2b{bottom:218.730000px;}
.y63{bottom:227.370000px;}
.y80{bottom:234.750000px;}
.y4a{bottom:237.630000px;}
.y2a{bottom:239.430000px;}
.y95{bottom:255.270000px;}
.y62{bottom:258.330000px;}
.y29{bottom:260.130000px;}
.y7f{bottom:265.890000px;}
.y49{bottom:268.770000px;}
.yae{bottom:277.230000px;}
.y28{bottom:280.830000px;}
.yd8{bottom:287.130000px;}
.y61{bottom:289.470000px;}
.y7e{bottom:296.850000px;}
.y48{bottom:299.730000px;}
.y27{bottom:301.530000px;}
.y60{bottom:320.430000px;}
.y26{bottom:322.230000px;}
.y7d{bottom:327.990000px;}
.yd7{bottom:328.710000px;}
.y47{bottom:330.870000px;}
.y94{bottom:332.130000px;}
.yad{bottom:339.690000px;}
.y25{bottom:342.930000px;}
.yd6{bottom:349.410000px;}
.y5f{bottom:351.570000px;}
.y7c{bottom:358.950000px;}
.y46{bottom:361.830000px;}
.y93{bottom:363.090000px;}
.y24{bottom:363.630000px;}
.y5e{bottom:382.530000px;}
.y23{bottom:384.330000px;}
.y7b{bottom:390.135000px;}
.yd5{bottom:391.215000px;}
.y45{bottom:393.015000px;}
.y92{bottom:394.275000px;}
.yac{bottom:402.015000px;}
.y22{bottom:405.075000px;}
.yd4{bottom:411.915000px;}
.y5d{bottom:413.715000px;}
.y7a{bottom:421.095000px;}
.y44{bottom:423.975000px;}
.y91{bottom:425.235000px;}
.y21{bottom:425.775000px;}
.yd3{bottom:432.615000px;}
.y5c{bottom:444.675000px;}
.y20{bottom:446.475000px;}
.y79{bottom:452.235000px;}
.yd2{bottom:453.315000px;}
.y43{bottom:455.115000px;}
.y90{bottom:456.375000px;}
.yab{bottom:464.475000px;}
.y1f{bottom:467.175000px;}
.y5b{bottom:475.815000px;}
.y78{bottom:480.675000px;}
.y42{bottom:486.075000px;}
.y1e{bottom:487.875000px;}
.y8f{bottom:489.675000px;}
.yd1{bottom:494.895000px;}
.y77{bottom:506.595000px;}
.y5a{bottom:506.775000px;}
.y1d{bottom:508.575000px;}
.yaa{bottom:510.375000px;}
.yd0{bottom:515.595000px;}
.y41{bottom:517.215000px;}
.y75{bottom:521.355000px;}
.y8e{bottom:523.515000px;}
.y1c{bottom:529.275000px;}
.ycf{bottom:536.295000px;}
.y59{bottom:537.915000px;}
.ybb{bottom:540.255000px;}
.ya9{bottom:541.335000px;}
.y40{bottom:548.175000px;}
.y1b{bottom:549.975000px;}
.y8d{bottom:554.655000px;}
.y58{bottom:568.875000px;}
.y1a{bottom:570.675000px;}
.ya8{bottom:572.475000px;}
.yba{bottom:574.095000px;}
.yce{bottom:578.055000px;}
.y3f{bottom:579.315000px;}
.y8c{bottom:585.615000px;}
.y19{bottom:591.375000px;}
.ycd{bottom:598.755000px;}
.y57{bottom:600.015000px;}
.ya7{bottom:603.435000px;}
.yb9{bottom:605.235000px;}
.y3e{bottom:610.275000px;}
.y18{bottom:612.075000px;}
.y8b{bottom:616.755000px;}
.ycc{bottom:619.455000px;}
.y71{bottom:630.615000px;}
.y56{bottom:630.975000px;}
.y17{bottom:632.775000px;}
.ya6{bottom:634.575000px;}
.yb8{bottom:636.195000px;}
.ycb{bottom:640.185000px;}
.y3d{bottom:641.445000px;}
.y8a{bottom:647.745000px;}
.y16{bottom:653.505000px;}
.y55{bottom:662.145000px;}
.ya5{bottom:665.565000px;}
.yb7{bottom:667.365000px;}
.y3c{bottom:672.405000px;}
.y15{bottom:674.205000px;}
.y89{bottom:678.885000px;}
.yca{bottom:681.945000px;}
.y54{bottom:693.105000px;}
.ya4{bottom:696.705000px;}
.yb6{bottom:698.325000px;}
.y14{bottom:701.745000px;}
.yc9{bottom:702.645000px;}
.y3b{bottom:703.545000px;}
.y88{bottom:707.325000px;}
.y6d{bottom:713.985000px;}
.y13{bottom:722.445000px;}
.yc8{bottom:723.345000px;}
.y53{bottom:724.245000px;}
.ya3{bottom:727.665000px;}
.yb5{bottom:729.285000px;}
.y87{bottom:733.245000px;}
.y3a{bottom:734.505000px;}
.y12{bottom:736.305000px;}
.y84{bottom:748.005000px;}
.y52{bottom:755.205000px;}
.y11{bottom:757.005000px;}
.ya2{bottom:758.805000px;}
.yb4{bottom:760.425000px;}
.yc7{bottom:764.925000px;}
.y39{bottom:765.645000px;}
.y10{bottom:777.705000px;}
.yc6{bottom:785.625000px;}
.y51{bottom:786.345000px;}
.ya1{bottom:789.765000px;}
.yb3{bottom:791.385000px;}
.y38{bottom:796.605000px;}
.yf{bottom:798.405000px;}
.yc5{bottom:806.325000px;}
.y82{bottom:812.265000px;}
.y50{bottom:817.305000px;}
.ye{bottom:820.365000px;}
.ya0{bottom:820.905000px;}
.yb2{bottom:822.525000px;}
.yc4{bottom:827.025000px;}
.y37{bottom:827.745000px;}
.yd{bottom:847.905000px;}
.y69{bottom:848.985000px;}
.y4f{bottom:850.605000px;}
.y9f{bottom:851.865000px;}
.yb1{bottom:853.485000px;}
.y36{bottom:858.705000px;}
.yc3{bottom:868.785000px;}
.yc{bottom:875.625000px;}
.y9e{bottom:883.005000px;}
.y4e{bottom:884.625000px;}
.yc2{bottom:889.485000px;}
.y35{bottom:889.845000px;}
.y9d{bottom:900.510000px;}
.yb{bottom:903.210000px;}
.yc1{bottom:910.230000px;}
.y4d{bottom:915.630000px;}
.y34{bottom:923.190000px;}
.ya{bottom:930.750000px;}
.y64{bottom:942.270000px;}
.y33{bottom:946.770000px;}
.yc0{bottom:951.990000px;}
.y9{bottom:958.470000px;}
.y9c{bottom:962.970000px;}
.y32{bottom:967.470000px;}
.ybf{bottom:972.690000px;}
.y4c{bottom:977.730000px;}
.y8{bottom:986.010000px;}
.y31{bottom:988.170000px;}
.ybe{bottom:993.390000px;}
.y30{bottom:1008.870000px;}
.y7{bottom:1013.550000px;}
.ybd{bottom:1014.090000px;}
.y9b{bottom:1025.250000px;}
.y2f{bottom:1029.570000px;}
.ybc{bottom:1034.790000px;}
.y4b{bottom:1039.830000px;}
.y6{bottom:1041.270000px;}
.y2e{bottom:1050.270000px;}
.y5{bottom:1068.090000px;}
.y2d{bottom:1070.970000px;}
.h1a{height:30.780000px;}
.ha{height:43.246406px;}
.h17{height:48.496641px;}
.hf{height:49.255313px;}
.hc{height:53.077852px;}
.hd{height:53.573906px;}
.h15{height:55.735313px;}
.h13{height:57.240000px;}
.h19{height:58.429688px;}
.h8{height:59.343750px;}
.h2{height:59.383125px;}
.h18{height:61.560000px;}
.h1b{height:61.596000px;}
.h16{height:61.740000px;}
.h14{height:63.360000px;}
.h4{height:64.546875px;}
.h3{height:65.884219px;}
.h9{height:70.606406px;}
.h5{height:74.820586px;}
.h7{height:77.711484px;}
.hb{height:82.620000px;}
.h11{height:82.656000px;}
.h6{height:85.052461px;}
.he{height:92.556000px;}
.h12{height:108.540000px;}
.h10{height:134.280000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:106.380000px;}
.w4{width:117.036000px;}
.w12{width:125.676000px;}
.w7{width:125.820000px;}
.w9{width:129.636000px;}
.wa{width:140.040000px;}
.wb{width:150.510000px;}
.wd{width:159.300000px;}
.we{width:169.770000px;}
.w11{width:170.130000px;}
.w10{width:172.800000px;}
.w8{width:174.450000px;}
.wf{width:180.930000px;}
.w13{width:190.650000px;}
.wc{width:191.550000px;}
.w6{width:226.110000px;}
.w5{width:230.970000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:8.100000px;}
.x15{left:9.180000px;}
.x24{left:10.260000px;}
.x10{left:12.240000px;}
.x22{left:14.040000px;}
.x1f{left:15.840000px;}
.x1d{left:19.800000px;}
.x21{left:21.600000px;}
.x26{left:22.680000px;}
.x16{left:24.660000px;}
.xe{left:26.820000px;}
.x20{left:28.080000px;}
.x11{left:30.420000px;}
.x32{left:31.500000px;}
.x25{left:32.940000px;}
.xd{left:34.020000px;}
.x39{left:35.640000px;}
.x1a{left:38.880000px;}
.x2e{left:43.380000px;}
.x13{left:45.540000px;}
.x18{left:48.954000px;}
.x19{left:52.020000px;}
.x31{left:53.865000px;}
.x33{left:55.800000px;}
.x40{left:58.854000px;}
.x4c{left:59.934000px;}
.x34{left:61.065000px;}
.x47{left:63.354000px;}
.x2c{left:65.385000px;}
.x41{left:66.960000px;}
.x23{left:70.920000px;}
.x43{left:72.030000px;}
.x44{left:74.334000px;}
.x1c{left:76.320000px;}
.x3d{left:78.300000px;}
.x27{left:80.100000px;}
.x4d{left:81.720000px;}
.x1b{left:83.520000px;}
.x3e{left:88.605000px;}
.x17{left:91.800000px;}
.x4b{left:93.600000px;}
.x42{left:100.080000px;}
.xa{left:104.435987px;}
.x1{left:105.515987px;}
.x3f{left:110.745000px;}
.x46{left:115.775987px;}
.x38{left:136.655987px;}
.x8{left:146.375987px;}
.x9{left:147.995987px;}
.x3{left:149.075987px;}
.x28{left:151.409987px;}
.xb{left:153.209987px;}
.x5{left:154.469987px;}
.x37{left:158.969987px;}
.x6{left:175.709987px;}
.xf{left:211.890000px;}
.x2b{left:231.330000px;}
.x35{left:254.189987px;}
.x7{left:262.649987px;}
.x48{left:278.310000px;}
.x3a{left:297.075000px;}
.x36{left:302.834987px;}
.xc{left:313.634987px;}
.x12{left:328.935000px;}
.x29{left:355.754987px;}
.x2d{left:405.795000px;}
.x2a{left:413.174987px;}
.x49{left:448.455000px;}
.x3b{left:456.375000px;}
.x45{left:467.174987px;}
.x2f{left:535.425000px;}
.x14{left:559.905000px;}
.x4a{left:574.125000px;}
.x3c{left:626.145000px;}
.x30{left:675.465000px;}
.x2{left:787.289987px;}
.x4{left:788.369987px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-3.328000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.303360pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.826667pt;}
.ls6{letter-spacing:0.943360pt;}
.ls0{letter-spacing:1636.746667pt;}
.ws1{word-spacing:-58.880000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.616000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.049067pt;}
.wsa{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-10.895360pt;}
._1{margin-left:-7.065600pt;}
._8{margin-left:-5.788160pt;}
._5{margin-left:-4.473173pt;}
._e{margin-left:-3.184640pt;}
._1d{margin-left:-2.191360pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.001813pt;}
._1e{width:2.326187pt;}
._25{width:3.432960pt;}
._24{width:4.336640pt;}
._19{width:5.911467pt;}
._18{width:7.088640pt;}
._22{width:8.896000pt;}
._16{width:10.154667pt;}
._15{width:11.050667pt;}
._17{width:12.146347pt;}
._1a{width:13.674667pt;}
._26{width:15.067307pt;}
._2b{width:17.130667pt;}
._29{width:18.409813pt;}
._28{width:19.301547pt;}
._21{width:20.623360pt;}
._20{width:21.808640pt;}
._2a{width:22.713173pt;}
._23{width:23.616000pt;}
._1c{width:26.147413pt;}
._1b{width:27.312640pt;}
._27{width:28.431360pt;}
._2c{width:30.080000pt;}
._2d{width:31.792640pt;}
._1f{width:37.610667pt;}
._10{width:45.608747pt;}
._7{width:51.327360pt;}
._f{width:52.809600pt;}
._9{width:57.219200pt;}
._a{width:59.100160pt;}
._d{width:81.800320pt;}
._b{width:88.865280pt;}
._c{width:89.874987pt;}
._6{width:95.183787pt;}
._14{width:102.058880pt;}
._11{width:102.995200pt;}
._13{width:107.100587pt;}
._12{width:108.953600pt;}
._4{width:116.018560pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:10.400000pt;}
.y86{bottom:10.560000pt;}
.y68{bottom:14.880000pt;}
.y74{bottom:14.906667pt;}
.y98{bottom:15.040000pt;}
.y97{bottom:19.360000pt;}
.y67{bottom:33.440000pt;}
.y66{bottom:37.920000pt;}
.y73{bottom:37.946667pt;}
.y85{bottom:38.560000pt;}
.y9a{bottom:42.240000pt;}
.y96{bottom:42.400000pt;}
.y6b{bottom:42.440000pt;}
.y6c{bottom:46.760000pt;}
.y70{bottom:60.800000pt;}
.y65{bottom:60.960000pt;}
.y72{bottom:60.986667pt;}
.y6a{bottom:69.800000pt;}
.y4{bottom:75.360000pt;}
.y6f{bottom:83.840000pt;}
.y76{bottom:84.000000pt;}
.y6e{bottom:106.880000pt;}
.y3{bottom:113.120000pt;}
.y2{bottom:130.752000pt;}
.y1{bottom:147.866667pt;}
.y99{bottom:171.546667pt;}
.yb0{bottom:175.386667pt;}
.y2c{bottom:176.026667pt;}
.y81{bottom:181.146667pt;}
.yaf{bottom:190.906667pt;}
.y2b{bottom:194.426667pt;}
.y63{bottom:202.106667pt;}
.y80{bottom:208.666667pt;}
.y4a{bottom:211.226667pt;}
.y2a{bottom:212.826667pt;}
.y95{bottom:226.906667pt;}
.y62{bottom:229.626667pt;}
.y29{bottom:231.226667pt;}
.y7f{bottom:236.346667pt;}
.y49{bottom:238.906667pt;}
.yae{bottom:246.426667pt;}
.y28{bottom:249.626667pt;}
.yd8{bottom:255.226667pt;}
.y61{bottom:257.306667pt;}
.y7e{bottom:263.866667pt;}
.y48{bottom:266.426667pt;}
.y27{bottom:268.026667pt;}
.y60{bottom:284.826667pt;}
.y26{bottom:286.426667pt;}
.y7d{bottom:291.546667pt;}
.yd7{bottom:292.186667pt;}
.y47{bottom:294.106667pt;}
.y94{bottom:295.226667pt;}
.yad{bottom:301.946667pt;}
.y25{bottom:304.826667pt;}
.yd6{bottom:310.586667pt;}
.y5f{bottom:312.506667pt;}
.y7c{bottom:319.066667pt;}
.y46{bottom:321.626667pt;}
.y93{bottom:322.746667pt;}
.y24{bottom:323.226667pt;}
.y5e{bottom:340.026667pt;}
.y23{bottom:341.626667pt;}
.y7b{bottom:346.786667pt;}
.yd5{bottom:347.746667pt;}
.y45{bottom:349.346667pt;}
.y92{bottom:350.466667pt;}
.yac{bottom:357.346667pt;}
.y22{bottom:360.066667pt;}
.yd4{bottom:366.146667pt;}
.y5d{bottom:367.746667pt;}
.y7a{bottom:374.306667pt;}
.y44{bottom:376.866667pt;}
.y91{bottom:377.986667pt;}
.y21{bottom:378.466667pt;}
.yd3{bottom:384.546667pt;}
.y5c{bottom:395.266667pt;}
.y20{bottom:396.866667pt;}
.y79{bottom:401.986667pt;}
.yd2{bottom:402.946667pt;}
.y43{bottom:404.546667pt;}
.y90{bottom:405.666667pt;}
.yab{bottom:412.866667pt;}
.y1f{bottom:415.266667pt;}
.y5b{bottom:422.946667pt;}
.y78{bottom:427.266667pt;}
.y42{bottom:432.066667pt;}
.y1e{bottom:433.666667pt;}
.y8f{bottom:435.266667pt;}
.yd1{bottom:439.906667pt;}
.y77{bottom:450.306667pt;}
.y5a{bottom:450.466667pt;}
.y1d{bottom:452.066667pt;}
.yaa{bottom:453.666667pt;}
.yd0{bottom:458.306667pt;}
.y41{bottom:459.746667pt;}
.y75{bottom:463.426667pt;}
.y8e{bottom:465.346667pt;}
.y1c{bottom:470.466667pt;}
.ycf{bottom:476.706667pt;}
.y59{bottom:478.146667pt;}
.ybb{bottom:480.226667pt;}
.ya9{bottom:481.186667pt;}
.y40{bottom:487.266667pt;}
.y1b{bottom:488.866667pt;}
.y8d{bottom:493.026667pt;}
.y58{bottom:505.666667pt;}
.y1a{bottom:507.266667pt;}
.ya8{bottom:508.866667pt;}
.yba{bottom:510.306667pt;}
.yce{bottom:513.826667pt;}
.y3f{bottom:514.946667pt;}
.y8c{bottom:520.546667pt;}
.y19{bottom:525.666667pt;}
.ycd{bottom:532.226667pt;}
.y57{bottom:533.346667pt;}
.ya7{bottom:536.386667pt;}
.yb9{bottom:537.986667pt;}
.y3e{bottom:542.466667pt;}
.y18{bottom:544.066667pt;}
.y8b{bottom:548.226667pt;}
.ycc{bottom:550.626667pt;}
.y71{bottom:560.546667pt;}
.y56{bottom:560.866667pt;}
.y17{bottom:562.466667pt;}
.ya6{bottom:564.066667pt;}
.yb8{bottom:565.506667pt;}
.ycb{bottom:569.053333pt;}
.y3d{bottom:570.173333pt;}
.y8a{bottom:575.773333pt;}
.y16{bottom:580.893333pt;}
.y55{bottom:588.573333pt;}
.ya5{bottom:591.613333pt;}
.yb7{bottom:593.213333pt;}
.y3c{bottom:597.693333pt;}
.y15{bottom:599.293333pt;}
.y89{bottom:603.453333pt;}
.yca{bottom:606.173333pt;}
.y54{bottom:616.093333pt;}
.ya4{bottom:619.293333pt;}
.yb6{bottom:620.733333pt;}
.y14{bottom:623.773333pt;}
.yc9{bottom:624.573333pt;}
.y3b{bottom:625.373333pt;}
.y88{bottom:628.733333pt;}
.y6d{bottom:634.653333pt;}
.y13{bottom:642.173333pt;}
.yc8{bottom:642.973333pt;}
.y53{bottom:643.773333pt;}
.ya3{bottom:646.813333pt;}
.yb5{bottom:648.253333pt;}
.y87{bottom:651.773333pt;}
.y3a{bottom:652.893333pt;}
.y12{bottom:654.493333pt;}
.y84{bottom:664.893333pt;}
.y52{bottom:671.293333pt;}
.y11{bottom:672.893333pt;}
.ya2{bottom:674.493333pt;}
.yb4{bottom:675.933333pt;}
.yc7{bottom:679.933333pt;}
.y39{bottom:680.573333pt;}
.y10{bottom:691.293333pt;}
.yc6{bottom:698.333333pt;}
.y51{bottom:698.973333pt;}
.ya1{bottom:702.013333pt;}
.yb3{bottom:703.453333pt;}
.y38{bottom:708.093333pt;}
.yf{bottom:709.693333pt;}
.yc5{bottom:716.733333pt;}
.y82{bottom:722.013333pt;}
.y50{bottom:726.493333pt;}
.ye{bottom:729.213333pt;}
.ya0{bottom:729.693333pt;}
.yb2{bottom:731.133333pt;}
.yc4{bottom:735.133333pt;}
.y37{bottom:735.773333pt;}
.yd{bottom:753.693333pt;}
.y69{bottom:754.653333pt;}
.y4f{bottom:756.093333pt;}
.y9f{bottom:757.213333pt;}
.yb1{bottom:758.653333pt;}
.y36{bottom:763.293333pt;}
.yc3{bottom:772.253333pt;}
.yc{bottom:778.333333pt;}
.y9e{bottom:784.893333pt;}
.y4e{bottom:786.333333pt;}
.yc2{bottom:790.653333pt;}
.y35{bottom:790.973333pt;}
.y9d{bottom:800.453333pt;}
.yb{bottom:802.853333pt;}
.yc1{bottom:809.093333pt;}
.y4d{bottom:813.893333pt;}
.y34{bottom:820.613333pt;}
.ya{bottom:827.333333pt;}
.y64{bottom:837.573333pt;}
.y33{bottom:841.573333pt;}
.yc0{bottom:846.213333pt;}
.y9{bottom:851.973333pt;}
.y9c{bottom:855.973333pt;}
.y32{bottom:859.973333pt;}
.ybf{bottom:864.613333pt;}
.y4c{bottom:869.093333pt;}
.y8{bottom:876.453333pt;}
.y31{bottom:878.373333pt;}
.ybe{bottom:883.013333pt;}
.y30{bottom:896.773333pt;}
.y7{bottom:900.933333pt;}
.ybd{bottom:901.413333pt;}
.y9b{bottom:911.333333pt;}
.y2f{bottom:915.173333pt;}
.ybc{bottom:919.813333pt;}
.y4b{bottom:924.293333pt;}
.y6{bottom:925.573333pt;}
.y2e{bottom:933.573333pt;}
.y5{bottom:949.413333pt;}
.y2d{bottom:951.973333pt;}
.h1a{height:27.360000pt;}
.ha{height:38.441250pt;}
.h17{height:43.108125pt;}
.hf{height:43.782500pt;}
.hc{height:47.180312pt;}
.hd{height:47.621250pt;}
.h15{height:49.542500pt;}
.h13{height:50.880000pt;}
.h19{height:51.937500pt;}
.h8{height:52.750000pt;}
.h2{height:52.785000pt;}
.h18{height:54.720000pt;}
.h1b{height:54.752000pt;}
.h16{height:54.880000pt;}
.h14{height:56.320000pt;}
.h4{height:57.375000pt;}
.h3{height:58.563750pt;}
.h9{height:62.761250pt;}
.h5{height:66.507188pt;}
.h7{height:69.076875pt;}
.hb{height:73.440000pt;}
.h11{height:73.472000pt;}
.h6{height:75.602187pt;}
.he{height:82.272000pt;}
.h12{height:96.480000pt;}
.h10{height:119.360000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:94.560000pt;}
.w4{width:104.032000pt;}
.w12{width:111.712000pt;}
.w7{width:111.840000pt;}
.w9{width:115.232000pt;}
.wa{width:124.480000pt;}
.wb{width:133.786667pt;}
.wd{width:141.600000pt;}
.we{width:150.906667pt;}
.w11{width:151.226667pt;}
.w10{width:153.600000pt;}
.w8{width:155.066667pt;}
.wf{width:160.826667pt;}
.w13{width:169.466667pt;}
.wc{width:170.266667pt;}
.w6{width:200.986667pt;}
.w5{width:205.306667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.200000pt;}
.x15{left:8.160000pt;}
.x24{left:9.120000pt;}
.x10{left:10.880000pt;}
.x22{left:12.480000pt;}
.x1f{left:14.080000pt;}
.x1d{left:17.600000pt;}
.x21{left:19.200000pt;}
.x26{left:20.160000pt;}
.x16{left:21.920000pt;}
.xe{left:23.840000pt;}
.x20{left:24.960000pt;}
.x11{left:27.040000pt;}
.x32{left:28.000000pt;}
.x25{left:29.280000pt;}
.xd{left:30.240000pt;}
.x39{left:31.680000pt;}
.x1a{left:34.560000pt;}
.x2e{left:38.560000pt;}
.x13{left:40.480000pt;}
.x18{left:43.514667pt;}
.x19{left:46.240000pt;}
.x31{left:47.880000pt;}
.x33{left:49.600000pt;}
.x40{left:52.314667pt;}
.x4c{left:53.274667pt;}
.x34{left:54.280000pt;}
.x47{left:56.314667pt;}
.x2c{left:58.120000pt;}
.x41{left:59.520000pt;}
.x23{left:63.040000pt;}
.x43{left:64.026667pt;}
.x44{left:66.074667pt;}
.x1c{left:67.840000pt;}
.x3d{left:69.600000pt;}
.x27{left:71.200000pt;}
.x4d{left:72.640000pt;}
.x1b{left:74.240000pt;}
.x3e{left:78.760000pt;}
.x17{left:81.600000pt;}
.x4b{left:83.200000pt;}
.x42{left:88.960000pt;}
.xa{left:92.831988pt;}
.x1{left:93.791988pt;}
.x3f{left:98.440000pt;}
.x46{left:102.911988pt;}
.x38{left:121.471988pt;}
.x8{left:130.111988pt;}
.x9{left:131.551988pt;}
.x3{left:132.511988pt;}
.x28{left:134.586655pt;}
.xb{left:136.186655pt;}
.x5{left:137.306655pt;}
.x37{left:141.306655pt;}
.x6{left:156.186655pt;}
.xf{left:188.346667pt;}
.x2b{left:205.626667pt;}
.x35{left:225.946655pt;}
.x7{left:233.466655pt;}
.x48{left:247.386667pt;}
.x3a{left:264.066667pt;}
.x36{left:269.186655pt;}
.xc{left:278.786655pt;}
.x12{left:292.386667pt;}
.x29{left:316.226655pt;}
.x2d{left:360.706667pt;}
.x2a{left:367.266655pt;}
.x49{left:398.626667pt;}
.x3b{left:405.666667pt;}
.x45{left:415.266655pt;}
.x2f{left:475.933333pt;}
.x14{left:497.693333pt;}
.x4a{left:510.333333pt;}
.x3c{left:556.573333pt;}
.x30{left:600.413333pt;}
.x2{left:699.813322pt;}
.x4{left:700.773322pt;}
}




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