
    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_c1076ac5229addc516bf7824.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0a738a630f916d8a5fa87857.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_03acc32c901fcf0c941e9cb8.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_f610e6651255e712e2cc81e2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ca251c63a307dde225b977cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_72f908e2a897ac1b182f8e3b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cb80be1d71c76f521c3e07d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120605;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.126000px;}
.ls3{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.720000px;}
.ls17{letter-spacing:5.760000px;}
.ls12{letter-spacing:10.800000px;}
.ls19{letter-spacing:14.400000px;}
.ls11{letter-spacing:65.520000px;}
.lsf{letter-spacing:72.840000px;}
.lse{letter-spacing:73.440000px;}
.ls18{letter-spacing:84.240000px;}
.ls14{letter-spacing:122.400000px;}
.ls15{letter-spacing:122.580000px;}
.ls13{letter-spacing:126.840000px;}
.ls16{letter-spacing:131.040000px;}
.lsd{letter-spacing:172.056000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.093600px;}
.ws8{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.374000px;}
.ws1{word-spacing:0.000000px;}
._25{margin-left:-9.783360px;}
._a{margin-left:-7.902720px;}
._1a{margin-left:-6.402240px;}
._8{margin-left:-4.464000px;}
._b{margin-left:-3.417120px;}
._0{margin-left:-1.457280px;}
._1{width:1.149120px;}
._5{width:2.950560px;}
._e{width:4.248000px;}
._19{width:5.273280px;}
._f{width:6.408000px;}
._3{width:8.331120px;}
._7{width:9.576000px;}
._6{width:11.160000px;}
._9{width:12.194880px;}
._d{width:13.250880px;}
._c{width:14.445120px;}
._12{width:15.876000px;}
._2c{width:16.937280px;}
._22{width:19.512000px;}
._14{width:21.240000px;}
._15{width:22.250880px;}
._26{width:23.613120px;}
._1f{width:25.577280px;}
._20{width:27.011520px;}
._21{width:28.445760px;}
._28{width:29.658240px;}
._1c{width:31.898160px;}
._16{width:34.992000px;}
._29{width:36.504000px;}
._2a{width:37.664640px;}
._10{width:39.561120px;}
._11{width:40.608000px;}
._23{width:41.976000px;}
._24{width:43.356000px;}
._13{width:44.496000px;}
._4{width:47.401200px;}
._18{width:55.368000px;}
._17{width:56.520000px;}
._2b{width:57.789120px;}
._1b{width:61.373520px;}
._1e{width:85.383360px;}
._27{width:109.668000px;}
._1d{width:159.618960px;}
._2{width:224.844480px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.240000px;}
.y66{bottom:4.500000px;}
.y90{bottom:4.680000px;}
.y6d{bottom:5.760000px;}
.y6a{bottom:5.940000px;}
.y6c{bottom:7.020000px;}
.ya6{bottom:8.460000px;}
.ya3{bottom:12.240000px;}
.y61{bottom:13.860000px;}
.yac{bottom:13.890000px;}
.y5d{bottom:15.660000px;}
.ya4{bottom:17.820000px;}
.y86{bottom:19.800000px;}
.y83{bottom:20.520000px;}
.y7a{bottom:21.780000px;}
.y99{bottom:21.960000px;}
.y9b{bottom:22.680000px;}
.y65{bottom:23.040000px;}
.y76{bottom:23.220000px;}
.yab{bottom:23.250000px;}
.y8f{bottom:23.256000px;}
.y69{bottom:24.480000px;}
.ya5{bottom:27.000000px;}
.y7f{bottom:29.160000px;}
.ya2{bottom:30.960000px;}
.y8b{bottom:31.176000px;}
.y97{bottom:32.040000px;}
.y5c{bottom:32.400000px;}
.y88{bottom:32.580000px;}
.y82{bottom:37.800000px;}
.y7d{bottom:38.340000px;}
.y79{bottom:40.320000px;}
.y75{bottom:40.500000px;}
.y91{bottom:40.530000px;}
.y98{bottom:40.680000px;}
.y9a{bottom:41.220000px;}
.y64{bottom:41.760000px;}
.yad{bottom:41.940000px;}
.y8e{bottom:41.970000px;}
.y7e{bottom:47.700000px;}
.y70{bottom:48.240000px;}
.y9d{bottom:49.680000px;}
.y8a{bottom:49.890000px;}
.y60{bottom:51.120000px;}
.y81{bottom:55.080000px;}
.y85{bottom:57.060000px;}
.y74{bottom:57.600000px;}
.y68{bottom:59.040000px;}
.y2e{bottom:59.220000px;}
.y8d{bottom:59.250000px;}
.y63{bottom:60.300000px;}
.y93{bottom:60.480000px;}
.y6f{bottom:66.960000px;}
.y5f{bottom:69.660000px;}
.y5{bottom:71.280000px;}
.y80{bottom:72.180000px;}
.y73{bottom:74.880000px;}
.y78{bottom:76.320000px;}
.y8c{bottom:76.350000px;}
.y9f{bottom:76.365000px;}
.y67{bottom:77.580000px;}
.y62{bottom:79.020000px;}
.y2d{bottom:82.260000px;}
.y95{bottom:88.380000px;}
.y72{bottom:92.160000px;}
.y77{bottom:93.600000px;}
.ya0{bottom:93.645000px;}
.y9e{bottom:94.905000px;}
.y94{bottom:97.560000px;}
.y4{bottom:98.100000px;}
.yd4{bottom:107.100000px;}
.y71{bottom:110.700000px;}
.y89{bottom:117.000000px;}
.y4d{bottom:117.720000px;}
.yf6{bottom:118.080000px;}
.y3{bottom:118.620000px;}
.y2{bottom:137.556000px;}
.yd3{bottom:138.276000px;}
.yf5{bottom:139.716000px;}
.y4c{bottom:149.076000px;}
.y1{bottom:156.630000px;}
.y11f{bottom:161.310000px;}
.yf4{bottom:161.670000px;}
.yd2{bottom:169.230000px;}
.y4b{bottom:180.210000px;}
.yb8{bottom:181.650000px;}
.y2c{bottom:182.190000px;}
.y11e{bottom:182.910000px;}
.yf3{bottom:183.630000px;}
.yd1{bottom:200.370000px;}
.y2b{bottom:202.890000px;}
.y11d{bottom:204.690000px;}
.yf2{bottom:205.230000px;}
.y87{bottom:212.070000px;}
.yb7{bottom:212.970000px;}
.y4a{bottom:219.450000px;}
.y2a{bottom:223.590000px;}
.y11c{bottom:226.650000px;}
.yf1{bottom:226.830000px;}
.yd0{bottom:231.330000px;}
.yb6{bottom:243.930000px;}
.y29{bottom:244.290000px;}
.y11b{bottom:248.430000px;}
.yf0{bottom:248.790000px;}
.y28{bottom:264.990000px;}
.y49{bottom:268.770000px;}
.y11a{bottom:270.210000px;}
.yef{bottom:270.750000px;}
.y7c{bottom:272.550000px;}
.yb5{bottom:275.070000px;}
.ycf{bottom:283.530000px;}
.y27{bottom:285.690000px;}
.y119{bottom:291.810000px;}
.yee{bottom:292.530000px;}
.y48{bottom:299.910000px;}
.yb4{bottom:306.030000px;}
.y26{bottom:306.390000px;}
.y118{bottom:313.770000px;}
.yed{bottom:314.130000px;}
.y25{bottom:327.090000px;}
.y47{bottom:330.870000px;}
.yce{bottom:331.590000px;}
.yec{bottom:335.730000px;}
.yb3{bottom:337.170000px;}
.y24{bottom:347.790000px;}
.yeb{bottom:357.330000px;}
.y46{bottom:362.010000px;}
.ycd{bottom:362.730000px;}
.y7b{bottom:363.450000px;}
.yb2{bottom:368.130000px;}
.y23{bottom:368.490000px;}
.y117{bottom:378.930000px;}
.yea{bottom:379.650000px;}
.y22{bottom:389.235000px;}
.y45{bottom:393.015000px;}
.ycc{bottom:393.735000px;}
.y116{bottom:400.935000px;}
.ye9{bottom:403.635000px;}
.y6e{bottom:405.435000px;}
.yb1{bottom:416.595000px;}
.y115{bottom:422.895000px;}
.y44{bottom:424.155000px;}
.ycb{bottom:424.875000px;}
.y21{bottom:425.055000px;}
.ye8{bottom:437.475000px;}
.y114{bottom:444.495000px;}
.y20{bottom:447.015000px;}
.y43{bottom:463.755000px;}
.yb0{bottom:464.835000px;}
.y113{bottom:466.275000px;}
.y1f{bottom:468.615000px;}
.ye7{bottom:468.795000px;}
.yca{bottom:473.115000px;}
.yaf{bottom:487.155000px;}
.y112{bottom:487.875000px;}
.y1e{bottom:490.215000px;}
.y42{bottom:497.775000px;}
.ye6{bottom:499.935000px;}
.yae{bottom:505.335000px;}
.y111{bottom:509.475000px;}
.y1d{bottom:511.995000px;}
.yc9{bottom:521.355000px;}
.ye5{bottom:530.895000px;}
.y110{bottom:531.255000px;}
.y41{bottom:534.675000px;}
.y6b{bottom:534.855000px;}
.y1c{bottom:547.815000px;}
.yc8{bottom:552.495000px;}
.y10f{bottom:553.035000px;}
.y5e{bottom:560.595000px;}
.ye4{bottom:562.035000px;}
.y40{bottom:565.815000px;}
.y1b{bottom:570.675000px;}
.y10e{bottom:574.995000px;}
.yc7{bottom:583.455000px;}
.ye3{bottom:592.995000px;}
.y1a{bottom:593.535000px;}
.y3f{bottom:596.775000px;}
.yc6{bottom:614.595000px;}
.y19{bottom:616.395000px;}
.y10d{bottom:618.375000px;}
.ye2{bottom:624.135000px;}
.yaa{bottom:626.295000px;}
.y3e{bottom:636.915000px;}
.y18{bottom:639.255000px;}
.y10c{bottom:640.005000px;}
.yc5{bottom:645.585000px;}
.ye1{bottom:655.125000px;}
.y5b{bottom:658.185000px;}
.y10b{bottom:661.965000px;}
.y17{bottom:662.145000px;}
.y3d{bottom:667.905000px;}
.ya9{bottom:668.265000px;}
.y10a{bottom:683.925000px;}
.y16{bottom:685.005000px;}
.ye0{bottom:686.265000px;}
.ya8{bottom:691.485000px;}
.yc4{bottom:693.825000px;}
.y3c{bottom:699.045000px;}
.y109{bottom:705.525000px;}
.y15{bottom:707.865000px;}
.y5a{bottom:713.085000px;}
.ydf{bottom:725.505000px;}
.y108{bottom:727.305000px;}
.y3b{bottom:730.005000px;}
.y14{bottom:730.725000px;}
.y59{bottom:734.685000px;}
.yc3{bottom:742.065000px;}
.y107{bottom:748.905000px;}
.ya7{bottom:751.965000px;}
.y13{bottom:753.585000px;}
.y58{bottom:756.645000px;}
.y3a{bottom:761.145000px;}
.yde{bottom:768.525000px;}
.y106{bottom:770.505000px;}
.yc2{bottom:773.205000px;}
.ya1{bottom:777.705000px;}
.y57{bottom:787.785000px;}
.y39{bottom:792.105000px;}
.y105{bottom:792.465000px;}
.y12{bottom:799.845000px;}
.ydd{bottom:800.025000px;}
.yc1{bottom:804.165000px;}
.y104{bottom:814.425000px;}
.y56{bottom:818.385000px;}
.y11{bottom:820.545000px;}
.y9c{bottom:827.385000px;}
.ydc{bottom:831.165000px;}
.y38{bottom:832.245000px;}
.yc0{bottom:835.305000px;}
.y103{bottom:836.025000px;}
.y10{bottom:841.245000px;}
.y55{bottom:849.165000px;}
.y102{bottom:857.625000px;}
.ydb{bottom:862.485000px;}
.y37{bottom:863.205000px;}
.y101{bottom:879.585000px;}
.y54{bottom:879.765000px;}
.ybf{bottom:883.545000px;}
.yf{bottom:885.345000px;}
.yda{bottom:893.670000px;}
.y36{bottom:894.390000px;}
.y100{bottom:901.590000px;}
.ye{bottom:908.250000px;}
.ybe{bottom:914.910000px;}
.y53{bottom:923.010000px;}
.yff{bottom:923.370000px;}
.yd9{bottom:924.990000px;}
.y35{bottom:925.350000px;}
.yd{bottom:929.490000px;}
.y96{bottom:941.010000px;}
.yfe{bottom:944.970000px;}
.ybd{bottom:946.230000px;}
.y52{bottom:953.790000px;}
.yc{bottom:954.510000px;}
.yd8{bottom:956.130000px;}
.y34{bottom:956.490000px;}
.yfd{bottom:966.570000px;}
.ybc{bottom:977.370000px;}
.yb{bottom:982.050000px;}
.y51{bottom:984.390000px;}
.yd7{bottom:987.270000px;}
.y33{bottom:987.450000px;}
.yfc{bottom:988.530000px;}
.ybb{bottom:1008.330000px;}
.ya{bottom:1009.590000px;}
.yfb{bottom:1010.490000px;}
.y32{bottom:1017.690000px;}
.y92{bottom:1019.130000px;}
.y50{bottom:1026.690000px;}
.yfa{bottom:1032.090000px;}
.yd6{bottom:1035.690000px;}
.y9{bottom:1037.310000px;}
.yba{bottom:1039.470000px;}
.yf9{bottom:1053.690000px;}
.y31{bottom:1056.570000px;}
.y4f{bottom:1057.290000px;}
.y8{bottom:1064.850000px;}
.yb9{bottom:1070.430000px;}
.yf8{bottom:1075.470000px;}
.y30{bottom:1077.270000px;}
.yd5{bottom:1087.710000px;}
.y4e{bottom:1088.070000px;}
.y7{bottom:1092.390000px;}
.yf7{bottom:1097.070000px;}
.y2f{bottom:1097.970000px;}
.y6{bottom:1118.670000px;}
.h18{height:18.540000px;}
.hf{height:21.060000px;}
.h11{height:37.296000px;}
.ha{height:45.000000px;}
.hb{height:47.961914px;}
.hc{height:48.410156px;}
.h4{height:52.417969px;}
.he{height:53.573906px;}
.h13{height:55.800000px;}
.h19{height:55.980000px;}
.h2{height:59.383125px;}
.h5{height:63.351562px;}
.h9{height:63.949219px;}
.h3{height:64.546875px;}
.h8{height:65.884219px;}
.h1a{height:70.606406px;}
.h16{height:73.440000px;}
.h7{height:74.820586px;}
.h6{height:85.052461px;}
.h12{height:86.220000px;}
.h14{height:90.396000px;}
.hd{height:93.096000px;}
.h17{height:108.936000px;}
.h15{height:111.600000px;}
.h10{height:124.740000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:136.440000px;}
.w6{width:136.656000px;}
.w7{width:138.096000px;}
.w4{width:157.530000px;}
.w3{width:178.590000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x15{left:7.200000px;}
.x16{left:9.360000px;}
.x17{left:10.800000px;}
.x11{left:13.140000px;}
.xe{left:25.740000px;}
.xb{left:29.340000px;}
.x14{left:36.000000px;}
.x10{left:40.680000px;}
.xd{left:50.580000px;}
.xa{left:65.154000px;}
.x9{left:91.836000px;}
.x1{left:127.655987px;}
.x6{left:128.735987px;}
.x5{left:169.409987px;}
.x3{left:177.329987px;}
.x8{left:180.749987px;}
.x18{left:182.729987px;}
.xc{left:271.875000px;}
.x4{left:281.954987px;}
.xf{left:431.025000px;}
.x7{left:455.684987px;}
.x12{left:568.905000px;}
.x13{left:707.010000px;}
.x2{left:809.099987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls19{letter-spacing:12.800000pt;}
.ls11{letter-spacing:58.240000pt;}
.lsf{letter-spacing:64.746667pt;}
.lse{letter-spacing:65.280000pt;}
.ls18{letter-spacing:74.880000pt;}
.ls14{letter-spacing:108.800000pt;}
.ls15{letter-spacing:108.960000pt;}
.ls13{letter-spacing:112.746667pt;}
.ls16{letter-spacing:116.480000pt;}
.lsd{letter-spacing:152.938667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.888000pt;}
.ws1{word-spacing:0.000000pt;}
._25{margin-left:-8.696320pt;}
._a{margin-left:-7.024640pt;}
._1a{margin-left:-5.690880pt;}
._8{margin-left:-3.968000pt;}
._b{margin-left:-3.037440pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.021440pt;}
._5{width:2.622720pt;}
._e{width:3.776000pt;}
._19{width:4.687360pt;}
._f{width:5.696000pt;}
._3{width:7.405440pt;}
._7{width:8.512000pt;}
._6{width:9.920000pt;}
._9{width:10.839893pt;}
._d{width:11.778560pt;}
._c{width:12.840107pt;}
._12{width:14.112000pt;}
._2c{width:15.055360pt;}
._22{width:17.344000pt;}
._14{width:18.880000pt;}
._15{width:19.778560pt;}
._26{width:20.989440pt;}
._1f{width:22.735360pt;}
._20{width:24.010240pt;}
._21{width:25.285120pt;}
._28{width:26.362880pt;}
._1c{width:28.353920pt;}
._16{width:31.104000pt;}
._29{width:32.448000pt;}
._2a{width:33.479680pt;}
._10{width:35.165440pt;}
._11{width:36.096000pt;}
._23{width:37.312000pt;}
._24{width:38.538667pt;}
._13{width:39.552000pt;}
._4{width:42.134400pt;}
._18{width:49.216000pt;}
._17{width:50.240000pt;}
._2b{width:51.368107pt;}
._1b{width:54.554240pt;}
._1e{width:75.896320pt;}
._27{width:97.482667pt;}
._1d{width:141.883520pt;}
._2{width:199.861760pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.880000pt;}
.y66{bottom:4.000000pt;}
.y90{bottom:4.160000pt;}
.y6d{bottom:5.120000pt;}
.y6a{bottom:5.280000pt;}
.y6c{bottom:6.240000pt;}
.ya6{bottom:7.520000pt;}
.ya3{bottom:10.880000pt;}
.y61{bottom:12.320000pt;}
.yac{bottom:12.346667pt;}
.y5d{bottom:13.920000pt;}
.ya4{bottom:15.840000pt;}
.y86{bottom:17.600000pt;}
.y83{bottom:18.240000pt;}
.y7a{bottom:19.360000pt;}
.y99{bottom:19.520000pt;}
.y9b{bottom:20.160000pt;}
.y65{bottom:20.480000pt;}
.y76{bottom:20.640000pt;}
.yab{bottom:20.666667pt;}
.y8f{bottom:20.672000pt;}
.y69{bottom:21.760000pt;}
.ya5{bottom:24.000000pt;}
.y7f{bottom:25.920000pt;}
.ya2{bottom:27.520000pt;}
.y8b{bottom:27.712000pt;}
.y97{bottom:28.480000pt;}
.y5c{bottom:28.800000pt;}
.y88{bottom:28.960000pt;}
.y82{bottom:33.600000pt;}
.y7d{bottom:34.080000pt;}
.y79{bottom:35.840000pt;}
.y75{bottom:36.000000pt;}
.y91{bottom:36.026667pt;}
.y98{bottom:36.160000pt;}
.y9a{bottom:36.640000pt;}
.y64{bottom:37.120000pt;}
.yad{bottom:37.280000pt;}
.y8e{bottom:37.306667pt;}
.y7e{bottom:42.400000pt;}
.y70{bottom:42.880000pt;}
.y9d{bottom:44.160000pt;}
.y8a{bottom:44.346667pt;}
.y60{bottom:45.440000pt;}
.y81{bottom:48.960000pt;}
.y85{bottom:50.720000pt;}
.y74{bottom:51.200000pt;}
.y68{bottom:52.480000pt;}
.y2e{bottom:52.640000pt;}
.y8d{bottom:52.666667pt;}
.y63{bottom:53.600000pt;}
.y93{bottom:53.760000pt;}
.y6f{bottom:59.520000pt;}
.y5f{bottom:61.920000pt;}
.y5{bottom:63.360000pt;}
.y80{bottom:64.160000pt;}
.y73{bottom:66.560000pt;}
.y78{bottom:67.840000pt;}
.y8c{bottom:67.866667pt;}
.y9f{bottom:67.880000pt;}
.y67{bottom:68.960000pt;}
.y62{bottom:70.240000pt;}
.y2d{bottom:73.120000pt;}
.y95{bottom:78.560000pt;}
.y72{bottom:81.920000pt;}
.y77{bottom:83.200000pt;}
.ya0{bottom:83.240000pt;}
.y9e{bottom:84.360000pt;}
.y94{bottom:86.720000pt;}
.y4{bottom:87.200000pt;}
.yd4{bottom:95.200000pt;}
.y71{bottom:98.400000pt;}
.y89{bottom:104.000000pt;}
.y4d{bottom:104.640000pt;}
.yf6{bottom:104.960000pt;}
.y3{bottom:105.440000pt;}
.y2{bottom:122.272000pt;}
.yd3{bottom:122.912000pt;}
.yf5{bottom:124.192000pt;}
.y4c{bottom:132.512000pt;}
.y1{bottom:139.226667pt;}
.y11f{bottom:143.386667pt;}
.yf4{bottom:143.706667pt;}
.yd2{bottom:150.426667pt;}
.y4b{bottom:160.186667pt;}
.yb8{bottom:161.466667pt;}
.y2c{bottom:161.946667pt;}
.y11e{bottom:162.586667pt;}
.yf3{bottom:163.226667pt;}
.yd1{bottom:178.106667pt;}
.y2b{bottom:180.346667pt;}
.y11d{bottom:181.946667pt;}
.yf2{bottom:182.426667pt;}
.y87{bottom:188.506667pt;}
.yb7{bottom:189.306667pt;}
.y4a{bottom:195.066667pt;}
.y2a{bottom:198.746667pt;}
.y11c{bottom:201.466667pt;}
.yf1{bottom:201.626667pt;}
.yd0{bottom:205.626667pt;}
.yb6{bottom:216.826667pt;}
.y29{bottom:217.146667pt;}
.y11b{bottom:220.826667pt;}
.yf0{bottom:221.146667pt;}
.y28{bottom:235.546667pt;}
.y49{bottom:238.906667pt;}
.y11a{bottom:240.186667pt;}
.yef{bottom:240.666667pt;}
.y7c{bottom:242.266667pt;}
.yb5{bottom:244.506667pt;}
.ycf{bottom:252.026667pt;}
.y27{bottom:253.946667pt;}
.y119{bottom:259.386667pt;}
.yee{bottom:260.026667pt;}
.y48{bottom:266.586667pt;}
.yb4{bottom:272.026667pt;}
.y26{bottom:272.346667pt;}
.y118{bottom:278.906667pt;}
.yed{bottom:279.226667pt;}
.y25{bottom:290.746667pt;}
.y47{bottom:294.106667pt;}
.yce{bottom:294.746667pt;}
.yec{bottom:298.426667pt;}
.yb3{bottom:299.706667pt;}
.y24{bottom:309.146667pt;}
.yeb{bottom:317.626667pt;}
.y46{bottom:321.786667pt;}
.ycd{bottom:322.426667pt;}
.y7b{bottom:323.066667pt;}
.yb2{bottom:327.226667pt;}
.y23{bottom:327.546667pt;}
.y117{bottom:336.826667pt;}
.yea{bottom:337.466667pt;}
.y22{bottom:345.986667pt;}
.y45{bottom:349.346667pt;}
.ycc{bottom:349.986667pt;}
.y116{bottom:356.386667pt;}
.ye9{bottom:358.786667pt;}
.y6e{bottom:360.386667pt;}
.yb1{bottom:370.306667pt;}
.y115{bottom:375.906667pt;}
.y44{bottom:377.026667pt;}
.ycb{bottom:377.666667pt;}
.y21{bottom:377.826667pt;}
.ye8{bottom:388.866667pt;}
.y114{bottom:395.106667pt;}
.y20{bottom:397.346667pt;}
.y43{bottom:412.226667pt;}
.yb0{bottom:413.186667pt;}
.y113{bottom:414.466667pt;}
.y1f{bottom:416.546667pt;}
.ye7{bottom:416.706667pt;}
.yca{bottom:420.546667pt;}
.yaf{bottom:433.026667pt;}
.y112{bottom:433.666667pt;}
.y1e{bottom:435.746667pt;}
.y42{bottom:442.466667pt;}
.ye6{bottom:444.386667pt;}
.yae{bottom:449.186667pt;}
.y111{bottom:452.866667pt;}
.y1d{bottom:455.106667pt;}
.yc9{bottom:463.426667pt;}
.ye5{bottom:471.906667pt;}
.y110{bottom:472.226667pt;}
.y41{bottom:475.266667pt;}
.y6b{bottom:475.426667pt;}
.y1c{bottom:486.946667pt;}
.yc8{bottom:491.106667pt;}
.y10f{bottom:491.586667pt;}
.y5e{bottom:498.306667pt;}
.ye4{bottom:499.586667pt;}
.y40{bottom:502.946667pt;}
.y1b{bottom:507.266667pt;}
.y10e{bottom:511.106667pt;}
.yc7{bottom:518.626667pt;}
.ye3{bottom:527.106667pt;}
.y1a{bottom:527.586667pt;}
.y3f{bottom:530.466667pt;}
.yc6{bottom:546.306667pt;}
.y19{bottom:547.906667pt;}
.y10d{bottom:549.666667pt;}
.ye2{bottom:554.786667pt;}
.yaa{bottom:556.706667pt;}
.y3e{bottom:566.146667pt;}
.y18{bottom:568.226667pt;}
.y10c{bottom:568.893333pt;}
.yc5{bottom:573.853333pt;}
.ye1{bottom:582.333333pt;}
.y5b{bottom:585.053333pt;}
.y10b{bottom:588.413333pt;}
.y17{bottom:588.573333pt;}
.y3d{bottom:593.693333pt;}
.ya9{bottom:594.013333pt;}
.y10a{bottom:607.933333pt;}
.y16{bottom:608.893333pt;}
.ye0{bottom:610.013333pt;}
.ya8{bottom:614.653333pt;}
.yc4{bottom:616.733333pt;}
.y3c{bottom:621.373333pt;}
.y109{bottom:627.133333pt;}
.y15{bottom:629.213333pt;}
.y5a{bottom:633.853333pt;}
.ydf{bottom:644.893333pt;}
.y108{bottom:646.493333pt;}
.y3b{bottom:648.893333pt;}
.y14{bottom:649.533333pt;}
.y59{bottom:653.053333pt;}
.yc3{bottom:659.613333pt;}
.y107{bottom:665.693333pt;}
.ya7{bottom:668.413333pt;}
.y13{bottom:669.853333pt;}
.y58{bottom:672.573333pt;}
.y3a{bottom:676.573333pt;}
.yde{bottom:683.133333pt;}
.y106{bottom:684.893333pt;}
.yc2{bottom:687.293333pt;}
.ya1{bottom:691.293333pt;}
.y57{bottom:700.253333pt;}
.y39{bottom:704.093333pt;}
.y105{bottom:704.413333pt;}
.y12{bottom:710.973333pt;}
.ydd{bottom:711.133333pt;}
.yc1{bottom:714.813333pt;}
.y104{bottom:723.933333pt;}
.y56{bottom:727.453333pt;}
.y11{bottom:729.373333pt;}
.y9c{bottom:735.453333pt;}
.ydc{bottom:738.813333pt;}
.y38{bottom:739.773333pt;}
.yc0{bottom:742.493333pt;}
.y103{bottom:743.133333pt;}
.y10{bottom:747.773333pt;}
.y55{bottom:754.813333pt;}
.y102{bottom:762.333333pt;}
.ydb{bottom:766.653333pt;}
.y37{bottom:767.293333pt;}
.y101{bottom:781.853333pt;}
.y54{bottom:782.013333pt;}
.ybf{bottom:785.373333pt;}
.yf{bottom:786.973333pt;}
.yda{bottom:794.373333pt;}
.y36{bottom:795.013333pt;}
.y100{bottom:801.413333pt;}
.ye{bottom:807.333333pt;}
.ybe{bottom:813.253333pt;}
.y53{bottom:820.453333pt;}
.yff{bottom:820.773333pt;}
.yd9{bottom:822.213333pt;}
.y35{bottom:822.533333pt;}
.yd{bottom:826.213333pt;}
.y96{bottom:836.453333pt;}
.yfe{bottom:839.973333pt;}
.ybd{bottom:841.093333pt;}
.y52{bottom:847.813333pt;}
.yc{bottom:848.453333pt;}
.yd8{bottom:849.893333pt;}
.y34{bottom:850.213333pt;}
.yfd{bottom:859.173333pt;}
.ybc{bottom:868.773333pt;}
.yb{bottom:872.933333pt;}
.y51{bottom:875.013333pt;}
.yd7{bottom:877.573333pt;}
.y33{bottom:877.733333pt;}
.yfc{bottom:878.693333pt;}
.ybb{bottom:896.293333pt;}
.ya{bottom:897.413333pt;}
.yfb{bottom:898.213333pt;}
.y32{bottom:904.613333pt;}
.y92{bottom:905.893333pt;}
.y50{bottom:912.613333pt;}
.yfa{bottom:917.413333pt;}
.yd6{bottom:920.613333pt;}
.y9{bottom:922.053333pt;}
.yba{bottom:923.973333pt;}
.yf9{bottom:936.613333pt;}
.y31{bottom:939.173333pt;}
.y4f{bottom:939.813333pt;}
.y8{bottom:946.533333pt;}
.yb9{bottom:951.493333pt;}
.yf8{bottom:955.973333pt;}
.y30{bottom:957.573333pt;}
.yd5{bottom:966.853333pt;}
.y4e{bottom:967.173333pt;}
.y7{bottom:971.013333pt;}
.yf7{bottom:975.173333pt;}
.y2f{bottom:975.973333pt;}
.y6{bottom:994.373333pt;}
.h18{height:16.480000pt;}
.hf{height:18.720000pt;}
.h11{height:33.152000pt;}
.ha{height:40.000000pt;}
.hb{height:42.632812pt;}
.hc{height:43.031250pt;}
.h4{height:46.593750pt;}
.he{height:47.621250pt;}
.h13{height:49.600000pt;}
.h19{height:49.760000pt;}
.h2{height:52.785000pt;}
.h5{height:56.312500pt;}
.h9{height:56.843750pt;}
.h3{height:57.375000pt;}
.h8{height:58.563750pt;}
.h1a{height:62.761250pt;}
.h16{height:65.280000pt;}
.h7{height:66.507188pt;}
.h6{height:75.602187pt;}
.h12{height:76.640000pt;}
.h14{height:80.352000pt;}
.hd{height:82.752000pt;}
.h17{height:96.832000pt;}
.h15{height:99.200000pt;}
.h10{height:110.880000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:121.280000pt;}
.w6{width:121.472000pt;}
.w7{width:122.752000pt;}
.w4{width:140.026667pt;}
.w3{width:158.746667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x15{left:6.400000pt;}
.x16{left:8.320000pt;}
.x17{left:9.600000pt;}
.x11{left:11.680000pt;}
.xe{left:22.880000pt;}
.xb{left:26.080000pt;}
.x14{left:32.000000pt;}
.x10{left:36.160000pt;}
.xd{left:44.960000pt;}
.xa{left:57.914667pt;}
.x9{left:81.632000pt;}
.x1{left:113.471988pt;}
.x6{left:114.431988pt;}
.x5{left:150.586655pt;}
.x3{left:157.626655pt;}
.x8{left:160.666655pt;}
.x18{left:162.426655pt;}
.xc{left:241.666667pt;}
.x4{left:250.626655pt;}
.xf{left:383.133333pt;}
.x7{left:405.053321pt;}
.x12{left:505.693333pt;}
.x13{left:628.453333pt;}
.x2{left:719.199988pt;}
}




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