
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_16028f0d39f53f25a98ace5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f2f4d8b704c1cf5f495f1092.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_9773050aecd7f4b28d85f6a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_49f8a48729c9e03ffb5302ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_7a036b2aae01894c85333231.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_071bfa000af7128ab2c98120.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_59a08142d1e33ee3d512fda7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_f02a85a7597387c02e368363.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_edfe61ea8dd6202c6abc7ca3.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.391800px;}
.ls13{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.lsd{letter-spacing:-0.031800px;}
.lsa{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.016200px;}
.ls15{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.166200px;}
.ls12{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.204000px;}
.ls1c{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:47.726640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsf{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.453600px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.430400px;}
.ws8{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.242600px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.271800px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.550080px;}
._a{margin-left:-2.312640px;}
._0{margin-left:-1.050000px;}
._4{width:1.273212px;}
._7{width:2.815189px;}
._2{width:3.943115px;}
._1{width:4.948836px;}
._3{width:6.511441px;}
._8{width:8.476800px;}
._6{width:9.553872px;}
._5{width:10.583040px;}
._e{width:12.144240px;}
._9{width:14.294280px;}
._f{width:15.645480px;}
._12{width:16.744920px;}
._1f{width:17.791920px;}
._d{width:18.997800px;}
._c{width:20.080200px;}
._11{width:21.102120px;}
._10{width:22.304400px;}
._20{width:23.355831px;}
._17{width:31.082040px;}
._13{width:34.569000px;}
._1d{width:64.148040px;}
._1e{width:67.214160px;}
._19{width:83.386440px;}
._18{width:103.586760px;}
._1b{width:108.456480px;}
._16{width:125.530560px;}
._15{width:145.430280px;}
._14{width:155.289960px;}
._1c{width:160.941240px;}
._1a{width:207.714600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y69{bottom:7.830000px;}
.y6b{bottom:7.920000px;}
.y66{bottom:9.000000px;}
.y67{bottom:13.500000px;}
.ya2{bottom:21.330000px;}
.yab{bottom:21.420000px;}
.y8d{bottom:25.470000px;}
.ya3{bottom:29.970000px;}
.y65{bottom:31.050000px;}
.y95{bottom:34.470000px;}
.ya1{bottom:38.970000px;}
.y8c{bottom:43.020000px;}
.y9a{bottom:47.520000px;}
.ya5{bottom:47.610000px;}
.y94{bottom:52.020000px;}
.ya0{bottom:56.520000px;}
.ya9{bottom:61.020000px;}
.y99{bottom:65.160000px;}
.y93{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y9f{bottom:74.160000px;}
.y2b{bottom:74.190000px;}
.ya8{bottom:78.660000px;}
.y9c{bottom:82.710000px;}
.y98{bottom:87.210000px;}
.y92{bottom:91.710000px;}
.ya7{bottom:96.210000px;}
.y9b{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.y97{bottom:104.850000px;}
.y91{bottom:109.350000px;}
.y96{bottom:122.400000px;}
.y90{bottom:126.900000px;}
.yc6{bottom:127.470000px;}
.y8e{bottom:127.650000px;}
.y29{bottom:135.120000px;}
.y5d{bottom:142.500000px;}
.y8f{bottom:144.450000px;}
.yc5{bottom:145.020000px;}
.y82{bottom:151.320000px;}
.y57{bottom:152.310000px;}
.y28{bottom:152.670000px;}
.yc4{bottom:162.660000px;}
.y77{bottom:163.110000px;}
.yed{bottom:168.780000px;}
.y81{bottom:168.870000px;}
.y56{bottom:169.860000px;}
.y27{bottom:170.220000px;}
.y5c{bottom:174.720000px;}
.y41{bottom:180.030000px;}
.yc3{bottom:180.210000px;}
.y76{bottom:180.660000px;}
.yec{bottom:186.330000px;}
.y80{bottom:186.510000px;}
.y55{bottom:187.410000px;}
.y26{bottom:187.860000px;}
.y40{bottom:197.580000px;}
.yc2{bottom:197.850000px;}
.y75{bottom:198.210000px;}
.y54{bottom:205.050000px;}
.y25{bottom:205.410000px;}
.yeb{bottom:212.970000px;}
.y3f{bottom:215.220000px;}
.y74{bottom:215.850000px;}
.y7f{bottom:222.060000px;}
.y53{bottom:222.600000px;}
.y24{bottom:223.050000px;}
.yea{bottom:230.520000px;}
.y3e{bottom:232.770000px;}
.y73{bottom:233.400000px;}
.y23{bottom:240.600000px;}
.ye9{bottom:248.070000px;}
.y52{bottom:249.240000px;}
.y3d{bottom:250.320000px;}
.yc1{bottom:250.950000px;}
.y7e{bottom:254.280000px;}
.y22{bottom:258.150000px;}
.y72{bottom:259.950000px;}
.y3c{bottom:267.960000px;}
.yc0{bottom:268.590000px;}
.ye8{bottom:274.710000px;}
.y21{bottom:275.790000px;}
.y51{bottom:284.790000px;}
.y3b{bottom:285.510000px;}
.ybf{bottom:286.140000px;}
.y8b{bottom:291.630000px;}
.ye7{bottom:292.260000px;}
.y20{bottom:293.340000px;}
.y71{bottom:295.590000px;}
.y50{bottom:302.340000px;}
.y3a{bottom:303.150000px;}
.ybe{bottom:303.690000px;}
.y1f{bottom:310.980000px;}
.ye6{bottom:319.170000px;}
.y39{bottom:320.700000px;}
.ybd{bottom:321.330000px;}
.y70{bottom:327.810000px;}
.y1e{bottom:328.530000px;}
.y4f{bottom:329.250000px;}
.ybc{bottom:338.880000px;}
.y1d{bottom:346.080000px;}
.y38{bottom:347.250000px;}
.ybb{bottom:356.520000px;}
.ye5{bottom:367.500000px;}
.y1c{bottom:372.990000px;}
.yba{bottom:374.070000px;}
.y8a{bottom:375.510000px;}
.y4e{bottom:377.580000px;}
.y37{bottom:382.890000px;}
.yb9{bottom:391.620000px;}
.ye4{bottom:394.320000px;}
.y4d{bottom:395.130000px;}
.yb8{bottom:409.260000px;}
.y89{bottom:411.060000px;}
.y36{bottom:415.110000px;}
.y1b{bottom:421.320000px;}
.y4c{bottom:421.680000px;}
.yb7{bottom:426.810000px;}
.y88{bottom:428.610000px;}
.ye3{bottom:431.400000px;}
.y1a{bottom:439.230000px;}
.yb6{bottom:444.450000px;}
.y87{bottom:446.250000px;}
.y4b{bottom:457.320000px;}
.ye2{bottom:458.310000px;}
.yb5{bottom:462.000000px;}
.y86{bottom:463.800000px;}
.y4a{bottom:474.900000px;}
.y19{bottom:476.250000px;}
.yb4{bottom:479.580000px;}
.y85{bottom:481.470000px;}
.y49{bottom:492.540000px;}
.y18{bottom:493.800000px;}
.ye1{bottom:495.330000px;}
.yb3{bottom:497.220000px;}
.y48{bottom:510.090000px;}
.y17{bottom:511.440000px;}
.ye0{bottom:512.970000px;}
.yb2{bottom:514.770000px;}
.y84{bottom:517.020000px;}
.y47{bottom:527.640000px;}
.y16{bottom:528.990000px;}
.yb1{bottom:532.410000px;}
.ydf{bottom:539.790000px;}
.y46{bottom:545.280000px;}
.y15{bottom:546.630000px;}
.y83{bottom:549.240000px;}
.yb0{bottom:549.960000px;}
.y45{bottom:562.830000px;}
.y14{bottom:564.180000px;}
.yaf{bottom:576.870000px;}
.yde{bottom:577.140000px;}
.y13{bottom:581.730000px;}
.y44{bottom:589.470000px;}
.y12{bottom:599.370000px;}
.y5b{bottom:601.080000px;}
.y11{bottom:616.920000px;}
.y5a{bottom:618.720000px;}
.yae{bottom:622.500000px;}
.y43{bottom:625.020000px;}
.ydd{bottom:625.470000px;}
.y10{bottom:634.560000px;}
.y101{bottom:637.260000px;}
.ydc{bottom:643.020000px;}
.yad{bottom:649.860000px;}
.y59{bottom:654.270000px;}
.y100{bottom:654.810000px;}
.y42{bottom:657.240000px;}
.ydb{bottom:660.660000px;}
.yf{bottom:661.380000px;}
.yff{bottom:672.360000px;}
.yda{bottom:678.210000px;}
.y7d{bottom:680.640000px;}
.y58{bottom:686.490000px;}
.yac{bottom:694.770000px;}
.yd9{bottom:695.760000px;}
.y7c{bottom:698.280000px;}
.yfe{bottom:699.000000px;}
.ye{bottom:709.710000px;}
.yd8{bottom:713.400000px;}
.y7b{bottom:715.830000px;}
.yfd{bottom:716.550000px;}
.yd7{bottom:730.950000px;}
.y7a{bottom:742.470000px;}
.yfc{bottom:743.190000px;}
.yaa{bottom:744.180000px;}
.yd{bottom:745.530000px;}
.yd6{bottom:748.590000px;}
.yfb{bottom:760.740000px;}
.yd5{bottom:775.500000px;}
.y79{bottom:778.020000px;}
.yfa{bottom:778.290000px;}
.yc{bottom:781.530000px;}
.y6f{bottom:785.670000px;}
.y6e{bottom:803.310000px;}
.yf9{bottom:804.930000px;}
.y78{bottom:810.240000px;}
.yb{bottom:821.310000px;}
.yf8{bottom:822.480000px;}
.yd4{bottom:823.740000px;}
.ya6{bottom:837.780000px;}
.y6d{bottom:838.860000px;}
.ya{bottom:839.310000px;}
.yf7{bottom:840.030000px;}
.yd3{bottom:841.290000px;}
.y9{bottom:853.530000px;}
.y6c{bottom:853.800000px;}
.yd2{bottom:858.930000px;}
.yf6{bottom:866.670000px;}
.y8{bottom:875.310000px;}
.yd1{bottom:876.480000px;}
.y6a{bottom:881.160000px;}
.yf5{bottom:884.220000px;}
.yd0{bottom:894.030000px;}
.yf4{bottom:901.860000px;}
.y7{bottom:907.620000px;}
.y68{bottom:908.520000px;}
.y35{bottom:908.970000px;}
.ycf{bottom:911.670000px;}
.y34{bottom:926.610000px;}
.y6{bottom:926.970000px;}
.yf3{bottom:928.410000px;}
.yce{bottom:929.220000px;}
.y64{bottom:935.880000px;}
.yf2{bottom:945.960000px;}
.ycd{bottom:946.860000px;}
.y33{bottom:953.160000px;}
.ya4{bottom:953.430000px;}
.yf1{bottom:963.600000px;}
.ycc{bottom:964.410000px;}
.y5{bottom:965.220000px;}
.ycb{bottom:981.960000px;}
.y32{bottom:985.740000px;}
.y4{bottom:989.880000px;}
.yf0{bottom:990.150000px;}
.yca{bottom:999.600000px;}
.y63{bottom:1007.790000px;}
.y3{bottom:1014.570000px;}
.yc9{bottom:1017.180000px;}
.y9e{bottom:1020.510000px;}
.y31{bottom:1021.680000px;}
.yef{bottom:1034.370000px;}
.yc8{bottom:1034.820000px;}
.y62{bottom:1043.370000px;}
.yee{bottom:1051.920000px;}
.yc7{bottom:1052.370000px;}
.y61{bottom:1060.920000px;}
.y30{bottom:1069.920000px;}
.y60{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y5f{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y5e{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y9d{bottom:1131.660000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h12{height:22.140000px;}
.he{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h18{height:44.190000px;}
.h17{height:48.690000px;}
.hc{height:49.770000px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h10{height:61.740000px;}
.h19{height:61.793886px;}
.ha{height:62.585859px;}
.h14{height:66.360000px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h16{height:92.880000px;}
.h13{height:110.430000px;}
.h15{height:114.930000px;}
.h11{height:163.170000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:81.360000px;}
.w3{width:84.960000px;}
.w10{width:93.870000px;}
.wb{width:94.590000px;}
.we{width:96.300000px;}
.wf{width:99.540000px;}
.w6{width:106.110000px;}
.wd{width:111.270000px;}
.w4{width:116.400000px;}
.w9{width:117.000000px;}
.w5{width:117.720000px;}
.wa{width:124.770000px;}
.w7{width:127.650000px;}
.wc{width:130.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x21{left:111.239987px;}
.xd{left:154.530000px;}
.x1b{left:194.250000px;}
.x14{left:218.909987px;}
.x1a{left:243.029987px;}
.x5{left:246.179987px;}
.x2{left:251.759987px;}
.xe{left:271.650000px;}
.x9{left:276.059987px;}
.x1c{left:289.650000px;}
.xb{left:291.629987px;}
.x18{left:301.349987px;}
.x16{left:315.389987px;}
.x7{left:318.809987px;}
.xf{left:390.090000px;}
.x1d{left:421.050000px;}
.x10{left:497.010000px;}
.x1e{left:533.130000px;}
.x11{left:625.380000px;}
.x1f{left:630.240000px;}
.x12{left:707.460000px;}
.x8{left:717.809987px;}
.xa{left:721.139987px;}
.x20{left:730.590000px;}
.x19{left:752.639987px;}
.x15{left:762.809987px;}
.x17{left:763.889987px;}
.x13{left:766.139987px;}
.x6{left:772.889987px;}
.x4{left:780.809987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.348267pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.lsd{letter-spacing:-0.028267pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.014400pt;}
.ls15{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.147733pt;}
.ls12{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.181333pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:71.863680pt;}
.wsf{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.403200pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.938133pt;}
.ws8{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.771200pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.241600pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-3.155627pt;}
._a{margin-left:-2.055680pt;}
._0{margin-left:-0.933333pt;}
._4{width:1.131744pt;}
._7{width:2.502390pt;}
._2{width:3.504991pt;}
._1{width:4.398965pt;}
._3{width:5.787948pt;}
._8{width:7.534933pt;}
._6{width:8.492331pt;}
._5{width:9.407147pt;}
._e{width:10.794880pt;}
._9{width:12.706027pt;}
._f{width:13.907093pt;}
._12{width:14.884373pt;}
._1f{width:15.815040pt;}
._d{width:16.886933pt;}
._c{width:17.849067pt;}
._11{width:18.757440pt;}
._10{width:19.826133pt;}
._20{width:20.760739pt;}
._17{width:27.628480pt;}
._13{width:30.728000pt;}
._1d{width:57.020480pt;}
._1e{width:59.745920pt;}
._19{width:74.121280pt;}
._18{width:92.077120pt;}
._1b{width:96.405760pt;}
._16{width:111.582720pt;}
._15{width:129.271360pt;}
._14{width:138.035520pt;}
._1c{width:143.058880pt;}
._1a{width:184.635200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:6.960000pt;}
.y6b{bottom:7.040000pt;}
.y66{bottom:8.000000pt;}
.y67{bottom:12.000000pt;}
.ya2{bottom:18.960000pt;}
.yab{bottom:19.040000pt;}
.y8d{bottom:22.640000pt;}
.ya3{bottom:26.640000pt;}
.y65{bottom:27.600000pt;}
.y95{bottom:30.640000pt;}
.ya1{bottom:34.640000pt;}
.y8c{bottom:38.240000pt;}
.y9a{bottom:42.240000pt;}
.ya5{bottom:42.320000pt;}
.y94{bottom:46.240000pt;}
.ya0{bottom:50.240000pt;}
.ya9{bottom:54.240000pt;}
.y99{bottom:57.920000pt;}
.y93{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y9f{bottom:65.920000pt;}
.y2b{bottom:65.946667pt;}
.ya8{bottom:69.920000pt;}
.y9c{bottom:73.520000pt;}
.y98{bottom:77.520000pt;}
.y92{bottom:81.520000pt;}
.ya7{bottom:85.520000pt;}
.y9b{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.y97{bottom:93.200000pt;}
.y91{bottom:97.200000pt;}
.y96{bottom:108.800000pt;}
.y90{bottom:112.800000pt;}
.yc6{bottom:113.306667pt;}
.y8e{bottom:113.466667pt;}
.y29{bottom:120.106667pt;}
.y5d{bottom:126.666667pt;}
.y8f{bottom:128.400000pt;}
.yc5{bottom:128.906667pt;}
.y82{bottom:134.506667pt;}
.y57{bottom:135.386667pt;}
.y28{bottom:135.706667pt;}
.yc4{bottom:144.586667pt;}
.y77{bottom:144.986667pt;}
.yed{bottom:150.026667pt;}
.y81{bottom:150.106667pt;}
.y56{bottom:150.986667pt;}
.y27{bottom:151.306667pt;}
.y5c{bottom:155.306667pt;}
.y41{bottom:160.026667pt;}
.yc3{bottom:160.186667pt;}
.y76{bottom:160.586667pt;}
.yec{bottom:165.626667pt;}
.y80{bottom:165.786667pt;}
.y55{bottom:166.586667pt;}
.y26{bottom:166.986667pt;}
.y40{bottom:175.626667pt;}
.yc2{bottom:175.866667pt;}
.y75{bottom:176.186667pt;}
.y54{bottom:182.266667pt;}
.y25{bottom:182.586667pt;}
.yeb{bottom:189.306667pt;}
.y3f{bottom:191.306667pt;}
.y74{bottom:191.866667pt;}
.y7f{bottom:197.386667pt;}
.y53{bottom:197.866667pt;}
.y24{bottom:198.266667pt;}
.yea{bottom:204.906667pt;}
.y3e{bottom:206.906667pt;}
.y73{bottom:207.466667pt;}
.y23{bottom:213.866667pt;}
.ye9{bottom:220.506667pt;}
.y52{bottom:221.546667pt;}
.y3d{bottom:222.506667pt;}
.yc1{bottom:223.066667pt;}
.y7e{bottom:226.026667pt;}
.y22{bottom:229.466667pt;}
.y72{bottom:231.066667pt;}
.y3c{bottom:238.186667pt;}
.yc0{bottom:238.746667pt;}
.ye8{bottom:244.186667pt;}
.y21{bottom:245.146667pt;}
.y51{bottom:253.146667pt;}
.y3b{bottom:253.786667pt;}
.ybf{bottom:254.346667pt;}
.y8b{bottom:259.226667pt;}
.ye7{bottom:259.786667pt;}
.y20{bottom:260.746667pt;}
.y71{bottom:262.746667pt;}
.y50{bottom:268.746667pt;}
.y3a{bottom:269.466667pt;}
.ybe{bottom:269.946667pt;}
.y1f{bottom:276.426667pt;}
.ye6{bottom:283.706667pt;}
.y39{bottom:285.066667pt;}
.ybd{bottom:285.626667pt;}
.y70{bottom:291.386667pt;}
.y1e{bottom:292.026667pt;}
.y4f{bottom:292.666667pt;}
.ybc{bottom:301.226667pt;}
.y1d{bottom:307.626667pt;}
.y38{bottom:308.666667pt;}
.ybb{bottom:316.906667pt;}
.ye5{bottom:326.666667pt;}
.y1c{bottom:331.546667pt;}
.yba{bottom:332.506667pt;}
.y8a{bottom:333.786667pt;}
.y4e{bottom:335.626667pt;}
.y37{bottom:340.346667pt;}
.yb9{bottom:348.106667pt;}
.ye4{bottom:350.506667pt;}
.y4d{bottom:351.226667pt;}
.yb8{bottom:363.786667pt;}
.y89{bottom:365.386667pt;}
.y36{bottom:368.986667pt;}
.y1b{bottom:374.506667pt;}
.y4c{bottom:374.826667pt;}
.yb7{bottom:379.386667pt;}
.y88{bottom:380.986667pt;}
.ye3{bottom:383.466667pt;}
.y1a{bottom:390.426667pt;}
.yb6{bottom:395.066667pt;}
.y87{bottom:396.666667pt;}
.y4b{bottom:406.506667pt;}
.ye2{bottom:407.386667pt;}
.yb5{bottom:410.666667pt;}
.y86{bottom:412.266667pt;}
.y4a{bottom:422.133333pt;}
.y19{bottom:423.333333pt;}
.yb4{bottom:426.293333pt;}
.y85{bottom:427.973333pt;}
.y49{bottom:437.813333pt;}
.y18{bottom:438.933333pt;}
.ye1{bottom:440.293333pt;}
.yb3{bottom:441.973333pt;}
.y48{bottom:453.413333pt;}
.y17{bottom:454.613333pt;}
.ye0{bottom:455.973333pt;}
.yb2{bottom:457.573333pt;}
.y84{bottom:459.573333pt;}
.y47{bottom:469.013333pt;}
.y16{bottom:470.213333pt;}
.yb1{bottom:473.253333pt;}
.ydf{bottom:479.813333pt;}
.y46{bottom:484.693333pt;}
.y15{bottom:485.893333pt;}
.y83{bottom:488.213333pt;}
.yb0{bottom:488.853333pt;}
.y45{bottom:500.293333pt;}
.y14{bottom:501.493333pt;}
.yaf{bottom:512.773333pt;}
.yde{bottom:513.013333pt;}
.y13{bottom:517.093333pt;}
.y44{bottom:523.973333pt;}
.y12{bottom:532.773333pt;}
.y5b{bottom:534.293333pt;}
.y11{bottom:548.373333pt;}
.y5a{bottom:549.973333pt;}
.yae{bottom:553.333333pt;}
.y43{bottom:555.573333pt;}
.ydd{bottom:555.973333pt;}
.y10{bottom:564.053333pt;}
.y101{bottom:566.453333pt;}
.ydc{bottom:571.573333pt;}
.yad{bottom:577.653333pt;}
.y59{bottom:581.573333pt;}
.y100{bottom:582.053333pt;}
.y42{bottom:584.213333pt;}
.ydb{bottom:587.253333pt;}
.yf{bottom:587.893333pt;}
.yff{bottom:597.653333pt;}
.yda{bottom:602.853333pt;}
.y7d{bottom:605.013333pt;}
.y58{bottom:610.213333pt;}
.yac{bottom:617.573333pt;}
.yd9{bottom:618.453333pt;}
.y7c{bottom:620.693333pt;}
.yfe{bottom:621.333333pt;}
.ye{bottom:630.853333pt;}
.yd8{bottom:634.133333pt;}
.y7b{bottom:636.293333pt;}
.yfd{bottom:636.933333pt;}
.yd7{bottom:649.733333pt;}
.y7a{bottom:659.973333pt;}
.yfc{bottom:660.613333pt;}
.yaa{bottom:661.493333pt;}
.yd{bottom:662.693333pt;}
.yd6{bottom:665.413333pt;}
.yfb{bottom:676.213333pt;}
.yd5{bottom:689.333333pt;}
.y79{bottom:691.573333pt;}
.yfa{bottom:691.813333pt;}
.yc{bottom:694.693333pt;}
.y6f{bottom:698.373333pt;}
.y6e{bottom:714.053333pt;}
.yf9{bottom:715.493333pt;}
.y78{bottom:720.213333pt;}
.yb{bottom:730.053333pt;}
.yf8{bottom:731.093333pt;}
.yd4{bottom:732.213333pt;}
.ya6{bottom:744.693333pt;}
.y6d{bottom:745.653333pt;}
.ya{bottom:746.053333pt;}
.yf7{bottom:746.693333pt;}
.yd3{bottom:747.813333pt;}
.y9{bottom:758.693333pt;}
.y6c{bottom:758.933333pt;}
.yd2{bottom:763.493333pt;}
.yf6{bottom:770.373333pt;}
.y8{bottom:778.053333pt;}
.yd1{bottom:779.093333pt;}
.y6a{bottom:783.253333pt;}
.yf5{bottom:785.973333pt;}
.yd0{bottom:794.693333pt;}
.yf4{bottom:801.653333pt;}
.y7{bottom:806.773333pt;}
.y68{bottom:807.573333pt;}
.y35{bottom:807.973333pt;}
.ycf{bottom:810.373333pt;}
.y34{bottom:823.653333pt;}
.y6{bottom:823.973333pt;}
.yf3{bottom:825.253333pt;}
.yce{bottom:825.973333pt;}
.y64{bottom:831.893333pt;}
.yf2{bottom:840.853333pt;}
.ycd{bottom:841.653333pt;}
.y33{bottom:847.253333pt;}
.ya4{bottom:847.493333pt;}
.yf1{bottom:856.533333pt;}
.ycc{bottom:857.253333pt;}
.y5{bottom:857.973333pt;}
.ycb{bottom:872.853333pt;}
.y32{bottom:876.213333pt;}
.y4{bottom:879.893333pt;}
.yf0{bottom:880.133333pt;}
.yca{bottom:888.533333pt;}
.y63{bottom:895.813333pt;}
.y3{bottom:901.840000pt;}
.yc9{bottom:904.160000pt;}
.y9e{bottom:907.120000pt;}
.y31{bottom:908.160000pt;}
.yef{bottom:919.440000pt;}
.yc8{bottom:919.840000pt;}
.y62{bottom:927.440000pt;}
.yee{bottom:935.040000pt;}
.yc7{bottom:935.440000pt;}
.y61{bottom:943.040000pt;}
.y30{bottom:951.040000pt;}
.y60{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y5f{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y5e{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y9d{bottom:1005.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h12{height:19.680000pt;}
.he{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h18{height:39.280000pt;}
.h17{height:43.280000pt;}
.hc{height:44.240000pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h10{height:54.880000pt;}
.h19{height:54.927899pt;}
.ha{height:55.631875pt;}
.h14{height:58.986667pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h16{height:82.560000pt;}
.h13{height:98.160000pt;}
.h15{height:102.160000pt;}
.h11{height:145.040000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:72.320000pt;}
.w3{width:75.520000pt;}
.w10{width:83.440000pt;}
.wb{width:84.080000pt;}
.we{width:85.600000pt;}
.wf{width:88.480000pt;}
.w6{width:94.320000pt;}
.wd{width:98.906667pt;}
.w4{width:103.466667pt;}
.w9{width:104.000000pt;}
.w5{width:104.640000pt;}
.wa{width:110.906667pt;}
.w7{width:113.466667pt;}
.wc{width:116.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x21{left:98.879988pt;}
.xd{left:137.360000pt;}
.x1b{left:172.666667pt;}
.x14{left:194.586655pt;}
.x1a{left:216.026655pt;}
.x5{left:218.826655pt;}
.x2{left:223.786655pt;}
.xe{left:241.466667pt;}
.x9{left:245.386655pt;}
.x1c{left:257.466667pt;}
.xb{left:259.226655pt;}
.x18{left:267.866655pt;}
.x16{left:280.346655pt;}
.x7{left:283.386655pt;}
.xf{left:346.746667pt;}
.x1d{left:374.266667pt;}
.x10{left:441.786667pt;}
.x1e{left:473.893333pt;}
.x11{left:555.893333pt;}
.x1f{left:560.213333pt;}
.x12{left:628.853333pt;}
.x8{left:638.053322pt;}
.xa{left:641.013322pt;}
.x20{left:649.413333pt;}
.x19{left:669.013322pt;}
.x15{left:678.053322pt;}
.x17{left:679.013322pt;}
.x13{left:681.013322pt;}
.x6{left:687.013322pt;}
.x4{left:694.053322pt;}
.x3{left:711.413322pt;}
}




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