
    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_b008244b7fe66ffa249550c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_24a5b716e7b6e90af5b7c7ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_de86f2c10e2a8d2e9db29e2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e5052bf635681a284ebfdf0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_05164b703de637d44cd73675.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2b7bfbb9bebe0767a4615eb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_ced809401bfeab3a995d8360.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.975586;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_b2cf5d8f141bb5300e759289.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-84.960000px;}
.v6{vertical-align:-82.800000px;}
.v4{vertical-align:-81.360000px;}
.v1{vertical-align:-12.240000px;}
.v3{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.ls11{letter-spacing:-1.176000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.666000px;}
.ls19{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.ls15{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.152400px;}
.ls18{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.109200px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.025920px;}
.ls20{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.262080px;}
.ls35{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.296640px;}
.ls2f{letter-spacing:0.305400px;}
.ls2d{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.702000px;}
.ls17{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.936000px;}
.ls1d{letter-spacing:2.880000px;}
.ls23{letter-spacing:3.600000px;}
.ls1f{letter-spacing:4.320000px;}
.ls25{letter-spacing:5.040000px;}
.ls26{letter-spacing:6.480000px;}
.ls3{letter-spacing:7.200000px;}
.ls4{letter-spacing:8.640000px;}
.ls14{letter-spacing:9.360000px;}
.ls24{letter-spacing:11.520000px;}
.ls1e{letter-spacing:13.680000px;}
.ls13{letter-spacing:21.600000px;}
.ls7{letter-spacing:25.200000px;}
.ls2c{letter-spacing:34.841280px;}
.ls8{letter-spacing:50.400000px;}
.ls2b{letter-spacing:67.961280px;}
.ls2a{letter-spacing:859.836000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.142000px;}
.ws0{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws5{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.ws4{word-spacing:-16.407600px;}
.ws9{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-2.248320px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._7{width:2.689440px;}
._b{width:4.106880px;}
._9{width:5.526000px;}
._8{width:7.021440px;}
._a{width:8.559360px;}
._c{width:10.002240px;}
._d{width:11.292000px;}
._11{width:12.576000px;}
._10{width:13.680000px;}
._13{width:14.832000px;}
._15{width:16.344000px;}
._16{width:19.080000px;}
._17{width:20.808000px;}
._14{width:21.816000px;}
._e{width:24.575040px;}
._f{width:27.158400px;}
._18{width:43.784640px;}
._19{width:45.012960px;}
._6{width:100.238400px;}
._1{width:480.335520px;}
._4{width:775.740000px;}
._2{width:778.620000px;}
._1a{width:847.740000px;}
._3{width:851.328480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs7{font-size:326.880000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.y36{bottom:4.305000px;}
.yec{bottom:4.500000px;}
.yee{bottom:14.940000px;}
.yc{bottom:21.240000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.yb2{bottom:144.936000px;}
.y84{bottom:145.296000px;}
.y67{bottom:145.656000px;}
.ya4{bottom:151.050000px;}
.y34{bottom:151.230000px;}
.yb1{bottom:165.630000px;}
.y83{bottom:165.990000px;}
.y9b{bottom:166.350000px;}
.y66{bottom:166.710000px;}
.y35{bottom:167.445000px;}
.ya3{bottom:171.750000px;}
.y33{bottom:171.930000px;}
.yb0{bottom:186.330000px;}
.y82{bottom:186.690000px;}
.yd6{bottom:186.870000px;}
.y9a{bottom:187.050000px;}
.y65{bottom:187.410000px;}
.ya2{bottom:192.450000px;}
.y32{bottom:192.630000px;}
.yd5{bottom:205.950000px;}
.yaf{bottom:207.030000px;}
.y81{bottom:207.390000px;}
.y99{bottom:207.750000px;}
.y64{bottom:208.110000px;}
.ya1{bottom:208.650000px;}
.yd4{bottom:224.850000px;}
.yae{bottom:227.730000px;}
.y80{bottom:228.090000px;}
.y98{bottom:228.450000px;}
.y63{bottom:228.810000px;}
.y31{bottom:233.670000px;}
.yd3{bottom:243.930000px;}
.yad{bottom:248.430000px;}
.y7f{bottom:248.790000px;}
.y97{bottom:249.150000px;}
.y62{bottom:249.510000px;}
.y30{bottom:252.570000px;}
.yd2{bottom:262.830000px;}
.yac{bottom:264.630000px;}
.y7e{bottom:269.490000px;}
.y96{bottom:269.850000px;}
.y61{bottom:270.210000px;}
.y2f{bottom:271.650000px;}
.yd1{bottom:281.910000px;}
.y7d{bottom:290.190000px;}
.y2e{bottom:290.550000px;}
.y60{bottom:290.910000px;}
.yd0{bottom:300.810000px;}
.y2d{bottom:309.450000px;}
.y7c{bottom:310.890000px;}
.y95{bottom:311.250000px;}
.y5f{bottom:311.610000px;}
.ycf{bottom:319.710000px;}
.y2c{bottom:328.530000px;}
.y7b{bottom:331.590000px;}
.y94{bottom:331.950000px;}
.y5e{bottom:332.310000px;}
.yce{bottom:338.790000px;}
.y2b{bottom:347.430000px;}
.y7a{bottom:352.110000px;}
.y93{bottom:352.650000px;}
.y5d{bottom:353.010000px;}
.ycd{bottom:357.690000px;}
.y2a{bottom:366.510000px;}
.y79{bottom:372.810000px;}
.y92{bottom:373.350000px;}
.y5c{bottom:373.710000px;}
.ycc{bottom:376.770000px;}
.y29{bottom:385.455000px;}
.y78{bottom:393.555000px;}
.y91{bottom:394.095000px;}
.y5b{bottom:394.455000px;}
.ycb{bottom:395.715000px;}
.y28{bottom:404.355000px;}
.y77{bottom:414.255000px;}
.yca{bottom:414.615000px;}
.y90{bottom:414.795000px;}
.y5a{bottom:415.155000px;}
.y27{bottom:423.435000px;}
.yc9{bottom:433.695000px;}
.y76{bottom:434.955000px;}
.y8f{bottom:435.495000px;}
.y59{bottom:435.855000px;}
.y26{bottom:442.335000px;}
.yc8{bottom:452.595000px;}
.y75{bottom:455.295000px;}
.y8e{bottom:456.195000px;}
.y58{bottom:456.555000px;}
.y25{bottom:461.415000px;}
.yc7{bottom:471.675000px;}
.y74{bottom:476.355000px;}
.y8d{bottom:476.895000px;}
.y57{bottom:477.255000px;}
.y24{bottom:480.315000px;}
.yc6{bottom:490.575000px;}
.y73{bottom:497.055000px;}
.y8c{bottom:497.595000px;}
.y56{bottom:497.955000px;}
.y23{bottom:499.395000px;}
.yc5{bottom:509.475000px;}
.y72{bottom:517.755000px;}
.y22{bottom:518.295000px;}
.y55{bottom:518.655000px;}
.yc4{bottom:528.555000px;}
.y21{bottom:537.195000px;}
.y71{bottom:538.455000px;}
.y8b{bottom:538.995000px;}
.y54{bottom:539.355000px;}
.ya0{bottom:540.435000px;}
.yc3{bottom:547.455000px;}
.y20{bottom:556.275000px;}
.y70{bottom:559.155000px;}
.y8a{bottom:559.335000px;}
.y53{bottom:560.055000px;}
.y9f{bottom:561.135000px;}
.yc2{bottom:566.535000px;}
.y1f{bottom:575.175000px;}
.y6f{bottom:579.855000px;}
.y89{bottom:580.395000px;}
.y52{bottom:580.755000px;}
.y9e{bottom:581.835000px;}
.yc1{bottom:585.435000px;}
.y1e{bottom:594.255000px;}
.y6e{bottom:600.555000px;}
.y88{bottom:601.095000px;}
.y51{bottom:601.455000px;}
.y9d{bottom:602.535000px;}
.yc0{bottom:604.335000px;}
.y1d{bottom:613.155000px;}
.y9c{bottom:618.915000px;}
.y6d{bottom:621.255000px;}
.y87{bottom:621.795000px;}
.y50{bottom:622.155000px;}
.ybf{bottom:623.415000px;}
.y1c{bottom:632.085000px;}
.y6c{bottom:641.985000px;}
.ybe{bottom:642.345000px;}
.y86{bottom:642.525000px;}
.y4f{bottom:642.885000px;}
.yab{bottom:647.205000px;}
.y1b{bottom:651.165000px;}
.ybd{bottom:661.425000px;}
.y6b{bottom:662.685000px;}
.y85{bottom:663.045000px;}
.y4e{bottom:663.585000px;}
.yaa{bottom:667.905000px;}
.y1a{bottom:670.605000px;}
.ybc{bottom:680.325000px;}
.y6a{bottom:683.385000px;}
.y4d{bottom:684.285000px;}
.ya9{bottom:688.605000px;}
.y19{bottom:691.485000px;}
.ybb{bottom:699.225000px;}
.y69{bottom:704.085000px;}
.y4c{bottom:704.985000px;}
.ya8{bottom:709.305000px;}
.y18{bottom:713.445000px;}
.yba{bottom:718.305000px;}
.yef{bottom:719.925000px;}
.y68{bottom:725.145000px;}
.y4b{bottom:725.685000px;}
.ya7{bottom:730.005000px;}
.yed{bottom:734.865000px;}
.y17{bottom:736.305000px;}
.yb9{bottom:737.205000px;}
.y4a{bottom:746.385000px;}
.ya6{bottom:750.705000px;}
.yeb{bottom:755.565000px;}
.yb8{bottom:756.285000px;}
.y16{bottom:758.805000px;}
.y49{bottom:767.085000px;}
.ya5{bottom:771.405000px;}
.yb7{bottom:775.185000px;}
.yea{bottom:780.405000px;}
.y15{bottom:780.765000px;}
.y48{bottom:787.785000px;}
.yb6{bottom:794.265000px;}
.ye9{bottom:799.305000px;}
.y47{bottom:808.485000px;}
.yb5{bottom:813.165000px;}
.ye8{bottom:818.385000px;}
.y14{bottom:824.325000px;}
.y46{bottom:829.185000px;}
.yb4{bottom:832.065000px;}
.ye7{bottom:837.285000px;}
.y13{bottom:848.445000px;}
.y45{bottom:849.885000px;}
.yb3{bottom:851.145000px;}
.ye6{bottom:856.185000px;}
.y44{bottom:870.585000px;}
.y12{bottom:872.565000px;}
.ye5{bottom:875.265000px;}
.y43{bottom:891.330000px;}
.ye4{bottom:894.210000px;}
.y11{bottom:896.730000px;}
.y42{bottom:912.030000px;}
.ye3{bottom:913.290000px;}
.y10{bottom:920.850000px;}
.ye2{bottom:932.190000px;}
.y41{bottom:932.730000px;}
.yf{bottom:944.790000px;}
.ye1{bottom:951.270000px;}
.y40{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.ye0{bottom:970.170000px;}
.y3f{bottom:974.130000px;}
.ydf{bottom:989.070000px;}
.y3e{bottom:994.830000px;}
.yde{bottom:1008.150000px;}
.y3d{bottom:1015.530000px;}
.ydd{bottom:1027.050000px;}
.y3c{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.ydc{bottom:1046.130000px;}
.y3b{bottom:1056.930000px;}
.ydb{bottom:1065.030000px;}
.y3a{bottom:1077.630000px;}
.yda{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.y39{bottom:1098.330000px;}
.yd9{bottom:1103.010000px;}
.y38{bottom:1119.030000px;}
.yd8{bottom:1121.910000px;}
.y6{bottom:1139.580000px;}
.y37{bottom:1139.760000px;}
.yd7{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h17{height:20.700000px;}
.h18{height:41.400000px;}
.h3{height:45.184219px;}
.hc{height:56.213437px;}
.h16{height:59.383125px;}
.h14{height:61.101562px;}
.hf{height:62.085000px;}
.he{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h15{height:68.084282px;}
.h13{height:70.628906px;}
.h6{height:70.664062px;}
.h11{height:72.562500px;}
.h9{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h8{height:78.825000px;}
.ha{height:84.898125px;}
.h12{height:91.687500px;}
.h7{height:132.789375px;}
.h10{height:320.814844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:59.254500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.x1d{left:88.560000px;}
.x1b{left:91.116000px;}
.xa{left:111.996000px;}
.x19{left:113.976000px;}
.xd{left:115.236000px;}
.x12{left:127.476000px;}
.xc{left:135.216000px;}
.x13{left:144.216000px;}
.x1a{left:168.330000px;}
.x6{left:172.650000px;}
.x20{left:222.015000px;}
.x2{left:224.670000px;}
.x1c{left:316.695000px;}
.xf{left:347.475000px;}
.x17{left:376.995000px;}
.x15{left:379.515000px;}
.x1f{left:414.795000px;}
.xb{left:446.505000px;}
.x1e{left:467.745000px;}
.x10{left:511.665000px;}
.xe{left:514.005000px;}
.x11{left:517.605000px;}
.x5{left:552.900000px;}
.x16{left:670.830000px;}
.x14{left:698.550000px;}
.x18{left:727.710000px;}
.x7{left:733.650000px;}
.x9{left:808.020000px;}
@media print{
.v2{vertical-align:-75.520000pt;}
.v6{vertical-align:-73.600000pt;}
.v4{vertical-align:-72.320000pt;}
.v1{vertical-align:-10.880000pt;}
.v3{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.ls11{letter-spacing:-1.045333pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.592000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.135467pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.023040pt;}
.ls20{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.232960pt;}
.ls35{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.263680pt;}
.ls2f{letter-spacing:0.271467pt;}
.ls2d{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.624000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.832000pt;}
.ls1d{letter-spacing:2.560000pt;}
.ls23{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:3.840000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls26{letter-spacing:5.760000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls4{letter-spacing:7.680000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls24{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:12.160000pt;}
.ls13{letter-spacing:19.200000pt;}
.ls7{letter-spacing:22.400000pt;}
.ls2c{letter-spacing:30.970027pt;}
.ls8{letter-spacing:44.800000pt;}
.ls2b{letter-spacing:60.410027pt;}
.ls2a{letter-spacing:764.298667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.904000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.ws4{word-spacing:-14.584533pt;}
.ws9{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-1.998507pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._7{width:2.390613pt;}
._b{width:3.650560pt;}
._9{width:4.912000pt;}
._8{width:6.241280pt;}
._a{width:7.608320pt;}
._c{width:8.890880pt;}
._d{width:10.037333pt;}
._11{width:11.178667pt;}
._10{width:12.160000pt;}
._13{width:13.184000pt;}
._15{width:14.528000pt;}
._16{width:16.960000pt;}
._17{width:18.496000pt;}
._14{width:19.392000pt;}
._e{width:21.844480pt;}
._f{width:24.140800pt;}
._18{width:38.919680pt;}
._19{width:40.011520pt;}
._6{width:89.100800pt;}
._1{width:426.964907pt;}
._4{width:689.546667pt;}
._2{width:692.106667pt;}
._1a{width:753.546667pt;}
._3{width:756.736427pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs7{font-size:290.560000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.y36{bottom:3.826667pt;}
.yec{bottom:4.000000pt;}
.yee{bottom:13.280000pt;}
.yc{bottom:18.880000pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.yb2{bottom:128.832000pt;}
.y84{bottom:129.152000pt;}
.y67{bottom:129.472000pt;}
.ya4{bottom:134.266667pt;}
.y34{bottom:134.426667pt;}
.yb1{bottom:147.226667pt;}
.y83{bottom:147.546667pt;}
.y9b{bottom:147.866667pt;}
.y66{bottom:148.186667pt;}
.y35{bottom:148.840000pt;}
.ya3{bottom:152.666667pt;}
.y33{bottom:152.826667pt;}
.yb0{bottom:165.626667pt;}
.y82{bottom:165.946667pt;}
.yd6{bottom:166.106667pt;}
.y9a{bottom:166.266667pt;}
.y65{bottom:166.586667pt;}
.ya2{bottom:171.066667pt;}
.y32{bottom:171.226667pt;}
.yd5{bottom:183.066667pt;}
.yaf{bottom:184.026667pt;}
.y81{bottom:184.346667pt;}
.y99{bottom:184.666667pt;}
.y64{bottom:184.986667pt;}
.ya1{bottom:185.466667pt;}
.yd4{bottom:199.866667pt;}
.yae{bottom:202.426667pt;}
.y80{bottom:202.746667pt;}
.y98{bottom:203.066667pt;}
.y63{bottom:203.386667pt;}
.y31{bottom:207.706667pt;}
.yd3{bottom:216.826667pt;}
.yad{bottom:220.826667pt;}
.y7f{bottom:221.146667pt;}
.y97{bottom:221.466667pt;}
.y62{bottom:221.786667pt;}
.y30{bottom:224.506667pt;}
.yd2{bottom:233.626667pt;}
.yac{bottom:235.226667pt;}
.y7e{bottom:239.546667pt;}
.y96{bottom:239.866667pt;}
.y61{bottom:240.186667pt;}
.y2f{bottom:241.466667pt;}
.yd1{bottom:250.586667pt;}
.y7d{bottom:257.946667pt;}
.y2e{bottom:258.266667pt;}
.y60{bottom:258.586667pt;}
.yd0{bottom:267.386667pt;}
.y2d{bottom:275.066667pt;}
.y7c{bottom:276.346667pt;}
.y95{bottom:276.666667pt;}
.y5f{bottom:276.986667pt;}
.ycf{bottom:284.186667pt;}
.y2c{bottom:292.026667pt;}
.y7b{bottom:294.746667pt;}
.y94{bottom:295.066667pt;}
.y5e{bottom:295.386667pt;}
.yce{bottom:301.146667pt;}
.y2b{bottom:308.826667pt;}
.y7a{bottom:312.986667pt;}
.y93{bottom:313.466667pt;}
.y5d{bottom:313.786667pt;}
.ycd{bottom:317.946667pt;}
.y2a{bottom:325.786667pt;}
.y79{bottom:331.386667pt;}
.y92{bottom:331.866667pt;}
.y5c{bottom:332.186667pt;}
.ycc{bottom:334.906667pt;}
.y29{bottom:342.626667pt;}
.y78{bottom:349.826667pt;}
.y91{bottom:350.306667pt;}
.y5b{bottom:350.626667pt;}
.ycb{bottom:351.746667pt;}
.y28{bottom:359.426667pt;}
.y77{bottom:368.226667pt;}
.yca{bottom:368.546667pt;}
.y90{bottom:368.706667pt;}
.y5a{bottom:369.026667pt;}
.y27{bottom:376.386667pt;}
.yc9{bottom:385.506667pt;}
.y76{bottom:386.626667pt;}
.y8f{bottom:387.106667pt;}
.y59{bottom:387.426667pt;}
.y26{bottom:393.186667pt;}
.yc8{bottom:402.306667pt;}
.y75{bottom:404.706667pt;}
.y8e{bottom:405.506667pt;}
.y58{bottom:405.826667pt;}
.y25{bottom:410.146667pt;}
.yc7{bottom:419.266667pt;}
.y74{bottom:423.426667pt;}
.y8d{bottom:423.906667pt;}
.y57{bottom:424.226667pt;}
.y24{bottom:426.946667pt;}
.yc6{bottom:436.066667pt;}
.y73{bottom:441.826667pt;}
.y8c{bottom:442.306667pt;}
.y56{bottom:442.626667pt;}
.y23{bottom:443.906667pt;}
.yc5{bottom:452.866667pt;}
.y72{bottom:460.226667pt;}
.y22{bottom:460.706667pt;}
.y55{bottom:461.026667pt;}
.yc4{bottom:469.826667pt;}
.y21{bottom:477.506667pt;}
.y71{bottom:478.626667pt;}
.y8b{bottom:479.106667pt;}
.y54{bottom:479.426667pt;}
.ya0{bottom:480.386667pt;}
.yc3{bottom:486.626667pt;}
.y20{bottom:494.466667pt;}
.y70{bottom:497.026667pt;}
.y8a{bottom:497.186667pt;}
.y53{bottom:497.826667pt;}
.y9f{bottom:498.786667pt;}
.yc2{bottom:503.586667pt;}
.y1f{bottom:511.266667pt;}
.y6f{bottom:515.426667pt;}
.y89{bottom:515.906667pt;}
.y52{bottom:516.226667pt;}
.y9e{bottom:517.186667pt;}
.yc1{bottom:520.386667pt;}
.y1e{bottom:528.226667pt;}
.y6e{bottom:533.826667pt;}
.y88{bottom:534.306667pt;}
.y51{bottom:534.626667pt;}
.y9d{bottom:535.586667pt;}
.yc0{bottom:537.186667pt;}
.y1d{bottom:545.026667pt;}
.y9c{bottom:550.146667pt;}
.y6d{bottom:552.226667pt;}
.y87{bottom:552.706667pt;}
.y50{bottom:553.026667pt;}
.ybf{bottom:554.146667pt;}
.y1c{bottom:561.853333pt;}
.y6c{bottom:570.653333pt;}
.ybe{bottom:570.973333pt;}
.y86{bottom:571.133333pt;}
.y4f{bottom:571.453333pt;}
.yab{bottom:575.293333pt;}
.y1b{bottom:578.813333pt;}
.ybd{bottom:587.933333pt;}
.y6b{bottom:589.053333pt;}
.y85{bottom:589.373333pt;}
.y4e{bottom:589.853333pt;}
.yaa{bottom:593.693333pt;}
.y1a{bottom:596.093333pt;}
.ybc{bottom:604.733333pt;}
.y6a{bottom:607.453333pt;}
.y4d{bottom:608.253333pt;}
.ya9{bottom:612.093333pt;}
.y19{bottom:614.653333pt;}
.ybb{bottom:621.533333pt;}
.y69{bottom:625.853333pt;}
.y4c{bottom:626.653333pt;}
.ya8{bottom:630.493333pt;}
.y18{bottom:634.173333pt;}
.yba{bottom:638.493333pt;}
.yef{bottom:639.933333pt;}
.y68{bottom:644.573333pt;}
.y4b{bottom:645.053333pt;}
.ya7{bottom:648.893333pt;}
.yed{bottom:653.213333pt;}
.y17{bottom:654.493333pt;}
.yb9{bottom:655.293333pt;}
.y4a{bottom:663.453333pt;}
.ya6{bottom:667.293333pt;}
.yeb{bottom:671.613333pt;}
.yb8{bottom:672.253333pt;}
.y16{bottom:674.493333pt;}
.y49{bottom:681.853333pt;}
.ya5{bottom:685.693333pt;}
.yb7{bottom:689.053333pt;}
.yea{bottom:693.693333pt;}
.y15{bottom:694.013333pt;}
.y48{bottom:700.253333pt;}
.yb6{bottom:706.013333pt;}
.ye9{bottom:710.493333pt;}
.y47{bottom:718.653333pt;}
.yb5{bottom:722.813333pt;}
.ye8{bottom:727.453333pt;}
.y14{bottom:732.733333pt;}
.y46{bottom:737.053333pt;}
.yb4{bottom:739.613333pt;}
.ye7{bottom:744.253333pt;}
.y13{bottom:754.173333pt;}
.y45{bottom:755.453333pt;}
.yb3{bottom:756.573333pt;}
.ye6{bottom:761.053333pt;}
.y44{bottom:773.853333pt;}
.y12{bottom:775.613333pt;}
.ye5{bottom:778.013333pt;}
.y43{bottom:792.293333pt;}
.ye4{bottom:794.853333pt;}
.y11{bottom:797.093333pt;}
.y42{bottom:810.693333pt;}
.ye3{bottom:811.813333pt;}
.y10{bottom:818.533333pt;}
.ye2{bottom:828.613333pt;}
.y41{bottom:829.093333pt;}
.yf{bottom:839.813333pt;}
.ye1{bottom:845.573333pt;}
.y40{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.ye0{bottom:862.373333pt;}
.y3f{bottom:865.893333pt;}
.ydf{bottom:879.173333pt;}
.y3e{bottom:884.293333pt;}
.yde{bottom:896.133333pt;}
.y3d{bottom:902.693333pt;}
.ydd{bottom:912.933333pt;}
.y3c{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.ydc{bottom:929.893333pt;}
.y3b{bottom:939.493333pt;}
.ydb{bottom:946.693333pt;}
.y3a{bottom:957.893333pt;}
.yda{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.y39{bottom:976.293333pt;}
.yd9{bottom:980.453333pt;}
.y38{bottom:994.693333pt;}
.yd8{bottom:997.253333pt;}
.y6{bottom:1012.960000pt;}
.y37{bottom:1013.120000pt;}
.yd7{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h17{height:18.400000pt;}
.h18{height:36.800000pt;}
.h3{height:40.163750pt;}
.hc{height:49.967500pt;}
.h16{height:52.785000pt;}
.h14{height:54.312500pt;}
.hf{height:55.186667pt;}
.he{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h15{height:60.519362pt;}
.h13{height:62.781250pt;}
.h6{height:62.812500pt;}
.h11{height:64.500000pt;}
.h9{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h8{height:70.066667pt;}
.ha{height:75.465000pt;}
.h12{height:81.500000pt;}
.h7{height:118.035000pt;}
.h10{height:285.168750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:52.670667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.x1d{left:78.720000pt;}
.x1b{left:80.992000pt;}
.xa{left:99.552000pt;}
.x19{left:101.312000pt;}
.xd{left:102.432000pt;}
.x12{left:113.312000pt;}
.xc{left:120.192000pt;}
.x13{left:128.192000pt;}
.x1a{left:149.626667pt;}
.x6{left:153.466667pt;}
.x20{left:197.346667pt;}
.x2{left:199.706667pt;}
.x1c{left:281.506667pt;}
.xf{left:308.866667pt;}
.x17{left:335.106667pt;}
.x15{left:337.346667pt;}
.x1f{left:368.706667pt;}
.xb{left:396.893333pt;}
.x1e{left:415.773333pt;}
.x10{left:454.813333pt;}
.xe{left:456.893333pt;}
.x11{left:460.093333pt;}
.x5{left:491.466667pt;}
.x16{left:596.293333pt;}
.x14{left:620.933333pt;}
.x18{left:646.853333pt;}
.x7{left:652.133333pt;}
.x9{left:718.240000pt;}
}




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