
    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_62e125759aedab9fbcc00468.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_8e06bba2b1e43779986893ab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad6913063e090238fc5bb96e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_86c5ef88cee46afc2d4549eb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0558b85c5b77d05cd31d1563.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_5f6bae59425d23f13cf9f9f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_b4fb19ef931ea8086562bc53.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bdae6655c13b709442e23f7c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_46eee630cf1a9d82d6485b12.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;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:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.vb{vertical-align:-9.360000px;}
.v6{vertical-align:-5.760000px;}
.v5{vertical-align:-4.320000px;}
.ve{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.440000px;}
.v7{vertical-align:3.600000px;}
.vd{vertical-align:5.760000px;}
.va{vertical-align:7.200000px;}
.vc{vertical-align:9.360000px;}
.v4{vertical-align:12.240000px;}
.v10{vertical-align:13.680000px;}
.v1{vertical-align:15.120000px;}
.vf{vertical-align:16.560000px;}
.ls8{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.529200px;}
.ls11{letter-spacing:-0.478200px;}
.ls10{letter-spacing:-0.270600px;}
.ls7{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.247800px;}
.ls27{letter-spacing:-0.097800px;}
.ls12{letter-spacing:-0.094800px;}
.lsb{letter-spacing:-0.085200px;}
.ls9{letter-spacing:-0.038880px;}
.lsd{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.012960px;}
.ls18{letter-spacing:0.020880px;}
.ls1b{letter-spacing:0.103680px;}
.ls2b{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.126000px;}
.ls2e{letter-spacing:0.126720px;}
.ls30{letter-spacing:0.141000px;}
.ls2{letter-spacing:0.180000px;}
.lse{letter-spacing:0.187200px;}
.ls3{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.376560px;}
.ls2c{letter-spacing:0.630000px;}
.ls2f{letter-spacing:0.708000px;}
.ls17{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.843120px;}
.ls16{letter-spacing:1.440000px;}
.ls23{letter-spacing:1.686240px;}
.ls1d{letter-spacing:1.978560px;}
.ls1f{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.874960px;}
.ls21{letter-spacing:3.600000px;}
.ls1c{letter-spacing:4.230000px;}
.ls19{letter-spacing:4.314960px;}
.ls20{letter-spacing:4.858560px;}
.ls15{letter-spacing:8.023680px;}
.ls24{letter-spacing:9.898560px;}
.ls14{letter-spacing:11.521440px;}
.ls1a{letter-spacing:12.201120px;}
.ls13{letter-spacing:41.706720px;}
.ls2a{letter-spacing:46.026720px;}
.ls29{letter-spacing:49.626720px;}
.lsf{letter-spacing:202.828800px;}
.ls25{letter-spacing:816.529680px;}
.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;}
}
.ws11{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.572800px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.288200px;}
.ws7{word-spacing:-13.147200px;}
.wse{word-spacing:-13.049400px;}
.ws2{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.880000px;}
.ws9{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.wsc{word-spacing:-10.134600px;}
.ws3{word-spacing:-9.187200px;}
.wsd{word-spacing:-9.092400px;}
.ws5{word-spacing:-7.920000px;}
.wsa{word-spacing:-7.884000px;}
.wsf{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
._2a{margin-left:-129.579600px;}
._29{margin-left:-127.807200px;}
._21{margin-left:-114.328080px;}
._1f{margin-left:-112.507200px;}
._2d{margin-left:-103.867200px;}
._2c{margin-left:-95.886240px;}
._2b{margin-left:-94.507200px;}
._25{margin-left:-79.387200px;}
._30{margin-left:-76.517040px;}
._28{margin-left:-75.061440px;}
._27{margin-left:-73.676880px;}
._24{margin-left:-51.619200px;}
._23{margin-left:-49.855680px;}
._22{margin-left:-48.427200px;}
._1e{margin-left:-46.189440px;}
._26{margin-left:-10.620000px;}
._2e{margin-left:-9.180000px;}
._20{margin-left:-7.920000px;}
._2f{margin-left:-5.040000px;}
._13{margin-left:-3.617760px;}
._d{margin-left:-2.587680px;}
._2{margin-left:-1.476000px;}
._1{width:1.488000px;}
._a{width:2.510160px;}
._f{width:3.944160px;}
._e{width:5.019840px;}
._7{width:6.812640px;}
._c{width:8.491920px;}
._b{width:9.681120px;}
._10{width:11.653200px;}
._9{width:14.210880px;}
._19{width:15.543600px;}
._16{width:17.390160px;}
._8{width:19.422000px;}
._15{width:20.509680px;}
._14{width:21.513600px;}
._1d{width:22.661040px;}
._31{width:24.190800px;}
._1c{width:25.435440px;}
._12{width:26.872560px;}
._11{width:28.386000px;}
._1b{width:30.338160px;}
._1a{width:31.417920px;}
._6{width:33.047280px;}
._32{width:45.478080px;}
._17{width:46.896480px;}
._34{width:62.269920px;}
._35{width:63.797280px;}
._0{width:75.000000px;}
._3{width:181.458000px;}
._4{width:194.109840px;}
._5{width:202.852800px;}
._33{width:208.323360px;}
._18{width:1112.887200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y56{bottom:-8.280000px;}
.y0{bottom:0.000000px;}
.y55{bottom:12.420000px;}
.y54{bottom:31.140000px;}
.y53{bottom:41.610000px;}
.y52{bottom:52.230000px;}
.y7{bottom:56.340000px;}
.y58{bottom:56.520000px;}
.y51{bottom:62.670000px;}
.y6{bottom:70.056000px;}
.y50{bottom:80.310000px;}
.yc9{bottom:112.896000px;}
.y93{bottom:120.636000px;}
.ybe{bottom:124.416000px;}
.y3f{bottom:128.916000px;}
.yc8{bottom:130.536000px;}
.y4f{bottom:133.230000px;}
.y92{bottom:138.276000px;}
.ya4{bottom:138.456000px;}
.ybd{bottom:142.056000px;}
.y3e{bottom:146.556000px;}
.y4e{bottom:147.450000px;}
.yc7{bottom:148.176000px;}
.y91{bottom:155.730000px;}
.ya3{bottom:156.090000px;}
.ybc{bottom:159.510000px;}
.y4d{bottom:161.490000px;}
.y3d{bottom:164.010000px;}
.yc6{bottom:165.810000px;}
.y90{bottom:173.370000px;}
.ya2{bottom:173.730000px;}
.y4c{bottom:175.530000px;}
.ybb{bottom:177.150000px;}
.y3c{bottom:181.650000px;}
.yc5{bottom:183.270000px;}
.y4b{bottom:189.570000px;}
.y8f{bottom:191.010000px;}
.ya1{bottom:191.370000px;}
.yba{bottom:194.790000px;}
.y3b{bottom:199.290000px;}
.yc4{bottom:200.910000px;}
.y4a{bottom:203.610000px;}
.y8e{bottom:208.470000px;}
.ya0{bottom:208.830000px;}
.yb9{bottom:212.250000px;}
.y3a{bottom:216.750000px;}
.y49{bottom:217.650000px;}
.yc3{bottom:218.550000px;}
.y8d{bottom:226.110000px;}
.y9f{bottom:226.470000px;}
.yb8{bottom:229.890000px;}
.y48{bottom:231.870000px;}
.y39{bottom:234.390000px;}
.yc2{bottom:236.010000px;}
.y8c{bottom:243.750000px;}
.y9e{bottom:244.110000px;}
.y47{bottom:247.170000px;}
.yb7{bottom:247.530000px;}
.y38{bottom:252.030000px;}
.yc1{bottom:253.650000px;}
.y8b{bottom:261.210000px;}
.y9d{bottom:261.570000px;}
.yb6{bottom:265.170000px;}
.y46{bottom:266.610000px;}
.y37{bottom:269.490000px;}
.yc0{bottom:271.290000px;}
.y8a{bottom:278.850000px;}
.y9c{bottom:279.210000px;}
.y45{bottom:280.650000px;}
.yb5{bottom:282.630000px;}
.ybf{bottom:285.330000px;}
.y36{bottom:287.130000px;}
.y44{bottom:294.690000px;}
.y89{bottom:296.490000px;}
.y9b{bottom:296.850000px;}
.yb4{bottom:300.270000px;}
.y35{bottom:304.770000px;}
.y43{bottom:308.775000px;}
.y88{bottom:314.130000px;}
.y9a{bottom:314.310000px;}
.yb3{bottom:317.910000px;}
.y34{bottom:322.410000px;}
.y42{bottom:322.815000px;}
.y99{bottom:327.630000px;}
.y98{bottom:328.530000px;}
.y97{bottom:331.050000px;}
.y87{bottom:331.590000px;}
.y94{bottom:331.770000px;}
.y96{bottom:331.950000px;}
.y95{bottom:332.850000px;}
.yb2{bottom:335.370000px;}
.y41{bottom:337.215000px;}
.y33{bottom:339.915000px;}
.y86{bottom:349.275000px;}
.yb1{bottom:353.055000px;}
.y32{bottom:357.555000px;}
.y85{bottom:366.915000px;}
.yb0{bottom:370.695000px;}
.y31{bottom:375.195000px;}
.y84{bottom:384.375000px;}
.yaf{bottom:388.155000px;}
.y30{bottom:392.655000px;}
.y83{bottom:402.015000px;}
.yae{bottom:405.795000px;}
.y2f{bottom:410.295000px;}
.y82{bottom:419.655000px;}
.yad{bottom:423.435000px;}
.y2e{bottom:427.935000px;}
.y81{bottom:437.115000px;}
.yac{bottom:440.895000px;}
.y2d{bottom:445.395000px;}
.y80{bottom:454.755000px;}
.yab{bottom:458.535000px;}
.y2c{bottom:463.035000px;}
.y7f{bottom:472.395000px;}
.yaa{bottom:476.175000px;}
.y2b{bottom:480.675000px;}
.y7e{bottom:490.035000px;}
.ya9{bottom:493.815000px;}
.y2a{bottom:498.135000px;}
.y7d{bottom:507.495000px;}
.ya8{bottom:511.275000px;}
.y29{bottom:515.775000px;}
.y7c{bottom:525.135000px;}
.ya7{bottom:528.915000px;}
.y28{bottom:533.415000px;}
.y7b{bottom:542.775000px;}
.ya6{bottom:546.555000px;}
.y27{bottom:551.055000px;}
.y7a{bottom:560.235000px;}
.ya5{bottom:560.595000px;}
.y40{bottom:566.535000px;}
.y26{bottom:568.515000px;}
.y79{bottom:577.875000px;}
.y25{bottom:586.155000px;}
.y78{bottom:595.515000px;}
.y24{bottom:605.985000px;}
.y77{bottom:613.005000px;}
.y23{bottom:623.625000px;}
.y76{bottom:630.645000px;}
.y22{bottom:641.265000px;}
.y75{bottom:648.285000px;}
.y21{bottom:658.725000px;}
.y74{bottom:665.745000px;}
.y20{bottom:676.365000px;}
.y73{bottom:683.385000px;}
.y1f{bottom:694.005000px;}
.y72{bottom:701.025000px;}
.y1e{bottom:711.465000px;}
.y71{bottom:718.665000px;}
.y1d{bottom:729.105000px;}
.y70{bottom:736.125000px;}
.y1c{bottom:746.745000px;}
.y6f{bottom:753.765000px;}
.y1b{bottom:764.205000px;}
.y6e{bottom:771.405000px;}
.y1a{bottom:781.845000px;}
.y6d{bottom:788.865000px;}
.y19{bottom:799.485000px;}
.y6c{bottom:806.505000px;}
.y18{bottom:817.125000px;}
.y6b{bottom:824.145000px;}
.y17{bottom:834.585000px;}
.y6a{bottom:841.605000px;}
.y16{bottom:852.225000px;}
.y69{bottom:859.245000px;}
.y15{bottom:869.865000px;}
.y68{bottom:876.930000px;}
.y14{bottom:887.370000px;}
.y67{bottom:894.570000px;}
.y13{bottom:905.010000px;}
.y66{bottom:912.030000px;}
.y12{bottom:922.650000px;}
.y65{bottom:929.670000px;}
.y11{bottom:939.750000px;}
.y64{bottom:947.310000px;}
.y10{bottom:958.650000px;}
.y63{bottom:964.770000px;}
.yf{bottom:972.150000px;}
.y62{bottom:982.410000px;}
.ye{bottom:991.410000px;}
.y61{bottom:1000.050000px;}
.yd{bottom:1010.490000px;}
.y60{bottom:1017.510000px;}
.yc{bottom:1028.310000px;}
.y5f{bottom:1035.150000px;}
.yb{bottom:1047.750000px;}
.y5e{bottom:1052.790000px;}
.ya{bottom:1067.730000px;}
.y5d{bottom:1070.430000px;}
.y5c{bottom:1087.890000px;}
.y9{bottom:1090.590000px;}
.y5b{bottom:1105.530000px;}
.y8{bottom:1112.550000px;}
.y5a{bottom:1123.170000px;}
.y5{bottom:1133.250000px;}
.y59{bottom:1140.660000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y57{bottom:1197.540000px;}
.h10{height:31.324219px;}
.hb{height:33.480703px;}
.h3{height:38.100586px;}
.h5{height:40.843828px;}
.hf{height:41.974453px;}
.h6{height:42.445547px;}
.h2{height:45.720703px;}
.h4{height:47.513672px;}
.h7{height:50.597578px;}
.hc{height:51.998203px;}
.h11{height:52.581797px;}
.ha{height:56.084062px;}
.h12{height:56.181797px;}
.h9{height:57.636562px;}
.h13{height:59.781797px;}
.he{height:63.351562px;}
.h17{height:64.101797px;}
.h14{height:65.541797px;}
.h8{height:65.837812px;}
.h15{height:67.701797px;}
.h16{height:69.141797px;}
.hd{height:349.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x9{left:111.275987px;}
.xe{left:113.616000px;}
.x5{left:117.755987px;}
.x3{left:122.975987px;}
.xf{left:134.994000px;}
.x1e{left:144.035987px;}
.x7{left:149.615987px;}
.xd{left:162.029987px;}
.x4{left:227.189987px;}
.xa{left:236.189987px;}
.x1d{left:324.254987px;}
.x6{left:327.134987px;}
.x1b{left:331.094987px;}
.xc{left:336.494987px;}
.x8{left:401.834987px;}
.x2{left:448.274987px;}
.x10{left:530.204987px;}
.x18{left:560.264987px;}
.xb{left:562.424987px;}
.x1a{left:564.584987px;}
.x19{left:570.524987px;}
.x17{left:653.864987px;}
.x1c{left:671.549987px;}
.x15{left:685.769987px;}
.x16{left:690.449987px;}
.x14{left:736.169987px;}
.x12{left:749.849987px;}
.x13{left:756.329987px;}
.x11{left:777.029987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.vb{vertical-align:-8.320000pt;}
.v6{vertical-align:-5.120000pt;}
.v5{vertical-align:-3.840000pt;}
.ve{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.280000pt;}
.v7{vertical-align:3.200000pt;}
.vd{vertical-align:5.120000pt;}
.va{vertical-align:6.400000pt;}
.vc{vertical-align:8.320000pt;}
.v4{vertical-align:10.880000pt;}
.v10{vertical-align:12.160000pt;}
.v1{vertical-align:13.440000pt;}
.vf{vertical-align:14.720000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.470400pt;}
.ls11{letter-spacing:-0.425067pt;}
.ls10{letter-spacing:-0.240533pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.220267pt;}
.ls27{letter-spacing:-0.086933pt;}
.ls12{letter-spacing:-0.084267pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls9{letter-spacing:-0.034560pt;}
.lsd{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.011520pt;}
.ls18{letter-spacing:0.018560pt;}
.ls1b{letter-spacing:0.092160pt;}
.ls2b{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.112000pt;}
.ls2e{letter-spacing:0.112640pt;}
.ls30{letter-spacing:0.125333pt;}
.ls2{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.166400pt;}
.ls3{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.334720pt;}
.ls2c{letter-spacing:0.560000pt;}
.ls2f{letter-spacing:0.629333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.749440pt;}
.ls16{letter-spacing:1.280000pt;}
.ls23{letter-spacing:1.498880pt;}
.ls1d{letter-spacing:1.758720pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.555520pt;}
.ls21{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:3.760000pt;}
.ls19{letter-spacing:3.835520pt;}
.ls20{letter-spacing:4.318720pt;}
.ls15{letter-spacing:7.132160pt;}
.ls24{letter-spacing:8.798720pt;}
.ls14{letter-spacing:10.241280pt;}
.ls1a{letter-spacing:10.845440pt;}
.ls13{letter-spacing:37.072640pt;}
.ls2a{letter-spacing:40.912640pt;}
.ls29{letter-spacing:44.112640pt;}
.lsf{letter-spacing:180.292267pt;}
.ls25{letter-spacing:725.804160pt;}
.ws11{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.374933pt;}
.ws4{word-spacing:-12.953600pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.811733pt;}
.ws7{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.599467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws9{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.wsc{word-spacing:-9.008533pt;}
.ws3{word-spacing:-8.166400pt;}
.wsd{word-spacing:-8.082133pt;}
.ws5{word-spacing:-7.040000pt;}
.wsa{word-spacing:-7.008000pt;}
.wsf{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
._2a{margin-left:-115.181867pt;}
._29{margin-left:-113.606400pt;}
._21{margin-left:-101.624960pt;}
._1f{margin-left:-100.006400pt;}
._2d{margin-left:-92.326400pt;}
._2c{margin-left:-85.232213pt;}
._2b{margin-left:-84.006400pt;}
._25{margin-left:-70.566400pt;}
._30{margin-left:-68.015147pt;}
._28{margin-left:-66.721280pt;}
._27{margin-left:-65.490560pt;}
._24{margin-left:-45.883733pt;}
._23{margin-left:-44.316160pt;}
._22{margin-left:-43.046400pt;}
._1e{margin-left:-41.057280pt;}
._26{margin-left:-9.440000pt;}
._2e{margin-left:-8.160000pt;}
._20{margin-left:-7.040000pt;}
._2f{margin-left:-4.480000pt;}
._13{margin-left:-3.215787pt;}
._d{margin-left:-2.300160pt;}
._2{margin-left:-1.312000pt;}
._1{width:1.322667pt;}
._a{width:2.231253pt;}
._f{width:3.505920pt;}
._e{width:4.462080pt;}
._7{width:6.055680pt;}
._c{width:7.548373pt;}
._b{width:8.605440pt;}
._10{width:10.358400pt;}
._9{width:12.631893pt;}
._19{width:13.816533pt;}
._16{width:15.457920pt;}
._8{width:17.264000pt;}
._15{width:18.230827pt;}
._14{width:19.123200pt;}
._1d{width:20.143147pt;}
._31{width:21.502933pt;}
._1c{width:22.609280pt;}
._12{width:23.886720pt;}
._11{width:25.232000pt;}
._1b{width:26.967253pt;}
._1a{width:27.927040pt;}
._6{width:29.375360pt;}
._32{width:40.424960pt;}
._17{width:41.685760pt;}
._34{width:55.351040pt;}
._35{width:56.708693pt;}
._0{width:66.666667pt;}
._3{width:161.296000pt;}
._4{width:172.542080pt;}
._5{width:180.313600pt;}
._33{width:185.176320pt;}
._18{width:989.233067pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y56{bottom:-7.360000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:11.040000pt;}
.y54{bottom:27.680000pt;}
.y53{bottom:36.986667pt;}
.y52{bottom:46.426667pt;}
.y7{bottom:50.080000pt;}
.y58{bottom:50.240000pt;}
.y51{bottom:55.706667pt;}
.y6{bottom:62.272000pt;}
.y50{bottom:71.386667pt;}
.yc9{bottom:100.352000pt;}
.y93{bottom:107.232000pt;}
.ybe{bottom:110.592000pt;}
.y3f{bottom:114.592000pt;}
.yc8{bottom:116.032000pt;}
.y4f{bottom:118.426667pt;}
.y92{bottom:122.912000pt;}
.ya4{bottom:123.072000pt;}
.ybd{bottom:126.272000pt;}
.y3e{bottom:130.272000pt;}
.y4e{bottom:131.066667pt;}
.yc7{bottom:131.712000pt;}
.y91{bottom:138.426667pt;}
.ya3{bottom:138.746667pt;}
.ybc{bottom:141.786667pt;}
.y4d{bottom:143.546667pt;}
.y3d{bottom:145.786667pt;}
.yc6{bottom:147.386667pt;}
.y90{bottom:154.106667pt;}
.ya2{bottom:154.426667pt;}
.y4c{bottom:156.026667pt;}
.ybb{bottom:157.466667pt;}
.y3c{bottom:161.466667pt;}
.yc5{bottom:162.906667pt;}
.y4b{bottom:168.506667pt;}
.y8f{bottom:169.786667pt;}
.ya1{bottom:170.106667pt;}
.yba{bottom:173.146667pt;}
.y3b{bottom:177.146667pt;}
.yc4{bottom:178.586667pt;}
.y4a{bottom:180.986667pt;}
.y8e{bottom:185.306667pt;}
.ya0{bottom:185.626667pt;}
.yb9{bottom:188.666667pt;}
.y3a{bottom:192.666667pt;}
.y49{bottom:193.466667pt;}
.yc3{bottom:194.266667pt;}
.y8d{bottom:200.986667pt;}
.y9f{bottom:201.306667pt;}
.yb8{bottom:204.346667pt;}
.y48{bottom:206.106667pt;}
.y39{bottom:208.346667pt;}
.yc2{bottom:209.786667pt;}
.y8c{bottom:216.666667pt;}
.y9e{bottom:216.986667pt;}
.y47{bottom:219.706667pt;}
.yb7{bottom:220.026667pt;}
.y38{bottom:224.026667pt;}
.yc1{bottom:225.466667pt;}
.y8b{bottom:232.186667pt;}
.y9d{bottom:232.506667pt;}
.yb6{bottom:235.706667pt;}
.y46{bottom:236.986667pt;}
.y37{bottom:239.546667pt;}
.yc0{bottom:241.146667pt;}
.y8a{bottom:247.866667pt;}
.y9c{bottom:248.186667pt;}
.y45{bottom:249.466667pt;}
.yb5{bottom:251.226667pt;}
.ybf{bottom:253.626667pt;}
.y36{bottom:255.226667pt;}
.y44{bottom:261.946667pt;}
.y89{bottom:263.546667pt;}
.y9b{bottom:263.866667pt;}
.yb4{bottom:266.906667pt;}
.y35{bottom:270.906667pt;}
.y43{bottom:274.466667pt;}
.y88{bottom:279.226667pt;}
.y9a{bottom:279.386667pt;}
.yb3{bottom:282.586667pt;}
.y34{bottom:286.586667pt;}
.y42{bottom:286.946667pt;}
.y99{bottom:291.226667pt;}
.y98{bottom:292.026667pt;}
.y97{bottom:294.266667pt;}
.y87{bottom:294.746667pt;}
.y94{bottom:294.906667pt;}
.y96{bottom:295.066667pt;}
.y95{bottom:295.866667pt;}
.yb2{bottom:298.106667pt;}
.y41{bottom:299.746667pt;}
.y33{bottom:302.146667pt;}
.y86{bottom:310.466667pt;}
.yb1{bottom:313.826667pt;}
.y32{bottom:317.826667pt;}
.y85{bottom:326.146667pt;}
.yb0{bottom:329.506667pt;}
.y31{bottom:333.506667pt;}
.y84{bottom:341.666667pt;}
.yaf{bottom:345.026667pt;}
.y30{bottom:349.026667pt;}
.y83{bottom:357.346667pt;}
.yae{bottom:360.706667pt;}
.y2f{bottom:364.706667pt;}
.y82{bottom:373.026667pt;}
.yad{bottom:376.386667pt;}
.y2e{bottom:380.386667pt;}
.y81{bottom:388.546667pt;}
.yac{bottom:391.906667pt;}
.y2d{bottom:395.906667pt;}
.y80{bottom:404.226667pt;}
.yab{bottom:407.586667pt;}
.y2c{bottom:411.586667pt;}
.y7f{bottom:419.906667pt;}
.yaa{bottom:423.266667pt;}
.y2b{bottom:427.266667pt;}
.y7e{bottom:435.586667pt;}
.ya9{bottom:438.946667pt;}
.y2a{bottom:442.786667pt;}
.y7d{bottom:451.106667pt;}
.ya8{bottom:454.466667pt;}
.y29{bottom:458.466667pt;}
.y7c{bottom:466.786667pt;}
.ya7{bottom:470.146667pt;}
.y28{bottom:474.146667pt;}
.y7b{bottom:482.466667pt;}
.ya6{bottom:485.826667pt;}
.y27{bottom:489.826667pt;}
.y7a{bottom:497.986667pt;}
.ya5{bottom:498.306667pt;}
.y40{bottom:503.586667pt;}
.y26{bottom:505.346667pt;}
.y79{bottom:513.666667pt;}
.y25{bottom:521.026667pt;}
.y78{bottom:529.346667pt;}
.y24{bottom:538.653333pt;}
.y77{bottom:544.893333pt;}
.y23{bottom:554.333333pt;}
.y76{bottom:560.573333pt;}
.y22{bottom:570.013333pt;}
.y75{bottom:576.253333pt;}
.y21{bottom:585.533333pt;}
.y74{bottom:591.773333pt;}
.y20{bottom:601.213333pt;}
.y73{bottom:607.453333pt;}
.y1f{bottom:616.893333pt;}
.y72{bottom:623.133333pt;}
.y1e{bottom:632.413333pt;}
.y71{bottom:638.813333pt;}
.y1d{bottom:648.093333pt;}
.y70{bottom:654.333333pt;}
.y1c{bottom:663.773333pt;}
.y6f{bottom:670.013333pt;}
.y1b{bottom:679.293333pt;}
.y6e{bottom:685.693333pt;}
.y1a{bottom:694.973333pt;}
.y6d{bottom:701.213333pt;}
.y19{bottom:710.653333pt;}
.y6c{bottom:716.893333pt;}
.y18{bottom:726.333333pt;}
.y6b{bottom:732.573333pt;}
.y17{bottom:741.853333pt;}
.y6a{bottom:748.093333pt;}
.y16{bottom:757.533333pt;}
.y69{bottom:763.773333pt;}
.y15{bottom:773.213333pt;}
.y68{bottom:779.493333pt;}
.y14{bottom:788.773333pt;}
.y67{bottom:795.173333pt;}
.y13{bottom:804.453333pt;}
.y66{bottom:810.693333pt;}
.y12{bottom:820.133333pt;}
.y65{bottom:826.373333pt;}
.y11{bottom:835.333333pt;}
.y64{bottom:842.053333pt;}
.y10{bottom:852.133333pt;}
.y63{bottom:857.573333pt;}
.yf{bottom:864.133333pt;}
.y62{bottom:873.253333pt;}
.ye{bottom:881.253333pt;}
.y61{bottom:888.933333pt;}
.yd{bottom:898.213333pt;}
.y60{bottom:904.453333pt;}
.yc{bottom:914.053333pt;}
.y5f{bottom:920.133333pt;}
.yb{bottom:931.333333pt;}
.y5e{bottom:935.813333pt;}
.ya{bottom:949.093333pt;}
.y5d{bottom:951.493333pt;}
.y5c{bottom:967.013333pt;}
.y9{bottom:969.413333pt;}
.y5b{bottom:982.693333pt;}
.y8{bottom:988.933333pt;}
.y5a{bottom:998.373333pt;}
.y5{bottom:1007.333333pt;}
.y59{bottom:1013.920000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y57{bottom:1064.480000pt;}
.h10{height:27.843750pt;}
.hb{height:29.760625pt;}
.h3{height:33.867188pt;}
.h5{height:36.305625pt;}
.hf{height:37.310625pt;}
.h6{height:37.729375pt;}
.h2{height:40.640625pt;}
.h4{height:42.234375pt;}
.h7{height:44.975625pt;}
.hc{height:46.220625pt;}
.h11{height:46.739375pt;}
.ha{height:49.852500pt;}
.h12{height:49.939375pt;}
.h9{height:51.232500pt;}
.h13{height:53.139375pt;}
.he{height:56.312500pt;}
.h17{height:56.979375pt;}
.h14{height:58.259375pt;}
.h8{height:58.522500pt;}
.h15{height:60.179375pt;}
.h16{height:61.459375pt;}
.hd{height:311.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x9{left:98.911988pt;}
.xe{left:100.992000pt;}
.x5{left:104.671988pt;}
.x3{left:109.311988pt;}
.xf{left:119.994667pt;}
.x1e{left:128.031988pt;}
.x7{left:132.991988pt;}
.xd{left:144.026655pt;}
.x4{left:201.946655pt;}
.xa{left:209.946655pt;}
.x1d{left:288.226655pt;}
.x6{left:290.786655pt;}
.x1b{left:294.306655pt;}
.xc{left:299.106655pt;}
.x8{left:357.186655pt;}
.x2{left:398.466655pt;}
.x10{left:471.293322pt;}
.x18{left:498.013322pt;}
.xb{left:499.933322pt;}
.x1a{left:501.853322pt;}
.x19{left:507.133322pt;}
.x17{left:581.213322pt;}
.x1c{left:596.933322pt;}
.x15{left:609.573322pt;}
.x16{left:613.733322pt;}
.x14{left:654.373322pt;}
.x12{left:666.533322pt;}
.x13{left:672.293322pt;}
.x11{left:690.693322pt;}
}




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