
    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_ec50c3c6ed886b3fb894e7be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_2d8731f508303fdf523933b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_e3bf9b40986bd391c1e1dc67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_d3f623404d0850f0ed2e939e.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v2{vertical-align:-16.566000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.474000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:11.004600px;}
.ls1{letter-spacing:11.904000px;}
.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;}
}
.ws8{word-spacing:-55.944000px;}
.ws5{word-spacing:-38.869200px;}
.ws2f{word-spacing:-38.659200px;}
.wsa1{word-spacing:-38.657700px;}
.ws66{word-spacing:-38.645100px;}
.ws8b{word-spacing:-38.643900px;}
.ws12{word-spacing:-38.631600px;}
.ws4f{word-spacing:-38.589000px;}
.ws9{word-spacing:-38.582100px;}
.ws96{word-spacing:-38.448000px;}
.ws1d{word-spacing:-38.444100px;}
.ws71{word-spacing:-38.440800px;}
.ws65{word-spacing:-38.437800px;}
.ws6a{word-spacing:-38.435400px;}
.ws13{word-spacing:-38.433000px;}
.ws92{word-spacing:-38.432100px;}
.ws3d{word-spacing:-38.430300px;}
.ws8a{word-spacing:-38.425800px;}
.ws24{word-spacing:-38.166000px;}
.ws4{word-spacing:-38.149200px;}
.ws27{word-spacing:-38.141400px;}
.ws1a{word-spacing:-38.088000px;}
.ws75{word-spacing:-38.083500px;}
.ws2{word-spacing:-38.081700px;}
.wsa3{word-spacing:-38.079900px;}
.wsa8{word-spacing:-38.079000px;}
.ws0{word-spacing:-37.944000px;}
.wsaa{word-spacing:-37.940400px;}
.ws99{word-spacing:-37.936800px;}
.ws3e{word-spacing:-37.935000px;}
.ws84{word-spacing:-37.934100px;}
.ws68{word-spacing:-37.933200px;}
.ws9f{word-spacing:-37.931400px;}
.ws56{word-spacing:-37.918800px;}
.wsa9{word-spacing:-37.720800px;}
.ws6{word-spacing:-37.719900px;}
.ws77{word-spacing:-37.717200px;}
.ws4e{word-spacing:-37.715400px;}
.ws7{word-spacing:-37.714500px;}
.ws7e{word-spacing:-37.713600px;}
.wsf{word-spacing:-37.704600px;}
.ws1e{word-spacing:-37.649700px;}
.ws3{word-spacing:-37.647900px;}
.ws82{word-spacing:-37.529100px;}
.ws22{word-spacing:-37.436400px;}
.ws9c{word-spacing:-37.424700px;}
.ws93{word-spacing:-37.349100px;}
.ws7b{word-spacing:-37.224000px;}
.wsa5{word-spacing:-37.216800px;}
.ws6f{word-spacing:-36.981000px;}
.ws29{word-spacing:-36.707400px;}
.ws23{word-spacing:-36.491400px;}
.ws74{word-spacing:-36.489600px;}
.ws5a{word-spacing:-36.363600px;}
.ws18{word-spacing:-35.998200px;}
.ws61{word-spacing:-35.778600px;}
.ws4c{word-spacing:-35.708400px;}
.ws20{word-spacing:-35.066400px;}
.ws8c{word-spacing:-35.064000px;}
.ws57{word-spacing:-35.063100px;}
.ws19{word-spacing:-35.057400px;}
.ws54{word-spacing:-35.055600px;}
.ws1f{word-spacing:-34.545600px;}
.ws2e{word-spacing:-34.333200px;}
.ws91{word-spacing:-33.840000px;}
.ws30{word-spacing:-33.828900px;}
.ws2c{word-spacing:-33.624000px;}
.ws50{word-spacing:-33.616800px;}
.ws2b{word-spacing:-32.886900px;}
.ws35{word-spacing:-32.670000px;}
.ws36{word-spacing:-32.598000px;}
.ws89{word-spacing:-32.400000px;}
.ws7d{word-spacing:-31.668000px;}
.ws79{word-spacing:-31.453200px;}
.ws52{word-spacing:-30.506400px;}
.ws42{word-spacing:-30.013200px;}
.ws2d{word-spacing:-29.800800px;}
.ws5f{word-spacing:-29.526000px;}
.ws88{word-spacing:-29.497800px;}
.ws6b{word-spacing:-29.081400px;}
.ws39{word-spacing:-29.073600px;}
.wsa2{word-spacing:-28.800000px;}
.ws7c{word-spacing:-27.864000px;}
.wsa4{word-spacing:-27.854100px;}
.ws90{word-spacing:-27.637200px;}
.ws25{word-spacing:-27.349200px;}
.wsa6{word-spacing:-27.143100px;}
.ws26{word-spacing:-27.122400px;}
.ws80{word-spacing:-26.426400px;}
.ws95{word-spacing:-26.424000px;}
.ws5c{word-spacing:-26.416500px;}
.ws81{word-spacing:-26.397300px;}
.ws38{word-spacing:-26.195400px;}
.ws37{word-spacing:-26.191800px;}
.ws63{word-spacing:-25.898400px;}
.ws7f{word-spacing:-25.846500px;}
.ws53{word-spacing:-25.691400px;}
.ws6e{word-spacing:-25.475400px;}
.wsb{word-spacing:-24.465600px;}
.ws8e{word-spacing:-24.256800px;}
.ws73{word-spacing:-24.253200px;}
.ws60{word-spacing:-23.762400px;}
.wsa{word-spacing:-23.741100px;}
.wsd{word-spacing:-23.533800px;}
.ws4b{word-spacing:-23.029200px;}
.ws48{word-spacing:-22.300200px;}
.ws94{word-spacing:-22.107300px;}
.ws7a{word-spacing:-21.883200px;}
.ws62{word-spacing:-21.880800px;}
.ws86{word-spacing:-21.373200px;}
.ws28{word-spacing:-20.435400px;}
.ws51{word-spacing:-20.144400px;}
.ws3f{word-spacing:-18.493200px;}
.ws21{word-spacing:-17.997000px;}
.ws46{word-spacing:-17.773200px;}
.ws69{word-spacing:-17.568600px;}
.ws40{word-spacing:-17.560800px;}
.ws45{word-spacing:-17.554800px;}
.ws15{word-spacing:-17.496000px;}
.ws14{word-spacing:-17.286000px;}
.ws44{word-spacing:-17.059200px;}
.ws64{word-spacing:-17.053200px;}
.ws70{word-spacing:-16.835400px;}
.ws34{word-spacing:-16.333200px;}
.ws87{word-spacing:-16.318800px;}
.ws2a{word-spacing:-15.832800px;}
.wsa7{word-spacing:-15.823200px;}
.wsa0{word-spacing:-15.621900px;}
.ws4a{word-spacing:-15.613200px;}
.ws49{word-spacing:-14.676300px;}
.ws76{word-spacing:-14.400000px;}
.ws59{word-spacing:-14.169600px;}
.ws5b{word-spacing:-13.955400px;}
.ws1b{word-spacing:-13.686000px;}
.ws1c{word-spacing:-13.458000px;}
.ws16{word-spacing:-12.888000px;}
.ws43{word-spacing:-12.007800px;}
.ws4d{word-spacing:-11.800800px;}
.ws31{word-spacing:-11.508000px;}
.ws67{word-spacing:-11.304000px;}
.ws58{word-spacing:-10.780200px;}
.ws72{word-spacing:-10.772400px;}
.ws78{word-spacing:-10.573200px;}
.wse{word-spacing:-9.123600px;}
.ws5e{word-spacing:-8.913600px;}
.ws3a{word-spacing:-8.413200px;}
.wsc{word-spacing:-8.404200px;}
.ws97{word-spacing:-7.920000px;}
.ws32{word-spacing:-6.689700px;}
.ws83{word-spacing:-6.480000px;}
.ws17{word-spacing:-6.262200px;}
.ws33{word-spacing:-6.043200px;}
.ws41{word-spacing:-5.535000px;}
.ws8f{word-spacing:-2.661300px;}
.ws6c{word-spacing:-1.209600px;}
.ws5d{word-spacing:0.000000px;}
.ws47{word-spacing:0.753000px;}
.ws10{word-spacing:2.167200px;}
.ws11{word-spacing:2.604600px;}
.ws6d{word-spacing:6.490800px;}
.ws85{word-spacing:7.205700px;}
.ws55{word-spacing:10.518600px;}
.ws8d{word-spacing:11.245500px;}
.ws3c{word-spacing:11.746800px;}
.ws3b{word-spacing:11.752200px;}
.ws9e{word-spacing:76.535400px;}
.ws98{word-spacing:88.562100px;}
.ws9d{word-spacing:94.538700px;}
.ws9a{word-spacing:100.525500px;}
.ws9b{word-spacing:106.774500px;}
.ws1{word-spacing:1037.484900px;}
._19{margin-left:-2.227800px;}
._2{margin-left:-1.001400px;}
._0{width:1.076400px;}
._1f{width:12.351900px;}
._28{width:17.265600px;}
._1{width:18.968400px;}
._d{width:19.983600px;}
._a{width:21.166200px;}
._c{width:22.176000px;}
._11{width:24.373800px;}
._25{width:25.579200px;}
._1c{width:26.596800px;}
._12{width:28.144800px;}
._16{width:29.206800px;}
._e{width:30.445200px;}
._21{width:31.613100px;}
._3{width:32.643900px;}
._5{width:33.837000px;}
._1b{width:35.194800px;}
._f{width:36.513600px;}
._18{width:38.512200px;}
._7{width:39.528600px;}
._14{width:41.026200px;}
._10{width:42.107400px;}
._b{width:43.272000px;}
._8{width:44.717400px;}
._13{width:46.035600px;}
._1e{width:47.140200px;}
._4{width:48.780000px;}
._9{width:50.829000px;}
._26{width:54.345300px;}
._23{width:55.944000px;}
._6{width:57.348000px;}
._1a{width:58.371600px;}
._24{width:63.768000px;}
._20{width:65.668800px;}
._1d{width:67.752000px;}
._17{width:69.169800px;}
._15{width:72.527400px;}
._22{width:82.800000px;}
._27{width:100.800000px;}
._29{width:118.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:30.900000px;}
.fs1{font-size:46.800000px;}
.fs3{font-size:48.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:3.886500px;}
.y8a{bottom:3.915000px;}
.y86{bottom:3.930000px;}
.y8e{bottom:3.946500px;}
.y91{bottom:3.975000px;}
.y94{bottom:4.650000px;}
.y83{bottom:7.575000px;}
.y4{bottom:12.240000px;}
.y85{bottom:24.450000px;}
.y90{bottom:24.496500px;}
.y8d{bottom:24.645000px;}
.y93{bottom:25.350000px;}
.y82{bottom:28.275000px;}
.y8c{bottom:45.165000px;}
.y3{bottom:63.975000px;}
.y26{bottom:119.775000px;}
.y51{bottom:131.296500px;}
.y80{bottom:141.015000px;}
.y25{bottom:161.536500px;}
.y7f{bottom:161.715000px;}
.y6d{bottom:162.075000px;}
.y50{bottom:164.236500px;}
.y24{bottom:182.236500px;}
.y7e{bottom:182.415000px;}
.y4f{bottom:184.936500px;}
.y6c{bottom:187.455000px;}
.y7d{bottom:203.115000px;}
.y4e{bottom:205.636500px;}
.y23{bottom:223.815000px;}
.y22{bottom:244.515000px;}
.y4d{bottom:247.396500px;}
.y21{bottom:265.215000px;}
.y6b{bottom:267.736500px;}
.y4c{bottom:268.096500px;}
.y20{bottom:285.915000px;}
.y7c{bottom:286.275000px;}
.y6a{bottom:288.436500px;}
.y4b{bottom:288.795000px;}
.y1f{bottom:306.615000px;}
.y69{bottom:309.136500px;}
.y4a{bottom:309.496500px;}
.y7b{bottom:327.855000px;}
.y68{bottom:329.836500px;}
.y49{bottom:330.196500px;}
.y1e{bottom:348.375000px;}
.y7a{bottom:348.555000px;}
.y67{bottom:350.536500px;}
.y48{bottom:350.896500px;}
.y1d{bottom:369.075000px;}
.y79{bottom:369.255000px;}
.y66{bottom:371.236500px;}
.y47{bottom:371.596500px;}
.y78{bottom:389.955000px;}
.y77{bottom:410.655000px;}
.y1c{bottom:410.836500px;}
.y65{bottom:412.996500px;}
.y46{bottom:413.175000px;}
.y76{bottom:431.355000px;}
.y1b{bottom:431.536500px;}
.y64{bottom:433.696500px;}
.y75{bottom:452.055000px;}
.y63{bottom:454.396500px;}
.y45{bottom:454.936500px;}
.y74{bottom:472.755000px;}
.y1a{bottom:473.115000px;}
.y62{bottom:475.096500px;}
.y44{bottom:475.636500px;}
.y19{bottom:493.815000px;}
.y61{bottom:495.796500px;}
.y43{bottom:496.336500px;}
.y18{bottom:514.515000px;}
.y60{bottom:516.496500px;}
.y42{bottom:517.036500px;}
.y17{bottom:535.215000px;}
.y41{bottom:537.736500px;}
.y16{bottom:555.915000px;}
.y5f{bottom:558.075000px;}
.y40{bottom:558.436500px;}
.y92{bottom:570.525000px;}
.y15{bottom:576.615000px;}
.y3f{bottom:579.136500px;}
.y5e{bottom:599.836500px;}
.y8f{bottom:613.500000px;}
.y14{bottom:618.375000px;}
.y5d{bottom:620.536500px;}
.y3e{bottom:620.896500px;}
.y13{bottom:639.075000px;}
.y5c{bottom:641.236500px;}
.y3d{bottom:641.596500px;}
.y8b{bottom:655.650000px;}
.y5b{bottom:661.936500px;}
.y3c{bottom:662.295000px;}
.y12{bottom:680.836500px;}
.y3b{bottom:682.996500px;}
.y11{bottom:701.536500px;}
.y3a{bottom:703.695000px;}
.y89{bottom:718.500000px;}
.y39{bottom:724.396500px;}
.y87{bottom:739.950000px;}
.y10{bottom:743.115000px;}
.y38{bottom:745.096500px;}
.y84{bottom:761.325000px;}
.yf{bottom:763.815000px;}
.y5a{bottom:765.795000px;}
.ye{bottom:784.515000px;}
.y59{bottom:786.496500px;}
.y37{bottom:786.675000px;}
.y81{bottom:803.400000px;}
.yd{bottom:805.215000px;}
.y58{bottom:807.195000px;}
.y36{bottom:807.375000px;}
.yc{bottom:825.915000px;}
.y57{bottom:827.895000px;}
.y35{bottom:828.075000px;}
.y56{bottom:848.596500px;}
.y34{bottom:848.775000px;}
.yb{bottom:867.675000px;}
.y55{bottom:869.295000px;}
.y33{bottom:869.475000px;}
.ya{bottom:888.375000px;}
.y54{bottom:889.995000px;}
.y32{bottom:890.175000px;}
.y9a{bottom:890.536500px;}
.y53{bottom:910.695000px;}
.y31{bottom:910.875000px;}
.y99{bottom:911.236500px;}
.y52{bottom:931.395000px;}
.y30{bottom:931.575000px;}
.y98{bottom:931.936500px;}
.y2f{bottom:952.275000px;}
.y97{bottom:952.636500px;}
.y2e{bottom:972.975000px;}
.y96{bottom:973.336500px;}
.y9{bottom:992.775000px;}
.y73{bottom:993.675000px;}
.y95{bottom:994.036500px;}
.y72{bottom:1014.375000px;}
.y2d{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y71{bottom:1035.075000px;}
.y2c{bottom:1035.436500px;}
.y70{bottom:1055.775000px;}
.y2b{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y6f{bottom:1076.475000px;}
.y2a{bottom:1076.836500px;}
.y6e{bottom:1097.175000px;}
.y29{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y28{bottom:1118.236500px;}
.y27{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h7{height:21.017432px;}
.hb{height:21.375000px;}
.h6{height:21.470068px;}
.h3{height:32.700000px;}
.h8{height:33.560010px;}
.ha{height:42.075000px;}
.hd{height:42.900000px;}
.h9{height:45.750000px;}
.h4{height:50.027344px;}
.h5{height:56.991773px;}
.h2{height:62.261719px;}
.hc{height:62.775000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w5{width:190.950000px;}
.w3{width:198.300000px;}
.w4{width:203.400000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:10.620000px;}
.x4{left:11.760000px;}
.x13{left:53.100000px;}
.x17{left:80.055000px;}
.x1b{left:89.085000px;}
.x1a{left:93.510000px;}
.x1c{left:98.055000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:129.420000px;}
.xb{left:136.800000px;}
.x12{left:143.100000px;}
.x16{left:154.125000px;}
.x14{left:156.600000px;}
.x2{left:160.560000px;}
.x11{left:165.600000px;}
.xd{left:167.220000px;}
.x10{left:170.100000px;}
.xf{left:174.600000px;}
.x6{left:287.280000px;}
.x7{left:289.260000px;}
.x5{left:344.160000px;}
.x9{left:349.920000px;}
.x18{left:352.350000px;}
.xe{left:360.900000px;}
.x8{left:407.880000px;}
.xc{left:430.920000px;}
.x19{left:555.675000px;}
@media print{
.v2{vertical-align:-14.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.754667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:9.781867pt;}
.ls1{letter-spacing:10.581333pt;}
.ws8{word-spacing:-49.728000pt;}
.ws5{word-spacing:-34.550400pt;}
.ws2f{word-spacing:-34.363733pt;}
.wsa1{word-spacing:-34.362400pt;}
.ws66{word-spacing:-34.351200pt;}
.ws8b{word-spacing:-34.350133pt;}
.ws12{word-spacing:-34.339200pt;}
.ws4f{word-spacing:-34.301333pt;}
.ws9{word-spacing:-34.295200pt;}
.ws96{word-spacing:-34.176000pt;}
.ws1d{word-spacing:-34.172533pt;}
.ws71{word-spacing:-34.169600pt;}
.ws65{word-spacing:-34.166933pt;}
.ws6a{word-spacing:-34.164800pt;}
.ws13{word-spacing:-34.162667pt;}
.ws92{word-spacing:-34.161867pt;}
.ws3d{word-spacing:-34.160267pt;}
.ws8a{word-spacing:-34.156267pt;}
.ws24{word-spacing:-33.925333pt;}
.ws4{word-spacing:-33.910400pt;}
.ws27{word-spacing:-33.903467pt;}
.ws1a{word-spacing:-33.856000pt;}
.ws75{word-spacing:-33.852000pt;}
.ws2{word-spacing:-33.850400pt;}
.wsa3{word-spacing:-33.848800pt;}
.wsa8{word-spacing:-33.848000pt;}
.ws0{word-spacing:-33.728000pt;}
.wsaa{word-spacing:-33.724800pt;}
.ws99{word-spacing:-33.721600pt;}
.ws3e{word-spacing:-33.720000pt;}
.ws84{word-spacing:-33.719200pt;}
.ws68{word-spacing:-33.718400pt;}
.ws9f{word-spacing:-33.716800pt;}
.ws56{word-spacing:-33.705600pt;}
.wsa9{word-spacing:-33.529600pt;}
.ws6{word-spacing:-33.528800pt;}
.ws77{word-spacing:-33.526400pt;}
.ws4e{word-spacing:-33.524800pt;}
.ws7{word-spacing:-33.524000pt;}
.ws7e{word-spacing:-33.523200pt;}
.wsf{word-spacing:-33.515200pt;}
.ws1e{word-spacing:-33.466400pt;}
.ws3{word-spacing:-33.464800pt;}
.ws82{word-spacing:-33.359200pt;}
.ws22{word-spacing:-33.276800pt;}
.ws9c{word-spacing:-33.266400pt;}
.ws93{word-spacing:-33.199200pt;}
.ws7b{word-spacing:-33.088000pt;}
.wsa5{word-spacing:-33.081600pt;}
.ws6f{word-spacing:-32.872000pt;}
.ws29{word-spacing:-32.628800pt;}
.ws23{word-spacing:-32.436800pt;}
.ws74{word-spacing:-32.435200pt;}
.ws5a{word-spacing:-32.323200pt;}
.ws18{word-spacing:-31.998400pt;}
.ws61{word-spacing:-31.803200pt;}
.ws4c{word-spacing:-31.740800pt;}
.ws20{word-spacing:-31.170133pt;}
.ws8c{word-spacing:-31.168000pt;}
.ws57{word-spacing:-31.167200pt;}
.ws19{word-spacing:-31.162133pt;}
.ws54{word-spacing:-31.160533pt;}
.ws1f{word-spacing:-30.707200pt;}
.ws2e{word-spacing:-30.518400pt;}
.ws91{word-spacing:-30.080000pt;}
.ws30{word-spacing:-30.070133pt;}
.ws2c{word-spacing:-29.888000pt;}
.ws50{word-spacing:-29.881600pt;}
.ws2b{word-spacing:-29.232800pt;}
.ws35{word-spacing:-29.040000pt;}
.ws36{word-spacing:-28.976000pt;}
.ws89{word-spacing:-28.800000pt;}
.ws7d{word-spacing:-28.149333pt;}
.ws79{word-spacing:-27.958400pt;}
.ws52{word-spacing:-27.116800pt;}
.ws42{word-spacing:-26.678400pt;}
.ws2d{word-spacing:-26.489600pt;}
.ws5f{word-spacing:-26.245333pt;}
.ws88{word-spacing:-26.220267pt;}
.ws6b{word-spacing:-25.850133pt;}
.ws39{word-spacing:-25.843200pt;}
.wsa2{word-spacing:-25.600000pt;}
.ws7c{word-spacing:-24.768000pt;}
.wsa4{word-spacing:-24.759200pt;}
.ws90{word-spacing:-24.566400pt;}
.ws25{word-spacing:-24.310400pt;}
.wsa6{word-spacing:-24.127200pt;}
.ws26{word-spacing:-24.108800pt;}
.ws80{word-spacing:-23.490133pt;}
.ws95{word-spacing:-23.488000pt;}
.ws5c{word-spacing:-23.481333pt;}
.ws81{word-spacing:-23.464267pt;}
.ws38{word-spacing:-23.284800pt;}
.ws37{word-spacing:-23.281600pt;}
.ws63{word-spacing:-23.020800pt;}
.ws7f{word-spacing:-22.974667pt;}
.ws53{word-spacing:-22.836800pt;}
.ws6e{word-spacing:-22.644800pt;}
.wsb{word-spacing:-21.747200pt;}
.ws8e{word-spacing:-21.561600pt;}
.ws73{word-spacing:-21.558400pt;}
.ws60{word-spacing:-21.122133pt;}
.wsa{word-spacing:-21.103200pt;}
.wsd{word-spacing:-20.918933pt;}
.ws4b{word-spacing:-20.470400pt;}
.ws48{word-spacing:-19.822400pt;}
.ws94{word-spacing:-19.650933pt;}
.ws7a{word-spacing:-19.451733pt;}
.ws62{word-spacing:-19.449600pt;}
.ws86{word-spacing:-18.998400pt;}
.ws28{word-spacing:-18.164800pt;}
.ws51{word-spacing:-17.906133pt;}
.ws3f{word-spacing:-16.438400pt;}
.ws21{word-spacing:-15.997333pt;}
.ws46{word-spacing:-15.798400pt;}
.ws69{word-spacing:-15.616533pt;}
.ws40{word-spacing:-15.609600pt;}
.ws45{word-spacing:-15.604267pt;}
.ws15{word-spacing:-15.552000pt;}
.ws14{word-spacing:-15.365333pt;}
.ws44{word-spacing:-15.163733pt;}
.ws64{word-spacing:-15.158400pt;}
.ws70{word-spacing:-14.964800pt;}
.ws34{word-spacing:-14.518400pt;}
.ws87{word-spacing:-14.505600pt;}
.ws2a{word-spacing:-14.073600pt;}
.wsa7{word-spacing:-14.065067pt;}
.wsa0{word-spacing:-13.886133pt;}
.ws4a{word-spacing:-13.878400pt;}
.ws49{word-spacing:-13.045600pt;}
.ws76{word-spacing:-12.800000pt;}
.ws59{word-spacing:-12.595200pt;}
.ws5b{word-spacing:-12.404800pt;}
.ws1b{word-spacing:-12.165333pt;}
.ws1c{word-spacing:-11.962667pt;}
.ws16{word-spacing:-11.456000pt;}
.ws43{word-spacing:-10.673600pt;}
.ws4d{word-spacing:-10.489600pt;}
.ws31{word-spacing:-10.229333pt;}
.ws67{word-spacing:-10.048000pt;}
.ws58{word-spacing:-9.582400pt;}
.ws72{word-spacing:-9.575467pt;}
.ws78{word-spacing:-9.398400pt;}
.wse{word-spacing:-8.109867pt;}
.ws5e{word-spacing:-7.923200pt;}
.ws3a{word-spacing:-7.478400pt;}
.wsc{word-spacing:-7.470400pt;}
.ws97{word-spacing:-7.040000pt;}
.ws32{word-spacing:-5.946400pt;}
.ws83{word-spacing:-5.760000pt;}
.ws17{word-spacing:-5.566400pt;}
.ws33{word-spacing:-5.371733pt;}
.ws41{word-spacing:-4.920000pt;}
.ws8f{word-spacing:-2.365600pt;}
.ws6c{word-spacing:-1.075200pt;}
.ws5d{word-spacing:0.000000pt;}
.ws47{word-spacing:0.669333pt;}
.ws10{word-spacing:1.926400pt;}
.ws11{word-spacing:2.315200pt;}
.ws6d{word-spacing:5.769600pt;}
.ws85{word-spacing:6.405067pt;}
.ws55{word-spacing:9.349867pt;}
.ws8d{word-spacing:9.996000pt;}
.ws3c{word-spacing:10.441600pt;}
.ws3b{word-spacing:10.446400pt;}
.ws9e{word-spacing:68.031467pt;}
.ws98{word-spacing:78.721867pt;}
.ws9d{word-spacing:84.034400pt;}
.ws9a{word-spacing:89.356000pt;}
.ws9b{word-spacing:94.910667pt;}
.ws1{word-spacing:922.208800pt;}
._19{margin-left:-1.980267pt;}
._2{margin-left:-0.890133pt;}
._0{width:0.956800pt;}
._1f{width:10.979467pt;}
._28{width:15.347200pt;}
._1{width:16.860800pt;}
._d{width:17.763200pt;}
._a{width:18.814400pt;}
._c{width:19.712000pt;}
._11{width:21.665600pt;}
._25{width:22.737067pt;}
._1c{width:23.641600pt;}
._12{width:25.017600pt;}
._16{width:25.961600pt;}
._e{width:27.062400pt;}
._21{width:28.100533pt;}
._3{width:29.016800pt;}
._5{width:30.077333pt;}
._1b{width:31.284267pt;}
._f{width:32.456533pt;}
._18{width:34.233067pt;}
._7{width:35.136533pt;}
._14{width:36.467733pt;}
._10{width:37.428800pt;}
._b{width:38.464000pt;}
._8{width:39.748800pt;}
._13{width:40.920533pt;}
._1e{width:41.902400pt;}
._4{width:43.360000pt;}
._9{width:45.181333pt;}
._26{width:48.306933pt;}
._23{width:49.728000pt;}
._6{width:50.976000pt;}
._1a{width:51.885867pt;}
._24{width:56.682667pt;}
._20{width:58.372267pt;}
._1d{width:60.224000pt;}
._17{width:61.484267pt;}
._15{width:64.468800pt;}
._22{width:73.600000pt;}
._27{width:89.600000pt;}
._29{width:105.600000pt;}
.fs2{font-size:27.466667pt;}
.fs1{font-size:41.600000pt;}
.fs3{font-size:42.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:3.454667pt;}
.y8a{bottom:3.480000pt;}
.y86{bottom:3.493333pt;}
.y8e{bottom:3.508000pt;}
.y91{bottom:3.533333pt;}
.y94{bottom:4.133333pt;}
.y83{bottom:6.733333pt;}
.y4{bottom:10.880000pt;}
.y85{bottom:21.733333pt;}
.y90{bottom:21.774667pt;}
.y8d{bottom:21.906667pt;}
.y93{bottom:22.533333pt;}
.y82{bottom:25.133333pt;}
.y8c{bottom:40.146667pt;}
.y3{bottom:56.866667pt;}
.y26{bottom:106.466667pt;}
.y51{bottom:116.708000pt;}
.y80{bottom:125.346667pt;}
.y25{bottom:143.588000pt;}
.y7f{bottom:143.746667pt;}
.y6d{bottom:144.066667pt;}
.y50{bottom:145.988000pt;}
.y24{bottom:161.988000pt;}
.y7e{bottom:162.146667pt;}
.y4f{bottom:164.388000pt;}
.y6c{bottom:166.626667pt;}
.y7d{bottom:180.546667pt;}
.y4e{bottom:182.788000pt;}
.y23{bottom:198.946667pt;}
.y22{bottom:217.346667pt;}
.y4d{bottom:219.908000pt;}
.y21{bottom:235.746667pt;}
.y6b{bottom:237.988000pt;}
.y4c{bottom:238.308000pt;}
.y20{bottom:254.146667pt;}
.y7c{bottom:254.466667pt;}
.y6a{bottom:256.388000pt;}
.y4b{bottom:256.706667pt;}
.y1f{bottom:272.546667pt;}
.y69{bottom:274.788000pt;}
.y4a{bottom:275.108000pt;}
.y7b{bottom:291.426667pt;}
.y68{bottom:293.188000pt;}
.y49{bottom:293.508000pt;}
.y1e{bottom:309.666667pt;}
.y7a{bottom:309.826667pt;}
.y67{bottom:311.588000pt;}
.y48{bottom:311.908000pt;}
.y1d{bottom:328.066667pt;}
.y79{bottom:328.226667pt;}
.y66{bottom:329.988000pt;}
.y47{bottom:330.308000pt;}
.y78{bottom:346.626667pt;}
.y77{bottom:365.026667pt;}
.y1c{bottom:365.188000pt;}
.y65{bottom:367.108000pt;}
.y46{bottom:367.266667pt;}
.y76{bottom:383.426667pt;}
.y1b{bottom:383.588000pt;}
.y64{bottom:385.508000pt;}
.y75{bottom:401.826667pt;}
.y63{bottom:403.908000pt;}
.y45{bottom:404.388000pt;}
.y74{bottom:420.226667pt;}
.y1a{bottom:420.546667pt;}
.y62{bottom:422.308000pt;}
.y44{bottom:422.788000pt;}
.y19{bottom:438.946667pt;}
.y61{bottom:440.708000pt;}
.y43{bottom:441.188000pt;}
.y18{bottom:457.346667pt;}
.y60{bottom:459.108000pt;}
.y42{bottom:459.588000pt;}
.y17{bottom:475.746667pt;}
.y41{bottom:477.988000pt;}
.y16{bottom:494.146667pt;}
.y5f{bottom:496.066667pt;}
.y40{bottom:496.388000pt;}
.y92{bottom:507.133333pt;}
.y15{bottom:512.546667pt;}
.y3f{bottom:514.788000pt;}
.y5e{bottom:533.188000pt;}
.y8f{bottom:545.333333pt;}
.y14{bottom:549.666667pt;}
.y5d{bottom:551.588000pt;}
.y3e{bottom:551.908000pt;}
.y13{bottom:568.066667pt;}
.y5c{bottom:569.988000pt;}
.y3d{bottom:570.308000pt;}
.y8b{bottom:582.800000pt;}
.y5b{bottom:588.388000pt;}
.y3c{bottom:588.706667pt;}
.y12{bottom:605.188000pt;}
.y3b{bottom:607.108000pt;}
.y11{bottom:623.588000pt;}
.y3a{bottom:625.506667pt;}
.y89{bottom:638.666667pt;}
.y39{bottom:643.908000pt;}
.y87{bottom:657.733333pt;}
.y10{bottom:660.546667pt;}
.y38{bottom:662.308000pt;}
.y84{bottom:676.733333pt;}
.yf{bottom:678.946667pt;}
.y5a{bottom:680.706667pt;}
.ye{bottom:697.346667pt;}
.y59{bottom:699.108000pt;}
.y37{bottom:699.266667pt;}
.y81{bottom:714.133333pt;}
.yd{bottom:715.746667pt;}
.y58{bottom:717.506667pt;}
.y36{bottom:717.666667pt;}
.yc{bottom:734.146667pt;}
.y57{bottom:735.906667pt;}
.y35{bottom:736.066667pt;}
.y56{bottom:754.308000pt;}
.y34{bottom:754.466667pt;}
.yb{bottom:771.266667pt;}
.y55{bottom:772.706667pt;}
.y33{bottom:772.866667pt;}
.ya{bottom:789.666667pt;}
.y54{bottom:791.106667pt;}
.y32{bottom:791.266667pt;}
.y9a{bottom:791.588000pt;}
.y53{bottom:809.506667pt;}
.y31{bottom:809.666667pt;}
.y99{bottom:809.988000pt;}
.y52{bottom:827.906667pt;}
.y30{bottom:828.066667pt;}
.y98{bottom:828.388000pt;}
.y2f{bottom:846.466667pt;}
.y97{bottom:846.788000pt;}
.y2e{bottom:864.866667pt;}
.y96{bottom:865.188000pt;}
.y9{bottom:882.466667pt;}
.y73{bottom:883.266667pt;}
.y95{bottom:883.588000pt;}
.y72{bottom:901.666667pt;}
.y2d{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y71{bottom:920.066667pt;}
.y2c{bottom:920.388000pt;}
.y70{bottom:938.466667pt;}
.y2b{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y6f{bottom:956.866667pt;}
.y2a{bottom:957.188000pt;}
.y6e{bottom:975.266667pt;}
.y29{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y28{bottom:993.988000pt;}
.y27{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h7{height:18.682161pt;}
.hb{height:19.000000pt;}
.h6{height:19.084505pt;}
.h3{height:29.066667pt;}
.h8{height:29.831120pt;}
.ha{height:37.400000pt;}
.hd{height:38.133333pt;}
.h9{height:40.666667pt;}
.h4{height:44.468750pt;}
.h5{height:50.659354pt;}
.h2{height:55.343750pt;}
.hc{height:55.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w5{width:169.733333pt;}
.w3{width:176.266667pt;}
.w4{width:180.800000pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.440000pt;}
.x4{left:10.453333pt;}
.x13{left:47.200000pt;}
.x17{left:71.160000pt;}
.x1b{left:79.186667pt;}
.x1a{left:83.120000pt;}
.x1c{left:87.160000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:115.040000pt;}
.xb{left:121.600000pt;}
.x12{left:127.200000pt;}
.x16{left:137.000000pt;}
.x14{left:139.200000pt;}
.x2{left:142.720000pt;}
.x11{left:147.200000pt;}
.xd{left:148.640000pt;}
.x10{left:151.200000pt;}
.xf{left:155.200000pt;}
.x6{left:255.360000pt;}
.x7{left:257.120000pt;}
.x5{left:305.920000pt;}
.x9{left:311.040000pt;}
.x18{left:313.200000pt;}
.xe{left:320.800000pt;}
.x8{left:362.560000pt;}
.xc{left:383.040000pt;}
.x19{left:493.933333pt;}
}




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