
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_871bb732bf9bcc7b6e1f5005.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_30fee1983bb56ddb5590c287.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_fd02f5942559c06ad63ef0fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_dc95db3a862b0ed1c47b4344.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ffc5113276dea11e5e34e38.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_7dd594ee89839b6ded7c48d8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c65e1bad1e34b992d6ceed9a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.057000px;}
.ls11{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:2.880000px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.396600px;}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._1a{margin-left:-4.178157px;}
._b{margin-left:-2.886000px;}
._0{margin-left:-1.212000px;}
._3{width:1.285716px;}
._8{width:2.404800px;}
._c{width:3.667200px;}
._d{width:4.829401px;}
._6{width:5.892000px;}
._7{width:7.043400px;}
._e{width:8.777400px;}
._12{width:9.902413px;}
._11{width:11.071236px;}
._2{width:12.135084px;}
._1{width:13.532280px;}
._10{width:14.868600px;}
._f{width:15.871800px;}
._15{width:16.893720px;}
._5{width:18.162360px;}
._4{width:19.238400px;}
._13{width:20.861640px;}
._14{width:22.124160px;}
._19{width:23.867640px;}
._24{width:25.611120px;}
._1d{width:29.518920px;}
._1e{width:30.574044px;}
._1c{width:33.005880px;}
._a{width:34.087558px;}
._9{width:35.420400px;}
._1b{width:36.853560px;}
._17{width:45.691200px;}
._23{width:94.929480px;}
._26{width:111.041640px;}
._25{width:115.129800px;}
._21{width:119.929800px;}
._20{width:121.151400px;}
._22{width:185.169600px;}
._16{width:244.985400px;}
._18{width:251.121240px;}
._1f{width:1105.666920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs8{font-size:101.880000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:7.830000px;}
.y8f{bottom:7.920000px;}
.y4d{bottom:25.380000px;}
.y50{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9d{bottom:116.130000px;}
.y108{bottom:121.530000px;}
.y7d{bottom:123.870000px;}
.yc8{bottom:125.580000px;}
.yf0{bottom:128.100000px;}
.y9c{bottom:133.680000px;}
.y107{bottom:139.170000px;}
.yef{bottom:145.650000px;}
.y55{bottom:149.430000px;}
.y9b{bottom:151.320000px;}
.y106{bottom:156.720000px;}
.y7c{bottom:159.510000px;}
.y27{bottom:160.050000px;}
.yc7{bottom:161.130000px;}
.yee{bottom:163.200000px;}
.y54{bottom:166.980000px;}
.y9a{bottom:168.870000px;}
.y105{bottom:174.270000px;}
.y26{bottom:177.600000px;}
.yed{bottom:180.840000px;}
.y53{bottom:184.530000px;}
.y99{bottom:186.510000px;}
.y104{bottom:191.910000px;}
.y7b{bottom:195.060000px;}
.y25{bottom:195.240000px;}
.yc6{bottom:196.680000px;}
.yec{bottom:198.390000px;}
.y98{bottom:204.060000px;}
.y103{bottom:209.460000px;}
.y52{bottom:211.170000px;}
.y7a{bottom:212.610000px;}
.y24{bottom:212.790000px;}
.yc5{bottom:214.320000px;}
.yeb{bottom:216.030000px;}
.y79{bottom:230.250000px;}
.yc4{bottom:231.870000px;}
.y97{bottom:239.610000px;}
.y51{bottom:244.110000px;}
.y102{bottom:245.100000px;}
.y78{bottom:247.800000px;}
.y23{bottom:248.340000px;}
.yc3{bottom:249.510000px;}
.yea{bottom:251.580000px;}
.y128{bottom:254.100000px;}
.y96{bottom:257.250000px;}
.y101{bottom:262.650000px;}
.y22{bottom:265.980000px;}
.yc2{bottom:267.060000px;}
.ye9{bottom:269.130000px;}
.y4f{bottom:271.470000px;}
.y127{bottom:271.650000px;}
.y95{bottom:274.800000px;}
.y100{bottom:280.200000px;}
.y77{bottom:283.440000px;}
.y21{bottom:283.530000px;}
.yc1{bottom:284.610000px;}
.ye8{bottom:286.770000px;}
.y126{bottom:289.200000px;}
.y94{bottom:292.440000px;}
.yff{bottom:297.840000px;}
.y76{bottom:300.990000px;}
.y20{bottom:301.170000px;}
.yc0{bottom:302.250000px;}
.ye7{bottom:304.320000px;}
.y125{bottom:306.840000px;}
.y93{bottom:309.990000px;}
.yfe{bottom:315.390000px;}
.y4e{bottom:316.380000px;}
.y75{bottom:318.540000px;}
.y1f{bottom:318.720000px;}
.ybf{bottom:319.800000px;}
.ye6{bottom:321.870000px;}
.y92{bottom:327.540000px;}
.yfd{bottom:332.940000px;}
.y124{bottom:333.390000px;}
.y74{bottom:336.180000px;}
.y1e{bottom:336.270000px;}
.ye5{bottom:339.510000px;}
.y4c{bottom:343.740000px;}
.y91{bottom:345.180000px;}
.y123{bottom:350.940000px;}
.y1d{bottom:353.910000px;}
.ybe{bottom:355.440000px;}
.yfc{bottom:359.850000px;}
.y73{bottom:362.730000px;}
.ye4{bottom:366.060000px;}
.y122{bottom:368.580000px;}
.y1c{bottom:371.460000px;}
.ybd{bottom:372.990000px;}
.y121{bottom:386.130000px;}
.y4b{bottom:388.650000px;}
.ybc{bottom:390.540000px;}
.y90{bottom:395.760000px;}
.y1b{bottom:398.370000px;}
.ye3{bottom:401.700000px;}
.ybb{bottom:408.180000px;}
.y120{bottom:412.770000px;}
.y72{bottom:415.920000px;}
.y49{bottom:416.010000px;}
.ye2{bottom:419.250000px;}
.y8e{bottom:423.030000px;}
.yba{bottom:425.730000px;}
.y11f{bottom:430.320000px;}
.y71{bottom:433.470000px;}
.ye1{bottom:436.800000px;}
.yb9{bottom:443.370000px;}
.y1a{bottom:446.700000px;}
.y11e{bottom:447.870000px;}
.y8d{bottom:450.390000px;}
.y70{bottom:451.110000px;}
.ye0{bottom:454.440000px;}
.yb8{bottom:460.920000px;}
.y19{bottom:464.610000px;}
.y48{bottom:464.700000px;}
.y11d{bottom:465.510000px;}
.ydf{bottom:472.020000px;}
.y8c{bottom:477.780000px;}
.yb7{bottom:478.500000px;}
.y6f{bottom:486.690000px;}
.yde{bottom:489.660000px;}
.y11c{bottom:492.090000px;}
.yfb{bottom:496.140000px;}
.y47{bottom:500.280000px;}
.y18{bottom:501.630000px;}
.y6e{bottom:504.330000px;}
.y11b{bottom:509.730000px;}
.yb6{bottom:514.140000px;}
.y46{bottom:517.830000px;}
.y17{bottom:519.180000px;}
.y6d{bottom:521.880000px;}
.ydd{bottom:525.210000px;}
.y8b{bottom:526.470000px;}
.yb5{bottom:531.690000px;}
.y45{bottom:535.470000px;}
.y11a{bottom:536.280000px;}
.y16{bottom:536.820000px;}
.y6c{bottom:539.430000px;}
.ydc{bottom:542.760000px;}
.yb4{bottom:549.330000px;}
.y44{bottom:553.020000px;}
.y119{bottom:553.830000px;}
.y15{bottom:554.370000px;}
.y6b{bottom:557.070000px;}
.ydb{bottom:560.400000px;}
.y8a{bottom:562.020000px;}
.yb3{bottom:566.880000px;}
.y118{bottom:571.470000px;}
.y14{bottom:571.920000px;}
.yda{bottom:577.950000px;}
.y89{bottom:579.660000px;}
.yb2{bottom:584.430000px;}
.y43{bottom:588.660000px;}
.y117{bottom:589.020000px;}
.y13{bottom:589.560000px;}
.y6a{bottom:592.620000px;}
.yd9{bottom:595.590000px;}
.y88{bottom:597.210000px;}
.yb1{bottom:602.070000px;}
.y42{bottom:606.210000px;}
.y12{bottom:607.110000px;}
.y69{bottom:610.260000px;}
.yd8{bottom:613.140000px;}
.y87{bottom:614.760000px;}
.y116{bottom:615.660000px;}
.yb0{bottom:619.620000px;}
.y41{bottom:623.760000px;}
.y11{bottom:624.750000px;}
.y68{bottom:627.810000px;}
.yd7{bottom:630.690000px;}
.y86{bottom:632.400000px;}
.y115{bottom:633.210000px;}
.yaf{bottom:637.260000px;}
.yfa{bottom:637.620000px;}
.y40{bottom:641.400000px;}
.y10{bottom:642.300000px;}
.yd6{bottom:648.330000px;}
.y85{bottom:649.950000px;}
.y114{bottom:650.760000px;}
.y67{bottom:654.360000px;}
.yf9{bottom:655.260000px;}
.y3f{bottom:658.950000px;}
.yf{bottom:659.850000px;}
.y84{bottom:667.590000px;}
.yae{bottom:672.810000px;}
.y3e{bottom:676.590000px;}
.y113{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.yd5{bottom:683.880000px;}
.y66{bottom:690.000000px;}
.yad{bottom:690.360000px;}
.y83{bottom:694.140000px;}
.y112{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.yd4{bottom:701.520000px;}
.y3d{bottom:703.140000px;}
.y65{bottom:707.550000px;}
.yac{bottom:708.000000px;}
.y111{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.yd3{bottom:719.070000px;}
.y64{bottom:725.190000px;}
.yab{bottom:725.550000px;}
.y82{bottom:730.050000px;}
.yb{bottom:730.230000px;}
.yd2{bottom:736.620000px;}
.y3c{bottom:738.690000px;}
.y110{bottom:739.140000px;}
.yaa{bottom:743.190000px;}
.yd1{bottom:754.260000px;}
.y3b{bottom:756.330000px;}
.y10f{bottom:756.690000px;}
.ya{bottom:757.140000px;}
.y63{bottom:760.740000px;}
.yd0{bottom:771.810000px;}
.y3a{bottom:773.880000px;}
.y10e{bottom:774.330000px;}
.y62{bottom:778.290000px;}
.yf8{bottom:778.740000px;}
.ya9{bottom:787.290000px;}
.y39{bottom:791.520000px;}
.y61{bottom:795.930000px;}
.yf7{bottom:796.290000px;}
.y10d{bottom:800.880000px;}
.ycf{bottom:804.750000px;}
.y9{bottom:805.380000px;}
.y60{bottom:813.480000px;}
.yf6{bottom:813.930000px;}
.y38{bottom:818.340000px;}
.y10c{bottom:818.520000px;}
.ya8{bottom:822.930000px;}
.y81{bottom:831.030000px;}
.yf5{bottom:831.480000px;}
.yce{bottom:832.110000px;}
.y10b{bottom:836.070000px;}
.ya7{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y80{bottom:848.670000px;}
.y5f{bottom:849.030000px;}
.y10a{bottom:853.620000px;}
.ya6{bottom:858.030000px;}
.ycd{bottom:859.470000px;}
.y7f{bottom:866.220000px;}
.y37{bottom:866.670000px;}
.ya5{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y109{bottom:880.530000px;}
.y36{bottom:884.220000px;}
.ycc{bottom:886.830000px;}
.ya4{bottom:893.220000px;}
.y35{bottom:901.860000px;}
.ya3{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.ycb{bottom:914.100000px;}
.y34{bottom:919.410000px;}
.ya2{bottom:928.410000px;}
.yf4{bottom:928.860000px;}
.y7e{bottom:936.960000px;}
.yca{bottom:941.460000px;}
.y5e{bottom:945.960000px;}
.yf3{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y33{bottom:954.960000px;}
.ya1{bottom:963.960000px;}
.y32{bottom:972.600000px;}
.y5d{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y31{bottom:990.150000px;}
.y5c{bottom:999.150000px;}
.y30{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y5b{bottom:1016.820000px;}
.yc9{bottom:1025.820000px;}
.y5a{bottom:1034.370000px;}
.yf2{bottom:1034.820000px;}
.y2f{bottom:1043.370000px;}
.ya0{bottom:1051.920000px;}
.yf1{bottom:1052.370000px;}
.y2e{bottom:1060.920000px;}
.y9f{bottom:1069.560000px;}
.y59{bottom:1069.920000px;}
.y2d{bottom:1078.560000px;}
.y9e{bottom:1087.110000px;}
.y58{bottom:1087.560000px;}
.y2c{bottom:1096.110000px;}
.y57{bottom:1105.110000px;}
.y2b{bottom:1113.750000px;}
.y56{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h10{height:26.580000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.he{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:60.960938px;}
.h12{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.hf{height:86.259727px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:66.510000px;}
.w6{width:169.590000px;}
.w3{width:184.170000px;}
.w8{width:185.310000px;}
.wa{width:196.320000px;}
.w4{width:197.100000px;}
.wc{width:265.230000px;}
.wb{width:271.110000px;}
.w9{width:320.610000px;}
.w5{width:372.900000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x7{left:74.520000px;}
.xb{left:79.560000px;}
.xf{left:111.239987px;}
.x2{left:202.799987px;}
.x8{left:244.830000px;}
.x5{left:253.650000px;}
.xd{left:276.600000px;}
.x9{left:312.150000px;}
.x6{left:451.560000px;}
.xa{left:498.180000px;}
.xe{left:548.430000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:2.560000pt;}
.ls13{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._1a{margin-left:-3.713917pt;}
._b{margin-left:-2.565334pt;}
._0{margin-left:-1.077333pt;}
._3{width:1.142859pt;}
._8{width:2.137600pt;}
._c{width:3.259733pt;}
._d{width:4.292801pt;}
._6{width:5.237334pt;}
._7{width:6.260800pt;}
._e{width:7.802133pt;}
._12{width:8.802145pt;}
._11{width:9.841099pt;}
._2{width:10.786741pt;}
._1{width:12.028693pt;}
._10{width:13.216533pt;}
._f{width:14.108267pt;}
._15{width:15.016640pt;}
._5{width:16.144320pt;}
._4{width:17.100800pt;}
._13{width:18.543680pt;}
._14{width:19.665920pt;}
._19{width:21.215680pt;}
._24{width:22.765440pt;}
._1d{width:26.239040pt;}
._1e{width:27.176928pt;}
._1c{width:29.338560pt;}
._a{width:30.300052pt;}
._9{width:31.484800pt;}
._1b{width:32.758720pt;}
._17{width:40.614400pt;}
._23{width:84.381760pt;}
._26{width:98.703680pt;}
._25{width:102.337600pt;}
._21{width:106.604267pt;}
._20{width:107.690133pt;}
._22{width:164.595200pt;}
._16{width:217.764800pt;}
._18{width:223.218880pt;}
._1f{width:982.815040pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs8{font-size:90.560000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:6.960000pt;}
.y8f{bottom:7.040000pt;}
.y4d{bottom:22.560000pt;}
.y50{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9d{bottom:103.226667pt;}
.y108{bottom:108.026667pt;}
.y7d{bottom:110.106667pt;}
.yc8{bottom:111.626667pt;}
.yf0{bottom:113.866667pt;}
.y9c{bottom:118.826667pt;}
.y107{bottom:123.706667pt;}
.yef{bottom:129.466667pt;}
.y55{bottom:132.826667pt;}
.y9b{bottom:134.506667pt;}
.y106{bottom:139.306667pt;}
.y7c{bottom:141.786667pt;}
.y27{bottom:142.266667pt;}
.yc7{bottom:143.226667pt;}
.yee{bottom:145.066667pt;}
.y54{bottom:148.426667pt;}
.y9a{bottom:150.106667pt;}
.y105{bottom:154.906667pt;}
.y26{bottom:157.866667pt;}
.yed{bottom:160.746667pt;}
.y53{bottom:164.026667pt;}
.y99{bottom:165.786667pt;}
.y104{bottom:170.586667pt;}
.y7b{bottom:173.386667pt;}
.y25{bottom:173.546667pt;}
.yc6{bottom:174.826667pt;}
.yec{bottom:176.346667pt;}
.y98{bottom:181.386667pt;}
.y103{bottom:186.186667pt;}
.y52{bottom:187.706667pt;}
.y7a{bottom:188.986667pt;}
.y24{bottom:189.146667pt;}
.yc5{bottom:190.506667pt;}
.yeb{bottom:192.026667pt;}
.y79{bottom:204.666667pt;}
.yc4{bottom:206.106667pt;}
.y97{bottom:212.986667pt;}
.y51{bottom:216.986667pt;}
.y102{bottom:217.866667pt;}
.y78{bottom:220.266667pt;}
.y23{bottom:220.746667pt;}
.yc3{bottom:221.786667pt;}
.yea{bottom:223.626667pt;}
.y128{bottom:225.866667pt;}
.y96{bottom:228.666667pt;}
.y101{bottom:233.466667pt;}
.y22{bottom:236.426667pt;}
.yc2{bottom:237.386667pt;}
.ye9{bottom:239.226667pt;}
.y4f{bottom:241.306667pt;}
.y127{bottom:241.466667pt;}
.y95{bottom:244.266667pt;}
.y100{bottom:249.066667pt;}
.y77{bottom:251.946667pt;}
.y21{bottom:252.026667pt;}
.yc1{bottom:252.986667pt;}
.ye8{bottom:254.906667pt;}
.y126{bottom:257.066667pt;}
.y94{bottom:259.946667pt;}
.yff{bottom:264.746667pt;}
.y76{bottom:267.546667pt;}
.y20{bottom:267.706667pt;}
.yc0{bottom:268.666667pt;}
.ye7{bottom:270.506667pt;}
.y125{bottom:272.746667pt;}
.y93{bottom:275.546667pt;}
.yfe{bottom:280.346667pt;}
.y4e{bottom:281.226667pt;}
.y75{bottom:283.146667pt;}
.y1f{bottom:283.306667pt;}
.ybf{bottom:284.266667pt;}
.ye6{bottom:286.106667pt;}
.y92{bottom:291.146667pt;}
.yfd{bottom:295.946667pt;}
.y124{bottom:296.346667pt;}
.y74{bottom:298.826667pt;}
.y1e{bottom:298.906667pt;}
.ye5{bottom:301.786667pt;}
.y4c{bottom:305.546667pt;}
.y91{bottom:306.826667pt;}
.y123{bottom:311.946667pt;}
.y1d{bottom:314.586667pt;}
.ybe{bottom:315.946667pt;}
.yfc{bottom:319.866667pt;}
.y73{bottom:322.426667pt;}
.ye4{bottom:325.386667pt;}
.y122{bottom:327.626667pt;}
.y1c{bottom:330.186667pt;}
.ybd{bottom:331.546667pt;}
.y121{bottom:343.226667pt;}
.y4b{bottom:345.466667pt;}
.ybc{bottom:347.146667pt;}
.y90{bottom:351.786667pt;}
.y1b{bottom:354.106667pt;}
.ye3{bottom:357.066667pt;}
.ybb{bottom:362.826667pt;}
.y120{bottom:366.906667pt;}
.y72{bottom:369.706667pt;}
.y49{bottom:369.786667pt;}
.ye2{bottom:372.666667pt;}
.y8e{bottom:376.026667pt;}
.yba{bottom:378.426667pt;}
.y11f{bottom:382.506667pt;}
.y71{bottom:385.306667pt;}
.ye1{bottom:388.266667pt;}
.yb9{bottom:394.106667pt;}
.y1a{bottom:397.066667pt;}
.y11e{bottom:398.106667pt;}
.y8d{bottom:400.346667pt;}
.y70{bottom:400.986667pt;}
.ye0{bottom:403.946667pt;}
.yb8{bottom:409.706667pt;}
.y19{bottom:412.986667pt;}
.y48{bottom:413.066667pt;}
.y11d{bottom:413.786667pt;}
.ydf{bottom:419.573333pt;}
.y8c{bottom:424.693333pt;}
.yb7{bottom:425.333333pt;}
.y6f{bottom:432.613333pt;}
.yde{bottom:435.253333pt;}
.y11c{bottom:437.413333pt;}
.yfb{bottom:441.013333pt;}
.y47{bottom:444.693333pt;}
.y18{bottom:445.893333pt;}
.y6e{bottom:448.293333pt;}
.y11b{bottom:453.093333pt;}
.yb6{bottom:457.013333pt;}
.y46{bottom:460.293333pt;}
.y17{bottom:461.493333pt;}
.y6d{bottom:463.893333pt;}
.ydd{bottom:466.853333pt;}
.y8b{bottom:467.973333pt;}
.yb5{bottom:472.613333pt;}
.y45{bottom:475.973333pt;}
.y11a{bottom:476.693333pt;}
.y16{bottom:477.173333pt;}
.y6c{bottom:479.493333pt;}
.ydc{bottom:482.453333pt;}
.yb4{bottom:488.293333pt;}
.y44{bottom:491.573333pt;}
.y119{bottom:492.293333pt;}
.y15{bottom:492.773333pt;}
.y6b{bottom:495.173333pt;}
.ydb{bottom:498.133333pt;}
.y8a{bottom:499.573333pt;}
.yb3{bottom:503.893333pt;}
.y118{bottom:507.973333pt;}
.y14{bottom:508.373333pt;}
.yda{bottom:513.733333pt;}
.y89{bottom:515.253333pt;}
.yb2{bottom:519.493333pt;}
.y43{bottom:523.253333pt;}
.y117{bottom:523.573333pt;}
.y13{bottom:524.053333pt;}
.y6a{bottom:526.773333pt;}
.yd9{bottom:529.413333pt;}
.y88{bottom:530.853333pt;}
.yb1{bottom:535.173333pt;}
.y42{bottom:538.853333pt;}
.y12{bottom:539.653333pt;}
.y69{bottom:542.453333pt;}
.yd8{bottom:545.013333pt;}
.y87{bottom:546.453333pt;}
.y116{bottom:547.253333pt;}
.yb0{bottom:550.773333pt;}
.y41{bottom:554.453333pt;}
.y11{bottom:555.333333pt;}
.y68{bottom:558.053333pt;}
.yd7{bottom:560.613333pt;}
.y86{bottom:562.133333pt;}
.y115{bottom:562.853333pt;}
.yaf{bottom:566.453333pt;}
.yfa{bottom:566.773333pt;}
.y40{bottom:570.133333pt;}
.y10{bottom:570.933333pt;}
.yd6{bottom:576.293333pt;}
.y85{bottom:577.733333pt;}
.y114{bottom:578.453333pt;}
.y67{bottom:581.653333pt;}
.yf9{bottom:582.453333pt;}
.y3f{bottom:585.733333pt;}
.yf{bottom:586.533333pt;}
.y84{bottom:593.413333pt;}
.yae{bottom:598.053333pt;}
.y3e{bottom:601.413333pt;}
.y113{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.yd5{bottom:607.893333pt;}
.y66{bottom:613.333333pt;}
.yad{bottom:613.653333pt;}
.y83{bottom:617.013333pt;}
.y112{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.yd4{bottom:623.573333pt;}
.y3d{bottom:625.013333pt;}
.y65{bottom:628.933333pt;}
.yac{bottom:629.333333pt;}
.y111{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.yd3{bottom:639.173333pt;}
.y64{bottom:644.613333pt;}
.yab{bottom:644.933333pt;}
.y82{bottom:648.933333pt;}
.yb{bottom:649.093333pt;}
.yd2{bottom:654.773333pt;}
.y3c{bottom:656.613333pt;}
.y110{bottom:657.013333pt;}
.yaa{bottom:660.613333pt;}
.yd1{bottom:670.453333pt;}
.y3b{bottom:672.293333pt;}
.y10f{bottom:672.613333pt;}
.ya{bottom:673.013333pt;}
.y63{bottom:676.213333pt;}
.yd0{bottom:686.053333pt;}
.y3a{bottom:687.893333pt;}
.y10e{bottom:688.293333pt;}
.y62{bottom:691.813333pt;}
.yf8{bottom:692.213333pt;}
.ya9{bottom:699.813333pt;}
.y39{bottom:703.573333pt;}
.y61{bottom:707.493333pt;}
.yf7{bottom:707.813333pt;}
.y10d{bottom:711.893333pt;}
.ycf{bottom:715.333333pt;}
.y9{bottom:715.893333pt;}
.y60{bottom:723.093333pt;}
.yf6{bottom:723.493333pt;}
.y38{bottom:727.413333pt;}
.y10c{bottom:727.573333pt;}
.ya8{bottom:731.493333pt;}
.y81{bottom:738.693333pt;}
.yf5{bottom:739.093333pt;}
.yce{bottom:739.653333pt;}
.y10b{bottom:743.173333pt;}
.ya7{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y80{bottom:754.373333pt;}
.y5f{bottom:754.693333pt;}
.y10a{bottom:758.773333pt;}
.ya6{bottom:762.693333pt;}
.ycd{bottom:763.973333pt;}
.y7f{bottom:769.973333pt;}
.y37{bottom:770.373333pt;}
.ya5{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y109{bottom:782.693333pt;}
.y36{bottom:785.973333pt;}
.ycc{bottom:788.293333pt;}
.ya4{bottom:793.973333pt;}
.y35{bottom:801.653333pt;}
.ya3{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.ycb{bottom:812.533333pt;}
.y34{bottom:817.253333pt;}
.ya2{bottom:825.253333pt;}
.yf4{bottom:825.653333pt;}
.y7e{bottom:832.853333pt;}
.yca{bottom:836.853333pt;}
.y5e{bottom:840.853333pt;}
.yf3{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y33{bottom:848.853333pt;}
.ya1{bottom:856.853333pt;}
.y32{bottom:864.533333pt;}
.y5d{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y31{bottom:880.133333pt;}
.y5c{bottom:888.133333pt;}
.y30{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y5b{bottom:903.840000pt;}
.yc9{bottom:911.840000pt;}
.y5a{bottom:919.440000pt;}
.yf2{bottom:919.840000pt;}
.y2f{bottom:927.440000pt;}
.ya0{bottom:935.040000pt;}
.yf1{bottom:935.440000pt;}
.y2e{bottom:943.040000pt;}
.y9f{bottom:950.720000pt;}
.y59{bottom:951.040000pt;}
.y2d{bottom:958.720000pt;}
.y9e{bottom:966.320000pt;}
.y58{bottom:966.720000pt;}
.y2c{bottom:974.320000pt;}
.y57{bottom:982.320000pt;}
.y2b{bottom:990.000000pt;}
.y56{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h10{height:23.626667pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.he{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.187500pt;}
.h12{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.hf{height:76.675312pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:59.120000pt;}
.w6{width:150.746667pt;}
.w3{width:163.706667pt;}
.w8{width:164.720000pt;}
.wa{width:174.506667pt;}
.w4{width:175.200000pt;}
.wc{width:235.760000pt;}
.wb{width:240.986667pt;}
.w9{width:284.986667pt;}
.w5{width:331.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x7{left:66.240000pt;}
.xb{left:70.720000pt;}
.xf{left:98.879988pt;}
.x2{left:180.266655pt;}
.x8{left:217.626667pt;}
.x5{left:225.466667pt;}
.xd{left:245.866667pt;}
.x9{left:277.466667pt;}
.x6{left:401.386667pt;}
.xa{left:442.826667pt;}
.xe{left:487.493333pt;}
.x3{left:704.053322pt;}
}




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