
    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_99fe488811f950ba45789319.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074707;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_d9aff2902124b627afcddc7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ec658903d5a16e145f283473.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_02ed0abceb8e72701542a944.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_8e37c50090b750754fa48e0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_d4497a4b98e593b1b607b9ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.228000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws5{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-9.600000px;}
.ws7{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:261.840000px;}
._6{margin-left:-10.140000px;}
._23{margin-left:-8.850000px;}
._4{margin-left:-7.332000px;}
._5{margin-left:-5.850000px;}
._2{margin-left:-4.500000px;}
._1f{margin-left:-3.402000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._16{width:2.904000px;}
._14{width:4.356000px;}
._c{width:5.874000px;}
._15{width:7.482000px;}
._1c{width:8.700000px;}
._11{width:9.816000px;}
._f{width:10.890000px;}
._d{width:11.892000px;}
._e{width:13.032000px;}
._13{width:14.622000px;}
._1b{width:15.714000px;}
._1d{width:16.824000px;}
._b{width:17.862000px;}
._a{width:19.080000px;}
._1a{width:20.088000px;}
._10{width:21.120000px;}
._1e{width:22.200000px;}
._24{width:24.012000px;}
._17{width:25.410000px;}
._18{width:26.466000px;}
._19{width:30.426000px;}
._7{width:32.208000px;}
._9{width:33.348000px;}
._12{width:34.584000px;}
._8{width:65.406000px;}
._22{width:117.360000px;}
._21{width:338.640000px;}
._20{width:404.220000px;}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y40{bottom:87.541500px;}
.y60{bottom:89.641500px;}
.ybf{bottom:128.491500px;}
.y8b{bottom:128.941500px;}
.ybe{bottom:145.741500px;}
.y8a{bottom:146.191500px;}
.y61{bottom:156.391500px;}
.ybd{bottom:163.141500px;}
.y89{bottom:163.591500px;}
.yeb{bottom:167.041500px;}
.ye1{bottom:177.241500px;}
.ybc{bottom:180.391500px;}
.y88{bottom:180.841500px;}
.y5f{bottom:187.441500px;}
.yea{bottom:190.891500px;}
.y111{bottom:191.791500px;}
.ybb{bottom:197.791500px;}
.y87{bottom:207.991500px;}
.ye0{bottom:208.291500px;}
.ye9{bottom:214.591500px;}
.yba{bottom:215.041500px;}
.y110{bottom:215.491500px;}
.y5e{bottom:218.491500px;}
.y86{bottom:225.241500px;}
.ye8{bottom:238.441500px;}
.ydf{bottom:239.341500px;}
.yb9{bottom:242.191500px;}
.y85{bottom:242.641500px;}
.y5d{bottom:249.541500px;}
.yb8{bottom:259.441500px;}
.y84{bottom:259.891500px;}
.ye7{bottom:262.141500px;}
.y10f{bottom:263.041500px;}
.yde{bottom:270.391500px;}
.yb7{bottom:276.841500px;}
.y83{bottom:277.291500px;}
.y5c{bottom:280.591500px;}
.ye6{bottom:285.991500px;}
.y10e{bottom:286.891500px;}
.yb6{bottom:294.091500px;}
.y82{bottom:294.541500px;}
.ydd{bottom:301.441500px;}
.ye5{bottom:309.691500px;}
.y10d{bottom:310.591500px;}
.yb5{bottom:311.491500px;}
.y5b{bottom:311.641500px;}
.y81{bottom:311.941500px;}
.yb4{bottom:328.741500px;}
.y80{bottom:329.191500px;}
.ydc{bottom:332.491500px;}
.ye4{bottom:333.541500px;}
.y10c{bottom:334.441500px;}
.y5a{bottom:342.691500px;}
.y3f{bottom:344.641500px;}
.yb3{bottom:346.141500px;}
.y7f{bottom:346.591500px;}
.ye3{bottom:357.241500px;}
.y10b{bottom:358.141500px;}
.yb2{bottom:363.391500px;}
.ydb{bottom:363.541500px;}
.y7e{bottom:363.841500px;}
.y59{bottom:373.741500px;}
.yb1{bottom:380.791500px;}
.ye2{bottom:381.091500px;}
.y7d{bottom:381.241500px;}
.y10a{bottom:381.991500px;}
.y3e{bottom:388.141500px;}
.yda{bottom:394.591500px;}
.yb0{bottom:398.041500px;}
.y7c{bottom:398.491500px;}
.y58{bottom:404.791500px;}
.y109{bottom:405.691500px;}
.y3d{bottom:409.891500px;}
.yaf{bottom:415.441500px;}
.y7b{bottom:415.891500px;}
.yd9{bottom:425.641500px;}
.y1e{bottom:426.691500px;}
.y108{bottom:429.541500px;}
.y3c{bottom:431.641500px;}
.yae{bottom:432.691500px;}
.y57{bottom:435.841500px;}
.y1d{bottom:443.941500px;}
.yad{bottom:450.091500px;}
.y107{bottom:453.241500px;}
.y3b{bottom:453.391500px;}
.yd8{bottom:456.691500px;}
.y1c{bottom:461.341500px;}
.y56{bottom:466.891500px;}
.yac{bottom:467.341500px;}
.y7a{bottom:469.291500px;}
.y3a{bottom:475.141500px;}
.y106{bottom:477.091500px;}
.y1b{bottom:478.591500px;}
.y79{bottom:486.541500px;}
.yd7{bottom:487.741500px;}
.y1a{bottom:495.991500px;}
.y39{bottom:496.891500px;}
.y55{bottom:497.941500px;}
.y105{bottom:500.791500px;}
.y78{bottom:503.941500px;}
.y19{bottom:513.241500px;}
.y38{bottom:518.641500px;}
.yd6{bottom:518.791500px;}
.yab{bottom:520.741500px;}
.y77{bottom:521.191500px;}
.y104{bottom:524.641500px;}
.y54{bottom:528.991500px;}
.y18{bottom:530.641500px;}
.yaa{bottom:538.141500px;}
.y76{bottom:538.591500px;}
.y37{bottom:540.391500px;}
.y17{bottom:547.891500px;}
.y103{bottom:548.341500px;}
.yd5{bottom:549.841500px;}
.ya9{bottom:555.391500px;}
.y75{bottom:555.841500px;}
.y53{bottom:560.041500px;}
.y36{bottom:562.141500px;}
.y16{bottom:565.291500px;}
.y102{bottom:572.191500px;}
.ya8{bottom:572.791500px;}
.y74{bottom:573.241500px;}
.yd4{bottom:580.891500px;}
.y15{bottom:582.541500px;}
.y35{bottom:583.891500px;}
.ya7{bottom:590.041500px;}
.y73{bottom:590.491500px;}
.y52{bottom:591.091500px;}
.y101{bottom:595.891500px;}
.y14{bottom:599.941500px;}
.y34{bottom:605.641500px;}
.ya6{bottom:607.441500px;}
.y72{bottom:607.891500px;}
.y13{bottom:617.191500px;}
.y100{bottom:619.741500px;}
.y51{bottom:622.141500px;}
.ya5{bottom:624.691500px;}
.y71{bottom:625.141500px;}
.y33{bottom:627.391500px;}
.y12{bottom:634.591500px;}
.yd3{bottom:640.591500px;}
.ya4{bottom:642.091500px;}
.yff{bottom:643.441500px;}
.y32{bottom:649.141500px;}
.y11{bottom:651.841500px;}
.y50{bottom:653.191500px;}
.ya3{bottom:659.341500px;}
.y70{bottom:661.291500px;}
.yfe{bottom:667.291500px;}
.y10{bottom:669.241500px;}
.y31{bottom:670.891500px;}
.y6f{bottom:678.541500px;}
.y4f{bottom:684.241500px;}
.yf{bottom:686.491500px;}
.yfd{bottom:690.991500px;}
.y30{bottom:692.641500px;}
.yd2{bottom:693.991500px;}
.y6e{bottom:695.941500px;}
.ya2{bottom:703.741500px;}
.yd1{bottom:711.391500px;}
.y6d{bottom:713.191500px;}
.y2f{bottom:714.391500px;}
.yfc{bottom:714.841500px;}
.y4e{bottom:715.291500px;}
.ya1{bottom:721.141500px;}
.ye{bottom:724.291500px;}
.yd0{bottom:728.641500px;}
.y6c{bottom:730.591500px;}
.y2e{bottom:736.141500px;}
.ya0{bottom:738.391500px;}
.yfb{bottom:738.541500px;}
.yd{bottom:741.691500px;}
.ycf{bottom:746.041500px;}
.y4d{bottom:746.341500px;}
.y6b{bottom:747.841500px;}
.y9f{bottom:755.791500px;}
.y2d{bottom:757.891500px;}
.yfa{bottom:762.391500px;}
.yce{bottom:763.291500px;}
.y6a{bottom:765.241500px;}
.y9e{bottom:773.041500px;}
.yc{bottom:776.341500px;}
.y4c{bottom:777.391500px;}
.y2c{bottom:779.641500px;}
.ycd{bottom:780.691500px;}
.y69{bottom:782.491500px;}
.yf9{bottom:786.091500px;}
.y9d{bottom:790.441500px;}
.ycc{bottom:797.941500px;}
.y2b{bottom:801.391500px;}
.y9c{bottom:807.691500px;}
.y4b{bottom:808.441500px;}
.yf8{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.ycb{bottom:815.341500px;}
.y2a{bottom:823.141500px;}
.y9b{bottom:825.091500px;}
.ya{bottom:828.241500px;}
.yca{bottom:832.591500px;}
.yf7{bottom:833.641500px;}
.y68{bottom:835.891500px;}
.y4a{bottom:839.491500px;}
.y9a{bottom:842.341500px;}
.y29{bottom:844.891500px;}
.yc9{bottom:849.991500px;}
.y67{bottom:853.291500px;}
.yf6{bottom:857.491500px;}
.y99{bottom:859.741500px;}
.y9{bottom:862.741500px;}
.y28{bottom:866.641500px;}
.yc8{bottom:867.241500px;}
.y49{bottom:870.541500px;}
.y98{bottom:876.991500px;}
.y8{bottom:879.991500px;}
.yf5{bottom:881.191500px;}
.yc7{bottom:884.641500px;}
.y66{bottom:887.941500px;}
.y97{bottom:894.391500px;}
.y27{bottom:896.191500px;}
.y7{bottom:897.391500px;}
.y48{bottom:901.591500px;}
.yf4{bottom:905.041500px;}
.y65{bottom:905.191500px;}
.yf3{bottom:928.741500px;}
.y26{bottom:929.341500px;}
.y6{bottom:931.891500px;}
.y64{bottom:932.341500px;}
.y47{bottom:932.641500px;}
.yc6{bottom:938.041500px;}
.y25{bottom:946.741500px;}
.y96{bottom:947.791500px;}
.y5{bottom:949.291500px;}
.yf2{bottom:952.591500px;}
.yc5{bottom:955.291500px;}
.y46{bottom:963.691500px;}
.y95{bottom:965.041500px;}
.y24{bottom:967.141500px;}
.yc4{bottom:972.691500px;}
.yf1{bottom:976.291500px;}
.y94{bottom:982.441500px;}
.y63{bottom:985.291500px;}
.yc3{bottom:989.941500px;}
.y45{bottom:994.741500px;}
.y93{bottom:999.691500px;}
.yf0{bottom:1000.141500px;}
.y23{bottom:1000.291500px;}
.yc2{bottom:1007.341500px;}
.y62{bottom:1011.241500px;}
.y92{bottom:1017.091500px;}
.y22{bottom:1022.641500px;}
.yef{bottom:1023.841500px;}
.yc1{bottom:1024.591500px;}
.y44{bottom:1025.791500px;}
.y91{bottom:1034.341500px;}
.yc0{bottom:1041.991500px;}
.y21{bottom:1045.141500px;}
.yee{bottom:1047.691500px;}
.y90{bottom:1051.741500px;}
.y43{bottom:1056.841500px;}
.y20{bottom:1067.491500px;}
.y8f{bottom:1068.991500px;}
.yed{bottom:1071.391500px;}
.y8e{bottom:1086.391500px;}
.y42{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.yec{bottom:1095.241500px;}
.y8d{bottom:1103.641500px;}
.y41{bottom:1118.941500px;}
.y8c{bottom:1121.041500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.h5{height:34.968750px;}
.h4{height:41.226562px;}
.h7{height:43.710938px;}
.h8{height:52.646484px;}
.h6{height:53.291016px;}
.hc{height:56.686523px;}
.ha{height:59.493750px;}
.h3{height:61.839844px;}
.hd{height:63.175781px;}
.hb{height:63.949219px;}
.h9{height:69.278320px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x9{left:87.300000px;}
.x48{left:91.200000px;}
.xe{left:92.700000px;}
.x3c{left:94.200000px;}
.x1a{left:96.150000px;}
.x4f{left:97.500000px;}
.xd{left:99.600000px;}
.x2b{left:100.950000px;}
.x2c{left:104.100000px;}
.x5c{left:105.450000px;}
.x1b{left:108.150000px;}
.x60{left:109.950000px;}
.x67{left:111.300000px;}
.x50{left:112.950000px;}
.x2a{left:116.400000px;}
.xc{left:118.350000px;}
.x62{left:123.750000px;}
.xb{left:126.600000px;}
.x8{left:138.300000px;}
.xa{left:139.500000px;}
.x51{left:154.650000px;}
.x1c{left:245.700000px;}
.xf{left:248.550000px;}
.x12{left:250.350000px;}
.x53{left:253.050000px;}
.x1d{left:254.250000px;}
.x3d{left:256.200000px;}
.x58{left:257.400000px;}
.x4a{left:258.600000px;}
.x52{left:261.300000px;}
.x1e{left:263.100000px;}
.x2f{left:265.800000px;}
.x1f{left:267.750000px;}
.x2e{left:269.700000px;}
.x2d{left:271.950000px;}
.x10{left:275.700000px;}
.x3e{left:277.350000px;}
.x11{left:278.850000px;}
.x49{left:281.400000px;}
.x68{left:296.400000px;}
.x59{left:298.500000px;}
.x63{left:316.950000px;}
.x7{left:347.400000px;}
.x3{left:381.750000px;}
.x4{left:384.300000px;}
.x5{left:401.250000px;}
.x14{left:420.600000px;}
.x30{left:422.550000px;}
.x24{left:423.600000px;}
.x21{left:424.650000px;}
.x31{left:425.850000px;}
.x22{left:427.650000px;}
.x5e{left:429.000000px;}
.x40{left:430.350000px;}
.x3f{left:432.900000px;}
.x20{left:433.950000px;}
.x2{left:435.000000px;}
.x64{left:439.200000px;}
.x32{left:440.400000px;}
.x23{left:441.450000px;}
.x33{left:443.400000px;}
.x69{left:445.650000px;}
.x25{left:446.850000px;}
.x13{left:447.900000px;}
.x34{left:450.000000px;}
.x6a{left:453.150000px;}
.x5d{left:456.300000px;}
.x61{left:458.100000px;}
.x35{left:462.000000px;}
.x5a{left:464.850000px;}
.x41{left:471.600000px;}
.x65{left:473.700000px;}
.x5f{left:474.750000px;}
.x6{left:522.900000px;}
.x18{left:590.700000px;}
.x3a{left:591.750000px;}
.x36{left:593.700000px;}
.x4d{left:594.900000px;}
.x38{left:596.100000px;}
.x54{left:598.050000px;}
.x26{left:599.250000px;}
.x44{left:600.300000px;}
.x27{left:601.350000px;}
.x17{left:602.400000px;}
.x5b{left:604.350000px;}
.x37{left:606.150000px;}
.x4c{left:607.650000px;}
.x3b{left:608.700000px;}
.x15{left:610.050000px;}
.x45{left:611.400000px;}
.x28{left:612.600000px;}
.x42{left:614.700000px;}
.x43{left:616.350000px;}
.x29{left:617.850000px;}
.x4b{left:620.250000px;}
.x46{left:622.200000px;}
.x39{left:623.400000px;}
.x4e{left:625.800000px;}
.x19{left:627.150000px;}
.x55{left:630.150000px;}
.x16{left:633.600000px;}
.x56{left:638.400000px;}
.x47{left:644.100000px;}
.x66{left:649.050000px;}
.x57{left:656.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.202667pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws5{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-8.533333pt;}
.ws7{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:232.746667pt;}
._6{margin-left:-9.013333pt;}
._23{margin-left:-7.866667pt;}
._4{margin-left:-6.517333pt;}
._5{margin-left:-5.200000pt;}
._2{margin-left:-4.000000pt;}
._1f{margin-left:-3.024000pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._16{width:2.581333pt;}
._14{width:3.872000pt;}
._c{width:5.221333pt;}
._15{width:6.650667pt;}
._1c{width:7.733333pt;}
._11{width:8.725333pt;}
._f{width:9.680000pt;}
._d{width:10.570667pt;}
._e{width:11.584000pt;}
._13{width:12.997333pt;}
._1b{width:13.968000pt;}
._1d{width:14.954667pt;}
._b{width:15.877333pt;}
._a{width:16.960000pt;}
._1a{width:17.856000pt;}
._10{width:18.773333pt;}
._1e{width:19.733333pt;}
._24{width:21.344000pt;}
._17{width:22.586667pt;}
._18{width:23.525333pt;}
._19{width:27.045333pt;}
._7{width:28.629333pt;}
._9{width:29.642667pt;}
._12{width:30.741333pt;}
._8{width:58.138667pt;}
._22{width:104.320000pt;}
._21{width:301.013333pt;}
._20{width:359.306667pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y40{bottom:77.814667pt;}
.y60{bottom:79.681333pt;}
.ybf{bottom:114.214667pt;}
.y8b{bottom:114.614667pt;}
.ybe{bottom:129.548000pt;}
.y8a{bottom:129.948000pt;}
.y61{bottom:139.014667pt;}
.ybd{bottom:145.014667pt;}
.y89{bottom:145.414667pt;}
.yeb{bottom:148.481333pt;}
.ye1{bottom:157.548000pt;}
.ybc{bottom:160.348000pt;}
.y88{bottom:160.748000pt;}
.y5f{bottom:166.614667pt;}
.yea{bottom:169.681333pt;}
.y111{bottom:170.481333pt;}
.ybb{bottom:175.814667pt;}
.y87{bottom:184.881333pt;}
.ye0{bottom:185.148000pt;}
.ye9{bottom:190.748000pt;}
.yba{bottom:191.148000pt;}
.y110{bottom:191.548000pt;}
.y5e{bottom:194.214667pt;}
.y86{bottom:200.214667pt;}
.ye8{bottom:211.948000pt;}
.ydf{bottom:212.748000pt;}
.yb9{bottom:215.281333pt;}
.y85{bottom:215.681333pt;}
.y5d{bottom:221.814667pt;}
.yb8{bottom:230.614667pt;}
.y84{bottom:231.014667pt;}
.ye7{bottom:233.014667pt;}
.y10f{bottom:233.814667pt;}
.yde{bottom:240.348000pt;}
.yb7{bottom:246.081333pt;}
.y83{bottom:246.481333pt;}
.y5c{bottom:249.414667pt;}
.ye6{bottom:254.214667pt;}
.y10e{bottom:255.014667pt;}
.yb6{bottom:261.414667pt;}
.y82{bottom:261.814667pt;}
.ydd{bottom:267.948000pt;}
.ye5{bottom:275.281333pt;}
.y10d{bottom:276.081333pt;}
.yb5{bottom:276.881333pt;}
.y5b{bottom:277.014667pt;}
.y81{bottom:277.281333pt;}
.yb4{bottom:292.214667pt;}
.y80{bottom:292.614667pt;}
.ydc{bottom:295.548000pt;}
.ye4{bottom:296.481333pt;}
.y10c{bottom:297.281333pt;}
.y5a{bottom:304.614667pt;}
.y3f{bottom:306.348000pt;}
.yb3{bottom:307.681333pt;}
.y7f{bottom:308.081333pt;}
.ye3{bottom:317.548000pt;}
.y10b{bottom:318.348000pt;}
.yb2{bottom:323.014667pt;}
.ydb{bottom:323.148000pt;}
.y7e{bottom:323.414667pt;}
.y59{bottom:332.214667pt;}
.yb1{bottom:338.481333pt;}
.ye2{bottom:338.748000pt;}
.y7d{bottom:338.881333pt;}
.y10a{bottom:339.548000pt;}
.y3e{bottom:345.014667pt;}
.yda{bottom:350.748000pt;}
.yb0{bottom:353.814667pt;}
.y7c{bottom:354.214667pt;}
.y58{bottom:359.814667pt;}
.y109{bottom:360.614667pt;}
.y3d{bottom:364.348000pt;}
.yaf{bottom:369.281333pt;}
.y7b{bottom:369.681333pt;}
.yd9{bottom:378.348000pt;}
.y1e{bottom:379.281333pt;}
.y108{bottom:381.814667pt;}
.y3c{bottom:383.681333pt;}
.yae{bottom:384.614667pt;}
.y57{bottom:387.414667pt;}
.y1d{bottom:394.614667pt;}
.yad{bottom:400.081333pt;}
.y107{bottom:402.881333pt;}
.y3b{bottom:403.014667pt;}
.yd8{bottom:405.948000pt;}
.y1c{bottom:410.081333pt;}
.y56{bottom:415.014667pt;}
.yac{bottom:415.414667pt;}
.y7a{bottom:417.148000pt;}
.y3a{bottom:422.348000pt;}
.y106{bottom:424.081333pt;}
.y1b{bottom:425.414667pt;}
.y79{bottom:432.481333pt;}
.yd7{bottom:433.548000pt;}
.y1a{bottom:440.881333pt;}
.y39{bottom:441.681333pt;}
.y55{bottom:442.614667pt;}
.y105{bottom:445.148000pt;}
.y78{bottom:447.948000pt;}
.y19{bottom:456.214667pt;}
.y38{bottom:461.014667pt;}
.yd6{bottom:461.148000pt;}
.yab{bottom:462.881333pt;}
.y77{bottom:463.281333pt;}
.y104{bottom:466.348000pt;}
.y54{bottom:470.214667pt;}
.y18{bottom:471.681333pt;}
.yaa{bottom:478.348000pt;}
.y76{bottom:478.748000pt;}
.y37{bottom:480.348000pt;}
.y17{bottom:487.014667pt;}
.y103{bottom:487.414667pt;}
.yd5{bottom:488.748000pt;}
.ya9{bottom:493.681333pt;}
.y75{bottom:494.081333pt;}
.y53{bottom:497.814667pt;}
.y36{bottom:499.681333pt;}
.y16{bottom:502.481333pt;}
.y102{bottom:508.614667pt;}
.ya8{bottom:509.148000pt;}
.y74{bottom:509.548000pt;}
.yd4{bottom:516.348000pt;}
.y15{bottom:517.814667pt;}
.y35{bottom:519.014667pt;}
.ya7{bottom:524.481333pt;}
.y73{bottom:524.881333pt;}
.y52{bottom:525.414667pt;}
.y101{bottom:529.681333pt;}
.y14{bottom:533.281333pt;}
.y34{bottom:538.348000pt;}
.ya6{bottom:539.948000pt;}
.y72{bottom:540.348000pt;}
.y13{bottom:548.614667pt;}
.y100{bottom:550.881333pt;}
.y51{bottom:553.014667pt;}
.ya5{bottom:555.281333pt;}
.y71{bottom:555.681333pt;}
.y33{bottom:557.681333pt;}
.y12{bottom:564.081333pt;}
.yd3{bottom:569.414667pt;}
.ya4{bottom:570.748000pt;}
.yff{bottom:571.948000pt;}
.y32{bottom:577.014667pt;}
.y11{bottom:579.414667pt;}
.y50{bottom:580.614667pt;}
.ya3{bottom:586.081333pt;}
.y70{bottom:587.814667pt;}
.yfe{bottom:593.148000pt;}
.y10{bottom:594.881333pt;}
.y31{bottom:596.348000pt;}
.y6f{bottom:603.148000pt;}
.y4f{bottom:608.214667pt;}
.yf{bottom:610.214667pt;}
.yfd{bottom:614.214667pt;}
.y30{bottom:615.681333pt;}
.yd2{bottom:616.881333pt;}
.y6e{bottom:618.614667pt;}
.ya2{bottom:625.548000pt;}
.yd1{bottom:632.348000pt;}
.y6d{bottom:633.948000pt;}
.y2f{bottom:635.014667pt;}
.yfc{bottom:635.414667pt;}
.y4e{bottom:635.814667pt;}
.ya1{bottom:641.014667pt;}
.ye{bottom:643.814667pt;}
.yd0{bottom:647.681333pt;}
.y6c{bottom:649.414667pt;}
.y2e{bottom:654.348000pt;}
.ya0{bottom:656.348000pt;}
.yfb{bottom:656.481333pt;}
.yd{bottom:659.281333pt;}
.ycf{bottom:663.148000pt;}
.y4d{bottom:663.414667pt;}
.y6b{bottom:664.748000pt;}
.y9f{bottom:671.814667pt;}
.y2d{bottom:673.681333pt;}
.yfa{bottom:677.681333pt;}
.yce{bottom:678.481333pt;}
.y6a{bottom:680.214667pt;}
.y9e{bottom:687.148000pt;}
.yc{bottom:690.081333pt;}
.y4c{bottom:691.014667pt;}
.y2c{bottom:693.014667pt;}
.ycd{bottom:693.948000pt;}
.y69{bottom:695.548000pt;}
.yf9{bottom:698.748000pt;}
.y9d{bottom:702.614667pt;}
.ycc{bottom:709.281333pt;}
.y2b{bottom:712.348000pt;}
.y9c{bottom:717.948000pt;}
.y4b{bottom:718.614667pt;}
.yf8{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.ycb{bottom:724.748000pt;}
.y2a{bottom:731.681333pt;}
.y9b{bottom:733.414667pt;}
.ya{bottom:736.214667pt;}
.yca{bottom:740.081333pt;}
.yf7{bottom:741.014667pt;}
.y68{bottom:743.014667pt;}
.y4a{bottom:746.214667pt;}
.y9a{bottom:748.748000pt;}
.y29{bottom:751.014667pt;}
.yc9{bottom:755.548000pt;}
.y67{bottom:758.481333pt;}
.yf6{bottom:762.214667pt;}
.y99{bottom:764.214667pt;}
.y9{bottom:766.881333pt;}
.y28{bottom:770.348000pt;}
.yc8{bottom:770.881333pt;}
.y49{bottom:773.814667pt;}
.y98{bottom:779.548000pt;}
.y8{bottom:782.214667pt;}
.yf5{bottom:783.281333pt;}
.yc7{bottom:786.348000pt;}
.y66{bottom:789.281333pt;}
.y97{bottom:795.014667pt;}
.y27{bottom:796.614667pt;}
.y7{bottom:797.681333pt;}
.y48{bottom:801.414667pt;}
.yf4{bottom:804.481333pt;}
.y65{bottom:804.614667pt;}
.yf3{bottom:825.548000pt;}
.y26{bottom:826.081333pt;}
.y6{bottom:828.348000pt;}
.y64{bottom:828.748000pt;}
.y47{bottom:829.014667pt;}
.yc6{bottom:833.814667pt;}
.y25{bottom:841.548000pt;}
.y96{bottom:842.481333pt;}
.y5{bottom:843.814667pt;}
.yf2{bottom:846.748000pt;}
.yc5{bottom:849.148000pt;}
.y46{bottom:856.614667pt;}
.y95{bottom:857.814667pt;}
.y24{bottom:859.681333pt;}
.yc4{bottom:864.614667pt;}
.yf1{bottom:867.814667pt;}
.y94{bottom:873.281333pt;}
.y63{bottom:875.814667pt;}
.yc3{bottom:879.948000pt;}
.y45{bottom:884.214667pt;}
.y93{bottom:888.614667pt;}
.yf0{bottom:889.014667pt;}
.y23{bottom:889.148000pt;}
.yc2{bottom:895.414667pt;}
.y62{bottom:898.881333pt;}
.y92{bottom:904.081333pt;}
.y22{bottom:909.014667pt;}
.yef{bottom:910.081333pt;}
.yc1{bottom:910.748000pt;}
.y44{bottom:911.814667pt;}
.y91{bottom:919.414667pt;}
.yc0{bottom:926.214667pt;}
.y21{bottom:929.014667pt;}
.yee{bottom:931.281333pt;}
.y90{bottom:934.881333pt;}
.y43{bottom:939.414667pt;}
.y20{bottom:948.881333pt;}
.y8f{bottom:950.214667pt;}
.yed{bottom:952.348000pt;}
.y8e{bottom:965.681333pt;}
.y42{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.yec{bottom:973.548000pt;}
.y8d{bottom:981.014667pt;}
.y41{bottom:994.614667pt;}
.y8c{bottom:996.481333pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.h5{height:31.083333pt;}
.h4{height:36.645833pt;}
.h7{height:38.854167pt;}
.h8{height:46.796875pt;}
.h6{height:47.369792pt;}
.hc{height:50.388021pt;}
.ha{height:52.883333pt;}
.h3{height:54.968750pt;}
.hd{height:56.156250pt;}
.hb{height:56.843750pt;}
.h9{height:61.580729pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x9{left:77.600000pt;}
.x48{left:81.066667pt;}
.xe{left:82.400000pt;}
.x3c{left:83.733333pt;}
.x1a{left:85.466667pt;}
.x4f{left:86.666667pt;}
.xd{left:88.533333pt;}
.x2b{left:89.733333pt;}
.x2c{left:92.533333pt;}
.x5c{left:93.733333pt;}
.x1b{left:96.133333pt;}
.x60{left:97.733333pt;}
.x67{left:98.933333pt;}
.x50{left:100.400000pt;}
.x2a{left:103.466667pt;}
.xc{left:105.200000pt;}
.x62{left:110.000000pt;}
.xb{left:112.533333pt;}
.x8{left:122.933333pt;}
.xa{left:124.000000pt;}
.x51{left:137.466667pt;}
.x1c{left:218.400000pt;}
.xf{left:220.933333pt;}
.x12{left:222.533333pt;}
.x53{left:224.933333pt;}
.x1d{left:226.000000pt;}
.x3d{left:227.733333pt;}
.x58{left:228.800000pt;}
.x4a{left:229.866667pt;}
.x52{left:232.266667pt;}
.x1e{left:233.866667pt;}
.x2f{left:236.266667pt;}
.x1f{left:238.000000pt;}
.x2e{left:239.733333pt;}
.x2d{left:241.733333pt;}
.x10{left:245.066667pt;}
.x3e{left:246.533333pt;}
.x11{left:247.866667pt;}
.x49{left:250.133333pt;}
.x68{left:263.466667pt;}
.x59{left:265.333333pt;}
.x63{left:281.733333pt;}
.x7{left:308.800000pt;}
.x3{left:339.333333pt;}
.x4{left:341.600000pt;}
.x5{left:356.666667pt;}
.x14{left:373.866667pt;}
.x30{left:375.600000pt;}
.x24{left:376.533333pt;}
.x21{left:377.466667pt;}
.x31{left:378.533333pt;}
.x22{left:380.133333pt;}
.x5e{left:381.333333pt;}
.x40{left:382.533333pt;}
.x3f{left:384.800000pt;}
.x20{left:385.733333pt;}
.x2{left:386.666667pt;}
.x64{left:390.400000pt;}
.x32{left:391.466667pt;}
.x23{left:392.400000pt;}
.x33{left:394.133333pt;}
.x69{left:396.133333pt;}
.x25{left:397.200000pt;}
.x13{left:398.133333pt;}
.x34{left:400.000000pt;}
.x6a{left:402.800000pt;}
.x5d{left:405.600000pt;}
.x61{left:407.200000pt;}
.x35{left:410.666667pt;}
.x5a{left:413.200000pt;}
.x41{left:419.200000pt;}
.x65{left:421.066667pt;}
.x5f{left:422.000000pt;}
.x6{left:464.800000pt;}
.x18{left:525.066667pt;}
.x3a{left:526.000000pt;}
.x36{left:527.733333pt;}
.x4d{left:528.800000pt;}
.x38{left:529.866667pt;}
.x54{left:531.600000pt;}
.x26{left:532.666667pt;}
.x44{left:533.600000pt;}
.x27{left:534.533333pt;}
.x17{left:535.466667pt;}
.x5b{left:537.200000pt;}
.x37{left:538.800000pt;}
.x4c{left:540.133333pt;}
.x3b{left:541.066667pt;}
.x15{left:542.266667pt;}
.x45{left:543.466667pt;}
.x28{left:544.533333pt;}
.x42{left:546.400000pt;}
.x43{left:547.866667pt;}
.x29{left:549.200000pt;}
.x4b{left:551.333333pt;}
.x46{left:553.066667pt;}
.x39{left:554.133333pt;}
.x4e{left:556.266667pt;}
.x19{left:557.466667pt;}
.x55{left:560.133333pt;}
.x16{left:563.200000pt;}
.x56{left:567.466667pt;}
.x47{left:572.533333pt;}
.x66{left:576.933333pt;}
.x57{left:583.200000pt;}
}




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