
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_15b00d0cd7bdf483e602ee11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_92667fd00ff4f026786d02bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_e31a8d1739727d94d22286a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_74a22689f3adb97e21908c29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_bf93747c409b667ccbe955a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_3294084bb1201c6419a47ff9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005400px;}
.ls6{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.013200px;}
.ls4{letter-spacing:1.452000px;}
.ls5{letter-spacing:2.034000px;}
.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:-90.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws9{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.034000px;}
.wsb{word-spacing:-16.513200px;}
.ws7{word-spacing:-16.506600px;}
.ws1{word-spacing:-16.500000px;}
.wsd{word-spacing:-16.452000px;}
.wsa{word-spacing:-15.000000px;}
.wsc{word-spacing:-13.505400px;}
.ws5{word-spacing:-13.500000px;}
.ws11{word-spacing:-10.714290px;}
.ws8{word-spacing:-9.619500px;}
.ws4{word-spacing:-7.870500px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:1.794000px;}
.ws10{word-spacing:4.289945px;}
._0{margin-left:-9.120000px;}
._c{margin-left:-3.181200px;}
._7{margin-left:-1.920600px;}
._5{width:1.002600px;}
._d{width:2.745600px;}
._6{width:3.801600px;}
._4{width:5.101800px;}
._a{width:6.217200px;}
._b{width:8.082600px;}
._1{width:9.188400px;}
._2{width:10.222200px;}
._3{width:11.386200px;}
._8{width:12.540000px;}
._21{width:13.543200px;}
._9{width:14.579400px;}
._19{width:16.746000px;}
._16{width:17.886000px;}
._14{width:19.595400px;}
._18{width:20.710800px;}
._24{width:21.780000px;}
._10{width:22.789800px;}
._e{width:24.723600px;}
._13{width:25.872000px;}
._f{width:27.093000px;}
._11{width:28.287600px;}
._12{width:29.581200px;}
._17{width:31.615200px;}
._1a{width:32.931600px;}
._1c{width:33.955200px;}
._1b{width:35.079000px;}
._23{width:37.534200px;}
._20{width:38.557200px;}
._1e{width:39.586800px;}
._15{width:40.623000px;}
._1d{width:42.094800px;}
._25{width:45.432000px;}
._22{width:49.473600px;}
._1f{width:56.661000px;}
.fc4{color:transparent;}
.fc3{color:rgb(32,94,158);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs9{font-size:42.857160px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:28.645350px;}
.y31{bottom:44.845350px;}
.y24{bottom:56.834700px;}
.y89{bottom:60.295200px;}
.y30{bottom:61.045350px;}
.yc7{bottom:108.151200px;}
.y135{bottom:109.559400px;}
.y2f{bottom:112.314900px;}
.yd6{bottom:112.583550px;}
.y8d{bottom:118.181850px;}
.yaa{bottom:123.074700px;}
.y10d{bottom:126.850650px;}
.ydf{bottom:127.318500px;}
.y134{bottom:127.559400px;}
.yc6{bottom:127.951200px;}
.yd5{bottom:128.783550px;}
.y2e{bottom:130.314900px;}
.y8c{bottom:131.686350px;}
.ya9{bottom:141.074700px;}
.y133{bottom:145.559400px;}
.y10c{bottom:146.650650px;}
.yde{bottom:147.118500px;}
.yc5{bottom:147.751200px;}
.y2d{bottom:148.314900px;}
.y8b{bottom:149.686350px;}
.ya8{bottom:159.075000px;}
.y132{bottom:163.560000px;}
.y2c{bottom:166.315500px;}
.y10b{bottom:166.450500px;}
.ydd{bottom:166.918500px;}
.yc4{bottom:167.551500px;}
.y8a{bottom:172.182000px;}
.ya7{bottom:177.075000px;}
.y131{bottom:181.560000px;}
.y10a{bottom:186.250500px;}
.ydc{bottom:186.718500px;}
.yc3{bottom:187.351500px;}
.y2b{bottom:188.811000px;}
.ya6{bottom:195.075000px;}
.y109{bottom:206.050500px;}
.ydb{bottom:206.518500px;}
.yc2{bottom:207.151500px;}
.y130{bottom:212.316000px;}
.ya5{bottom:213.075000px;}
.y88{bottom:217.006500px;}
.y108{bottom:225.850500px;}
.y61{bottom:226.318500px;}
.yc1{bottom:226.951500px;}
.ya4{bottom:231.075000px;}
.y87{bottom:236.806500px;}
.y107{bottom:245.650500px;}
.y60{bottom:246.118500px;}
.yc0{bottom:246.751500px;}
.ya3{bottom:249.075000px;}
.y23{bottom:265.329000px;}
.y106{bottom:265.450500px;}
.y1c{bottom:265.797000px;}
.y5f{bottom:265.918500px;}
.ybf{bottom:266.551500px;}
.ya2{bottom:267.075000px;}
.y12f{bottom:267.123000px;}
.y86{bottom:269.362500px;}
.ya1{bottom:285.075000px;}
.y12e{bottom:285.123000px;}
.y22{bottom:285.129000px;}
.y105{bottom:285.250500px;}
.y1b{bottom:285.597000px;}
.yda{bottom:285.718500px;}
.ybe{bottom:286.351500px;}
.y85{bottom:290.962500px;}
.y5e{bottom:298.474500px;}
.ya0{bottom:303.075000px;}
.y12d{bottom:303.123000px;}
.y21{bottom:304.929000px;}
.y104{bottom:305.050500px;}
.yd9{bottom:305.518500px;}
.ybd{bottom:306.151500px;}
.y1a{bottom:318.153000px;}
.y5d{bottom:318.274500px;}
.y9f{bottom:321.075000px;}
.y20{bottom:324.729000px;}
.y103{bottom:324.850500px;}
.yd8{bottom:325.318500px;}
.ybc{bottom:325.951500px;}
.y12c{bottom:329.626500px;}
.y19{bottom:337.953000px;}
.y5c{bottom:338.074500px;}
.y9e{bottom:339.075000px;}
.y1f{bottom:344.529000px;}
.y102{bottom:344.650500px;}
.yd7{bottom:345.118500px;}
.ybb{bottom:345.751500px;}
.y12b{bottom:347.626500px;}
.y9d{bottom:357.075000px;}
.y18{bottom:357.753000px;}
.y5b{bottom:357.874500px;}
.y1e{bottom:364.329000px;}
.y101{bottom:364.450500px;}
.ye3{bottom:364.918500px;}
.yba{bottom:365.551500px;}
.y12a{bottom:365.626500px;}
.y84{bottom:370.630500px;}
.y9c{bottom:375.075000px;}
.y17{bottom:377.553000px;}
.y5a{bottom:377.674500px;}
.y129{bottom:383.626500px;}
.y100{bottom:384.250500px;}
.ye2{bottom:384.718500px;}
.yb9{bottom:385.351500px;}
.y83{bottom:390.430500px;}
.y9b{bottom:393.075000px;}
.y1d{bottom:396.885000px;}
.y16{bottom:397.353000px;}
.y59{bottom:397.474500px;}
.y128{bottom:401.626500px;}
.yff{bottom:404.050500px;}
.yb8{bottom:405.151500px;}
.y82{bottom:410.230500px;}
.y9a{bottom:411.075000px;}
.y15{bottom:417.153000px;}
.y58{bottom:417.274500px;}
.yb7{bottom:424.951500px;}
.y127{bottom:428.131500px;}
.y99{bottom:429.075000px;}
.y81{bottom:430.030500px;}
.yfe{bottom:436.606500px;}
.y14{bottom:436.953000px;}
.y57{bottom:437.074500px;}
.yb6{bottom:444.751500px;}
.y126{bottom:446.131500px;}
.y98{bottom:447.075000px;}
.y80{bottom:449.830500px;}
.yfd{bottom:456.406500px;}
.y13{bottom:456.753000px;}
.y56{bottom:456.874500px;}
.y125{bottom:464.131500px;}
.yb5{bottom:464.551500px;}
.y97{bottom:465.075000px;}
.y7f{bottom:469.630500px;}
.yfc{bottom:476.206500px;}
.y12{bottom:476.553000px;}
.y55{bottom:476.674500px;}
.y96{bottom:483.075000px;}
.yb4{bottom:484.351500px;}
.y7e{bottom:489.430500px;}
.y124{bottom:490.635000px;}
.yfb{bottom:496.006500px;}
.y11{bottom:496.353000px;}
.y54{bottom:496.474500px;}
.yb3{bottom:504.151500px;}
.y123{bottom:508.635000px;}
.y7d{bottom:509.230500px;}
.yfa{bottom:515.806500px;}
.y10{bottom:516.153000px;}
.y53{bottom:516.274500px;}
.yb2{bottom:523.951500px;}
.y122{bottom:526.635000px;}
.y7c{bottom:529.030500px;}
.yf9{bottom:535.606500px;}
.yf{bottom:535.953000px;}
.y52{bottom:536.074500px;}
.yb1{bottom:543.751500px;}
.y121{bottom:544.635000px;}
.y95{bottom:546.387000px;}
.y7b{bottom:548.830500px;}
.yd4{bottom:550.006500px;}
.yf8{bottom:555.406500px;}
.ye{bottom:555.753000px;}
.y51{bottom:555.874500px;}
.y120{bottom:562.635000px;}
.y94{bottom:566.187000px;}
.y7a{bottom:568.630500px;}
.yd3{bottom:569.806500px;}
.yf7{bottom:575.206500px;}
.yd{bottom:575.553000px;}
.y50{bottom:575.674500px;}
.y11f{bottom:580.635000px;}
.y93{bottom:585.987000px;}
.y79{bottom:588.430500px;}
.yd2{bottom:589.606500px;}
.yf6{bottom:595.006500px;}
.yc{bottom:595.353000px;}
.y4f{bottom:595.474500px;}
.yb0{bottom:596.107500px;}
.y11e{bottom:598.635000px;}
.y92{bottom:605.787000px;}
.y78{bottom:608.230500px;}
.yaf{bottom:614.107500px;}
.yf5{bottom:614.806500px;}
.yb{bottom:615.153000px;}
.y4e{bottom:615.274500px;}
.y11d{bottom:616.635000px;}
.y91{bottom:625.587000px;}
.y77{bottom:628.030500px;}
.yae{bottom:632.107500px;}
.yf4{bottom:634.606500px;}
.y11c{bottom:634.635000px;}
.ya{bottom:634.953000px;}
.y4d{bottom:635.074500px;}
.yd1{bottom:641.962500px;}
.y90{bottom:645.387000px;}
.y76{bottom:647.830500px;}
.yad{bottom:650.107500px;}
.yf3{bottom:654.406500px;}
.y9{bottom:654.753000px;}
.y4c{bottom:654.874500px;}
.yd0{bottom:659.962500px;}
.y11b{bottom:661.138500px;}
.y8f{bottom:665.187000px;}
.y75{bottom:667.630500px;}
.yac{bottom:668.107500px;}
.yf2{bottom:674.206500px;}
.y8{bottom:674.553000px;}
.y4b{bottom:674.674500px;}
.ycf{bottom:677.962500px;}
.y11a{bottom:679.138500px;}
.y8e{bottom:684.987000px;}
.yab{bottom:686.107500px;}
.y74{bottom:687.430500px;}
.yf1{bottom:694.006500px;}
.y7{bottom:694.353000px;}
.y4a{bottom:694.474500px;}
.yce{bottom:695.962500px;}
.y119{bottom:705.643500px;}
.y73{bottom:707.230500px;}
.yf0{bottom:713.806500px;}
.ycd{bottom:713.962500px;}
.y6{bottom:714.153000px;}
.y49{bottom:714.274500px;}
.y118{bottom:723.643500px;}
.y72{bottom:727.030500px;}
.ycc{bottom:731.962500px;}
.yef{bottom:733.606500px;}
.y5{bottom:733.953000px;}
.y48{bottom:734.074500px;}
.yc9{bottom:737.674500px;}
.y71{bottom:746.830500px;}
.ycb{bottom:749.962500px;}
.y117{bottom:750.147000px;}
.yee{bottom:753.406500px;}
.y4{bottom:753.753000px;}
.y47{bottom:753.874500px;}
.y70{bottom:766.630500px;}
.y116{bottom:768.147000px;}
.yed{bottom:773.206500px;}
.y3{bottom:773.553000px;}
.y46{bottom:773.674500px;}
.y115{bottom:786.147000px;}
.y6f{bottom:786.430500px;}
.yec{bottom:793.006500px;}
.y45{bottom:793.474500px;}
.y6e{bottom:806.230500px;}
.y114{bottom:812.650500px;}
.yeb{bottom:812.806500px;}
.y44{bottom:813.274500px;}
.y6d{bottom:826.030500px;}
.y113{bottom:830.650500px;}
.yea{bottom:832.606500px;}
.y43{bottom:833.074500px;}
.y6c{bottom:845.830500px;}
.y112{bottom:848.650500px;}
.ye9{bottom:852.406500px;}
.y42{bottom:852.874500px;}
.y2a{bottom:859.635000px;}
.y6b{bottom:865.630500px;}
.y111{bottom:866.650500px;}
.ye8{bottom:872.206500px;}
.y41{bottom:872.674500px;}
.y29{bottom:877.635000px;}
.y6a{bottom:885.430500px;}
.ye7{bottom:892.006500px;}
.y40{bottom:892.474500px;}
.y110{bottom:893.154000px;}
.y69{bottom:905.230500px;}
.y10f{bottom:911.154000px;}
.ye6{bottom:911.806500px;}
.y3f{bottom:912.274500px;}
.y28{bottom:913.635000px;}
.y68{bottom:925.030500px;}
.y10e{bottom:929.154000px;}
.ye5{bottom:931.606500px;}
.y3e{bottom:932.074500px;}
.y67{bottom:944.830500px;}
.y3d{bottom:951.874500px;}
.y27{bottom:956.835000px;}
.ye4{bottom:964.162500px;}
.y66{bottom:964.630500px;}
.y3c{bottom:971.674500px;}
.y65{bottom:984.430500px;}
.y3b{bottom:991.474500px;}
.y26{bottom:992.835000px;}
.y64{bottom:1004.230500px;}
.y3a{bottom:1011.274500px;}
.y63{bottom:1024.030500px;}
.y25{bottom:1028.835000px;}
.y39{bottom:1031.074500px;}
.y62{bottom:1043.830500px;}
.yca{bottom:1050.874500px;}
.y38{bottom:1063.630500px;}
.ye1{bottom:1070.674500px;}
.y13a{bottom:1071.921000px;}
.y37{bottom:1083.430500px;}
.y139{bottom:1089.921000px;}
.ye0{bottom:1090.474500px;}
.y2{bottom:1100.785500px;}
.y36{bottom:1103.230500px;}
.y138{bottom:1107.921000px;}
.y35{bottom:1123.030500px;}
.y137{bottom:1125.921000px;}
.y34{bottom:1142.830500px;}
.y136{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.y33{bottom:1203.604500px;}
.yc8{bottom:1204.695000px;}
.hc{height:23.678156px;}
.hf{height:39.313477px;}
.he{height:39.366211px;}
.hd{height:41.660156px;}
.hb{height:43.535156px;}
.h10{height:43.681641px;}
.h12{height:43.740234px;}
.h11{height:47.888672px;}
.h4{height:48.049805px;}
.h7{height:48.114258px;}
.h5{height:49.991036px;}
.ha{height:52.417969px;}
.h6{height:52.488281px;}
.h3{height:65.610352px;}
.h9{height:87.480469px;}
.h2{height:171.000000px;}
.h8{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:44.645700px;}
.xe{left:46.771650px;}
.x4{left:108.000000px;}
.x11{left:120.755850px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x9{left:130.287150px;}
.x2{left:131.834700px;}
.x10{left:142.015800px;}
.xc{left:285.271500px;}
.xa{left:325.221000px;}
.xd{left:347.472000px;}
.xb{left:354.321000px;}
.x5{left:467.716500px;}
.x12{left:480.472500px;}
.x17{left:484.725000px;}
.x6{left:488.976000px;}
.x13{left:501.732000px;}
.x15{left:625.027500px;}
.x14{left:631.525500px;}
.x16{left:653.959500px;}
.x8{left:833.893500px;}
.x7{left:836.019000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004800pt;}
.ls6{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.011733pt;}
.ls4{letter-spacing:1.290667pt;}
.ls5{letter-spacing:1.808000pt;}
.ws3{word-spacing:-80.000000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.141333pt;}
.wsb{word-spacing:-14.678400pt;}
.ws7{word-spacing:-14.672533pt;}
.ws1{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.624000pt;}
.wsa{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.004800pt;}
.ws5{word-spacing:-12.000000pt;}
.ws11{word-spacing:-9.523813pt;}
.ws8{word-spacing:-8.550667pt;}
.ws4{word-spacing:-6.996000pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:1.594667pt;}
.ws10{word-spacing:3.813285pt;}
._0{margin-left:-8.106667pt;}
._c{margin-left:-2.827733pt;}
._7{margin-left:-1.707200pt;}
._5{width:0.891200pt;}
._d{width:2.440533pt;}
._6{width:3.379200pt;}
._4{width:4.534933pt;}
._a{width:5.526400pt;}
._b{width:7.184533pt;}
._1{width:8.167467pt;}
._2{width:9.086400pt;}
._3{width:10.121067pt;}
._8{width:11.146667pt;}
._21{width:12.038400pt;}
._9{width:12.959467pt;}
._19{width:14.885333pt;}
._16{width:15.898667pt;}
._14{width:17.418133pt;}
._18{width:18.409600pt;}
._24{width:19.360000pt;}
._10{width:20.257600pt;}
._e{width:21.976533pt;}
._13{width:22.997333pt;}
._f{width:24.082667pt;}
._11{width:25.144533pt;}
._12{width:26.294400pt;}
._17{width:28.102400pt;}
._1a{width:29.272533pt;}
._1c{width:30.182400pt;}
._1b{width:31.181333pt;}
._23{width:33.363733pt;}
._20{width:34.273067pt;}
._1e{width:35.188267pt;}
._15{width:36.109333pt;}
._1d{width:37.417600pt;}
._25{width:40.384000pt;}
._22{width:43.976533pt;}
._1f{width:50.365333pt;}
.fs7{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs9{font-size:38.095253pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:25.462533pt;}
.y31{bottom:39.862533pt;}
.y24{bottom:50.519733pt;}
.y89{bottom:53.595733pt;}
.y30{bottom:54.262533pt;}
.yc7{bottom:96.134400pt;}
.y135{bottom:97.386133pt;}
.y2f{bottom:99.835467pt;}
.yd6{bottom:100.074267pt;}
.y8d{bottom:105.050533pt;}
.yaa{bottom:109.399733pt;}
.y10d{bottom:112.756133pt;}
.ydf{bottom:113.172000pt;}
.y134{bottom:113.386133pt;}
.yc6{bottom:113.734400pt;}
.yd5{bottom:114.474267pt;}
.y2e{bottom:115.835467pt;}
.y8c{bottom:117.054533pt;}
.ya9{bottom:125.399733pt;}
.y133{bottom:129.386133pt;}
.y10c{bottom:130.356133pt;}
.yde{bottom:130.772000pt;}
.yc5{bottom:131.334400pt;}
.y2d{bottom:131.835467pt;}
.y8b{bottom:133.054533pt;}
.ya8{bottom:141.400000pt;}
.y132{bottom:145.386667pt;}
.y2c{bottom:147.836000pt;}
.y10b{bottom:147.956000pt;}
.ydd{bottom:148.372000pt;}
.yc4{bottom:148.934667pt;}
.y8a{bottom:153.050667pt;}
.ya7{bottom:157.400000pt;}
.y131{bottom:161.386667pt;}
.y10a{bottom:165.556000pt;}
.ydc{bottom:165.972000pt;}
.yc3{bottom:166.534667pt;}
.y2b{bottom:167.832000pt;}
.ya6{bottom:173.400000pt;}
.y109{bottom:183.156000pt;}
.ydb{bottom:183.572000pt;}
.yc2{bottom:184.134667pt;}
.y130{bottom:188.725333pt;}
.ya5{bottom:189.400000pt;}
.y88{bottom:192.894667pt;}
.y108{bottom:200.756000pt;}
.y61{bottom:201.172000pt;}
.yc1{bottom:201.734667pt;}
.ya4{bottom:205.400000pt;}
.y87{bottom:210.494667pt;}
.y107{bottom:218.356000pt;}
.y60{bottom:218.772000pt;}
.yc0{bottom:219.334667pt;}
.ya3{bottom:221.400000pt;}
.y23{bottom:235.848000pt;}
.y106{bottom:235.956000pt;}
.y1c{bottom:236.264000pt;}
.y5f{bottom:236.372000pt;}
.ybf{bottom:236.934667pt;}
.ya2{bottom:237.400000pt;}
.y12f{bottom:237.442667pt;}
.y86{bottom:239.433333pt;}
.ya1{bottom:253.400000pt;}
.y12e{bottom:253.442667pt;}
.y22{bottom:253.448000pt;}
.y105{bottom:253.556000pt;}
.y1b{bottom:253.864000pt;}
.yda{bottom:253.972000pt;}
.ybe{bottom:254.534667pt;}
.y85{bottom:258.633333pt;}
.y5e{bottom:265.310667pt;}
.ya0{bottom:269.400000pt;}
.y12d{bottom:269.442667pt;}
.y21{bottom:271.048000pt;}
.y104{bottom:271.156000pt;}
.yd9{bottom:271.572000pt;}
.ybd{bottom:272.134667pt;}
.y1a{bottom:282.802667pt;}
.y5d{bottom:282.910667pt;}
.y9f{bottom:285.400000pt;}
.y20{bottom:288.648000pt;}
.y103{bottom:288.756000pt;}
.yd8{bottom:289.172000pt;}
.ybc{bottom:289.734667pt;}
.y12c{bottom:293.001333pt;}
.y19{bottom:300.402667pt;}
.y5c{bottom:300.510667pt;}
.y9e{bottom:301.400000pt;}
.y1f{bottom:306.248000pt;}
.y102{bottom:306.356000pt;}
.yd7{bottom:306.772000pt;}
.ybb{bottom:307.334667pt;}
.y12b{bottom:309.001333pt;}
.y9d{bottom:317.400000pt;}
.y18{bottom:318.002667pt;}
.y5b{bottom:318.110667pt;}
.y1e{bottom:323.848000pt;}
.y101{bottom:323.956000pt;}
.ye3{bottom:324.372000pt;}
.yba{bottom:324.934667pt;}
.y12a{bottom:325.001333pt;}
.y84{bottom:329.449333pt;}
.y9c{bottom:333.400000pt;}
.y17{bottom:335.602667pt;}
.y5a{bottom:335.710667pt;}
.y129{bottom:341.001333pt;}
.y100{bottom:341.556000pt;}
.ye2{bottom:341.972000pt;}
.yb9{bottom:342.534667pt;}
.y83{bottom:347.049333pt;}
.y9b{bottom:349.400000pt;}
.y1d{bottom:352.786667pt;}
.y16{bottom:353.202667pt;}
.y59{bottom:353.310667pt;}
.y128{bottom:357.001333pt;}
.yff{bottom:359.156000pt;}
.yb8{bottom:360.134667pt;}
.y82{bottom:364.649333pt;}
.y9a{bottom:365.400000pt;}
.y15{bottom:370.802667pt;}
.y58{bottom:370.910667pt;}
.yb7{bottom:377.734667pt;}
.y127{bottom:380.561333pt;}
.y99{bottom:381.400000pt;}
.y81{bottom:382.249333pt;}
.yfe{bottom:388.094667pt;}
.y14{bottom:388.402667pt;}
.y57{bottom:388.510667pt;}
.yb6{bottom:395.334667pt;}
.y126{bottom:396.561333pt;}
.y98{bottom:397.400000pt;}
.y80{bottom:399.849333pt;}
.yfd{bottom:405.694667pt;}
.y13{bottom:406.002667pt;}
.y56{bottom:406.110667pt;}
.y125{bottom:412.561333pt;}
.yb5{bottom:412.934667pt;}
.y97{bottom:413.400000pt;}
.y7f{bottom:417.449333pt;}
.yfc{bottom:423.294667pt;}
.y12{bottom:423.602667pt;}
.y55{bottom:423.710667pt;}
.y96{bottom:429.400000pt;}
.yb4{bottom:430.534667pt;}
.y7e{bottom:435.049333pt;}
.y124{bottom:436.120000pt;}
.yfb{bottom:440.894667pt;}
.y11{bottom:441.202667pt;}
.y54{bottom:441.310667pt;}
.yb3{bottom:448.134667pt;}
.y123{bottom:452.120000pt;}
.y7d{bottom:452.649333pt;}
.yfa{bottom:458.494667pt;}
.y10{bottom:458.802667pt;}
.y53{bottom:458.910667pt;}
.yb2{bottom:465.734667pt;}
.y122{bottom:468.120000pt;}
.y7c{bottom:470.249333pt;}
.yf9{bottom:476.094667pt;}
.yf{bottom:476.402667pt;}
.y52{bottom:476.510667pt;}
.yb1{bottom:483.334667pt;}
.y121{bottom:484.120000pt;}
.y95{bottom:485.677333pt;}
.y7b{bottom:487.849333pt;}
.yd4{bottom:488.894667pt;}
.yf8{bottom:493.694667pt;}
.ye{bottom:494.002667pt;}
.y51{bottom:494.110667pt;}
.y120{bottom:500.120000pt;}
.y94{bottom:503.277333pt;}
.y7a{bottom:505.449333pt;}
.yd3{bottom:506.494667pt;}
.yf7{bottom:511.294667pt;}
.yd{bottom:511.602667pt;}
.y50{bottom:511.710667pt;}
.y11f{bottom:516.120000pt;}
.y93{bottom:520.877333pt;}
.y79{bottom:523.049333pt;}
.yd2{bottom:524.094667pt;}
.yf6{bottom:528.894667pt;}
.yc{bottom:529.202667pt;}
.y4f{bottom:529.310667pt;}
.yb0{bottom:529.873333pt;}
.y11e{bottom:532.120000pt;}
.y92{bottom:538.477333pt;}
.y78{bottom:540.649333pt;}
.yaf{bottom:545.873333pt;}
.yf5{bottom:546.494667pt;}
.yb{bottom:546.802667pt;}
.y4e{bottom:546.910667pt;}
.y11d{bottom:548.120000pt;}
.y91{bottom:556.077333pt;}
.y77{bottom:558.249333pt;}
.yae{bottom:561.873333pt;}
.yf4{bottom:564.094667pt;}
.y11c{bottom:564.120000pt;}
.ya{bottom:564.402667pt;}
.y4d{bottom:564.510667pt;}
.yd1{bottom:570.633333pt;}
.y90{bottom:573.677333pt;}
.y76{bottom:575.849333pt;}
.yad{bottom:577.873333pt;}
.yf3{bottom:581.694667pt;}
.y9{bottom:582.002667pt;}
.y4c{bottom:582.110667pt;}
.yd0{bottom:586.633333pt;}
.y11b{bottom:587.678667pt;}
.y8f{bottom:591.277333pt;}
.y75{bottom:593.449333pt;}
.yac{bottom:593.873333pt;}
.yf2{bottom:599.294667pt;}
.y8{bottom:599.602667pt;}
.y4b{bottom:599.710667pt;}
.ycf{bottom:602.633333pt;}
.y11a{bottom:603.678667pt;}
.y8e{bottom:608.877333pt;}
.yab{bottom:609.873333pt;}
.y74{bottom:611.049333pt;}
.yf1{bottom:616.894667pt;}
.y7{bottom:617.202667pt;}
.y4a{bottom:617.310667pt;}
.yce{bottom:618.633333pt;}
.y119{bottom:627.238667pt;}
.y73{bottom:628.649333pt;}
.yf0{bottom:634.494667pt;}
.ycd{bottom:634.633333pt;}
.y6{bottom:634.802667pt;}
.y49{bottom:634.910667pt;}
.y118{bottom:643.238667pt;}
.y72{bottom:646.249333pt;}
.ycc{bottom:650.633333pt;}
.yef{bottom:652.094667pt;}
.y5{bottom:652.402667pt;}
.y48{bottom:652.510667pt;}
.yc9{bottom:655.710667pt;}
.y71{bottom:663.849333pt;}
.ycb{bottom:666.633333pt;}
.y117{bottom:666.797333pt;}
.yee{bottom:669.694667pt;}
.y4{bottom:670.002667pt;}
.y47{bottom:670.110667pt;}
.y70{bottom:681.449333pt;}
.y116{bottom:682.797333pt;}
.yed{bottom:687.294667pt;}
.y3{bottom:687.602667pt;}
.y46{bottom:687.710667pt;}
.y115{bottom:698.797333pt;}
.y6f{bottom:699.049333pt;}
.yec{bottom:704.894667pt;}
.y45{bottom:705.310667pt;}
.y6e{bottom:716.649333pt;}
.y114{bottom:722.356000pt;}
.yeb{bottom:722.494667pt;}
.y44{bottom:722.910667pt;}
.y6d{bottom:734.249333pt;}
.y113{bottom:738.356000pt;}
.yea{bottom:740.094667pt;}
.y43{bottom:740.510667pt;}
.y6c{bottom:751.849333pt;}
.y112{bottom:754.356000pt;}
.ye9{bottom:757.694667pt;}
.y42{bottom:758.110667pt;}
.y2a{bottom:764.120000pt;}
.y6b{bottom:769.449333pt;}
.y111{bottom:770.356000pt;}
.ye8{bottom:775.294667pt;}
.y41{bottom:775.710667pt;}
.y29{bottom:780.120000pt;}
.y6a{bottom:787.049333pt;}
.ye7{bottom:792.894667pt;}
.y40{bottom:793.310667pt;}
.y110{bottom:793.914667pt;}
.y69{bottom:804.649333pt;}
.y10f{bottom:809.914667pt;}
.ye6{bottom:810.494667pt;}
.y3f{bottom:810.910667pt;}
.y28{bottom:812.120000pt;}
.y68{bottom:822.249333pt;}
.y10e{bottom:825.914667pt;}
.ye5{bottom:828.094667pt;}
.y3e{bottom:828.510667pt;}
.y67{bottom:839.849333pt;}
.y3d{bottom:846.110667pt;}
.y27{bottom:850.520000pt;}
.ye4{bottom:857.033333pt;}
.y66{bottom:857.449333pt;}
.y3c{bottom:863.710667pt;}
.y65{bottom:875.049333pt;}
.y3b{bottom:881.310667pt;}
.y26{bottom:882.520000pt;}
.y64{bottom:892.649333pt;}
.y3a{bottom:898.910667pt;}
.y63{bottom:910.249333pt;}
.y25{bottom:914.520000pt;}
.y39{bottom:916.510667pt;}
.y62{bottom:927.849333pt;}
.yca{bottom:934.110667pt;}
.y38{bottom:945.449333pt;}
.ye1{bottom:951.710667pt;}
.y13a{bottom:952.818667pt;}
.y37{bottom:963.049333pt;}
.y139{bottom:968.818667pt;}
.ye0{bottom:969.310667pt;}
.y2{bottom:978.476000pt;}
.y36{bottom:980.649333pt;}
.y138{bottom:984.818667pt;}
.y35{bottom:998.249333pt;}
.y137{bottom:1000.818667pt;}
.y34{bottom:1015.849333pt;}
.y136{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.y33{bottom:1069.870667pt;}
.yc8{bottom:1070.840000pt;}
.hc{height:21.047250pt;}
.hf{height:34.945312pt;}
.he{height:34.992188pt;}
.hd{height:37.031250pt;}
.hb{height:38.697917pt;}
.h10{height:38.828125pt;}
.h12{height:38.880208pt;}
.h11{height:42.567708pt;}
.h4{height:42.710938pt;}
.h7{height:42.768229pt;}
.h5{height:44.436477pt;}
.ha{height:46.593750pt;}
.h6{height:46.656250pt;}
.h3{height:58.320312pt;}
.h9{height:77.760417pt;}
.h2{height:152.000000pt;}
.h8{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:39.685067pt;}
.xe{left:41.574800pt;}
.x4{left:96.000000pt;}
.x11{left:107.338533pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x9{left:115.810800pt;}
.x2{left:117.186400pt;}
.x10{left:126.236267pt;}
.xc{left:253.574667pt;}
.xa{left:289.085333pt;}
.xd{left:308.864000pt;}
.xb{left:314.952000pt;}
.x5{left:415.748000pt;}
.x12{left:427.086667pt;}
.x17{left:430.866667pt;}
.x6{left:434.645333pt;}
.x13{left:445.984000pt;}
.x15{left:555.580000pt;}
.x14{left:561.356000pt;}
.x16{left:581.297333pt;}
.x8{left:741.238667pt;}
.x7{left:743.128000pt;}
}




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