
    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_3a18ff043e777d7decfc0ede.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c30d4da953d671df7886b72c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_adeba88ee557ca03179bd327.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_590508bf67e4712476f5645b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.819824;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_0d0d40ff712921d029a79c57.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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9db87a29a17d540afea645d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.720000px;}
.ls7{letter-spacing:33.984000px;}
.ls4{letter-spacing:44.784000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-4.536000px;}
._a{margin-left:-3.390240px;}
._15{margin-left:-2.361120px;}
._0{margin-left:-1.328640px;}
._6{width:1.149120px;}
._7{width:3.066240px;}
._12{width:4.680000px;}
._13{width:5.976000px;}
._e{width:7.200000px;}
._f{width:8.201280px;}
._8{width:9.216000px;}
._d{width:10.224000px;}
._14{width:11.369280px;}
._11{width:12.456000px;}
._10{width:13.680000px;}
._b{width:14.760000px;}
._c{width:15.912000px;}
._1f{width:16.920000px;}
._16{width:19.656000px;}
._1a{width:21.275520px;}
._17{width:22.320000px;}
._1b{width:23.390880px;}
._20{width:25.416000px;}
._18{width:26.568000px;}
._19{width:28.368000px;}
._1e{width:29.448000px;}
._1c{width:30.456000px;}
._1d{width:31.469760px;}
._21{width:33.192000px;}
._22{width:34.272000px;}
._26{width:35.465280px;}
._23{width:38.664000px;}
._24{width:40.080000px;}
._25{width:41.321760px;}
._27{width:46.560000px;}
._28{width:48.302880px;}
._4{width:54.149760px;}
._2e{width:100.944000px;}
._5{width:104.549760px;}
._2d{width:137.160000px;}
._2c{width:138.528000px;}
._29{width:187.416000px;}
._2a{width:188.916000px;}
._2b{width:235.224000px;}
._2{width:725.556960px;}
._3{width:1260.449760px;}
._1{width:1812.660000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.700000px;}
.yca{bottom:88.956000px;}
.y98{bottom:89.316000px;}
.y93{bottom:93.996000px;}
.y34{bottom:104.256000px;}
.yb7{bottom:104.796000px;}
.y8b{bottom:106.236000px;}
.yc9{bottom:106.416000px;}
.y97{bottom:106.596000px;}
.ye1{bottom:106.776000px;}
.y102{bottom:113.616000px;}
.yd5{bottom:114.696000px;}
.yab{bottom:115.236000px;}
.y5d{bottom:115.416000px;}
.y72{bottom:119.736000px;}
.yc8{bottom:123.696000px;}
.y96{bottom:123.876000px;}
.y33{bottom:124.956000px;}
.y12a{bottom:128.376000px;}
.y4d{bottom:135.396000px;}
.yb6{bottom:135.936000px;}
.y8a{bottom:137.376000px;}
.ye0{bottom:137.916000px;}
.yc7{bottom:140.976000px;}
.y95{bottom:141.156000px;}
.y101{bottom:144.756000px;}
.y32{bottom:145.656000px;}
.yaa{bottom:146.196000px;}
.y5c{bottom:146.556000px;}
.y129{bottom:149.076000px;}
.y71{bottom:150.870000px;}
.y94{bottom:155.190000px;}
.y92{bottom:156.090000px;}
.y89{bottom:158.070000px;}
.yc6{bottom:158.250000px;}
.y31{bottom:166.350000px;}
.yb5{bottom:166.890000px;}
.ydf{bottom:168.870000px;}
.y128{bottom:169.770000px;}
.y70{bottom:171.570000px;}
.yc5{bottom:175.530000px;}
.y100{bottom:175.710000px;}
.yd4{bottom:176.790000px;}
.ya9{bottom:177.330000px;}
.y5b{bottom:177.510000px;}
.y88{bottom:178.770000px;}
.yc4{bottom:180.750000px;}
.y30{bottom:187.050000px;}
.yb4{bottom:187.590000px;}
.y127{bottom:190.470000px;}
.y6f{bottom:192.270000px;}
.yc3{bottom:194.070000px;}
.yff{bottom:196.410000px;}
.y4c{bottom:197.490000px;}
.y87{bottom:199.470000px;}
.yde{bottom:200.010000px;}
.y2f{bottom:207.750000px;}
.ya8{bottom:208.290000px;}
.y5a{bottom:208.650000px;}
.y126{bottom:211.170000px;}
.yfe{bottom:217.110000px;}
.y91{bottom:218.190000px;}
.y86{bottom:220.170000px;}
.y6e{bottom:223.230000px;}
.y2e{bottom:228.450000px;}
.ydd{bottom:230.970000px;}
.y125{bottom:231.870000px;}
.yd3{bottom:238.890000px;}
.ya7{bottom:239.430000px;}
.y59{bottom:239.610000px;}
.y85{bottom:240.870000px;}
.yfd{bottom:248.250000px;}
.y2d{bottom:249.150000px;}
.yc2{bottom:252.570000px;}
.y6d{bottom:254.370000px;}
.y4b{bottom:259.590000px;}
.y84{bottom:261.570000px;}
.ydc{bottom:262.110000px;}
.y2c{bottom:269.850000px;}
.ya6{bottom:270.390000px;}
.y58{bottom:270.750000px;}
.y124{bottom:273.270000px;}
.yfc{bottom:279.210000px;}
.y90{bottom:280.290000px;}
.yc1{bottom:283.530000px;}
.y6c{bottom:285.330000px;}
.y83{bottom:290.010000px;}
.y2b{bottom:290.550000px;}
.ydb{bottom:293.070000px;}
.y123{bottom:293.970000px;}
.yd2{bottom:300.990000px;}
.ya5{bottom:301.530000px;}
.y57{bottom:301.710000px;}
.yfb{bottom:310.350000px;}
.y2a{bottom:311.250000px;}
.yda{bottom:313.050000px;}
.yc0{bottom:314.670000px;}
.y6b{bottom:316.470000px;}
.y82{bottom:318.450000px;}
.y4a{bottom:321.690000px;}
.yea{bottom:324.210000px;}
.yd9{bottom:330.330000px;}
.y29{bottom:331.950000px;}
.ya4{bottom:332.490000px;}
.y56{bottom:332.850000px;}
.y122{bottom:335.370000px;}
.yfa{bottom:341.355000px;}
.y8f{bottom:342.435000px;}
.ybf{bottom:345.675000px;}
.y6a{bottom:347.475000px;}
.yd8{bottom:347.655000px;}
.y81{bottom:349.455000px;}
.y28{bottom:352.695000px;}
.ye9{bottom:355.215000px;}
.y121{bottom:356.115000px;}
.yd1{bottom:363.135000px;}
.ya3{bottom:363.675000px;}
.y55{bottom:363.855000px;}
.yd7{bottom:364.935000px;}
.yf9{bottom:372.495000px;}
.y27{bottom:373.395000px;}
.ybe{bottom:376.815000px;}
.y69{bottom:378.615000px;}
.yd6{bottom:378.795000px;}
.y80{bottom:380.595000px;}
.y49{bottom:383.835000px;}
.ye8{bottom:386.175000px;}
.y26{bottom:394.095000px;}
.ya2{bottom:394.635000px;}
.y54{bottom:394.995000px;}
.ybd{bottom:396.795000px;}
.y120{bottom:397.515000px;}
.yf8{bottom:403.455000px;}
.y8e{bottom:404.535000px;}
.y68{bottom:409.575000px;}
.ybc{bottom:410.835000px;}
.y7f{bottom:411.555000px;}
.y25{bottom:414.795000px;}
.y53{bottom:414.975000px;}
.ye7{bottom:417.315000px;}
.y11f{bottom:418.215000px;}
.yd0{bottom:425.055000px;}
.yb8{bottom:425.235000px;}
.ya1{bottom:425.775000px;}
.y52{bottom:432.255000px;}
.yf7{bottom:434.595000px;}
.y24{bottom:435.495000px;}
.y11e{bottom:438.915000px;}
.y67{bottom:440.715000px;}
.y7e{bottom:442.695000px;}
.y48{bottom:445.755000px;}
.ye6{bottom:448.275000px;}
.y51{bottom:449.355000px;}
.y23{bottom:456.195000px;}
.ya0{bottom:456.735000px;}
.y11d{bottom:459.615000px;}
.y50{bottom:463.395000px;}
.yf6{bottom:465.555000px;}
.y8d{bottom:466.455000px;}
.ye5{bottom:468.255000px;}
.y66{bottom:471.675000px;}
.y7d{bottom:473.655000px;}
.y22{bottom:476.895000px;}
.y9f{bottom:477.435000px;}
.y11c{bottom:480.315000px;}
.ye4{bottom:485.535000px;}
.y130{bottom:487.155000px;}
.yb3{bottom:487.875000px;}
.yf5{bottom:496.695000px;}
.y21{bottom:497.595000px;}
.y9e{bottom:498.135000px;}
.y11b{bottom:501.015000px;}
.y65{bottom:502.815000px;}
.y7c{bottom:504.795000px;}
.y47{bottom:507.855000px;}
.y20{bottom:518.295000px;}
.yb2{bottom:518.835000px;}
.ye3{bottom:520.095000px;}
.y11a{bottom:521.715000px;}
.yf4{bottom:527.655000px;}
.y8c{bottom:528.555000px;}
.y9d{bottom:529.275000px;}
.y64{bottom:533.775000px;}
.ye2{bottom:534.135000px;}
.y7b{bottom:535.755000px;}
.y1f{bottom:538.995000px;}
.y119{bottom:542.415000px;}
.y12f{bottom:549.255000px;}
.y9c{bottom:549.975000px;}
.yf3{bottom:558.795000px;}
.y1e{bottom:559.695000px;}
.y118{bottom:563.115000px;}
.y63{bottom:564.915000px;}
.y9b{bottom:566.715000px;}
.y7a{bottom:566.895000px;}
.y46{bottom:569.955000px;}
.yf2{bottom:579.495000px;}
.y1d{bottom:580.395000px;}
.yb1{bottom:580.935000px;}
.y117{bottom:583.815000px;}
.y62{bottom:585.615000px;}
.ycf{bottom:590.655000px;}
.y79{bottom:597.855000px;}
.yf1{bottom:600.195000px;}
.y1c{bottom:601.095000px;}
.yb0{bottom:601.635000px;}
.y116{bottom:604.545000px;}
.y61{bottom:606.345000px;}
.y12e{bottom:611.385000px;}
.yaf{bottom:618.405000px;}
.y1b{bottom:621.825000px;}
.y115{bottom:625.245000px;}
.y78{bottom:629.025000px;}
.yf0{bottom:631.185000px;}
.y45{bottom:632.085000px;}
.y60{bottom:634.785000px;}
.y1a{bottom:642.525000px;}
.y114{bottom:645.945000px;}
.yef{bottom:651.885000px;}
.yce{bottom:652.785000px;}
.y77{bottom:659.985000px;}
.y19{bottom:663.225000px;}
.y113{bottom:666.645000px;}
.yee{bottom:671.865000px;}
.y103{bottom:673.485000px;}
.y76{bottom:679.965000px;}
.y18{bottom:683.925000px;}
.y112{bottom:687.345000px;}
.yed{bottom:689.145000px;}
.y44{bottom:694.185000px;}
.y75{bottom:697.245000px;}
.y17{bottom:704.625000px;}
.yec{bottom:706.425000px;}
.y111{bottom:708.045000px;}
.y74{bottom:714.525000px;}
.ycd{bottom:714.885000px;}
.yeb{bottom:720.465000px;}
.y16{bottom:725.325000px;}
.y73{bottom:728.565000px;}
.y110{bottom:728.745000px;}
.y12d{bottom:735.585000px;}
.y15{bottom:746.025000px;}
.y10f{bottom:749.445000px;}
.y9a{bottom:750.345000px;}
.y43{bottom:756.285000px;}
.y99{bottom:759.165000px;}
.yae{bottom:762.585000px;}
.y14{bottom:766.725000px;}
.y10e{bottom:770.145000px;}
.yad{bottom:772.845000px;}
.ycc{bottom:776.985000px;}
.y13{bottom:787.425000px;}
.yac{bottom:790.125000px;}
.y10d{bottom:790.845000px;}
.y12c{bottom:797.685000px;}
.y12{bottom:808.125000px;}
.y10c{bottom:811.545000px;}
.y42{bottom:818.385000px;}
.y11{bottom:828.825000px;}
.y10b{bottom:832.245000px;}
.ycb{bottom:839.085000px;}
.ybb{bottom:841.965000px;}
.y10{bottom:849.525000px;}
.yba{bottom:852.225000px;}
.y10a{bottom:852.945000px;}
.y12b{bottom:859.785000px;}
.yf{bottom:870.225000px;}
.y109{bottom:873.690000px;}
.y41{bottom:880.530000px;}
.ye{bottom:890.970000px;}
.y108{bottom:894.390000px;}
.y40{bottom:901.230000px;}
.yd{bottom:911.670000px;}
.y107{bottom:915.090000px;}
.y3f{bottom:921.930000px;}
.yc{bottom:932.370000px;}
.y106{bottom:935.790000px;}
.y3e{bottom:942.630000px;}
.yb{bottom:953.070000px;}
.y105{bottom:956.490000px;}
.y3d{bottom:963.330000px;}
.ya{bottom:973.770000px;}
.y104{bottom:976.470000px;}
.y3c{bottom:984.030000px;}
.y4f{bottom:994.470000px;}
.y9{bottom:995.010000px;}
.y3b{bottom:1004.730000px;}
.yb9{bottom:1011.570000px;}
.y8{bottom:1019.130000px;}
.y3a{bottom:1025.430000px;}
.y5f{bottom:1035.870000px;}
.y7{bottom:1043.250000px;}
.y39{bottom:1046.130000px;}
.y4e{bottom:1056.570000px;}
.y38{bottom:1066.830000px;}
.y6{bottom:1068.270000px;}
.y37{bottom:1087.530000px;}
.y5{bottom:1095.810000px;}
.y5e{bottom:1097.970000px;}
.y36{bottom:1108.230000px;}
.y4{bottom:1123.350000px;}
.y35{bottom:1128.930000px;}
.y2{bottom:1170.180000px;}
.y1{bottom:1191.960000px;}
.h9{height:21.300469px;}
.ha{height:26.858672px;}
.hc{height:34.855313px;}
.hb{height:43.246406px;}
.h8{height:53.573906px;}
.h2{height:59.383125px;}
.hd{height:59.439023px;}
.h6{height:63.949219px;}
.h7{height:64.546875px;}
.h3{height:65.884219px;}
.h5{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.xd{left:87.659987px;}
.x23{left:89.855987px;}
.x6{left:93.095987px;}
.x29{left:94.355987px;}
.x2{left:95.615987px;}
.x16{left:97.055987px;}
.x28{left:99.395987px;}
.x14{left:101.555987px;}
.xf{left:102.635987px;}
.x12{left:111.995987px;}
.x25{left:120.635987px;}
.xa{left:127.475987px;}
.x10{left:139.355987px;}
.x1f{left:150.509987px;}
.x9{left:169.949987px;}
.x3{left:172.649987px;}
.x27{left:174.629987px;}
.x17{left:177.149987px;}
.x1c{left:179.489987px;}
.x4{left:180.569987px;}
.x19{left:228.989987px;}
.x8{left:231.689987px;}
.x1a{left:246.629987px;}
.x15{left:267.509987px;}
.x26{left:292.934987px;}
.x22{left:301.034987px;}
.x21{left:314.894987px;}
.xc{left:323.714987px;}
.x11{left:358.634987px;}
.x7{left:394.274987px;}
.x2a{left:416.774987px;}
.x5{left:446.474987px;}
.x1d{left:478.544973px;}
.x1e{left:484.664987px;}
.x18{left:578.444987px;}
.x20{left:590.324987px;}
.x13{left:719.789987px;}
.x1b{left:729.149987px;}
.x24{left:747.329987px;}
.xe{left:751.289987px;}
.xb{left:758.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls4{letter-spacing:39.808000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-4.032000pt;}
._a{margin-left:-3.013547pt;}
._15{margin-left:-2.098773pt;}
._0{margin-left:-1.181013pt;}
._6{width:1.021440pt;}
._7{width:2.725547pt;}
._12{width:4.160000pt;}
._13{width:5.312000pt;}
._e{width:6.400000pt;}
._f{width:7.290027pt;}
._8{width:8.192000pt;}
._d{width:9.088000pt;}
._14{width:10.106027pt;}
._11{width:11.072000pt;}
._10{width:12.160000pt;}
._b{width:13.120000pt;}
._c{width:14.144000pt;}
._1f{width:15.040000pt;}
._16{width:17.472000pt;}
._1a{width:18.911573pt;}
._17{width:19.840000pt;}
._1b{width:20.791893pt;}
._20{width:22.592000pt;}
._18{width:23.616000pt;}
._19{width:25.216000pt;}
._1e{width:26.176000pt;}
._1c{width:27.072000pt;}
._1d{width:27.973120pt;}
._21{width:29.504000pt;}
._22{width:30.464000pt;}
._26{width:31.524693pt;}
._23{width:34.368000pt;}
._24{width:35.626667pt;}
._25{width:36.730453pt;}
._27{width:41.386667pt;}
._28{width:42.935893pt;}
._4{width:48.133120pt;}
._2e{width:89.728000pt;}
._5{width:92.933120pt;}
._2d{width:121.920000pt;}
._2c{width:123.136000pt;}
._29{width:166.592000pt;}
._2a{width:167.925333pt;}
._2b{width:209.088000pt;}
._2{width:644.939520pt;}
._3{width:1120.399787pt;}
._1{width:1611.253333pt;}
.fs5{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.400000pt;}
.yca{bottom:79.072000pt;}
.y98{bottom:79.392000pt;}
.y93{bottom:83.552000pt;}
.y34{bottom:92.672000pt;}
.yb7{bottom:93.152000pt;}
.y8b{bottom:94.432000pt;}
.yc9{bottom:94.592000pt;}
.y97{bottom:94.752000pt;}
.ye1{bottom:94.912000pt;}
.y102{bottom:100.992000pt;}
.yd5{bottom:101.952000pt;}
.yab{bottom:102.432000pt;}
.y5d{bottom:102.592000pt;}
.y72{bottom:106.432000pt;}
.yc8{bottom:109.952000pt;}
.y96{bottom:110.112000pt;}
.y33{bottom:111.072000pt;}
.y12a{bottom:114.112000pt;}
.y4d{bottom:120.352000pt;}
.yb6{bottom:120.832000pt;}
.y8a{bottom:122.112000pt;}
.ye0{bottom:122.592000pt;}
.yc7{bottom:125.312000pt;}
.y95{bottom:125.472000pt;}
.y101{bottom:128.672000pt;}
.y32{bottom:129.472000pt;}
.yaa{bottom:129.952000pt;}
.y5c{bottom:130.272000pt;}
.y129{bottom:132.512000pt;}
.y71{bottom:134.106667pt;}
.y94{bottom:137.946667pt;}
.y92{bottom:138.746667pt;}
.y89{bottom:140.506667pt;}
.yc6{bottom:140.666667pt;}
.y31{bottom:147.866667pt;}
.yb5{bottom:148.346667pt;}
.ydf{bottom:150.106667pt;}
.y128{bottom:150.906667pt;}
.y70{bottom:152.506667pt;}
.yc5{bottom:156.026667pt;}
.y100{bottom:156.186667pt;}
.yd4{bottom:157.146667pt;}
.ya9{bottom:157.626667pt;}
.y5b{bottom:157.786667pt;}
.y88{bottom:158.906667pt;}
.yc4{bottom:160.666667pt;}
.y30{bottom:166.266667pt;}
.yb4{bottom:166.746667pt;}
.y127{bottom:169.306667pt;}
.y6f{bottom:170.906667pt;}
.yc3{bottom:172.506667pt;}
.yff{bottom:174.586667pt;}
.y4c{bottom:175.546667pt;}
.y87{bottom:177.306667pt;}
.yde{bottom:177.786667pt;}
.y2f{bottom:184.666667pt;}
.ya8{bottom:185.146667pt;}
.y5a{bottom:185.466667pt;}
.y126{bottom:187.706667pt;}
.yfe{bottom:192.986667pt;}
.y91{bottom:193.946667pt;}
.y86{bottom:195.706667pt;}
.y6e{bottom:198.426667pt;}
.y2e{bottom:203.066667pt;}
.ydd{bottom:205.306667pt;}
.y125{bottom:206.106667pt;}
.yd3{bottom:212.346667pt;}
.ya7{bottom:212.826667pt;}
.y59{bottom:212.986667pt;}
.y85{bottom:214.106667pt;}
.yfd{bottom:220.666667pt;}
.y2d{bottom:221.466667pt;}
.yc2{bottom:224.506667pt;}
.y6d{bottom:226.106667pt;}
.y4b{bottom:230.746667pt;}
.y84{bottom:232.506667pt;}
.ydc{bottom:232.986667pt;}
.y2c{bottom:239.866667pt;}
.ya6{bottom:240.346667pt;}
.y58{bottom:240.666667pt;}
.y124{bottom:242.906667pt;}
.yfc{bottom:248.186667pt;}
.y90{bottom:249.146667pt;}
.yc1{bottom:252.026667pt;}
.y6c{bottom:253.626667pt;}
.y83{bottom:257.786667pt;}
.y2b{bottom:258.266667pt;}
.ydb{bottom:260.506667pt;}
.y123{bottom:261.306667pt;}
.yd2{bottom:267.546667pt;}
.ya5{bottom:268.026667pt;}
.y57{bottom:268.186667pt;}
.yfb{bottom:275.866667pt;}
.y2a{bottom:276.666667pt;}
.yda{bottom:278.266667pt;}
.yc0{bottom:279.706667pt;}
.y6b{bottom:281.306667pt;}
.y82{bottom:283.066667pt;}
.y4a{bottom:285.946667pt;}
.yea{bottom:288.186667pt;}
.yd9{bottom:293.626667pt;}
.y29{bottom:295.066667pt;}
.ya4{bottom:295.546667pt;}
.y56{bottom:295.866667pt;}
.y122{bottom:298.106667pt;}
.yfa{bottom:303.426667pt;}
.y8f{bottom:304.386667pt;}
.ybf{bottom:307.266667pt;}
.y6a{bottom:308.866667pt;}
.yd8{bottom:309.026667pt;}
.y81{bottom:310.626667pt;}
.y28{bottom:313.506667pt;}
.ye9{bottom:315.746667pt;}
.y121{bottom:316.546667pt;}
.yd1{bottom:322.786667pt;}
.ya3{bottom:323.266667pt;}
.y55{bottom:323.426667pt;}
.yd7{bottom:324.386667pt;}
.yf9{bottom:331.106667pt;}
.y27{bottom:331.906667pt;}
.ybe{bottom:334.946667pt;}
.y69{bottom:336.546667pt;}
.yd6{bottom:336.706667pt;}
.y80{bottom:338.306667pt;}
.y49{bottom:341.186667pt;}
.ye8{bottom:343.266667pt;}
.y26{bottom:350.306667pt;}
.ya2{bottom:350.786667pt;}
.y54{bottom:351.106667pt;}
.ybd{bottom:352.706667pt;}
.y120{bottom:353.346667pt;}
.yf8{bottom:358.626667pt;}
.y8e{bottom:359.586667pt;}
.y68{bottom:364.066667pt;}
.ybc{bottom:365.186667pt;}
.y7f{bottom:365.826667pt;}
.y25{bottom:368.706667pt;}
.y53{bottom:368.866667pt;}
.ye7{bottom:370.946667pt;}
.y11f{bottom:371.746667pt;}
.yd0{bottom:377.826667pt;}
.yb8{bottom:377.986667pt;}
.ya1{bottom:378.466667pt;}
.y52{bottom:384.226667pt;}
.yf7{bottom:386.306667pt;}
.y24{bottom:387.106667pt;}
.y11e{bottom:390.146667pt;}
.y67{bottom:391.746667pt;}
.y7e{bottom:393.506667pt;}
.y48{bottom:396.226667pt;}
.ye6{bottom:398.466667pt;}
.y51{bottom:399.426667pt;}
.y23{bottom:405.506667pt;}
.ya0{bottom:405.986667pt;}
.y11d{bottom:408.546667pt;}
.y50{bottom:411.906667pt;}
.yf6{bottom:413.826667pt;}
.y8d{bottom:414.626667pt;}
.ye5{bottom:416.226667pt;}
.y66{bottom:419.266667pt;}
.y7d{bottom:421.026667pt;}
.y22{bottom:423.906667pt;}
.y9f{bottom:424.386667pt;}
.y11c{bottom:426.946667pt;}
.ye4{bottom:431.586667pt;}
.y130{bottom:433.026667pt;}
.yb3{bottom:433.666667pt;}
.yf5{bottom:441.506667pt;}
.y21{bottom:442.306667pt;}
.y9e{bottom:442.786667pt;}
.y11b{bottom:445.346667pt;}
.y65{bottom:446.946667pt;}
.y7c{bottom:448.706667pt;}
.y47{bottom:451.426667pt;}
.y20{bottom:460.706667pt;}
.yb2{bottom:461.186667pt;}
.ye3{bottom:462.306667pt;}
.y11a{bottom:463.746667pt;}
.yf4{bottom:469.026667pt;}
.y8c{bottom:469.826667pt;}
.y9d{bottom:470.466667pt;}
.y64{bottom:474.466667pt;}
.ye2{bottom:474.786667pt;}
.y7b{bottom:476.226667pt;}
.y1f{bottom:479.106667pt;}
.y119{bottom:482.146667pt;}
.y12f{bottom:488.226667pt;}
.y9c{bottom:488.866667pt;}
.yf3{bottom:496.706667pt;}
.y1e{bottom:497.506667pt;}
.y118{bottom:500.546667pt;}
.y63{bottom:502.146667pt;}
.y9b{bottom:503.746667pt;}
.y7a{bottom:503.906667pt;}
.y46{bottom:506.626667pt;}
.yf2{bottom:515.106667pt;}
.y1d{bottom:515.906667pt;}
.yb1{bottom:516.386667pt;}
.y117{bottom:518.946667pt;}
.y62{bottom:520.546667pt;}
.ycf{bottom:525.026667pt;}
.y79{bottom:531.426667pt;}
.yf1{bottom:533.506667pt;}
.y1c{bottom:534.306667pt;}
.yb0{bottom:534.786667pt;}
.y116{bottom:537.373333pt;}
.y61{bottom:538.973333pt;}
.y12e{bottom:543.453333pt;}
.yaf{bottom:549.693333pt;}
.y1b{bottom:552.733333pt;}
.y115{bottom:555.773333pt;}
.y78{bottom:559.133333pt;}
.yf0{bottom:561.053333pt;}
.y45{bottom:561.853333pt;}
.y60{bottom:564.253333pt;}
.y1a{bottom:571.133333pt;}
.y114{bottom:574.173333pt;}
.yef{bottom:579.453333pt;}
.yce{bottom:580.253333pt;}
.y77{bottom:586.653333pt;}
.y19{bottom:589.533333pt;}
.y113{bottom:592.573333pt;}
.yee{bottom:597.213333pt;}
.y103{bottom:598.653333pt;}
.y76{bottom:604.413333pt;}
.y18{bottom:607.933333pt;}
.y112{bottom:610.973333pt;}
.yed{bottom:612.573333pt;}
.y44{bottom:617.053333pt;}
.y75{bottom:619.773333pt;}
.y17{bottom:626.333333pt;}
.yec{bottom:627.933333pt;}
.y111{bottom:629.373333pt;}
.y74{bottom:635.133333pt;}
.ycd{bottom:635.453333pt;}
.yeb{bottom:640.413333pt;}
.y16{bottom:644.733333pt;}
.y73{bottom:647.613333pt;}
.y110{bottom:647.773333pt;}
.y12d{bottom:653.853333pt;}
.y15{bottom:663.133333pt;}
.y10f{bottom:666.173333pt;}
.y9a{bottom:666.973333pt;}
.y43{bottom:672.253333pt;}
.y99{bottom:674.813333pt;}
.yae{bottom:677.853333pt;}
.y14{bottom:681.533333pt;}
.y10e{bottom:684.573333pt;}
.yad{bottom:686.973333pt;}
.ycc{bottom:690.653333pt;}
.y13{bottom:699.933333pt;}
.yac{bottom:702.333333pt;}
.y10d{bottom:702.973333pt;}
.y12c{bottom:709.053333pt;}
.y12{bottom:718.333333pt;}
.y10c{bottom:721.373333pt;}
.y42{bottom:727.453333pt;}
.y11{bottom:736.733333pt;}
.y10b{bottom:739.773333pt;}
.ycb{bottom:745.853333pt;}
.ybb{bottom:748.413333pt;}
.y10{bottom:755.133333pt;}
.yba{bottom:757.533333pt;}
.y10a{bottom:758.173333pt;}
.y12b{bottom:764.253333pt;}
.yf{bottom:773.533333pt;}
.y109{bottom:776.613333pt;}
.y41{bottom:782.693333pt;}
.ye{bottom:791.973333pt;}
.y108{bottom:795.013333pt;}
.y40{bottom:801.093333pt;}
.yd{bottom:810.373333pt;}
.y107{bottom:813.413333pt;}
.y3f{bottom:819.493333pt;}
.yc{bottom:828.773333pt;}
.y106{bottom:831.813333pt;}
.y3e{bottom:837.893333pt;}
.yb{bottom:847.173333pt;}
.y105{bottom:850.213333pt;}
.y3d{bottom:856.293333pt;}
.ya{bottom:865.573333pt;}
.y104{bottom:867.973333pt;}
.y3c{bottom:874.693333pt;}
.y4f{bottom:883.973333pt;}
.y9{bottom:884.453333pt;}
.y3b{bottom:893.093333pt;}
.yb9{bottom:899.173333pt;}
.y8{bottom:905.893333pt;}
.y3a{bottom:911.493333pt;}
.y5f{bottom:920.773333pt;}
.y7{bottom:927.333333pt;}
.y39{bottom:929.893333pt;}
.y4e{bottom:939.173333pt;}
.y38{bottom:948.293333pt;}
.y6{bottom:949.573333pt;}
.y37{bottom:966.693333pt;}
.y5{bottom:974.053333pt;}
.y5e{bottom:975.973333pt;}
.y36{bottom:985.093333pt;}
.y4{bottom:998.533333pt;}
.y35{bottom:1003.493333pt;}
.y2{bottom:1040.160000pt;}
.y1{bottom:1059.520000pt;}
.h9{height:18.933750pt;}
.ha{height:23.874375pt;}
.hc{height:30.982500pt;}
.hb{height:38.441250pt;}
.h8{height:47.621250pt;}
.h2{height:52.785000pt;}
.hd{height:52.834688pt;}
.h6{height:56.843750pt;}
.h7{height:57.375000pt;}
.h3{height:58.563750pt;}
.h5{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.xd{left:77.919988pt;}
.x23{left:79.871988pt;}
.x6{left:82.751988pt;}
.x29{left:83.871988pt;}
.x2{left:84.991988pt;}
.x16{left:86.271988pt;}
.x28{left:88.351988pt;}
.x14{left:90.271988pt;}
.xf{left:91.231988pt;}
.x12{left:99.551988pt;}
.x25{left:107.231988pt;}
.xa{left:113.311988pt;}
.x10{left:123.871988pt;}
.x1f{left:133.786655pt;}
.x9{left:151.066655pt;}
.x3{left:153.466655pt;}
.x27{left:155.226655pt;}
.x17{left:157.466655pt;}
.x1c{left:159.546655pt;}
.x4{left:160.506655pt;}
.x19{left:203.546655pt;}
.x8{left:205.946655pt;}
.x1a{left:219.226655pt;}
.x15{left:237.786655pt;}
.x26{left:260.386655pt;}
.x22{left:267.586655pt;}
.x21{left:279.906655pt;}
.xc{left:287.746655pt;}
.x11{left:318.786655pt;}
.x7{left:350.466655pt;}
.x2a{left:370.466655pt;}
.x5{left:396.866655pt;}
.x1d{left:425.373310pt;}
.x1e{left:430.813322pt;}
.x18{left:514.173322pt;}
.x20{left:524.733322pt;}
.x13{left:639.813322pt;}
.x1b{left:648.133322pt;}
.x24{left:664.293322pt;}
.xe{left:667.813322pt;}
.xb{left:674.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  