
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_b9bba63e116d84fe16b13028.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a8a818697f8b5db605286512.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049000;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_0139af0d88698f2e573cbb2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331055;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_be42e8fa660306996fa8e7d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331055;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_5c4e6f89714f40e2f2064050.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_77e91791f9de55803175ecf5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_7e342c68ff81abd5b03390a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.049000;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b1180faf1364eb48655675a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_479ac3180d314d362717f0c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0fe0022ca0872c851a9d2ca5.woff2')format("woff");}.fff{font-family:fff;line-height:0.762207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.lsb{letter-spacing:-1.728000px;}
.ls15{letter-spacing:-0.853806px;}
.lsf{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.630000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.313800px;}
.ls13{letter-spacing:-0.234006px;}
.lse{letter-spacing:-0.089400px;}
.ls16{letter-spacing:-0.082218px;}
.ls11{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.ls1c{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.140160px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.227682px;}
.ls1b{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.466560px;}
.lsd{letter-spacing:0.466800px;}
.ls7{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.586560px;}
.ls9{letter-spacing:0.661795px;}
.ls14{letter-spacing:0.664072px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.738000px;}
.ls5{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.350000px;}
.ls19{letter-spacing:1.728000px;}
.ls1e{letter-spacing:25.107840px;}
.ls1d{letter-spacing:52.467840px;}
.ls18{letter-spacing:54.864000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.wsd{word-spacing:-27.288000px;}
.wsf{word-spacing:-26.928000px;}
.ws1{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.034864px;}
.ws3{word-spacing:-15.120000px;}
.ws10{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.366200px;}
.ws9{word-spacing:-13.050000px;}
.ws7{word-spacing:-11.790000px;}
.ws4{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.808640px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._8{margin-left:-8.916480px;}
._5{margin-left:-2.119680px;}
._6{margin-left:-1.019520px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:4.521120px;}
._10{width:5.880066px;}
._f{width:7.399060px;}
._9{width:8.588160px;}
._c{width:10.169783px;}
._d{width:11.202440px;}
._e{width:12.926472px;}
._13{width:13.958167px;}
._14{width:15.192000px;}
._b{width:22.066560px;}
._12{width:30.341816px;}
._11{width:31.474202px;}
._3{width:118.920000px;}
._4{width:382.500000px;}
._a{width:798.502560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:11.520000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsd{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fse{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:75.893905px;}
.fsf{font-size:83.664000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y46{bottom:2.875500px;}
.y5{bottom:4.320000px;}
.y54{bottom:7.170000px;}
.y2{bottom:10.080000px;}
.y45{bottom:10.831500px;}
.y51{bottom:15.511500px;}
.y3c{bottom:23.040000px;}
.y4{bottom:23.400000px;}
.y50{bottom:34.234500px;}
.y44{bottom:40.354500px;}
.y3b{bottom:42.120000px;}
.y3{bottom:47.880000px;}
.y43{bottom:52.234500px;}
.y4f{bottom:56.554500px;}
.y7{bottom:57.636000px;}
.y3a{bottom:60.840000px;}
.y42{bottom:65.194500px;}
.y4e{bottom:75.634500px;}
.y41{bottom:78.154500px;}
.y39{bottom:79.965000px;}
.y4d{bottom:93.274500px;}
.yad{bottom:94.716000px;}
.y87{bottom:98.676000px;}
.y38{bottom:98.685000px;}
.y4c{bottom:99.394500px;}
.y40{bottom:99.754500px;}
.yd2{bottom:101.916000px;}
.yac{bottom:113.436000px;}
.y4b{bottom:115.234500px;}
.y52{bottom:117.756000px;}
.y37{bottom:117.765000px;}
.yd1{bottom:120.996000px;}
.y4a{bottom:130.714500px;}
.yab{bottom:132.516000px;}
.y3d{bottom:132.880500px;}
.ybe{bottom:136.476000px;}
.y36{bottom:136.485000px;}
.yd0{bottom:139.716000px;}
.y86{bottom:145.512000px;}
.y49{bottom:146.224500px;}
.yaa{bottom:151.275000px;}
.y35{bottom:155.565000px;}
.ybd{bottom:155.595000px;}
.ycf{bottom:158.835000px;}
.y48{bottom:162.064500px;}
.y3f{bottom:162.424500px;}
.y85{bottom:164.595000px;}
.ya9{bottom:170.355000px;}
.y3e{bottom:172.864500px;}
.y34{bottom:174.285000px;}
.ybc{bottom:174.315000px;}
.y47{bottom:177.184500px;}
.yce{bottom:177.555000px;}
.y84{bottom:183.315000px;}
.ya8{bottom:189.075000px;}
.y33{bottom:193.005000px;}
.ybb{bottom:193.035000px;}
.ycd{bottom:196.635000px;}
.y83{bottom:202.035000px;}
.ya7{bottom:208.155000px;}
.y32{bottom:212.115000px;}
.ycc{bottom:215.355000px;}
.y82{bottom:221.115000px;}
.ya6{bottom:226.875000px;}
.y31{bottom:230.835000px;}
.ycb{bottom:234.435000px;}
.y81{bottom:239.835000px;}
.ya5{bottom:245.955000px;}
.y30{bottom:249.915000px;}
.yca{bottom:253.155000px;}
.y80{bottom:258.915000px;}
.y2f{bottom:268.635000px;}
.y1e{bottom:270.795000px;}
.yc9{bottom:271.875000px;}
.ya4{bottom:273.705000px;}
.y7f{bottom:277.665000px;}
.y2e{bottom:287.715000px;}
.yc8{bottom:290.985000px;}
.ya3{bottom:292.425000px;}
.y1d{bottom:295.275000px;}
.y7e{bottom:296.745000px;}
.y2d{bottom:306.435000px;}
.yc7{bottom:309.705000px;}
.ya2{bottom:311.505000px;}
.y7d{bottom:315.465000px;}
.y1c{bottom:319.395000px;}
.y2c{bottom:325.515000px;}
.yc6{bottom:328.785000px;}
.ya1{bottom:330.225000px;}
.y7c{bottom:334.545000px;}
.y10{bottom:335.625000px;}
.y1b{bottom:343.545000px;}
.y2b{bottom:344.265000px;}
.yc5{bottom:347.505000px;}
.ya0{bottom:349.305000px;}
.y7b{bottom:353.265000px;}
.y2a{bottom:363.345000px;}
.y1a{bottom:367.665000px;}
.y9f{bottom:368.025000px;}
.yc4{bottom:370.185000px;}
.y7a{bottom:372.345000px;}
.y29{bottom:382.065000px;}
.y9e{bottom:387.105000px;}
.y79{bottom:391.065000px;}
.y19{bottom:391.785000px;}
.yc3{bottom:392.865000px;}
.y28{bottom:400.785000px;}
.y9d{bottom:405.870000px;}
.y78{bottom:409.830000px;}
.yc2{bottom:415.230000px;}
.y18{bottom:415.905000px;}
.y27{bottom:419.865000px;}
.y9c{bottom:424.950000px;}
.yba{bottom:428.910000px;}
.y77{bottom:437.910000px;}
.y26{bottom:438.585000px;}
.y17{bottom:440.025000px;}
.y9b{bottom:443.670000px;}
.yb9{bottom:447.630000px;}
.yee{bottom:454.110000px;}
.y76{bottom:456.630000px;}
.y25{bottom:457.665000px;}
.y9a{bottom:462.390000px;}
.y16{bottom:464.145000px;}
.yb8{bottom:466.710000px;}
.yed{bottom:474.630000px;}
.y75{bottom:475.710000px;}
.y24{bottom:476.430000px;}
.y99{bottom:481.470000px;}
.yb7{bottom:485.430000px;}
.y15{bottom:488.310000px;}
.y74{bottom:494.430000px;}
.y23{bottom:495.510000px;}
.yec{bottom:496.590000px;}
.y98{bottom:500.190000px;}
.yb6{bottom:504.510000px;}
.y14{bottom:512.430000px;}
.y73{bottom:513.510000px;}
.y22{bottom:514.230000px;}
.yeb{bottom:515.310000px;}
.y97{bottom:519.270000px;}
.yb5{bottom:523.230000px;}
.y72{bottom:532.230000px;}
.y21{bottom:533.310000px;}
.yea{bottom:534.390000px;}
.y13{bottom:536.550000px;}
.y96{bottom:538.020000px;}
.yb4{bottom:542.340000px;}
.y71{bottom:551.340000px;}
.y20{bottom:552.030000px;}
.ye9{bottom:553.140000px;}
.y95{bottom:557.100000px;}
.y12{bottom:560.670000px;}
.yb3{bottom:561.060000px;}
.y70{bottom:570.060000px;}
.y1f{bottom:570.750000px;}
.ye8{bottom:574.020000px;}
.y94{bottom:575.820000px;}
.y11{bottom:584.790000px;}
.y6f{bottom:588.780000px;}
.ye7{bottom:594.180000px;}
.y93{bottom:594.900000px;}
.y6e{bottom:607.860000px;}
.ye6{bottom:611.100000px;}
.y92{bottom:617.580000px;}
.y6d{bottom:626.580000px;}
.ye5{bottom:628.380000px;}
.y91{bottom:639.900000px;}
.y6c{bottom:645.660000px;}
.y90{bottom:662.580000px;}
.ye4{bottom:662.940000px;}
.y6b{bottom:664.380000px;}
.yc1{bottom:673.410000px;}
.ye3{bottom:680.250000px;}
.y6a{bottom:683.490000px;}
.y8f{bottom:685.290000px;}
.yc0{bottom:692.490000px;}
.ye2{bottom:697.530000px;}
.y69{bottom:702.210000px;}
.y8e{bottom:707.610000px;}
.ybf{bottom:711.210000px;}
.ye1{bottom:714.810000px;}
.y68{bottom:721.290000px;}
.y8d{bottom:730.290000px;}
.ye0{bottom:732.090000px;}
.y67{bottom:740.010000px;}
.y8c{bottom:749.010000px;}
.ydf{bottom:749.370000px;}
.y66{bottom:759.090000px;}
.yde{bottom:766.650000px;}
.y8b{bottom:768.090000px;}
.y65{bottom:777.810000px;}
.ydd{bottom:783.930000px;}
.y8a{bottom:786.810000px;}
.y64{bottom:796.530000px;}
.ydc{bottom:801.255000px;}
.y89{bottom:805.575000px;}
.y63{bottom:815.655000px;}
.ydb{bottom:818.175000px;}
.y88{bottom:824.655000px;}
.yb2{bottom:834.375000px;}
.yda{bottom:835.455000px;}
.y62{bottom:843.375000px;}
.yb1{bottom:853.455000px;}
.y61{bottom:862.455000px;}
.yb0{bottom:872.175000px;}
.y60{bottom:881.175000px;}
.yaf{bottom:891.255000px;}
.y5f{bottom:900.255000px;}
.yae{bottom:909.975000px;}
.y5e{bottom:918.975000px;}
.yd9{bottom:929.055000px;}
.yf{bottom:932.655000px;}
.ye{bottom:935.205000px;}
.y5d{bottom:938.085000px;}
.yd{bottom:941.685000px;}
.yd8{bottom:947.805000px;}
.y5c{bottom:956.805000px;}
.yc{bottom:965.445000px;}
.yd7{bottom:966.525000px;}
.y5b{bottom:975.525000px;}
.yd6{bottom:985.605000px;}
.yb{bottom:988.125000px;}
.y5a{bottom:994.605000px;}
.yd5{bottom:1004.325000px;}
.y59{bottom:1013.325000px;}
.ya{bottom:1014.405000px;}
.yd4{bottom:1023.405000px;}
.y58{bottom:1032.405000px;}
.y9{bottom:1039.965000px;}
.yd3{bottom:1042.125000px;}
.y57{bottom:1051.125000px;}
.y56{bottom:1070.250000px;}
.y8{bottom:1072.050000px;}
.y53{bottom:1075.320000px;}
.y55{bottom:1088.970000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h17{height:5.650313px;}
.hc{height:11.306250px;}
.h19{height:27.720000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.ha{height:49.712344px;}
.h15{height:53.677969px;}
.h16{height:55.147500px;}
.h7{height:57.290625px;}
.h11{height:57.672000px;}
.h6{height:59.357813px;}
.h10{height:60.791018px;}
.h18{height:61.143509px;}
.hb{height:62.163910px;}
.h1a{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h1c{height:70.664062px;}
.h1d{height:71.613281px;}
.h1b{height:74.004654px;}
.h8{height:77.280480px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:201.645000px;}
.hd{height:594.150000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x4{left:13.305000px;}
.x14{left:16.906500px;}
.x19{left:18.346500px;}
.x15{left:19.426500px;}
.x6{left:28.785000px;}
.xf{left:43.906500px;}
.x1a{left:47.542500px;}
.x10{left:50.782500px;}
.x13{left:53.302500px;}
.xe{left:55.102500px;}
.x1c{left:57.262500px;}
.x17{left:62.295000px;}
.x1b{left:66.265500px;}
.x12{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x18{left:106.945500px;}
.x11{left:124.585500px;}
.x21{left:140.472000px;}
.x3{left:182.250000px;}
.x16{left:218.970000px;}
.x1e{left:220.770000px;}
.x1f{left:262.890000px;}
.xb{left:462.060000px;}
.x20{left:514.635000px;}
.xa{left:529.050000px;}
.xc{left:621.975000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.lsb{letter-spacing:-1.536000pt;}
.ls15{letter-spacing:-0.758939pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.560000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.278933pt;}
.ls13{letter-spacing:-0.208006pt;}
.lse{letter-spacing:-0.079467pt;}
.ls16{letter-spacing:-0.073083pt;}
.ls11{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.124587pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.202384pt;}
.ls1b{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.414720pt;}
.lsd{letter-spacing:0.414933pt;}
.ls7{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.521387pt;}
.ls9{letter-spacing:0.588262pt;}
.ls14{letter-spacing:0.590286pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.656000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.200000pt;}
.ls19{letter-spacing:1.536000pt;}
.ls1e{letter-spacing:22.318080pt;}
.ls1d{letter-spacing:46.638080pt;}
.ls18{letter-spacing:48.768000pt;}
.wse{word-spacing:-64.000000pt;}
.wsd{word-spacing:-24.256000pt;}
.wsf{word-spacing:-23.936000pt;}
.ws1{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.253213pt;}
.ws3{word-spacing:-13.440000pt;}
.ws10{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.881067pt;}
.ws9{word-spacing:-11.600000pt;}
.ws7{word-spacing:-10.480000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.607680pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._8{margin-left:-7.925760pt;}
._5{margin-left:-1.884160pt;}
._6{margin-left:-0.906240pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:4.018773pt;}
._10{width:5.226726pt;}
._f{width:6.576942pt;}
._9{width:7.633920pt;}
._c{width:9.039807pt;}
._d{width:9.957725pt;}
._e{width:11.490197pt;}
._13{width:12.407260pt;}
._14{width:13.504000pt;}
._b{width:19.614720pt;}
._12{width:26.970503pt;}
._11{width:27.977069pt;}
._3{width:105.706667pt;}
._4{width:340.000000pt;}
._a{width:709.780053pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:10.240000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsd{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fse{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:67.461249pt;}
.fsf{font-size:74.368000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.556000pt;}
.y5{bottom:3.840000pt;}
.y54{bottom:6.373333pt;}
.y2{bottom:8.960000pt;}
.y45{bottom:9.628000pt;}
.y51{bottom:13.788000pt;}
.y3c{bottom:20.480000pt;}
.y4{bottom:20.800000pt;}
.y50{bottom:30.430667pt;}
.y44{bottom:35.870667pt;}
.y3b{bottom:37.440000pt;}
.y3{bottom:42.560000pt;}
.y43{bottom:46.430667pt;}
.y4f{bottom:50.270667pt;}
.y7{bottom:51.232000pt;}
.y3a{bottom:54.080000pt;}
.y42{bottom:57.950667pt;}
.y4e{bottom:67.230667pt;}
.y41{bottom:69.470667pt;}
.y39{bottom:71.080000pt;}
.y4d{bottom:82.910667pt;}
.yad{bottom:84.192000pt;}
.y87{bottom:87.712000pt;}
.y38{bottom:87.720000pt;}
.y4c{bottom:88.350667pt;}
.y40{bottom:88.670667pt;}
.yd2{bottom:90.592000pt;}
.yac{bottom:100.832000pt;}
.y4b{bottom:102.430667pt;}
.y52{bottom:104.672000pt;}
.y37{bottom:104.680000pt;}
.yd1{bottom:107.552000pt;}
.y4a{bottom:116.190667pt;}
.yab{bottom:117.792000pt;}
.y3d{bottom:118.116000pt;}
.ybe{bottom:121.312000pt;}
.y36{bottom:121.320000pt;}
.yd0{bottom:124.192000pt;}
.y86{bottom:129.344000pt;}
.y49{bottom:129.977333pt;}
.yaa{bottom:134.466667pt;}
.y35{bottom:138.280000pt;}
.ybd{bottom:138.306667pt;}
.ycf{bottom:141.186667pt;}
.y48{bottom:144.057333pt;}
.y3f{bottom:144.377333pt;}
.y85{bottom:146.306667pt;}
.ya9{bottom:151.426667pt;}
.y3e{bottom:153.657333pt;}
.y34{bottom:154.920000pt;}
.ybc{bottom:154.946667pt;}
.y47{bottom:157.497333pt;}
.yce{bottom:157.826667pt;}
.y84{bottom:162.946667pt;}
.ya8{bottom:168.066667pt;}
.y33{bottom:171.560000pt;}
.ybb{bottom:171.586667pt;}
.ycd{bottom:174.786667pt;}
.y83{bottom:179.586667pt;}
.ya7{bottom:185.026667pt;}
.y32{bottom:188.546667pt;}
.ycc{bottom:191.426667pt;}
.y82{bottom:196.546667pt;}
.ya6{bottom:201.666667pt;}
.y31{bottom:205.186667pt;}
.ycb{bottom:208.386667pt;}
.y81{bottom:213.186667pt;}
.ya5{bottom:218.626667pt;}
.y30{bottom:222.146667pt;}
.yca{bottom:225.026667pt;}
.y80{bottom:230.146667pt;}
.y2f{bottom:238.786667pt;}
.y1e{bottom:240.706667pt;}
.yc9{bottom:241.666667pt;}
.ya4{bottom:243.293333pt;}
.y7f{bottom:246.813333pt;}
.y2e{bottom:255.746667pt;}
.yc8{bottom:258.653333pt;}
.ya3{bottom:259.933333pt;}
.y1d{bottom:262.466667pt;}
.y7e{bottom:263.773333pt;}
.y2d{bottom:272.386667pt;}
.yc7{bottom:275.293333pt;}
.ya2{bottom:276.893333pt;}
.y7d{bottom:280.413333pt;}
.y1c{bottom:283.906667pt;}
.y2c{bottom:289.346667pt;}
.yc6{bottom:292.253333pt;}
.ya1{bottom:293.533333pt;}
.y7c{bottom:297.373333pt;}
.y10{bottom:298.333333pt;}
.y1b{bottom:305.373333pt;}
.y2b{bottom:306.013333pt;}
.yc5{bottom:308.893333pt;}
.ya0{bottom:310.493333pt;}
.y7b{bottom:314.013333pt;}
.y2a{bottom:322.973333pt;}
.y1a{bottom:326.813333pt;}
.y9f{bottom:327.133333pt;}
.yc4{bottom:329.053333pt;}
.y7a{bottom:330.973333pt;}
.y29{bottom:339.613333pt;}
.y9e{bottom:344.093333pt;}
.y79{bottom:347.613333pt;}
.y19{bottom:348.253333pt;}
.yc3{bottom:349.213333pt;}
.y28{bottom:356.253333pt;}
.y9d{bottom:360.773333pt;}
.y78{bottom:364.293333pt;}
.yc2{bottom:369.093333pt;}
.y18{bottom:369.693333pt;}
.y27{bottom:373.213333pt;}
.y9c{bottom:377.733333pt;}
.yba{bottom:381.253333pt;}
.y77{bottom:389.253333pt;}
.y26{bottom:389.853333pt;}
.y17{bottom:391.133333pt;}
.y9b{bottom:394.373333pt;}
.yb9{bottom:397.893333pt;}
.yee{bottom:403.653333pt;}
.y76{bottom:405.893333pt;}
.y25{bottom:406.813333pt;}
.y9a{bottom:411.013333pt;}
.y16{bottom:412.573333pt;}
.yb8{bottom:414.853333pt;}
.yed{bottom:421.893333pt;}
.y75{bottom:422.853333pt;}
.y24{bottom:423.493333pt;}
.y99{bottom:427.973333pt;}
.yb7{bottom:431.493333pt;}
.y15{bottom:434.053333pt;}
.y74{bottom:439.493333pt;}
.y23{bottom:440.453333pt;}
.yec{bottom:441.413333pt;}
.y98{bottom:444.613333pt;}
.yb6{bottom:448.453333pt;}
.y14{bottom:455.493333pt;}
.y73{bottom:456.453333pt;}
.y22{bottom:457.093333pt;}
.yeb{bottom:458.053333pt;}
.y97{bottom:461.573333pt;}
.yb5{bottom:465.093333pt;}
.y72{bottom:473.093333pt;}
.y21{bottom:474.053333pt;}
.yea{bottom:475.013333pt;}
.y13{bottom:476.933333pt;}
.y96{bottom:478.240000pt;}
.yb4{bottom:482.080000pt;}
.y71{bottom:490.080000pt;}
.y20{bottom:490.693333pt;}
.ye9{bottom:491.680000pt;}
.y95{bottom:495.200000pt;}
.y12{bottom:498.373333pt;}
.yb3{bottom:498.720000pt;}
.y70{bottom:506.720000pt;}
.y1f{bottom:507.333333pt;}
.ye8{bottom:510.240000pt;}
.y94{bottom:511.840000pt;}
.y11{bottom:519.813333pt;}
.y6f{bottom:523.360000pt;}
.ye7{bottom:528.160000pt;}
.y93{bottom:528.800000pt;}
.y6e{bottom:540.320000pt;}
.ye6{bottom:543.200000pt;}
.y92{bottom:548.960000pt;}
.y6d{bottom:556.960000pt;}
.ye5{bottom:558.560000pt;}
.y91{bottom:568.800000pt;}
.y6c{bottom:573.920000pt;}
.y90{bottom:588.960000pt;}
.ye4{bottom:589.280000pt;}
.y6b{bottom:590.560000pt;}
.yc1{bottom:598.586667pt;}
.ye3{bottom:604.666667pt;}
.y6a{bottom:607.546667pt;}
.y8f{bottom:609.146667pt;}
.yc0{bottom:615.546667pt;}
.ye2{bottom:620.026667pt;}
.y69{bottom:624.186667pt;}
.y8e{bottom:628.986667pt;}
.ybf{bottom:632.186667pt;}
.ye1{bottom:635.386667pt;}
.y68{bottom:641.146667pt;}
.y8d{bottom:649.146667pt;}
.ye0{bottom:650.746667pt;}
.y67{bottom:657.786667pt;}
.y8c{bottom:665.786667pt;}
.ydf{bottom:666.106667pt;}
.y66{bottom:674.746667pt;}
.yde{bottom:681.466667pt;}
.y8b{bottom:682.746667pt;}
.y65{bottom:691.386667pt;}
.ydd{bottom:696.826667pt;}
.y8a{bottom:699.386667pt;}
.y64{bottom:708.026667pt;}
.ydc{bottom:712.226667pt;}
.y89{bottom:716.066667pt;}
.y63{bottom:725.026667pt;}
.ydb{bottom:727.266667pt;}
.y88{bottom:733.026667pt;}
.yb2{bottom:741.666667pt;}
.yda{bottom:742.626667pt;}
.y62{bottom:749.666667pt;}
.yb1{bottom:758.626667pt;}
.y61{bottom:766.626667pt;}
.yb0{bottom:775.266667pt;}
.y60{bottom:783.266667pt;}
.yaf{bottom:792.226667pt;}
.y5f{bottom:800.226667pt;}
.yae{bottom:808.866667pt;}
.y5e{bottom:816.866667pt;}
.yd9{bottom:825.826667pt;}
.yf{bottom:829.026667pt;}
.ye{bottom:831.293333pt;}
.y5d{bottom:833.853333pt;}
.yd{bottom:837.053333pt;}
.yd8{bottom:842.493333pt;}
.y5c{bottom:850.493333pt;}
.yc{bottom:858.173333pt;}
.yd7{bottom:859.133333pt;}
.y5b{bottom:867.133333pt;}
.yd6{bottom:876.093333pt;}
.yb{bottom:878.333333pt;}
.y5a{bottom:884.093333pt;}
.yd5{bottom:892.733333pt;}
.y59{bottom:900.733333pt;}
.ya{bottom:901.693333pt;}
.yd4{bottom:909.693333pt;}
.y58{bottom:917.693333pt;}
.y9{bottom:924.413333pt;}
.yd3{bottom:926.333333pt;}
.y57{bottom:934.333333pt;}
.y56{bottom:951.333333pt;}
.y8{bottom:952.933333pt;}
.y53{bottom:955.840000pt;}
.y55{bottom:967.973333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h17{height:5.022500pt;}
.hc{height:10.050000pt;}
.h19{height:24.640000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.ha{height:44.188750pt;}
.h15{height:47.713750pt;}
.h16{height:49.020000pt;}
.h7{height:50.925000pt;}
.h11{height:51.264000pt;}
.h6{height:52.762500pt;}
.h10{height:54.036460pt;}
.h18{height:54.349786pt;}
.hb{height:55.256809pt;}
.h1a{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1c{height:62.812500pt;}
.h1d{height:63.656250pt;}
.h1b{height:65.781915pt;}
.h8{height:68.693760pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:179.240000pt;}
.hd{height:528.133333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x4{left:11.826667pt;}
.x14{left:15.028000pt;}
.x19{left:16.308000pt;}
.x15{left:17.268000pt;}
.x6{left:25.586667pt;}
.xf{left:39.028000pt;}
.x1a{left:42.260000pt;}
.x10{left:45.140000pt;}
.x13{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x17{left:55.373333pt;}
.x1b{left:58.902667pt;}
.x12{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x18{left:95.062667pt;}
.x11{left:110.742667pt;}
.x21{left:124.864000pt;}
.x3{left:162.000000pt;}
.x16{left:194.640000pt;}
.x1e{left:196.240000pt;}
.x1f{left:233.680000pt;}
.xb{left:410.720000pt;}
.x20{left:457.453333pt;}
.xa{left:470.266667pt;}
.xc{left:552.866667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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