
    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_b3c7d113d13bda1da6e97c7f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_db89a3f8ecaa391f1cc36a51.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_6dcd09575242254ee643681b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_6e432fbd74dc47ec563ac742.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_0d30a08ab218e08aca6e2d1b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_5245f6fd9eb6a5c1e3cb3e6a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_176bef9af71d48ba9752b771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_69e23d8af0a91976c520ac49.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_338b97ca7e0866b8739271e3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_1dee7bee4ab6b910884a271c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_5245f6fd9eb6a5c1e3cb3e6a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-60.000000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.496200px;}
.v4{vertical-align:6.540000px;}
.v1{vertical-align:21.978000px;}
.v6{vertical-align:48.000000px;}
.lsa{letter-spacing:-4.662000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005520px;}
.lsd{letter-spacing:0.511800px;}
.ls5{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.726000px;}
.ls10{letter-spacing:0.906600px;}
.ls7{letter-spacing:1.452000px;}
.ls4{letter-spacing:2.376000px;}
.ls8{letter-spacing:2.904000px;}
.lsf{letter-spacing:3.239400px;}
.lse{letter-spacing:12.162600px;}
.ls11{letter-spacing:13.560600px;}
.ls12{letter-spacing:14.157000px;}
.ls6{letter-spacing:18.240600px;}
.lsb{letter-spacing:36.226200px;}
.ls9{letter-spacing:54.562800px;}
.ls13{letter-spacing:76.743600px;}
.ls1{letter-spacing:905.907600px;}
.ls3{letter-spacing:919.264200px;}
.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;}
}
.ws2{word-spacing:-21.684000px;}
.ws31{word-spacing:-21.252000px;}
.ws2e{word-spacing:-20.724000px;}
.ws30{word-spacing:-19.800000px;}
.ws36{word-spacing:-19.074000px;}
.ws2f{word-spacing:-19.008000px;}
.ws6{word-spacing:-18.348000px;}
.ws1{word-spacing:-15.012000px;}
.ws0{word-spacing:-11.577000px;}
.ws1d{word-spacing:-7.986000px;}
.ws1c{word-spacing:-3.960000px;}
.wse{word-spacing:-3.234000px;}
.ws16{word-spacing:-3.168000px;}
.ws7{word-spacing:-2.244000px;}
.wsf{word-spacing:-1.914000px;}
.ws13{word-spacing:-1.320000px;}
.ws33{word-spacing:-1.188000px;}
.ws12{word-spacing:-0.132000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.132000px;}
.wsa{word-spacing:0.330000px;}
.ws11{word-spacing:0.858000px;}
.ws29{word-spacing:1.188000px;}
.ws4{word-spacing:1.254000px;}
.ws9{word-spacing:1.980000px;}
.ws28{word-spacing:2.244000px;}
.ws8{word-spacing:2.508000px;}
.ws2b{word-spacing:3.564000px;}
.ws5{word-spacing:4.158000px;}
.ws32{word-spacing:4.662000px;}
.ws2c{word-spacing:6.732000px;}
.ws10{word-spacing:7.194000px;}
.ws17{word-spacing:7.260000px;}
.ws2d{word-spacing:7.788000px;}
.ws15{word-spacing:9.504000px;}
.ws25{word-spacing:9.966000px;}
.wsc{word-spacing:10.626000px;}
.ws35{word-spacing:10.956000px;}
.wsd{word-spacing:11.550000px;}
.ws34{word-spacing:12.540000px;}
.ws38{word-spacing:13.860000px;}
.ws23{word-spacing:15.048000px;}
.wsb{word-spacing:16.434000px;}
.ws14{word-spacing:18.876000px;}
.ws24{word-spacing:20.460000px;}
.ws1f{word-spacing:21.912000px;}
.ws39{word-spacing:25.608000px;}
.ws22{word-spacing:31.878000px;}
.ws20{word-spacing:32.406000px;}
.ws1a{word-spacing:34.518000px;}
.ws1e{word-spacing:36.102000px;}
.ws37{word-spacing:38.280000px;}
.ws19{word-spacing:45.672000px;}
.ws21{word-spacing:48.906000px;}
.ws18{word-spacing:50.622000px;}
.ws27{word-spacing:110.880000px;}
.ws26{word-spacing:205.656000px;}
.ws2a{word-spacing:884.241000px;}
._1f{margin-left:-13.747800px;}
._3d{margin-left:-10.830600px;}
._20{margin-left:-8.692200px;}
._f{margin-left:-7.246800px;}
._10{margin-left:-5.945400px;}
._c{margin-left:-4.263000px;}
._8{margin-left:-3.021300px;}
._0{margin-left:-1.229100px;}
._7{width:1.518000px;}
._e{width:2.527800px;}
._6{width:3.616800px;}
._1{width:4.989600px;}
._4{width:6.138000px;}
._5{width:7.629600px;}
._3{width:9.312600px;}
._12{width:10.375200px;}
._d{width:12.117600px;}
._9{width:13.945800px;}
._13{width:15.371400px;}
._15{width:16.599000px;}
._a{width:20.077200px;}
._14{width:21.146400px;}
._27{width:22.704000px;}
._2{width:25.495800px;}
._b{width:27.343800px;}
._1b{width:29.178600px;}
._1c{width:30.228000px;}
._26{width:32.432400px;}
._16{width:34.036200px;}
._1d{width:35.419200px;}
._23{width:37.065600px;}
._1e{width:38.636400px;}
._18{width:44.655600px;}
._1a{width:48.239400px;}
._19{width:50.497800px;}
._24{width:52.483200px;}
._34{width:55.789800px;}
._2d{width:57.327600px;}
._2e{width:59.782800px;}
._2f{width:62.251200px;}
._25{width:63.775800px;}
._38{width:74.887200px;}
._3e{width:76.751400px;}
._36{width:86.433600px;}
._35{width:88.347600px;}
._33{width:108.444600px;}
._3b{width:125.096400px;}
._2a{width:135.952200px;}
._29{width:143.278200px;}
._3a{width:150.757200px;}
._30{width:170.632800px;}
._39{width:179.487000px;}
._22{width:187.300200px;}
._37{width:197.704800px;}
._28{width:238.714200px;}
._2c{width:257.770800px;}
._31{width:258.815400px;}
._3c{width:476.986200px;}
._11{width:494.505000px;}
._2b{width:506.967000px;}
._32{width:572.593800px;}
._21{width:907.870800px;}
._17{width:944.170200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.047350px;}
.y2b{bottom:69.131850px;}
.y57{bottom:69.784350px;}
.y56{bottom:70.766850px;}
.y55{bottom:71.753850px;}
.y1{bottom:79.300200px;}
.y3{bottom:81.547350px;}
.y2{bottom:95.047350px;}
.y59{bottom:119.987550px;}
.y50{bottom:122.987550px;}
.y74{bottom:130.116000px;}
.y7f{bottom:134.987550px;}
.y1a{bottom:143.987550px;}
.y4f{bottom:146.987550px;}
.y7e{bottom:158.987550px;}
.y19{bottom:167.987550px;}
.y73{bottom:168.966000px;}
.y4e{bottom:170.987550px;}
.y7d{bottom:182.987550px;}
.y18{bottom:191.987550px;}
.y72{bottom:192.966000px;}
.y4d{bottom:194.987550px;}
.y6f{bottom:201.366000px;}
.y7c{bottom:206.987550px;}
.y58{bottom:215.987550px;}
.y71{bottom:216.966000px;}
.y4c{bottom:218.987550px;}
.y6e{bottom:221.166000px;}
.y81{bottom:230.987550px;}
.y17{bottom:239.987550px;}
.y70{bottom:240.966000px;}
.y4b{bottom:242.987550px;}
.y7b{bottom:254.987550px;}
.y16{bottom:263.987550px;}
.y6d{bottom:264.978450px;}
.y4a{bottom:266.987550px;}
.yb7{bottom:269.101500px;}
.y7a{bottom:278.987550px;}
.y15{bottom:287.987550px;}
.y6b{bottom:288.978450px;}
.y49{bottom:290.987550px;}
.yb6{bottom:293.101500px;}
.y79{bottom:302.987550px;}
.y14{bottom:311.987550px;}
.y6a{bottom:312.978450px;}
.y48{bottom:314.987550px;}
.yb5{bottom:317.101500px;}
.y78{bottom:326.987550px;}
.y13{bottom:335.987550px;}
.y6c{bottom:336.978450px;}
.y54{bottom:338.987550px;}
.yb4{bottom:341.113950px;}
.y12{bottom:359.987550px;}
.y69{bottom:360.990900px;}
.yb3{bottom:362.713950px;}
.y47{bottom:362.987550px;}
.y77{bottom:374.987550px;}
.y11{bottom:383.987550px;}
.yb2{bottom:384.313950px;}
.y68{bottom:384.990900px;}
.y46{bottom:386.987550px;}
.y64{bottom:396.990900px;}
.y76{bottom:398.987550px;}
.yb1{bottom:405.913950px;}
.y10{bottom:407.987550px;}
.y67{bottom:408.990900px;}
.y45{bottom:410.987550px;}
.y63{bottom:420.990900px;}
.y80{bottom:422.987550px;}
.yb0{bottom:431.018400px;}
.yf{bottom:431.987550px;}
.y66{bottom:432.990900px;}
.y44{bottom:434.987550px;}
.y75{bottom:446.987550px;}
.yae{bottom:455.018400px;}
.ye{bottom:455.987550px;}
.y65{bottom:456.990900px;}
.y43{bottom:458.987550px;}
.yaf{bottom:479.018400px;}
.yd{bottom:479.987550px;}
.y62{bottom:481.003350px;}
.y42{bottom:482.987550px;}
.y9a{bottom:502.704600px;}
.yad{bottom:503.030850px;}
.yc{bottom:503.987550px;}
.y60{bottom:505.003350px;}
.y41{bottom:506.987550px;}
.yab{bottom:527.030850px;}
.yb{bottom:527.987550px;}
.y5f{bottom:529.003350px;}
.y40{bottom:530.987550px;}
.y99{bottom:541.554600px;}
.yac{bottom:551.030850px;}
.ya{bottom:551.987550px;}
.y61{bottom:553.003350px;}
.y3f{bottom:554.987550px;}
.y98{bottom:565.554600px;}
.y9{bottom:575.987550px;}
.y3e{bottom:578.987550px;}
.yaa{bottom:581.816250px;}
.y5e{bottom:583.788750px;}
.y97{bottom:589.567050px;}
.y8{bottom:599.987550px;}
.y3d{bottom:602.987550px;}
.y96{bottom:613.567050px;}
.y7{bottom:623.987550px;}
.y53{bottom:626.987550px;}
.y5d{bottom:633.625350px;}
.ya9{bottom:634.487550px;}
.y95{bottom:637.579500px;}
.y6{bottom:647.987550px;}
.y3c{bottom:650.987550px;}
.y94{bottom:661.579500px;}
.y3b{bottom:674.987550px;}
.y5c{bottom:681.625350px;}
.ya8{bottom:682.487550px;}
.y93{bottom:685.579500px;}
.y5{bottom:695.987550px;}
.y3a{bottom:698.987550px;}
.y92{bottom:709.591950px;}
.y39{bottom:722.987550px;}
.y91{bottom:733.591950px;}
.y90{bottom:737.791950px;}
.ya7{bottom:738.742200px;}
.y29{bottom:739.721700px;}
.y38{bottom:746.987550px;}
.y8f{bottom:757.591950px;}
.ya6{bottom:762.742200px;}
.y37{bottom:770.987550px;}
.y8e{bottom:781.604400px;}
.y28{bottom:781.721700px;}
.ya5{bottom:786.742200px;}
.ya3{bottom:790.942200px;}
.y8b{bottom:793.604400px;}
.y36{bottom:794.987550px;}
.y27{bottom:802.721700px;}
.y8d{bottom:805.604400px;}
.ya4{bottom:810.742200px;}
.y8a{bottom:817.604400px;}
.y35{bottom:818.987550px;}
.y26{bottom:823.721700px;}
.y8c{bottom:829.604400px;}
.ya2{bottom:834.754650px;}
.y34{bottom:842.987550px;}
.y25{bottom:849.716700px;}
.y89{bottom:853.616850px;}
.ya1{bottom:858.754650px;}
.y9f{bottom:862.954650px;}
.y86{bottom:865.616850px;}
.y33{bottom:866.987550px;}
.y5b{bottom:867.566400px;}
.y88{bottom:877.616850px;}
.y24{bottom:880.721700px;}
.ya0{bottom:882.754650px;}
.y85{bottom:889.616850px;}
.y32{bottom:890.987550px;}
.y87{bottom:901.616850px;}
.y9e{bottom:906.767100px;}
.y31{bottom:914.987550px;}
.y5a{bottom:915.566400px;}
.y23{bottom:924.221700px;}
.y84{bottom:925.629300px;}
.y9c{bottom:930.767100px;}
.y83{bottom:937.629300px;}
.y52{bottom:938.987550px;}
.y22{bottom:947.621550px;}
.y9d{bottom:954.767100px;}
.y30{bottom:962.987550px;}
.y82{bottom:980.414700px;}
.y21{bottom:983.021700px;}
.y9b{bottom:985.552500px;}
.y2f{bottom:986.987550px;}
.y20{bottom:1006.421700px;}
.y2e{bottom:1010.987550px;}
.y2d{bottom:1034.987550px;}
.y1f{bottom:1047.821550px;}
.y51{bottom:1058.987550px;}
.y1e{bottom:1074.821550px;}
.y2c{bottom:1082.987550px;}
.y1d{bottom:1091.021700px;}
.y1c{bottom:1107.221700px;}
.y1b{bottom:1123.421700px;}
.y2a{bottom:1124.171700px;}
.h8{height:33.809062px;}
.h2{height:36.312000px;}
.h6{height:39.313477px;}
.hc{height:43.031250px;}
.ha{height:43.681641px;}
.h1{height:45.865723px;}
.h3{height:48.049805px;}
.he{height:48.210938px;}
.h5{height:48.410156px;}
.h11{height:52.417969px;}
.h9{height:53.789062px;}
.hd{height:56.478516px;}
.h7{height:56.786133px;}
.h4{height:59.167969px;}
.hb{height:63.018516px;}
.h10{height:64.546875px;}
.hf{height:107.167969px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:52.937100px;}
.x9{left:54.000000px;}
.x6{left:55.062900px;}
.x19{left:61.500000px;}
.xa{left:67.800300px;}
.x13{left:73.811850px;}
.xc{left:77.021850px;}
.x23{left:79.470450px;}
.x26{left:82.092450px;}
.x24{left:88.092450px;}
.x31{left:89.803350px;}
.x10{left:102.874050px;}
.x1a{left:106.500000px;}
.x39{left:108.000000px;}
.x32{left:109.315050px;}
.x2f{left:111.476100px;}
.x2c{left:117.446100px;}
.x34{left:122.030250px;}
.x21{left:131.957400px;}
.x20{left:137.931450px;}
.x1e{left:139.300950px;}
.x22{left:142.052400px;}
.x17{left:144.192300px;}
.x1d{left:146.181450px;}
.x2b{left:152.975100px;}
.x1c{left:154.902750px;}
.x27{left:156.173700px;}
.x28{left:161.225100px;}
.x11{left:200.981850px;}
.x5{left:215.925900px;}
.x2d{left:226.500000px;}
.x14{left:235.210500px;}
.xf{left:250.725600px;}
.x12{left:279.264150px;}
.x29{left:282.000000px;}
.x1f{left:306.927150px;}
.x25{left:333.000000px;}
.xe{left:357.709200px;}
.xb{left:362.542650px;}
.xd{left:411.849600px;}
.x36{left:450.825000px;}
.x1{left:454.620300px;}
.x16{left:466.937100px;}
.x1b{left:468.000000px;}
.x8{left:469.062900px;}
.x4{left:490.089300px;}
.x38{left:522.000000px;}
.x2{left:532.674450px;}
.x2a{left:544.287450px;}
.x37{left:573.409050px;}
.x18{left:586.436250px;}
.x30{left:612.744000px;}
.x35{left:621.445200px;}
.x33{left:631.475700px;}
.x7{left:633.595650px;}
.x3{left:637.247250px;}
.x2e{left:644.386350px;}
@media print{
.v3{vertical-align:-53.333333pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.107733pt;}
.v4{vertical-align:5.813333pt;}
.v1{vertical-align:19.536000pt;}
.v6{vertical-align:42.666667pt;}
.lsa{letter-spacing:-4.144000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004907pt;}
.lsd{letter-spacing:0.454933pt;}
.ls5{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.645333pt;}
.ls10{letter-spacing:0.805867pt;}
.ls7{letter-spacing:1.290667pt;}
.ls4{letter-spacing:2.112000pt;}
.ls8{letter-spacing:2.581333pt;}
.lsf{letter-spacing:2.879467pt;}
.lse{letter-spacing:10.811200pt;}
.ls11{letter-spacing:12.053867pt;}
.ls12{letter-spacing:12.584000pt;}
.ls6{letter-spacing:16.213867pt;}
.lsb{letter-spacing:32.201067pt;}
.ls9{letter-spacing:48.500267pt;}
.ls13{letter-spacing:68.216533pt;}
.ls1{letter-spacing:805.251200pt;}
.ls3{letter-spacing:817.123733pt;}
.ws2{word-spacing:-19.274667pt;}
.ws31{word-spacing:-18.890667pt;}
.ws2e{word-spacing:-18.421333pt;}
.ws30{word-spacing:-17.600000pt;}
.ws36{word-spacing:-16.954667pt;}
.ws2f{word-spacing:-16.896000pt;}
.ws6{word-spacing:-16.309333pt;}
.ws1{word-spacing:-13.344000pt;}
.ws0{word-spacing:-10.290667pt;}
.ws1d{word-spacing:-7.098667pt;}
.ws1c{word-spacing:-3.520000pt;}
.wse{word-spacing:-2.874667pt;}
.ws16{word-spacing:-2.816000pt;}
.ws7{word-spacing:-1.994667pt;}
.wsf{word-spacing:-1.701333pt;}
.ws13{word-spacing:-1.173333pt;}
.ws33{word-spacing:-1.056000pt;}
.ws12{word-spacing:-0.117333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.117333pt;}
.wsa{word-spacing:0.293333pt;}
.ws11{word-spacing:0.762667pt;}
.ws29{word-spacing:1.056000pt;}
.ws4{word-spacing:1.114667pt;}
.ws9{word-spacing:1.760000pt;}
.ws28{word-spacing:1.994667pt;}
.ws8{word-spacing:2.229333pt;}
.ws2b{word-spacing:3.168000pt;}
.ws5{word-spacing:3.696000pt;}
.ws32{word-spacing:4.144000pt;}
.ws2c{word-spacing:5.984000pt;}
.ws10{word-spacing:6.394667pt;}
.ws17{word-spacing:6.453333pt;}
.ws2d{word-spacing:6.922667pt;}
.ws15{word-spacing:8.448000pt;}
.ws25{word-spacing:8.858667pt;}
.wsc{word-spacing:9.445333pt;}
.ws35{word-spacing:9.738667pt;}
.wsd{word-spacing:10.266667pt;}
.ws34{word-spacing:11.146667pt;}
.ws38{word-spacing:12.320000pt;}
.ws23{word-spacing:13.376000pt;}
.wsb{word-spacing:14.608000pt;}
.ws14{word-spacing:16.778667pt;}
.ws24{word-spacing:18.186667pt;}
.ws1f{word-spacing:19.477333pt;}
.ws39{word-spacing:22.762667pt;}
.ws22{word-spacing:28.336000pt;}
.ws20{word-spacing:28.805333pt;}
.ws1a{word-spacing:30.682667pt;}
.ws1e{word-spacing:32.090667pt;}
.ws37{word-spacing:34.026667pt;}
.ws19{word-spacing:40.597333pt;}
.ws21{word-spacing:43.472000pt;}
.ws18{word-spacing:44.997333pt;}
.ws27{word-spacing:98.560000pt;}
.ws26{word-spacing:182.805333pt;}
.ws2a{word-spacing:785.992000pt;}
._1f{margin-left:-12.220267pt;}
._3d{margin-left:-9.627200pt;}
._20{margin-left:-7.726400pt;}
._f{margin-left:-6.441600pt;}
._10{margin-left:-5.284800pt;}
._c{margin-left:-3.789333pt;}
._8{margin-left:-2.685600pt;}
._0{margin-left:-1.092533pt;}
._7{width:1.349333pt;}
._e{width:2.246933pt;}
._6{width:3.214933pt;}
._1{width:4.435200pt;}
._4{width:5.456000pt;}
._5{width:6.781867pt;}
._3{width:8.277867pt;}
._12{width:9.222400pt;}
._d{width:10.771200pt;}
._9{width:12.396267pt;}
._13{width:13.663467pt;}
._15{width:14.754667pt;}
._a{width:17.846400pt;}
._14{width:18.796800pt;}
._27{width:20.181333pt;}
._2{width:22.662933pt;}
._b{width:24.305600pt;}
._1b{width:25.936533pt;}
._1c{width:26.869333pt;}
._26{width:28.828800pt;}
._16{width:30.254400pt;}
._1d{width:31.483733pt;}
._23{width:32.947200pt;}
._1e{width:34.343467pt;}
._18{width:39.693867pt;}
._1a{width:42.879467pt;}
._19{width:44.886933pt;}
._24{width:46.651733pt;}
._34{width:49.590933pt;}
._2d{width:50.957867pt;}
._2e{width:53.140267pt;}
._2f{width:55.334400pt;}
._25{width:56.689600pt;}
._38{width:66.566400pt;}
._3e{width:68.223467pt;}
._36{width:76.829867pt;}
._35{width:78.531200pt;}
._33{width:96.395200pt;}
._3b{width:111.196800pt;}
._2a{width:120.846400pt;}
._29{width:127.358400pt;}
._3a{width:134.006400pt;}
._30{width:151.673600pt;}
._39{width:159.544000pt;}
._22{width:166.489067pt;}
._37{width:175.737600pt;}
._28{width:212.190400pt;}
._2c{width:229.129600pt;}
._31{width:230.058133pt;}
._3c{width:423.987733pt;}
._11{width:439.560000pt;}
._2b{width:450.637333pt;}
._32{width:508.972267pt;}
._21{width:806.996267pt;}
._17{width:839.262400pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.486533pt;}
.y2b{bottom:61.450533pt;}
.y57{bottom:62.030533pt;}
.y56{bottom:62.903867pt;}
.y55{bottom:63.781200pt;}
.y1{bottom:70.489067pt;}
.y3{bottom:72.486533pt;}
.y2{bottom:84.486533pt;}
.y59{bottom:106.655600pt;}
.y50{bottom:109.322267pt;}
.y74{bottom:115.658667pt;}
.y7f{bottom:119.988933pt;}
.y1a{bottom:127.988933pt;}
.y4f{bottom:130.655600pt;}
.y7e{bottom:141.322267pt;}
.y19{bottom:149.322267pt;}
.y73{bottom:150.192000pt;}
.y4e{bottom:151.988933pt;}
.y7d{bottom:162.655600pt;}
.y18{bottom:170.655600pt;}
.y72{bottom:171.525333pt;}
.y4d{bottom:173.322267pt;}
.y6f{bottom:178.992000pt;}
.y7c{bottom:183.988933pt;}
.y58{bottom:191.988933pt;}
.y71{bottom:192.858667pt;}
.y4c{bottom:194.655600pt;}
.y6e{bottom:196.592000pt;}
.y81{bottom:205.322267pt;}
.y17{bottom:213.322267pt;}
.y70{bottom:214.192000pt;}
.y4b{bottom:215.988933pt;}
.y7b{bottom:226.655600pt;}
.y16{bottom:234.655600pt;}
.y6d{bottom:235.536400pt;}
.y4a{bottom:237.322267pt;}
.yb7{bottom:239.201333pt;}
.y7a{bottom:247.988933pt;}
.y15{bottom:255.988933pt;}
.y6b{bottom:256.869733pt;}
.y49{bottom:258.655600pt;}
.yb6{bottom:260.534667pt;}
.y79{bottom:269.322267pt;}
.y14{bottom:277.322267pt;}
.y6a{bottom:278.203067pt;}
.y48{bottom:279.988933pt;}
.yb5{bottom:281.868000pt;}
.y78{bottom:290.655600pt;}
.y13{bottom:298.655600pt;}
.y6c{bottom:299.536400pt;}
.y54{bottom:301.322267pt;}
.yb4{bottom:303.212400pt;}
.y12{bottom:319.988933pt;}
.y69{bottom:320.880800pt;}
.yb3{bottom:322.412400pt;}
.y47{bottom:322.655600pt;}
.y77{bottom:333.322267pt;}
.y11{bottom:341.322267pt;}
.yb2{bottom:341.612400pt;}
.y68{bottom:342.214133pt;}
.y46{bottom:343.988933pt;}
.y64{bottom:352.880800pt;}
.y76{bottom:354.655600pt;}
.yb1{bottom:360.812400pt;}
.y10{bottom:362.655600pt;}
.y67{bottom:363.547467pt;}
.y45{bottom:365.322267pt;}
.y63{bottom:374.214133pt;}
.y80{bottom:375.988933pt;}
.yb0{bottom:383.127467pt;}
.yf{bottom:383.988933pt;}
.y66{bottom:384.880800pt;}
.y44{bottom:386.655600pt;}
.y75{bottom:397.322267pt;}
.yae{bottom:404.460800pt;}
.ye{bottom:405.322267pt;}
.y65{bottom:406.214133pt;}
.y43{bottom:407.988933pt;}
.yaf{bottom:425.794133pt;}
.yd{bottom:426.655600pt;}
.y62{bottom:427.558533pt;}
.y42{bottom:429.322267pt;}
.y9a{bottom:446.848533pt;}
.yad{bottom:447.138533pt;}
.yc{bottom:447.988933pt;}
.y60{bottom:448.891867pt;}
.y41{bottom:450.655600pt;}
.yab{bottom:468.471867pt;}
.yb{bottom:469.322267pt;}
.y5f{bottom:470.225200pt;}
.y40{bottom:471.988933pt;}
.y99{bottom:481.381867pt;}
.yac{bottom:489.805200pt;}
.ya{bottom:490.655600pt;}
.y61{bottom:491.558533pt;}
.y3f{bottom:493.322267pt;}
.y98{bottom:502.715200pt;}
.y9{bottom:511.988933pt;}
.y3e{bottom:514.655600pt;}
.yaa{bottom:517.170000pt;}
.y5e{bottom:518.923333pt;}
.y97{bottom:524.059600pt;}
.y8{bottom:533.322267pt;}
.y3d{bottom:535.988933pt;}
.y96{bottom:545.392933pt;}
.y7{bottom:554.655600pt;}
.y53{bottom:557.322267pt;}
.y5d{bottom:563.222533pt;}
.ya9{bottom:563.988933pt;}
.y95{bottom:566.737333pt;}
.y6{bottom:575.988933pt;}
.y3c{bottom:578.655600pt;}
.y94{bottom:588.070667pt;}
.y3b{bottom:599.988933pt;}
.y5c{bottom:605.889200pt;}
.ya8{bottom:606.655600pt;}
.y93{bottom:609.404000pt;}
.y5{bottom:618.655600pt;}
.y3a{bottom:621.322267pt;}
.y92{bottom:630.748400pt;}
.y39{bottom:642.655600pt;}
.y91{bottom:652.081733pt;}
.y90{bottom:655.815067pt;}
.ya7{bottom:656.659733pt;}
.y29{bottom:657.530400pt;}
.y38{bottom:663.988933pt;}
.y8f{bottom:673.415067pt;}
.ya6{bottom:677.993067pt;}
.y37{bottom:685.322267pt;}
.y8e{bottom:694.759467pt;}
.y28{bottom:694.863733pt;}
.ya5{bottom:699.326400pt;}
.ya3{bottom:703.059733pt;}
.y8b{bottom:705.426133pt;}
.y36{bottom:706.655600pt;}
.y27{bottom:713.530400pt;}
.y8d{bottom:716.092800pt;}
.ya4{bottom:720.659733pt;}
.y8a{bottom:726.759467pt;}
.y35{bottom:727.988933pt;}
.y26{bottom:732.197067pt;}
.y8c{bottom:737.426133pt;}
.ya2{bottom:742.004133pt;}
.y34{bottom:749.322267pt;}
.y25{bottom:755.303733pt;}
.y89{bottom:758.770533pt;}
.ya1{bottom:763.337467pt;}
.y9f{bottom:767.070800pt;}
.y86{bottom:769.437200pt;}
.y33{bottom:770.655600pt;}
.y5b{bottom:771.170133pt;}
.y88{bottom:780.103867pt;}
.y24{bottom:782.863733pt;}
.ya0{bottom:784.670800pt;}
.y85{bottom:790.770533pt;}
.y32{bottom:791.988933pt;}
.y87{bottom:801.437200pt;}
.y9e{bottom:806.015200pt;}
.y31{bottom:813.322267pt;}
.y5a{bottom:813.836800pt;}
.y23{bottom:821.530400pt;}
.y84{bottom:822.781600pt;}
.y9c{bottom:827.348533pt;}
.y83{bottom:833.448267pt;}
.y52{bottom:834.655600pt;}
.y22{bottom:842.330267pt;}
.y9d{bottom:848.681867pt;}
.y30{bottom:855.988933pt;}
.y82{bottom:871.479733pt;}
.y21{bottom:873.797067pt;}
.y9b{bottom:876.046667pt;}
.y2f{bottom:877.322267pt;}
.y20{bottom:894.597067pt;}
.y2e{bottom:898.655600pt;}
.y2d{bottom:919.988933pt;}
.y1f{bottom:931.396933pt;}
.y51{bottom:941.322267pt;}
.y1e{bottom:955.396933pt;}
.y2c{bottom:962.655600pt;}
.y1d{bottom:969.797067pt;}
.y1c{bottom:984.197067pt;}
.y1b{bottom:998.597067pt;}
.y2a{bottom:999.263733pt;}
.h8{height:30.052500pt;}
.h2{height:32.277333pt;}
.h6{height:34.945312pt;}
.hc{height:38.250000pt;}
.ha{height:38.828125pt;}
.h1{height:40.769531pt;}
.h3{height:42.710938pt;}
.he{height:42.854167pt;}
.h5{height:43.031250pt;}
.h11{height:46.593750pt;}
.h9{height:47.812500pt;}
.hd{height:50.203125pt;}
.h7{height:50.476562pt;}
.h4{height:52.593750pt;}
.hb{height:56.016458pt;}
.h10{height:57.375000pt;}
.hf{height:95.260417pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:47.055200pt;}
.x9{left:48.000000pt;}
.x6{left:48.944800pt;}
.x19{left:54.666667pt;}
.xa{left:60.266933pt;}
.x13{left:65.610533pt;}
.xc{left:68.463867pt;}
.x23{left:70.640400pt;}
.x26{left:72.971067pt;}
.x24{left:78.304400pt;}
.x31{left:79.825200pt;}
.x10{left:91.443600pt;}
.x1a{left:94.666667pt;}
.x39{left:96.000000pt;}
.x32{left:97.168933pt;}
.x2f{left:99.089867pt;}
.x2c{left:104.396533pt;}
.x34{left:108.471333pt;}
.x21{left:117.295467pt;}
.x20{left:122.605733pt;}
.x1e{left:123.823067pt;}
.x22{left:126.268800pt;}
.x17{left:128.170933pt;}
.x1d{left:129.939067pt;}
.x2b{left:135.977867pt;}
.x1c{left:137.691333pt;}
.x27{left:138.821067pt;}
.x28{left:143.311200pt;}
.x11{left:178.650533pt;}
.x5{left:191.934133pt;}
.x2d{left:201.333333pt;}
.x14{left:209.076000pt;}
.xf{left:222.867200pt;}
.x12{left:248.234800pt;}
.x29{left:250.666667pt;}
.x1f{left:272.824133pt;}
.x25{left:296.000000pt;}
.xe{left:317.963733pt;}
.xb{left:322.260133pt;}
.xd{left:366.088533pt;}
.x36{left:400.733333pt;}
.x1{left:404.106933pt;}
.x16{left:415.055200pt;}
.x1b{left:416.000000pt;}
.x8{left:416.944800pt;}
.x4{left:435.634933pt;}
.x38{left:464.000000pt;}
.x2{left:473.488400pt;}
.x2a{left:483.811067pt;}
.x37{left:509.696933pt;}
.x18{left:521.276667pt;}
.x30{left:544.661333pt;}
.x35{left:552.395733pt;}
.x33{left:561.311733pt;}
.x7{left:563.196133pt;}
.x3{left:566.442000pt;}
.x2e{left:572.787867pt;}
}




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