
    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_b4ce100be597e2509acea31b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851562;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_8b50182a9d42d94e3fc455ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929688;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_9bc45e53cd9a71b6fdbf3f00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_445c6cb38f5d83ba64151dba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_2cb1656ebd845899775a6742.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_a5e8a8c07baab3fe03862bb2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_f5219e10cabe7decbfb9251a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_488bd5993892e91882de0f65.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952637;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_409a01578875340bc462b3f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_90f96e45d5f82b49cc085d7f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f81b7a982ba348d2ee4a7002.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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:ffc;src:url('chunks/assets/font_61af68b0e56d61e4dbe483d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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:ffd;src:url('chunks/assets/font_e42b33524e3ef52a1a65b5e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;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:ffe;src:url('chunks/assets/font_3b63fe8be4538a86d150f05b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.ls2d{letter-spacing:-1.536000px;}
.ls12{letter-spacing:-1.524000px;}
.ls17{letter-spacing:-1.500000px;}
.ls14{letter-spacing:-1.488000px;}
.ls16{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.768000px;}
.ls39{letter-spacing:-0.756000px;}
.ls2e{letter-spacing:-0.732000px;}
.ls13{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.582000px;}
.ls26{letter-spacing:-0.465000px;}
.ls2{letter-spacing:-0.276000px;}
.ls3a{letter-spacing:-0.114000px;}
.ls27{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.024000px;}
.ls10{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012000px;}
.ls37{letter-spacing:0.024000px;}
.ls2b{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.174000px;}
.ls3c{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.384000px;}
.ls18{letter-spacing:0.519000px;}
.ls21{letter-spacing:0.546000px;}
.ls32{letter-spacing:0.684000px;}
.ls19{letter-spacing:0.696000px;}
.ls6{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.732000px;}
.ls15{letter-spacing:0.744000px;}
.ls22{letter-spacing:0.756000px;}
.lsf{letter-spacing:0.768000px;}
.ls9{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.804000px;}
.ls1{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.500000px;}
.ls1a{letter-spacing:3.000000px;}
.ls33{letter-spacing:4.440000px;}
.ls1b{letter-spacing:4.500000px;}
.ls1c{letter-spacing:6.000000px;}
.ls34{letter-spacing:6.060000px;}
.ls30{letter-spacing:6.180000px;}
.lsd{letter-spacing:7.500000px;}
.ls36{letter-spacing:7.620000px;}
.ls1f{letter-spacing:9.000000px;}
.lsc{letter-spacing:9.120000px;}
.ls24{letter-spacing:12.000000px;}
.lsb{letter-spacing:13.500000px;}
.lsa{letter-spacing:15.000000px;}
.ls2c{letter-spacing:16.500000px;}
.ls2f{letter-spacing:16.620000px;}
.ls31{letter-spacing:18.000000px;}
.ls23{letter-spacing:19.500000px;}
.ls1e{letter-spacing:21.000000px;}
.ls1d{letter-spacing:22.500000px;}
.ls2a{letter-spacing:24.000000px;}
.ls29{letter-spacing:25.500000px;}
.ls38{letter-spacing:28.500000px;}
.ls35{letter-spacing:30.120000px;}
.ls3b{letter-spacing:846.330000px;}
.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;}
}
.ws5{word-spacing:-27.768000px;}
.ws3{word-spacing:-20.724000px;}
.ws1{word-spacing:-19.500000px;}
.ws2{word-spacing:-19.224000px;}
.wsb{word-spacing:-18.780000px;}
.ws13{word-spacing:-18.768000px;}
.ws19{word-spacing:-18.756000px;}
.wse{word-spacing:-18.744000px;}
.ws15{word-spacing:-18.732000px;}
.ws9{word-spacing:-18.720000px;}
.ws1c{word-spacing:-18.024000px;}
.ws8{word-spacing:-18.012000px;}
.ws14{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.988000px;}
.ws7{word-spacing:-17.976000px;}
.ws17{word-spacing:-17.964000px;}
.wsc{word-spacing:-17.280000px;}
.ws1b{word-spacing:-17.268000px;}
.ws1d{word-spacing:-17.244000px;}
.ws18{word-spacing:-17.232000px;}
.wsf{word-spacing:-17.220000px;}
.wsd{word-spacing:-16.512000px;}
.ws10{word-spacing:-16.500000px;}
.wsa{word-spacing:-16.476000px;}
.ws1a{word-spacing:-16.464000px;}
.ws1e{word-spacing:-16.386000px;}
.ws11{word-spacing:-14.250000px;}
.ws4{word-spacing:-13.500000px;}
.ws12{word-spacing:-11.250000px;}
.ws16{word-spacing:-10.785000px;}
.ws1f{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-5.735040px;}
._13{margin-left:-4.488480px;}
._2{margin-left:-3.360960px;}
._1{margin-left:-2.344320px;}
._0{margin-left:-1.013760px;}
._4{width:1.020000px;}
._5{width:2.091840px;}
._f{width:3.114000px;}
._6{width:4.368000px;}
._3{width:6.014160px;}
._a{width:7.566000px;}
._8{width:9.048000px;}
._7{width:10.062000px;}
._11{width:11.118000px;}
._14{width:12.138000px;}
._b{width:13.410000px;}
._10{width:14.580000px;}
._c{width:15.779760px;}
._23{width:16.817040px;}
._9{width:17.842080px;}
._12{width:19.332000px;}
._d{width:21.054000px;}
._e{width:22.750320px;}
._1e{width:23.976000px;}
._22{width:25.640160px;}
._19{width:27.024000px;}
._1a{width:28.500960px;}
._18{width:29.513760px;}
._16{width:31.320480px;}
._15{width:32.453760px;}
._1b{width:33.696000px;}
._1c{width:35.399520px;}
._1d{width:36.893280px;}
._21{width:38.325120px;}
._20{width:39.821760px;}
._1f{width:60.844320px;}
.fc7{color:rgb(192,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(204,0,18);}
.fc1{color:rgb(204,0,0);}
.fc5{color:rgb(95,95,95);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(30,47,72);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:45.000000px;}
.fs7{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.fsa{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:63.360000px;}
.fsd{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs4{font-size:87.000000px;}
.fs6{font-size:90.000000px;}
.fsb{font-size:108.000000px;}
.fse{font-size:156.000000px;}
.fs1{font-size:203.760000px;}
.fs2{font-size:288.000000px;}
.fs3{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.375000px;}
.y6a{bottom:9.382500px;}
.y6f{bottom:11.257500px;}
.y3e{bottom:18.750000px;}
.y80{bottom:33.750000px;}
.y3d{bottom:33.757500px;}
.ya5{bottom:53.640000px;}
.ya4{bottom:73.980000px;}
.ya3{bottom:94.140000px;}
.ya2{bottom:114.480000px;}
.y3c{bottom:123.037500px;}
.y39{bottom:124.537500px;}
.ya1{bottom:134.640000px;}
.y6e{bottom:145.912500px;}
.y38{bottom:146.662500px;}
.y69{bottom:147.787500px;}
.y3b{bottom:151.905000px;}
.ya0{bottom:154.980000px;}
.y37{bottom:169.155000px;}
.y9f{bottom:175.140000px;}
.y36{bottom:184.575000px;}
.y9e{bottom:195.480000px;}
.y35{bottom:201.075000px;}
.y9d{bottom:215.640000px;}
.y34{bottom:223.575000px;}
.y66{bottom:224.700000px;}
.y9c{bottom:236.010000px;}
.y65{bottom:244.950000px;}
.y33{bottom:246.075000px;}
.y9b{bottom:256.170000px;}
.y32{bottom:261.450000px;}
.y64{bottom:265.200000px;}
.y9a{bottom:276.510000px;}
.y31{bottom:277.950000px;}
.y63{bottom:285.450000px;}
.y99{bottom:296.670000px;}
.y30{bottom:300.075000px;}
.y62{bottom:305.745000px;}
.y98{bottom:317.010000px;}
.y2f{bottom:321.870000px;}
.y61{bottom:325.995000px;}
.y97{bottom:337.170000px;}
.y2e{bottom:343.995000px;}
.y60{bottom:346.245000px;}
.y7e{bottom:357.120000px;}
.y96{bottom:357.510000px;}
.y2d{bottom:366.120000px;}
.y5f{bottom:366.495000px;}
.y85{bottom:373.575000px;}
.y95{bottom:377.670000px;}
.y5e{bottom:386.745000px;}
.y2c{bottom:388.605000px;}
.y7d{bottom:390.495000px;}
.y94{bottom:398.010000px;}
.y2b{bottom:403.995000px;}
.y5d{bottom:406.995000px;}
.y93{bottom:418.170000px;}
.y2a{bottom:420.495000px;}
.y5c{bottom:427.245000px;}
.y92{bottom:438.510000px;}
.y29{bottom:442.650000px;}
.y5b{bottom:447.525000px;}
.y91{bottom:458.670000px;}
.y28{bottom:464.400000px;}
.y5a{bottom:467.775000px;}
.y90{bottom:479.010000px;}
.y27{bottom:486.525000px;}
.y59{bottom:488.025000px;}
.y8f{bottom:499.215000px;}
.y26{bottom:508.275000px;}
.y8e{bottom:519.555000px;}
.y58{bottom:528.525000px;}
.y25{bottom:530.400000px;}
.y8d{bottom:539.715000px;}
.y57{bottom:548.775000px;}
.y24{bottom:552.150000px;}
.y8c{bottom:560.055000px;}
.y56{bottom:569.070000px;}
.y23{bottom:574.320000px;}
.y8b{bottom:580.215000px;}
.y55{bottom:589.320000px;}
.y22{bottom:596.070000px;}
.y8a{bottom:600.555000px;}
.y54{bottom:609.570000px;}
.y21{bottom:618.195000px;}
.y89{bottom:620.715000px;}
.y53{bottom:629.820000px;}
.y20{bottom:639.945000px;}
.y88{bottom:641.055000px;}
.y52{bottom:650.070000px;}
.y87{bottom:661.215000px;}
.y1f{bottom:662.070000px;}
.y51{bottom:670.320000px;}
.y86{bottom:681.555000px;}
.y1e{bottom:684.570000px;}
.y50{bottom:690.600000px;}
.y1d{bottom:707.100000px;}
.y4f{bottom:710.850000px;}
.y1c{bottom:722.100000px;}
.y4e{bottom:731.100000px;}
.y8{bottom:733.065000px;}
.y1b{bottom:738.975000px;}
.y4d{bottom:751.350000px;}
.y1a{bottom:760.725000px;}
.y4c{bottom:771.600000px;}
.y19{bottom:782.850000px;}
.y4b{bottom:791.850000px;}
.y18{bottom:804.600000px;}
.y4a{bottom:812.100000px;}
.y7{bottom:822.165000px;}
.y17{bottom:826.755000px;}
.y49{bottom:832.380000px;}
.y16{bottom:848.505000px;}
.y48{bottom:852.630000px;}
.y15{bottom:870.630000px;}
.y47{bottom:872.880000px;}
.y72{bottom:877.380000px;}
.y14{bottom:892.755000px;}
.y46{bottom:893.130000px;}
.y71{bottom:896.130000px;}
.y6{bottom:911.310000px;}
.y45{bottom:913.380000px;}
.y70{bottom:914.505000px;}
.y13{bottom:915.255000px;}
.y7c{bottom:925.005000px;}
.y12{bottom:930.630000px;}
.y44{bottom:933.630000px;}
.y11{bottom:947.175000px;}
.y43{bottom:953.925000px;}
.y7b{bottom:963.300000px;}
.y10{bottom:969.300000px;}
.y42{bottom:974.175000px;}
.yf{bottom:991.800000px;}
.y6d{bottom:994.425000px;}
.y41{bottom:996.675000px;}
.y5{bottom:1000.410000px;}
.y7a{bottom:1001.550000px;}
.y7f{bottom:1010.175000px;}
.y6c{bottom:1014.675000px;}
.ye{bottom:1016.925000px;}
.y40{bottom:1027.050000px;}
.y6b{bottom:1034.925000px;}
.yd{bottom:1035.300000px;}
.y79{bottom:1040.175000px;}
.yc{bottom:1058.175000px;}
.y78{bottom:1060.425000px;}
.y77{bottom:1080.705000px;}
.y68{bottom:1084.830000px;}
.yb{bottom:1087.830000px;}
.y4{bottom:1097.430000px;}
.y67{bottom:1099.830000px;}
.y84{bottom:1100.490000px;}
.y76{bottom:1100.955000px;}
.ya{bottom:1114.080000px;}
.y3a{bottom:1114.830000px;}
.y83{bottom:1120.830000px;}
.y75{bottom:1121.205000px;}
.y9{bottom:1137.330000px;}
.y82{bottom:1141.020000px;}
.y74{bottom:1141.455000px;}
.y3{bottom:1182.600000px;}
.y73{bottom:1197.705000px;}
.y81{bottom:1197.720000px;}
.y2{bottom:1200.240000px;}
.y1{bottom:1218.060000px;}
.h13{height:21.000000px;}
.h14{height:22.875000px;}
.h9{height:36.571289px;}
.h1d{height:38.521758px;}
.h18{height:38.603027px;}
.h16{height:44.698242px;}
.hc{height:45.193359px;}
.hf{height:45.750000px;}
.he{height:47.704102px;}
.h19{height:48.761719px;}
.h1f{height:49.992188px;}
.h15{height:50.132812px;}
.h7{height:50.214844px;}
.h2{height:53.088750px;}
.h17{height:55.236328px;}
.h6{height:58.920410px;}
.h12{height:60.257812px;}
.h8{height:60.952148px;}
.ha{height:65.279297px;}
.h1b{height:67.537500px;}
.hb{height:69.811523px;}
.hd{height:72.811523px;}
.h10{height:73.142578px;}
.h1a{height:74.004654px;}
.h11{height:90.386719px;}
.h1c{height:105.650391px;}
.h3{height:137.995664px;}
.h4{height:241.312500px;}
.h5{height:241.433156px;}
.h1e{height:697.035000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:297.795000px;}
.w7{width:471.975000px;}
.w5{width:604.005000px;}
.w6{width:604.380000px;}
.w4{width:892.874987px;}
.w3{width:892.875000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:9.045000px;}
.x4{left:44.999987px;}
.xf{left:67.912500px;}
.x9{left:85.162487px;}
.xb{left:97.912487px;}
.xe{left:127.162500px;}
.xa{left:148.949987px;}
.x6{left:162.569987px;}
.xc{left:170.324987px;}
.x8{left:171.749987px;}
.x5{left:180.749987px;}
.x19{left:202.199987px;}
.x1f{left:210.450000px;}
.x18{left:213.487500px;}
.x16{left:261.494987px;}
.x15{left:267.532500px;}
.x1b{left:277.619987px;}
.x7{left:281.189987px;}
.x11{left:327.157500px;}
.x10{left:347.032500px;}
.x14{left:368.399987px;}
.x13{left:393.524987px;}
.x12{left:417.944987px;}
.x21{left:427.755000px;}
.xd{left:429.569987px;}
.x1d{left:446.819987px;}
.x1c{left:472.694987px;}
.x1a{left:554.849987px;}
.x1{left:697.469987px;}
.x2{left:719.789987px;}
.x17{left:724.049987px;}
.x3{left:784.049987px;}
.x1e{left:808.469987px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.ls2d{letter-spacing:-1.365333pt;}
.ls12{letter-spacing:-1.354667pt;}
.ls17{letter-spacing:-1.333333pt;}
.ls14{letter-spacing:-1.322667pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.682667pt;}
.ls39{letter-spacing:-0.672000pt;}
.ls2e{letter-spacing:-0.650667pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.517333pt;}
.ls26{letter-spacing:-0.413333pt;}
.ls2{letter-spacing:-0.245333pt;}
.ls3a{letter-spacing:-0.101333pt;}
.ls27{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.021333pt;}
.ls10{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.010667pt;}
.ls37{letter-spacing:0.021333pt;}
.ls2b{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.154667pt;}
.ls3c{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls18{letter-spacing:0.461333pt;}
.ls21{letter-spacing:0.485333pt;}
.ls32{letter-spacing:0.608000pt;}
.ls19{letter-spacing:0.618667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.650667pt;}
.ls15{letter-spacing:0.661333pt;}
.ls22{letter-spacing:0.672000pt;}
.lsf{letter-spacing:0.682667pt;}
.ls9{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.714667pt;}
.ls1{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:2.666667pt;}
.ls33{letter-spacing:3.946667pt;}
.ls1b{letter-spacing:4.000000pt;}
.ls1c{letter-spacing:5.333333pt;}
.ls34{letter-spacing:5.386667pt;}
.ls30{letter-spacing:5.493333pt;}
.lsd{letter-spacing:6.666667pt;}
.ls36{letter-spacing:6.773333pt;}
.ls1f{letter-spacing:8.000000pt;}
.lsc{letter-spacing:8.106667pt;}
.ls24{letter-spacing:10.666667pt;}
.lsb{letter-spacing:12.000000pt;}
.lsa{letter-spacing:13.333333pt;}
.ls2c{letter-spacing:14.666667pt;}
.ls2f{letter-spacing:14.773333pt;}
.ls31{letter-spacing:16.000000pt;}
.ls23{letter-spacing:17.333333pt;}
.ls1e{letter-spacing:18.666667pt;}
.ls1d{letter-spacing:20.000000pt;}
.ls2a{letter-spacing:21.333333pt;}
.ls29{letter-spacing:22.666667pt;}
.ls38{letter-spacing:25.333333pt;}
.ls35{letter-spacing:26.773333pt;}
.ls3b{letter-spacing:752.293333pt;}
.ws5{word-spacing:-24.682667pt;}
.ws3{word-spacing:-18.421333pt;}
.ws1{word-spacing:-17.333333pt;}
.ws2{word-spacing:-17.088000pt;}
.wsb{word-spacing:-16.693333pt;}
.ws13{word-spacing:-16.682667pt;}
.ws19{word-spacing:-16.672000pt;}
.wse{word-spacing:-16.661333pt;}
.ws15{word-spacing:-16.650667pt;}
.ws9{word-spacing:-16.640000pt;}
.ws1c{word-spacing:-16.021333pt;}
.ws8{word-spacing:-16.010667pt;}
.ws14{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.989333pt;}
.ws7{word-spacing:-15.978667pt;}
.ws17{word-spacing:-15.968000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws1b{word-spacing:-15.349333pt;}
.ws1d{word-spacing:-15.328000pt;}
.ws18{word-spacing:-15.317333pt;}
.wsf{word-spacing:-15.306667pt;}
.wsd{word-spacing:-14.677333pt;}
.ws10{word-spacing:-14.666667pt;}
.wsa{word-spacing:-14.645333pt;}
.ws1a{word-spacing:-14.634667pt;}
.ws1e{word-spacing:-14.565333pt;}
.ws11{word-spacing:-12.666667pt;}
.ws4{word-spacing:-12.000000pt;}
.ws12{word-spacing:-10.000000pt;}
.ws16{word-spacing:-9.586667pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-5.097813pt;}
._13{margin-left:-3.989760pt;}
._2{margin-left:-2.987520pt;}
._1{margin-left:-2.083840pt;}
._0{margin-left:-0.901120pt;}
._4{width:0.906667pt;}
._5{width:1.859413pt;}
._f{width:2.768000pt;}
._6{width:3.882667pt;}
._3{width:5.345920pt;}
._a{width:6.725333pt;}
._8{width:8.042667pt;}
._7{width:8.944000pt;}
._11{width:9.882667pt;}
._14{width:10.789333pt;}
._b{width:11.920000pt;}
._10{width:12.960000pt;}
._c{width:14.026453pt;}
._23{width:14.948480pt;}
._9{width:15.859627pt;}
._12{width:17.184000pt;}
._d{width:18.714667pt;}
._e{width:20.222507pt;}
._1e{width:21.312000pt;}
._22{width:22.791253pt;}
._19{width:24.021333pt;}
._1a{width:25.334187pt;}
._18{width:26.234453pt;}
._16{width:27.840427pt;}
._15{width:28.847787pt;}
._1b{width:29.952000pt;}
._1c{width:31.466240pt;}
._1d{width:32.794027pt;}
._21{width:34.066773pt;}
._20{width:35.397120pt;}
._1f{width:54.083840pt;}
.fsc{font-size:40.000000pt;}
.fs7{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.fsa{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:56.320000pt;}
.fsd{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs4{font-size:77.333333pt;}
.fs6{font-size:80.000000pt;}
.fsb{font-size:96.000000pt;}
.fse{font-size:138.666667pt;}
.fs1{font-size:181.120000pt;}
.fs2{font-size:256.000000pt;}
.fs3{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:3.000000pt;}
.y6a{bottom:8.340000pt;}
.y6f{bottom:10.006667pt;}
.y3e{bottom:16.666667pt;}
.y80{bottom:30.000000pt;}
.y3d{bottom:30.006667pt;}
.ya5{bottom:47.680000pt;}
.ya4{bottom:65.760000pt;}
.ya3{bottom:83.680000pt;}
.ya2{bottom:101.760000pt;}
.y3c{bottom:109.366667pt;}
.y39{bottom:110.700000pt;}
.ya1{bottom:119.680000pt;}
.y6e{bottom:129.700000pt;}
.y38{bottom:130.366667pt;}
.y69{bottom:131.366667pt;}
.y3b{bottom:135.026667pt;}
.ya0{bottom:137.760000pt;}
.y37{bottom:150.360000pt;}
.y9f{bottom:155.680000pt;}
.y36{bottom:164.066667pt;}
.y9e{bottom:173.760000pt;}
.y35{bottom:178.733333pt;}
.y9d{bottom:191.680000pt;}
.y34{bottom:198.733333pt;}
.y66{bottom:199.733333pt;}
.y9c{bottom:209.786667pt;}
.y65{bottom:217.733333pt;}
.y33{bottom:218.733333pt;}
.y9b{bottom:227.706667pt;}
.y32{bottom:232.400000pt;}
.y64{bottom:235.733333pt;}
.y9a{bottom:245.786667pt;}
.y31{bottom:247.066667pt;}
.y63{bottom:253.733333pt;}
.y99{bottom:263.706667pt;}
.y30{bottom:266.733333pt;}
.y62{bottom:271.773333pt;}
.y98{bottom:281.786667pt;}
.y2f{bottom:286.106667pt;}
.y61{bottom:289.773333pt;}
.y97{bottom:299.706667pt;}
.y2e{bottom:305.773333pt;}
.y60{bottom:307.773333pt;}
.y7e{bottom:317.440000pt;}
.y96{bottom:317.786667pt;}
.y2d{bottom:325.440000pt;}
.y5f{bottom:325.773333pt;}
.y85{bottom:332.066667pt;}
.y95{bottom:335.706667pt;}
.y5e{bottom:343.773333pt;}
.y2c{bottom:345.426667pt;}
.y7d{bottom:347.106667pt;}
.y94{bottom:353.786667pt;}
.y2b{bottom:359.106667pt;}
.y5d{bottom:361.773333pt;}
.y93{bottom:371.706667pt;}
.y2a{bottom:373.773333pt;}
.y5c{bottom:379.773333pt;}
.y92{bottom:389.786667pt;}
.y29{bottom:393.466667pt;}
.y5b{bottom:397.800000pt;}
.y91{bottom:407.706667pt;}
.y28{bottom:412.800000pt;}
.y5a{bottom:415.800000pt;}
.y90{bottom:425.786667pt;}
.y27{bottom:432.466667pt;}
.y59{bottom:433.800000pt;}
.y8f{bottom:443.746667pt;}
.y26{bottom:451.800000pt;}
.y8e{bottom:461.826667pt;}
.y58{bottom:469.800000pt;}
.y25{bottom:471.466667pt;}
.y8d{bottom:479.746667pt;}
.y57{bottom:487.800000pt;}
.y24{bottom:490.800000pt;}
.y8c{bottom:497.826667pt;}
.y56{bottom:505.840000pt;}
.y23{bottom:510.506667pt;}
.y8b{bottom:515.746667pt;}
.y55{bottom:523.840000pt;}
.y22{bottom:529.840000pt;}
.y8a{bottom:533.826667pt;}
.y54{bottom:541.840000pt;}
.y21{bottom:549.506667pt;}
.y89{bottom:551.746667pt;}
.y53{bottom:559.840000pt;}
.y20{bottom:568.840000pt;}
.y88{bottom:569.826667pt;}
.y52{bottom:577.840000pt;}
.y87{bottom:587.746667pt;}
.y1f{bottom:588.506667pt;}
.y51{bottom:595.840000pt;}
.y86{bottom:605.826667pt;}
.y1e{bottom:608.506667pt;}
.y50{bottom:613.866667pt;}
.y1d{bottom:628.533333pt;}
.y4f{bottom:631.866667pt;}
.y1c{bottom:641.866667pt;}
.y4e{bottom:649.866667pt;}
.y8{bottom:651.613333pt;}
.y1b{bottom:656.866667pt;}
.y4d{bottom:667.866667pt;}
.y1a{bottom:676.200000pt;}
.y4c{bottom:685.866667pt;}
.y19{bottom:695.866667pt;}
.y4b{bottom:703.866667pt;}
.y18{bottom:715.200000pt;}
.y4a{bottom:721.866667pt;}
.y7{bottom:730.813333pt;}
.y17{bottom:734.893333pt;}
.y49{bottom:739.893333pt;}
.y16{bottom:754.226667pt;}
.y48{bottom:757.893333pt;}
.y15{bottom:773.893333pt;}
.y47{bottom:775.893333pt;}
.y72{bottom:779.893333pt;}
.y14{bottom:793.560000pt;}
.y46{bottom:793.893333pt;}
.y71{bottom:796.560000pt;}
.y6{bottom:810.053333pt;}
.y45{bottom:811.893333pt;}
.y70{bottom:812.893333pt;}
.y13{bottom:813.560000pt;}
.y7c{bottom:822.226667pt;}
.y12{bottom:827.226667pt;}
.y44{bottom:829.893333pt;}
.y11{bottom:841.933333pt;}
.y43{bottom:847.933333pt;}
.y7b{bottom:856.266667pt;}
.y10{bottom:861.600000pt;}
.y42{bottom:865.933333pt;}
.yf{bottom:881.600000pt;}
.y6d{bottom:883.933333pt;}
.y41{bottom:885.933333pt;}
.y5{bottom:889.253333pt;}
.y7a{bottom:890.266667pt;}
.y7f{bottom:897.933333pt;}
.y6c{bottom:901.933333pt;}
.ye{bottom:903.933333pt;}
.y40{bottom:912.933333pt;}
.y6b{bottom:919.933333pt;}
.yd{bottom:920.266667pt;}
.y79{bottom:924.600000pt;}
.yc{bottom:940.600000pt;}
.y78{bottom:942.600000pt;}
.y77{bottom:960.626667pt;}
.y68{bottom:964.293333pt;}
.yb{bottom:966.960000pt;}
.y4{bottom:975.493333pt;}
.y67{bottom:977.626667pt;}
.y84{bottom:978.213333pt;}
.y76{bottom:978.626667pt;}
.ya{bottom:990.293333pt;}
.y3a{bottom:990.960000pt;}
.y83{bottom:996.293333pt;}
.y75{bottom:996.626667pt;}
.y9{bottom:1010.960000pt;}
.y82{bottom:1014.240000pt;}
.y74{bottom:1014.626667pt;}
.y3{bottom:1051.200000pt;}
.y73{bottom:1064.626667pt;}
.y81{bottom:1064.640000pt;}
.y2{bottom:1066.880000pt;}
.y1{bottom:1082.720000pt;}
.h13{height:18.666667pt;}
.h14{height:20.333333pt;}
.h9{height:32.507812pt;}
.h1d{height:34.241563pt;}
.h18{height:34.313802pt;}
.h16{height:39.731771pt;}
.hc{height:40.171875pt;}
.hf{height:40.666667pt;}
.he{height:42.403646pt;}
.h19{height:43.343750pt;}
.h1f{height:44.437500pt;}
.h15{height:44.562500pt;}
.h7{height:44.635417pt;}
.h2{height:47.190000pt;}
.h17{height:49.098958pt;}
.h6{height:52.373698pt;}
.h12{height:53.562500pt;}
.h8{height:54.179688pt;}
.ha{height:58.026042pt;}
.h1b{height:60.033333pt;}
.hb{height:62.054688pt;}
.hd{height:64.721354pt;}
.h10{height:65.015625pt;}
.h1a{height:65.781915pt;}
.h11{height:80.343750pt;}
.h1c{height:93.911458pt;}
.h3{height:122.662812pt;}
.h4{height:214.500000pt;}
.h5{height:214.607250pt;}
.h1e{height:619.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:264.706667pt;}
.w7{width:419.533333pt;}
.w5{width:536.893333pt;}
.w6{width:537.226667pt;}
.w4{width:793.666655pt;}
.w3{width:793.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:8.040000pt;}
.x4{left:39.999988pt;}
.xf{left:60.366667pt;}
.x9{left:75.699988pt;}
.xb{left:87.033322pt;}
.xe{left:113.033333pt;}
.xa{left:132.399988pt;}
.x6{left:144.506655pt;}
.xc{left:151.399988pt;}
.x8{left:152.666655pt;}
.x5{left:160.666655pt;}
.x19{left:179.733322pt;}
.x1f{left:187.066667pt;}
.x18{left:189.766667pt;}
.x16{left:232.439988pt;}
.x15{left:237.806667pt;}
.x1b{left:246.773322pt;}
.x7{left:249.946655pt;}
.x11{left:290.806667pt;}
.x10{left:308.473333pt;}
.x14{left:327.466655pt;}
.x13{left:349.799988pt;}
.x12{left:371.506655pt;}
.x21{left:380.226667pt;}
.xd{left:381.839988pt;}
.x1d{left:397.173322pt;}
.x1c{left:420.173322pt;}
.x1a{left:493.199988pt;}
.x1{left:619.973322pt;}
.x2{left:639.813322pt;}
.x17{left:643.599988pt;}
.x3{left:696.933322pt;}
.x1e{left:718.639988pt;}
}




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