
    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_aea509eab64a88ae148d0754.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_1ead0d468fa872ecee7f71e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_7e4e10028bd34d9e15050152.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_7db6415f5a60aa43365bc5b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_2dc03b5c358058c58c69a482.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.603000;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_e8782aed6ca44a4e632f409c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688000;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_703027c1ef690539747a31ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.429000;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_4a1a1cd8859bb11b53c9e2d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_b054ef112b6ef007c9eaa160.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_7c3c0e0abdb35f542e240cd0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.691000;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_a560543d3e6b4b53cab2abb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.684000;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:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.586000px;}
.v2{vertical-align:21.690000px;}
.lsb{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000190px;}
.lsf{letter-spacing:0.005216px;}
.ls15{letter-spacing:0.008369px;}
.ls14{letter-spacing:0.009733px;}
.ls13{letter-spacing:0.025291px;}
.lsc{letter-spacing:0.025345px;}
.lsa{letter-spacing:1.661781px;}
.ls2{letter-spacing:2.486671px;}
.ls1{letter-spacing:2.964877px;}
.ls10{letter-spacing:2.987251px;}
.ls3{letter-spacing:2.988780px;}
.ls6{letter-spacing:4.491008px;}
.ls9{letter-spacing:8.304065px;}
.ls0{letter-spacing:15.978125px;}
.ls8{letter-spacing:16.617617px;}
.ls11{letter-spacing:20.921460px;}
.ls7{letter-spacing:21.099008px;}
.ls16{letter-spacing:25.643732px;}
.ls17{letter-spacing:35.566482px;}
.ls4{letter-spacing:35.865360px;}
.lse{letter-spacing:37.446648px;}
.lsd{letter-spacing:37.451251px;}
.ls12{letter-spacing:38.854140px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws19{word-spacing:-14.920027px;}
.ws2b{word-spacing:-11.955150px;}
.ws8a{word-spacing:-0.860771px;}
.ws29{word-spacing:-0.478205px;}
.ws1f{word-spacing:-0.298878px;}
.ws10{word-spacing:-0.215194px;}
.ws3a{word-spacing:-0.179327px;}
.ws63{word-spacing:-0.119551px;}
.ws4b{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws82{word-spacing:-0.047821px;}
.ws4c{word-spacing:-0.041843px;}
.ws4d{word-spacing:0.000000px;}
.ws64{word-spacing:0.119551px;}
.ws66{word-spacing:0.179327px;}
.ws58{word-spacing:1.075961px;}
.ws72{word-spacing:1.255288px;}
.ws4a{word-spacing:1.434614px;}
.ws2f{word-spacing:1.733492px;}
.ws3f{word-spacing:1.793268px;}
.ws89{word-spacing:1.817183px;}
.ws28{word-spacing:2.630126px;}
.ws13{word-spacing:2.958912px;}
.ws67{word-spacing:2.964877px;}
.ws54{word-spacing:2.988780px;}
.wsf{word-spacing:3.281702px;}
.ws57{word-spacing:3.526760px;}
.ws56{word-spacing:3.586536px;}
.ws1e{word-spacing:4.004965px;}
.ws32{word-spacing:4.064741px;}
.ws84{word-spacing:4.160392px;}
.ws25{word-spacing:4.184292px;}
.ws86{word-spacing:4.208213px;}
.ws5d{word-spacing:4.244068px;}
.ws87{word-spacing:4.303854px;}
.ws24{word-spacing:4.662497px;}
.ws3b{word-spacing:4.722272px;}
.ws68{word-spacing:4.782060px;}
.ws53{word-spacing:4.901599px;}
.ws59{word-spacing:5.439580px;}
.ws5a{word-spacing:5.499355px;}
.ws6a{word-spacing:5.618906px;}
.ws3c{word-spacing:5.798233px;}
.ws41{word-spacing:5.858009px;}
.ws2a{word-spacing:5.917754px;}
.ws21{word-spacing:5.977560px;}
.ws51{word-spacing:6.037336px;}
.ws6{word-spacing:6.133018px;}
.ws49{word-spacing:6.156887px;}
.ws6e{word-spacing:6.395989px;}
.ws52{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws14{word-spacing:6.724800px;}
.ws47{word-spacing:6.993745px;}
.ws11{word-spacing:7.101389px;}
.ws6f{word-spacing:7.531726px;}
.ws1c{word-spacing:8.069706px;}
.ws48{word-spacing:8.129482px;}
.ws7f{word-spacing:8.416426px;}
.ws83{word-spacing:8.655529px;}
.ws46{word-spacing:8.667462px;}
.ws20{word-spacing:8.787013px;}
.ws65{word-spacing:8.846789px;}
.ws42{word-spacing:9.085891px;}
.ws6d{word-spacing:9.384769px;}
.wsc{word-spacing:9.683712px;}
.ws30{word-spacing:9.803198px;}
.ws4f{word-spacing:10.580281px;}
.ws71{word-spacing:10.879159px;}
.ws74{word-spacing:10.998710px;}
.ws8b{word-spacing:11.094379px;}
.ws44{word-spacing:11.178037px;}
.ws31{word-spacing:11.297588px;}
.wsb{word-spacing:11.351462px;}
.ws7c{word-spacing:11.381303px;}
.ws5{word-spacing:11.512858px;}
.wsd{word-spacing:11.620454px;}
.ws61{word-spacing:11.716018px;}
.ws80{word-spacing:11.763868px;}
.ws6b{word-spacing:11.775793px;}
.ws2c{word-spacing:11.895344px;}
.ws40{word-spacing:11.955120px;}
.ws23{word-spacing:12.074671px;}
.ws5f{word-spacing:12.552876px;}
.ws60{word-spacing:12.612652px;}
.ws7a{word-spacing:12.672459px;}
.ws73{word-spacing:12.911530px;}
.ws9{word-spacing:13.180608px;}
.ws45{word-spacing:13.210408px;}
.ws39{word-spacing:13.569061px;}
.ws7b{word-spacing:13.867974px;}
.ws0{word-spacing:14.346180px;}
.ws38{word-spacing:14.585246px;}
.ws7e{word-spacing:14.776565px;}
.ws55{word-spacing:14.824349px;}
.ws27{word-spacing:14.884124px;}
.wse{word-spacing:14.902157px;}
.ws1b{word-spacing:14.943900px;}
.ws34{word-spacing:15.481880px;}
.ws17{word-spacing:15.493939px;}
.ws62{word-spacing:15.900310px;}
.ws79{word-spacing:15.960085px;}
.ws85{word-spacing:16.067722px;}
.ws76{word-spacing:16.199188px;}
.ws22{word-spacing:16.258963px;}
.ws75{word-spacing:16.318739px;}
.ws5c{word-spacing:16.557841px;}
.ws3e{word-spacing:16.677392px;}
.ws88{word-spacing:16.689389px;}
.ws36{word-spacing:16.796944px;}
.ws37{word-spacing:16.916495px;}
.ws2d{word-spacing:17.693578px;}
.ws18{word-spacing:17.932680px;}
.ws1d{word-spacing:18.410885px;}
.ws33{word-spacing:19.427070px;}
.ws4e{word-spacing:19.486846px;}
.ws6c{word-spacing:19.965050px;}
.ws78{word-spacing:20.204153px;}
.ws12{word-spacing:20.497190px;}
.ws43{word-spacing:20.503031px;}
.ws3d{word-spacing:20.682358px;}
.ws5b{word-spacing:20.840123px;}
.ws2{word-spacing:20.861684px;}
.ws8{word-spacing:21.088973px;}
.wsa{word-spacing:21.304166px;}
.ws7{word-spacing:22.433933px;}
.ws2e{word-spacing:22.953830px;}
.ws7d{word-spacing:23.288632px;}
.ws1a{word-spacing:23.491811px;}
.ws81{word-spacing:23.671197px;}
.ws5e{word-spacing:23.910240px;}
.ws69{word-spacing:24.089567px;}
.ws35{word-spacing:24.507996px;}
.ws26{word-spacing:24.926425px;}
.ws70{word-spacing:28.094532px;}
.ws50{word-spacing:28.725621px;}
.ws16{word-spacing:30.665088px;}
.ws77{word-spacing:31.143088px;}
.ws15{word-spacing:44.060890px;}
._f{margin-left:-34.550297px;}
._0{margin-left:-5.738472px;}
._b{margin-left:-4.602736px;}
._2{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._4{margin-left:-1.075968px;}
._d{width:1.075961px;}
._6{width:2.988780px;}
._e{width:8.308808px;}
._5{width:15.709133px;}
._3{width:18.560448px;}
._9{width:20.682372px;}
._c{width:22.415850px;}
._a{width:26.540381px;}
._8{width:29.887800px;}
._10{width:32.757029px;}
._11{width:34.131868px;}
._7{width:38.854140px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y56{bottom:104.367000px;}
.y55{bottom:108.045000px;}
.y30{bottom:113.332500px;}
.y52{bottom:118.294500px;}
.y57{bottom:118.296000px;}
.y54{bottom:124.710000px;}
.y53{bottom:128.404500px;}
.y2f{bottom:131.265000px;}
.y79{bottom:133.179000px;}
.y51{bottom:145.450500px;}
.y78{bottom:146.629500px;}
.y2e{bottom:155.124000px;}
.y50{bottom:163.383000px;}
.y2d{bottom:179.853000px;}
.y4f{bottom:181.315500px;}
.y4e{bottom:199.248000px;}
.y2c{bottom:210.832500px;}
.y4d{bottom:217.180500px;}
.y2b{bottom:228.765000px;}
.y4c{bottom:239.356500px;}
.y2a{bottom:246.697500px;}
.y4b{bottom:257.289000px;}
.y29{bottom:264.630000px;}
.y4a{bottom:275.221500px;}
.y28{bottom:282.564000px;}
.y49{bottom:299.940000px;}
.y27{bottom:300.844500px;}
.y26{bottom:318.777000px;}
.y48{bottom:333.009000px;}
.y25{bottom:336.709500px;}
.y47{bottom:350.941500px;}
.y24{bottom:354.642000px;}
.y46{bottom:368.874000px;}
.y23{bottom:372.576000px;}
.y45{bottom:386.806500px;}
.ya2{bottom:387.480000px;}
.y22{bottom:390.508500px;}
.ya1{bottom:400.930500px;}
.y21{bottom:408.789000px;}
.y44{bottom:413.010000px;}
.ya0{bottom:414.379500px;}
.y20{bottom:426.721500px;}
.y9f{bottom:427.828500px;}
.y9e{bottom:441.279000px;}
.y1f{bottom:444.654000px;}
.y43{bottom:446.079000px;}
.y9d{bottom:454.728000px;}
.y77{bottom:460.854000px;}
.y1e{bottom:462.586500px;}
.y42{bottom:464.011500px;}
.y9c{bottom:468.177000px;}
.y76{bottom:478.786500px;}
.y1d{bottom:480.520500px;}
.y9b{bottom:481.627500px;}
.y41{bottom:481.944000px;}
.y9a{bottom:495.076500px;}
.y75{bottom:496.719000px;}
.y1c{bottom:498.453000px;}
.y40{bottom:506.662500px;}
.y99{bottom:508.527000px;}
.y74{bottom:514.653000px;}
.y1b{bottom:516.385500px;}
.y98{bottom:521.976000px;}
.y73{bottom:532.585500px;}
.y1a{bottom:534.318000px;}
.y97{bottom:535.425000px;}
.y3f{bottom:539.730000px;}
.y96{bottom:548.875500px;}
.y72{bottom:550.518000px;}
.y3e{bottom:557.662500px;}
.y19{bottom:559.047000px;}
.y95{bottom:562.324500px;}
.y71{bottom:568.450500px;}
.y3d{bottom:575.596500px;}
.y94{bottom:575.773500px;}
.y70{bottom:586.383000px;}
.y93{bottom:589.224000px;}
.y3c{bottom:593.529000px;}
.y92{bottom:602.673000px;}
.y6f{bottom:605.526000px;}
.y18{bottom:609.124500px;}
.y3b{bottom:611.461500px;}
.y6e{bottom:623.458500px;}
.y17{bottom:624.069000px;}
.y91{bottom:624.865500px;}
.y3a{bottom:629.394000px;}
.y16{bottom:639.360000px;}
.y6d{bottom:641.391000px;}
.y39{bottom:647.326500px;}
.y90{bottom:652.885500px;}
.y15{bottom:654.304500px;}
.y6c{bottom:659.323500px;}
.y38{bottom:665.260500px;}
.y14{bottom:669.249000px;}
.y8f{bottom:670.818000px;}
.y37{bottom:683.193000px;}
.y13{bottom:684.192000px;}
.y6b{bottom:686.196000px;}
.y8e{bottom:688.750500px;}
.y12{bottom:699.136500px;}
.y36{bottom:701.125500px;}
.y8d{bottom:706.683000px;}
.y11{bottom:714.079500px;}
.y6a{bottom:716.091000px;}
.y8c{bottom:724.615500px;}
.y35{bottom:725.844000px;}
.y10{bottom:729.024000px;}
.y8b{bottom:742.548000px;}
.yf{bottom:743.968500px;}
.y69{bottom:754.389000px;}
.ye{bottom:758.911500px;}
.y8a{bottom:760.482000px;}
.y68{bottom:772.323000px;}
.yd{bottom:773.856000px;}
.y34{bottom:776.844000px;}
.y89{bottom:778.414500px;}
.yc{bottom:788.800500px;}
.y67{bottom:790.255500px;}
.y33{bottom:794.778000px;}
.y88{bottom:796.347000px;}
.yb{bottom:803.743500px;}
.y66{bottom:808.188000px;}
.y32{bottom:812.710500px;}
.ya{bottom:818.688000px;}
.y87{bottom:818.986500px;}
.y31{bottom:830.643000px;}
.y65{bottom:831.661500px;}
.y9{bottom:833.632500px;}
.y86{bottom:847.006500px;}
.y8{bottom:848.575500px;}
.y64{bottom:849.595500px;}
.y85{bottom:864.939000px;}
.y63{bottom:867.528000px;}
.y84{bottom:882.873000px;}
.y62{bottom:885.460500px;}
.y7{bottom:894.691500px;}
.y83{bottom:900.805500px;}
.y61{bottom:908.934000px;}
.y6{bottom:913.185000px;}
.y82{bottom:918.738000px;}
.y60{bottom:926.868000px;}
.y5{bottom:931.677000px;}
.y81{bottom:941.377500px;}
.y4{bottom:950.392500px;}
.y5f{bottom:953.739000px;}
.y80{bottom:969.397500px;}
.y7f{bottom:987.330000px;}
.y5e{bottom:992.038500px;}
.y3{bottom:997.465500px;}
.y7e{bottom:1005.264000px;}
.y5d{bottom:1009.971000px;}
.y7d{bottom:1023.196500px;}
.y5c{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.y7c{bottom:1041.129000px;}
.y5b{bottom:1045.836000px;}
.y7b{bottom:1059.061500px;}
.y5a{bottom:1063.768500px;}
.y7a{bottom:1076.994000px;}
.y1{bottom:1081.152000px;}
.y59{bottom:1081.701000px;}
.y58{bottom:1099.635000px;}
.ha{height:29.038903px;}
.hc{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h7{height:41.484266px;}
.h8{height:44.831700px;}
.h2{height:45.238339px;}
.hb{height:49.624903px;}
.h9{height:50.728903px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:73.446000px;}
.x3{left:88.762500px;}
.x14{left:103.479000px;}
.x1{left:106.929000px;}
.x2{left:129.093000px;}
.xa{left:197.317500px;}
.x9{left:203.428500px;}
.x15{left:219.531000px;}
.x7{left:344.187000px;}
.x5{left:383.025000px;}
.x4{left:386.935500px;}
.x6{left:441.030000px;}
.xb{left:467.967000px;}
.x18{left:473.944500px;}
.xc{left:482.910000px;}
.x19{left:495.355500px;}
.xe{left:498.000000px;}
.xd{left:590.202000px;}
.x16{left:602.641500px;}
.x17{left:614.418000px;}
.xf{left:623.695500px;}
.x10{left:688.626000px;}
.x11{left:698.220000px;}
.x12{left:700.440000px;}
.x13{left:827.130000px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.298667pt;}
.v2{vertical-align:19.280000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000169pt;}
.lsf{letter-spacing:0.004636pt;}
.ls15{letter-spacing:0.007439pt;}
.ls14{letter-spacing:0.008652pt;}
.ls13{letter-spacing:0.022481pt;}
.lsc{letter-spacing:0.022529pt;}
.lsa{letter-spacing:1.477138pt;}
.ls2{letter-spacing:2.210374pt;}
.ls1{letter-spacing:2.635446pt;}
.ls10{letter-spacing:2.655334pt;}
.ls3{letter-spacing:2.656693pt;}
.ls6{letter-spacing:3.992007pt;}
.ls9{letter-spacing:7.381391pt;}
.ls0{letter-spacing:14.202778pt;}
.ls8{letter-spacing:14.771215pt;}
.ls11{letter-spacing:18.596853pt;}
.ls7{letter-spacing:18.754673pt;}
.ls16{letter-spacing:22.794429pt;}
.ls17{letter-spacing:31.614651pt;}
.ls4{letter-spacing:31.880320pt;}
.lse{letter-spacing:33.285909pt;}
.lsd{letter-spacing:33.290001pt;}
.ls12{letter-spacing:34.537013pt;}
.ws3{word-spacing:-13.283467pt;}
.ws19{word-spacing:-13.262246pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws8a{word-spacing:-0.765130pt;}
.ws29{word-spacing:-0.425071pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws10{word-spacing:-0.191283pt;}
.ws3a{word-spacing:-0.159402pt;}
.ws63{word-spacing:-0.106268pt;}
.ws4b{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws82{word-spacing:-0.042507pt;}
.ws4c{word-spacing:-0.037194pt;}
.ws4d{word-spacing:0.000000pt;}
.ws64{word-spacing:0.106268pt;}
.ws66{word-spacing:0.159402pt;}
.ws58{word-spacing:0.956410pt;}
.ws72{word-spacing:1.115811pt;}
.ws4a{word-spacing:1.275213pt;}
.ws2f{word-spacing:1.540882pt;}
.ws3f{word-spacing:1.594016pt;}
.ws89{word-spacing:1.615274pt;}
.ws28{word-spacing:2.337890pt;}
.ws13{word-spacing:2.630144pt;}
.ws67{word-spacing:2.635446pt;}
.ws54{word-spacing:2.656693pt;}
.wsf{word-spacing:2.917069pt;}
.ws57{word-spacing:3.134898pt;}
.ws56{word-spacing:3.188032pt;}
.ws1e{word-spacing:3.559969pt;}
.ws32{word-spacing:3.613103pt;}
.ws84{word-spacing:3.698126pt;}
.ws25{word-spacing:3.719371pt;}
.ws86{word-spacing:3.740634pt;}
.ws5d{word-spacing:3.772505pt;}
.ws87{word-spacing:3.825648pt;}
.ws24{word-spacing:4.144442pt;}
.ws3b{word-spacing:4.197575pt;}
.ws68{word-spacing:4.250720pt;}
.ws53{word-spacing:4.356977pt;}
.ws59{word-spacing:4.835182pt;}
.ws5a{word-spacing:4.888316pt;}
.ws6a{word-spacing:4.994583pt;}
.ws3c{word-spacing:5.153985pt;}
.ws41{word-spacing:5.207119pt;}
.ws2a{word-spacing:5.260226pt;}
.ws21{word-spacing:5.313387pt;}
.ws51{word-spacing:5.366521pt;}
.ws6{word-spacing:5.451571pt;}
.ws49{word-spacing:5.472788pt;}
.ws6e{word-spacing:5.685324pt;}
.ws52{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws14{word-spacing:5.977600pt;}
.ws47{word-spacing:6.216662pt;}
.ws11{word-spacing:6.312346pt;}
.ws6f{word-spacing:6.694867pt;}
.ws1c{word-spacing:7.173072pt;}
.ws48{word-spacing:7.226206pt;}
.ws7f{word-spacing:7.481267pt;}
.ws83{word-spacing:7.693803pt;}
.ws46{word-spacing:7.704411pt;}
.ws20{word-spacing:7.810678pt;}
.ws65{word-spacing:7.863812pt;}
.ws42{word-spacing:8.076348pt;}
.ws6d{word-spacing:8.342017pt;}
.wsc{word-spacing:8.607744pt;}
.ws30{word-spacing:8.713954pt;}
.ws4f{word-spacing:9.404694pt;}
.ws71{word-spacing:9.670364pt;}
.ws74{word-spacing:9.776631pt;}
.ws8b{word-spacing:9.861670pt;}
.ws44{word-spacing:9.936033pt;}
.ws31{word-spacing:10.042301pt;}
.wsb{word-spacing:10.090189pt;}
.ws7c{word-spacing:10.116714pt;}
.ws5{word-spacing:10.233651pt;}
.wsd{word-spacing:10.329293pt;}
.ws61{word-spacing:10.414238pt;}
.ws80{word-spacing:10.456771pt;}
.ws6b{word-spacing:10.467372pt;}
.ws2c{word-spacing:10.573639pt;}
.ws40{word-spacing:10.626773pt;}
.ws23{word-spacing:10.733041pt;}
.ws5f{word-spacing:11.158112pt;}
.ws60{word-spacing:11.211246pt;}
.ws7a{word-spacing:11.264408pt;}
.ws73{word-spacing:11.476915pt;}
.ws9{word-spacing:11.716096pt;}
.ws45{word-spacing:11.742585pt;}
.ws39{word-spacing:12.061388pt;}
.ws7b{word-spacing:12.327088pt;}
.ws0{word-spacing:12.752160pt;}
.ws38{word-spacing:12.964663pt;}
.ws7e{word-spacing:13.134725pt;}
.ws55{word-spacing:13.177199pt;}
.ws27{word-spacing:13.230333pt;}
.wse{word-spacing:13.246362pt;}
.ws1b{word-spacing:13.283467pt;}
.ws34{word-spacing:13.761671pt;}
.ws17{word-spacing:13.772390pt;}
.ws62{word-spacing:14.133609pt;}
.ws79{word-spacing:14.186742pt;}
.ws85{word-spacing:14.282419pt;}
.ws76{word-spacing:14.399278pt;}
.ws22{word-spacing:14.452412pt;}
.ws75{word-spacing:14.505546pt;}
.ws5c{word-spacing:14.718081pt;}
.ws3e{word-spacing:14.824349pt;}
.ws88{word-spacing:14.835013pt;}
.ws36{word-spacing:14.930617pt;}
.ws37{word-spacing:15.036884pt;}
.ws2d{word-spacing:15.727625pt;}
.ws18{word-spacing:15.940160pt;}
.ws1d{word-spacing:16.365231pt;}
.ws33{word-spacing:17.268507pt;}
.ws4e{word-spacing:17.321641pt;}
.ws6c{word-spacing:17.746711pt;}
.ws78{word-spacing:17.959247pt;}
.ws12{word-spacing:18.219725pt;}
.ws43{word-spacing:18.224916pt;}
.ws3d{word-spacing:18.384318pt;}
.ws5b{word-spacing:18.524553pt;}
.ws2{word-spacing:18.543719pt;}
.ws8{word-spacing:18.745754pt;}
.wsa{word-spacing:18.937037pt;}
.ws7{word-spacing:19.941274pt;}
.ws2e{word-spacing:20.403405pt;}
.ws7d{word-spacing:20.701006pt;}
.ws1a{word-spacing:20.881610pt;}
.ws81{word-spacing:21.041064pt;}
.ws5e{word-spacing:21.253547pt;}
.ws69{word-spacing:21.412948pt;}
.ws35{word-spacing:21.784885pt;}
.ws26{word-spacing:22.156822pt;}
.ws70{word-spacing:24.972917pt;}
.ws50{word-spacing:25.533885pt;}
.ws16{word-spacing:27.257856pt;}
.ws77{word-spacing:27.682745pt;}
.ws15{word-spacing:39.165235pt;}
._f{margin-left:-30.711375pt;}
._0{margin-left:-5.100864pt;}
._b{margin-left:-4.091321pt;}
._2{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._4{margin-left:-0.956416pt;}
._d{width:0.956410pt;}
._6{width:2.656693pt;}
._e{width:7.385607pt;}
._5{width:13.963674pt;}
._3{width:16.498176pt;}
._9{width:18.384331pt;}
._c{width:19.925200pt;}
._a{width:23.591450pt;}
._8{width:26.566933pt;}
._10{width:29.117359pt;}
._11{width:30.339438pt;}
._7{width:34.537013pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:92.770667pt;}
.y55{bottom:96.040000pt;}
.y30{bottom:100.740000pt;}
.y52{bottom:105.150667pt;}
.y57{bottom:105.152000pt;}
.y54{bottom:110.853333pt;}
.y53{bottom:114.137333pt;}
.y2f{bottom:116.680000pt;}
.y79{bottom:118.381333pt;}
.y51{bottom:129.289333pt;}
.y78{bottom:130.337333pt;}
.y2e{bottom:137.888000pt;}
.y50{bottom:145.229333pt;}
.y2d{bottom:159.869333pt;}
.y4f{bottom:161.169333pt;}
.y4e{bottom:177.109333pt;}
.y2c{bottom:187.406667pt;}
.y4d{bottom:193.049333pt;}
.y2b{bottom:203.346667pt;}
.y4c{bottom:212.761333pt;}
.y2a{bottom:219.286667pt;}
.y4b{bottom:228.701333pt;}
.y29{bottom:235.226667pt;}
.y4a{bottom:244.641333pt;}
.y28{bottom:251.168000pt;}
.y49{bottom:266.613333pt;}
.y27{bottom:267.417333pt;}
.y26{bottom:283.357333pt;}
.y48{bottom:296.008000pt;}
.y25{bottom:299.297333pt;}
.y47{bottom:311.948000pt;}
.y24{bottom:315.237333pt;}
.y46{bottom:327.888000pt;}
.y23{bottom:331.178667pt;}
.y45{bottom:343.828000pt;}
.ya2{bottom:344.426667pt;}
.y22{bottom:347.118667pt;}
.ya1{bottom:356.382667pt;}
.y21{bottom:363.368000pt;}
.y44{bottom:367.120000pt;}
.ya0{bottom:368.337333pt;}
.y20{bottom:379.308000pt;}
.y9f{bottom:380.292000pt;}
.y9e{bottom:392.248000pt;}
.y1f{bottom:395.248000pt;}
.y43{bottom:396.514667pt;}
.y9d{bottom:404.202667pt;}
.y77{bottom:409.648000pt;}
.y1e{bottom:411.188000pt;}
.y42{bottom:412.454667pt;}
.y9c{bottom:416.157333pt;}
.y76{bottom:425.588000pt;}
.y1d{bottom:427.129333pt;}
.y9b{bottom:428.113333pt;}
.y41{bottom:428.394667pt;}
.y9a{bottom:440.068000pt;}
.y75{bottom:441.528000pt;}
.y1c{bottom:443.069333pt;}
.y40{bottom:450.366667pt;}
.y99{bottom:452.024000pt;}
.y74{bottom:457.469333pt;}
.y1b{bottom:459.009333pt;}
.y98{bottom:463.978667pt;}
.y73{bottom:473.409333pt;}
.y1a{bottom:474.949333pt;}
.y97{bottom:475.933333pt;}
.y3f{bottom:479.760000pt;}
.y96{bottom:487.889333pt;}
.y72{bottom:489.349333pt;}
.y3e{bottom:495.700000pt;}
.y19{bottom:496.930667pt;}
.y95{bottom:499.844000pt;}
.y71{bottom:505.289333pt;}
.y3d{bottom:511.641333pt;}
.y94{bottom:511.798667pt;}
.y70{bottom:521.229333pt;}
.y93{bottom:523.754667pt;}
.y3c{bottom:527.581333pt;}
.y92{bottom:535.709333pt;}
.y6f{bottom:538.245333pt;}
.y18{bottom:541.444000pt;}
.y3b{bottom:543.521333pt;}
.y6e{bottom:554.185333pt;}
.y17{bottom:554.728000pt;}
.y91{bottom:555.436000pt;}
.y3a{bottom:559.461333pt;}
.y16{bottom:568.320000pt;}
.y6d{bottom:570.125333pt;}
.y39{bottom:575.401333pt;}
.y90{bottom:580.342667pt;}
.y15{bottom:581.604000pt;}
.y6c{bottom:586.065333pt;}
.y38{bottom:591.342667pt;}
.y14{bottom:594.888000pt;}
.y8f{bottom:596.282667pt;}
.y37{bottom:607.282667pt;}
.y13{bottom:608.170667pt;}
.y6b{bottom:609.952000pt;}
.y8e{bottom:612.222667pt;}
.y12{bottom:621.454667pt;}
.y36{bottom:623.222667pt;}
.y8d{bottom:628.162667pt;}
.y11{bottom:634.737333pt;}
.y6a{bottom:636.525333pt;}
.y8c{bottom:644.102667pt;}
.y35{bottom:645.194667pt;}
.y10{bottom:648.021333pt;}
.y8b{bottom:660.042667pt;}
.yf{bottom:661.305333pt;}
.y69{bottom:670.568000pt;}
.ye{bottom:674.588000pt;}
.y8a{bottom:675.984000pt;}
.y68{bottom:686.509333pt;}
.yd{bottom:687.872000pt;}
.y34{bottom:690.528000pt;}
.y89{bottom:691.924000pt;}
.yc{bottom:701.156000pt;}
.y67{bottom:702.449333pt;}
.y33{bottom:706.469333pt;}
.y88{bottom:707.864000pt;}
.yb{bottom:714.438667pt;}
.y66{bottom:718.389333pt;}
.y32{bottom:722.409333pt;}
.ya{bottom:727.722667pt;}
.y87{bottom:727.988000pt;}
.y31{bottom:738.349333pt;}
.y65{bottom:739.254667pt;}
.y9{bottom:741.006667pt;}
.y86{bottom:752.894667pt;}
.y8{bottom:754.289333pt;}
.y64{bottom:755.196000pt;}
.y85{bottom:768.834667pt;}
.y63{bottom:771.136000pt;}
.y84{bottom:784.776000pt;}
.y62{bottom:787.076000pt;}
.y7{bottom:795.281333pt;}
.y83{bottom:800.716000pt;}
.y61{bottom:807.941333pt;}
.y6{bottom:811.720000pt;}
.y82{bottom:816.656000pt;}
.y60{bottom:823.882667pt;}
.y5{bottom:828.157333pt;}
.y81{bottom:836.780000pt;}
.y4{bottom:844.793333pt;}
.y5f{bottom:847.768000pt;}
.y80{bottom:861.686667pt;}
.y7f{bottom:877.626667pt;}
.y5e{bottom:881.812000pt;}
.y3{bottom:886.636000pt;}
.y7e{bottom:893.568000pt;}
.y5d{bottom:897.752000pt;}
.y7d{bottom:909.508000pt;}
.y5c{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.y7c{bottom:925.448000pt;}
.y5b{bottom:929.632000pt;}
.y7b{bottom:941.388000pt;}
.y5a{bottom:945.572000pt;}
.y7a{bottom:957.328000pt;}
.y1{bottom:961.024000pt;}
.y59{bottom:961.512000pt;}
.y58{bottom:977.453333pt;}
.ha{height:25.812358pt;}
.hc{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h7{height:36.874903pt;}
.h8{height:39.850400pt;}
.h2{height:40.211857pt;}
.hb{height:44.111025pt;}
.h9{height:45.092358pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:65.285333pt;}
.x3{left:78.900000pt;}
.x14{left:91.981333pt;}
.x1{left:95.048000pt;}
.x2{left:114.749333pt;}
.xa{left:175.393333pt;}
.x9{left:180.825333pt;}
.x15{left:195.138667pt;}
.x7{left:305.944000pt;}
.x5{left:340.466667pt;}
.x4{left:343.942667pt;}
.x6{left:392.026667pt;}
.xb{left:415.970667pt;}
.x18{left:421.284000pt;}
.xc{left:429.253333pt;}
.x19{left:440.316000pt;}
.xe{left:442.666667pt;}
.xd{left:524.624000pt;}
.x16{left:535.681333pt;}
.x17{left:546.149333pt;}
.xf{left:554.396000pt;}
.x10{left:612.112000pt;}
.x11{left:620.640000pt;}
.x12{left:622.613333pt;}
.x13{left:735.226667pt;}
}




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