
    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_bfa05996dc9eb8d5f456d05a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_45db7cf6ae3448ee927f7f29.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fc036ea81b8950c3591f0e7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f0c85194acd7b3233a438bbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_f9bc614e6980ed0db752b326.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_5ba07a1077b27b599e3b8db2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0eb1dba29ef0883d7debf94e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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);}
.v6{vertical-align:-69.300000px;}
.v7{vertical-align:-63.360000px;}
.v1{vertical-align:-61.920000px;}
.v3{vertical-align:-21.600000px;}
.v5{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v2{vertical-align:21.600000px;}
.ls18{letter-spacing:-1.944000px;}
.lsb{letter-spacing:-1.938000px;}
.lse{letter-spacing:-1.626000px;}
.ls13{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.428000px;}
.ls19{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.942000px;}
.ls12{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.630000px;}
.ls16{letter-spacing:-0.507000px;}
.lsf{letter-spacing:-0.498000px;}
.ls15{letter-spacing:-0.468000px;}
.ls1a{letter-spacing:-0.466800px;}
.lsc{letter-spacing:-0.184200px;}
.ls1b{letter-spacing:-0.020160px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.466560px;}
.ls17{letter-spacing:0.466800px;}
.ls23{letter-spacing:0.498000px;}
.ls6{letter-spacing:0.498240px;}
.ls7{letter-spacing:0.627840px;}
.ls1{letter-spacing:0.630000px;}
.ls4{letter-spacing:0.711360px;}
.ls24{letter-spacing:0.936000px;}
.ls1e{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.908000px;}
.ls1d{letter-spacing:4.788000px;}
.ls25{letter-spacing:7.666560px;}
.ls27{letter-spacing:9.267840px;}
.ls20{letter-spacing:13.426560px;}
.ls22{letter-spacing:13.606560px;}
.ls9{letter-spacing:15.027840px;}
.ls26{letter-spacing:26.386560px;}
.ls0{letter-spacing:42.387840px;}
.ls21{letter-spacing:66.706560px;}
.ls1f{letter-spacing:68.290560px;}
.ls2{letter-spacing:685.140000px;}
.ls8{letter-spacing:904.083840px;}
.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;}
}
.ws16{word-spacing:-54.720000px;}
.ws10{word-spacing:-17.280240px;}
.ws12{word-spacing:-16.833600px;}
.ws8{word-spacing:-16.813440px;}
.ws13{word-spacing:-16.793280px;}
.ws11{word-spacing:-16.346640px;}
.wse{word-spacing:-16.306440px;}
.ws7{word-spacing:-15.842160px;}
.ws14{word-spacing:-15.710160px;}
.ws2{word-spacing:-15.212160px;}
.ws1{word-spacing:-15.027960px;}
.wsf{word-spacing:-14.869440px;}
.ws5{word-spacing:-14.714160px;}
.ws6{word-spacing:-14.582160px;}
.wsb{word-spacing:-14.402160px;}
.ws3{word-spacing:-14.270160px;}
.ws15{word-spacing:-13.772160px;}
.ws4{word-spacing:-13.586160px;}
.ws0{word-spacing:-13.274160px;}
.ws9{word-spacing:-10.821600px;}
.wsa{word-spacing:-10.008000px;}
.wsd{word-spacing:-9.540000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-2.050560px;}
._3{margin-left:-1.030560px;}
._1{width:1.000320px;}
._10{width:2.054400px;}
._2{width:3.193440px;}
._5{width:4.333680px;}
._4{width:5.497920px;}
._f{width:7.027200px;}
._9{width:8.697600px;}
._a{width:9.891600px;}
._8{width:11.373120px;}
._11{width:12.702000px;}
._d{width:13.731840px;}
._19{width:15.471360px;}
._7{width:16.687680px;}
._6{width:17.794560px;}
._e{width:19.491600px;}
._12{width:20.655360px;}
._13{width:21.705840px;}
._14{width:22.708800px;}
._15{width:24.371040px;}
._1f{width:25.401600px;}
._1b{width:26.970240px;}
._1a{width:28.385520px;}
._20{width:30.119040px;}
._21{width:31.204320px;}
._23{width:32.541120px;}
._22{width:33.684000px;}
._27{width:34.834080px;}
._24{width:36.040320px;}
._25{width:37.578240px;}
._26{width:38.849280px;}
._18{width:39.850560px;}
._c{width:41.065680px;}
._b{width:42.609360px;}
._1c{width:44.751840px;}
._1e{width:45.924000px;}
._1d{width:47.367840px;}
._2d{width:48.384000px;}
._2e{width:49.466880px;}
._16{width:57.032640px;}
._17{width:58.068840px;}
._29{width:59.466240px;}
._2a{width:60.480240px;}
._31{width:61.512480px;}
._2b{width:62.853120px;}
._2f{width:64.344960px;}
._30{width:65.604480px;}
._28{width:68.290560px;}
._2c{width:76.279680px;}
._33{width:89.178240px;}
._32{width:90.668160px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:2.880000px;}
.y8e{bottom:2.925000px;}
.yad{bottom:3.240000px;}
.y92{bottom:5.040000px;}
.y8b{bottom:5.085000px;}
.y96{bottom:7.920000px;}
.y87{bottom:18.360000px;}
.y84{bottom:18.390000px;}
.ya9{bottom:18.720000px;}
.y8a{bottom:20.565000px;}
.y91{bottom:20.880000px;}
.y95{bottom:23.400000px;}
.y89{bottom:36.045000px;}
.y90{bottom:36.360000px;}
.y9{bottom:60.876000px;}
.y8{bottom:76.356000px;}
.y7{bottom:91.872000px;}
.y6{bottom:107.352000px;}
.y5{bottom:122.832000px;}
.y4{bottom:138.312000px;}
.y30{bottom:156.315000px;}
.ycc{bottom:157.395000px;}
.y71{bottom:160.635000px;}
.yf7{bottom:162.075000px;}
.y56{bottom:165.675000px;}
.ya8{bottom:167.115000px;}
.y2f{bottom:172.155000px;}
.ycb{bottom:174.675000px;}
.yf6{bottom:177.555000px;}
.y70{bottom:177.915000px;}
.y82{bottom:179.715000px;}
.y55{bottom:182.955000px;}
.ya7{bottom:184.425000px;}
.y2e{bottom:187.665000px;}
.yca{bottom:191.985000px;}
.yf5{bottom:193.065000px;}
.y6f{bottom:195.225000px;}
.y81{bottom:197.025000px;}
.y54{bottom:200.265000px;}
.ya6{bottom:201.705000px;}
.y2d{bottom:203.145000px;}
.yf4{bottom:208.545000px;}
.yc9{bottom:209.265000px;}
.yde{bottom:210.705000px;}
.y6e{bottom:212.145000px;}
.y80{bottom:214.305000px;}
.y53{bottom:217.545000px;}
.y2c{bottom:218.625000px;}
.ya5{bottom:218.985000px;}
.yf3{bottom:224.025000px;}
.ydd{bottom:226.185000px;}
.yc8{bottom:226.545000px;}
.y6d{bottom:229.425000px;}
.y7f{bottom:231.585000px;}
.y2b{bottom:234.105000px;}
.y52{bottom:234.825000px;}
.ya4{bottom:236.265000px;}
.yf2{bottom:239.505000px;}
.ydc{bottom:241.665000px;}
.yc7{bottom:243.825000px;}
.y6c{bottom:246.705000px;}
.y7e{bottom:248.865000px;}
.y2a{bottom:249.585000px;}
.y51{bottom:252.105000px;}
.ya3{bottom:253.545000px;}
.yf1{bottom:254.985000px;}
.ydb{bottom:257.145000px;}
.yc6{bottom:260.745000px;}
.y6b{bottom:263.985000px;}
.y29{bottom:265.065000px;}
.y7d{bottom:266.145000px;}
.y50{bottom:269.385000px;}
.ya2{bottom:270.825000px;}
.yda{bottom:272.985000px;}
.yc5{bottom:278.025000px;}
.y28{bottom:280.590000px;}
.y6a{bottom:281.310000px;}
.y7c{bottom:283.470000px;}
.yf0{bottom:286.350000px;}
.y4f{bottom:286.710000px;}
.ya1{bottom:288.150000px;}
.yd9{bottom:288.510000px;}
.yc4{bottom:295.350000px;}
.y27{bottom:296.430000px;}
.y69{bottom:298.590000px;}
.y7b{bottom:300.750000px;}
.yef{bottom:301.830000px;}
.y4e{bottom:303.630000px;}
.yd8{bottom:303.990000px;}
.ya0{bottom:305.430000px;}
.y26{bottom:311.910000px;}
.yc3{bottom:312.630000px;}
.y68{bottom:315.870000px;}
.yee{bottom:317.310000px;}
.y7a{bottom:318.030000px;}
.yd7{bottom:319.470000px;}
.y4d{bottom:320.910000px;}
.y9f{bottom:322.710000px;}
.y25{bottom:327.390000px;}
.yc2{bottom:329.910000px;}
.yed{bottom:332.790000px;}
.y67{bottom:333.150000px;}
.yd6{bottom:334.950000px;}
.y79{bottom:335.310000px;}
.y4c{bottom:338.190000px;}
.y9e{bottom:339.990000px;}
.y24{bottom:342.870000px;}
.yc1{bottom:347.190000px;}
.yec{bottom:348.270000px;}
.y66{bottom:350.430000px;}
.y78{bottom:352.230000px;}
.y4b{bottom:355.470000px;}
.y9d{bottom:357.270000px;}
.y23{bottom:358.350000px;}
.yeb{bottom:363.750000px;}
.yc0{bottom:364.470000px;}
.yd5{bottom:365.910000px;}
.y65{bottom:367.710000px;}
.y77{bottom:369.510000px;}
.y4a{bottom:372.750000px;}
.y22{bottom:373.860000px;}
.y9c{bottom:374.220000px;}
.yea{bottom:379.260000px;}
.yd4{bottom:381.420000px;}
.ybf{bottom:381.780000px;}
.y64{bottom:385.020000px;}
.y76{bottom:386.820000px;}
.y21{bottom:389.340000px;}
.y49{bottom:390.060000px;}
.y9b{bottom:391.500000px;}
.ye9{bottom:394.740000px;}
.yd3{bottom:397.260000px;}
.ybe{bottom:399.060000px;}
.y63{bottom:402.300000px;}
.y75{bottom:404.100000px;}
.y20{bottom:404.820000px;}
.y48{bottom:407.340000px;}
.y9a{bottom:408.780000px;}
.ye8{bottom:410.580000px;}
.yd2{bottom:412.740000px;}
.ybd{bottom:416.340000px;}
.y62{bottom:419.220000px;}
.y1f{bottom:420.660000px;}
.y74{bottom:421.020000px;}
.y47{bottom:424.620000px;}
.y99{bottom:426.060000px;}
.yd1{bottom:428.220000px;}
.ybc{bottom:433.620000px;}
.y1e{bottom:436.140000px;}
.y61{bottom:436.500000px;}
.ye7{bottom:441.540000px;}
.y46{bottom:441.900000px;}
.y98{bottom:443.340000px;}
.yd0{bottom:443.700000px;}
.ybb{bottom:450.900000px;}
.y1d{bottom:451.620000px;}
.y73{bottom:451.980000px;}
.y60{bottom:453.780000px;}
.ye6{bottom:457.020000px;}
.y45{bottom:459.180000px;}
.y97{bottom:460.620000px;}
.y72{bottom:464.940000px;}
.yba{bottom:467.850000px;}
.y5f{bottom:471.090000px;}
.ye5{bottom:472.530000px;}
.y94{bottom:474.690000px;}
.y44{bottom:476.490000px;}
.y1c{bottom:482.610000px;}
.yb9{bottom:485.130000px;}
.ye4{bottom:488.010000px;}
.y5e{bottom:488.370000px;}
.ycf{bottom:490.170000px;}
.y43{bottom:493.410000px;}
.y1b{bottom:498.090000px;}
.yb8{bottom:502.410000px;}
.ye3{bottom:503.490000px;}
.y5d{bottom:505.650000px;}
.y42{bottom:510.690000px;}
.y8f{bottom:511.770000px;}
.y1a{bottom:513.570000px;}
.ye2{bottom:518.970000px;}
.yb7{bottom:519.690000px;}
.y5c{bottom:522.930000px;}
.y41{bottom:527.970000px;}
.y93{bottom:528.330000px;}
.y19{bottom:529.050000px;}
.yb6{bottom:533.730000px;}
.ye1{bottom:534.810000px;}
.yce{bottom:537.330000px;}
.y5b{bottom:540.210000px;}
.y40{bottom:545.250000px;}
.y18{bottom:547.770000px;}
.ye0{bottom:550.290000px;}
.ycd{bottom:551.370000px;}
.y5a{bottom:557.490000px;}
.y88{bottom:561.810000px;}
.y17{bottom:562.170000px;}
.y3f{bottom:562.575000px;}
.yb5{bottom:565.815000px;}
.y59{bottom:574.815000px;}
.y16{bottom:577.695000px;}
.y8d{bottom:578.415000px;}
.y3e{bottom:579.855000px;}
.ydf{bottom:581.295000px;}
.yb4{bottom:582.735000px;}
.y58{bottom:592.095000px;}
.y15{bottom:593.175000px;}
.y8c{bottom:594.975000px;}
.y3d{bottom:596.775000px;}
.yb3{bottom:599.295000px;}
.y14{bottom:609.015000px;}
.y86{bottom:611.895000px;}
.y3c{bottom:612.255000px;}
.yb2{bottom:615.855000px;}
.y57{bottom:626.295000px;}
.y3b{bottom:627.735000px;}
.y13{bottom:631.695000px;}
.yb1{bottom:632.415000px;}
.y3a{bottom:643.215000px;}
.y12{bottom:643.575000px;}
.y83{bottom:643.935000px;}
.yb0{bottom:649.335000px;}
.y39{bottom:659.085000px;}
.y11{bottom:660.885000px;}
.yaf{bottom:665.925000px;}
.y38{bottom:674.565000px;}
.y10{bottom:678.165000px;}
.yae{bottom:682.485000px;}
.y37{bottom:690.045000px;}
.yf{bottom:695.445000px;}
.yac{bottom:699.045000px;}
.y36{bottom:705.525000px;}
.ye{bottom:712.725000px;}
.yab{bottom:715.965000px;}
.y35{bottom:721.005000px;}
.yd{bottom:730.005000px;}
.yaa{bottom:732.525000px;}
.y34{bottom:736.485000px;}
.yc{bottom:747.285000px;}
.y33{bottom:752.010000px;}
.yb{bottom:764.610000px;}
.y32{bottom:767.490000px;}
.ya{bottom:781.890000px;}
.y31{bottom:783.330000px;}
.y3{bottom:799.890000px;}
.y2{bottom:820.770000px;}
.y1{bottom:838.050000px;}
.ha{height:15.480000px;}
.hb{height:15.516000px;}
.hf{height:15.840000px;}
.h8{height:30.960000px;}
.h7{height:30.996000px;}
.he{height:31.320000px;}
.hd{height:36.000000px;}
.h5{height:41.478750px;}
.h9{height:48.636000px;}
.hc{height:48.960000px;}
.h6{height:49.561875px;}
.h2{height:57.071250px;}
.h4{height:63.078750px;}
.h3{height:70.664062px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.w7{width:51.156000px;}
.w6{width:52.236000px;}
.w5{width:338.220000px;}
.w4{width:443.775000px;}
.w3{width:446.655000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x13{left:6.480000px;}
.x1a{left:10.800000px;}
.x1d{left:14.400000px;}
.x17{left:17.280000px;}
.x19{left:18.360000px;}
.x15{left:19.800000px;}
.x18{left:22.320000px;}
.x1{left:84.995991px;}
.x4{left:87.875991px;}
.xd{left:89.315991px;}
.x5{left:91.115991px;}
.xf{left:95.832000px;}
.x12{left:97.272000px;}
.x8{left:106.991991px;}
.x9{left:119.231991px;}
.x1c{left:122.831991px;}
.x1b{left:124.953000px;}
.xb{left:138.311991px;}
.xa{left:185.864991px;}
.x10{left:195.948000px;}
.x6{left:209.984991px;}
.x11{left:222.948000px;}
.xe{left:233.069991px;}
.x1f{left:258.269991px;}
.x7{left:314.819991px;}
.x2{left:396.569991px;}
.x14{left:436.575000px;}
.x16{left:489.885000px;}
.xc{left:532.724991px;}
.x3{left:544.649991px;}
.x1e{left:548.609991px;}
@media print{
.v6{vertical-align:-61.600000pt;}
.v7{vertical-align:-56.320000pt;}
.v1{vertical-align:-55.040000pt;}
.v3{vertical-align:-19.200000pt;}
.v5{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v2{vertical-align:19.200000pt;}
.ls18{letter-spacing:-1.728000pt;}
.lsb{letter-spacing:-1.722667pt;}
.lse{letter-spacing:-1.445333pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.269333pt;}
.ls19{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.837333pt;}
.ls12{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls16{letter-spacing:-0.450667pt;}
.lsf{letter-spacing:-0.442667pt;}
.ls15{letter-spacing:-0.416000pt;}
.ls1a{letter-spacing:-0.414933pt;}
.lsc{letter-spacing:-0.163733pt;}
.ls1b{letter-spacing:-0.017920pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.414720pt;}
.ls17{letter-spacing:0.414933pt;}
.ls23{letter-spacing:0.442667pt;}
.ls6{letter-spacing:0.442880pt;}
.ls7{letter-spacing:0.558080pt;}
.ls1{letter-spacing:0.560000pt;}
.ls4{letter-spacing:0.632320pt;}
.ls24{letter-spacing:0.832000pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.696000pt;}
.ls1d{letter-spacing:4.256000pt;}
.ls25{letter-spacing:6.814720pt;}
.ls27{letter-spacing:8.238080pt;}
.ls20{letter-spacing:11.934720pt;}
.ls22{letter-spacing:12.094720pt;}
.ls9{letter-spacing:13.358080pt;}
.ls26{letter-spacing:23.454720pt;}
.ls0{letter-spacing:37.678080pt;}
.ls21{letter-spacing:59.294720pt;}
.ls1f{letter-spacing:60.702720pt;}
.ls2{letter-spacing:609.013333pt;}
.ls8{letter-spacing:803.630080pt;}
.ws16{word-spacing:-48.640000pt;}
.ws10{word-spacing:-15.360213pt;}
.ws12{word-spacing:-14.963200pt;}
.ws8{word-spacing:-14.945280pt;}
.ws13{word-spacing:-14.927360pt;}
.ws11{word-spacing:-14.530347pt;}
.wse{word-spacing:-14.494613pt;}
.ws7{word-spacing:-14.081920pt;}
.ws14{word-spacing:-13.964587pt;}
.ws2{word-spacing:-13.521920pt;}
.ws1{word-spacing:-13.358187pt;}
.wsf{word-spacing:-13.217280pt;}
.ws5{word-spacing:-13.079253pt;}
.ws6{word-spacing:-12.961920pt;}
.wsb{word-spacing:-12.801920pt;}
.ws3{word-spacing:-12.684587pt;}
.ws15{word-spacing:-12.241920pt;}
.ws4{word-spacing:-12.076587pt;}
.ws0{word-spacing:-11.799253pt;}
.ws9{word-spacing:-9.619200pt;}
.wsa{word-spacing:-8.896000pt;}
.wsd{word-spacing:-8.480000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.822720pt;}
._3{margin-left:-0.916053pt;}
._1{width:0.889173pt;}
._10{width:1.826133pt;}
._2{width:2.838613pt;}
._5{width:3.852160pt;}
._4{width:4.887040pt;}
._f{width:6.246400pt;}
._9{width:7.731200pt;}
._a{width:8.792533pt;}
._8{width:10.109440pt;}
._11{width:11.290667pt;}
._d{width:12.206080pt;}
._19{width:13.752320pt;}
._7{width:14.833493pt;}
._6{width:15.817387pt;}
._e{width:17.325867pt;}
._12{width:18.360320pt;}
._13{width:19.294080pt;}
._14{width:20.185600pt;}
._15{width:21.663147pt;}
._1f{width:22.579200pt;}
._1b{width:23.973547pt;}
._1a{width:25.231573pt;}
._20{width:26.772480pt;}
._21{width:27.737173pt;}
._23{width:28.925440pt;}
._22{width:29.941333pt;}
._27{width:30.963627pt;}
._24{width:32.035840pt;}
._25{width:33.402880pt;}
._26{width:34.532693pt;}
._18{width:35.422720pt;}
._c{width:36.502827pt;}
._b{width:37.874987pt;}
._1c{width:39.779413pt;}
._1e{width:40.821333pt;}
._1d{width:42.104747pt;}
._2d{width:43.008000pt;}
._2e{width:43.970560pt;}
._16{width:50.695680pt;}
._17{width:51.616747pt;}
._29{width:52.858880pt;}
._2a{width:53.760213pt;}
._31{width:54.677760pt;}
._2b{width:55.869440pt;}
._2f{width:57.195520pt;}
._30{width:58.315093pt;}
._28{width:60.702720pt;}
._2c{width:67.804160pt;}
._33{width:79.269547pt;}
._32{width:80.593920pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:2.560000pt;}
.y8e{bottom:2.600000pt;}
.yad{bottom:2.880000pt;}
.y92{bottom:4.480000pt;}
.y8b{bottom:4.520000pt;}
.y96{bottom:7.040000pt;}
.y87{bottom:16.320000pt;}
.y84{bottom:16.346667pt;}
.ya9{bottom:16.640000pt;}
.y8a{bottom:18.280000pt;}
.y91{bottom:18.560000pt;}
.y95{bottom:20.800000pt;}
.y89{bottom:32.040000pt;}
.y90{bottom:32.320000pt;}
.y9{bottom:54.112000pt;}
.y8{bottom:67.872000pt;}
.y7{bottom:81.664000pt;}
.y6{bottom:95.424000pt;}
.y5{bottom:109.184000pt;}
.y4{bottom:122.944000pt;}
.y30{bottom:138.946667pt;}
.ycc{bottom:139.906667pt;}
.y71{bottom:142.786667pt;}
.yf7{bottom:144.066667pt;}
.y56{bottom:147.266667pt;}
.ya8{bottom:148.546667pt;}
.y2f{bottom:153.026667pt;}
.ycb{bottom:155.266667pt;}
.yf6{bottom:157.826667pt;}
.y70{bottom:158.146667pt;}
.y82{bottom:159.746667pt;}
.y55{bottom:162.626667pt;}
.ya7{bottom:163.933333pt;}
.y2e{bottom:166.813333pt;}
.yca{bottom:170.653333pt;}
.yf5{bottom:171.613333pt;}
.y6f{bottom:173.533333pt;}
.y81{bottom:175.133333pt;}
.y54{bottom:178.013333pt;}
.ya6{bottom:179.293333pt;}
.y2d{bottom:180.573333pt;}
.yf4{bottom:185.373333pt;}
.yc9{bottom:186.013333pt;}
.yde{bottom:187.293333pt;}
.y6e{bottom:188.573333pt;}
.y80{bottom:190.493333pt;}
.y53{bottom:193.373333pt;}
.y2c{bottom:194.333333pt;}
.ya5{bottom:194.653333pt;}
.yf3{bottom:199.133333pt;}
.ydd{bottom:201.053333pt;}
.yc8{bottom:201.373333pt;}
.y6d{bottom:203.933333pt;}
.y7f{bottom:205.853333pt;}
.y2b{bottom:208.093333pt;}
.y52{bottom:208.733333pt;}
.ya4{bottom:210.013333pt;}
.yf2{bottom:212.893333pt;}
.ydc{bottom:214.813333pt;}
.yc7{bottom:216.733333pt;}
.y6c{bottom:219.293333pt;}
.y7e{bottom:221.213333pt;}
.y2a{bottom:221.853333pt;}
.y51{bottom:224.093333pt;}
.ya3{bottom:225.373333pt;}
.yf1{bottom:226.653333pt;}
.ydb{bottom:228.573333pt;}
.yc6{bottom:231.773333pt;}
.y6b{bottom:234.653333pt;}
.y29{bottom:235.613333pt;}
.y7d{bottom:236.573333pt;}
.y50{bottom:239.453333pt;}
.ya2{bottom:240.733333pt;}
.yda{bottom:242.653333pt;}
.yc5{bottom:247.133333pt;}
.y28{bottom:249.413333pt;}
.y6a{bottom:250.053333pt;}
.y7c{bottom:251.973333pt;}
.yf0{bottom:254.533333pt;}
.y4f{bottom:254.853333pt;}
.ya1{bottom:256.133333pt;}
.yd9{bottom:256.453333pt;}
.yc4{bottom:262.533333pt;}
.y27{bottom:263.493333pt;}
.y69{bottom:265.413333pt;}
.y7b{bottom:267.333333pt;}
.yef{bottom:268.293333pt;}
.y4e{bottom:269.893333pt;}
.yd8{bottom:270.213333pt;}
.ya0{bottom:271.493333pt;}
.y26{bottom:277.253333pt;}
.yc3{bottom:277.893333pt;}
.y68{bottom:280.773333pt;}
.yee{bottom:282.053333pt;}
.y7a{bottom:282.693333pt;}
.yd7{bottom:283.973333pt;}
.y4d{bottom:285.253333pt;}
.y9f{bottom:286.853333pt;}
.y25{bottom:291.013333pt;}
.yc2{bottom:293.253333pt;}
.yed{bottom:295.813333pt;}
.y67{bottom:296.133333pt;}
.yd6{bottom:297.733333pt;}
.y79{bottom:298.053333pt;}
.y4c{bottom:300.613333pt;}
.y9e{bottom:302.213333pt;}
.y24{bottom:304.773333pt;}
.yc1{bottom:308.613333pt;}
.yec{bottom:309.573333pt;}
.y66{bottom:311.493333pt;}
.y78{bottom:313.093333pt;}
.y4b{bottom:315.973333pt;}
.y9d{bottom:317.573333pt;}
.y23{bottom:318.533333pt;}
.yeb{bottom:323.333333pt;}
.yc0{bottom:323.973333pt;}
.yd5{bottom:325.253333pt;}
.y65{bottom:326.853333pt;}
.y77{bottom:328.453333pt;}
.y4a{bottom:331.333333pt;}
.y22{bottom:332.320000pt;}
.y9c{bottom:332.640000pt;}
.yea{bottom:337.120000pt;}
.yd4{bottom:339.040000pt;}
.ybf{bottom:339.360000pt;}
.y64{bottom:342.240000pt;}
.y76{bottom:343.840000pt;}
.y21{bottom:346.080000pt;}
.y49{bottom:346.720000pt;}
.y9b{bottom:348.000000pt;}
.ye9{bottom:350.880000pt;}
.yd3{bottom:353.120000pt;}
.ybe{bottom:354.720000pt;}
.y63{bottom:357.600000pt;}
.y75{bottom:359.200000pt;}
.y20{bottom:359.840000pt;}
.y48{bottom:362.080000pt;}
.y9a{bottom:363.360000pt;}
.ye8{bottom:364.960000pt;}
.yd2{bottom:366.880000pt;}
.ybd{bottom:370.080000pt;}
.y62{bottom:372.640000pt;}
.y1f{bottom:373.920000pt;}
.y74{bottom:374.240000pt;}
.y47{bottom:377.440000pt;}
.y99{bottom:378.720000pt;}
.yd1{bottom:380.640000pt;}
.ybc{bottom:385.440000pt;}
.y1e{bottom:387.680000pt;}
.y61{bottom:388.000000pt;}
.ye7{bottom:392.480000pt;}
.y46{bottom:392.800000pt;}
.y98{bottom:394.080000pt;}
.yd0{bottom:394.400000pt;}
.ybb{bottom:400.800000pt;}
.y1d{bottom:401.440000pt;}
.y73{bottom:401.760000pt;}
.y60{bottom:403.360000pt;}
.ye6{bottom:406.240000pt;}
.y45{bottom:408.160000pt;}
.y97{bottom:409.440000pt;}
.y72{bottom:413.280000pt;}
.yba{bottom:415.866667pt;}
.y5f{bottom:418.746667pt;}
.ye5{bottom:420.026667pt;}
.y94{bottom:421.946667pt;}
.y44{bottom:423.546667pt;}
.y1c{bottom:428.986667pt;}
.yb9{bottom:431.226667pt;}
.ye4{bottom:433.786667pt;}
.y5e{bottom:434.106667pt;}
.ycf{bottom:435.706667pt;}
.y43{bottom:438.586667pt;}
.y1b{bottom:442.746667pt;}
.yb8{bottom:446.586667pt;}
.ye3{bottom:447.546667pt;}
.y5d{bottom:449.466667pt;}
.y42{bottom:453.946667pt;}
.y8f{bottom:454.906667pt;}
.y1a{bottom:456.506667pt;}
.ye2{bottom:461.306667pt;}
.yb7{bottom:461.946667pt;}
.y5c{bottom:464.826667pt;}
.y41{bottom:469.306667pt;}
.y93{bottom:469.626667pt;}
.y19{bottom:470.266667pt;}
.yb6{bottom:474.426667pt;}
.ye1{bottom:475.386667pt;}
.yce{bottom:477.626667pt;}
.y5b{bottom:480.186667pt;}
.y40{bottom:484.666667pt;}
.y18{bottom:486.906667pt;}
.ye0{bottom:489.146667pt;}
.ycd{bottom:490.106667pt;}
.y5a{bottom:495.546667pt;}
.y88{bottom:499.386667pt;}
.y17{bottom:499.706667pt;}
.y3f{bottom:500.066667pt;}
.yb5{bottom:502.946667pt;}
.y59{bottom:510.946667pt;}
.y16{bottom:513.506667pt;}
.y8d{bottom:514.146667pt;}
.y3e{bottom:515.426667pt;}
.ydf{bottom:516.706667pt;}
.yb4{bottom:517.986667pt;}
.y58{bottom:526.306667pt;}
.y15{bottom:527.266667pt;}
.y8c{bottom:528.866667pt;}
.y3d{bottom:530.466667pt;}
.yb3{bottom:532.706667pt;}
.y14{bottom:541.346667pt;}
.y86{bottom:543.906667pt;}
.y3c{bottom:544.226667pt;}
.yb2{bottom:547.426667pt;}
.y57{bottom:556.706667pt;}
.y3b{bottom:557.986667pt;}
.y13{bottom:561.506667pt;}
.yb1{bottom:562.146667pt;}
.y3a{bottom:571.746667pt;}
.y12{bottom:572.066667pt;}
.y83{bottom:572.386667pt;}
.yb0{bottom:577.186667pt;}
.y39{bottom:585.853333pt;}
.y11{bottom:587.453333pt;}
.yaf{bottom:591.933333pt;}
.y38{bottom:599.613333pt;}
.y10{bottom:602.813333pt;}
.yae{bottom:606.653333pt;}
.y37{bottom:613.373333pt;}
.yf{bottom:618.173333pt;}
.yac{bottom:621.373333pt;}
.y36{bottom:627.133333pt;}
.ye{bottom:633.533333pt;}
.yab{bottom:636.413333pt;}
.y35{bottom:640.893333pt;}
.yd{bottom:648.893333pt;}
.yaa{bottom:651.133333pt;}
.y34{bottom:654.653333pt;}
.yc{bottom:664.253333pt;}
.y33{bottom:668.453333pt;}
.yb{bottom:679.653333pt;}
.y32{bottom:682.213333pt;}
.ya{bottom:695.013333pt;}
.y31{bottom:696.293333pt;}
.y3{bottom:711.013333pt;}
.y2{bottom:729.573333pt;}
.y1{bottom:744.933333pt;}
.ha{height:13.760000pt;}
.hb{height:13.792000pt;}
.hf{height:14.080000pt;}
.h8{height:27.520000pt;}
.h7{height:27.552000pt;}
.he{height:27.840000pt;}
.hd{height:32.000000pt;}
.h5{height:36.870000pt;}
.h9{height:43.232000pt;}
.hc{height:43.520000pt;}
.h6{height:44.055000pt;}
.h2{height:50.730000pt;}
.h4{height:56.070000pt;}
.h3{height:62.812500pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.w7{width:45.472000pt;}
.w6{width:46.432000pt;}
.w5{width:300.640000pt;}
.w4{width:394.466667pt;}
.w3{width:397.026667pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x13{left:5.760000pt;}
.x1a{left:9.600000pt;}
.x1d{left:12.800000pt;}
.x17{left:15.360000pt;}
.x19{left:16.320000pt;}
.x15{left:17.600000pt;}
.x18{left:19.840000pt;}
.x1{left:75.551992pt;}
.x4{left:78.111992pt;}
.xd{left:79.391992pt;}
.x5{left:80.991992pt;}
.xf{left:85.184000pt;}
.x12{left:86.464000pt;}
.x8{left:95.103992pt;}
.x9{left:105.983992pt;}
.x1c{left:109.183992pt;}
.x1b{left:111.069333pt;}
.xb{left:122.943992pt;}
.xa{left:165.213325pt;}
.x10{left:174.176000pt;}
.x6{left:186.653325pt;}
.x11{left:198.176000pt;}
.xe{left:207.173325pt;}
.x1f{left:229.573325pt;}
.x7{left:279.839992pt;}
.x2{left:352.506658pt;}
.x14{left:388.066667pt;}
.x16{left:435.453333pt;}
.xc{left:473.533325pt;}
.x3{left:484.133325pt;}
.x1e{left:487.653325pt;}
}




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