
    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_22c4bcf7210bb4cdddd7c168.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0c8a8a85d99e65af6db5852e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_eb15d57970b5bc7e20000737.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e976c012644ddb73493d6cb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_7af6af3fa90eec7b37b5294f.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_6bc437bca767eeee018184b3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1c16a1676da1cab418bca8cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.027360px;}
.lse{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.013320px;}
.ls3{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.540000px;}
.lsd{letter-spacing:4.050000px;}
.ls11{letter-spacing:20.907360px;}
.ls4{letter-spacing:46.286640px;}
.ls10{letter-spacing:49.347360px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws5{word-spacing:-26.856000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.210000px;}
.ws4{word-spacing:-15.183600px;}
.wsf{word-spacing:-15.169800px;}
.wsd{word-spacing:-15.043320px;}
.ws7{word-spacing:-15.030000px;}
.wsc{word-spacing:-15.016680px;}
.wse{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.970000px;}
.ws6{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._a{margin-left:-6.372000px;}
._26{margin-left:-4.448880px;}
._10{margin-left:-3.246480px;}
._4{margin-left:-2.211000px;}
._0{margin-left:-1.142280px;}
._3{width:1.022520px;}
._6{width:2.384280px;}
._5{width:3.564000px;}
._7{width:4.824000px;}
._8{width:6.696000px;}
._13{width:7.867800px;}
._1d{width:9.258480px;}
._1b{width:10.581120px;}
._9{width:11.996280px;}
._14{width:13.346640px;}
._29{width:15.357600px;}
._1c{width:16.833600px;}
._15{width:17.915760px;}
._11{width:19.201320px;}
._e{width:20.340000px;}
._12{width:21.449160px;}
._f{width:23.220000px;}
._22{width:24.408720px;}
._19{width:26.091600px;}
._2{width:27.210000px;}
._18{width:28.761720px;}
._20{width:30.516600px;}
._25{width:31.961040px;}
._27{width:33.366600px;}
._2a{width:35.771400px;}
._28{width:37.154160px;}
._16{width:38.584080px;}
._1a{width:40.550760px;}
._17{width:41.843520px;}
._1e{width:43.827480px;}
._1f{width:45.330480px;}
._21{width:47.254320px;}
._c{width:58.212000px;}
._b{width:59.292000px;}
._24{width:68.236200px;}
._23{width:69.318360px;}
._d{width:84.888000px;}
._1{width:817.602240px;}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs9{font-size:6.120000px;}
.fsc{font-size:11.880000px;}
.fs4{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:54.000000px;}
.fse{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:96.120000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:132.120000px;}
.fs8{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.450000px;}
.y7{bottom:2.610000px;}
.y3b{bottom:2.970000px;}
.y22{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y23{bottom:4.590000px;}
.yf3{bottom:6.390000px;}
.y5{bottom:8.370000px;}
.y6{bottom:16.470000px;}
.y3a{bottom:18.450000px;}
.yf2{bottom:20.250000px;}
.yf{bottom:22.320000px;}
.ye{bottom:33.210000px;}
.y39{bottom:33.930000px;}
.y40{bottom:34.020000px;}
.yf1{bottom:34.050000px;}
.y51{bottom:35.640000px;}
.yf0{bottom:47.820000px;}
.y8{bottom:49.140000px;}
.y38{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.y50{bottom:60.030000px;}
.y37{bottom:64.980000px;}
.y3f{bottom:65.070000px;}
.yc{bottom:65.820000px;}
.y31{bottom:66.600000px;}
.y4{bottom:73.530000px;}
.y3e{bottom:80.550000px;}
.y36{bottom:80.580000px;}
.y30{bottom:82.080000px;}
.y35{bottom:96.060000px;}
.y3d{bottom:96.120000px;}
.y2f{bottom:97.650000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y34{bottom:111.630000px;}
.y2e{bottom:113.130000px;}
.yed{bottom:120.780000px;}
.y4f{bottom:123.840000px;}
.y89{bottom:124.020000px;}
.y33{bottom:127.110000px;}
.y2d{bottom:128.700000px;}
.yef{bottom:134.460000px;}
.yc3{bottom:135.180000px;}
.ya{bottom:136.200000px;}
.y4e{bottom:141.120000px;}
.y88{bottom:141.210000px;}
.y2c{bottom:144.180000px;}
.yc2{bottom:152.460000px;}
.y4d{bottom:158.430000px;}
.y87{bottom:158.520000px;}
.y2b{bottom:159.660000px;}
.yc1{bottom:169.680000px;}
.y2a{bottom:175.230000px;}
.y4c{bottom:175.620000px;}
.y86{bottom:175.800000px;}
.yc0{bottom:186.960000px;}
.y29{bottom:190.710000px;}
.y4b{bottom:192.900000px;}
.y85{bottom:192.990000px;}
.yee{bottom:194.250000px;}
.ybf{bottom:204.240000px;}
.y28{bottom:206.310000px;}
.y4a{bottom:210.180000px;}
.y84{bottom:210.270000px;}
.ybe{bottom:221.250000px;}
.y27{bottom:221.790000px;}
.y49{bottom:227.370000px;}
.y83{bottom:227.460000px;}
.y26{bottom:237.360000px;}
.ybd{bottom:237.720000px;}
.yec{bottom:243.840000px;}
.y48{bottom:244.650000px;}
.y82{bottom:244.740000px;}
.y25{bottom:252.840000px;}
.ybc{bottom:254.100000px;}
.yeb{bottom:261.120000px;}
.y47{bottom:261.930000px;}
.y81{bottom:262.020000px;}
.ybb{bottom:270.480000px;}
.yea{bottom:278.220000px;}
.y46{bottom:279.120000px;}
.y80{bottom:279.210000px;}
.yba{bottom:286.860000px;}
.ye9{bottom:294.600000px;}
.y45{bottom:296.400000px;}
.y7f{bottom:296.490000px;}
.yb9{bottom:303.240000px;}
.ye8{bottom:310.980000px;}
.y44{bottom:313.680000px;}
.y7e{bottom:313.770000px;}
.yb8{bottom:319.620000px;}
.ye7{bottom:327.360000px;}
.y43{bottom:330.870000px;}
.y7d{bottom:330.960000px;}
.yb7{bottom:336.000000px;}
.ye6{bottom:343.740000px;}
.y42{bottom:348.150000px;}
.y7c{bottom:348.240000px;}
.yb6{bottom:352.380000px;}
.ye5{bottom:360.120000px;}
.y41{bottom:365.340000px;}
.y7b{bottom:365.520000px;}
.yb5{bottom:368.760000px;}
.ye4{bottom:376.500000px;}
.y24{bottom:380.100000px;}
.y7a{bottom:382.710000px;}
.yb4{bottom:385.140000px;}
.ye3{bottom:392.880000px;}
.y79{bottom:399.990000px;}
.yb3{bottom:401.520000px;}
.ye2{bottom:409.260000px;}
.y78{bottom:417.270000px;}
.yb2{bottom:417.900000px;}
.ye1{bottom:425.730000px;}
.yb1{bottom:434.280000px;}
.y77{bottom:434.460000px;}
.ye0{bottom:442.110000px;}
.yb0{bottom:450.660000px;}
.y76{bottom:451.740000px;}
.ydf{bottom:458.490000px;}
.yaf{bottom:467.040000px;}
.y75{bottom:469.020000px;}
.yde{bottom:474.870000px;}
.yae{bottom:483.510000px;}
.y74{bottom:486.210000px;}
.y3c{bottom:489.540000px;}
.ydd{bottom:491.250000px;}
.yad{bottom:499.890000px;}
.y73{bottom:503.490000px;}
.y32{bottom:505.830000px;}
.ydc{bottom:507.630000px;}
.yac{bottom:516.270000px;}
.y72{bottom:520.770000px;}
.ydb{bottom:524.010000px;}
.yab{bottom:532.650000px;}
.y71{bottom:537.960000px;}
.yda{bottom:540.390000px;}
.yaa{bottom:549.030000px;}
.y70{bottom:555.240000px;}
.yd9{bottom:556.770000px;}
.ya9{bottom:565.410000px;}
.y6f{bottom:572.430000px;}
.yd8{bottom:573.150000px;}
.ya8{bottom:581.820000px;}
.yd7{bottom:589.560000px;}
.y6e{bottom:589.740000px;}
.ya7{bottom:598.200000px;}
.yd6{bottom:605.940000px;}
.y6d{bottom:607.020000px;}
.ya6{bottom:614.580000px;}
.yd5{bottom:622.320000px;}
.y6c{bottom:624.210000px;}
.ya5{bottom:630.960000px;}
.yd4{bottom:638.700000px;}
.y6b{bottom:641.490000px;}
.y21{bottom:646.350000px;}
.ya4{bottom:647.340000px;}
.yd3{bottom:655.080000px;}
.y6a{bottom:658.770000px;}
.ya3{bottom:663.720000px;}
.yd2{bottom:671.550000px;}
.y69{bottom:675.960000px;}
.y20{bottom:677.130000px;}
.y1e{bottom:680.010000px;}
.ya2{bottom:680.100000px;}
.y1d{bottom:685.770000px;}
.yd1{bottom:687.930000px;}
.y68{bottom:693.240000px;}
.ya1{bottom:696.480000px;}
.y1c{bottom:703.050000px;}
.yd0{bottom:704.310000px;}
.y67{bottom:710.520000px;}
.ya0{bottom:712.950000px;}
.ycf{bottom:720.690000px;}
.y1b{bottom:722.850000px;}
.y66{bottom:727.710000px;}
.y9f{bottom:729.330000px;}
.yce{bottom:737.070000px;}
.y65{bottom:744.990000px;}
.y9e{bottom:745.710000px;}
.y1a{bottom:751.290000px;}
.ycd{bottom:753.450000px;}
.y9d{bottom:762.090000px;}
.y64{bottom:762.270000px;}
.y19{bottom:768.570000px;}
.ycc{bottom:769.830000px;}
.y9c{bottom:778.470000px;}
.y63{bottom:779.460000px;}
.y18{bottom:785.760000px;}
.ycb{bottom:786.210000px;}
.y9b{bottom:794.850000px;}
.y62{bottom:796.740000px;}
.yca{bottom:802.590000px;}
.y17{bottom:805.650000px;}
.y9a{bottom:811.230000px;}
.y61{bottom:814.020000px;}
.yc9{bottom:818.970000px;}
.y99{bottom:827.610000px;}
.y60{bottom:831.210000px;}
.yc8{bottom:835.350000px;}
.y16{bottom:836.700000px;}
.y98{bottom:843.990000px;}
.y5f{bottom:848.490000px;}
.yc7{bottom:851.730000px;}
.y97{bottom:860.370000px;}
.y5e{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.yc6{bottom:868.110000px;}
.y96{bottom:876.750000px;}
.y5d{bottom:882.960000px;}
.yc5{bottom:884.490000px;}
.y95{bottom:893.130000px;}
.y14{bottom:898.800000px;}
.y5c{bottom:900.240000px;}
.yc4{bottom:900.870000px;}
.y94{bottom:909.510000px;}
.y5b{bottom:917.430000px;}
.y93{bottom:925.890000px;}
.y13{bottom:927.240000px;}
.y5a{bottom:934.710000px;}
.y92{bottom:942.270000px;}
.y59{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y91{bottom:958.740000px;}
.y58{bottom:969.180000px;}
.y90{bottom:975.120000px;}
.y57{bottom:986.460000px;}
.y8f{bottom:991.500000px;}
.y56{bottom:1003.770000px;}
.y8e{bottom:1007.910000px;}
.y55{bottom:1020.960000px;}
.y8d{bottom:1024.290000px;}
.y54{bottom:1038.240000px;}
.y8c{bottom:1040.670000px;}
.y53{bottom:1055.520000px;}
.y8b{bottom:1057.050000px;}
.y52{bottom:1072.710000px;}
.y8a{bottom:1073.430000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h13{height:1.800000px;}
.h14{height:4.273242px;}
.hf{height:4.318066px;}
.h15{height:8.382129px;}
.h24{height:13.770000px;}
.h1c{height:15.570000px;}
.h16{height:17.190000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h4{height:27.630000px;}
.h23{height:33.431836px;}
.h6{height:33.782520px;}
.h19{height:37.705078px;}
.h17{height:38.100586px;}
.h7{height:39.082324px;}
.h20{height:39.716016px;}
.h21{height:40.132617px;}
.h1b{height:41.343750px;}
.h22{height:41.410195px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h1e{height:43.769004px;}
.h2{height:45.295488px;}
.h11{height:48.312422px;}
.h1f{height:49.552031px;}
.h1{height:50.800781px;}
.h25{height:58.980000px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h12{height:75.410156px;}
.h10{height:76.201172px;}
.hb{height:93.219434px;}
.h1d{height:108.720000px;}
.he{height:118.619824px;}
.h1a{height:139.710000px;}
.h9{height:143.220000px;}
.h18{height:265.440000px;}
.h0{height:1188.000000px;}
.w2{width:38.520000px;}
.w9{width:38.610000px;}
.w5{width:165.900000px;}
.w8{width:204.960000px;}
.wb{width:381.630000px;}
.w7{width:616.020000px;}
.w4{width:648.060000px;}
.w3{width:778.410000px;}
.wa{width:778.500000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x1b{left:6.749986px;}
.x5{left:8.640000px;}
.x14{left:11.250000px;}
.x17{left:20.520000px;}
.x1c{left:50.759986px;}
.x1{left:53.999986px;}
.x15{left:55.170000px;}
.x1d{left:60.120000px;}
.x19{left:61.199986px;}
.x18{left:65.700000px;}
.xa{left:70.470000px;}
.x2{left:74.429986px;}
.x4{left:83.790000px;}
.x22{left:96.570000px;}
.x1e{left:99.720000px;}
.x9{left:105.510000px;}
.x3{left:107.999986px;}
.x6{left:123.390000px;}
.xe{left:124.739986px;}
.x12{left:130.229986px;}
.x13{left:141.209986px;}
.x8{left:200.190000px;}
.xf{left:223.769986px;}
.xb{left:229.530000px;}
.x7{left:324.030000px;}
.x11{left:374.159986px;}
.x1a{left:486.059986px;}
.x10{left:492.809986px;}
.x21{left:495.240000px;}
.x1f{left:513.059986px;}
.x20{left:540.059986px;}
.x16{left:671.910000px;}
.xc{left:701.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.024320pt;}
.lse{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011840pt;}
.ls3{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.480000pt;}
.lsd{letter-spacing:3.600000pt;}
.ls11{letter-spacing:18.584320pt;}
.ls4{letter-spacing:41.143680pt;}
.ls10{letter-spacing:43.864320pt;}
.ws2{word-spacing:-64.000000pt;}
.ws5{word-spacing:-23.872000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.520000pt;}
.ws4{word-spacing:-13.496533pt;}
.wsf{word-spacing:-13.484267pt;}
.wsd{word-spacing:-13.371840pt;}
.ws7{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.348160pt;}
.wse{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._a{margin-left:-5.664000pt;}
._26{margin-left:-3.954560pt;}
._10{margin-left:-2.885760pt;}
._4{margin-left:-1.965333pt;}
._0{margin-left:-1.015360pt;}
._3{width:0.908907pt;}
._6{width:2.119360pt;}
._5{width:3.168000pt;}
._7{width:4.288000pt;}
._8{width:5.952000pt;}
._13{width:6.993600pt;}
._1d{width:8.229760pt;}
._1b{width:9.405440pt;}
._9{width:10.663360pt;}
._14{width:11.863680pt;}
._29{width:13.651200pt;}
._1c{width:14.963200pt;}
._15{width:15.925120pt;}
._11{width:17.067840pt;}
._e{width:18.080000pt;}
._12{width:19.065920pt;}
._f{width:20.640000pt;}
._22{width:21.696640pt;}
._19{width:23.192533pt;}
._2{width:24.186667pt;}
._18{width:25.565973pt;}
._20{width:27.125867pt;}
._25{width:28.409813pt;}
._27{width:29.659200pt;}
._2a{width:31.796800pt;}
._28{width:33.025920pt;}
._16{width:34.296960pt;}
._1a{width:36.045120pt;}
._17{width:37.194240pt;}
._1e{width:38.957760pt;}
._1f{width:40.293760pt;}
._21{width:42.003840pt;}
._c{width:51.744000pt;}
._b{width:52.704000pt;}
._24{width:60.654400pt;}
._23{width:61.616320pt;}
._d{width:75.456000pt;}
._1{width:726.757547pt;}
.fs9{font-size:5.440000pt;}
.fsc{font-size:10.560000pt;}
.fs4{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:85.440000pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:117.440000pt;}
.fs8{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.400000pt;}
.y7{bottom:2.320000pt;}
.y3b{bottom:2.640000pt;}
.y22{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y23{bottom:4.080000pt;}
.yf3{bottom:5.680000pt;}
.y5{bottom:7.440000pt;}
.y6{bottom:14.640000pt;}
.y3a{bottom:16.400000pt;}
.yf2{bottom:18.000000pt;}
.yf{bottom:19.840000pt;}
.ye{bottom:29.520000pt;}
.y39{bottom:30.160000pt;}
.y40{bottom:30.240000pt;}
.yf1{bottom:30.266667pt;}
.y51{bottom:31.680000pt;}
.yf0{bottom:42.506667pt;}
.y8{bottom:43.680000pt;}
.y38{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.y50{bottom:53.360000pt;}
.y37{bottom:57.760000pt;}
.y3f{bottom:57.840000pt;}
.yc{bottom:58.506667pt;}
.y31{bottom:59.200000pt;}
.y4{bottom:65.360000pt;}
.y3e{bottom:71.600000pt;}
.y36{bottom:71.626667pt;}
.y30{bottom:72.960000pt;}
.y35{bottom:85.386667pt;}
.y3d{bottom:85.440000pt;}
.y2f{bottom:86.800000pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y34{bottom:99.226667pt;}
.y2e{bottom:100.560000pt;}
.yed{bottom:107.360000pt;}
.y4f{bottom:110.080000pt;}
.y89{bottom:110.240000pt;}
.y33{bottom:112.986667pt;}
.y2d{bottom:114.400000pt;}
.yef{bottom:119.520000pt;}
.yc3{bottom:120.160000pt;}
.ya{bottom:121.066667pt;}
.y4e{bottom:125.440000pt;}
.y88{bottom:125.520000pt;}
.y2c{bottom:128.160000pt;}
.yc2{bottom:135.520000pt;}
.y4d{bottom:140.826667pt;}
.y87{bottom:140.906667pt;}
.y2b{bottom:141.920000pt;}
.yc1{bottom:150.826667pt;}
.y2a{bottom:155.760000pt;}
.y4c{bottom:156.106667pt;}
.y86{bottom:156.266667pt;}
.yc0{bottom:166.186667pt;}
.y29{bottom:169.520000pt;}
.y4b{bottom:171.466667pt;}
.y85{bottom:171.546667pt;}
.yee{bottom:172.666667pt;}
.ybf{bottom:181.546667pt;}
.y28{bottom:183.386667pt;}
.y4a{bottom:186.826667pt;}
.y84{bottom:186.906667pt;}
.ybe{bottom:196.666667pt;}
.y27{bottom:197.146667pt;}
.y49{bottom:202.106667pt;}
.y83{bottom:202.186667pt;}
.y26{bottom:210.986667pt;}
.ybd{bottom:211.306667pt;}
.yec{bottom:216.746667pt;}
.y48{bottom:217.466667pt;}
.y82{bottom:217.546667pt;}
.y25{bottom:224.746667pt;}
.ybc{bottom:225.866667pt;}
.yeb{bottom:232.106667pt;}
.y47{bottom:232.826667pt;}
.y81{bottom:232.906667pt;}
.ybb{bottom:240.426667pt;}
.yea{bottom:247.306667pt;}
.y46{bottom:248.106667pt;}
.y80{bottom:248.186667pt;}
.yba{bottom:254.986667pt;}
.ye9{bottom:261.866667pt;}
.y45{bottom:263.466667pt;}
.y7f{bottom:263.546667pt;}
.yb9{bottom:269.546667pt;}
.ye8{bottom:276.426667pt;}
.y44{bottom:278.826667pt;}
.y7e{bottom:278.906667pt;}
.yb8{bottom:284.106667pt;}
.ye7{bottom:290.986667pt;}
.y43{bottom:294.106667pt;}
.y7d{bottom:294.186667pt;}
.yb7{bottom:298.666667pt;}
.ye6{bottom:305.546667pt;}
.y42{bottom:309.466667pt;}
.y7c{bottom:309.546667pt;}
.yb6{bottom:313.226667pt;}
.ye5{bottom:320.106667pt;}
.y41{bottom:324.746667pt;}
.y7b{bottom:324.906667pt;}
.yb5{bottom:327.786667pt;}
.ye4{bottom:334.666667pt;}
.y24{bottom:337.866667pt;}
.y7a{bottom:340.186667pt;}
.yb4{bottom:342.346667pt;}
.ye3{bottom:349.226667pt;}
.y79{bottom:355.546667pt;}
.yb3{bottom:356.906667pt;}
.ye2{bottom:363.786667pt;}
.y78{bottom:370.906667pt;}
.yb2{bottom:371.466667pt;}
.ye1{bottom:378.426667pt;}
.yb1{bottom:386.026667pt;}
.y77{bottom:386.186667pt;}
.ye0{bottom:392.986667pt;}
.yb0{bottom:400.586667pt;}
.y76{bottom:401.546667pt;}
.ydf{bottom:407.546667pt;}
.yaf{bottom:415.146667pt;}
.y75{bottom:416.906667pt;}
.yde{bottom:422.106667pt;}
.yae{bottom:429.786667pt;}
.y74{bottom:432.186667pt;}
.y3c{bottom:435.146667pt;}
.ydd{bottom:436.666667pt;}
.yad{bottom:444.346667pt;}
.y73{bottom:447.546667pt;}
.y32{bottom:449.626667pt;}
.ydc{bottom:451.226667pt;}
.yac{bottom:458.906667pt;}
.y72{bottom:462.906667pt;}
.ydb{bottom:465.786667pt;}
.yab{bottom:473.466667pt;}
.y71{bottom:478.186667pt;}
.yda{bottom:480.346667pt;}
.yaa{bottom:488.026667pt;}
.y70{bottom:493.546667pt;}
.yd9{bottom:494.906667pt;}
.ya9{bottom:502.586667pt;}
.y6f{bottom:508.826667pt;}
.yd8{bottom:509.466667pt;}
.ya8{bottom:517.173333pt;}
.yd7{bottom:524.053333pt;}
.y6e{bottom:524.213333pt;}
.ya7{bottom:531.733333pt;}
.yd6{bottom:538.613333pt;}
.y6d{bottom:539.573333pt;}
.ya6{bottom:546.293333pt;}
.yd5{bottom:553.173333pt;}
.y6c{bottom:554.853333pt;}
.ya5{bottom:560.853333pt;}
.yd4{bottom:567.733333pt;}
.y6b{bottom:570.213333pt;}
.y21{bottom:574.533333pt;}
.ya4{bottom:575.413333pt;}
.yd3{bottom:582.293333pt;}
.y6a{bottom:585.573333pt;}
.ya3{bottom:589.973333pt;}
.yd2{bottom:596.933333pt;}
.y69{bottom:600.853333pt;}
.y20{bottom:601.893333pt;}
.y1e{bottom:604.453333pt;}
.ya2{bottom:604.533333pt;}
.y1d{bottom:609.573333pt;}
.yd1{bottom:611.493333pt;}
.y68{bottom:616.213333pt;}
.ya1{bottom:619.093333pt;}
.y1c{bottom:624.933333pt;}
.yd0{bottom:626.053333pt;}
.y67{bottom:631.573333pt;}
.ya0{bottom:633.733333pt;}
.ycf{bottom:640.613333pt;}
.y1b{bottom:642.533333pt;}
.y66{bottom:646.853333pt;}
.y9f{bottom:648.293333pt;}
.yce{bottom:655.173333pt;}
.y65{bottom:662.213333pt;}
.y9e{bottom:662.853333pt;}
.y1a{bottom:667.813333pt;}
.ycd{bottom:669.733333pt;}
.y9d{bottom:677.413333pt;}
.y64{bottom:677.573333pt;}
.y19{bottom:683.173333pt;}
.ycc{bottom:684.293333pt;}
.y9c{bottom:691.973333pt;}
.y63{bottom:692.853333pt;}
.y18{bottom:698.453333pt;}
.ycb{bottom:698.853333pt;}
.y9b{bottom:706.533333pt;}
.y62{bottom:708.213333pt;}
.yca{bottom:713.413333pt;}
.y17{bottom:716.133333pt;}
.y9a{bottom:721.093333pt;}
.y61{bottom:723.573333pt;}
.yc9{bottom:727.973333pt;}
.y99{bottom:735.653333pt;}
.y60{bottom:738.853333pt;}
.yc8{bottom:742.533333pt;}
.y16{bottom:743.733333pt;}
.y98{bottom:750.213333pt;}
.y5f{bottom:754.213333pt;}
.yc7{bottom:757.093333pt;}
.y97{bottom:764.773333pt;}
.y5e{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.yc6{bottom:771.653333pt;}
.y96{bottom:779.333333pt;}
.y5d{bottom:784.853333pt;}
.yc5{bottom:786.213333pt;}
.y95{bottom:793.893333pt;}
.y14{bottom:798.933333pt;}
.y5c{bottom:800.213333pt;}
.yc4{bottom:800.773333pt;}
.y94{bottom:808.453333pt;}
.y5b{bottom:815.493333pt;}
.y93{bottom:823.013333pt;}
.y13{bottom:824.213333pt;}
.y5a{bottom:830.853333pt;}
.y92{bottom:837.573333pt;}
.y59{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y91{bottom:852.213333pt;}
.y58{bottom:861.493333pt;}
.y90{bottom:866.773333pt;}
.y57{bottom:876.853333pt;}
.y8f{bottom:881.333333pt;}
.y56{bottom:892.240000pt;}
.y8e{bottom:895.920000pt;}
.y55{bottom:907.520000pt;}
.y8d{bottom:910.480000pt;}
.y54{bottom:922.880000pt;}
.y8c{bottom:925.040000pt;}
.y53{bottom:938.240000pt;}
.y8b{bottom:939.600000pt;}
.y52{bottom:953.520000pt;}
.y8a{bottom:954.160000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h13{height:1.600000pt;}
.h14{height:3.798437pt;}
.hf{height:3.838281pt;}
.h15{height:7.450781pt;}
.h24{height:12.240000pt;}
.h1c{height:13.840000pt;}
.h16{height:15.280000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h4{height:24.560000pt;}
.h23{height:29.717188pt;}
.h6{height:30.028906pt;}
.h19{height:33.515625pt;}
.h17{height:33.867188pt;}
.h7{height:34.739844pt;}
.h20{height:35.303125pt;}
.h21{height:35.673437pt;}
.h1b{height:36.750000pt;}
.h22{height:36.809062pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h1e{height:38.905781pt;}
.h2{height:40.262656pt;}
.h11{height:42.944375pt;}
.h1f{height:44.046250pt;}
.h1{height:45.156250pt;}
.h25{height:52.426667pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h12{height:67.031250pt;}
.h10{height:67.734375pt;}
.hb{height:82.861719pt;}
.h1d{height:96.640000pt;}
.he{height:105.439844pt;}
.h1a{height:124.186667pt;}
.h9{height:127.306667pt;}
.h18{height:235.946667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.240000pt;}
.w9{width:34.320000pt;}
.w5{width:147.466667pt;}
.w8{width:182.186667pt;}
.wb{width:339.226667pt;}
.w7{width:547.573333pt;}
.w4{width:576.053333pt;}
.w3{width:691.920000pt;}
.wa{width:692.000000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x1b{left:5.999988pt;}
.x5{left:7.680000pt;}
.x14{left:10.000000pt;}
.x17{left:18.240000pt;}
.x1c{left:45.119988pt;}
.x1{left:47.999988pt;}
.x15{left:49.040000pt;}
.x1d{left:53.440000pt;}
.x19{left:54.399988pt;}
.x18{left:58.400000pt;}
.xa{left:62.640000pt;}
.x2{left:66.159988pt;}
.x4{left:74.480000pt;}
.x22{left:85.840000pt;}
.x1e{left:88.640000pt;}
.x9{left:93.786667pt;}
.x3{left:95.999988pt;}
.x6{left:109.680000pt;}
.xe{left:110.879988pt;}
.x12{left:115.759988pt;}
.x13{left:125.519988pt;}
.x8{left:177.946667pt;}
.xf{left:198.906655pt;}
.xb{left:204.026667pt;}
.x7{left:288.026667pt;}
.x11{left:332.586655pt;}
.x1a{left:432.053321pt;}
.x10{left:438.053321pt;}
.x21{left:440.213333pt;}
.x1f{left:456.053321pt;}
.x20{left:480.053321pt;}
.x16{left:597.253333pt;}
.xc{left:623.733333pt;}
}




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