
    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_68153d07a1cf7de4ba465742.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5c93c17e1d49d9ddbb8ce530.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_a518b72548577a395380727c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8c911222d948f90e68fad5fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c01f48a2bf28804a35d1f7b4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls10{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.192000px;}
.lse{letter-spacing:0.222000px;}
.ls12{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.300000px;}
.ls14{letter-spacing:0.450000px;}
.lsd{letter-spacing:17.940000px;}
.ls13{letter-spacing:30.300000px;}
.ls4{letter-spacing:38.970000px;}
.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;}
}
.wsb{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wse{word-spacing:-16.572000px;}
.wsd{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wsc{word-spacing:-12.000000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-4.392000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._c{width:2.232000px;}
._f{width:3.456000px;}
._9{width:4.824000px;}
._15{width:5.904000px;}
._64{width:6.912000px;}
._a{width:7.920000px;}
._b{width:9.288000px;}
._13{width:10.506000px;}
._12{width:11.520000px;}
._1a{width:12.528000px;}
._2e{width:13.968000px;}
._11{width:15.120000px;}
._4{width:16.518000px;}
._5d{width:17.862000px;}
._24{width:19.296000px;}
._16{width:21.096000px;}
._5{width:22.392000px;}
._6{width:23.430000px;}
._23{width:25.056000px;}
._41{width:26.568000px;}
._1b{width:28.368000px;}
._7{width:29.376000px;}
._8{width:30.528000px;}
._21{width:32.112000px;}
._20{width:33.120000px;}
._43{width:34.260000px;}
._33{width:35.280000px;}
._36{width:36.564000px;}
._22{width:37.584000px;}
._14{width:38.790000px;}
._e{width:40.176000px;}
._28{width:41.328000px;}
._38{width:42.984000px;}
._39{width:44.352000px;}
._37{width:46.152000px;}
._1c{width:47.232000px;}
._1d{width:48.312000px;}
._25{width:49.608000px;}
._26{width:50.832000px;}
._52{width:52.158000px;}
._32{width:54.144000px;}
._31{width:55.512000px;}
._3f{width:56.910000px;}
._2f{width:58.176000px;}
._30{width:59.256000px;}
._d{width:60.552000px;}
._40{width:61.776000px;}
._3a{width:62.928000px;}
._3b{width:64.080000px;}
._3e{width:65.304000px;}
._4b{width:66.960000px;}
._3d{width:69.480000px;}
._2b{width:71.136000px;}
._2c{width:72.576000px;}
._56{width:73.608000px;}
._29{width:75.528000px;}
._17{width:77.112000px;}
._5c{width:83.952000px;}
._58{width:85.248000px;}
._59{width:86.286000px;}
._42{width:87.768000px;}
._4d{width:91.296000px;}
._4e{width:92.448000px;}
._61{width:93.486000px;}
._57{width:94.680000px;}
._27{width:96.120000px;}
._18{width:97.920000px;}
._19{width:99.000000px;}
._4a{width:100.008000px;}
._1e{width:102.084000px;}
._62{width:103.110000px;}
._1f{width:105.552000px;}
._46{width:106.584000px;}
._47{width:107.616000px;}
._5b{width:108.702000px;}
._50{width:112.824000px;}
._51{width:113.976000px;}
._45{width:116.232000px;}
._34{width:119.376000px;}
._35{width:120.600000px;}
._48{width:124.656000px;}
._49{width:125.856000px;}
._5f{width:130.746000px;}
._2a{width:132.468000px;}
._5e{width:139.392000px;}
._5a{width:141.480000px;}
._4c{width:143.160000px;}
._44{width:150.336000px;}
._60{width:153.186000px;}
._3c{width:184.704000px;}
._4f{width:188.064000px;}
._63{width:222.522000px;}
._2d{width:250.344000px;}
._53{width:738.120000px;}
._55{width:747.000000px;}
._54{width:765.120000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y39{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y38{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y37{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y36{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y35{bottom:86.700000px;}
.y34{bottom:107.385000px;}
.yb5{bottom:107.587500px;}
.yef{bottom:108.187500px;}
.yb7{bottom:109.237500px;}
.y6a{bottom:126.637500px;}
.yee{bottom:127.237500px;}
.y33{bottom:128.130000px;}
.yb6{bottom:128.137500px;}
.y3f{bottom:128.287500px;}
.yb4{bottom:131.437500px;}
.y8b{bottom:134.437500px;}
.yed{bottom:146.137500px;}
.y32{bottom:148.830000px;}
.y79{bottom:150.345000px;}
.y69{bottom:150.495000px;}
.y3e{bottom:151.995000px;}
.yb3{bottom:155.130000px;}
.y8a{bottom:158.130000px;}
.yec{bottom:165.180000px;}
.y31{bottom:169.530000px;}
.y78{bottom:170.295000px;}
.y68{bottom:174.345000px;}
.y3d{bottom:175.830000px;}
.yb2{bottom:178.995000px;}
.y89{bottom:181.995000px;}
.yeb{bottom:184.095000px;}
.y30{bottom:190.230000px;}
.y67{bottom:198.195000px;}
.yb1{bottom:202.830000px;}
.yea{bottom:203.145000px;}
.y88{bottom:205.830000px;}
.y3c{bottom:208.545000px;}
.y2f{bottom:210.930000px;}
.y66{bottom:221.895000px;}
.ye9{bottom:222.045000px;}
.y3b{bottom:225.345000px;}
.yb0{bottom:226.545000px;}
.y87{bottom:229.545000px;}
.y2e{bottom:231.630000px;}
.ye8{bottom:241.095000px;}
.y65{bottom:245.745000px;}
.y3a{bottom:246.045000px;}
.yaf{bottom:250.395000px;}
.y2d{bottom:252.330000px;}
.y99{bottom:252.795000px;}
.y86{bottom:253.380000px;}
.ye7{bottom:259.995000px;}
.y2a{bottom:266.745000px;}
.y64{bottom:269.595000px;}
.y2c{bottom:273.030000px;}
.yae{bottom:274.245000px;}
.y85{bottom:277.245000px;}
.ye6{bottom:278.895000px;}
.y77{bottom:289.695000px;}
.y63{bottom:293.295000px;}
.y2b{bottom:293.730000px;}
.ye5{bottom:297.945000px;}
.yad{bottom:298.095000px;}
.y84{bottom:300.945000px;}
.y76{bottom:313.545000px;}
.ye4{bottom:316.845000px;}
.y62{bottom:317.130000px;}
.yac{bottom:321.795000px;}
.y83{bottom:324.795000px;}
.ye3{bottom:335.895000px;}
.y75{bottom:337.380000px;}
.y61{bottom:340.995000px;}
.yab{bottom:345.645000px;}
.y82{bottom:348.645000px;}
.ye2{bottom:354.795000px;}
.y74{bottom:361.245000px;}
.y60{bottom:364.695000px;}
.yaa{bottom:369.495000px;}
.y81{bottom:372.495000px;}
.ye1{bottom:373.845000px;}
.y73{bottom:384.975000px;}
.y5f{bottom:388.575000px;}
.ye0{bottom:392.775000px;}
.ya9{bottom:393.225000px;}
.y80{bottom:396.225000px;}
.y72{bottom:408.825000px;}
.ydf{bottom:411.825000px;}
.y5e{bottom:412.425000px;}
.ya8{bottom:417.075000px;}
.y7f{bottom:420.075000px;}
.yde{bottom:430.725000px;}
.y71{bottom:432.675000px;}
.y5d{bottom:436.125000px;}
.ya7{bottom:440.925000px;}
.y7e{bottom:443.925000px;}
.ydd{bottom:449.775000px;}
.y70{bottom:456.375000px;}
.y5c{bottom:459.975000px;}
.ya6{bottom:464.625000px;}
.y7d{bottom:467.625000px;}
.ydc{bottom:468.675000px;}
.y6f{bottom:480.225000px;}
.y5b{bottom:483.825000px;}
.y98{bottom:487.575000px;}
.ydb{bottom:487.725000px;}
.ya5{bottom:488.475000px;}
.y7c{bottom:491.475000px;}
.y6e{bottom:504.075000px;}
.yda{bottom:506.625000px;}
.y5a{bottom:507.525000px;}
.y97{bottom:508.275000px;}
.ya4{bottom:512.325000px;}
.y7b{bottom:515.325000px;}
.y96{bottom:525.075000px;}
.yd9{bottom:525.675000px;}
.y6d{bottom:527.775000px;}
.y59{bottom:531.375000px;}
.y7a{bottom:535.125000px;}
.ya3{bottom:536.025000px;}
.yd8{bottom:544.575000px;}
.y6c{bottom:551.625000px;}
.y58{bottom:555.225000px;}
.yf1{bottom:557.325000px;}
.ya2{bottom:559.875000px;}
.yd7{bottom:563.625000px;}
.y6b{bottom:571.575000px;}
.y57{bottom:579.075000px;}
.y29{bottom:580.875000px;}
.yf0{bottom:581.025000px;}
.yd6{bottom:582.525000px;}
.ya1{bottom:583.725000px;}
.y28{bottom:600.075000px;}
.yd5{bottom:601.575000px;}
.y56{bottom:602.775000px;}
.ya0{bottom:607.425000px;}
.yd4{bottom:620.475000px;}
.y27{bottom:620.775000px;}
.y55{bottom:626.625000px;}
.y9f{bottom:631.275000px;}
.yd3{bottom:639.525000px;}
.y26{bottom:641.475000px;}
.y54{bottom:650.475000px;}
.y9e{bottom:655.125000px;}
.yd2{bottom:658.425000px;}
.y25{bottom:662.175000px;}
.y53{bottom:674.175000px;}
.yd1{bottom:677.475000px;}
.y9d{bottom:678.975000px;}
.y24{bottom:682.875000px;}
.y9c{bottom:695.775000px;}
.yd0{bottom:696.375000px;}
.y52{bottom:698.025000px;}
.y23{bottom:703.575000px;}
.ycf{bottom:715.425000px;}
.y51{bottom:721.875000px;}
.y22{bottom:724.275000px;}
.yce{bottom:734.325000px;}
.y95{bottom:739.170000px;}
.y21{bottom:745.020000px;}
.y50{bottom:745.620000px;}
.ycd{bottom:753.420000px;}
.y94{bottom:762.870000px;}
.y20{bottom:765.720000px;}
.y4f{bottom:769.470000px;}
.ycc{bottom:772.320000px;}
.y1f{bottom:786.420000px;}
.y93{bottom:786.720000px;}
.ycb{bottom:791.370000px;}
.y4e{bottom:793.320000px;}
.y1e{bottom:807.120000px;}
.yca{bottom:810.270000px;}
.y92{bottom:810.570000px;}
.y4d{bottom:817.020000px;}
.y1d{bottom:827.820000px;}
.yc9{bottom:829.320000px;}
.y91{bottom:834.270000px;}
.y4c{bottom:840.870000px;}
.yc8{bottom:848.220000px;}
.y1c{bottom:848.520000px;}
.y90{bottom:858.120000px;}
.y4b{bottom:864.720000px;}
.yc7{bottom:867.270000px;}
.y1b{bottom:869.220000px;}
.y8f{bottom:881.970000px;}
.yc6{bottom:886.170000px;}
.y4a{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.yc5{bottom:905.220000px;}
.y8e{bottom:905.820000px;}
.y19{bottom:910.620000px;}
.y49{bottom:912.270000px;}
.yc4{bottom:924.120000px;}
.y8d{bottom:929.520000px;}
.y18{bottom:931.320000px;}
.y48{bottom:936.120000px;}
.y9b{bottom:942.720000px;}
.yc3{bottom:943.170000px;}
.y8c{bottom:949.470000px;}
.y17{bottom:952.020000px;}
.y9a{bottom:959.520000px;}
.y47{bottom:959.970000px;}
.yc2{bottom:962.070000px;}
.y16{bottom:972.720000px;}
.yc1{bottom:981.120000px;}
.y46{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.yc0{bottom:1000.020000px;}
.y45{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.ybf{bottom:1019.070000px;}
.y44{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.ybe{bottom:1037.970000px;}
.y43{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.ybd{bottom:1057.020000px;}
.ybc{bottom:1075.920000px;}
.y11{bottom:1076.220000px;}
.y42{bottom:1078.920000px;}
.ybb{bottom:1094.970000px;}
.y10{bottom:1096.950000px;}
.y41{bottom:1102.800000px;}
.yba{bottom:1113.900000px;}
.y40{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.yb9{bottom:1132.950000px;}
.ye{bottom:1150.350000px;}
.yb8{bottom:1151.850000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h10{height:58.168945px;}
.h4{height:58.886719px;}
.he{height:63.457031px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h2{height:82.441406px;}
.hd{height:310.530000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x27{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x31{left:63.899987px;}
.x28{left:95.699987px;}
.x26{left:100.200000px;}
.x10{left:102.599987px;}
.x25{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x2e{left:227.144987px;}
.x2d{left:229.394987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:393.224987px;}
.x2a{left:438.674987px;}
.x2c{left:440.924987px;}
.x13{left:457.874987px;}
.x32{left:478.574987px;}
.x29{left:510.374987px;}
.x1b{left:515.774987px;}
.x14{left:521.324987px;}
.x1d{left:525.524987px;}
.x19{left:539.774987px;}
.x1a{left:552.824987px;}
.x20{left:567.524987px;}
.x18{left:571.124987px;}
.x22{left:572.624987px;}
.x12{left:581.024987px;}
.x24{left:586.574987px;}
.x21{left:610.274987px;}
.x1c{left:616.724987px;}
.xc{left:625.425000px;}
.x2f{left:644.069987px;}
.x1f{left:646.604987px;}
.x23{left:650.669987px;}
.x15{left:681.569987px;}
.x16{left:691.619987px;}
.x1e{left:706.619987px;}
.xf{left:713.655000px;}
.x2{left:829.619987px;}
.x17{left:850.619987px;}
.x2b{left:853.319987px;}
.x30{left:862.319987px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls10{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.197333pt;}
.ls12{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls14{letter-spacing:0.400000pt;}
.lsd{letter-spacing:15.946667pt;}
.ls13{letter-spacing:26.933333pt;}
.ls4{letter-spacing:34.640000pt;}
.wsb{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.730667pt;}
.wsd{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wsc{word-spacing:-10.666667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-3.904000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._c{width:1.984000pt;}
._f{width:3.072000pt;}
._9{width:4.288000pt;}
._15{width:5.248000pt;}
._64{width:6.144000pt;}
._a{width:7.040000pt;}
._b{width:8.256000pt;}
._13{width:9.338667pt;}
._12{width:10.240000pt;}
._1a{width:11.136000pt;}
._2e{width:12.416000pt;}
._11{width:13.440000pt;}
._4{width:14.682667pt;}
._5d{width:15.877333pt;}
._24{width:17.152000pt;}
._16{width:18.752000pt;}
._5{width:19.904000pt;}
._6{width:20.826667pt;}
._23{width:22.272000pt;}
._41{width:23.616000pt;}
._1b{width:25.216000pt;}
._7{width:26.112000pt;}
._8{width:27.136000pt;}
._21{width:28.544000pt;}
._20{width:29.440000pt;}
._43{width:30.453333pt;}
._33{width:31.360000pt;}
._36{width:32.501333pt;}
._22{width:33.408000pt;}
._14{width:34.480000pt;}
._e{width:35.712000pt;}
._28{width:36.736000pt;}
._38{width:38.208000pt;}
._39{width:39.424000pt;}
._37{width:41.024000pt;}
._1c{width:41.984000pt;}
._1d{width:42.944000pt;}
._25{width:44.096000pt;}
._26{width:45.184000pt;}
._52{width:46.362667pt;}
._32{width:48.128000pt;}
._31{width:49.344000pt;}
._3f{width:50.586667pt;}
._2f{width:51.712000pt;}
._30{width:52.672000pt;}
._d{width:53.824000pt;}
._40{width:54.912000pt;}
._3a{width:55.936000pt;}
._3b{width:56.960000pt;}
._3e{width:58.048000pt;}
._4b{width:59.520000pt;}
._3d{width:61.760000pt;}
._2b{width:63.232000pt;}
._2c{width:64.512000pt;}
._56{width:65.429333pt;}
._29{width:67.136000pt;}
._17{width:68.544000pt;}
._5c{width:74.624000pt;}
._58{width:75.776000pt;}
._59{width:76.698667pt;}
._42{width:78.016000pt;}
._4d{width:81.152000pt;}
._4e{width:82.176000pt;}
._61{width:83.098667pt;}
._57{width:84.160000pt;}
._27{width:85.440000pt;}
._18{width:87.040000pt;}
._19{width:88.000000pt;}
._4a{width:88.896000pt;}
._1e{width:90.741333pt;}
._62{width:91.653333pt;}
._1f{width:93.824000pt;}
._46{width:94.741333pt;}
._47{width:95.658667pt;}
._5b{width:96.624000pt;}
._50{width:100.288000pt;}
._51{width:101.312000pt;}
._45{width:103.317333pt;}
._34{width:106.112000pt;}
._35{width:107.200000pt;}
._48{width:110.805333pt;}
._49{width:111.872000pt;}
._5f{width:116.218667pt;}
._2a{width:117.749333pt;}
._5e{width:123.904000pt;}
._5a{width:125.760000pt;}
._4c{width:127.253333pt;}
._44{width:133.632000pt;}
._60{width:136.165333pt;}
._3c{width:164.181333pt;}
._4f{width:167.168000pt;}
._63{width:197.797333pt;}
._2d{width:222.528000pt;}
._53{width:656.106667pt;}
._55{width:664.000000pt;}
._54{width:680.106667pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y39{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y38{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y37{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y36{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y35{bottom:77.066667pt;}
.y34{bottom:95.453333pt;}
.yb5{bottom:95.633333pt;}
.yef{bottom:96.166667pt;}
.yb7{bottom:97.100000pt;}
.y6a{bottom:112.566667pt;}
.yee{bottom:113.100000pt;}
.y33{bottom:113.893333pt;}
.yb6{bottom:113.900000pt;}
.y3f{bottom:114.033333pt;}
.yb4{bottom:116.833333pt;}
.y8b{bottom:119.500000pt;}
.yed{bottom:129.900000pt;}
.y32{bottom:132.293333pt;}
.y79{bottom:133.640000pt;}
.y69{bottom:133.773333pt;}
.y3e{bottom:135.106667pt;}
.yb3{bottom:137.893333pt;}
.y8a{bottom:140.560000pt;}
.yec{bottom:146.826667pt;}
.y31{bottom:150.693333pt;}
.y78{bottom:151.373333pt;}
.y68{bottom:154.973333pt;}
.y3d{bottom:156.293333pt;}
.yb2{bottom:159.106667pt;}
.y89{bottom:161.773333pt;}
.yeb{bottom:163.640000pt;}
.y30{bottom:169.093333pt;}
.y67{bottom:176.173333pt;}
.yb1{bottom:180.293333pt;}
.yea{bottom:180.573333pt;}
.y88{bottom:182.960000pt;}
.y3c{bottom:185.373333pt;}
.y2f{bottom:187.493333pt;}
.y66{bottom:197.240000pt;}
.ye9{bottom:197.373333pt;}
.y3b{bottom:200.306667pt;}
.yb0{bottom:201.373333pt;}
.y87{bottom:204.040000pt;}
.y2e{bottom:205.893333pt;}
.ye8{bottom:214.306667pt;}
.y65{bottom:218.440000pt;}
.y3a{bottom:218.706667pt;}
.yaf{bottom:222.573333pt;}
.y2d{bottom:224.293333pt;}
.y99{bottom:224.706667pt;}
.y86{bottom:225.226667pt;}
.ye7{bottom:231.106667pt;}
.y2a{bottom:237.106667pt;}
.y64{bottom:239.640000pt;}
.y2c{bottom:242.693333pt;}
.yae{bottom:243.773333pt;}
.y85{bottom:246.440000pt;}
.ye6{bottom:247.906667pt;}
.y77{bottom:257.506667pt;}
.y63{bottom:260.706667pt;}
.y2b{bottom:261.093333pt;}
.ye5{bottom:264.840000pt;}
.yad{bottom:264.973333pt;}
.y84{bottom:267.506667pt;}
.y76{bottom:278.706667pt;}
.ye4{bottom:281.640000pt;}
.y62{bottom:281.893333pt;}
.yac{bottom:286.040000pt;}
.y83{bottom:288.706667pt;}
.ye3{bottom:298.573333pt;}
.y75{bottom:299.893333pt;}
.y61{bottom:303.106667pt;}
.yab{bottom:307.240000pt;}
.y82{bottom:309.906667pt;}
.ye2{bottom:315.373333pt;}
.y74{bottom:321.106667pt;}
.y60{bottom:324.173333pt;}
.yaa{bottom:328.440000pt;}
.y81{bottom:331.106667pt;}
.ye1{bottom:332.306667pt;}
.y73{bottom:342.200000pt;}
.y5f{bottom:345.400000pt;}
.ye0{bottom:349.133333pt;}
.ya9{bottom:349.533333pt;}
.y80{bottom:352.200000pt;}
.y72{bottom:363.400000pt;}
.ydf{bottom:366.066667pt;}
.y5e{bottom:366.600000pt;}
.ya8{bottom:370.733333pt;}
.y7f{bottom:373.400000pt;}
.yde{bottom:382.866667pt;}
.y71{bottom:384.600000pt;}
.y5d{bottom:387.666667pt;}
.ya7{bottom:391.933333pt;}
.y7e{bottom:394.600000pt;}
.ydd{bottom:399.800000pt;}
.y70{bottom:405.666667pt;}
.y5c{bottom:408.866667pt;}
.ya6{bottom:413.000000pt;}
.y7d{bottom:415.666667pt;}
.ydc{bottom:416.600000pt;}
.y6f{bottom:426.866667pt;}
.y5b{bottom:430.066667pt;}
.y98{bottom:433.400000pt;}
.ydb{bottom:433.533333pt;}
.ya5{bottom:434.200000pt;}
.y7c{bottom:436.866667pt;}
.y6e{bottom:448.066667pt;}
.yda{bottom:450.333333pt;}
.y5a{bottom:451.133333pt;}
.y97{bottom:451.800000pt;}
.ya4{bottom:455.400000pt;}
.y7b{bottom:458.066667pt;}
.y96{bottom:466.733333pt;}
.yd9{bottom:467.266667pt;}
.y6d{bottom:469.133333pt;}
.y59{bottom:472.333333pt;}
.y7a{bottom:475.666667pt;}
.ya3{bottom:476.466667pt;}
.yd8{bottom:484.066667pt;}
.y6c{bottom:490.333333pt;}
.y58{bottom:493.533333pt;}
.yf1{bottom:495.400000pt;}
.ya2{bottom:497.666667pt;}
.yd7{bottom:501.000000pt;}
.y6b{bottom:508.066667pt;}
.y57{bottom:514.733333pt;}
.y29{bottom:516.333333pt;}
.yf0{bottom:516.466667pt;}
.yd6{bottom:517.800000pt;}
.ya1{bottom:518.866667pt;}
.y28{bottom:533.400000pt;}
.yd5{bottom:534.733333pt;}
.y56{bottom:535.800000pt;}
.ya0{bottom:539.933333pt;}
.yd4{bottom:551.533333pt;}
.y27{bottom:551.800000pt;}
.y55{bottom:557.000000pt;}
.y9f{bottom:561.133333pt;}
.yd3{bottom:568.466667pt;}
.y26{bottom:570.200000pt;}
.y54{bottom:578.200000pt;}
.y9e{bottom:582.333333pt;}
.yd2{bottom:585.266667pt;}
.y25{bottom:588.600000pt;}
.y53{bottom:599.266667pt;}
.yd1{bottom:602.200000pt;}
.y9d{bottom:603.533333pt;}
.y24{bottom:607.000000pt;}
.y9c{bottom:618.466667pt;}
.yd0{bottom:619.000000pt;}
.y52{bottom:620.466667pt;}
.y23{bottom:625.400000pt;}
.ycf{bottom:635.933333pt;}
.y51{bottom:641.666667pt;}
.y22{bottom:643.800000pt;}
.yce{bottom:652.733333pt;}
.y95{bottom:657.040000pt;}
.y21{bottom:662.240000pt;}
.y50{bottom:662.773333pt;}
.ycd{bottom:669.706667pt;}
.y94{bottom:678.106667pt;}
.y20{bottom:680.640000pt;}
.y4f{bottom:683.973333pt;}
.ycc{bottom:686.506667pt;}
.y1f{bottom:699.040000pt;}
.y93{bottom:699.306667pt;}
.ycb{bottom:703.440000pt;}
.y4e{bottom:705.173333pt;}
.y1e{bottom:717.440000pt;}
.yca{bottom:720.240000pt;}
.y92{bottom:720.506667pt;}
.y4d{bottom:726.240000pt;}
.y1d{bottom:735.840000pt;}
.yc9{bottom:737.173333pt;}
.y91{bottom:741.573333pt;}
.y4c{bottom:747.440000pt;}
.yc8{bottom:753.973333pt;}
.y1c{bottom:754.240000pt;}
.y90{bottom:762.773333pt;}
.y4b{bottom:768.640000pt;}
.yc7{bottom:770.906667pt;}
.y1b{bottom:772.640000pt;}
.y8f{bottom:783.973333pt;}
.yc6{bottom:787.706667pt;}
.y4a{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.yc5{bottom:804.640000pt;}
.y8e{bottom:805.173333pt;}
.y19{bottom:809.440000pt;}
.y49{bottom:810.906667pt;}
.yc4{bottom:821.440000pt;}
.y8d{bottom:826.240000pt;}
.y18{bottom:827.840000pt;}
.y48{bottom:832.106667pt;}
.y9b{bottom:837.973333pt;}
.yc3{bottom:838.373333pt;}
.y8c{bottom:843.973333pt;}
.y17{bottom:846.240000pt;}
.y9a{bottom:852.906667pt;}
.y47{bottom:853.306667pt;}
.yc2{bottom:855.173333pt;}
.y16{bottom:864.640000pt;}
.yc1{bottom:872.106667pt;}
.y46{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.yc0{bottom:888.906667pt;}
.y45{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.ybf{bottom:905.840000pt;}
.y44{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.ybe{bottom:922.640000pt;}
.y43{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.ybd{bottom:939.573333pt;}
.ybc{bottom:956.373333pt;}
.y11{bottom:956.640000pt;}
.y42{bottom:959.040000pt;}
.ybb{bottom:973.306667pt;}
.y10{bottom:975.066667pt;}
.y41{bottom:980.266667pt;}
.yba{bottom:990.133333pt;}
.y40{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.yb9{bottom:1007.066667pt;}
.ye{bottom:1022.533333pt;}
.yb8{bottom:1023.866667pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h10{height:51.705729pt;}
.h4{height:52.343750pt;}
.he{height:56.406250pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h2{height:73.281250pt;}
.hd{height:276.026667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x27{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x31{left:56.799988pt;}
.x28{left:85.066655pt;}
.x26{left:89.066667pt;}
.x10{left:91.199988pt;}
.x25{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x2e{left:201.906655pt;}
.x2d{left:203.906655pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:349.533322pt;}
.x2a{left:389.933322pt;}
.x2c{left:391.933322pt;}
.x13{left:406.999988pt;}
.x32{left:425.399988pt;}
.x29{left:453.666655pt;}
.x1b{left:458.466655pt;}
.x14{left:463.399988pt;}
.x1d{left:467.133322pt;}
.x19{left:479.799988pt;}
.x1a{left:491.399988pt;}
.x20{left:504.466655pt;}
.x18{left:507.666655pt;}
.x22{left:508.999988pt;}
.x12{left:516.466655pt;}
.x24{left:521.399988pt;}
.x21{left:542.466655pt;}
.x1c{left:548.199988pt;}
.xc{left:555.933333pt;}
.x2f{left:572.506655pt;}
.x1f{left:574.759988pt;}
.x23{left:578.373322pt;}
.x15{left:605.839988pt;}
.x16{left:614.773322pt;}
.x1e{left:628.106655pt;}
.xf{left:634.360000pt;}
.x2{left:737.439988pt;}
.x17{left:756.106655pt;}
.x2b{left:758.506655pt;}
.x30{left:766.506655pt;}
}




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