
    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_a04f91c1ebaa1fbb6361b0f5.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_2b661fce2955fc1f8ed18eeb.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_f25e439042be272a67c7217e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e72108bbf8e20cd16be68aa.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_4e304f10e0e6ee1140276eb3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4939dc38c3e5b12921d37a4f.woff')format("woff");}.ff7{font-family:ff7;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;}
.ls18{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.038880px;}
.ls14{letter-spacing:-0.018360px;}
.ls12{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.116400px;}
.ls15{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.181200px;}
.lsa{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.425600px;}
.ws12{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.353600px;}
.ws11{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.208040px;}
.wsc{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._5{margin-left:-3.246600px;}
._6{margin-left:-2.204999px;}
._0{margin-left:-1.110000px;}
._3{width:1.056587px;}
._7{width:2.207062px;}
._2{width:3.389472px;}
._1{width:4.495080px;}
._8{width:5.845320px;}
._9{width:7.109041px;}
._10{width:8.307372px;}
._13{width:10.160280px;}
._f{width:12.144000px;}
._4{width:14.637000px;}
._12{width:16.172280px;}
._11{width:17.675280px;}
._17{width:18.722893px;}
._14{width:19.807560px;}
._a{width:20.861400px;}
._e{width:22.272000px;}
._16{width:24.080520px;}
._b{width:26.693400px;}
._c{width:28.256400px;}
._d{width:29.553599px;}
._1e{width:30.871440px;}
._19{width:42.895440px;}
._1c{width:43.912440px;}
._1b{width:44.999640px;}
._15{width:48.276360px;}
._1f{width:50.801400px;}
._1a{width:57.143880px;}
._1d{width:63.366480px;}
._18{width:130.374360px;}
._20{width:207.414000px;}
.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;}
.y0{bottom:0.000000px;}
.y84{bottom:7.830000px;}
.y80{bottom:7.920000px;}
.y7f{bottom:25.470000px;}
.yca{bottom:35.190000px;}
.yc7{bottom:35.280000px;}
.y8d{bottom:52.740000px;}
.y90{bottom:62.460000px;}
.ybf{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y88{bottom:89.820000px;}
.y82{bottom:89.850000px;}
.y1{bottom:101.640000px;}
.yad{bottom:116.850000px;}
.ydd{bottom:128.100000px;}
.y4f{bottom:134.040000px;}
.yac{bottom:134.400000px;}
.ydc{bottom:145.740000px;}
.yab{bottom:151.950000px;}
.y28{bottom:158.610000px;}
.ydb{bottom:163.290000px;}
.y108{bottom:163.380000px;}
.yaa{bottom:169.590000px;}
.y4e{bottom:169.680000px;}
.y27{bottom:176.250000px;}
.yda{bottom:180.930000px;}
.y26{bottom:193.800000px;}
.ya9{bottom:196.140000px;}
.yd9{bottom:198.480000px;}
.y107{bottom:198.570000px;}
.y4d{bottom:201.900000px;}
.y7c{bottom:209.460000px;}
.y25{bottom:211.350000px;}
.yd8{bottom:216.030000px;}
.y106{bottom:216.120000px;}
.y24{bottom:228.990000px;}
.ya8{bottom:231.690000px;}
.yd7{bottom:233.670000px;}
.y7b{bottom:245.100000px;}
.y23{bottom:246.540000px;}
.ya7{bottom:249.330000px;}
.yd6{bottom:251.220000px;}
.y105{bottom:251.310000px;}
.y22{bottom:264.090000px;}
.ya6{bottom:266.880000px;}
.yd5{bottom:268.860000px;}
.y7a{bottom:280.650000px;}
.y21{bottom:281.730000px;}
.ya5{bottom:284.520000px;}
.yd4{bottom:286.410000px;}
.y104{bottom:286.500000px;}
.y79{bottom:298.200000px;}
.y20{bottom:299.280000px;}
.ya4{bottom:302.070000px;}
.yd3{bottom:303.960000px;}
.y103{bottom:304.050000px;}
.y78{bottom:315.840000px;}
.y1f{bottom:316.920000px;}
.ya3{bottom:319.620000px;}
.yd2{bottom:321.600000px;}
.y77{bottom:333.390000px;}
.y1e{bottom:334.470000px;}
.ya2{bottom:337.260000px;}
.yd1{bottom:339.150000px;}
.y102{bottom:339.240000px;}
.y125{bottom:342.390000px;}
.y76{bottom:350.940000px;}
.y1d{bottom:352.020000px;}
.ya1{bottom:354.810000px;}
.yd0{bottom:356.790000px;}
.y124{bottom:359.940000px;}
.y101{bottom:366.150000px;}
.y75{bottom:368.580000px;}
.y1c{bottom:369.660000px;}
.ya0{bottom:372.450000px;}
.ycf{bottom:374.340000px;}
.y123{bottom:377.580000px;}
.y74{bottom:386.130000px;}
.y1b{bottom:387.210000px;}
.yce{bottom:391.890000px;}
.y122{bottom:395.130000px;}
.y9f{bottom:399.000000px;}
.y73{bottom:403.770000px;}
.y1a{bottom:404.850000px;}
.ycd{bottom:409.530000px;}
.y121{bottom:412.770000px;}
.y100{bottom:414.390000px;}
.y72{bottom:421.320000px;}
.y19{bottom:422.400000px;}
.y120{bottom:430.320000px;}
.yff{bottom:431.940000px;}
.y9e{bottom:434.550000px;}
.ycc{bottom:436.440000px;}
.y71{bottom:438.870000px;}
.y18{bottom:439.950000px;}
.y11f{bottom:447.870000px;}
.yfe{bottom:449.580000px;}
.y9d{bottom:452.190000px;}
.y70{bottom:465.510000px;}
.y17{bottom:466.860000px;}
.yfd{bottom:467.130000px;}
.y9c{bottom:469.740000px;}
.yc9{bottom:482.100000px;}
.y11e{bottom:483.090000px;}
.yfc{bottom:484.800000px;}
.y9b{bottom:487.410000px;}
.y11d{bottom:500.730000px;}
.y6f{bottom:501.090000px;}
.yfb{bottom:502.350000px;}
.y9a{bottom:504.960000px;}
.ycb{bottom:509.460000px;}
.y16{bottom:515.490000px;}
.y6e{bottom:518.730000px;}
.yfa{bottom:519.900000px;}
.y4c{bottom:520.260000px;}
.y99{bottom:522.510000px;}
.y11c{bottom:527.280000px;}
.y6d{bottom:536.280000px;}
.yc6{bottom:536.730000px;}
.yf9{bottom:537.540000px;}
.y4b{bottom:537.900000px;}
.y98{bottom:540.150000px;}
.y11b{bottom:544.830000px;}
.y15{bottom:552.570000px;}
.y6c{bottom:553.830000px;}
.yf8{bottom:555.090000px;}
.y4a{bottom:555.450000px;}
.y97{bottom:557.700000px;}
.y11a{bottom:562.470000px;}
.yc8{bottom:564.090000px;}
.y14{bottom:570.120000px;}
.y6b{bottom:571.470000px;}
.yf7{bottom:572.730000px;}
.y49{bottom:573.000000px;}
.y96{bottom:575.340000px;}
.y119{bottom:580.020000px;}
.y13{bottom:587.670000px;}
.y6a{bottom:589.020000px;}
.yf6{bottom:590.280000px;}
.y48{bottom:590.640000px;}
.yc2{bottom:591.450000px;}
.y95{bottom:592.890000px;}
.y12{bottom:605.310000px;}
.y69{bottom:606.660000px;}
.yf5{bottom:607.830000px;}
.y47{bottom:608.190000px;}
.yc5{bottom:618.810000px;}
.y94{bottom:619.440000px;}
.y11{bottom:622.860000px;}
.y68{bottom:624.210000px;}
.yf4{bottom:625.470000px;}
.y46{bottom:625.830000px;}
.y10{bottom:640.500000px;}
.y67{bottom:641.760000px;}
.yf3{bottom:643.020000px;}
.y45{bottom:643.380000px;}
.yc4{bottom:646.080000px;}
.y93{bottom:655.350000px;}
.yf{bottom:658.050000px;}
.yf2{bottom:660.660000px;}
.y44{bottom:660.930000px;}
.y66{bottom:668.400000px;}
.yc3{bottom:673.440000px;}
.ye{bottom:675.600000px;}
.yf1{bottom:678.210000px;}
.y43{bottom:678.570000px;}
.y118{bottom:685.950000px;}
.yd{bottom:693.240000px;}
.yf0{bottom:695.760000px;}
.y42{bottom:696.120000px;}
.ybe{bottom:700.800000px;}
.y8f{bottom:701.070000px;}
.y65{bottom:703.950000px;}
.yc{bottom:710.790000px;}
.y117{bottom:712.590000px;}
.yef{bottom:713.400000px;}
.y41{bottom:713.760000px;}
.y64{bottom:721.590000px;}
.yc1{bottom:728.160000px;}
.y92{bottom:728.340000px;}
.yb{bottom:728.430000px;}
.y116{bottom:730.140000px;}
.yee{bottom:730.950000px;}
.y40{bottom:731.310000px;}
.y63{bottom:739.140000px;}
.yed{bottom:748.590000px;}
.y3f{bottom:748.860000px;}
.ya{bottom:755.340000px;}
.yc0{bottom:755.430000px;}
.y91{bottom:755.700000px;}
.y62{bottom:756.690000px;}
.yec{bottom:766.140000px;}
.y3e{bottom:766.500000px;}
.y61{bottom:774.330000px;}
.ybd{bottom:782.790000px;}
.y8c{bottom:783.060000px;}
.yeb{bottom:783.690000px;}
.y3d{bottom:784.050000px;}
.y60{bottom:791.880000px;}
.yea{bottom:801.330000px;}
.y3c{bottom:801.690000px;}
.y9{bottom:803.580000px;}
.y5f{bottom:809.520000px;}
.y115{bottom:818.520000px;}
.ye9{bottom:818.880000px;}
.y3b{bottom:819.240000px;}
.y5e{bottom:827.070000px;}
.y8e{bottom:827.970000px;}
.ybc{bottom:831.480000px;}
.y114{bottom:836.070000px;}
.ye8{bottom:836.520000px;}
.y3a{bottom:836.790000px;}
.y8{bottom:839.130000px;}
.y5d{bottom:844.620000px;}
.y113{bottom:853.620000px;}
.ye7{bottom:854.070000px;}
.y39{bottom:854.430000px;}
.y87{bottom:855.330000px;}
.ybb{bottom:867.030000px;}
.y5c{bottom:871.260000px;}
.ye6{bottom:871.620000px;}
.y38{bottom:871.980000px;}
.y7{bottom:874.950000px;}
.y112{bottom:880.260000px;}
.y8b{bottom:882.600000px;}
.yba{bottom:884.670000px;}
.y37{bottom:889.530000px;}
.y111{bottom:897.810000px;}
.ye5{bottom:898.530000px;}
.yb9{bottom:902.220000px;}
.y5b{bottom:906.810000px;}
.y36{bottom:907.170000px;}
.y8a{bottom:909.960000px;}
.y6{bottom:910.950000px;}
.yb8{bottom:919.860000px;}
.y5a{bottom:924.450000px;}
.y35{bottom:924.720000px;}
.y89{bottom:937.320000px;}
.yb7{bottom:937.410000px;}
.y59{bottom:942.000000px;}
.y34{bottom:942.360000px;}
.ye4{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.yb6{bottom:954.960000px;}
.y58{bottom:959.550000px;}
.y33{bottom:959.910000px;}
.ye3{bottom:964.410000px;}
.y81{bottom:964.680000px;}
.y110{bottom:968.550000px;}
.yb5{bottom:972.600000px;}
.y57{bottom:977.190000px;}
.y32{bottom:977.460000px;}
.ye2{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y10f{bottom:986.190000px;}
.yb4{bottom:990.150000px;}
.y86{bottom:991.950000px;}
.y56{bottom:994.740000px;}
.y31{bottom:995.100000px;}
.ye1{bottom:999.600000px;}
.y10e{bottom:1003.740000px;}
.yb3{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y55{bottom:1012.320000px;}
.y30{bottom:1012.680000px;}
.ye0{bottom:1017.180000px;}
.y85{bottom:1019.340000px;}
.y10d{bottom:1021.320000px;}
.y54{bottom:1029.960000px;}
.y2f{bottom:1030.320000px;}
.yb2{bottom:1034.370000px;}
.ydf{bottom:1034.820000px;}
.y83{bottom:1046.700000px;}
.y53{bottom:1047.510000px;}
.y2e{bottom:1047.870000px;}
.y10c{bottom:1047.960000px;}
.yde{bottom:1052.370000px;}
.y52{bottom:1065.150000px;}
.y2d{bottom:1065.420000px;}
.y10b{bottom:1065.510000px;}
.yb1{bottom:1069.920000px;}
.y7e{bottom:1073.970000px;}
.y10a{bottom:1083.150000px;}
.yb0{bottom:1087.560000px;}
.y51{bottom:1091.700000px;}
.y2c{bottom:1092.330000px;}
.y109{bottom:1100.700000px;}
.yaf{bottom:1105.110000px;}
.yae{bottom:1122.750000px;}
.y50{bottom:1127.610000px;}
.y7d{bottom:1140.300000px;}
.y2b{bottom:1140.480000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h10{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h15{height:53.910000px;}
.h14{height:54.000000px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.h8{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:71.460000px;}
.h12{height:81.180000px;}
.h13{height:81.270000px;}
.hf{height:108.540000px;}
.hc{height:108.570000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:122.580000px;}
.w3{width:146.820000px;}
.w8{width:172.350000px;}
.w6{width:176.880000px;}
.w7{width:297.660000px;}
.w4{width:484.770000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.x9{left:122.400000px;}
.x5{left:187.319987px;}
.x2{left:211.079987px;}
.x7{left:216.300000px;}
.xa{left:300.090000px;}
.xb{left:598.560000px;}
.x8{left:701.880000px;}
.x4{left:718.889987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.034560pt;}
.ls14{letter-spacing:-0.016320pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.103467pt;}
.ls15{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.161067pt;}
.lsa{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.933867pt;}
.ws12{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.869867pt;}
.ws11{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.740480pt;}
.wsc{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._5{margin-left:-2.885867pt;}
._6{margin-left:-1.959999pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.939189pt;}
._7{width:1.961833pt;}
._2{width:3.012864pt;}
._1{width:3.995627pt;}
._8{width:5.195840pt;}
._9{width:6.319148pt;}
._10{width:7.384330pt;}
._13{width:9.031360pt;}
._f{width:10.794666pt;}
._4{width:13.010667pt;}
._12{width:14.375360pt;}
._11{width:15.711360pt;}
._17{width:16.642571pt;}
._14{width:17.606720pt;}
._a{width:18.543466pt;}
._e{width:19.797333pt;}
._16{width:21.404907pt;}
._b{width:23.727467pt;}
._c{width:25.116800pt;}
._d{width:26.269865pt;}
._1e{width:27.441280pt;}
._19{width:38.129280pt;}
._1c{width:39.033280pt;}
._1b{width:39.999680pt;}
._15{width:42.912320pt;}
._1f{width:45.156800pt;}
._1a{width:50.794560pt;}
._1d{width:56.325760pt;}
._18{width:115.888320pt;}
._20{width:184.368000pt;}
.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;}
.y0{bottom:0.000000pt;}
.y84{bottom:6.960000pt;}
.y80{bottom:7.040000pt;}
.y7f{bottom:22.640000pt;}
.yca{bottom:31.280000pt;}
.yc7{bottom:31.360000pt;}
.y8d{bottom:46.880000pt;}
.y90{bottom:55.520000pt;}
.ybf{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y88{bottom:79.840000pt;}
.y82{bottom:79.866667pt;}
.y1{bottom:90.346667pt;}
.yad{bottom:103.866667pt;}
.ydd{bottom:113.866667pt;}
.y4f{bottom:119.146667pt;}
.yac{bottom:119.466667pt;}
.ydc{bottom:129.546667pt;}
.yab{bottom:135.066667pt;}
.y28{bottom:140.986667pt;}
.ydb{bottom:145.146667pt;}
.y108{bottom:145.226667pt;}
.yaa{bottom:150.746667pt;}
.y4e{bottom:150.826667pt;}
.y27{bottom:156.666667pt;}
.yda{bottom:160.826667pt;}
.y26{bottom:172.266667pt;}
.ya9{bottom:174.346667pt;}
.yd9{bottom:176.426667pt;}
.y107{bottom:176.506667pt;}
.y4d{bottom:179.466667pt;}
.y7c{bottom:186.186667pt;}
.y25{bottom:187.866667pt;}
.yd8{bottom:192.026667pt;}
.y106{bottom:192.106667pt;}
.y24{bottom:203.546667pt;}
.ya8{bottom:205.946667pt;}
.yd7{bottom:207.706667pt;}
.y7b{bottom:217.866667pt;}
.y23{bottom:219.146667pt;}
.ya7{bottom:221.626667pt;}
.yd6{bottom:223.306667pt;}
.y105{bottom:223.386667pt;}
.y22{bottom:234.746667pt;}
.ya6{bottom:237.226667pt;}
.yd5{bottom:238.986667pt;}
.y7a{bottom:249.466667pt;}
.y21{bottom:250.426667pt;}
.ya5{bottom:252.906667pt;}
.yd4{bottom:254.586667pt;}
.y104{bottom:254.666667pt;}
.y79{bottom:265.066667pt;}
.y20{bottom:266.026667pt;}
.ya4{bottom:268.506667pt;}
.yd3{bottom:270.186667pt;}
.y103{bottom:270.266667pt;}
.y78{bottom:280.746667pt;}
.y1f{bottom:281.706667pt;}
.ya3{bottom:284.106667pt;}
.yd2{bottom:285.866667pt;}
.y77{bottom:296.346667pt;}
.y1e{bottom:297.306667pt;}
.ya2{bottom:299.786667pt;}
.yd1{bottom:301.466667pt;}
.y102{bottom:301.546667pt;}
.y125{bottom:304.346667pt;}
.y76{bottom:311.946667pt;}
.y1d{bottom:312.906667pt;}
.ya1{bottom:315.386667pt;}
.yd0{bottom:317.146667pt;}
.y124{bottom:319.946667pt;}
.y101{bottom:325.466667pt;}
.y75{bottom:327.626667pt;}
.y1c{bottom:328.586667pt;}
.ya0{bottom:331.066667pt;}
.ycf{bottom:332.746667pt;}
.y123{bottom:335.626667pt;}
.y74{bottom:343.226667pt;}
.y1b{bottom:344.186667pt;}
.yce{bottom:348.346667pt;}
.y122{bottom:351.226667pt;}
.y9f{bottom:354.666667pt;}
.y73{bottom:358.906667pt;}
.y1a{bottom:359.866667pt;}
.ycd{bottom:364.026667pt;}
.y121{bottom:366.906667pt;}
.y100{bottom:368.346667pt;}
.y72{bottom:374.506667pt;}
.y19{bottom:375.466667pt;}
.y120{bottom:382.506667pt;}
.yff{bottom:383.946667pt;}
.y9e{bottom:386.266667pt;}
.ycc{bottom:387.946667pt;}
.y71{bottom:390.106667pt;}
.y18{bottom:391.066667pt;}
.y11f{bottom:398.106667pt;}
.yfe{bottom:399.626667pt;}
.y9d{bottom:401.946667pt;}
.y70{bottom:413.786667pt;}
.y17{bottom:414.986667pt;}
.yfd{bottom:415.226667pt;}
.y9c{bottom:417.546667pt;}
.yc9{bottom:428.533333pt;}
.y11e{bottom:429.413333pt;}
.yfc{bottom:430.933333pt;}
.y9b{bottom:433.253333pt;}
.y11d{bottom:445.093333pt;}
.y6f{bottom:445.413333pt;}
.yfb{bottom:446.533333pt;}
.y9a{bottom:448.853333pt;}
.ycb{bottom:452.853333pt;}
.y16{bottom:458.213333pt;}
.y6e{bottom:461.093333pt;}
.yfa{bottom:462.133333pt;}
.y4c{bottom:462.453333pt;}
.y99{bottom:464.453333pt;}
.y11c{bottom:468.693333pt;}
.y6d{bottom:476.693333pt;}
.yc6{bottom:477.093333pt;}
.yf9{bottom:477.813333pt;}
.y4b{bottom:478.133333pt;}
.y98{bottom:480.133333pt;}
.y11b{bottom:484.293333pt;}
.y15{bottom:491.173333pt;}
.y6c{bottom:492.293333pt;}
.yf8{bottom:493.413333pt;}
.y4a{bottom:493.733333pt;}
.y97{bottom:495.733333pt;}
.y11a{bottom:499.973333pt;}
.yc8{bottom:501.413333pt;}
.y14{bottom:506.773333pt;}
.y6b{bottom:507.973333pt;}
.yf7{bottom:509.093333pt;}
.y49{bottom:509.333333pt;}
.y96{bottom:511.413333pt;}
.y119{bottom:515.573333pt;}
.y13{bottom:522.373333pt;}
.y6a{bottom:523.573333pt;}
.yf6{bottom:524.693333pt;}
.y48{bottom:525.013333pt;}
.yc2{bottom:525.733333pt;}
.y95{bottom:527.013333pt;}
.y12{bottom:538.053333pt;}
.y69{bottom:539.253333pt;}
.yf5{bottom:540.293333pt;}
.y47{bottom:540.613333pt;}
.yc5{bottom:550.053333pt;}
.y94{bottom:550.613333pt;}
.y11{bottom:553.653333pt;}
.y68{bottom:554.853333pt;}
.yf4{bottom:555.973333pt;}
.y46{bottom:556.293333pt;}
.y10{bottom:569.333333pt;}
.y67{bottom:570.453333pt;}
.yf3{bottom:571.573333pt;}
.y45{bottom:571.893333pt;}
.yc4{bottom:574.293333pt;}
.y93{bottom:582.533333pt;}
.yf{bottom:584.933333pt;}
.yf2{bottom:587.253333pt;}
.y44{bottom:587.493333pt;}
.y66{bottom:594.133333pt;}
.yc3{bottom:598.613333pt;}
.ye{bottom:600.533333pt;}
.yf1{bottom:602.853333pt;}
.y43{bottom:603.173333pt;}
.y118{bottom:609.733333pt;}
.yd{bottom:616.213333pt;}
.yf0{bottom:618.453333pt;}
.y42{bottom:618.773333pt;}
.ybe{bottom:622.933333pt;}
.y8f{bottom:623.173333pt;}
.y65{bottom:625.733333pt;}
.yc{bottom:631.813333pt;}
.y117{bottom:633.413333pt;}
.yef{bottom:634.133333pt;}
.y41{bottom:634.453333pt;}
.y64{bottom:641.413333pt;}
.yc1{bottom:647.253333pt;}
.y92{bottom:647.413333pt;}
.yb{bottom:647.493333pt;}
.y116{bottom:649.013333pt;}
.yee{bottom:649.733333pt;}
.y40{bottom:650.053333pt;}
.y63{bottom:657.013333pt;}
.yed{bottom:665.413333pt;}
.y3f{bottom:665.653333pt;}
.ya{bottom:671.413333pt;}
.yc0{bottom:671.493333pt;}
.y91{bottom:671.733333pt;}
.y62{bottom:672.613333pt;}
.yec{bottom:681.013333pt;}
.y3e{bottom:681.333333pt;}
.y61{bottom:688.293333pt;}
.ybd{bottom:695.813333pt;}
.y8c{bottom:696.053333pt;}
.yeb{bottom:696.613333pt;}
.y3d{bottom:696.933333pt;}
.y60{bottom:703.893333pt;}
.yea{bottom:712.293333pt;}
.y3c{bottom:712.613333pt;}
.y9{bottom:714.293333pt;}
.y5f{bottom:719.573333pt;}
.y115{bottom:727.573333pt;}
.ye9{bottom:727.893333pt;}
.y3b{bottom:728.213333pt;}
.y5e{bottom:735.173333pt;}
.y8e{bottom:735.973333pt;}
.ybc{bottom:739.093333pt;}
.y114{bottom:743.173333pt;}
.ye8{bottom:743.573333pt;}
.y3a{bottom:743.813333pt;}
.y8{bottom:745.893333pt;}
.y5d{bottom:750.773333pt;}
.y113{bottom:758.773333pt;}
.ye7{bottom:759.173333pt;}
.y39{bottom:759.493333pt;}
.y87{bottom:760.293333pt;}
.ybb{bottom:770.693333pt;}
.y5c{bottom:774.453333pt;}
.ye6{bottom:774.773333pt;}
.y38{bottom:775.093333pt;}
.y7{bottom:777.733333pt;}
.y112{bottom:782.453333pt;}
.y8b{bottom:784.533333pt;}
.yba{bottom:786.373333pt;}
.y37{bottom:790.693333pt;}
.y111{bottom:798.053333pt;}
.ye5{bottom:798.693333pt;}
.yb9{bottom:801.973333pt;}
.y5b{bottom:806.053333pt;}
.y36{bottom:806.373333pt;}
.y8a{bottom:808.853333pt;}
.y6{bottom:809.733333pt;}
.yb8{bottom:817.653333pt;}
.y5a{bottom:821.733333pt;}
.y35{bottom:821.973333pt;}
.y89{bottom:833.173333pt;}
.yb7{bottom:833.253333pt;}
.y59{bottom:837.333333pt;}
.y34{bottom:837.653333pt;}
.ye4{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.yb6{bottom:848.853333pt;}
.y58{bottom:852.933333pt;}
.y33{bottom:853.253333pt;}
.ye3{bottom:857.253333pt;}
.y81{bottom:857.493333pt;}
.y110{bottom:860.933333pt;}
.yb5{bottom:864.533333pt;}
.y57{bottom:868.613333pt;}
.y32{bottom:868.853333pt;}
.ye2{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y10f{bottom:876.613333pt;}
.yb4{bottom:880.133333pt;}
.y86{bottom:881.733333pt;}
.y56{bottom:884.213333pt;}
.y31{bottom:884.533333pt;}
.ye1{bottom:888.533333pt;}
.y10e{bottom:892.213333pt;}
.yb3{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y55{bottom:899.840000pt;}
.y30{bottom:900.160000pt;}
.ye0{bottom:904.160000pt;}
.y85{bottom:906.080000pt;}
.y10d{bottom:907.840000pt;}
.y54{bottom:915.520000pt;}
.y2f{bottom:915.840000pt;}
.yb2{bottom:919.440000pt;}
.ydf{bottom:919.840000pt;}
.y83{bottom:930.400000pt;}
.y53{bottom:931.120000pt;}
.y2e{bottom:931.440000pt;}
.y10c{bottom:931.520000pt;}
.yde{bottom:935.440000pt;}
.y52{bottom:946.800000pt;}
.y2d{bottom:947.040000pt;}
.y10b{bottom:947.120000pt;}
.yb1{bottom:951.040000pt;}
.y7e{bottom:954.640000pt;}
.y10a{bottom:962.800000pt;}
.yb0{bottom:966.720000pt;}
.y51{bottom:970.400000pt;}
.y2c{bottom:970.960000pt;}
.y109{bottom:978.400000pt;}
.yaf{bottom:982.320000pt;}
.yae{bottom:998.000000pt;}
.y50{bottom:1002.320000pt;}
.y7d{bottom:1013.600000pt;}
.y2b{bottom:1013.760000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h10{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h15{height:47.920000pt;}
.h14{height:48.000000pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.h8{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:63.520000pt;}
.h12{height:72.160000pt;}
.h13{height:72.240000pt;}
.hf{height:96.480000pt;}
.hc{height:96.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:108.960000pt;}
.w3{width:130.506667pt;}
.w8{width:153.200000pt;}
.w6{width:157.226667pt;}
.w7{width:264.586667pt;}
.w4{width:430.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.x9{left:108.800000pt;}
.x5{left:166.506655pt;}
.x2{left:187.626655pt;}
.x7{left:192.266667pt;}
.xa{left:266.746667pt;}
.xb{left:532.053333pt;}
.x8{left:623.893333pt;}
.x4{left:639.013322pt;}
.x3{left:718.773322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  