
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_29e362271f381f706a68b4a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
.ff32{font-family:sans-serif;visibility:hidden;}
.ff33{font-family:sans-serif;visibility:hidden;}
.ff34{font-family:sans-serif;visibility:hidden;}
.ff35{font-family:sans-serif;visibility:hidden;}
.ff36{font-family:sans-serif;visibility:hidden;}
.ff37{font-family:sans-serif;visibility:hidden;}
.ff38{font-family:sans-serif;visibility:hidden;}
.ff39{font-family:sans-serif;visibility:hidden;}
.ff3a{font-family:sans-serif;visibility:hidden;}
.ff3b{font-family:sans-serif;visibility:hidden;}
.ff3c{font-family:sans-serif;visibility:hidden;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.ff3e{font-family:sans-serif;visibility:hidden;}
.ff3f{font-family:sans-serif;visibility:hidden;}
.ff40{font-family:sans-serif;visibility:hidden;}
.ff41{font-family:sans-serif;visibility:hidden;}
.ff42{font-family:sans-serif;visibility:hidden;}
.ff43{font-family:sans-serif;visibility:hidden;}
.ff44{font-family:sans-serif;visibility:hidden;}
.ff45{font-family:sans-serif;visibility:hidden;}
.ff46{font-family:sans-serif;visibility:hidden;}
.ff47{font-family:sans-serif;visibility:hidden;}
.ff48{font-family:sans-serif;visibility:hidden;}
.ff49{font-family:sans-serif;visibility:hidden;}
.ff4a{font-family:sans-serif;visibility:hidden;}
.ff4b{font-family:sans-serif;visibility:hidden;}
.ff4c{font-family:sans-serif;visibility:hidden;}
.ff4d{font-family:sans-serif;visibility:hidden;}
.ff4e{font-family:sans-serif;visibility:hidden;}
.ff4f{font-family:sans-serif;visibility:hidden;}
.ff50{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff51;src:url('chunks/assets/font_29e362271f381f706a68b4a5.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.881836;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;}
.ff52{font-family:sans-serif;visibility:hidden;}
.ff53{font-family:sans-serif;visibility:hidden;}
.ff54{font-family:sans-serif;visibility:hidden;}
.ff55{font-family:sans-serif;visibility:hidden;}
.ff56{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff57;src:url('chunks/assets/font_29e362271f381f706a68b4a5.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.881836;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;}
.ff58{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-14.827148px;}
._4{margin-left:-7.470703px;}
._6{margin-left:-6.073242px;}
._a{margin-left:-4.974609px;}
._2{margin-left:-3.972656px;}
._5{margin-left:-2.865234px;}
._0{margin-left:-1.371094px;}
._3{width:1.072266px;}
._1{width:2.126953px;}
._7{width:3.990234px;}
._9{width:5.677734px;}
.fc4{color:rgb(26,54,93);}
.fc3{color:transparent;}
.fc2{color:rgb(49,130,206);}
.fc1{color:rgb(226,232,240);}
.fc5{color:rgb(45,55,72);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:53.999998px;}
.fs5{font-size:62.999997px;}
.fs8{font-size:67.499997px;}
.fs7{font-size:71.999997px;}
.fsc{font-size:74.215898px;}
.fsa{font-size:76.499997px;}
.fs9{font-size:78.854392px;}
.fs4{font-size:80.999997px;}
.fsd{font-size:85.499996px;}
.fs6{font-size:89.999996px;}
.fsb{font-size:98.999996px;}
.fs2{font-size:107.999996px;}
.fs1{font-size:125.999995px;}
.fs3{font-size:161.999993px;}
.fsf{font-size:170.999993px;}
.fs0{font-size:251.999990px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000034px;}
.y54{bottom:0.000036px;}
.y6c{bottom:0.000039px;}
.yde{bottom:0.000041px;}
.y91{bottom:0.054151px;}
.ybb{bottom:0.054154px;}
.y80{bottom:0.125836px;}
.y45{bottom:0.125920px;}
.y2d{bottom:0.180036px;}
.yba{bottom:24.380855px;}
.y1a{bottom:29.249999px;}
.y90{bottom:29.619143px;}
.ya5{bottom:30.005855px;}
.y6b{bottom:30.374999px;}
.y53{bottom:44.244142px;}
.ydd{bottom:66.005853px;}
.ydc{bottom:69.380853px;}
.yaa{bottom:70.505853px;}
.y3b{bottom:80.999997px;}
.y9c{bottom:84.005852px;}
.ye4{bottom:84.374996px;}
.y8f{bottom:85.869140px;}
.y75{bottom:87.749996px;}
.y69{bottom:93.374996px;}
.ydb{bottom:94.130852px;}
.ya9{bottom:97.505852px;}
.y9b{bottom:107.630852px;}
.y3a{bottom:107.999995px;}
.ye3{bottom:113.624995px;}
.y6a{bottom:114.749995px;}
.y68{bottom:120.374995px;}
.yda{bottom:122.255851px;}
.y8e{bottom:122.994139px;}
.y18{bottom:124.874995px;}
.yd9{bottom:125.630851px;}
.y29{bottom:129.374995px;}
.ya8{bottom:134.630850px;}
.y2c{bottom:134.999994px;}
.y9a{bottom:139.130850px;}
.y74{bottom:141.749994px;}
.y52{bottom:147.744138px;}
.yd8{bottom:150.380850px;}
.y19{bottom:150.749994px;}
.y28{bottom:152.999994px;}
.yd7{bottom:153.755850px;}
.y17{bottom:155.249994px;}
.y22{bottom:158.624993px;}
.y6{bottom:160.874993px;}
.y8d{bottom:163.494137px;}
.y66{bottom:169.874993px;}
.y51{bottom:174.744137px;}
.y99{bottom:175.130849px;}
.y73{bottom:181.124992px;}
.y21{bottom:182.249992px;}
.y2b{bottom:187.874992px;}
.yc0{bottom:188.630848px;}
.y67{bottom:191.249992px;}
.y65{bottom:196.874992px;}
.y50{bottom:201.744136px;}
.y15{bottom:202.499992px;}
.yf6{bottom:209.249991px;}
.y20{bottom:211.499991px;}
.yf5{bottom:212.624991px;}
.y39{bottom:213.749991px;}
.y27{bottom:218.249991px;}
.yb9{bottom:221.255847px;}
.y2a{bottom:223.874991px;}
.y16{bottom:228.374990px;}
.y14{bottom:232.874990px;}
.y64{bottom:239.624990px;}
.yb8{bottom:244.880846px;}
.yf4{bottom:246.374990px;}
.y1f{bottom:247.499990px;}
.y26{bottom:248.624990px;}
.y98{bottom:249.380846px;}
.yf3{bottom:249.749990px;}
.y38{bottom:250.874990px;}
.y44{bottom:253.124989px;}
.yd6{bottom:264.005845px;}
.yd5{bottom:267.380845px;}
.yb7{bottom:274.130845px;}
.y1e{bottom:277.874988px;}
.y12{bottom:280.124988px;}
.yf2{bottom:284.624988px;}
.y25{bottom:287.999988px;}
.y8c{bottom:288.369132px;}
.y37{bottom:290.249988px;}
.yd4{bottom:292.130844px;}
.yd3{bottom:295.505844px;}
.y43{bottom:298.124988px;}
.y13{bottom:305.999987px;}
.y11{bottom:310.499987px;}
.y24{bottom:314.999987px;}
.y8b{bottom:315.369131px;}
.y1d{bottom:317.249987px;}
.yd2{bottom:320.255843px;}
.y72{bottom:322.874987px;}
.yd1{bottom:323.630843px;}
.y4f{bottom:324.369130px;}
.yb6{bottom:324.755842px;}
.yf1{bottom:326.249986px;}
.y42{bottom:327.374986px;}
.ya4{bottom:340.505842px;}
.y1c{bottom:344.249986px;}
.ya3{bottom:346.130842px;}
.yd0{bottom:348.380841px;}
.y4e{bottom:349.119129px;}
.y5{bottom:349.874985px;}
.yb5{bottom:351.755841px;}
.y8a{bottom:353.619129px;}
.y23{bottom:354.374985px;}
.y41{bottom:355.499985px;}
.yf{bottom:357.749985px;}
.yf0{bottom:361.124985px;}
.yef{bottom:364.499985px;}
.y5f{bottom:374.624984px;}
.ya2{bottom:376.505840px;}
.y36{bottom:379.124984px;}
.ya1{bottom:382.130840px;}
.y10{bottom:383.624984px;}
.ybf{bottom:386.630840px;}
.ye{bottom:388.124984px;}
.y4d{bottom:388.494128px;}
.yb3{bottom:393.380840px;}
.y4{bottom:393.749984px;}
.yb4{bottom:397.880839px;}
.y5e{bottom:398.249983px;}
.y40{bottom:401.624983px;}
.y35{bottom:404.999983px;}
.ye2{bottom:407.249983px;}
.ya0{bottom:412.505839px;}
.y7f{bottom:413.999983px;}
.y4c{bottom:415.494127px;}
.y9f{bottom:418.130839px;}
.y7e{bottom:419.624983px;}
.y63{bottom:425.249982px;}
.y5d{bottom:426.374982px;}
.yc{bottom:435.374982px;}
.y34{bottom:442.124982px;}
.y4b{bottom:442.494126px;}
.y3f{bottom:444.374981px;}
.y9e{bottom:448.505837px;}
.y7d{bottom:448.874981px;}
.y62{bottom:453.374981px;}
.y9d{bottom:454.130837px;}
.y7c{bottom:454.499981px;}
.y5c{bottom:460.124981px;}
.yd{bottom:461.249981px;}
.ycf{bottom:462.005837px;}
.yce{bottom:465.380837px;}
.yb{bottom:465.749981px;}
.y89{bottom:468.369124px;}
.y3{bottom:476.999980px;}
.y33{bottom:481.499980px;}
.y7b{bottom:482.624980px;}
.y4a{bottom:482.994124px;}
.y5b{bottom:483.749980px;}
.y3e{bottom:487.124980px;}
.y7a{bottom:488.249980px;}
.yee{bottom:489.374980px;}
.yb2{bottom:490.130836px;}
.yed{bottom:492.749979px;}
.ycd{bottom:493.505835px;}
.y97{bottom:494.630835px;}
.y88{bottom:495.369123px;}
.y61{bottom:510.749979px;}
.y5a{bottom:512.999979px;}
.yb1{bottom:513.755835px;}
.y79{bottom:517.499978px;}
.ycc{bottom:518.255834px;}
.ycb{bottom:521.630834px;}
.y49{bottom:522.369122px;}
.y78{bottom:523.124978px;}
.ya{bottom:526.499978px;}
.yec{bottom:529.874978px;}
.y87{bottom:533.619122px;}
.y96{bottom:534.005834px;}
.yb0{bottom:537.380834px;}
.y60{bottom:539.999978px;}
.yca{bottom:546.380833px;}
.yc9{bottom:549.755833px;}
.y77{bottom:551.249977px;}
.y2{bottom:552.374977px;}
.y59{bottom:554.624977px;}
.y76{bottom:556.874977px;}
.y9{bottom:559.124977px;}
.y48{bottom:562.869121px;}
.yaf{bottom:565.505832px;}
.yea{bottom:568.124976px;}
.y32{bottom:570.374976px;}
.y58{bottom:581.624976px;}
.ybe{bottom:584.630832px;}
.yeb{bottom:591.749975px;}
.y3d{bottom:592.874975px;}
.y71{bottom:593.999975px;}
.ye9{bottom:595.124975px;}
.y31{bottom:596.249975px;}
.y95{bottom:610.505831px;}
.yae{bottom:616.130830px;}
.y8{bottom:617.624974px;}
.y57{bottom:620.999974px;}
.y86{bottom:626.994118px;}
.y30{bottom:633.374974px;}
.yad{bottom:643.130829px;}
.y70{bottom:646.874973px;}
.y3c{bottom:649.124973px;}
.y85{bottom:653.994117px;}
.ye8{bottom:656.999973px;}
.yc8{bottom:660.005828px;}
.y56{bottom:660.374972px;}
.yc7{bottom:663.380828px;}
.y47{bottom:668.619116px;}
.y7{bottom:670.499972px;}
.y2f{bottom:672.749972px;}
.y6f{bottom:676.124972px;}
.y84{bottom:680.994116px;}
.yab{bottom:684.755827px;}
.yc6{bottom:688.130827px;}
.yac{bottom:689.255827px;}
.yc5{bottom:691.505827px;}
.y94{bottom:693.755827px;}
.ye6{bottom:697.499971px;}
.y1b{bottom:709.874970px;}
.yc4{bottom:716.255826px;}
.y83{bottom:718.119114px;}
.yc3{bottom:719.630826px;}
.ye7{bottom:721.124970px;}
.y93{bottom:724.130826px;}
.ye5{bottom:724.499970px;}
.y46{bottom:724.869114px;}
.y6e{bottom:726.749970px;}
.yc2{bottom:744.380825px;}
.yc1{bottom:747.755825px;}
.y55{bottom:763.874968px;}
.ye1{bottom:767.249968px;}
.ya7{bottom:768.005824px;}
.y2e{bottom:768.374968px;}
.ybd{bottom:782.630823px;}
.y82{bottom:796.869111px;}
.y92{bottom:802.880823px;}
.ya6{bottom:818.630822px;}
.ye0{bottom:836.999965px;}
.y6d{bottom:844.874965px;}
.y81{bottom:855.369108px;}
.ybc{bottom:863.630820px;}
.ydf{bottom:892.124963px;}
.h24{height:51.299998px;}
.h28{height:57.111326px;}
.h8{height:59.849998px;}
.hb{height:64.124997px;}
.ha{height:68.399997px;}
.h2c{height:69.802731px;}
.h15{height:70.505103px;}
.h10{height:72.674997px;}
.hf{height:74.911672px;}
.h7{height:76.148434px;}
.h6{height:76.949997px;}
.h1d{height:81.224997px;}
.h9{height:85.499996px;}
.h14{height:94.049996px;}
.h4{height:102.599996px;}
.h3{height:119.699995px;}
.h5{height:153.899994px;}
.h2b{height:162.449993px;}
.h2{height:239.399990px;}
.h1{height:809.999966px;}
.h0{height:810.000000px;}
.h13{height:824.994110px;}
.h12{height:825.000000px;}
.h11{height:825.120030px;}
.h17{height:863.999964px;}
.h16{height:864.000000px;}
.he{height:868.499964px;}
.hd{height:868.500000px;}
.hc{height:868.680000px;}
.h1f{height:898.500000px;}
.h20{height:898.505819px;}
.h1e{height:898.559970px;}
.h22{height:907.500000px;}
.h23{height:907.505818px;}
.h21{height:907.559970px;}
.h19{height:944.999961px;}
.h18{height:945.000000px;}
.h1c{height:950.994104px;}
.h1b{height:951.000000px;}
.h1a{height:951.119940px;}
.h26{height:952.500000px;}
.h27{height:952.505816px;}
.h25{height:952.559970px;}
.h2a{height:989.999959px;}
.h29{height:990.000000px;}
.w1{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:67.499997px;}
.x33{left:78.749997px;}
.x43{left:84.374996px;}
.x3c{left:87.749996px;}
.xa{left:89.999996px;}
.x20{left:91.687496px;}
.x3a{left:95.624996px;}
.x7{left:101.249996px;}
.x34{left:103.499996px;}
.x27{left:105.749996px;}
.x4b{left:109.300777px;}
.x36{left:112.499995px;}
.x40{left:118.124995px;}
.x9{left:119.249995px;}
.x2b{left:123.749995px;}
.x37{left:134.999994px;}
.x22{left:161.999993px;}
.x18{left:168.749993px;}
.x42{left:176.062493px;}
.x23{left:179.999993px;}
.x30{left:183.374992px;}
.xd{left:192.937492px;}
.x1b{left:212.624991px;}
.x1c{left:214.874991px;}
.x1{left:222.187491px;}
.x28{left:226.124991px;}
.x1a{left:301.499987px;}
.x21{left:334.687486px;}
.x3{left:347.624986px;}
.x2{left:388.124984px;}
.x3d{left:419.624983px;}
.x2d{left:521.244125px;}
.xb{left:536.238259px;}
.x29{left:538.488259px;}
.x2c{left:543.744124px;}
.x5{left:548.999977px;}
.x44{left:561.374977px;}
.x47{left:580.499976px;}
.x4{left:588.374975px;}
.x49{left:596.935528px;}
.x19{left:606.374975px;}
.x4a{left:617.185527px;}
.xe{left:641.249973px;}
.x16{left:658.687473px;}
.x17{left:676.687472px;}
.xf{left:717.749970px;}
.x12{left:730.124970px;}
.x14{left:732.374969px;}
.x39{left:736.874969px;}
.x3e{left:751.499969px;}
.x45{left:752.624969px;}
.x38{left:759.374968px;}
.x3b{left:764.999968px;}
.x35{left:767.249968px;}
.x24{left:770.624968px;}
.x1d{left:773.437468px;}
.x31{left:776.249968px;}
.x41{left:787.499967px;}
.x32{left:798.749967px;}
.x26{left:829.124965px;}
.x25{left:835.874965px;}
.x1e{left:890.437463px;}
.x1f{left:903.937462px;}
.x2f{left:941.238242px;}
.x2e{left:963.738241px;}
.xc{left:982.494105px;}
.x2a{left:984.744105px;}
.x10{left:1002.937458px;}
.x11{left:1073.812455px;}
.x15{left:1081.687455px;}
.x3f{left:1083.374955px;}
.x13{left:1095.187454px;}
.x8{left:1193.624950px;}
.x46{left:1208.249950px;}
.x48{left:1231.874949px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-13.179687pt;}
._4{margin-left:-6.640625pt;}
._6{margin-left:-5.398437pt;}
._a{margin-left:-4.421875pt;}
._2{margin-left:-3.531250pt;}
._5{margin-left:-2.546875pt;}
._0{margin-left:-1.218750pt;}
._3{width:0.953125pt;}
._1{width:1.890625pt;}
._7{width:3.546875pt;}
._9{width:5.046875pt;}
.fse{font-size:47.999998pt;}
.fs5{font-size:55.999998pt;}
.fs8{font-size:59.999998pt;}
.fs7{font-size:63.999997pt;}
.fsc{font-size:65.969687pt;}
.fsa{font-size:67.999997pt;}
.fs9{font-size:70.092793pt;}
.fs4{font-size:71.999997pt;}
.fsd{font-size:75.999997pt;}
.fs6{font-size:79.999997pt;}
.fsb{font-size:87.999996pt;}
.fs2{font-size:95.999996pt;}
.fs1{font-size:111.999995pt;}
.fs3{font-size:143.999994pt;}
.fsf{font-size:151.999994pt;}
.fs0{font-size:223.999991pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000030pt;}
.y54{bottom:0.000032pt;}
.y6c{bottom:0.000035pt;}
.yde{bottom:0.000037pt;}
.y91{bottom:0.048135pt;}
.ybb{bottom:0.048137pt;}
.y80{bottom:0.111854pt;}
.y45{bottom:0.111929pt;}
.y2d{bottom:0.160032pt;}
.yba{bottom:21.671871pt;}
.y1a{bottom:25.999999pt;}
.y90{bottom:26.328127pt;}
.ya5{bottom:26.671871pt;}
.y6b{bottom:26.999999pt;}
.y53{bottom:39.328126pt;}
.ydd{bottom:58.671870pt;}
.ydc{bottom:61.671869pt;}
.yaa{bottom:62.671869pt;}
.y3b{bottom:71.999997pt;}
.y9c{bottom:74.671869pt;}
.ye4{bottom:74.999997pt;}
.y8f{bottom:76.328125pt;}
.y75{bottom:77.999997pt;}
.y69{bottom:82.999997pt;}
.ydb{bottom:83.671869pt;}
.ya9{bottom:86.671868pt;}
.y9b{bottom:95.671868pt;}
.y3a{bottom:95.999996pt;}
.ye3{bottom:100.999996pt;}
.y6a{bottom:101.999996pt;}
.y68{bottom:106.999996pt;}
.yda{bottom:108.671867pt;}
.y8e{bottom:109.328123pt;}
.y18{bottom:110.999995pt;}
.yd9{bottom:111.671867pt;}
.y29{bottom:114.999995pt;}
.ya8{bottom:119.671867pt;}
.y2c{bottom:119.999995pt;}
.y9a{bottom:123.671867pt;}
.y74{bottom:125.999995pt;}
.y52{bottom:131.328123pt;}
.yd8{bottom:133.671866pt;}
.y19{bottom:133.999994pt;}
.y28{bottom:135.999994pt;}
.yd7{bottom:136.671866pt;}
.y17{bottom:137.999994pt;}
.y22{bottom:140.999994pt;}
.y6{bottom:142.999994pt;}
.y8d{bottom:145.328122pt;}
.y66{bottom:150.999994pt;}
.y51{bottom:155.328122pt;}
.y99{bottom:155.671866pt;}
.y73{bottom:160.999993pt;}
.y21{bottom:161.999993pt;}
.y2b{bottom:166.999993pt;}
.yc0{bottom:167.671865pt;}
.y67{bottom:169.999993pt;}
.y65{bottom:174.999993pt;}
.y50{bottom:179.328121pt;}
.y15{bottom:179.999992pt;}
.yf6{bottom:185.999992pt;}
.y20{bottom:187.999992pt;}
.yf5{bottom:188.999992pt;}
.y39{bottom:189.999992pt;}
.y27{bottom:193.999992pt;}
.yb9{bottom:196.671864pt;}
.y2a{bottom:198.999992pt;}
.y16{bottom:202.999992pt;}
.y14{bottom:206.999991pt;}
.y64{bottom:212.999991pt;}
.yb8{bottom:217.671863pt;}
.yf4{bottom:218.999991pt;}
.y1f{bottom:219.999991pt;}
.y26{bottom:220.999991pt;}
.y98{bottom:221.671863pt;}
.yf3{bottom:221.999991pt;}
.y38{bottom:222.999991pt;}
.y44{bottom:224.999991pt;}
.yd6{bottom:234.671862pt;}
.yd5{bottom:237.671862pt;}
.yb7{bottom:243.671862pt;}
.y1e{bottom:246.999990pt;}
.y12{bottom:248.999990pt;}
.yf2{bottom:252.999989pt;}
.y25{bottom:255.999989pt;}
.y8c{bottom:256.328117pt;}
.y37{bottom:257.999989pt;}
.yd4{bottom:259.671861pt;}
.yd3{bottom:262.671861pt;}
.y43{bottom:264.999989pt;}
.y13{bottom:271.999989pt;}
.y11{bottom:275.999988pt;}
.y24{bottom:279.999988pt;}
.y8b{bottom:280.328116pt;}
.y1d{bottom:281.999988pt;}
.yd2{bottom:284.671860pt;}
.y72{bottom:286.999988pt;}
.yd1{bottom:287.671860pt;}
.y4f{bottom:288.328116pt;}
.yb6{bottom:288.671860pt;}
.yf1{bottom:289.999988pt;}
.y42{bottom:290.999988pt;}
.ya4{bottom:302.671859pt;}
.y1c{bottom:305.999987pt;}
.ya3{bottom:307.671859pt;}
.yd0{bottom:309.671859pt;}
.y4e{bottom:310.328115pt;}
.y5{bottom:310.999987pt;}
.yb5{bottom:312.671859pt;}
.y8a{bottom:314.328115pt;}
.y23{bottom:314.999987pt;}
.y41{bottom:315.999987pt;}
.yf{bottom:317.999987pt;}
.yf0{bottom:320.999987pt;}
.yef{bottom:323.999987pt;}
.y5f{bottom:332.999986pt;}
.ya2{bottom:334.671858pt;}
.y36{bottom:336.999986pt;}
.ya1{bottom:339.671858pt;}
.y10{bottom:340.999986pt;}
.ybf{bottom:343.671858pt;}
.ye{bottom:344.999986pt;}
.y4d{bottom:345.328114pt;}
.yb3{bottom:349.671857pt;}
.y4{bottom:349.999985pt;}
.yb4{bottom:353.671857pt;}
.y5e{bottom:353.999985pt;}
.y40{bottom:356.999985pt;}
.y35{bottom:359.999985pt;}
.ye2{bottom:361.999985pt;}
.ya0{bottom:366.671857pt;}
.y7f{bottom:367.999985pt;}
.y4c{bottom:369.328113pt;}
.y9f{bottom:371.671857pt;}
.y7e{bottom:372.999984pt;}
.y63{bottom:377.999984pt;}
.y5d{bottom:378.999984pt;}
.yc{bottom:386.999984pt;}
.y34{bottom:392.999984pt;}
.y4b{bottom:393.328112pt;}
.y3f{bottom:394.999984pt;}
.y9e{bottom:398.671855pt;}
.y7d{bottom:398.999983pt;}
.y62{bottom:402.999983pt;}
.y9d{bottom:403.671855pt;}
.y7c{bottom:403.999983pt;}
.y5c{bottom:408.999983pt;}
.yd{bottom:409.999983pt;}
.ycf{bottom:410.671855pt;}
.yce{bottom:413.671855pt;}
.yb{bottom:413.999983pt;}
.y89{bottom:416.328111pt;}
.y3{bottom:423.999982pt;}
.y33{bottom:427.999982pt;}
.y7b{bottom:428.999982pt;}
.y4a{bottom:429.328110pt;}
.y5b{bottom:429.999982pt;}
.y3e{bottom:432.999982pt;}
.y7a{bottom:433.999982pt;}
.yee{bottom:434.999982pt;}
.yb2{bottom:435.671854pt;}
.yed{bottom:437.999982pt;}
.ycd{bottom:438.671854pt;}
.y97{bottom:439.671854pt;}
.y88{bottom:440.328110pt;}
.y61{bottom:453.999981pt;}
.y5a{bottom:455.999981pt;}
.yb1{bottom:456.671853pt;}
.y79{bottom:459.999981pt;}
.ycc{bottom:460.671853pt;}
.ycb{bottom:463.671853pt;}
.y49{bottom:464.328109pt;}
.y78{bottom:464.999981pt;}
.ya{bottom:467.999981pt;}
.yec{bottom:470.999980pt;}
.y87{bottom:474.328108pt;}
.y96{bottom:474.671852pt;}
.yb0{bottom:477.671852pt;}
.y60{bottom:479.999980pt;}
.yca{bottom:485.671852pt;}
.yc9{bottom:488.671852pt;}
.y77{bottom:489.999980pt;}
.y2{bottom:490.999980pt;}
.y59{bottom:492.999979pt;}
.y76{bottom:494.999979pt;}
.y9{bottom:496.999979pt;}
.y48{bottom:500.328107pt;}
.yaf{bottom:502.671851pt;}
.yea{bottom:504.999979pt;}
.y32{bottom:506.999979pt;}
.y58{bottom:516.999978pt;}
.ybe{bottom:519.671850pt;}
.yeb{bottom:525.999978pt;}
.y3d{bottom:526.999978pt;}
.y71{bottom:527.999978pt;}
.ye9{bottom:528.999978pt;}
.y31{bottom:529.999978pt;}
.y95{bottom:542.671849pt;}
.yae{bottom:547.671849pt;}
.y8{bottom:548.999977pt;}
.y57{bottom:551.999977pt;}
.y86{bottom:557.328105pt;}
.y30{bottom:562.999977pt;}
.yad{bottom:571.671848pt;}
.y70{bottom:574.999976pt;}
.y3c{bottom:576.999976pt;}
.y85{bottom:581.328104pt;}
.ye8{bottom:583.999976pt;}
.yc8{bottom:586.671848pt;}
.y56{bottom:586.999976pt;}
.yc7{bottom:589.671847pt;}
.y47{bottom:594.328103pt;}
.y7{bottom:595.999975pt;}
.y2f{bottom:597.999975pt;}
.y6f{bottom:600.999975pt;}
.y84{bottom:605.328103pt;}
.yab{bottom:608.671847pt;}
.yc6{bottom:611.671847pt;}
.yac{bottom:612.671846pt;}
.yc5{bottom:614.671846pt;}
.y94{bottom:616.671846pt;}
.ye6{bottom:619.999974pt;}
.y1b{bottom:630.999974pt;}
.yc4{bottom:636.671845pt;}
.y83{bottom:638.328101pt;}
.yc3{bottom:639.671845pt;}
.ye7{bottom:640.999973pt;}
.y93{bottom:643.671845pt;}
.ye5{bottom:643.999973pt;}
.y46{bottom:644.328101pt;}
.y6e{bottom:645.999973pt;}
.yc2{bottom:661.671844pt;}
.yc1{bottom:664.671844pt;}
.y55{bottom:678.999972pt;}
.ye1{bottom:681.999972pt;}
.ya7{bottom:682.671844pt;}
.y2e{bottom:682.999972pt;}
.ybd{bottom:695.671843pt;}
.y82{bottom:708.328098pt;}
.y92{bottom:713.671842pt;}
.ya6{bottom:727.671842pt;}
.ye0{bottom:743.999969pt;}
.y6d{bottom:750.999969pt;}
.y81{bottom:760.328096pt;}
.ybc{bottom:767.671840pt;}
.ydf{bottom:792.999967pt;}
.h24{height:45.599998pt;}
.h28{height:50.765623pt;}
.h8{height:53.199998pt;}
.hb{height:56.999998pt;}
.ha{height:60.799997pt;}
.h2c{height:62.046872pt;}
.h15{height:62.671203pt;}
.h10{height:64.599997pt;}
.hf{height:66.588153pt;}
.h7{height:67.687497pt;}
.h6{height:68.399997pt;}
.h1d{height:72.199997pt;}
.h9{height:75.999997pt;}
.h14{height:83.599997pt;}
.h4{height:91.199996pt;}
.h3{height:106.399996pt;}
.h5{height:136.799994pt;}
.h2b{height:144.399994pt;}
.h2{height:212.799991pt;}
.h1{height:719.999970pt;}
.h0{height:720.000000pt;}
.h13{height:733.328097pt;}
.h12{height:733.333333pt;}
.h11{height:733.440027pt;}
.h17{height:767.999968pt;}
.h16{height:768.000000pt;}
.he{height:771.999968pt;}
.hd{height:772.000000pt;}
.hc{height:772.160000pt;}
.h1f{height:798.666667pt;}
.h20{height:798.671839pt;}
.h1e{height:798.719973pt;}
.h22{height:806.666667pt;}
.h23{height:806.671838pt;}
.h21{height:806.719973pt;}
.h19{height:839.999965pt;}
.h18{height:840.000000pt;}
.h1c{height:845.328093pt;}
.h1b{height:845.333333pt;}
.h1a{height:845.439947pt;}
.h26{height:846.666667pt;}
.h27{height:846.671837pt;}
.h25{height:846.719973pt;}
.h2a{height:879.999963pt;}
.h29{height:880.000000pt;}
.w1{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:59.999998pt;}
.x33{left:69.999997pt;}
.x43{left:74.999997pt;}
.x3c{left:77.999997pt;}
.xa{left:79.999997pt;}
.x20{left:81.499997pt;}
.x3a{left:84.999996pt;}
.x7{left:89.999996pt;}
.x34{left:91.999996pt;}
.x27{left:93.999996pt;}
.x4b{left:97.156246pt;}
.x36{left:99.999996pt;}
.x40{left:104.999996pt;}
.x9{left:105.999996pt;}
.x2b{left:109.999995pt;}
.x37{left:119.999995pt;}
.x22{left:143.999994pt;}
.x18{left:149.999994pt;}
.x42{left:156.499993pt;}
.x23{left:159.999993pt;}
.x30{left:162.999993pt;}
.xd{left:171.499993pt;}
.x1b{left:188.999992pt;}
.x1c{left:190.999992pt;}
.x1{left:197.499992pt;}
.x28{left:200.999992pt;}
.x1a{left:267.999989pt;}
.x21{left:297.499988pt;}
.x3{left:308.999987pt;}
.x2{left:344.999986pt;}
.x3d{left:372.999984pt;}
.x2d{left:463.328111pt;}
.xb{left:476.656230pt;}
.x29{left:478.656230pt;}
.x2c{left:483.328110pt;}
.x5{left:487.999980pt;}
.x44{left:498.999979pt;}
.x47{left:515.999979pt;}
.x4{left:522.999978pt;}
.x49{left:530.609358pt;}
.x19{left:538.999978pt;}
.x4a{left:548.609357pt;}
.xe{left:569.999976pt;}
.x16{left:585.499976pt;}
.x17{left:601.499975pt;}
.xf{left:637.999973pt;}
.x12{left:648.999973pt;}
.x14{left:650.999973pt;}
.x39{left:654.999973pt;}
.x3e{left:667.999972pt;}
.x45{left:668.999972pt;}
.x38{left:674.999972pt;}
.x3b{left:679.999972pt;}
.x35{left:681.999972pt;}
.x24{left:684.999971pt;}
.x1d{left:687.499971pt;}
.x31{left:689.999971pt;}
.x41{left:699.999971pt;}
.x32{left:709.999970pt;}
.x26{left:736.999969pt;}
.x25{left:742.999969pt;}
.x1e{left:791.499967pt;}
.x1f{left:803.499967pt;}
.x2f{left:836.656215pt;}
.x2e{left:856.656214pt;}
.xc{left:873.328094pt;}
.x2a{left:875.328094pt;}
.x10{left:891.499963pt;}
.x11{left:954.499960pt;}
.x15{left:961.499960pt;}
.x3f{left:962.999960pt;}
.x13{left:973.499959pt;}
.x8{left:1060.999956pt;}
.x46{left:1073.999955pt;}
.x48{left:1094.999954pt;}
}




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