
    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_75e86bd563e7c6dcad6162c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_ce4dfbe00702156f4c083629.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_04b685e007a2f76d431f75b3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e76db23c10a1f4e7eee9da4.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_32ece72cb47b5067800b70b5.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a585cc82184afe6831c1613d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.078600px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.097800px;}
.lse{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.119520px;}
.ls1b{letter-spacing:0.175200px;}
.ls0{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls1c{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.340000px;}
.ls5{letter-spacing:16.506720px;}
.lsc{letter-spacing:22.266720px;}
.lsb{letter-spacing:25.866720px;}
.ls1a{letter-spacing:41.706720px;}
.ls19{letter-spacing:43.146720px;}
.ls16{letter-spacing:44.586720px;}
.ls6{letter-spacing:46.026720px;}
.ls2{letter-spacing:46.170720px;}
.ls18{letter-spacing:46.746720px;}
.ls15{letter-spacing:47.466720px;}
.ls10{letter-spacing:49.626720px;}
.ls17{letter-spacing:51.066720px;}
.ls12{letter-spacing:56.106720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsb{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.680960px;}
.wsc{word-spacing:-13.427160px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-4.293120px;}
._12{margin-left:-3.281040px;}
._10{margin-left:-2.273760px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._4{width:2.521680px;}
._9{width:4.242960px;}
._a{width:5.495040px;}
._11{width:7.174080px;}
._c{width:8.423280px;}
._8{width:10.096560px;}
._7{width:11.653200px;}
._b{width:13.610880px;}
._14{width:16.208400px;}
._3{width:17.236800px;}
._13{width:18.385200px;}
._e{width:19.724400px;}
._6{width:20.938560px;}
._5{width:22.566720px;}
._f{width:24.566880px;}
._d{width:28.146960px;}
._16{width:29.180880px;}
._18{width:31.804560px;}
._17{width:33.071040px;}
._1{width:1100.028000px;}
.fc5{color:rgb(15,17,21);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y2a{bottom:5.760000px;}
.y7{bottom:8.100000px;}
.y28{bottom:10.980000px;}
.y3e{bottom:25.560000px;}
.y27{bottom:30.780000px;}
.y6{bottom:36.000000px;}
.y3d{bottom:45.360000px;}
.y26{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y3c{bottom:65.340000px;}
.y25{bottom:70.560000px;}
.y4{bottom:81.720000px;}
.y50{bottom:84.060000px;}
.y3b{bottom:85.140000px;}
.y88{bottom:86.580000px;}
.ybb{bottom:88.380000px;}
.y24{bottom:90.360000px;}
.y10e{bottom:94.680000px;}
.y4f{bottom:103.860000px;}
.y3a{bottom:104.940000px;}
.y87{bottom:106.380000px;}
.yba{bottom:108.180000px;}
.y9{bottom:108.570000px;}
.y23{bottom:110.160000px;}
.y10d{bottom:114.480000px;}
.y3{bottom:118.110000px;}
.y4e{bottom:123.840000px;}
.y39{bottom:124.740000px;}
.y86{bottom:126.180000px;}
.yb9{bottom:127.980000px;}
.y22{bottom:129.960000px;}
.y8{bottom:130.530000px;}
.y10c{bottom:134.280000px;}
.yc0{bottom:135.180000px;}
.y4d{bottom:143.640000px;}
.y38{bottom:144.540000px;}
.y85{bottom:145.980000px;}
.yb8{bottom:147.780000px;}
.y21{bottom:149.940000px;}
.y10b{bottom:154.290000px;}
.ybf{bottom:155.010000px;}
.y4c{bottom:163.470000px;}
.y37{bottom:164.520000px;}
.y84{bottom:165.810000px;}
.yb7{bottom:167.790000px;}
.y20{bottom:169.740000px;}
.y10a{bottom:174.090000px;}
.ybe{bottom:174.810000px;}
.y4b{bottom:183.270000px;}
.y36{bottom:184.320000px;}
.y83{bottom:185.790000px;}
.yb6{bottom:187.590000px;}
.y1f{bottom:189.540000px;}
.y109{bottom:193.890000px;}
.ybd{bottom:194.790000px;}
.y4a{bottom:203.070000px;}
.y35{bottom:204.120000px;}
.y82{bottom:205.590000px;}
.yb5{bottom:207.390000px;}
.y1e{bottom:209.370000px;}
.y108{bottom:213.690000px;}
.ybc{bottom:214.590000px;}
.y49{bottom:223.050000px;}
.y34{bottom:223.950000px;}
.yd0{bottom:225.390000px;}
.yb4{bottom:227.190000px;}
.y1d{bottom:229.170000px;}
.y107{bottom:233.490000px;}
.y81{bottom:234.390000px;}
.y48{bottom:242.850000px;}
.y33{bottom:243.750000px;}
.ycf{bottom:245.190000px;}
.yb3{bottom:246.990000px;}
.y1c{bottom:249.150000px;}
.y106{bottom:253.470000px;}
.y80{bottom:254.190000px;}
.y47{bottom:262.650000px;}
.y32{bottom:263.730000px;}
.yce{bottom:264.990000px;}
.yb2{bottom:266.970000px;}
.y1b{bottom:268.950000px;}
.y105{bottom:273.270000px;}
.y7f{bottom:273.990000px;}
.y46{bottom:282.450000px;}
.y31{bottom:283.530000px;}
.ycd{bottom:284.970000px;}
.yb1{bottom:286.770000px;}
.y1a{bottom:288.750000px;}
.y104{bottom:293.070000px;}
.y7e{bottom:293.970000px;}
.y45{bottom:302.250000px;}
.y30{bottom:303.330000px;}
.ycc{bottom:304.770000px;}
.yb0{bottom:306.570000px;}
.y19{bottom:308.550000px;}
.y103{bottom:312.870000px;}
.y7d{bottom:313.770000px;}
.y44{bottom:322.230000px;}
.y2f{bottom:323.130000px;}
.ycb{bottom:324.570000px;}
.yaf{bottom:326.370000px;}
.y18{bottom:328.350000px;}
.y102{bottom:332.670000px;}
.y7c{bottom:333.570000px;}
.y43{bottom:342.030000px;}
.y2e{bottom:342.930000px;}
.yca{bottom:344.370000px;}
.yae{bottom:346.170000px;}
.y17{bottom:348.330000px;}
.y101{bottom:352.650000px;}
.y7b{bottom:353.370000px;}
.y42{bottom:361.830000px;}
.y2d{bottom:362.910000px;}
.yc9{bottom:364.170000px;}
.yad{bottom:366.150000px;}
.y16{bottom:368.130000px;}
.y100{bottom:372.450000px;}
.y7a{bottom:373.170000px;}
.y41{bottom:381.630000px;}
.y2c{bottom:382.710000px;}
.yc8{bottom:384.150000px;}
.yac{bottom:385.950000px;}
.y15{bottom:387.930000px;}
.yff{bottom:392.250000px;}
.y79{bottom:393.150000px;}
.y40{bottom:401.475000px;}
.y2b{bottom:402.510000px;}
.yc7{bottom:403.995000px;}
.yda{bottom:405.795000px;}
.y14{bottom:407.730000px;}
.yfe{bottom:412.095000px;}
.y78{bottom:412.995000px;}
.yab{bottom:414.795000px;}
.y3f{bottom:421.455000px;}
.yc6{bottom:423.795000px;}
.yd9{bottom:425.595000px;}
.y13{bottom:427.530000px;}
.yfd{bottom:431.895000px;}
.y77{bottom:432.795000px;}
.yaa{bottom:434.595000px;}
.y12{bottom:440.715000px;}
.yc5{bottom:443.595000px;}
.yd8{bottom:445.395000px;}
.yfc{bottom:451.875000px;}
.y76{bottom:452.595000px;}
.ya9{bottom:454.395000px;}
.yc4{bottom:463.395000px;}
.yfb{bottom:471.675000px;}
.y75{bottom:472.395000px;}
.ya8{bottom:474.375000px;}
.yc3{bottom:483.375000px;}
.yfa{bottom:491.475000px;}
.y74{bottom:492.375000px;}
.ya7{bottom:494.175000px;}
.yc2{bottom:503.175000px;}
.yf9{bottom:511.275000px;}
.y73{bottom:512.175000px;}
.ya6{bottom:513.975000px;}
.yc1{bottom:522.975000px;}
.yf8{bottom:531.075000px;}
.y72{bottom:531.975000px;}
.ya5{bottom:533.775000px;}
.yf7{bottom:551.055000px;}
.y71{bottom:551.775000px;}
.ya4{bottom:553.575000px;}
.yf6{bottom:570.855000px;}
.y70{bottom:571.575000px;}
.ya3{bottom:573.555000px;}
.yf5{bottom:590.655000px;}
.y6f{bottom:591.555000px;}
.ya2{bottom:593.355000px;}
.yf4{bottom:610.455000px;}
.y6e{bottom:611.355000px;}
.ya1{bottom:613.155000px;}
.yf3{bottom:630.255000px;}
.y6d{bottom:631.155000px;}
.ya0{bottom:632.955000px;}
.yf2{bottom:650.265000px;}
.y6c{bottom:650.985000px;}
.y9f{bottom:652.785000px;}
.yf1{bottom:670.065000px;}
.y6b{bottom:670.785000px;}
.y9e{bottom:672.765000px;}
.yd7{bottom:681.765000px;}
.yf0{bottom:689.865000px;}
.y6a{bottom:690.765000px;}
.y9d{bottom:692.565000px;}
.yd6{bottom:701.565000px;}
.yef{bottom:709.665000px;}
.y69{bottom:710.565000px;}
.y9c{bottom:712.365000px;}
.yd5{bottom:721.365000px;}
.yee{bottom:729.465000px;}
.y68{bottom:730.365000px;}
.y9b{bottom:732.165000px;}
.yd4{bottom:741.165000px;}
.yed{bottom:749.445000px;}
.y67{bottom:750.165000px;}
.y9a{bottom:751.965000px;}
.yd3{bottom:760.965000px;}
.yec{bottom:769.245000px;}
.y66{bottom:769.965000px;}
.y99{bottom:771.945000px;}
.yd2{bottom:780.945000px;}
.yeb{bottom:789.045000px;}
.y65{bottom:789.945000px;}
.y98{bottom:791.745000px;}
.yd1{bottom:800.745000px;}
.yea{bottom:808.845000px;}
.y64{bottom:809.745000px;}
.y97{bottom:820.545000px;}
.ye9{bottom:828.645000px;}
.y63{bottom:829.545000px;}
.y96{bottom:840.345000px;}
.ye8{bottom:848.625000px;}
.y62{bottom:849.345000px;}
.y95{bottom:860.145000px;}
.y29{bottom:862.485000px;}
.ye7{bottom:868.425000px;}
.y61{bottom:869.145000px;}
.y94{bottom:880.125000px;}
.ye6{bottom:888.225000px;}
.y60{bottom:889.125000px;}
.y11{bottom:893.445000px;}
.y93{bottom:899.970000px;}
.ye5{bottom:908.070000px;}
.y5f{bottom:908.970000px;}
.y10{bottom:918.510000px;}
.y92{bottom:919.770000px;}
.ye4{bottom:927.870000px;}
.y5e{bottom:928.770000px;}
.yf{bottom:933.630000px;}
.y91{bottom:939.570000px;}
.ye3{bottom:947.850000px;}
.y5d{bottom:948.570000px;}
.ye{bottom:954.870000px;}
.y90{bottom:959.370000px;}
.ye2{bottom:967.470000px;}
.y5c{bottom:968.370000px;}
.yd{bottom:978.450000px;}
.y8f{bottom:979.350000px;}
.ye1{bottom:987.810000px;}
.y5b{bottom:988.350000px;}
.y8e{bottom:999.150000px;}
.ye0{bottom:1007.610000px;}
.y5a{bottom:1008.150000px;}
.yc{bottom:1010.130000px;}
.y8d{bottom:1018.950000px;}
.ydf{bottom:1027.230000px;}
.y59{bottom:1027.950000px;}
.ya{bottom:1036.050000px;}
.y8c{bottom:1038.750000px;}
.yde{bottom:1047.570000px;}
.y58{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.y8b{bottom:1058.550000px;}
.ydd{bottom:1067.370000px;}
.y57{bottom:1067.550000px;}
.y8a{bottom:1078.530000px;}
.ydc{bottom:1087.170000px;}
.y56{bottom:1087.530000px;}
.y89{bottom:1098.330000px;}
.ydb{bottom:1106.970000px;}
.y55{bottom:1107.330000px;}
.y54{bottom:1127.130000px;}
.y53{bottom:1146.960000px;}
.y52{bottom:1166.760000px;}
.y51{bottom:1195.740000px;}
.hc{height:19.800000px;}
.h9{height:27.147656px;}
.ha{height:41.726953px;}
.h7{height:42.164648px;}
.he{height:43.506914px;}
.h5{height:46.251562px;}
.hf{height:49.255313px;}
.h8{height:53.224453px;}
.h11{height:59.439023px;}
.h10{height:65.884219px;}
.h6{height:67.565039px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.hd{height:416.550000px;}
.hb{height:441.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.w6{width:304.815000px;}
.w7{width:473.325000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:55.980000px;}
.xd{left:59.039987px;}
.x22{left:79.559987px;}
.x21{left:80.999987px;}
.xc{left:86.075987px;}
.xf{left:90.935987px;}
.x20{left:96.515987px;}
.x7{left:102.285000px;}
.x2b{left:107.135987px;}
.x2c{left:111.995987px;}
.x27{left:113.615987px;}
.x2{left:115.950000px;}
.x10{left:117.935987px;}
.x28{left:122.795987px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x24{left:138.995987px;}
.x2d{left:144.035987px;}
.x29{left:149.795987px;}
.x2a{left:154.649987px;}
.x26{left:156.089987px;}
.x11{left:160.409987px;}
.x2e{left:171.029987px;}
.x3{left:181.650000px;}
.x23{left:192.989987px;}
.xe{left:199.289987px;}
.x2f{left:216.029987px;}
.x1e{left:233.849987px;}
.x25{left:235.649987px;}
.x1b{left:242.669987px;}
.x13{left:299.594987px;}
.x16{left:304.094987px;}
.x1a{left:308.954987px;}
.x1c{left:320.474987px;}
.x1d{left:323.354987px;}
.x19{left:340.454987px;}
.x18{left:342.254987px;}
.x17{left:357.014987px;}
.xb{left:363.855000px;}
.x15{left:392.114987px;}
.x14{left:395.894987px;}
.x1f{left:446.504987px;}
.x12{left:478.544987px;}
.x9{left:681.450000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.069867pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.086933pt;}
.lse{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.106240pt;}
.ls1b{letter-spacing:0.155733pt;}
.ls0{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls1c{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls5{letter-spacing:14.672640pt;}
.lsc{letter-spacing:19.792640pt;}
.lsb{letter-spacing:22.992640pt;}
.ls1a{letter-spacing:37.072640pt;}
.ls19{letter-spacing:38.352640pt;}
.ls16{letter-spacing:39.632640pt;}
.ls6{letter-spacing:40.912640pt;}
.ls2{letter-spacing:41.040640pt;}
.ls18{letter-spacing:41.552640pt;}
.ls15{letter-spacing:42.192640pt;}
.ls10{letter-spacing:44.112640pt;}
.ls17{letter-spacing:45.392640pt;}
.ls12{letter-spacing:49.872640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.160853pt;}
.wsc{word-spacing:-11.935253pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-3.816107pt;}
._12{margin-left:-2.916480pt;}
._10{margin-left:-2.021120pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._4{width:2.241493pt;}
._9{width:3.771520pt;}
._a{width:4.884480pt;}
._11{width:6.376960pt;}
._c{width:7.487360pt;}
._8{width:8.974720pt;}
._7{width:10.358400pt;}
._b{width:12.098560pt;}
._14{width:14.407467pt;}
._3{width:15.321600pt;}
._13{width:16.342400pt;}
._e{width:17.532800pt;}
._6{width:18.612053pt;}
._5{width:20.059307pt;}
._f{width:21.837227pt;}
._d{width:25.019520pt;}
._16{width:25.938560pt;}
._18{width:28.270720pt;}
._17{width:29.396480pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y2a{bottom:5.120000pt;}
.y7{bottom:7.200000pt;}
.y28{bottom:9.760000pt;}
.y3e{bottom:22.720000pt;}
.y27{bottom:27.360000pt;}
.y6{bottom:32.000000pt;}
.y3d{bottom:40.320000pt;}
.y26{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y3c{bottom:58.080000pt;}
.y25{bottom:62.720000pt;}
.y4{bottom:72.640000pt;}
.y50{bottom:74.720000pt;}
.y3b{bottom:75.680000pt;}
.y88{bottom:76.960000pt;}
.ybb{bottom:78.560000pt;}
.y24{bottom:80.320000pt;}
.y10e{bottom:84.160000pt;}
.y4f{bottom:92.320000pt;}
.y3a{bottom:93.280000pt;}
.y87{bottom:94.560000pt;}
.yba{bottom:96.160000pt;}
.y9{bottom:96.506667pt;}
.y23{bottom:97.920000pt;}
.y10d{bottom:101.760000pt;}
.y3{bottom:104.986667pt;}
.y4e{bottom:110.080000pt;}
.y39{bottom:110.880000pt;}
.y86{bottom:112.160000pt;}
.yb9{bottom:113.760000pt;}
.y22{bottom:115.520000pt;}
.y8{bottom:116.026667pt;}
.y10c{bottom:119.360000pt;}
.yc0{bottom:120.160000pt;}
.y4d{bottom:127.680000pt;}
.y38{bottom:128.480000pt;}
.y85{bottom:129.760000pt;}
.yb8{bottom:131.360000pt;}
.y21{bottom:133.280000pt;}
.y10b{bottom:137.146667pt;}
.ybf{bottom:137.786667pt;}
.y4c{bottom:145.306667pt;}
.y37{bottom:146.240000pt;}
.y84{bottom:147.386667pt;}
.yb7{bottom:149.146667pt;}
.y20{bottom:150.880000pt;}
.y10a{bottom:154.746667pt;}
.ybe{bottom:155.386667pt;}
.y4b{bottom:162.906667pt;}
.y36{bottom:163.840000pt;}
.y83{bottom:165.146667pt;}
.yb6{bottom:166.746667pt;}
.y1f{bottom:168.480000pt;}
.y109{bottom:172.346667pt;}
.ybd{bottom:173.146667pt;}
.y4a{bottom:180.506667pt;}
.y35{bottom:181.440000pt;}
.y82{bottom:182.746667pt;}
.yb5{bottom:184.346667pt;}
.y1e{bottom:186.106667pt;}
.y108{bottom:189.946667pt;}
.ybc{bottom:190.746667pt;}
.y49{bottom:198.266667pt;}
.y34{bottom:199.066667pt;}
.yd0{bottom:200.346667pt;}
.yb4{bottom:201.946667pt;}
.y1d{bottom:203.706667pt;}
.y107{bottom:207.546667pt;}
.y81{bottom:208.346667pt;}
.y48{bottom:215.866667pt;}
.y33{bottom:216.666667pt;}
.ycf{bottom:217.946667pt;}
.yb3{bottom:219.546667pt;}
.y1c{bottom:221.466667pt;}
.y106{bottom:225.306667pt;}
.y80{bottom:225.946667pt;}
.y47{bottom:233.466667pt;}
.y32{bottom:234.426667pt;}
.yce{bottom:235.546667pt;}
.yb2{bottom:237.306667pt;}
.y1b{bottom:239.066667pt;}
.y105{bottom:242.906667pt;}
.y7f{bottom:243.546667pt;}
.y46{bottom:251.066667pt;}
.y31{bottom:252.026667pt;}
.ycd{bottom:253.306667pt;}
.yb1{bottom:254.906667pt;}
.y1a{bottom:256.666667pt;}
.y104{bottom:260.506667pt;}
.y7e{bottom:261.306667pt;}
.y45{bottom:268.666667pt;}
.y30{bottom:269.626667pt;}
.ycc{bottom:270.906667pt;}
.yb0{bottom:272.506667pt;}
.y19{bottom:274.266667pt;}
.y103{bottom:278.106667pt;}
.y7d{bottom:278.906667pt;}
.y44{bottom:286.426667pt;}
.y2f{bottom:287.226667pt;}
.ycb{bottom:288.506667pt;}
.yaf{bottom:290.106667pt;}
.y18{bottom:291.866667pt;}
.y102{bottom:295.706667pt;}
.y7c{bottom:296.506667pt;}
.y43{bottom:304.026667pt;}
.y2e{bottom:304.826667pt;}
.yca{bottom:306.106667pt;}
.yae{bottom:307.706667pt;}
.y17{bottom:309.626667pt;}
.y101{bottom:313.466667pt;}
.y7b{bottom:314.106667pt;}
.y42{bottom:321.626667pt;}
.y2d{bottom:322.586667pt;}
.yc9{bottom:323.706667pt;}
.yad{bottom:325.466667pt;}
.y16{bottom:327.226667pt;}
.y100{bottom:331.066667pt;}
.y7a{bottom:331.706667pt;}
.y41{bottom:339.226667pt;}
.y2c{bottom:340.186667pt;}
.yc8{bottom:341.466667pt;}
.yac{bottom:343.066667pt;}
.y15{bottom:344.826667pt;}
.yff{bottom:348.666667pt;}
.y79{bottom:349.466667pt;}
.y40{bottom:356.866667pt;}
.y2b{bottom:357.786667pt;}
.yc7{bottom:359.106667pt;}
.yda{bottom:360.706667pt;}
.y14{bottom:362.426667pt;}
.yfe{bottom:366.306667pt;}
.y78{bottom:367.106667pt;}
.yab{bottom:368.706667pt;}
.y3f{bottom:374.626667pt;}
.yc6{bottom:376.706667pt;}
.yd9{bottom:378.306667pt;}
.y13{bottom:380.026667pt;}
.yfd{bottom:383.906667pt;}
.y77{bottom:384.706667pt;}
.yaa{bottom:386.306667pt;}
.y12{bottom:391.746667pt;}
.yc5{bottom:394.306667pt;}
.yd8{bottom:395.906667pt;}
.yfc{bottom:401.666667pt;}
.y76{bottom:402.306667pt;}
.ya9{bottom:403.906667pt;}
.yc4{bottom:411.906667pt;}
.yfb{bottom:419.266667pt;}
.y75{bottom:419.906667pt;}
.ya8{bottom:421.666667pt;}
.yc3{bottom:429.666667pt;}
.yfa{bottom:436.866667pt;}
.y74{bottom:437.666667pt;}
.ya7{bottom:439.266667pt;}
.yc2{bottom:447.266667pt;}
.yf9{bottom:454.466667pt;}
.y73{bottom:455.266667pt;}
.ya6{bottom:456.866667pt;}
.yc1{bottom:464.866667pt;}
.yf8{bottom:472.066667pt;}
.y72{bottom:472.866667pt;}
.ya5{bottom:474.466667pt;}
.yf7{bottom:489.826667pt;}
.y71{bottom:490.466667pt;}
.ya4{bottom:492.066667pt;}
.yf6{bottom:507.426667pt;}
.y70{bottom:508.066667pt;}
.ya3{bottom:509.826667pt;}
.yf5{bottom:525.026667pt;}
.y6f{bottom:525.826667pt;}
.ya2{bottom:527.426667pt;}
.yf4{bottom:542.626667pt;}
.y6e{bottom:543.426667pt;}
.ya1{bottom:545.026667pt;}
.yf3{bottom:560.226667pt;}
.y6d{bottom:561.026667pt;}
.ya0{bottom:562.626667pt;}
.yf2{bottom:578.013333pt;}
.y6c{bottom:578.653333pt;}
.y9f{bottom:580.253333pt;}
.yf1{bottom:595.613333pt;}
.y6b{bottom:596.253333pt;}
.y9e{bottom:598.013333pt;}
.yd7{bottom:606.013333pt;}
.yf0{bottom:613.213333pt;}
.y6a{bottom:614.013333pt;}
.y9d{bottom:615.613333pt;}
.yd6{bottom:623.613333pt;}
.yef{bottom:630.813333pt;}
.y69{bottom:631.613333pt;}
.y9c{bottom:633.213333pt;}
.yd5{bottom:641.213333pt;}
.yee{bottom:648.413333pt;}
.y68{bottom:649.213333pt;}
.y9b{bottom:650.813333pt;}
.yd4{bottom:658.813333pt;}
.yed{bottom:666.173333pt;}
.y67{bottom:666.813333pt;}
.y9a{bottom:668.413333pt;}
.yd3{bottom:676.413333pt;}
.yec{bottom:683.773333pt;}
.y66{bottom:684.413333pt;}
.y99{bottom:686.173333pt;}
.yd2{bottom:694.173333pt;}
.yeb{bottom:701.373333pt;}
.y65{bottom:702.173333pt;}
.y98{bottom:703.773333pt;}
.yd1{bottom:711.773333pt;}
.yea{bottom:718.973333pt;}
.y64{bottom:719.773333pt;}
.y97{bottom:729.373333pt;}
.ye9{bottom:736.573333pt;}
.y63{bottom:737.373333pt;}
.y96{bottom:746.973333pt;}
.ye8{bottom:754.333333pt;}
.y62{bottom:754.973333pt;}
.y95{bottom:764.573333pt;}
.y29{bottom:766.653333pt;}
.ye7{bottom:771.933333pt;}
.y61{bottom:772.573333pt;}
.y94{bottom:782.333333pt;}
.ye6{bottom:789.533333pt;}
.y60{bottom:790.333333pt;}
.y11{bottom:794.173333pt;}
.y93{bottom:799.973333pt;}
.ye5{bottom:807.173333pt;}
.y5f{bottom:807.973333pt;}
.y10{bottom:816.453333pt;}
.y92{bottom:817.573333pt;}
.ye4{bottom:824.773333pt;}
.y5e{bottom:825.573333pt;}
.yf{bottom:829.893333pt;}
.y91{bottom:835.173333pt;}
.ye3{bottom:842.533333pt;}
.y5d{bottom:843.173333pt;}
.ye{bottom:848.773333pt;}
.y90{bottom:852.773333pt;}
.ye2{bottom:859.973333pt;}
.y5c{bottom:860.773333pt;}
.yd{bottom:869.733333pt;}
.y8f{bottom:870.533333pt;}
.ye1{bottom:878.053333pt;}
.y5b{bottom:878.533333pt;}
.y8e{bottom:888.133333pt;}
.ye0{bottom:895.653333pt;}
.y5a{bottom:896.133333pt;}
.yc{bottom:897.893333pt;}
.y8d{bottom:905.733333pt;}
.ydf{bottom:913.093333pt;}
.y59{bottom:913.733333pt;}
.ya{bottom:920.933333pt;}
.y8c{bottom:923.333333pt;}
.yde{bottom:931.173333pt;}
.y58{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.y8b{bottom:940.933333pt;}
.ydd{bottom:948.773333pt;}
.y57{bottom:948.933333pt;}
.y8a{bottom:958.693333pt;}
.ydc{bottom:966.373333pt;}
.y56{bottom:966.693333pt;}
.y89{bottom:976.293333pt;}
.ydb{bottom:983.973333pt;}
.y55{bottom:984.293333pt;}
.y54{bottom:1001.893333pt;}
.y53{bottom:1019.520000pt;}
.y52{bottom:1037.120000pt;}
.y51{bottom:1062.880000pt;}
.hc{height:17.600000pt;}
.h9{height:24.131250pt;}
.ha{height:37.090625pt;}
.h7{height:37.479688pt;}
.he{height:38.672812pt;}
.h5{height:41.112500pt;}
.hf{height:43.782500pt;}
.h8{height:47.310625pt;}
.h11{height:52.834688pt;}
.h10{height:58.563750pt;}
.h6{height:60.057813pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.hd{height:370.266667pt;}
.hb{height:392.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.w6{width:270.946667pt;}
.w7{width:420.733333pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:49.760000pt;}
.xd{left:52.479988pt;}
.x22{left:70.719988pt;}
.x21{left:71.999988pt;}
.xc{left:76.511988pt;}
.xf{left:80.831988pt;}
.x20{left:85.791988pt;}
.x7{left:90.920000pt;}
.x2b{left:95.231988pt;}
.x2c{left:99.551988pt;}
.x27{left:100.991988pt;}
.x2{left:103.066667pt;}
.x10{left:104.831988pt;}
.x28{left:109.151988pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x24{left:123.551988pt;}
.x2d{left:128.031988pt;}
.x29{left:133.151988pt;}
.x2a{left:137.466655pt;}
.x26{left:138.746655pt;}
.x11{left:142.586655pt;}
.x2e{left:152.026655pt;}
.x3{left:161.466667pt;}
.x23{left:171.546655pt;}
.xe{left:177.146655pt;}
.x2f{left:192.026655pt;}
.x1e{left:207.866655pt;}
.x25{left:209.466655pt;}
.x1b{left:215.706655pt;}
.x13{left:266.306655pt;}
.x16{left:270.306655pt;}
.x1a{left:274.626655pt;}
.x1c{left:284.866655pt;}
.x1d{left:287.426655pt;}
.x19{left:302.626655pt;}
.x18{left:304.226655pt;}
.x17{left:317.346655pt;}
.xb{left:323.426667pt;}
.x15{left:348.546655pt;}
.x14{left:351.906655pt;}
.x1f{left:396.893322pt;}
.x12{left:425.373322pt;}
.x9{left:605.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; }
  