
    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_7d61a85ac95cea7a2eb791ad.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_d8d456ace27d455860bdb253.woff')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_cf27266fad8f36fe1815b891.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5bb350a08324ee7cf4aef79.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dce161c83b2da5f420a876d9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_32058fd25ac18387782c6c9b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_d5787adb0712f3ab1c1731bb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_c2b2c8aca4bdab1e657e610d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.296000px;}
.ls11{letter-spacing:-1.152000px;}
.ls3{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.504000px;}
.lse{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.296000px;}
.lsa{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.584000px;}
.ls2{letter-spacing:1.674000px;}
.ls9{letter-spacing:2.160000px;}
.ls13{letter-spacing:136.944000px;}
.ls18{letter-spacing:148.464000px;}
.ls14{letter-spacing:184.464000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws13{word-spacing:-48.240000px;}
.wsb{word-spacing:-19.440000px;}
.wse{word-spacing:-18.648000px;}
.wsf{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.496000px;}
.ws15{word-spacing:-17.352000px;}
.ws12{word-spacing:-16.848000px;}
.ws14{word-spacing:-16.704000px;}
.ws7{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.416000px;}
.ws0{word-spacing:-13.554000px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.640000px;}
.ws4{word-spacing:-8.280000px;}
.ws9{word-spacing:0.000000px;}
._14{margin-left:-3.600480px;}
._9{margin-left:-2.200320px;}
._1{margin-left:-1.188000px;}
._3{width:1.098240px;}
._4{width:2.294880px;}
._7{width:3.816000px;}
._8{width:5.444160px;}
._c{width:6.520320px;}
._a{width:7.548960px;}
._10{width:8.761440px;}
._f{width:9.941280px;}
._e{width:11.548320px;}
._d{width:13.310400px;}
._b{width:14.589600px;}
._2{width:16.570560px;}
._0{width:18.221760px;}
._16{width:20.139360px;}
._1e{width:21.643680px;}
._11{width:23.184000px;}
._13{width:24.587520px;}
._12{width:25.672320px;}
._1a{width:26.715360px;}
._1b{width:28.013760px;}
._23{width:29.376960px;}
._1c{width:30.689280px;}
._1d{width:32.583840px;}
._1f{width:34.016160px;}
._20{width:35.815200px;}
._19{width:37.795200px;}
._17{width:39.798240px;}
._18{width:40.930080px;}
._22{width:42.943680px;}
._21{width:44.652480px;}
._15{width:46.174080px;}
._24{width:51.646080px;}
._25{width:53.136000px;}
._26{width:54.312000px;}
._5{width:61.005120px;}
._6{width:62.316960px;}
._2b{width:71.302080px;}
._2a{width:73.429440px;}
._29{width:75.055680px;}
._27{width:90.845760px;}
._28{width:91.872000px;}
.fc3{color:rgb(33,37,41);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:14.790000px;}
.y89{bottom:14.805000px;}
.yaa{bottom:15.120000px;}
.ya4{bottom:15.150000px;}
.y8f{bottom:15.480000px;}
.y9b{bottom:15.525000px;}
.ya9{bottom:16.560000px;}
.y8e{bottom:16.920000px;}
.y9a{bottom:16.965000px;}
.y8b{bottom:45.750000px;}
.ya3{bottom:46.110000px;}
.yae{bottom:46.440000px;}
.y84{bottom:56.916000px;}
.y2{bottom:57.240000px;}
.yad{bottom:66.240000px;}
.y8a{bottom:76.710000px;}
.y83{bottom:76.716000px;}
.ya2{bottom:77.070000px;}
.y1{bottom:77.076000px;}
.yed{bottom:105.516000px;}
.y87{bottom:108.795000px;}
.y52{bottom:111.276000px;}
.y6e{bottom:115.596000px;}
.y31{bottom:118.116000px;}
.yec{bottom:136.836000px;}
.y51{bottom:142.596000px;}
.y6d{bottom:146.556000px;}
.y30{bottom:149.076000px;}
.yce{bottom:157.710000px;}
.yeb{bottom:167.790000px;}
.y82{bottom:168.150000px;}
.y50{bottom:173.550000px;}
.y75{bottom:173.910000px;}
.y6c{bottom:177.510000px;}
.y2f{bottom:180.030000px;}
.ycd{bottom:188.670000px;}
.y9e{bottom:191.985000px;}
.yea{bottom:198.795000px;}
.y81{bottom:199.155000px;}
.y4f{bottom:204.555000px;}
.y74{bottom:206.715000px;}
.y6b{bottom:208.515000px;}
.y9d{bottom:208.905000px;}
.y2e{bottom:211.035000px;}
.ycc{bottom:219.675000px;}
.ye9{bottom:229.755000px;}
.y80{bottom:230.115000px;}
.y4e{bottom:235.515000px;}
.y73{bottom:237.315000px;}
.y6a{bottom:239.835000px;}
.y2d{bottom:242.355000px;}
.y9c{bottom:242.745000px;}
.ycb{bottom:250.995000px;}
.y7f{bottom:261.075000px;}
.y4d{bottom:266.835000px;}
.y72{bottom:268.635000px;}
.y69{bottom:270.795000px;}
.y2c{bottom:273.315000px;}
.y99{bottom:276.585000px;}
.yca{bottom:281.955000px;}
.ye8{bottom:292.035000px;}
.y7e{bottom:292.395000px;}
.y4c{bottom:297.795000px;}
.y71{bottom:299.595000px;}
.y68{bottom:301.755000px;}
.y2b{bottom:304.275000px;}
.y98{bottom:310.470000px;}
.yc9{bottom:312.915000px;}
.ye7{bottom:323.025000px;}
.y7d{bottom:323.385000px;}
.y4b{bottom:328.785000px;}
.y70{bottom:331.305000px;}
.y67{bottom:332.745000px;}
.y2a{bottom:335.265000px;}
.yc8{bottom:343.905000px;}
.y97{bottom:344.310000px;}
.ye6{bottom:353.985000px;}
.y7c{bottom:354.345000px;}
.y4a{bottom:359.745000px;}
.y66{bottom:364.065000px;}
.y29{bottom:366.585000px;}
.yc7{bottom:374.865000px;}
.y96{bottom:378.180000px;}
.y7b{bottom:385.305000px;}
.y49{bottom:390.705000px;}
.y65{bottom:395.025000px;}
.y28{bottom:397.545000px;}
.yc6{bottom:406.185000px;}
.y95{bottom:412.020000px;}
.ye5{bottom:416.265000px;}
.y7a{bottom:416.625000px;}
.y48{bottom:422.025000px;}
.y64{bottom:425.985000px;}
.y27{bottom:428.505000px;}
.yc5{bottom:437.145000px;}
.y94{bottom:445.860000px;}
.ye4{bottom:447.270000px;}
.y79{bottom:447.630000px;}
.y47{bottom:453.030000px;}
.y63{bottom:456.990000px;}
.y26{bottom:459.510000px;}
.yac{bottom:464.580000px;}
.yc4{bottom:468.150000px;}
.ye3{bottom:478.230000px;}
.y78{bottom:478.590000px;}
.y93{bottom:479.730000px;}
.yab{bottom:481.890000px;}
.y46{bottom:483.990000px;}
.y62{bottom:487.950000px;}
.y25{bottom:490.470000px;}
.yc3{bottom:498.750000px;}
.y77{bottom:509.550000px;}
.y92{bottom:513.570000px;}
.y45{bottom:514.950000px;}
.ya8{bottom:515.730000px;}
.y61{bottom:519.270000px;}
.y24{bottom:521.790000px;}
.yc2{bottom:530.430000px;}
.y76{bottom:536.550000px;}
.ye2{bottom:540.510000px;}
.y44{bottom:546.270000px;}
.y91{bottom:547.410000px;}
.ya7{bottom:549.210000px;}
.y60{bottom:550.230000px;}
.y23{bottom:551.310000px;}
.yc1{bottom:561.390000px;}
.ye1{bottom:571.470000px;}
.y43{bottom:577.260000px;}
.y22{bottom:580.860000px;}
.y5f{bottom:581.220000px;}
.y90{bottom:581.295000px;}
.ya6{bottom:583.095000px;}
.yc0{bottom:592.380000px;}
.ye0{bottom:602.460000px;}
.y42{bottom:608.220000px;}
.y21{bottom:611.820000px;}
.y5e{bottom:612.180000px;}
.y8d{bottom:615.135000px;}
.ya5{bottom:616.935000px;}
.ybf{bottom:623.340000px;}
.ydf{bottom:633.780000px;}
.y41{bottom:639.180000px;}
.y20{bottom:643.140000px;}
.y5d{bottom:643.500000px;}
.y86{bottom:648.975000px;}
.ya0{bottom:650.775000px;}
.ybe{bottom:654.660000px;}
.yde{bottom:664.740000px;}
.y40{bottom:670.500000px;}
.y1f{bottom:674.100000px;}
.y5c{bottom:674.460000px;}
.ybd{bottom:685.620000px;}
.ydd{bottom:695.700000px;}
.y3f{bottom:701.490000px;}
.y1e{bottom:705.090000px;}
.y5b{bottom:705.450000px;}
.ybc{bottom:716.610000px;}
.ydc{bottom:726.690000px;}
.y3e{bottom:732.090000px;}
.y1d{bottom:736.050000px;}
.y5a{bottom:736.410000px;}
.y88{bottom:742.965000px;}
.ya1{bottom:744.765000px;}
.ybb{bottom:747.570000px;}
.ydb{bottom:758.010000px;}
.y3d{bottom:763.050000px;}
.y1c{bottom:767.370000px;}
.y59{bottom:767.730000px;}
.yba{bottom:778.890000px;}
.yda{bottom:788.970000px;}
.y85{bottom:790.170000px;}
.y9f{bottom:791.610000px;}
.y3c{bottom:794.730000px;}
.y1b{bottom:798.690000px;}
.yb9{bottom:809.490000px;}
.yd9{bottom:819.930000px;}
.y3b{bottom:825.735000px;}
.y1a{bottom:829.695000px;}
.yb8{bottom:840.855000px;}
.yd8{bottom:850.935000px;}
.y3a{bottom:856.695000px;}
.y19{bottom:860.655000px;}
.yb7{bottom:871.815000px;}
.yd7{bottom:882.255000px;}
.y39{bottom:887.655000px;}
.y18{bottom:891.975000px;}
.yb6{bottom:903.135000px;}
.y17{bottom:910.335000px;}
.yd6{bottom:913.215000px;}
.y38{bottom:918.975000px;}
.y16{bottom:920.415000px;}
.y58{bottom:922.935000px;}
.y15{bottom:930.855000px;}
.yb5{bottom:934.095000px;}
.y14{bottom:941.295000px;}
.yd5{bottom:944.175000px;}
.y37{bottom:949.935000px;}
.y13{bottom:951.765000px;}
.y6f{bottom:953.565000px;}
.y57{bottom:953.925000px;}
.y12{bottom:961.845000px;}
.yb4{bottom:965.805000px;}
.y11{bottom:972.285000px;}
.yd4{bottom:975.165000px;}
.y36{bottom:980.925000px;}
.y10{bottom:982.725000px;}
.y56{bottom:984.885000px;}
.yf{bottom:993.165000px;}
.yb3{bottom:998.925000px;}
.ye{bottom:1003.245000px;}
.yd3{bottom:1006.485000px;}
.y35{bottom:1011.885000px;}
.yd{bottom:1013.685000px;}
.y55{bottom:1016.205000px;}
.yc{bottom:1024.125000px;}
.yb2{bottom:1031.325000px;}
.yb{bottom:1035.285000px;}
.yd2{bottom:1037.445000px;}
.y34{bottom:1043.565000px;}
.y54{bottom:1047.165000px;}
.ya{bottom:1048.965000px;}
.y9{bottom:1063.005000px;}
.yd1{bottom:1068.405000px;}
.y8{bottom:1076.685000px;}
.y53{bottom:1078.170000px;}
.y7{bottom:1090.050000px;}
.yb1{bottom:1096.170000px;}
.yd0{bottom:1099.410000px;}
.y6{bottom:1104.090000px;}
.y33{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.yb0{bottom:1129.290000px;}
.ycf{bottom:1130.730000px;}
.y4{bottom:1131.450000px;}
.y32{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.yaf{bottom:1161.690000px;}
.h7{height:26.033203px;}
.h10{height:30.996000px;}
.h15{height:32.760000px;}
.h12{height:33.120000px;}
.h13{height:33.156000px;}
.h6{height:35.332031px;}
.h5{height:46.638281px;}
.h4{height:47.891250px;}
.h3{height:50.229844px;}
.hc{height:52.066406px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.hb{height:73.998281px;}
.h16{height:74.004654px;}
.h11{height:92.916000px;}
.h14{height:93.276000px;}
.hf{height:124.992000px;}
.he{height:892.500000px;}
.hd{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:71.316000px;}
.wc{width:73.440000px;}
.we{width:73.476000px;}
.w6{width:73.800000px;}
.wb{width:76.716000px;}
.w11{width:79.956000px;}
.w14{width:84.240000px;}
.wd{width:84.276000px;}
.w12{width:86.400000px;}
.w10{width:86.436000px;}
.wf{width:86.760000px;}
.w13{width:86.796000px;}
.w7{width:236.235000px;}
.w15{width:238.395000px;}
.w16{width:245.955000px;}
.w8{width:248.115000px;}
.w9{width:254.595000px;}
.wa{width:261.075000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:1.440000px;}
.x1a{left:2.880000px;}
.x17{left:4.320000px;}
.x24{left:5.400000px;}
.x35{left:6.480000px;}
.x1d{left:7.950000px;}
.x22{left:9.000000px;}
.x20{left:10.080000px;}
.x30{left:11.160000px;}
.x1e{left:12.240000px;}
.x16{left:13.680000px;}
.x25{left:15.480000px;}
.x28{left:18.720000px;}
.x19{left:20.160000px;}
.x1c{left:25.590000px;}
.x21{left:26.640000px;}
.x2d{left:58.005000px;}
.x12{left:59.085000px;}
.x10{left:60.885000px;}
.x15{left:62.310000px;}
.x2e{left:64.830000px;}
.x2b{left:72.036000px;}
.xd{left:82.476000px;}
.xb{left:84.995981px;}
.x2{left:106.235987px;}
.xc{left:137.915981px;}
.x3{left:152.354987px;}
.xf{left:156.990000px;}
.x8{left:159.554987px;}
.x18{left:234.435000px;}
.x7{left:240.224987px;}
.x1b{left:308.955000px;}
.x4{left:372.389987px;}
.x11{left:393.945000px;}
.x2c{left:396.105000px;}
.x6{left:404.069987px;}
.x36{left:438.299987px;}
.x1{left:442.259987px;}
.x5{left:446.579987px;}
.x1f{left:468.150000px;}
.x23{left:555.630000px;}
.xa{left:627.299981px;}
.x13{left:642.780000px;}
.x26{left:723.450000px;}
.x31{left:729.930000px;}
.x9{left:777.164987px;}
.x27{left:810.570000px;}
.x32{left:817.455000px;}
.x14{left:898.095000px;}
.x2f{left:904.575000px;}
.x29{left:985.245000px;}
.x33{left:991.725000px;}
.x2a{left:1072.410000px;}
.x34{left:1078.890000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls11{letter-spacing:-1.024000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.152000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.408000pt;}
.ls2{letter-spacing:1.488000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls13{letter-spacing:121.728000pt;}
.ls18{letter-spacing:131.968000pt;}
.ls14{letter-spacing:163.968000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws13{word-spacing:-42.880000pt;}
.wsb{word-spacing:-17.280000pt;}
.wse{word-spacing:-16.576000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws15{word-spacing:-15.424000pt;}
.ws12{word-spacing:-14.976000pt;}
.ws14{word-spacing:-14.848000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.592000pt;}
.ws0{word-spacing:-12.048000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.680000pt;}
.ws4{word-spacing:-7.360000pt;}
.ws9{word-spacing:0.000000pt;}
._14{margin-left:-3.200427pt;}
._9{margin-left:-1.955840pt;}
._1{margin-left:-1.056000pt;}
._3{width:0.976213pt;}
._4{width:2.039893pt;}
._7{width:3.392000pt;}
._8{width:4.839253pt;}
._c{width:5.795840pt;}
._a{width:6.710187pt;}
._10{width:7.787947pt;}
._f{width:8.836693pt;}
._e{width:10.265173pt;}
._d{width:11.831467pt;}
._b{width:12.968533pt;}
._2{width:14.729387pt;}
._0{width:16.197120pt;}
._16{width:17.901653pt;}
._1e{width:19.238827pt;}
._11{width:20.608000pt;}
._13{width:21.855573pt;}
._12{width:22.819840pt;}
._1a{width:23.746987pt;}
._1b{width:24.901120pt;}
._23{width:26.112853pt;}
._1c{width:27.279360pt;}
._1d{width:28.963413pt;}
._1f{width:30.236587pt;}
._20{width:31.835733pt;}
._19{width:33.595733pt;}
._17{width:35.376213pt;}
._18{width:36.382293pt;}
._22{width:38.172160pt;}
._21{width:39.691093pt;}
._15{width:41.043627pt;}
._24{width:45.907627pt;}
._25{width:47.232000pt;}
._26{width:48.277333pt;}
._5{width:54.226773pt;}
._6{width:55.392853pt;}
._2b{width:63.379627pt;}
._2a{width:65.270613pt;}
._29{width:66.716160pt;}
._27{width:80.751787pt;}
._28{width:81.664000pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:13.146667pt;}
.y89{bottom:13.160000pt;}
.yaa{bottom:13.440000pt;}
.ya4{bottom:13.466667pt;}
.y8f{bottom:13.760000pt;}
.y9b{bottom:13.800000pt;}
.ya9{bottom:14.720000pt;}
.y8e{bottom:15.040000pt;}
.y9a{bottom:15.080000pt;}
.y8b{bottom:40.666667pt;}
.ya3{bottom:40.986667pt;}
.yae{bottom:41.280000pt;}
.y84{bottom:50.592000pt;}
.y2{bottom:50.880000pt;}
.yad{bottom:58.880000pt;}
.y8a{bottom:68.186667pt;}
.y83{bottom:68.192000pt;}
.ya2{bottom:68.506667pt;}
.y1{bottom:68.512000pt;}
.yed{bottom:93.792000pt;}
.y87{bottom:96.706667pt;}
.y52{bottom:98.912000pt;}
.y6e{bottom:102.752000pt;}
.y31{bottom:104.992000pt;}
.yec{bottom:121.632000pt;}
.y51{bottom:126.752000pt;}
.y6d{bottom:130.272000pt;}
.y30{bottom:132.512000pt;}
.yce{bottom:140.186667pt;}
.yeb{bottom:149.146667pt;}
.y82{bottom:149.466667pt;}
.y50{bottom:154.266667pt;}
.y75{bottom:154.586667pt;}
.y6c{bottom:157.786667pt;}
.y2f{bottom:160.026667pt;}
.ycd{bottom:167.706667pt;}
.y9e{bottom:170.653333pt;}
.yea{bottom:176.706667pt;}
.y81{bottom:177.026667pt;}
.y4f{bottom:181.826667pt;}
.y74{bottom:183.746667pt;}
.y6b{bottom:185.346667pt;}
.y9d{bottom:185.693333pt;}
.y2e{bottom:187.586667pt;}
.ycc{bottom:195.266667pt;}
.ye9{bottom:204.226667pt;}
.y80{bottom:204.546667pt;}
.y4e{bottom:209.346667pt;}
.y73{bottom:210.946667pt;}
.y6a{bottom:213.186667pt;}
.y2d{bottom:215.426667pt;}
.y9c{bottom:215.773333pt;}
.ycb{bottom:223.106667pt;}
.y7f{bottom:232.066667pt;}
.y4d{bottom:237.186667pt;}
.y72{bottom:238.786667pt;}
.y69{bottom:240.706667pt;}
.y2c{bottom:242.946667pt;}
.y99{bottom:245.853333pt;}
.yca{bottom:250.626667pt;}
.ye8{bottom:259.586667pt;}
.y7e{bottom:259.906667pt;}
.y4c{bottom:264.706667pt;}
.y71{bottom:266.306667pt;}
.y68{bottom:268.226667pt;}
.y2b{bottom:270.466667pt;}
.y98{bottom:275.973333pt;}
.yc9{bottom:278.146667pt;}
.ye7{bottom:287.133333pt;}
.y7d{bottom:287.453333pt;}
.y4b{bottom:292.253333pt;}
.y70{bottom:294.493333pt;}
.y67{bottom:295.773333pt;}
.y2a{bottom:298.013333pt;}
.yc8{bottom:305.693333pt;}
.y97{bottom:306.053333pt;}
.ye6{bottom:314.653333pt;}
.y7c{bottom:314.973333pt;}
.y4a{bottom:319.773333pt;}
.y66{bottom:323.613333pt;}
.y29{bottom:325.853333pt;}
.yc7{bottom:333.213333pt;}
.y96{bottom:336.160000pt;}
.y7b{bottom:342.493333pt;}
.y49{bottom:347.293333pt;}
.y65{bottom:351.133333pt;}
.y28{bottom:353.373333pt;}
.yc6{bottom:361.053333pt;}
.y95{bottom:366.240000pt;}
.ye5{bottom:370.013333pt;}
.y7a{bottom:370.333333pt;}
.y48{bottom:375.133333pt;}
.y64{bottom:378.653333pt;}
.y27{bottom:380.893333pt;}
.yc5{bottom:388.573333pt;}
.y94{bottom:396.320000pt;}
.ye4{bottom:397.573333pt;}
.y79{bottom:397.893333pt;}
.y47{bottom:402.693333pt;}
.y63{bottom:406.213333pt;}
.y26{bottom:408.453333pt;}
.yac{bottom:412.960000pt;}
.yc4{bottom:416.133333pt;}
.ye3{bottom:425.093333pt;}
.y78{bottom:425.413333pt;}
.y93{bottom:426.426667pt;}
.yab{bottom:428.346667pt;}
.y46{bottom:430.213333pt;}
.y62{bottom:433.733333pt;}
.y25{bottom:435.973333pt;}
.yc3{bottom:443.333333pt;}
.y77{bottom:452.933333pt;}
.y92{bottom:456.506667pt;}
.y45{bottom:457.733333pt;}
.ya8{bottom:458.426667pt;}
.y61{bottom:461.573333pt;}
.y24{bottom:463.813333pt;}
.yc2{bottom:471.493333pt;}
.y76{bottom:476.933333pt;}
.ye2{bottom:480.453333pt;}
.y44{bottom:485.573333pt;}
.y91{bottom:486.586667pt;}
.ya7{bottom:488.186667pt;}
.y60{bottom:489.093333pt;}
.y23{bottom:490.053333pt;}
.yc1{bottom:499.013333pt;}
.ye1{bottom:507.973333pt;}
.y43{bottom:513.120000pt;}
.y22{bottom:516.320000pt;}
.y5f{bottom:516.640000pt;}
.y90{bottom:516.706667pt;}
.ya6{bottom:518.306667pt;}
.yc0{bottom:526.560000pt;}
.ye0{bottom:535.520000pt;}
.y42{bottom:540.640000pt;}
.y21{bottom:543.840000pt;}
.y5e{bottom:544.160000pt;}
.y8d{bottom:546.786667pt;}
.ya5{bottom:548.386667pt;}
.ybf{bottom:554.080000pt;}
.ydf{bottom:563.360000pt;}
.y41{bottom:568.160000pt;}
.y20{bottom:571.680000pt;}
.y5d{bottom:572.000000pt;}
.y86{bottom:576.866667pt;}
.ya0{bottom:578.466667pt;}
.ybe{bottom:581.920000pt;}
.yde{bottom:590.880000pt;}
.y40{bottom:596.000000pt;}
.y1f{bottom:599.200000pt;}
.y5c{bottom:599.520000pt;}
.ybd{bottom:609.440000pt;}
.ydd{bottom:618.400000pt;}
.y3f{bottom:623.546667pt;}
.y1e{bottom:626.746667pt;}
.y5b{bottom:627.066667pt;}
.ybc{bottom:636.986667pt;}
.ydc{bottom:645.946667pt;}
.y3e{bottom:650.746667pt;}
.y1d{bottom:654.266667pt;}
.y5a{bottom:654.586667pt;}
.y88{bottom:660.413333pt;}
.ya1{bottom:662.013333pt;}
.ybb{bottom:664.506667pt;}
.ydb{bottom:673.786667pt;}
.y3d{bottom:678.266667pt;}
.y1c{bottom:682.106667pt;}
.y59{bottom:682.426667pt;}
.yba{bottom:692.346667pt;}
.yda{bottom:701.306667pt;}
.y85{bottom:702.373333pt;}
.y9f{bottom:703.653333pt;}
.y3c{bottom:706.426667pt;}
.y1b{bottom:709.946667pt;}
.yb9{bottom:719.546667pt;}
.yd9{bottom:728.826667pt;}
.y3b{bottom:733.986667pt;}
.y1a{bottom:737.506667pt;}
.yb8{bottom:747.426667pt;}
.yd8{bottom:756.386667pt;}
.y3a{bottom:761.506667pt;}
.y19{bottom:765.026667pt;}
.yb7{bottom:774.946667pt;}
.yd7{bottom:784.226667pt;}
.y39{bottom:789.026667pt;}
.y18{bottom:792.866667pt;}
.yb6{bottom:802.786667pt;}
.y17{bottom:809.186667pt;}
.yd6{bottom:811.746667pt;}
.y38{bottom:816.866667pt;}
.y16{bottom:818.146667pt;}
.y58{bottom:820.386667pt;}
.y15{bottom:827.426667pt;}
.yb5{bottom:830.306667pt;}
.y14{bottom:836.706667pt;}
.yd5{bottom:839.266667pt;}
.y37{bottom:844.386667pt;}
.y13{bottom:846.013333pt;}
.y6f{bottom:847.613333pt;}
.y57{bottom:847.933333pt;}
.y12{bottom:854.973333pt;}
.yb4{bottom:858.493333pt;}
.y11{bottom:864.253333pt;}
.yd4{bottom:866.813333pt;}
.y36{bottom:871.933333pt;}
.y10{bottom:873.533333pt;}
.y56{bottom:875.453333pt;}
.yf{bottom:882.813333pt;}
.yb3{bottom:887.933333pt;}
.ye{bottom:891.773333pt;}
.yd3{bottom:894.653333pt;}
.y35{bottom:899.453333pt;}
.yd{bottom:901.053333pt;}
.y55{bottom:903.293333pt;}
.yc{bottom:910.333333pt;}
.yb2{bottom:916.733333pt;}
.yb{bottom:920.253333pt;}
.yd2{bottom:922.173333pt;}
.y34{bottom:927.613333pt;}
.y54{bottom:930.813333pt;}
.ya{bottom:932.413333pt;}
.y9{bottom:944.893333pt;}
.yd1{bottom:949.693333pt;}
.y8{bottom:957.053333pt;}
.y53{bottom:958.373333pt;}
.y7{bottom:968.933333pt;}
.yb1{bottom:974.373333pt;}
.yd0{bottom:977.253333pt;}
.y6{bottom:981.413333pt;}
.y33{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.yb0{bottom:1003.813333pt;}
.ycf{bottom:1005.093333pt;}
.y4{bottom:1005.733333pt;}
.y32{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.yaf{bottom:1032.613333pt;}
.h7{height:23.140625pt;}
.h10{height:27.552000pt;}
.h15{height:29.120000pt;}
.h12{height:29.440000pt;}
.h13{height:29.472000pt;}
.h6{height:31.406250pt;}
.h5{height:41.456250pt;}
.h4{height:42.570000pt;}
.h3{height:44.648750pt;}
.hc{height:46.281250pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.hb{height:65.776250pt;}
.h16{height:65.781915pt;}
.h11{height:82.592000pt;}
.h14{height:82.912000pt;}
.hf{height:111.104000pt;}
.he{height:793.333333pt;}
.hd{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:63.392000pt;}
.wc{width:65.280000pt;}
.we{width:65.312000pt;}
.w6{width:65.600000pt;}
.wb{width:68.192000pt;}
.w11{width:71.072000pt;}
.w14{width:74.880000pt;}
.wd{width:74.912000pt;}
.w12{width:76.800000pt;}
.w10{width:76.832000pt;}
.wf{width:77.120000pt;}
.w13{width:77.152000pt;}
.w7{width:209.986667pt;}
.w15{width:211.906667pt;}
.w16{width:218.626667pt;}
.w8{width:220.546667pt;}
.w9{width:226.306667pt;}
.wa{width:232.066667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:1.280000pt;}
.x1a{left:2.560000pt;}
.x17{left:3.840000pt;}
.x24{left:4.800000pt;}
.x35{left:5.760000pt;}
.x1d{left:7.066667pt;}
.x22{left:8.000000pt;}
.x20{left:8.960000pt;}
.x30{left:9.920000pt;}
.x1e{left:10.880000pt;}
.x16{left:12.160000pt;}
.x25{left:13.760000pt;}
.x28{left:16.640000pt;}
.x19{left:17.920000pt;}
.x1c{left:22.746667pt;}
.x21{left:23.680000pt;}
.x2d{left:51.560000pt;}
.x12{left:52.520000pt;}
.x10{left:54.120000pt;}
.x15{left:55.386667pt;}
.x2e{left:57.626667pt;}
.x2b{left:64.032000pt;}
.xd{left:73.312000pt;}
.xb{left:75.551983pt;}
.x2{left:94.431988pt;}
.xc{left:122.591983pt;}
.x3{left:135.426655pt;}
.xf{left:139.546667pt;}
.x8{left:141.826655pt;}
.x18{left:208.386667pt;}
.x7{left:213.533322pt;}
.x1b{left:274.626667pt;}
.x4{left:331.013322pt;}
.x11{left:350.173333pt;}
.x2c{left:352.093333pt;}
.x6{left:359.173322pt;}
.x36{left:389.599988pt;}
.x1{left:393.119988pt;}
.x5{left:396.959988pt;}
.x1f{left:416.133333pt;}
.x23{left:493.893333pt;}
.xa{left:557.599983pt;}
.x13{left:571.360000pt;}
.x26{left:643.066667pt;}
.x31{left:648.826667pt;}
.x9{left:690.813322pt;}
.x27{left:720.506667pt;}
.x32{left:726.626667pt;}
.x14{left:798.306667pt;}
.x2f{left:804.066667pt;}
.x29{left:875.773333pt;}
.x33{left:881.533333pt;}
.x2a{left:953.253333pt;}
.x34{left:959.013333pt;}
}




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