
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_933b8384ed36b5250b12c12c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_62fe9e0900d224658e08784c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f63095cb361679768648c747.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_99a142cd9f5603fe6ca20d4f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ad899d92b0a50f65dbcf8998.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_db32e123ec1f01984704cc47.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_54cec7f3614f6bc9ad12a817.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls16{letter-spacing:-0.125400px;}
.ls8{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.013320px;}
.ls6{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.042600px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.lse{letter-spacing:0.098400px;}
.ls13{letter-spacing:0.116400px;}
.lsf{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:7.200000px;}
.ls18{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.269000px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.213080px;}
.wsb{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.101000px;}
.wsf{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-3.426600px;}
._3{margin-left:-2.305800px;}
._0{margin-left:-1.020000px;}
._2{width:1.004379px;}
._d{width:2.242221px;}
._53{width:3.276656px;}
._c{width:4.282559px;}
._5{width:5.350800px;}
._9{width:7.334400px;}
._a{width:8.380342px;}
._f{width:9.655658px;}
._10{width:10.881720px;}
._1{width:12.750012px;}
._8{width:15.210600px;}
._20{width:16.532760px;}
._6{width:18.036000px;}
._7{width:19.238400px;}
._12{width:20.621160px;}
._e{width:22.003920px;}
._b{width:23.506800px;}
._26{width:25.130280px;}
._17{width:26.933760px;}
._16{width:28.196280px;}
._54{width:29.354400px;}
._21{width:31.382640px;}
._15{width:33.246360px;}
._2b{width:36.192240px;}
._2c{width:37.394640px;}
._25{width:39.136080px;}
._23{width:40.220280px;}
._4b{width:42.023880px;}
._4d{width:44.849520px;}
._47{width:46.172160px;}
._37{width:47.975760px;}
._1d{width:49.368240px;}
._28{width:50.489040px;}
._49{width:51.943680px;}
._29{width:53.681400px;}
._3a{width:55.671120px;}
._1f{width:61.021800px;}
._35{width:63.907560px;}
._38{width:67.530720px;}
._18{width:68.897520px;}
._4e{width:70.460640px;}
._46{width:72.985680px;}
._13{width:74.188080px;}
._11{width:75.630960px;}
._2f{width:76.666680px;}
._3b{width:77.675040px;}
._14{width:81.883440px;}
._48{width:82.932120px;}
._3d{width:84.575520px;}
._27{width:87.775200px;}
._52{width:93.977280px;}
._34{width:96.913440px;}
._24{width:101.783160px;}
._1b{width:103.346280px;}
._42{width:105.330240px;}
._45{width:108.336240px;}
._2e{width:110.079720px;}
._3c{width:112.424400px;}
._4a{width:113.566680px;}
._3e{width:120.781080px;}
._4f{width:123.063600px;}
._2d{width:130.219920px;}
._3f{width:132.925320px;}
._36{width:148.135680px;}
._41{width:153.366120px;}
._40{width:163.706760px;}
._44{width:169.117560px;}
._51{width:172.243800px;}
._31{width:180.059400px;}
._30{width:182.283840px;}
._33{width:183.426120px;}
._1a{width:196.493640px;}
._1e{width:200.199600px;}
._50{width:214.448040px;}
._22{width:246.311640px;}
._39{width:253.826640px;}
._32{width:266.031000px;}
._1c{width:268.075080px;}
._43{width:275.469840px;}
._4c{width:287.133120px;}
._19{width:310.640040px;}
._2a{width:323.084880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y65{bottom:9.090000px;}
.y58{bottom:9.180000px;}
.y64{bottom:28.080000px;}
.y69{bottom:28.110000px;}
.y5b{bottom:28.170000px;}
.y7b{bottom:28.200000px;}
.y63{bottom:47.070000px;}
.y68{bottom:47.100000px;}
.y5d{bottom:47.160000px;}
.y5a{bottom:47.190000px;}
.y2{bottom:74.370000px;}
.y27{bottom:75.540000px;}
.y1{bottom:103.980000px;}
.y54{bottom:131.070000px;}
.yf9{bottom:134.130000px;}
.yd7{bottom:137.820000px;}
.y50{bottom:143.310000px;}
.yaf{bottom:147.360000px;}
.y92{bottom:148.530000px;}
.y6e{bottom:152.040000px;}
.yf8{bottom:153.120000px;}
.yd6{bottom:156.810000px;}
.y4f{bottom:162.300000px;}
.ya7{bottom:165.990000px;}
.yae{bottom:166.350000px;}
.y53{bottom:168.060000px;}
.y25{bottom:168.240000px;}
.yf7{bottom:181.110000px;}
.y4e{bottom:181.290000px;}
.yd5{bottom:184.800000px;}
.yad{bottom:185.340000px;}
.y91{bottom:185.520000px;}
.y24{bottom:187.140000px;}
.yf6{bottom:200.100000px;}
.y4d{bottom:200.280000px;}
.y7f{bottom:201.360000px;}
.ya6{bottom:202.980000px;}
.yd4{bottom:203.790000px;}
.yac{bottom:204.330000px;}
.y90{bottom:204.510000px;}
.y52{bottom:205.050000px;}
.y23{bottom:206.130000px;}
.y6d{bottom:218.730000px;}
.yd3{bottom:222.780000px;}
.yab{bottom:223.320000px;}
.y8f{bottom:223.500000px;}
.y22{bottom:225.120000px;}
.yf5{bottom:228.000000px;}
.y4c{bottom:228.180000px;}
.y51{bottom:238.710000px;}
.ya5{bottom:239.970000px;}
.y8e{bottom:242.400000px;}
.y21{bottom:244.110000px;}
.yf4{bottom:246.990000px;}
.yaa{bottom:251.310000px;}
.y8d{bottom:261.390000px;}
.y4b{bottom:265.170000px;}
.y6c{bottom:266.430000px;}
.y7e{bottom:268.050000px;}
.y20{bottom:272.640000px;}
.yf3{bottom:274.980000px;}
.ya4{bottom:276.870000px;}
.y8c{bottom:280.380000px;}
.y4a{bottom:285.060000px;}
.ya9{bottom:288.300000px;}
.yf2{bottom:293.970000px;}
.yd2{bottom:300.900000px;}
.y49{bottom:304.860000px;}
.y8b{bottom:308.370000px;}
.yf1{bottom:312.960000px;}
.ya3{bottom:313.860000px;}
.y6b{bottom:314.130000px;}
.y7d{bottom:315.750000px;}
.ya8{bottom:321.960000px;}
.y1f{bottom:322.230000px;}
.y48{bottom:324.660000px;}
.yd1{bottom:329.340000px;}
.ya2{bottom:332.850000px;}
.yf0{bottom:340.950000px;}
.y1e{bottom:341.760000px;}
.y47{bottom:344.460000px;}
.y8a{bottom:345.360000px;}
.ya1{bottom:351.840000px;}
.yef{bottom:359.940000px;}
.yd0{bottom:368.220000px;}
.ya0{bottom:370.830000px;}
.y46{bottom:373.260000px;}
.y89{bottom:379.020000px;}
.y1d{bottom:380.100000px;}
.y6a{bottom:380.820000px;}
.y7c{bottom:382.440000px;}
.yee{bottom:387.840000px;}
.y9f{bottom:389.820000px;}
.y1c{bottom:399.090000px;}
.y9b{bottom:405.120000px;}
.yed{bottom:406.830000px;}
.y45{bottom:410.250000px;}
.y9e{bottom:417.810000px;}
.y1b{bottom:417.990000px;}
.y44{bottom:430.050000px;}
.yec{bottom:434.820000px;}
.ycf{bottom:436.800000px;}
.y1a{bottom:436.980000px;}
.y9a{bottom:442.110000px;}
.y67{bottom:447.510000px;}
.y7a{bottom:449.130000px;}
.y43{bottom:449.850000px;}
.yeb{bottom:453.810000px;}
.y9d{bottom:454.800000px;}
.yce{bottom:455.790000px;}
.y19{bottom:455.970000px;}
.y99{bottom:461.100000px;}
.y42{bottom:469.650000px;}
.yea{bottom:472.830000px;}
.ycd{bottom:474.810000px;}
.y18{bottom:474.990000px;}
.y98{bottom:480.120000px;}
.y9c{bottom:488.490000px;}
.y41{bottom:489.480000px;}
.ycc{bottom:493.800000px;}
.y17{bottom:493.980000px;}
.y79{bottom:496.860000px;}
.y97{bottom:499.110000px;}
.ye9{bottom:500.820000px;}
.y40{bottom:509.280000px;}
.ycb{bottom:512.790000px;}
.y16{bottom:512.970000px;}
.y66{bottom:514.230000px;}
.y96{bottom:518.100000px;}
.ye8{bottom:519.810000px;}
.yca{bottom:531.690000px;}
.y15{bottom:531.960000px;}
.y3f{bottom:537.990000px;}
.ye7{bottom:538.800000px;}
.y95{bottom:546.090000px;}
.yc9{bottom:550.680000px;}
.y14{bottom:550.860000px;}
.y78{bottom:563.550000px;}
.ye6{bottom:566.700000px;}
.yc8{bottom:569.670000px;}
.y13{bottom:569.850000px;}
.y3e{bottom:572.010000px;}
.y62{bottom:580.920000px;}
.y94{bottom:583.080000px;}
.ye5{bottom:585.690000px;}
.yc7{bottom:588.660000px;}
.y12{bottom:588.840000px;}
.yc6{bottom:607.650000px;}
.y3d{bottom:609.000000px;}
.ye4{bottom:613.680000px;}
.y93{bottom:616.740000px;}
.y11{bottom:617.370000px;}
.yc5{bottom:626.640000px;}
.y3c{bottom:627.990000px;}
.y77{bottom:630.240000px;}
.ye3{bottom:632.670000px;}
.y61{bottom:647.520000px;}
.yc4{bottom:655.170000px;}
.ye2{bottom:660.660000px;}
.y3b{bottom:664.980000px;}
.y10{bottom:665.610000px;}
.y76{bottom:677.940000px;}
.ye1{bottom:679.650000px;}
.y3a{bottom:684.780000px;}
.yf{bottom:701.430000px;}
.y39{bottom:704.580000px;}
.yc3{bottom:704.760000px;}
.ye0{bottom:707.640000px;}
.y60{bottom:714.210000px;}
.yc2{bottom:723.660000px;}
.y75{bottom:725.640000px;}
.ydf{bottom:726.540000px;}
.ye{bottom:737.430000px;}
.y38{bottom:742.380000px;}
.yc1{bottom:742.650000px;}
.yfa{bottom:745.530000px;}
.yde{bottom:754.530000px;}
.y37{bottom:761.370000px;}
.yc0{bottom:761.640000px;}
.y74{bottom:773.340000px;}
.ydd{bottom:773.520000px;}
.yd{bottom:777.210000px;}
.y36{bottom:780.360000px;}
.ybf{bottom:780.630000px;}
.y5f{bottom:780.900000px;}
.ydc{bottom:792.510000px;}
.yc{bottom:795.210000px;}
.ybe{bottom:799.620000px;}
.y35{bottom:808.350000px;}
.yb{bottom:813.210000px;}
.ybd{bottom:818.610000px;}
.ydb{bottom:820.500000px;}
.ya{bottom:831.210000px;}
.ybc{bottom:837.600000px;}
.yda{bottom:839.490000px;}
.y73{bottom:840.030000px;}
.y34{bottom:845.880000px;}
.y5e{bottom:847.590000px;}
.y9{bottom:849.210000px;}
.ybb{bottom:856.590000px;}
.y8{bottom:867.210000px;}
.yd9{bottom:867.480000px;}
.yba{bottom:875.490000px;}
.y7{bottom:885.210000px;}
.yd8{bottom:886.380000px;}
.yb9{bottom:894.480000px;}
.y33{bottom:895.380000px;}
.y88{bottom:901.230000px;}
.y72{bottom:906.720000px;}
.y5c{bottom:914.280000px;}
.y32{bottom:914.370000px;}
.y6{bottom:919.050000px;}
.y87{bottom:920.220000px;}
.yb8{bottom:923.010000px;}
.y31{bottom:933.360000px;}
.y86{bottom:939.210000px;}
.y5{bottom:939.930000px;}
.y71{bottom:954.420000px;}
.y85{bottom:958.200000px;}
.yb7{bottom:961.350000px;}
.y30{bottom:970.350000px;}
.y84{bottom:977.190000px;}
.y4{bottom:980.250000px;}
.yb6{bottom:980.340000px;}
.y59{bottom:980.970000px;}
.y2f{bottom:989.340000px;}
.y83{bottom:996.180000px;}
.yb5{bottom:999.330000px;}
.y3{bottom:1006.800000px;}
.y2e{bottom:1008.330000px;}
.yb4{bottom:1018.350000px;}
.y70{bottom:1021.140000px;}
.y82{bottom:1024.110000px;}
.y2d{bottom:1027.350000px;}
.y2c{bottom:1046.340000px;}
.y57{bottom:1047.690000px;}
.yb3{bottom:1055.340000px;}
.y81{bottom:1061.100000px;}
.yb2{bottom:1074.240000px;}
.y80{bottom:1080.090000px;}
.y2b{bottom:1083.240000px;}
.y6f{bottom:1087.830000px;}
.yb1{bottom:1093.230000px;}
.y56{bottom:1099.080000px;}
.y2a{bottom:1102.230000px;}
.yb0{bottom:1112.220000px;}
.y29{bottom:1121.220000px;}
.y55{bottom:1127.610000px;}
.y28{bottom:1140.210000px;}
.y26{bottom:1194.210000px;}
.he{height:27.990000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h14{height:46.890000px;}
.h15{height:46.980000px;}
.h16{height:47.010000px;}
.hf{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:59.973223px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.h12{height:65.880000px;}
.h13{height:65.910000px;}
.h11{height:65.970000px;}
.h10{height:66.000000px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:130.890000px;}
.w4{width:181.980000px;}
.w5{width:193.260000px;}
.w6{width:247.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x12{left:111.239987px;}
.x7{left:200.460000px;}
.xe{left:209.999987px;}
.x2{left:211.079987px;}
.xc{left:212.609987px;}
.x11{left:238.979987px;}
.xa{left:241.769987px;}
.x5{left:366.599987px;}
.x8{left:383.250000px;}
.xf{left:446.609987px;}
.x9{left:577.230000px;}
.x10{left:730.139987px;}
.xd{left:787.559987px;}
.x3{left:800.339987px;}
.xb{left:807.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls16{letter-spacing:-0.111467pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.037867pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.087467pt;}
.ls13{letter-spacing:0.103467pt;}
.lsf{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls18{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.794667pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.744960pt;}
.wsb{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.645333pt;}
.wsf{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-3.045866pt;}
._3{margin-left:-2.049600pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.892781pt;}
._d{width:1.993085pt;}
._53{width:2.912583pt;}
._c{width:3.806719pt;}
._5{width:4.756267pt;}
._9{width:6.519466pt;}
._a{width:7.449193pt;}
._f{width:8.582807pt;}
._10{width:9.672640pt;}
._1{width:11.333344pt;}
._8{width:13.520534pt;}
._20{width:14.695786pt;}
._6{width:16.032000pt;}
._7{width:17.100800pt;}
._12{width:18.329920pt;}
._e{width:19.559040pt;}
._b{width:20.894933pt;}
._26{width:22.338027pt;}
._17{width:23.941120pt;}
._16{width:25.063360pt;}
._54{width:26.092800pt;}
._21{width:27.895680pt;}
._15{width:29.552320pt;}
._2b{width:32.170880pt;}
._2c{width:33.239680pt;}
._25{width:34.787627pt;}
._23{width:35.751360pt;}
._4b{width:37.354560pt;}
._4d{width:39.866240pt;}
._47{width:41.041920pt;}
._37{width:42.645120pt;}
._1d{width:43.882880pt;}
._28{width:44.879147pt;}
._49{width:46.172160pt;}
._29{width:47.716800pt;}
._3a{width:49.485440pt;}
._1f{width:54.241600pt;}
._35{width:56.806720pt;}
._38{width:60.027307pt;}
._18{width:61.242240pt;}
._4e{width:62.631680pt;}
._46{width:64.876160pt;}
._13{width:65.944960pt;}
._11{width:67.227520pt;}
._2f{width:68.148160pt;}
._3b{width:69.044480pt;}
._14{width:72.785280pt;}
._48{width:73.717440pt;}
._3d{width:75.178240pt;}
._27{width:78.022400pt;}
._52{width:83.535360pt;}
._34{width:86.145280pt;}
._24{width:90.473920pt;}
._1b{width:91.863360pt;}
._42{width:93.626880pt;}
._45{width:96.298880pt;}
._2e{width:97.848640pt;}
._3c{width:99.932800pt;}
._4a{width:100.948160pt;}
._3e{width:107.360960pt;}
._4f{width:109.389867pt;}
._2d{width:115.751040pt;}
._3f{width:118.155840pt;}
._36{width:131.676160pt;}
._41{width:136.325440pt;}
._40{width:145.517120pt;}
._44{width:150.326720pt;}
._51{width:153.105600pt;}
._31{width:160.052800pt;}
._30{width:162.030080pt;}
._33{width:163.045440pt;}
._1a{width:174.661013pt;}
._1e{width:177.955200pt;}
._50{width:190.620480pt;}
._22{width:218.943680pt;}
._39{width:225.623680pt;}
._32{width:236.472000pt;}
._1c{width:238.288960pt;}
._43{width:244.862080pt;}
._4c{width:255.229440pt;}
._19{width:276.124480pt;}
._2a{width:287.186560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:8.080000pt;}
.y58{bottom:8.160000pt;}
.y64{bottom:24.960000pt;}
.y69{bottom:24.986667pt;}
.y5b{bottom:25.040000pt;}
.y7b{bottom:25.066667pt;}
.y63{bottom:41.840000pt;}
.y68{bottom:41.866667pt;}
.y5d{bottom:41.920000pt;}
.y5a{bottom:41.946667pt;}
.y2{bottom:66.106667pt;}
.y27{bottom:67.146667pt;}
.y1{bottom:92.426667pt;}
.y54{bottom:116.506667pt;}
.yf9{bottom:119.226667pt;}
.yd7{bottom:122.506667pt;}
.y50{bottom:127.386667pt;}
.yaf{bottom:130.986667pt;}
.y92{bottom:132.026667pt;}
.y6e{bottom:135.146667pt;}
.yf8{bottom:136.106667pt;}
.yd6{bottom:139.386667pt;}
.y4f{bottom:144.266667pt;}
.ya7{bottom:147.546667pt;}
.yae{bottom:147.866667pt;}
.y53{bottom:149.386667pt;}
.y25{bottom:149.546667pt;}
.yf7{bottom:160.986667pt;}
.y4e{bottom:161.146667pt;}
.yd5{bottom:164.266667pt;}
.yad{bottom:164.746667pt;}
.y91{bottom:164.906667pt;}
.y24{bottom:166.346667pt;}
.yf6{bottom:177.866667pt;}
.y4d{bottom:178.026667pt;}
.y7f{bottom:178.986667pt;}
.ya6{bottom:180.426667pt;}
.yd4{bottom:181.146667pt;}
.yac{bottom:181.626667pt;}
.y90{bottom:181.786667pt;}
.y52{bottom:182.266667pt;}
.y23{bottom:183.226667pt;}
.y6d{bottom:194.426667pt;}
.yd3{bottom:198.026667pt;}
.yab{bottom:198.506667pt;}
.y8f{bottom:198.666667pt;}
.y22{bottom:200.106667pt;}
.yf5{bottom:202.666667pt;}
.y4c{bottom:202.826667pt;}
.y51{bottom:212.186667pt;}
.ya5{bottom:213.306667pt;}
.y8e{bottom:215.466667pt;}
.y21{bottom:216.986667pt;}
.yf4{bottom:219.546667pt;}
.yaa{bottom:223.386667pt;}
.y8d{bottom:232.346667pt;}
.y4b{bottom:235.706667pt;}
.y6c{bottom:236.826667pt;}
.y7e{bottom:238.266667pt;}
.y20{bottom:242.346667pt;}
.yf3{bottom:244.426667pt;}
.ya4{bottom:246.106667pt;}
.y8c{bottom:249.226667pt;}
.y4a{bottom:253.386667pt;}
.ya9{bottom:256.266667pt;}
.yf2{bottom:261.306667pt;}
.yd2{bottom:267.466667pt;}
.y49{bottom:270.986667pt;}
.y8b{bottom:274.106667pt;}
.yf1{bottom:278.186667pt;}
.ya3{bottom:278.986667pt;}
.y6b{bottom:279.226667pt;}
.y7d{bottom:280.666667pt;}
.ya8{bottom:286.186667pt;}
.y1f{bottom:286.426667pt;}
.y48{bottom:288.586667pt;}
.yd1{bottom:292.746667pt;}
.ya2{bottom:295.866667pt;}
.yf0{bottom:303.066667pt;}
.y1e{bottom:303.786667pt;}
.y47{bottom:306.186667pt;}
.y8a{bottom:306.986667pt;}
.ya1{bottom:312.746667pt;}
.yef{bottom:319.946667pt;}
.yd0{bottom:327.306667pt;}
.ya0{bottom:329.626667pt;}
.y46{bottom:331.786667pt;}
.y89{bottom:336.906667pt;}
.y1d{bottom:337.866667pt;}
.y6a{bottom:338.506667pt;}
.y7c{bottom:339.946667pt;}
.yee{bottom:344.746667pt;}
.y9f{bottom:346.506667pt;}
.y1c{bottom:354.746667pt;}
.y9b{bottom:360.106667pt;}
.yed{bottom:361.626667pt;}
.y45{bottom:364.666667pt;}
.y9e{bottom:371.386667pt;}
.y1b{bottom:371.546667pt;}
.y44{bottom:382.266667pt;}
.yec{bottom:386.506667pt;}
.ycf{bottom:388.266667pt;}
.y1a{bottom:388.426667pt;}
.y9a{bottom:392.986667pt;}
.y67{bottom:397.786667pt;}
.y7a{bottom:399.226667pt;}
.y43{bottom:399.866667pt;}
.yeb{bottom:403.386667pt;}
.y9d{bottom:404.266667pt;}
.yce{bottom:405.146667pt;}
.y19{bottom:405.306667pt;}
.y99{bottom:409.866667pt;}
.y42{bottom:417.466667pt;}
.yea{bottom:420.293333pt;}
.ycd{bottom:422.053333pt;}
.y18{bottom:422.213333pt;}
.y98{bottom:426.773333pt;}
.y9c{bottom:434.213333pt;}
.y41{bottom:435.093333pt;}
.ycc{bottom:438.933333pt;}
.y17{bottom:439.093333pt;}
.y79{bottom:441.653333pt;}
.y97{bottom:443.653333pt;}
.ye9{bottom:445.173333pt;}
.y40{bottom:452.693333pt;}
.ycb{bottom:455.813333pt;}
.y16{bottom:455.973333pt;}
.y66{bottom:457.093333pt;}
.y96{bottom:460.533333pt;}
.ye8{bottom:462.053333pt;}
.yca{bottom:472.613333pt;}
.y15{bottom:472.853333pt;}
.y3f{bottom:478.213333pt;}
.ye7{bottom:478.933333pt;}
.y95{bottom:485.413333pt;}
.yc9{bottom:489.493333pt;}
.y14{bottom:489.653333pt;}
.y78{bottom:500.933333pt;}
.ye6{bottom:503.733333pt;}
.yc8{bottom:506.373333pt;}
.y13{bottom:506.533333pt;}
.y3e{bottom:508.453333pt;}
.y62{bottom:516.373333pt;}
.y94{bottom:518.293333pt;}
.ye5{bottom:520.613333pt;}
.yc7{bottom:523.253333pt;}
.y12{bottom:523.413333pt;}
.yc6{bottom:540.133333pt;}
.y3d{bottom:541.333333pt;}
.ye4{bottom:545.493333pt;}
.y93{bottom:548.213333pt;}
.y11{bottom:548.773333pt;}
.yc5{bottom:557.013333pt;}
.y3c{bottom:558.213333pt;}
.y77{bottom:560.213333pt;}
.ye3{bottom:562.373333pt;}
.y61{bottom:575.573333pt;}
.yc4{bottom:582.373333pt;}
.ye2{bottom:587.253333pt;}
.y3b{bottom:591.093333pt;}
.y10{bottom:591.653333pt;}
.y76{bottom:602.613333pt;}
.ye1{bottom:604.133333pt;}
.y3a{bottom:608.693333pt;}
.yf{bottom:623.493333pt;}
.y39{bottom:626.293333pt;}
.yc3{bottom:626.453333pt;}
.ye0{bottom:629.013333pt;}
.y60{bottom:634.853333pt;}
.yc2{bottom:643.253333pt;}
.y75{bottom:645.013333pt;}
.ydf{bottom:645.813333pt;}
.ye{bottom:655.493333pt;}
.y38{bottom:659.893333pt;}
.yc1{bottom:660.133333pt;}
.yfa{bottom:662.693333pt;}
.yde{bottom:670.693333pt;}
.y37{bottom:676.773333pt;}
.yc0{bottom:677.013333pt;}
.y74{bottom:687.413333pt;}
.ydd{bottom:687.573333pt;}
.yd{bottom:690.853333pt;}
.y36{bottom:693.653333pt;}
.ybf{bottom:693.893333pt;}
.y5f{bottom:694.133333pt;}
.ydc{bottom:704.453333pt;}
.yc{bottom:706.853333pt;}
.ybe{bottom:710.773333pt;}
.y35{bottom:718.533333pt;}
.yb{bottom:722.853333pt;}
.ybd{bottom:727.653333pt;}
.ydb{bottom:729.333333pt;}
.ya{bottom:738.853333pt;}
.ybc{bottom:744.533333pt;}
.yda{bottom:746.213333pt;}
.y73{bottom:746.693333pt;}
.y34{bottom:751.893333pt;}
.y5e{bottom:753.413333pt;}
.y9{bottom:754.853333pt;}
.ybb{bottom:761.413333pt;}
.y8{bottom:770.853333pt;}
.yd9{bottom:771.093333pt;}
.yba{bottom:778.213333pt;}
.y7{bottom:786.853333pt;}
.yd8{bottom:787.893333pt;}
.yb9{bottom:795.093333pt;}
.y33{bottom:795.893333pt;}
.y88{bottom:801.093333pt;}
.y72{bottom:805.973333pt;}
.y5c{bottom:812.693333pt;}
.y32{bottom:812.773333pt;}
.y6{bottom:816.933333pt;}
.y87{bottom:817.973333pt;}
.yb8{bottom:820.453333pt;}
.y31{bottom:829.653333pt;}
.y86{bottom:834.853333pt;}
.y5{bottom:835.493333pt;}
.y71{bottom:848.373333pt;}
.y85{bottom:851.733333pt;}
.yb7{bottom:854.533333pt;}
.y30{bottom:862.533333pt;}
.y84{bottom:868.613333pt;}
.y4{bottom:871.333333pt;}
.yb6{bottom:871.413333pt;}
.y59{bottom:871.973333pt;}
.y2f{bottom:879.413333pt;}
.y83{bottom:885.493333pt;}
.yb5{bottom:888.293333pt;}
.y3{bottom:894.933333pt;}
.y2e{bottom:896.293333pt;}
.yb4{bottom:905.200000pt;}
.y70{bottom:907.680000pt;}
.y82{bottom:910.320000pt;}
.y2d{bottom:913.200000pt;}
.y2c{bottom:930.080000pt;}
.y57{bottom:931.280000pt;}
.yb3{bottom:938.080000pt;}
.y81{bottom:943.200000pt;}
.yb2{bottom:954.880000pt;}
.y80{bottom:960.080000pt;}
.y2b{bottom:962.880000pt;}
.y6f{bottom:966.960000pt;}
.yb1{bottom:971.760000pt;}
.y56{bottom:976.960000pt;}
.y2a{bottom:979.760000pt;}
.yb0{bottom:988.640000pt;}
.y29{bottom:996.640000pt;}
.y55{bottom:1002.320000pt;}
.y28{bottom:1013.520000pt;}
.y26{bottom:1061.520000pt;}
.he{height:24.880000pt;}
.h2{height:26.686563pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h14{height:41.680000pt;}
.h15{height:41.760000pt;}
.h16{height:41.786667pt;}
.hf{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:53.309531pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.h12{height:58.560000pt;}
.h13{height:58.586667pt;}
.h11{height:58.640000pt;}
.h10{height:58.666667pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:116.346667pt;}
.w4{width:161.760000pt;}
.w5{width:171.786667pt;}
.w6{width:219.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x12{left:98.879988pt;}
.x7{left:178.186667pt;}
.xe{left:186.666655pt;}
.x2{left:187.626655pt;}
.xc{left:188.986655pt;}
.x11{left:212.426655pt;}
.xa{left:214.906655pt;}
.x5{left:325.866655pt;}
.x8{left:340.666667pt;}
.xf{left:396.986655pt;}
.x9{left:513.093333pt;}
.x10{left:649.013322pt;}
.xd{left:700.053322pt;}
.x3{left:711.413322pt;}
.xb{left:718.053322pt;}
}




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