
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6e0b9101f7100d1ef7ea3bbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6c350fe1c7b4da058acedbda.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_53126c8ff629f2f5b152476b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_9e3f9c8cc375c959c3760382.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a20dc12abfa8400cb18f3e56.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ab80b3fb6332799ff0dd17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_edd73ecfc621a87e0d6294c8.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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:ffd;src:url('chunks/assets/font_eae1ebd14e1733d8ffd25c6d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.322800px;}
.lsa{letter-spacing:-0.274800px;}
.lsb{letter-spacing:-0.184200px;}
.ls14{letter-spacing:-0.152400px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.036000px;}
.lse{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.567600px;}
.lsd{letter-spacing:0.720000px;}
.ls12{letter-spacing:39.905280px;}
.ls4{letter-spacing:59.345280px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws3{word-spacing:-59.760000px;}
.wsb{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.127600px;}
.ws10{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.407600px;}
.ws6{word-spacing:-15.948000px;}
.wse{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.388600px;}
.wsd{word-spacing:-14.250000px;}
.ws9{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._1{width:1.380000px;}
._1d{width:2.741760px;}
._24{width:3.749760px;}
._c{width:4.769280px;}
._d{width:5.788800px;}
._2{width:6.955200px;}
._27{width:7.997280px;}
._8{width:9.034560px;}
._9{width:10.200960px;}
._10{width:11.257440px;}
._a{width:12.320640px;}
._f{width:13.896000px;}
._1e{width:15.500160px;}
._17{width:18.544320px;}
._b{width:19.607040px;}
._28{width:20.923200px;}
._18{width:22.124160px;}
._2b{width:23.713920px;}
._4{width:24.865920px;}
._5{width:26.006400px;}
._26{width:27.092160px;}
._25{width:28.154880px;}
._15{width:29.900160px;}
._1a{width:30.934080px;}
._19{width:32.399760px;}
._14{width:33.609600px;}
._13{width:34.813440px;}
._2d{width:36.034560px;}
._21{width:37.690560px;}
._11{width:39.412800px;}
._2e{width:41.690880px;}
._29{width:42.883200px;}
._6{width:43.983360px;}
._7{width:45.109440px;}
._e{width:46.900800px;}
._2a{width:49.348800px;}
._12{width:51.163200px;}
._3{width:53.705280px;}
._1f{width:54.770880px;}
._1b{width:56.966400px;}
._1c{width:58.129920px;}
._22{width:59.218560px;}
._23{width:60.537600px;}
._32{width:61.608960px;}
._30{width:75.274560px;}
._31{width:76.440960px;}
._2f{width:80.680320px;}
._16{width:81.861120px;}
._20{width:86.932800px;}
._2c{width:146.191680px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:131.760000px;}
.yd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.140000px;}
.y4d{bottom:10.080000px;}
.y89{bottom:10.620000px;}
.y51{bottom:10.794000px;}
.y9{bottom:10.800000px;}
.y8a{bottom:10.980000px;}
.y9a{bottom:11.160000px;}
.yb4{bottom:11.880000px;}
.y90{bottom:12.060000px;}
.yb3{bottom:12.240000px;}
.y8d{bottom:12.420000px;}
.y8c{bottom:12.780000px;}
.y93{bottom:13.140000px;}
.yba{bottom:13.500000px;}
.yaf{bottom:14.400000px;}
.ya7{bottom:14.760000px;}
.yb7{bottom:14.940000px;}
.yb6{bottom:15.300000px;}
.ya9{bottom:15.660000px;}
.y97{bottom:15.840000px;}
.y9e{bottom:16.020000px;}
.y96{bottom:16.200000px;}
.ya4{bottom:16.740000px;}
.yb{bottom:21.240000px;}
.y4c{bottom:26.460000px;}
.y7{bottom:32.760000px;}
.y4b{bottom:42.660000px;}
.y4e{bottom:48.420000px;}
.y4f{bottom:48.600000px;}
.y6{bottom:50.220000px;}
.y8{bottom:53.280000px;}
.y4a{bottom:58.500000px;}
.y2e{bottom:74.736000px;}
.y48{bottom:79.416000px;}
.yb9{bottom:95.976000px;}
.y85{bottom:98.856000px;}
.ye2{bottom:101.376000px;}
.y2d{bottom:104.436000px;}
.y75{bottom:104.796000px;}
.y47{bottom:107.856000px;}
.y84{bottom:127.296000px;}
.ye1{bottom:129.816000px;}
.y74{bottom:133.236000px;}
.y2c{bottom:133.956000px;}
.y46{bottom:136.296000px;}
.yb8{bottom:138.276000px;}
.y50{bottom:142.056000px;}
.yb5{bottom:154.470000px;}
.y83{bottom:155.370000px;}
.ye0{bottom:158.250000px;}
.y73{bottom:161.670000px;}
.y2b{bottom:163.650000px;}
.y45{bottom:164.730000px;}
.yb2{bottom:184.170000px;}
.y82{bottom:184.350000px;}
.ydf{bottom:186.690000px;}
.y72{bottom:190.110000px;}
.y44{bottom:193.170000px;}
.y2a{bottom:193.350000px;}
.yb1{bottom:210.630000px;}
.y81{bottom:212.790000px;}
.yde{bottom:215.310000px;}
.y71{bottom:218.730000px;}
.y43{bottom:221.610000px;}
.y29{bottom:222.870000px;}
.yb0{bottom:237.270000px;}
.y80{bottom:242.490000px;}
.ydd{bottom:243.750000px;}
.y70{bottom:247.170000px;}
.y42{bottom:250.050000px;}
.y28{bottom:251.310000px;}
.yae{bottom:263.910000px;}
.ycf{bottom:267.330000px;}
.y7f{bottom:272.190000px;}
.y6f{bottom:275.610000px;}
.y41{bottom:278.490000px;}
.y27{bottom:279.750000px;}
.yce{bottom:295.770000px;}
.ydc{bottom:300.630000px;}
.y7e{bottom:301.350000px;}
.y6e{bottom:304.050000px;}
.yad{bottom:306.030000px;}
.y40{bottom:306.930000px;}
.y26{bottom:308.190000px;}
.yac{bottom:322.095000px;}
.ycd{bottom:324.255000px;}
.ydb{bottom:329.115000px;}
.y7d{bottom:330.195000px;}
.y6d{bottom:332.535000px;}
.y3f{bottom:335.595000px;}
.y25{bottom:336.675000px;}
.yab{bottom:346.215000px;}
.ycc{bottom:352.875000px;}
.yda{bottom:357.555000px;}
.y7c{bottom:358.815000px;}
.y6c{bottom:360.975000px;}
.y3e{bottom:364.035000px;}
.y24{bottom:365.115000px;}
.yaa{bottom:370.155000px;}
.ycb{bottom:382.395000px;}
.yd9{bottom:385.995000px;}
.y7b{bottom:388.335000px;}
.y6b{bottom:389.415000px;}
.y3d{bottom:392.475000px;}
.y23{bottom:393.555000px;}
.ya8{bottom:398.955000px;}
.yca{bottom:410.835000px;}
.yd8{bottom:414.435000px;}
.y7a{bottom:416.775000px;}
.y6a{bottom:417.855000px;}
.y3c{bottom:420.555000px;}
.y22{bottom:421.995000px;}
.ya6{bottom:427.575000px;}
.yc9{bottom:440.535000px;}
.yd7{bottom:442.875000px;}
.y79{bottom:445.935000px;}
.y69{bottom:446.295000px;}
.y3b{bottom:449.355000px;}
.y21{bottom:450.615000px;}
.ya5{bottom:468.435000px;}
.yc8{bottom:468.975000px;}
.yd6{bottom:471.495000px;}
.y68{bottom:474.915000px;}
.y3a{bottom:477.795000px;}
.y20{bottom:479.055000px;}
.ya3{bottom:484.635000px;}
.yc7{bottom:498.495000px;}
.yd5{bottom:499.935000px;}
.y67{bottom:503.355000px;}
.y39{bottom:506.235000px;}
.y1f{bottom:507.495000px;}
.ya2{bottom:515.595000px;}
.yc6{bottom:527.115000px;}
.yd4{bottom:528.375000px;}
.y66{bottom:531.795000px;}
.y38{bottom:534.675000px;}
.y1e{bottom:535.935000px;}
.ya1{bottom:545.835000px;}
.yc5{bottom:556.635000px;}
.yd3{bottom:556.815000px;}
.y65{bottom:560.235000px;}
.y37{bottom:563.115000px;}
.y1d{bottom:564.375000px;}
.ya0{bottom:576.285000px;}
.yc4{bottom:585.285000px;}
.y64{bottom:588.705000px;}
.y36{bottom:591.765000px;}
.y1c{bottom:592.845000px;}
.y9f{bottom:606.525000px;}
.yd2{bottom:613.365000px;}
.yc3{bottom:614.805000px;}
.y63{bottom:617.145000px;}
.y35{bottom:620.205000px;}
.y1b{bottom:621.285000px;}
.y9d{bottom:633.165000px;}
.yd1{bottom:642.165000px;}
.yc2{bottom:643.425000px;}
.y62{bottom:645.585000px;}
.y34{bottom:648.645000px;}
.y1a{bottom:649.725000px;}
.yd0{bottom:666.825000px;}
.yc1{bottom:672.945000px;}
.y61{bottom:674.025000px;}
.y9c{bottom:676.725000px;}
.y33{bottom:677.085000px;}
.y19{bottom:678.345000px;}
.y9b{bottom:692.745000px;}
.yc0{bottom:701.385000px;}
.y78{bottom:702.105000px;}
.y60{bottom:702.465000px;}
.y32{bottom:705.525000px;}
.y18{bottom:706.785000px;}
.y99{bottom:716.685000px;}
.ybf{bottom:729.825000px;}
.y5f{bottom:731.085000px;}
.y31{bottom:733.965000px;}
.y17{bottom:735.225000px;}
.y98{bottom:740.805000px;}
.ybe{bottom:758.265000px;}
.y5e{bottom:759.525000px;}
.y30{bottom:762.405000px;}
.y16{bottom:763.665000px;}
.y95{bottom:764.745000px;}
.ybd{bottom:786.705000px;}
.ye3{bottom:787.605000px;}
.y5d{bottom:787.965000px;}
.y2f{bottom:791.025000px;}
.y15{bottom:791.745000px;}
.y94{bottom:807.045000px;}
.ybc{bottom:815.325000px;}
.y5c{bottom:816.405000px;}
.y14{bottom:822.930000px;}
.y92{bottom:823.110000px;}
.ybb{bottom:844.530000px;}
.y5b{bottom:844.890000px;}
.y91{bottom:849.210000px;}
.y13{bottom:851.370000px;}
.y77{bottom:872.970000px;}
.y5a{bottom:873.330000px;}
.y8f{bottom:874.590000px;}
.y12{bottom:879.810000px;}
.y8e{bottom:899.970000px;}
.y59{bottom:901.770000px;}
.y11{bottom:908.250000px;}
.y8b{bottom:923.910000px;}
.y58{bottom:930.210000px;}
.y10{bottom:936.690000px;}
.y88{bottom:949.650000px;}
.y76{bottom:958.290000px;}
.y57{bottom:958.650000px;}
.yf{bottom:971.070000px;}
.y87{bottom:986.910000px;}
.y56{bottom:987.270000px;}
.ye{bottom:993.210000px;}
.y5{bottom:1014.270000px;}
.y55{bottom:1015.710000px;}
.y4{bottom:1034.250000px;}
.y54{bottom:1044.150000px;}
.y3{bottom:1054.050000px;}
.y2{bottom:1072.080000px;}
.y53{bottom:1072.620000px;}
.y1{bottom:1088.640000px;}
.y86{bottom:1100.700000px;}
.y52{bottom:1101.060000px;}
.ya{bottom:1122.300000px;}
.y49{bottom:1131.480000px;}
.h15{height:23.220000px;}
.h1c{height:23.400000px;}
.h19{height:24.660000px;}
.h18{height:25.020000px;}
.h1a{height:25.380000px;}
.h25{height:25.740000px;}
.h1f{height:25.920000px;}
.h22{height:27.000000px;}
.h23{height:27.900000px;}
.h24{height:28.260000px;}
.h1b{height:28.440000px;}
.h26{height:28.800000px;}
.h1d{height:29.520000px;}
.h20{height:29.736000px;}
.h21{height:30.240000px;}
.h6{height:35.100000px;}
.h9{height:41.250937px;}
.hb{height:46.251562px;}
.h1{height:50.229844px;}
.he{height:52.971680px;}
.h17{height:52.998047px;}
.hd{height:53.709961px;}
.h16{height:54.421875px;}
.hf{height:55.291992px;}
.h3{height:58.621992px;}
.h1e{height:58.651172px;}
.h7{height:60.226875px;}
.h14{height:60.679688px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.hc{height:68.084282px;}
.h2{height:72.562500px;}
.h5{height:72.562518px;}
.h13{height:109.800000px;}
.h12{height:111.043839px;}
.h11{height:111.043849px;}
.h4{height:167.250000px;}
.h10{height:268.635000px;}
.h0{height:1188.000000px;}
.w6{width:21.600000px;}
.w2{width:23.940000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w14{width:71.820000px;}
.w15{width:73.800000px;}
.w13{width:75.600000px;}
.w12{width:76.320000px;}
.w11{width:94.860000px;}
.wa{width:94.896000px;}
.w10{width:95.076000px;}
.wb{width:104.436000px;}
.w9{width:105.480000px;}
.wd{width:105.516000px;}
.w8{width:105.696000px;}
.we{width:109.080000px;}
.wc{width:112.680000px;}
.w7{width:180.030000px;}
.wf{width:243.975000px;}
.w3{width:333.795000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x7{left:10.800000px;}
.x5{left:16.920000px;}
.xa{left:31.680000px;}
.x3{left:53.999986px;}
.x1a{left:80.999986px;}
.x1{left:144.215986px;}
.x2{left:174.809986px;}
.xd{left:235.110000px;}
.x14{left:299.055000px;}
.xe{left:341.535000px;}
.x15{left:405.255000px;}
.xf{left:447.915000px;}
.x8{left:488.984986px;}
.x16{left:501.045000px;}
.xb{left:515.984986px;}
.x10{left:543.525000px;}
.x6{left:547.845000px;}
.x17{left:596.805000px;}
.x11{left:649.905000px;}
.x18{left:692.430000px;}
.x12{left:755.070000px;}
.x13{left:756.150000px;}
.x19{left:788.190000px;}
.x9{left:871.200000px;}
.x4{left:876.060000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.286933pt;}
.lsa{letter-spacing:-0.244267pt;}
.lsb{letter-spacing:-0.163733pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.504533pt;}
.lsd{letter-spacing:0.640000pt;}
.ls12{letter-spacing:35.471360pt;}
.ls4{letter-spacing:52.751360pt;}
.ws7{word-spacing:-58.880000pt;}
.ws3{word-spacing:-53.120000pt;}
.wsb{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.224533pt;}
.ws10{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.176000pt;}
.wse{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.789867pt;}
.wsd{word-spacing:-12.666667pt;}
.ws9{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.226667pt;}
._1d{width:2.437120pt;}
._24{width:3.333120pt;}
._c{width:4.239360pt;}
._d{width:5.145600pt;}
._2{width:6.182400pt;}
._27{width:7.108693pt;}
._8{width:8.030720pt;}
._9{width:9.067520pt;}
._10{width:10.006613pt;}
._a{width:10.951680pt;}
._f{width:12.352000pt;}
._1e{width:13.777920pt;}
._17{width:16.483840pt;}
._b{width:17.428480pt;}
._28{width:18.598400pt;}
._18{width:19.665920pt;}
._2b{width:21.079040pt;}
._4{width:22.103040pt;}
._5{width:23.116800pt;}
._26{width:24.081920pt;}
._25{width:25.026560pt;}
._15{width:26.577920pt;}
._1a{width:27.496960pt;}
._19{width:28.799787pt;}
._14{width:29.875200pt;}
._13{width:30.945280pt;}
._2d{width:32.030720pt;}
._21{width:33.502720pt;}
._11{width:35.033600pt;}
._2e{width:37.058560pt;}
._29{width:38.118400pt;}
._6{width:39.096320pt;}
._7{width:40.097280pt;}
._e{width:41.689600pt;}
._2a{width:43.865600pt;}
._12{width:45.478400pt;}
._3{width:47.738027pt;}
._1f{width:48.685227pt;}
._1b{width:50.636800pt;}
._1c{width:51.671040pt;}
._22{width:52.638720pt;}
._23{width:53.811200pt;}
._32{width:54.763520pt;}
._30{width:66.910720pt;}
._31{width:67.947520pt;}
._2f{width:71.715840pt;}
._16{width:72.765440pt;}
._20{width:77.273600pt;}
._2c{width:129.948160pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:117.120000pt;}
.yd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.680000pt;}
.y4d{bottom:8.960000pt;}
.y89{bottom:9.440000pt;}
.y51{bottom:9.594667pt;}
.y9{bottom:9.600000pt;}
.y8a{bottom:9.760000pt;}
.y9a{bottom:9.920000pt;}
.yb4{bottom:10.560000pt;}
.y90{bottom:10.720000pt;}
.yb3{bottom:10.880000pt;}
.y8d{bottom:11.040000pt;}
.y8c{bottom:11.360000pt;}
.y93{bottom:11.680000pt;}
.yba{bottom:12.000000pt;}
.yaf{bottom:12.800000pt;}
.ya7{bottom:13.120000pt;}
.yb7{bottom:13.280000pt;}
.yb6{bottom:13.600000pt;}
.ya9{bottom:13.920000pt;}
.y97{bottom:14.080000pt;}
.y9e{bottom:14.240000pt;}
.y96{bottom:14.400000pt;}
.ya4{bottom:14.880000pt;}
.yb{bottom:18.880000pt;}
.y4c{bottom:23.520000pt;}
.y7{bottom:29.120000pt;}
.y4b{bottom:37.920000pt;}
.y4e{bottom:43.040000pt;}
.y4f{bottom:43.200000pt;}
.y6{bottom:44.640000pt;}
.y8{bottom:47.360000pt;}
.y4a{bottom:52.000000pt;}
.y2e{bottom:66.432000pt;}
.y48{bottom:70.592000pt;}
.yb9{bottom:85.312000pt;}
.y85{bottom:87.872000pt;}
.ye2{bottom:90.112000pt;}
.y2d{bottom:92.832000pt;}
.y75{bottom:93.152000pt;}
.y47{bottom:95.872000pt;}
.y84{bottom:113.152000pt;}
.ye1{bottom:115.392000pt;}
.y74{bottom:118.432000pt;}
.y2c{bottom:119.072000pt;}
.y46{bottom:121.152000pt;}
.yb8{bottom:122.912000pt;}
.y50{bottom:126.272000pt;}
.yb5{bottom:137.306667pt;}
.y83{bottom:138.106667pt;}
.ye0{bottom:140.666667pt;}
.y73{bottom:143.706667pt;}
.y2b{bottom:145.466667pt;}
.y45{bottom:146.426667pt;}
.yb2{bottom:163.706667pt;}
.y82{bottom:163.866667pt;}
.ydf{bottom:165.946667pt;}
.y72{bottom:168.986667pt;}
.y44{bottom:171.706667pt;}
.y2a{bottom:171.866667pt;}
.yb1{bottom:187.226667pt;}
.y81{bottom:189.146667pt;}
.yde{bottom:191.386667pt;}
.y71{bottom:194.426667pt;}
.y43{bottom:196.986667pt;}
.y29{bottom:198.106667pt;}
.yb0{bottom:210.906667pt;}
.y80{bottom:215.546667pt;}
.ydd{bottom:216.666667pt;}
.y70{bottom:219.706667pt;}
.y42{bottom:222.266667pt;}
.y28{bottom:223.386667pt;}
.yae{bottom:234.586667pt;}
.ycf{bottom:237.626667pt;}
.y7f{bottom:241.946667pt;}
.y6f{bottom:244.986667pt;}
.y41{bottom:247.546667pt;}
.y27{bottom:248.666667pt;}
.yce{bottom:262.906667pt;}
.ydc{bottom:267.226667pt;}
.y7e{bottom:267.866667pt;}
.y6e{bottom:270.266667pt;}
.yad{bottom:272.026667pt;}
.y40{bottom:272.826667pt;}
.y26{bottom:273.946667pt;}
.yac{bottom:286.306667pt;}
.ycd{bottom:288.226667pt;}
.ydb{bottom:292.546667pt;}
.y7d{bottom:293.506667pt;}
.y6d{bottom:295.586667pt;}
.y3f{bottom:298.306667pt;}
.y25{bottom:299.266667pt;}
.yab{bottom:307.746667pt;}
.ycc{bottom:313.666667pt;}
.yda{bottom:317.826667pt;}
.y7c{bottom:318.946667pt;}
.y6c{bottom:320.866667pt;}
.y3e{bottom:323.586667pt;}
.y24{bottom:324.546667pt;}
.yaa{bottom:329.026667pt;}
.ycb{bottom:339.906667pt;}
.yd9{bottom:343.106667pt;}
.y7b{bottom:345.186667pt;}
.y6b{bottom:346.146667pt;}
.y3d{bottom:348.866667pt;}
.y23{bottom:349.826667pt;}
.ya8{bottom:354.626667pt;}
.yca{bottom:365.186667pt;}
.yd8{bottom:368.386667pt;}
.y7a{bottom:370.466667pt;}
.y6a{bottom:371.426667pt;}
.y3c{bottom:373.826667pt;}
.y22{bottom:375.106667pt;}
.ya6{bottom:380.066667pt;}
.yc9{bottom:391.586667pt;}
.yd7{bottom:393.666667pt;}
.y79{bottom:396.386667pt;}
.y69{bottom:396.706667pt;}
.y3b{bottom:399.426667pt;}
.y21{bottom:400.546667pt;}
.ya5{bottom:416.386667pt;}
.yc8{bottom:416.866667pt;}
.yd6{bottom:419.106667pt;}
.y68{bottom:422.146667pt;}
.y3a{bottom:424.706667pt;}
.y20{bottom:425.826667pt;}
.ya3{bottom:430.786667pt;}
.yc7{bottom:443.106667pt;}
.yd5{bottom:444.386667pt;}
.y67{bottom:447.426667pt;}
.y39{bottom:449.986667pt;}
.y1f{bottom:451.106667pt;}
.ya2{bottom:458.306667pt;}
.yc6{bottom:468.546667pt;}
.yd4{bottom:469.666667pt;}
.y66{bottom:472.706667pt;}
.y38{bottom:475.266667pt;}
.y1e{bottom:476.386667pt;}
.ya1{bottom:485.186667pt;}
.yc5{bottom:494.786667pt;}
.yd3{bottom:494.946667pt;}
.y65{bottom:497.986667pt;}
.y37{bottom:500.546667pt;}
.y1d{bottom:501.666667pt;}
.ya0{bottom:512.253333pt;}
.yc4{bottom:520.253333pt;}
.y64{bottom:523.293333pt;}
.y36{bottom:526.013333pt;}
.y1c{bottom:526.973333pt;}
.y9f{bottom:539.133333pt;}
.yd2{bottom:545.213333pt;}
.yc3{bottom:546.493333pt;}
.y63{bottom:548.573333pt;}
.y35{bottom:551.293333pt;}
.y1b{bottom:552.253333pt;}
.y9d{bottom:562.813333pt;}
.yd1{bottom:570.813333pt;}
.yc2{bottom:571.933333pt;}
.y62{bottom:573.853333pt;}
.y34{bottom:576.573333pt;}
.y1a{bottom:577.533333pt;}
.yd0{bottom:592.733333pt;}
.yc1{bottom:598.173333pt;}
.y61{bottom:599.133333pt;}
.y9c{bottom:601.533333pt;}
.y33{bottom:601.853333pt;}
.y19{bottom:602.973333pt;}
.y9b{bottom:615.773333pt;}
.yc0{bottom:623.453333pt;}
.y78{bottom:624.093333pt;}
.y60{bottom:624.413333pt;}
.y32{bottom:627.133333pt;}
.y18{bottom:628.253333pt;}
.y99{bottom:637.053333pt;}
.ybf{bottom:648.733333pt;}
.y5f{bottom:649.853333pt;}
.y31{bottom:652.413333pt;}
.y17{bottom:653.533333pt;}
.y98{bottom:658.493333pt;}
.ybe{bottom:674.013333pt;}
.y5e{bottom:675.133333pt;}
.y30{bottom:677.693333pt;}
.y16{bottom:678.813333pt;}
.y95{bottom:679.773333pt;}
.ybd{bottom:699.293333pt;}
.ye3{bottom:700.093333pt;}
.y5d{bottom:700.413333pt;}
.y2f{bottom:703.133333pt;}
.y15{bottom:703.773333pt;}
.y94{bottom:717.373333pt;}
.ybc{bottom:724.733333pt;}
.y5c{bottom:725.693333pt;}
.y14{bottom:731.493333pt;}
.y92{bottom:731.653333pt;}
.ybb{bottom:750.693333pt;}
.y5b{bottom:751.013333pt;}
.y91{bottom:754.853333pt;}
.y13{bottom:756.773333pt;}
.y77{bottom:775.973333pt;}
.y5a{bottom:776.293333pt;}
.y8f{bottom:777.413333pt;}
.y12{bottom:782.053333pt;}
.y8e{bottom:799.973333pt;}
.y59{bottom:801.573333pt;}
.y11{bottom:807.333333pt;}
.y8b{bottom:821.253333pt;}
.y58{bottom:826.853333pt;}
.y10{bottom:832.613333pt;}
.y88{bottom:844.133333pt;}
.y76{bottom:851.813333pt;}
.y57{bottom:852.133333pt;}
.yf{bottom:863.173333pt;}
.y87{bottom:877.253333pt;}
.y56{bottom:877.573333pt;}
.ye{bottom:882.853333pt;}
.y5{bottom:901.573333pt;}
.y55{bottom:902.853333pt;}
.y4{bottom:919.333333pt;}
.y54{bottom:928.133333pt;}
.y3{bottom:936.933333pt;}
.y2{bottom:952.960000pt;}
.y53{bottom:953.440000pt;}
.y1{bottom:967.680000pt;}
.y86{bottom:978.400000pt;}
.y52{bottom:978.720000pt;}
.ya{bottom:997.600000pt;}
.y49{bottom:1005.760000pt;}
.h15{height:20.640000pt;}
.h1c{height:20.800000pt;}
.h19{height:21.920000pt;}
.h18{height:22.240000pt;}
.h1a{height:22.560000pt;}
.h25{height:22.880000pt;}
.h1f{height:23.040000pt;}
.h22{height:24.000000pt;}
.h23{height:24.800000pt;}
.h24{height:25.120000pt;}
.h1b{height:25.280000pt;}
.h26{height:25.600000pt;}
.h1d{height:26.240000pt;}
.h20{height:26.432000pt;}
.h21{height:26.880000pt;}
.h6{height:31.200000pt;}
.h9{height:36.667500pt;}
.hb{height:41.112500pt;}
.h1{height:44.648750pt;}
.he{height:47.085938pt;}
.h17{height:47.109375pt;}
.hd{height:47.742188pt;}
.h16{height:48.375000pt;}
.hf{height:49.148438pt;}
.h3{height:52.108438pt;}
.h1e{height:52.134375pt;}
.h7{height:53.535000pt;}
.h14{height:53.937500pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.hc{height:60.519362pt;}
.h2{height:64.500000pt;}
.h5{height:64.500016pt;}
.h13{height:97.600000pt;}
.h12{height:98.705635pt;}
.h11{height:98.705644pt;}
.h4{height:148.666667pt;}
.h10{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w6{width:19.200000pt;}
.w2{width:21.280000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w14{width:63.840000pt;}
.w15{width:65.600000pt;}
.w13{width:67.200000pt;}
.w12{width:67.840000pt;}
.w11{width:84.320000pt;}
.wa{width:84.352000pt;}
.w10{width:84.512000pt;}
.wb{width:92.832000pt;}
.w9{width:93.760000pt;}
.wd{width:93.792000pt;}
.w8{width:93.952000pt;}
.we{width:96.960000pt;}
.wc{width:100.160000pt;}
.w7{width:160.026667pt;}
.wf{width:216.866667pt;}
.w3{width:296.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x7{left:9.600000pt;}
.x5{left:15.040000pt;}
.xa{left:28.160000pt;}
.x3{left:47.999988pt;}
.x1a{left:71.999988pt;}
.x1{left:128.191988pt;}
.x2{left:155.386655pt;}
.xd{left:208.986667pt;}
.x14{left:265.826667pt;}
.xe{left:303.586667pt;}
.x15{left:360.226667pt;}
.xf{left:398.146667pt;}
.x8{left:434.653321pt;}
.x16{left:445.373333pt;}
.xb{left:458.653321pt;}
.x10{left:483.133333pt;}
.x6{left:486.973333pt;}
.x17{left:530.493333pt;}
.x11{left:577.693333pt;}
.x18{left:615.493333pt;}
.x12{left:671.173333pt;}
.x13{left:672.133333pt;}
.x19{left:700.613333pt;}
.x9{left:774.400000pt;}
.x4{left:778.720000pt;}
}




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