
    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_5a35fd45f838585196795d2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_870fccf98eb875631e535edb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_275238e526b0c2deb3f21cf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_822fbd89dd3408d4f1e39c1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_83a4bb97ff853711fac25125.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_e652e79b420c540912d0c137.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_664aaecf4b156648e183579e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.852539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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:-77.760000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.840000px;}
.ls13{letter-spacing:1.440000px;}
.ls6{letter-spacing:8.100000px;}
.ls12{letter-spacing:9.360000px;}
.ls11{letter-spacing:10.800000px;}
.lsa{letter-spacing:13.680000px;}
.ls14{letter-spacing:21.600000px;}
.ls9{letter-spacing:38.160000px;}
.ls3{letter-spacing:42.821280px;}
.ls7{letter-spacing:2592.636000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws7{word-spacing:-59.760000px;}
.ws0{word-spacing:-23.977440px;}
.ws5{word-spacing:-21.420000px;}
.wsb{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._4{width:2.777040px;}
._15{width:4.392000px;}
._18{width:5.472000px;}
._13{width:6.480000px;}
._14{width:7.828800px;}
._17{width:8.912640px;}
._c{width:10.008000px;}
._9{width:11.808000px;}
._a{width:12.888000px;}
._b{width:14.316000px;}
._24{width:15.365280px;}
._1c{width:16.632000px;}
._11{width:19.128000px;}
._7{width:20.208000px;}
._8{width:21.480000px;}
._23{width:23.544000px;}
._e{width:24.768000px;}
._f{width:25.776000px;}
._10{width:26.825280px;}
._21{width:28.842720px;}
._1d{width:30.065280px;}
._1e{width:31.105920px;}
._12{width:32.304000px;}
._16{width:33.360000px;}
._19{width:34.511040px;}
._d{width:35.784000px;}
._22{width:37.920000px;}
._1a{width:40.392000px;}
._1b{width:41.616000px;}
._25{width:46.152000px;}
._26{width:47.304000px;}
._1f{width:56.520000px;}
._20{width:57.569760px;}
._6{width:74.718480px;}
._5{width:76.033440px;}
._3{width:129.205920px;}
._27{width:139.248000px;}
._2{width:1831.997760px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(36,36,36);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:3.240000px;}
.ya8{bottom:8.460000px;}
.yab{bottom:9.180000px;}
.yad{bottom:9.360000px;}
.yb9{bottom:9.390000px;}
.yb0{bottom:10.080000px;}
.yb1{bottom:10.260000px;}
.yc5{bottom:20.385000px;}
.ycf{bottom:20.520000px;}
.yc8{bottom:31.140000px;}
.ybb{bottom:32.400000px;}
.ybe{bottom:32.580000px;}
.y5{bottom:82.116000px;}
.y4{bottom:128.736000px;}
.y3{bottom:147.636000px;}
.y2{bottom:166.710000px;}
.y32{bottom:190.470000px;}
.yb6{bottom:192.090000px;}
.y7d{bottom:205.230000px;}
.y31{bottom:211.170000px;}
.y50{bottom:213.330000px;}
.yb5{bottom:216.030000px;}
.yde{bottom:219.810000px;}
.y30{bottom:231.870000px;}
.ye7{bottom:233.490000px;}
.y9b{bottom:234.390000px;}
.y7c{bottom:236.370000px;}
.yb4{bottom:240.150000px;}
.y11e{bottom:243.030000px;}
.y4f{bottom:244.290000px;}
.ydd{bottom:250.950000px;}
.y2f{bottom:252.570000px;}
.yff{bottom:261.390000px;}
.yb3{bottom:264.090000px;}
.ye6{bottom:264.630000px;}
.y9a{bottom:265.530000px;}
.y7b{bottom:267.330000px;}
.y2e{bottom:273.270000px;}
.y4e{bottom:275.250000px;}
.y11d{bottom:277.230000px;}
.ydc{bottom:281.910000px;}
.yfe{bottom:285.330000px;}
.yb2{bottom:288.030000px;}
.y2d{bottom:293.970000px;}
.ye5{bottom:295.590000px;}
.y99{bottom:296.490000px;}
.y7a{bottom:298.470000px;}
.y11c{bottom:301.170000px;}
.y4d{bottom:306.390000px;}
.yfd{bottom:309.090000px;}
.yaf{bottom:312.150000px;}
.ydb{bottom:313.050000px;}
.y2c{bottom:314.670000px;}
.ye4{bottom:326.730000px;}
.y98{bottom:327.630000px;}
.y79{bottom:329.430000px;}
.y2b{bottom:335.370000px;}
.yae{bottom:337.215000px;}
.y4c{bottom:337.395000px;}
.yfc{bottom:343.335000px;}
.yda{bottom:344.055000px;}
.y2a{bottom:356.115000px;}
.ye3{bottom:357.735000px;}
.y97{bottom:358.635000px;}
.y11b{bottom:359.175000px;}
.y78{bottom:360.615000px;}
.yac{bottom:361.155000px;}
.yfb{bottom:367.275000px;}
.y4b{bottom:370.695000px;}
.yd9{bottom:375.195000px;}
.y29{bottom:376.815000px;}
.yaa{bottom:385.275000px;}
.ye2{bottom:388.875000px;}
.y96{bottom:389.775000px;}
.y77{bottom:391.575000px;}
.y11a{bottom:393.555000px;}
.y68{bottom:396.795000px;}
.y28{bottom:397.515000px;}
.yfa{bottom:401.475000px;}
.yd8{bottom:402.915000px;}
.ya9{bottom:409.215000px;}
.y4a{bottom:412.995000px;}
.y119{bottom:417.315000px;}
.y27{bottom:418.215000px;}
.ye1{bottom:419.835000px;}
.yd7{bottom:420.555000px;}
.y95{bottom:420.735000px;}
.y76{bottom:422.535000px;}
.yf9{bottom:425.235000px;}
.y67{bottom:427.755000px;}
.ya7{bottom:432.435000px;}
.y26{bottom:438.915000px;}
.yd6{bottom:444.495000px;}
.yf8{bottom:449.175000px;}
.ye0{bottom:450.975000px;}
.y118{bottom:451.695000px;}
.y94{bottom:451.875000px;}
.y75{bottom:453.675000px;}
.y66{bottom:458.895000px;}
.y25{bottom:459.615000px;}
.ya6{bottom:465.555000px;}
.y49{bottom:467.895000px;}
.yd5{bottom:468.615000px;}
.y117{bottom:475.455000px;}
.y24{bottom:480.315000px;}
.ydf{bottom:481.935000px;}
.y93{bottom:482.835000px;}
.yf7{bottom:483.375000px;}
.y74{bottom:484.635000px;}
.ya5{bottom:486.255000px;}
.y65{bottom:489.855000px;}
.yd4{bottom:492.555000px;}
.y48{bottom:498.855000px;}
.y116{bottom:499.215000px;}
.y23{bottom:501.015000px;}
.yf6{bottom:507.135000px;}
.ya4{bottom:513.075000px;}
.y92{bottom:513.975000px;}
.y73{bottom:515.775000px;}
.y64{bottom:520.995000px;}
.y22{bottom:521.715000px;}
.y47{bottom:529.995000px;}
.y115{bottom:533.595000px;}
.yd3{bottom:539.895000px;}
.yf5{bottom:541.515000px;}
.y21{bottom:542.415000px;}
.ya3{bottom:544.035000px;}
.y91{bottom:544.935000px;}
.y72{bottom:546.735000px;}
.y63{bottom:551.955000px;}
.y114{bottom:557.355000px;}
.y46{bottom:560.955000px;}
.y20{bottom:563.115000px;}
.yf4{bottom:565.275000px;}
.ya2{bottom:575.175000px;}
.y90{bottom:576.075000px;}
.y71{bottom:577.875000px;}
.y113{bottom:581.115000px;}
.y62{bottom:583.095000px;}
.y1f{bottom:583.815000px;}
.yd2{bottom:587.055000px;}
.y45{bottom:592.095000px;}
.yf3{bottom:599.655000px;}
.y1e{bottom:604.545000px;}
.ya1{bottom:606.165000px;}
.y8f{bottom:607.065000px;}
.y70{bottom:608.865000px;}
.yd1{bottom:611.025000px;}
.y61{bottom:614.085000px;}
.y112{bottom:615.525000px;}
.y44{bottom:623.085000px;}
.yf2{bottom:623.445000px;}
.y1d{bottom:625.245000px;}
.yd0{bottom:635.145000px;}
.ya0{bottom:637.305000px;}
.y8e{bottom:638.205000px;}
.y111{bottom:639.285000px;}
.y6f{bottom:640.005000px;}
.y60{bottom:645.045000px;}
.y1c{bottom:645.945000px;}
.yf1{bottom:650.625000px;}
.y43{bottom:654.225000px;}
.yce{bottom:659.085000px;}
.y110{bottom:663.045000px;}
.y1b{bottom:666.645000px;}
.y9f{bottom:668.265000px;}
.y8d{bottom:669.165000px;}
.y6e{bottom:670.965000px;}
.y5f{bottom:676.185000px;}
.yf0{bottom:683.385000px;}
.y42{bottom:685.185000px;}
.y1a{bottom:687.345000px;}
.ycd{bottom:694.365000px;}
.y10f{bottom:697.425000px;}
.y9e{bottom:699.405000px;}
.y8c{bottom:700.305000px;}
.y6d{bottom:702.105000px;}
.y5e{bottom:707.145000px;}
.y19{bottom:708.045000px;}
.y41{bottom:716.325000px;}
.ycc{bottom:718.305000px;}
.y10e{bottom:721.185000px;}
.y18{bottom:728.745000px;}
.y9d{bottom:730.365000px;}
.y8b{bottom:731.265000px;}
.yef{bottom:732.345000px;}
.y6c{bottom:733.065000px;}
.y5d{bottom:740.445000px;}
.ycb{bottom:742.245000px;}
.y10d{bottom:744.945000px;}
.y40{bottom:747.285000px;}
.y17{bottom:749.445000px;}
.y9c{bottom:761.505000px;}
.y8a{bottom:762.405000px;}
.yee{bottom:763.485000px;}
.yca{bottom:766.365000px;}
.y16{bottom:770.145000px;}
.y6b{bottom:775.905000px;}
.y3f{bottom:778.425000px;}
.y10c{bottom:779.325000px;}
.yc9{bottom:790.305000px;}
.y15{bottom:790.845000px;}
.y5c{bottom:792.465000px;}
.y89{bottom:793.365000px;}
.yed{bottom:794.445000px;}
.y10b{bottom:803.085000px;}
.y3e{bottom:809.385000px;}
.y14{bottom:811.545000px;}
.yc7{bottom:814.245000px;}
.y6a{bottom:822.345000px;}
.y5b{bottom:823.605000px;}
.y88{bottom:824.505000px;}
.yec{bottom:825.405000px;}
.y13{bottom:832.245000px;}
.y10a{bottom:837.465000px;}
.y3d{bottom:840.525000px;}
.y12{bottom:852.945000px;}
.y5a{bottom:854.565000px;}
.y87{bottom:855.465000px;}
.yeb{bottom:856.545000px;}
.yc4{bottom:860.145000px;}
.y109{bottom:861.225000px;}
.y3c{bottom:871.530000px;}
.y11{bottom:873.690000px;}
.y108{bottom:885.030000px;}
.y59{bottom:885.750000px;}
.y86{bottom:886.650000px;}
.yea{bottom:887.550000px;}
.y10{bottom:894.390000px;}
.yc3{bottom:895.290000px;}
.y3b{bottom:902.670000px;}
.yf{bottom:915.090000px;}
.y58{bottom:916.710000px;}
.y85{bottom:917.610000px;}
.ye9{bottom:918.690000px;}
.yc2{bottom:919.410000px;}
.y3a{bottom:933.630000px;}
.y107{bottom:943.170000px;}
.yc1{bottom:943.350000px;}
.y57{bottom:947.850000px;}
.ye{bottom:948.390000px;}
.y84{bottom:948.750000px;}
.ye8{bottom:957.930000px;}
.y39{bottom:964.770000px;}
.yc0{bottom:967.290000px;}
.yd{bottom:973.230000px;}
.y106{bottom:977.550000px;}
.y56{bottom:978.810000px;}
.y83{bottom:979.710000px;}
.ybf{bottom:991.410000px;}
.y38{bottom:995.730000px;}
.yc{bottom:1000.770000px;}
.y105{bottom:1001.310000px;}
.y55{bottom:1009.950000px;}
.y82{bottom:1010.850000px;}
.ybd{bottom:1015.350000px;}
.y104{bottom:1025.070000px;}
.y37{bottom:1026.870000px;}
.yb{bottom:1028.490000px;}
.y54{bottom:1040.910000px;}
.y81{bottom:1041.810000px;}
.ya{bottom:1056.030000px;}
.y36{bottom:1057.830000px;}
.y103{bottom:1059.450000px;}
.ybc{bottom:1062.690000px;}
.y53{bottom:1072.050000px;}
.y80{bottom:1072.950000px;}
.y102{bottom:1083.210000px;}
.y9{bottom:1083.570000px;}
.yba{bottom:1086.630000px;}
.y35{bottom:1088.970000px;}
.y52{bottom:1103.010000px;}
.y7f{bottom:1103.910000px;}
.y8{bottom:1111.290000px;}
.y101{bottom:1117.590000px;}
.y34{bottom:1119.930000px;}
.yb8{bottom:1133.790000px;}
.y51{bottom:1134.150000px;}
.y7e{bottom:1135.050000px;}
.y69{bottom:1136.850000px;}
.y7{bottom:1138.860000px;}
.y100{bottom:1141.380000px;}
.yb7{bottom:1157.940000px;}
.y33{bottom:1162.260000px;}
.y6{bottom:1165.140000px;}
.y1{bottom:1233.900000px;}
.ha{height:22.500000px;}
.hd{height:23.220000px;}
.h16{height:23.256000px;}
.h12{height:23.400000px;}
.h10{height:23.436000px;}
.he{height:24.336000px;}
.h13{height:34.416000px;}
.h15{height:34.560000px;}
.h14{height:45.000000px;}
.h11{height:46.440000px;}
.h8{height:48.761719px;}
.h9{height:49.255313px;}
.hf{height:50.510039px;}
.hb{height:53.077852px;}
.hc{height:53.573906px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h17{height:60.855469px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h5{height:85.052461px;}
.h6{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:149.580000px;}
.w6{width:149.796000px;}
.w4{width:299.370000px;}
.w3{width:374.655000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x15{left:50.580000px;}
.x14{left:57.465000px;}
.x12{left:60.480000px;}
.x17{left:69.345000px;}
.x1a{left:74.880000px;}
.x16{left:96.120000px;}
.xd{left:98.316000px;}
.x2{left:106.415987px;}
.xb{left:107.855987px;}
.x19{left:128.514000px;}
.xc{left:146.915987px;}
.x5{left:148.895987px;}
.x10{left:150.480000px;}
.xa{left:159.509987px;}
.x11{left:160.554000px;}
.xe{left:181.479000px;}
.x4{left:191.909987px;}
.x6{left:228.449987px;}
.x8{left:241.229987px;}
.x9{left:283.034987px;}
.x7{left:338.294987px;}
.x1{left:446.474987px;}
.xf{left:472.965000px;}
.x13{left:622.545000px;}
.x3{left:786.749987px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.746667pt;}
.ls13{letter-spacing:1.280000pt;}
.ls6{letter-spacing:7.200000pt;}
.ls12{letter-spacing:8.320000pt;}
.ls11{letter-spacing:9.600000pt;}
.lsa{letter-spacing:12.160000pt;}
.ls14{letter-spacing:19.200000pt;}
.ls9{letter-spacing:33.920000pt;}
.ls3{letter-spacing:38.063360pt;}
.ls7{letter-spacing:2304.565333pt;}
.ws3{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.313280pt;}
.ws5{word-spacing:-19.040000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._4{width:2.468480pt;}
._15{width:3.904000pt;}
._18{width:4.864000pt;}
._13{width:5.760000pt;}
._14{width:6.958933pt;}
._17{width:7.922347pt;}
._c{width:8.896000pt;}
._9{width:10.496000pt;}
._a{width:11.456000pt;}
._b{width:12.725333pt;}
._24{width:13.658027pt;}
._1c{width:14.784000pt;}
._11{width:17.002667pt;}
._7{width:17.962667pt;}
._8{width:19.093333pt;}
._23{width:20.928000pt;}
._e{width:22.016000pt;}
._f{width:22.912000pt;}
._10{width:23.844693pt;}
._21{width:25.637973pt;}
._1d{width:26.724693pt;}
._1e{width:27.649707pt;}
._12{width:28.714667pt;}
._16{width:29.653333pt;}
._19{width:30.676480pt;}
._d{width:31.808000pt;}
._22{width:33.706667pt;}
._1a{width:35.904000pt;}
._1b{width:36.992000pt;}
._25{width:41.024000pt;}
._26{width:42.048000pt;}
._1f{width:50.240000pt;}
._20{width:51.173120pt;}
._6{width:66.416427pt;}
._5{width:67.585280pt;}
._3{width:114.849707pt;}
._27{width:123.776000pt;}
._2{width:1628.442453pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:2.880000pt;}
.ya8{bottom:7.520000pt;}
.yab{bottom:8.160000pt;}
.yad{bottom:8.320000pt;}
.yb9{bottom:8.346667pt;}
.yb0{bottom:8.960000pt;}
.yb1{bottom:9.120000pt;}
.yc5{bottom:18.120000pt;}
.ycf{bottom:18.240000pt;}
.yc8{bottom:27.680000pt;}
.ybb{bottom:28.800000pt;}
.ybe{bottom:28.960000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:114.432000pt;}
.y3{bottom:131.232000pt;}
.y2{bottom:148.186667pt;}
.y32{bottom:169.306667pt;}
.yb6{bottom:170.746667pt;}
.y7d{bottom:182.426667pt;}
.y31{bottom:187.706667pt;}
.y50{bottom:189.626667pt;}
.yb5{bottom:192.026667pt;}
.yde{bottom:195.386667pt;}
.y30{bottom:206.106667pt;}
.ye7{bottom:207.546667pt;}
.y9b{bottom:208.346667pt;}
.y7c{bottom:210.106667pt;}
.yb4{bottom:213.466667pt;}
.y11e{bottom:216.026667pt;}
.y4f{bottom:217.146667pt;}
.ydd{bottom:223.066667pt;}
.y2f{bottom:224.506667pt;}
.yff{bottom:232.346667pt;}
.yb3{bottom:234.746667pt;}
.ye6{bottom:235.226667pt;}
.y9a{bottom:236.026667pt;}
.y7b{bottom:237.626667pt;}
.y2e{bottom:242.906667pt;}
.y4e{bottom:244.666667pt;}
.y11d{bottom:246.426667pt;}
.ydc{bottom:250.586667pt;}
.yfe{bottom:253.626667pt;}
.yb2{bottom:256.026667pt;}
.y2d{bottom:261.306667pt;}
.ye5{bottom:262.746667pt;}
.y99{bottom:263.546667pt;}
.y7a{bottom:265.306667pt;}
.y11c{bottom:267.706667pt;}
.y4d{bottom:272.346667pt;}
.yfd{bottom:274.746667pt;}
.yaf{bottom:277.466667pt;}
.ydb{bottom:278.266667pt;}
.y2c{bottom:279.706667pt;}
.ye4{bottom:290.426667pt;}
.y98{bottom:291.226667pt;}
.y79{bottom:292.826667pt;}
.y2b{bottom:298.106667pt;}
.yae{bottom:299.746667pt;}
.y4c{bottom:299.906667pt;}
.yfc{bottom:305.186667pt;}
.yda{bottom:305.826667pt;}
.y2a{bottom:316.546667pt;}
.ye3{bottom:317.986667pt;}
.y97{bottom:318.786667pt;}
.y11b{bottom:319.266667pt;}
.y78{bottom:320.546667pt;}
.yac{bottom:321.026667pt;}
.yfb{bottom:326.466667pt;}
.y4b{bottom:329.506667pt;}
.yd9{bottom:333.506667pt;}
.y29{bottom:334.946667pt;}
.yaa{bottom:342.466667pt;}
.ye2{bottom:345.666667pt;}
.y96{bottom:346.466667pt;}
.y77{bottom:348.066667pt;}
.y11a{bottom:349.826667pt;}
.y68{bottom:352.706667pt;}
.y28{bottom:353.346667pt;}
.yfa{bottom:356.866667pt;}
.yd8{bottom:358.146667pt;}
.ya9{bottom:363.746667pt;}
.y4a{bottom:367.106667pt;}
.y119{bottom:370.946667pt;}
.y27{bottom:371.746667pt;}
.ye1{bottom:373.186667pt;}
.yd7{bottom:373.826667pt;}
.y95{bottom:373.986667pt;}
.y76{bottom:375.586667pt;}
.yf9{bottom:377.986667pt;}
.y67{bottom:380.226667pt;}
.ya7{bottom:384.386667pt;}
.y26{bottom:390.146667pt;}
.yd6{bottom:395.106667pt;}
.yf8{bottom:399.266667pt;}
.ye0{bottom:400.866667pt;}
.y118{bottom:401.506667pt;}
.y94{bottom:401.666667pt;}
.y75{bottom:403.266667pt;}
.y66{bottom:407.906667pt;}
.y25{bottom:408.546667pt;}
.ya6{bottom:413.826667pt;}
.y49{bottom:415.906667pt;}
.yd5{bottom:416.546667pt;}
.y117{bottom:422.626667pt;}
.y24{bottom:426.946667pt;}
.ydf{bottom:428.386667pt;}
.y93{bottom:429.186667pt;}
.yf7{bottom:429.666667pt;}
.y74{bottom:430.786667pt;}
.ya5{bottom:432.226667pt;}
.y65{bottom:435.426667pt;}
.yd4{bottom:437.826667pt;}
.y48{bottom:443.426667pt;}
.y116{bottom:443.746667pt;}
.y23{bottom:445.346667pt;}
.yf6{bottom:450.786667pt;}
.ya4{bottom:456.066667pt;}
.y92{bottom:456.866667pt;}
.y73{bottom:458.466667pt;}
.y64{bottom:463.106667pt;}
.y22{bottom:463.746667pt;}
.y47{bottom:471.106667pt;}
.y115{bottom:474.306667pt;}
.yd3{bottom:479.906667pt;}
.yf5{bottom:481.346667pt;}
.y21{bottom:482.146667pt;}
.ya3{bottom:483.586667pt;}
.y91{bottom:484.386667pt;}
.y72{bottom:485.986667pt;}
.y63{bottom:490.626667pt;}
.y114{bottom:495.426667pt;}
.y46{bottom:498.626667pt;}
.y20{bottom:500.546667pt;}
.yf4{bottom:502.466667pt;}
.ya2{bottom:511.266667pt;}
.y90{bottom:512.066667pt;}
.y71{bottom:513.666667pt;}
.y113{bottom:516.546667pt;}
.y62{bottom:518.306667pt;}
.y1f{bottom:518.946667pt;}
.yd2{bottom:521.826667pt;}
.y45{bottom:526.306667pt;}
.yf3{bottom:533.026667pt;}
.y1e{bottom:537.373333pt;}
.ya1{bottom:538.813333pt;}
.y8f{bottom:539.613333pt;}
.y70{bottom:541.213333pt;}
.yd1{bottom:543.133333pt;}
.y61{bottom:545.853333pt;}
.y112{bottom:547.133333pt;}
.y44{bottom:553.853333pt;}
.yf2{bottom:554.173333pt;}
.y1d{bottom:555.773333pt;}
.yd0{bottom:564.573333pt;}
.ya0{bottom:566.493333pt;}
.y8e{bottom:567.293333pt;}
.y111{bottom:568.253333pt;}
.y6f{bottom:568.893333pt;}
.y60{bottom:573.373333pt;}
.y1c{bottom:574.173333pt;}
.yf1{bottom:578.333333pt;}
.y43{bottom:581.533333pt;}
.yce{bottom:585.853333pt;}
.y110{bottom:589.373333pt;}
.y1b{bottom:592.573333pt;}
.y9f{bottom:594.013333pt;}
.y8d{bottom:594.813333pt;}
.y6e{bottom:596.413333pt;}
.y5f{bottom:601.053333pt;}
.yf0{bottom:607.453333pt;}
.y42{bottom:609.053333pt;}
.y1a{bottom:610.973333pt;}
.ycd{bottom:617.213333pt;}
.y10f{bottom:619.933333pt;}
.y9e{bottom:621.693333pt;}
.y8c{bottom:622.493333pt;}
.y6d{bottom:624.093333pt;}
.y5e{bottom:628.573333pt;}
.y19{bottom:629.373333pt;}
.y41{bottom:636.733333pt;}
.ycc{bottom:638.493333pt;}
.y10e{bottom:641.053333pt;}
.y18{bottom:647.773333pt;}
.y9d{bottom:649.213333pt;}
.y8b{bottom:650.013333pt;}
.yef{bottom:650.973333pt;}
.y6c{bottom:651.613333pt;}
.y5d{bottom:658.173333pt;}
.ycb{bottom:659.773333pt;}
.y10d{bottom:662.173333pt;}
.y40{bottom:664.253333pt;}
.y17{bottom:666.173333pt;}
.y9c{bottom:676.893333pt;}
.y8a{bottom:677.693333pt;}
.yee{bottom:678.653333pt;}
.yca{bottom:681.213333pt;}
.y16{bottom:684.573333pt;}
.y6b{bottom:689.693333pt;}
.y3f{bottom:691.933333pt;}
.y10c{bottom:692.733333pt;}
.yc9{bottom:702.493333pt;}
.y15{bottom:702.973333pt;}
.y5c{bottom:704.413333pt;}
.y89{bottom:705.213333pt;}
.yed{bottom:706.173333pt;}
.y10b{bottom:713.853333pt;}
.y3e{bottom:719.453333pt;}
.y14{bottom:721.373333pt;}
.yc7{bottom:723.773333pt;}
.y6a{bottom:730.973333pt;}
.y5b{bottom:732.093333pt;}
.y88{bottom:732.893333pt;}
.yec{bottom:733.693333pt;}
.y13{bottom:739.773333pt;}
.y10a{bottom:744.413333pt;}
.y3d{bottom:747.133333pt;}
.y12{bottom:758.173333pt;}
.y5a{bottom:759.613333pt;}
.y87{bottom:760.413333pt;}
.yeb{bottom:761.373333pt;}
.yc4{bottom:764.573333pt;}
.y109{bottom:765.533333pt;}
.y3c{bottom:774.693333pt;}
.y11{bottom:776.613333pt;}
.y108{bottom:786.693333pt;}
.y59{bottom:787.333333pt;}
.y86{bottom:788.133333pt;}
.yea{bottom:788.933333pt;}
.y10{bottom:795.013333pt;}
.yc3{bottom:795.813333pt;}
.y3b{bottom:802.373333pt;}
.yf{bottom:813.413333pt;}
.y58{bottom:814.853333pt;}
.y85{bottom:815.653333pt;}
.ye9{bottom:816.613333pt;}
.yc2{bottom:817.253333pt;}
.y3a{bottom:829.893333pt;}
.y107{bottom:838.373333pt;}
.yc1{bottom:838.533333pt;}
.y57{bottom:842.533333pt;}
.ye{bottom:843.013333pt;}
.y84{bottom:843.333333pt;}
.ye8{bottom:851.493333pt;}
.y39{bottom:857.573333pt;}
.yc0{bottom:859.813333pt;}
.yd{bottom:865.093333pt;}
.y106{bottom:868.933333pt;}
.y56{bottom:870.053333pt;}
.y83{bottom:870.853333pt;}
.ybf{bottom:881.253333pt;}
.y38{bottom:885.093333pt;}
.yc{bottom:889.573333pt;}
.y105{bottom:890.053333pt;}
.y55{bottom:897.733333pt;}
.y82{bottom:898.533333pt;}
.ybd{bottom:902.533333pt;}
.y104{bottom:911.173333pt;}
.y37{bottom:912.773333pt;}
.yb{bottom:914.213333pt;}
.y54{bottom:925.253333pt;}
.y81{bottom:926.053333pt;}
.ya{bottom:938.693333pt;}
.y36{bottom:940.293333pt;}
.y103{bottom:941.733333pt;}
.ybc{bottom:944.613333pt;}
.y53{bottom:952.933333pt;}
.y80{bottom:953.733333pt;}
.y102{bottom:962.853333pt;}
.y9{bottom:963.173333pt;}
.yba{bottom:965.893333pt;}
.y35{bottom:967.973333pt;}
.y52{bottom:980.453333pt;}
.y7f{bottom:981.253333pt;}
.y8{bottom:987.813333pt;}
.y101{bottom:993.413333pt;}
.y34{bottom:995.493333pt;}
.yb8{bottom:1007.813333pt;}
.y51{bottom:1008.133333pt;}
.y7e{bottom:1008.933333pt;}
.y69{bottom:1010.533333pt;}
.y7{bottom:1012.320000pt;}
.y100{bottom:1014.560000pt;}
.yb7{bottom:1029.280000pt;}
.y33{bottom:1033.120000pt;}
.y6{bottom:1035.680000pt;}
.y1{bottom:1096.800000pt;}
.ha{height:20.000000pt;}
.hd{height:20.640000pt;}
.h16{height:20.672000pt;}
.h12{height:20.800000pt;}
.h10{height:20.832000pt;}
.he{height:21.632000pt;}
.h13{height:30.592000pt;}
.h15{height:30.720000pt;}
.h14{height:40.000000pt;}
.h11{height:41.280000pt;}
.h8{height:43.343750pt;}
.h9{height:43.782500pt;}
.hf{height:44.897813pt;}
.hb{height:47.180312pt;}
.hc{height:47.621250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h17{height:54.093750pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h5{height:75.602187pt;}
.h6{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:132.960000pt;}
.w6{width:133.152000pt;}
.w4{width:266.106667pt;}
.w3{width:333.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x15{left:44.960000pt;}
.x14{left:51.080000pt;}
.x12{left:53.760000pt;}
.x17{left:61.640000pt;}
.x1a{left:66.560000pt;}
.x16{left:85.440000pt;}
.xd{left:87.392000pt;}
.x2{left:94.591988pt;}
.xb{left:95.871988pt;}
.x19{left:114.234667pt;}
.xc{left:130.591988pt;}
.x5{left:132.351988pt;}
.x10{left:133.760000pt;}
.xa{left:141.786655pt;}
.x11{left:142.714667pt;}
.xe{left:161.314667pt;}
.x4{left:170.586655pt;}
.x6{left:203.066655pt;}
.x8{left:214.426655pt;}
.x9{left:251.586655pt;}
.x7{left:300.706655pt;}
.x1{left:396.866655pt;}
.xf{left:420.413333pt;}
.x13{left:553.373333pt;}
.x3{left:699.333322pt;}
}




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