
    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_585162a4a000127e3bef2a77.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_97d0ac7ae1cf3fa189ca8681.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_40ac1bd3ddfa1e59d03866f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_0fe9a68a13d220fe98e31e1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_44b3b324fb3482ce7209ffc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_d97b040e82bf88fbedc7f08b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_7179016381dc7e3aabaacb17.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1226f73dd1d6f193e57fd918.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_a7d1330fa9a7c4ac8da92d14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_550ea078886b9341861458c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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);}
.v3{vertical-align:-62.640000px;}
.v4{vertical-align:-60.480000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls13{letter-spacing:-5.022000px;}
.ls8{letter-spacing:-4.302000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.143400px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.102000px;}
.ls1b{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.576720px;}
.ls11{letter-spacing:44.748000px;}
.lsb{letter-spacing:49.068000px;}
.lse{letter-spacing:72.108000px;}
.ls14{letter-spacing:72.828000px;}
.ls15{letter-spacing:75.708000px;}
.lsa{letter-spacing:94.644000px;}
.ls18{letter-spacing:114.084000px;}
.lsd{letter-spacing:114.660000px;}
.ls10{letter-spacing:114.804000px;}
.ls1a{letter-spacing:240.732000px;}
.ls12{letter-spacing:242.220000px;}
.ls19{letter-spacing:324.948000px;}
.ls16{letter-spacing:326.460000px;}
.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;}
}
.ws6{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.662000px;}
.wsd{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.248000px;}
.wsf{word-spacing:-13.140000px;}
.wse{word-spacing:-12.906000px;}
.wsc{word-spacing:-12.168000px;}
.ws3{word-spacing:-11.100720px;}
.ws2{word-spacing:-10.998720px;}
.ws1{word-spacing:-10.342080px;}
.ws0{word-spacing:-10.198680px;}
.ws4{word-spacing:-9.360000px;}
.ws5{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-8.484480px;}
._5{margin-left:-7.331520px;}
._2c{margin-left:-6.054000px;}
._3{margin-left:-4.608000px;}
._4{margin-left:-3.528000px;}
._7{margin-left:-2.466000px;}
._0{margin-left:-1.451520px;}
._1{width:1.931520px;}
._2{width:3.306000px;}
._b{width:4.698000px;}
._a{width:6.335520px;}
._c{width:7.560000px;}
._9{width:9.396000px;}
._17{width:10.962000px;}
._f{width:12.312000px;}
._8{width:14.574000px;}
._10{width:16.308000px;}
._1a{width:17.334000px;}
._12{width:19.080000px;}
._13{width:20.124000px;}
._14{width:21.978000px;}
._18{width:23.220000px;}
._d{width:24.948000px;}
._e{width:26.886480px;}
._15{width:28.152000px;}
._16{width:29.525520px;}
._19{width:30.750960px;}
._20{width:32.616000px;}
._1b{width:33.653520px;}
._25{width:35.129040px;}
._11{width:36.396000px;}
._2a{width:38.124000px;}
._28{width:40.289520px;}
._1d{width:41.304480px;}
._1c{width:42.336000px;}
._29{width:43.535520px;}
._21{width:46.728000px;}
._22{width:48.161520px;}
._2b{width:55.512000px;}
._26{width:56.790000px;}
._23{width:58.104000px;}
._1e{width:60.923520px;}
._24{width:63.264000px;}
._1f{width:68.472000px;}
._27{width:106.434000px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs1{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:7.020000px;}
.y5{bottom:20.880000px;}
.y4{bottom:33.840000px;}
.y3{bottom:46.800000px;}
.y9e{bottom:113.760000px;}
.yf6{bottom:113.940000px;}
.y93{bottom:114.300000px;}
.yba{bottom:115.236000px;}
.y9f{bottom:115.416000px;}
.ye4{bottom:119.556000px;}
.y9d{bottom:129.276000px;}
.yf5{bottom:129.636000px;}
.y92{bottom:129.816000px;}
.yb9{bottom:130.716000px;}
.y5f{bottom:130.896000px;}
.ycf{bottom:131.076000px;}
.y46{bottom:133.056000px;}
.ye3{bottom:135.036000px;}
.y9c{bottom:144.936000px;}
.yf4{bottom:145.116000px;}
.y91{bottom:145.296000px;}
.yb8{bottom:146.196000px;}
.yc6{bottom:146.376000px;}
.y5e{bottom:146.556000px;}
.yce{bottom:146.916000px;}
.y45{bottom:148.536000px;}
.ye2{bottom:150.510000px;}
.yb7{bottom:158.430000px;}
.y9b{bottom:160.410000px;}
.yf3{bottom:160.590000px;}
.y90{bottom:160.950000px;}
.y5d{bottom:162.030000px;}
.ycd{bottom:162.390000px;}
.y44{bottom:164.010000px;}
.ye1{bottom:165.990000px;}
.y9a{bottom:172.650000px;}
.yf2{bottom:176.070000px;}
.y8f{bottom:176.430000px;}
.y5c{bottom:177.510000px;}
.ycc{bottom:178.050000px;}
.y43{bottom:179.490000px;}
.ye0{bottom:181.650000px;}
.ycb{bottom:190.290000px;}
.yf1{bottom:191.730000px;}
.y8e{bottom:191.910000px;}
.y5b{bottom:192.990000px;}
.y42{bottom:195.150000px;}
.ydf{bottom:197.130000px;}
.yf0{bottom:207.210000px;}
.y8d{bottom:207.390000px;}
.yc5{bottom:208.470000px;}
.y5a{bottom:208.650000px;}
.y41{bottom:210.630000px;}
.yde{bottom:212.610000px;}
.yef{bottom:222.690000px;}
.y8c{bottom:222.870000px;}
.y59{bottom:224.130000px;}
.y40{bottom:226.110000px;}
.ydd{bottom:228.090000px;}
.yee{bottom:238.170000px;}
.y8b{bottom:238.530000px;}
.y58{bottom:239.610000px;}
.y3f{bottom:241.590000px;}
.ydc{bottom:243.750000px;}
.yed{bottom:253.830000px;}
.y8a{bottom:254.010000px;}
.yc8{bottom:254.730000px;}
.y57{bottom:255.090000px;}
.y3e{bottom:257.250000px;}
.ydb{bottom:259.230000px;}
.yec{bottom:269.310000px;}
.y89{bottom:269.490000px;}
.yc4{bottom:270.570000px;}
.y56{bottom:270.750000px;}
.y3d{bottom:272.730000px;}
.yeb{bottom:284.790000px;}
.y88{bottom:284.970000px;}
.y55{bottom:286.230000px;}
.yda{bottom:287.850000px;}
.y3c{bottom:288.210000px;}
.yea{bottom:300.270000px;}
.y87{bottom:300.630000px;}
.y54{bottom:301.710000px;}
.y3b{bottom:303.690000px;}
.ye9{bottom:315.930000px;}
.y86{bottom:316.110000px;}
.y53{bottom:317.190000px;}
.y3a{bottom:319.350000px;}
.ye8{bottom:331.410000px;}
.y85{bottom:331.590000px;}
.yc3{bottom:332.670000px;}
.y52{bottom:332.850000px;}
.y39{bottom:334.830000px;}
.ye7{bottom:346.890000px;}
.y84{bottom:347.070000px;}
.y51{bottom:348.330000px;}
.y38{bottom:350.310000px;}
.ye6{bottom:362.370000px;}
.y83{bottom:362.730000px;}
.y50{bottom:363.810000px;}
.y37{bottom:365.790000px;}
.y82{bottom:378.255000px;}
.ye5{bottom:378.435000px;}
.y4f{bottom:379.335000px;}
.y36{bottom:381.495000px;}
.y81{bottom:393.735000px;}
.yc2{bottom:394.815000px;}
.y4e{bottom:394.995000px;}
.y35{bottom:396.975000px;}
.y80{bottom:409.215000px;}
.y4d{bottom:410.475000px;}
.y34{bottom:412.455000px;}
.y7f{bottom:424.875000px;}
.y4c{bottom:425.955000px;}
.y33{bottom:427.935000px;}
.y7e{bottom:440.355000px;}
.y4b{bottom:441.435000px;}
.y32{bottom:443.415000px;}
.yca{bottom:446.835000px;}
.y7d{bottom:455.835000px;}
.y4a{bottom:456.915000px;}
.y31{bottom:459.075000px;}
.yc1{bottom:472.395000px;}
.y49{bottom:472.575000px;}
.y30{bottom:474.555000px;}
.y7c{bottom:486.975000px;}
.y48{bottom:488.055000px;}
.yd9{bottom:490.035000px;}
.y7b{bottom:502.455000px;}
.y2f{bottom:503.175000px;}
.y47{bottom:503.535000px;}
.yd8{bottom:505.515000px;}
.y7a{bottom:517.935000px;}
.y2e{bottom:519.015000px;}
.yd7{bottom:521.175000px;}
.y79{bottom:533.415000px;}
.yc0{bottom:534.495000px;}
.y2d{bottom:534.675000px;}
.yd6{bottom:536.655000px;}
.y78{bottom:549.075000px;}
.y2c{bottom:549.795000px;}
.y99{bottom:550.155000px;}
.yd5{bottom:552.135000px;}
.y77{bottom:564.555000px;}
.y2b{bottom:565.635000px;}
.yd4{bottom:567.615000px;}
.y76{bottom:580.035000px;}
.y2a{bottom:581.115000px;}
.yd3{bottom:583.275000px;}
.y75{bottom:595.515000px;}
.ybf{bottom:596.595000px;}
.y29{bottom:596.775000px;}
.yd2{bottom:598.755000px;}
.y74{bottom:611.175000px;}
.y28{bottom:612.255000px;}
.yd1{bottom:614.235000px;}
.y73{bottom:626.685000px;}
.y27{bottom:627.765000px;}
.yb6{bottom:629.745000px;}
.y72{bottom:642.165000px;}
.y26{bottom:643.245000px;}
.yb5{bottom:645.405000px;}
.y71{bottom:657.645000px;}
.ybe{bottom:658.725000px;}
.y25{bottom:658.905000px;}
.yb4{bottom:660.885000px;}
.y70{bottom:673.305000px;}
.y24{bottom:674.385000px;}
.yb3{bottom:676.365000px;}
.y6f{bottom:688.785000px;}
.y23{bottom:689.865000px;}
.yb2{bottom:691.845000px;}
.y6e{bottom:704.265000px;}
.y22{bottom:705.345000px;}
.yb1{bottom:707.505000px;}
.y6d{bottom:719.745000px;}
.ybd{bottom:720.825000px;}
.y21{bottom:721.005000px;}
.yb0{bottom:722.985000px;}
.y6c{bottom:735.225000px;}
.y20{bottom:736.485000px;}
.yaf{bottom:738.465000px;}
.y6b{bottom:750.885000px;}
.y1f{bottom:751.965000px;}
.yae{bottom:753.945000px;}
.y6a{bottom:766.365000px;}
.y1e{bottom:767.445000px;}
.yad{bottom:769.605000px;}
.y69{bottom:781.845000px;}
.ybc{bottom:782.925000px;}
.y1d{bottom:783.105000px;}
.yac{bottom:785.085000px;}
.y1c{bottom:798.585000px;}
.yab{bottom:800.565000px;}
.y68{bottom:810.465000px;}
.y1b{bottom:814.065000px;}
.yaa{bottom:816.045000px;}
.yd0{bottom:829.185000px;}
.y1a{bottom:829.545000px;}
.ya9{bottom:831.705000px;}
.y67{bottom:839.625000px;}
.ybb{bottom:845.025000px;}
.y19{bottom:845.205000px;}
.ya8{bottom:847.185000px;}
.y66{bottom:855.465000px;}
.yc9{bottom:860.325000px;}
.y18{bottom:860.685000px;}
.ya7{bottom:862.665000px;}
.y65{bottom:870.945000px;}
.y17{bottom:875.805000px;}
.y98{bottom:876.165000px;}
.ya6{bottom:878.145000px;}
.y64{bottom:886.470000px;}
.y16{bottom:891.690000px;}
.ya5{bottom:893.850000px;}
.y63{bottom:898.710000px;}
.y15{bottom:907.350000px;}
.ya4{bottom:909.330000px;}
.y14{bottom:922.830000px;}
.ya3{bottom:924.810000px;}
.y13{bottom:938.310000px;}
.ya2{bottom:940.290000px;}
.y12{bottom:953.430000px;}
.y97{bottom:953.790000px;}
.ya1{bottom:955.770000px;}
.yc7{bottom:968.910000px;}
.y11{bottom:969.270000px;}
.y101{bottom:971.430000px;}
.ya0{bottom:984.570000px;}
.y96{bottom:984.930000px;}
.y100{bottom:986.910000px;}
.y10{bottom:989.430000px;}
.yf{bottom:1000.410000px;}
.yff{bottom:1002.390000px;}
.y95{bottom:1015.890000px;}
.yfe{bottom:1017.870000px;}
.ye{bottom:1020.390000px;}
.yd{bottom:1031.370000px;}
.yfd{bottom:1033.530000px;}
.yc{bottom:1047.030000px;}
.yfc{bottom:1049.010000px;}
.yb{bottom:1062.510000px;}
.yfb{bottom:1064.490000px;}
.ya{bottom:1077.990000px;}
.yfa{bottom:1079.970000px;}
.y94{bottom:1093.470000px;}
.y9{bottom:1094.190000px;}
.yf9{bottom:1095.630000px;}
.y62{bottom:1109.130000px;}
.yf8{bottom:1111.110000px;}
.y8{bottom:1114.890000px;}
.y61{bottom:1124.610000px;}
.y7{bottom:1135.590000px;}
.yf7{bottom:1139.760000px;}
.y60{bottom:1140.120000px;}
.y2{bottom:1162.080000px;}
.y1{bottom:1192.500000px;}
.h5{height:33.045469px;}
.h9{height:34.998047px;}
.h6{height:35.143594px;}
.hd{height:44.507812px;}
.hb{height:48.410156px;}
.h7{height:49.605469px;}
.h3{height:52.998047px;}
.hf{height:53.868164px;}
.hc{height:55.503491px;}
.ha{height:56.214844px;}
.h4{height:57.060000px;}
.he{height:70.664062px;}
.h8{height:74.953125px;}
.h1{height:1258.500000px;}
.h2{height:1258.739908px;}
.h0{height:1258.740000px;}
.w3{width:723.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x10{left:94.895987px;}
.x11{left:98.495987px;}
.x4{left:100.295987px;}
.x14{left:111.995987px;}
.x1d{left:117.035987px;}
.x5{left:132.335987px;}
.x13{left:138.995987px;}
.x1e{left:148.895987px;}
.xc{left:180.749987px;}
.x1f{left:196.589987px;}
.xd{left:198.569987px;}
.x27{left:203.069987px;}
.x9{left:205.769987px;}
.x12{left:208.109987px;}
.x26{left:211.169987px;}
.x29{left:213.869987px;}
.xb{left:231.689987px;}
.x3{left:257.835000px;}
.x21{left:259.229987px;}
.x6{left:264.629987px;}
.xa{left:269.849987px;}
.x8{left:272.189987px;}
.x7{left:278.489987px;}
.x20{left:403.634987px;}
.xf{left:432.434987px;}
.x1{left:446.474987px;}
.xe{left:459.254987px;}
.x1a{left:461.234987px;}
.x1b{left:467.354987px;}
.x24{left:473.294987px;}
.x15{left:486.254987px;}
.x18{left:491.294987px;}
.x1c{left:492.374987px;}
.x16{left:513.284987px;}
.x17{left:523.184987px;}
.x28{left:553.964987px;}
.x25{left:608.504987px;}
.x19{left:806.189987px;}
.x22{left:807.989987px;}
.x23{left:810.329987px;}
@media print{
.v3{vertical-align:-55.680000pt;}
.v4{vertical-align:-53.760000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls13{letter-spacing:-4.464000pt;}
.ls8{letter-spacing:-3.824000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.127467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.090667pt;}
.ls1b{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.512640pt;}
.ls11{letter-spacing:39.776000pt;}
.lsb{letter-spacing:43.616000pt;}
.lse{letter-spacing:64.096000pt;}
.ls14{letter-spacing:64.736000pt;}
.ls15{letter-spacing:67.296000pt;}
.lsa{letter-spacing:84.128000pt;}
.ls18{letter-spacing:101.408000pt;}
.lsd{letter-spacing:101.920000pt;}
.ls10{letter-spacing:102.048000pt;}
.ls1a{letter-spacing:213.984000pt;}
.ls12{letter-spacing:215.306667pt;}
.ls19{letter-spacing:288.842667pt;}
.ls16{letter-spacing:290.186667pt;}
.ws6{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.144000pt;}
.wsd{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.776000pt;}
.wsf{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.472000pt;}
.wsc{word-spacing:-10.816000pt;}
.ws3{word-spacing:-9.867307pt;}
.ws2{word-spacing:-9.776640pt;}
.ws1{word-spacing:-9.192960pt;}
.ws0{word-spacing:-9.065493pt;}
.ws4{word-spacing:-8.320000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-7.541760pt;}
._5{margin-left:-6.516907pt;}
._2c{margin-left:-5.381333pt;}
._3{margin-left:-4.096000pt;}
._4{margin-left:-3.136000pt;}
._7{margin-left:-2.192000pt;}
._0{margin-left:-1.290240pt;}
._1{width:1.716907pt;}
._2{width:2.938667pt;}
._b{width:4.176000pt;}
._a{width:5.631573pt;}
._c{width:6.720000pt;}
._9{width:8.352000pt;}
._17{width:9.744000pt;}
._f{width:10.944000pt;}
._8{width:12.954667pt;}
._10{width:14.496000pt;}
._1a{width:15.408000pt;}
._12{width:16.960000pt;}
._13{width:17.888000pt;}
._14{width:19.536000pt;}
._18{width:20.640000pt;}
._d{width:22.176000pt;}
._e{width:23.899093pt;}
._15{width:25.024000pt;}
._16{width:26.244907pt;}
._19{width:27.334187pt;}
._20{width:28.992000pt;}
._1b{width:29.914240pt;}
._25{width:31.225813pt;}
._11{width:32.352000pt;}
._2a{width:33.888000pt;}
._28{width:35.812907pt;}
._1d{width:36.715093pt;}
._1c{width:37.632000pt;}
._29{width:38.698240pt;}
._21{width:41.536000pt;}
._22{width:42.810240pt;}
._2b{width:49.344000pt;}
._26{width:50.480000pt;}
._23{width:51.648000pt;}
._1e{width:54.154240pt;}
._24{width:56.234667pt;}
._1f{width:60.864000pt;}
._27{width:94.608000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:6.240000pt;}
.y5{bottom:18.560000pt;}
.y4{bottom:30.080000pt;}
.y3{bottom:41.600000pt;}
.y9e{bottom:101.120000pt;}
.yf6{bottom:101.280000pt;}
.y93{bottom:101.600000pt;}
.yba{bottom:102.432000pt;}
.y9f{bottom:102.592000pt;}
.ye4{bottom:106.272000pt;}
.y9d{bottom:114.912000pt;}
.yf5{bottom:115.232000pt;}
.y92{bottom:115.392000pt;}
.yb9{bottom:116.192000pt;}
.y5f{bottom:116.352000pt;}
.ycf{bottom:116.512000pt;}
.y46{bottom:118.272000pt;}
.ye3{bottom:120.032000pt;}
.y9c{bottom:128.832000pt;}
.yf4{bottom:128.992000pt;}
.y91{bottom:129.152000pt;}
.yb8{bottom:129.952000pt;}
.yc6{bottom:130.112000pt;}
.y5e{bottom:130.272000pt;}
.yce{bottom:130.592000pt;}
.y45{bottom:132.032000pt;}
.ye2{bottom:133.786667pt;}
.yb7{bottom:140.826667pt;}
.y9b{bottom:142.586667pt;}
.yf3{bottom:142.746667pt;}
.y90{bottom:143.066667pt;}
.y5d{bottom:144.026667pt;}
.ycd{bottom:144.346667pt;}
.y44{bottom:145.786667pt;}
.ye1{bottom:147.546667pt;}
.y9a{bottom:153.466667pt;}
.yf2{bottom:156.506667pt;}
.y8f{bottom:156.826667pt;}
.y5c{bottom:157.786667pt;}
.ycc{bottom:158.266667pt;}
.y43{bottom:159.546667pt;}
.ye0{bottom:161.466667pt;}
.ycb{bottom:169.146667pt;}
.yf1{bottom:170.426667pt;}
.y8e{bottom:170.586667pt;}
.y5b{bottom:171.546667pt;}
.y42{bottom:173.466667pt;}
.ydf{bottom:175.226667pt;}
.yf0{bottom:184.186667pt;}
.y8d{bottom:184.346667pt;}
.yc5{bottom:185.306667pt;}
.y5a{bottom:185.466667pt;}
.y41{bottom:187.226667pt;}
.yde{bottom:188.986667pt;}
.yef{bottom:197.946667pt;}
.y8c{bottom:198.106667pt;}
.y59{bottom:199.226667pt;}
.y40{bottom:200.986667pt;}
.ydd{bottom:202.746667pt;}
.yee{bottom:211.706667pt;}
.y8b{bottom:212.026667pt;}
.y58{bottom:212.986667pt;}
.y3f{bottom:214.746667pt;}
.ydc{bottom:216.666667pt;}
.yed{bottom:225.626667pt;}
.y8a{bottom:225.786667pt;}
.yc8{bottom:226.426667pt;}
.y57{bottom:226.746667pt;}
.y3e{bottom:228.666667pt;}
.ydb{bottom:230.426667pt;}
.yec{bottom:239.386667pt;}
.y89{bottom:239.546667pt;}
.yc4{bottom:240.506667pt;}
.y56{bottom:240.666667pt;}
.y3d{bottom:242.426667pt;}
.yeb{bottom:253.146667pt;}
.y88{bottom:253.306667pt;}
.y55{bottom:254.426667pt;}
.yda{bottom:255.866667pt;}
.y3c{bottom:256.186667pt;}
.yea{bottom:266.906667pt;}
.y87{bottom:267.226667pt;}
.y54{bottom:268.186667pt;}
.y3b{bottom:269.946667pt;}
.ye9{bottom:280.826667pt;}
.y86{bottom:280.986667pt;}
.y53{bottom:281.946667pt;}
.y3a{bottom:283.866667pt;}
.ye8{bottom:294.586667pt;}
.y85{bottom:294.746667pt;}
.yc3{bottom:295.706667pt;}
.y52{bottom:295.866667pt;}
.y39{bottom:297.626667pt;}
.ye7{bottom:308.346667pt;}
.y84{bottom:308.506667pt;}
.y51{bottom:309.626667pt;}
.y38{bottom:311.386667pt;}
.ye6{bottom:322.106667pt;}
.y83{bottom:322.426667pt;}
.y50{bottom:323.386667pt;}
.y37{bottom:325.146667pt;}
.y82{bottom:336.226667pt;}
.ye5{bottom:336.386667pt;}
.y4f{bottom:337.186667pt;}
.y36{bottom:339.106667pt;}
.y81{bottom:349.986667pt;}
.yc2{bottom:350.946667pt;}
.y4e{bottom:351.106667pt;}
.y35{bottom:352.866667pt;}
.y80{bottom:363.746667pt;}
.y4d{bottom:364.866667pt;}
.y34{bottom:366.626667pt;}
.y7f{bottom:377.666667pt;}
.y4c{bottom:378.626667pt;}
.y33{bottom:380.386667pt;}
.y7e{bottom:391.426667pt;}
.y4b{bottom:392.386667pt;}
.y32{bottom:394.146667pt;}
.yca{bottom:397.186667pt;}
.y7d{bottom:405.186667pt;}
.y4a{bottom:406.146667pt;}
.y31{bottom:408.066667pt;}
.yc1{bottom:419.906667pt;}
.y49{bottom:420.066667pt;}
.y30{bottom:421.826667pt;}
.y7c{bottom:432.866667pt;}
.y48{bottom:433.826667pt;}
.yd9{bottom:435.586667pt;}
.y7b{bottom:446.626667pt;}
.y2f{bottom:447.266667pt;}
.y47{bottom:447.586667pt;}
.yd8{bottom:449.346667pt;}
.y7a{bottom:460.386667pt;}
.y2e{bottom:461.346667pt;}
.yd7{bottom:463.266667pt;}
.y79{bottom:474.146667pt;}
.yc0{bottom:475.106667pt;}
.y2d{bottom:475.266667pt;}
.yd6{bottom:477.026667pt;}
.y78{bottom:488.066667pt;}
.y2c{bottom:488.706667pt;}
.y99{bottom:489.026667pt;}
.yd5{bottom:490.786667pt;}
.y77{bottom:501.826667pt;}
.y2b{bottom:502.786667pt;}
.yd4{bottom:504.546667pt;}
.y76{bottom:515.586667pt;}
.y2a{bottom:516.546667pt;}
.yd3{bottom:518.466667pt;}
.y75{bottom:529.346667pt;}
.ybf{bottom:530.306667pt;}
.y29{bottom:530.466667pt;}
.yd2{bottom:532.226667pt;}
.y74{bottom:543.266667pt;}
.y28{bottom:544.226667pt;}
.yd1{bottom:545.986667pt;}
.y73{bottom:557.053333pt;}
.y27{bottom:558.013333pt;}
.yb6{bottom:559.773333pt;}
.y72{bottom:570.813333pt;}
.y26{bottom:571.773333pt;}
.yb5{bottom:573.693333pt;}
.y71{bottom:584.573333pt;}
.ybe{bottom:585.533333pt;}
.y25{bottom:585.693333pt;}
.yb4{bottom:587.453333pt;}
.y70{bottom:598.493333pt;}
.y24{bottom:599.453333pt;}
.yb3{bottom:601.213333pt;}
.y6f{bottom:612.253333pt;}
.y23{bottom:613.213333pt;}
.yb2{bottom:614.973333pt;}
.y6e{bottom:626.013333pt;}
.y22{bottom:626.973333pt;}
.yb1{bottom:628.893333pt;}
.y6d{bottom:639.773333pt;}
.ybd{bottom:640.733333pt;}
.y21{bottom:640.893333pt;}
.yb0{bottom:642.653333pt;}
.y6c{bottom:653.533333pt;}
.y20{bottom:654.653333pt;}
.yaf{bottom:656.413333pt;}
.y6b{bottom:667.453333pt;}
.y1f{bottom:668.413333pt;}
.yae{bottom:670.173333pt;}
.y6a{bottom:681.213333pt;}
.y1e{bottom:682.173333pt;}
.yad{bottom:684.093333pt;}
.y69{bottom:694.973333pt;}
.ybc{bottom:695.933333pt;}
.y1d{bottom:696.093333pt;}
.yac{bottom:697.853333pt;}
.y1c{bottom:709.853333pt;}
.yab{bottom:711.613333pt;}
.y68{bottom:720.413333pt;}
.y1b{bottom:723.613333pt;}
.yaa{bottom:725.373333pt;}
.yd0{bottom:737.053333pt;}
.y1a{bottom:737.373333pt;}
.ya9{bottom:739.293333pt;}
.y67{bottom:746.333333pt;}
.ybb{bottom:751.133333pt;}
.y19{bottom:751.293333pt;}
.ya8{bottom:753.053333pt;}
.y66{bottom:760.413333pt;}
.yc9{bottom:764.733333pt;}
.y18{bottom:765.053333pt;}
.ya7{bottom:766.813333pt;}
.y65{bottom:774.173333pt;}
.y17{bottom:778.493333pt;}
.y98{bottom:778.813333pt;}
.ya6{bottom:780.573333pt;}
.y64{bottom:787.973333pt;}
.y16{bottom:792.613333pt;}
.ya5{bottom:794.533333pt;}
.y63{bottom:798.853333pt;}
.y15{bottom:806.533333pt;}
.ya4{bottom:808.293333pt;}
.y14{bottom:820.293333pt;}
.ya3{bottom:822.053333pt;}
.y13{bottom:834.053333pt;}
.ya2{bottom:835.813333pt;}
.y12{bottom:847.493333pt;}
.y97{bottom:847.813333pt;}
.ya1{bottom:849.573333pt;}
.yc7{bottom:861.253333pt;}
.y11{bottom:861.573333pt;}
.y101{bottom:863.493333pt;}
.ya0{bottom:875.173333pt;}
.y96{bottom:875.493333pt;}
.y100{bottom:877.253333pt;}
.y10{bottom:879.493333pt;}
.yf{bottom:889.253333pt;}
.yff{bottom:891.013333pt;}
.y95{bottom:903.013333pt;}
.yfe{bottom:904.773333pt;}
.ye{bottom:907.013333pt;}
.yd{bottom:916.773333pt;}
.yfd{bottom:918.693333pt;}
.yc{bottom:930.693333pt;}
.yfc{bottom:932.453333pt;}
.yb{bottom:944.453333pt;}
.yfb{bottom:946.213333pt;}
.ya{bottom:958.213333pt;}
.yfa{bottom:959.973333pt;}
.y94{bottom:971.973333pt;}
.y9{bottom:972.613333pt;}
.yf9{bottom:973.893333pt;}
.y62{bottom:985.893333pt;}
.yf8{bottom:987.653333pt;}
.y8{bottom:991.013333pt;}
.y61{bottom:999.653333pt;}
.y7{bottom:1009.413333pt;}
.yf7{bottom:1013.120000pt;}
.y60{bottom:1013.440000pt;}
.y2{bottom:1032.960000pt;}
.y1{bottom:1060.000000pt;}
.h5{height:29.373750pt;}
.h9{height:31.109375pt;}
.h6{height:31.238750pt;}
.hd{height:39.562500pt;}
.hb{height:43.031250pt;}
.h7{height:44.093750pt;}
.h3{height:47.109375pt;}
.hf{height:47.882812pt;}
.hc{height:49.336436pt;}
.ha{height:49.968750pt;}
.h4{height:50.720000pt;}
.he{height:62.812500pt;}
.h8{height:66.625000pt;}
.h1{height:1118.666667pt;}
.h2{height:1118.879919pt;}
.h0{height:1118.880000pt;}
.w3{width:642.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x10{left:84.351988pt;}
.x11{left:87.551988pt;}
.x4{left:89.151988pt;}
.x14{left:99.551988pt;}
.x1d{left:104.031988pt;}
.x5{left:117.631988pt;}
.x13{left:123.551988pt;}
.x1e{left:132.351988pt;}
.xc{left:160.666655pt;}
.x1f{left:174.746655pt;}
.xd{left:176.506655pt;}
.x27{left:180.506655pt;}
.x9{left:182.906655pt;}
.x12{left:184.986655pt;}
.x26{left:187.706655pt;}
.x29{left:190.106655pt;}
.xb{left:205.946655pt;}
.x3{left:229.186667pt;}
.x21{left:230.426655pt;}
.x6{left:235.226655pt;}
.xa{left:239.866655pt;}
.x8{left:241.946655pt;}
.x7{left:247.546655pt;}
.x20{left:358.786655pt;}
.xf{left:384.386655pt;}
.x1{left:396.866655pt;}
.xe{left:408.226655pt;}
.x1a{left:409.986655pt;}
.x1b{left:415.426655pt;}
.x24{left:420.706655pt;}
.x15{left:432.226655pt;}
.x18{left:436.706655pt;}
.x1c{left:437.666655pt;}
.x16{left:456.253322pt;}
.x17{left:465.053322pt;}
.x28{left:492.413322pt;}
.x25{left:540.893322pt;}
.x19{left:716.613322pt;}
.x22{left:718.213322pt;}
.x23{left:720.293322pt;}
}




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