
    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_5b1d6ef20f5941886f799fd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951172;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_ae32cea0c96876a078fc80bf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_59347eec277eec0e0d4c42c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_3c29dba6c6f6fc175e4a732e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.021973;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_16cbf1dd603694aef79f354d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_06ec91130f0768d79d7f5b5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.713867;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_a78f5d0f6b11f054a24cbcc0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c0b6d44e4c61301fc173ef61.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_553d91997067c73c29a48787.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c7fe251eec165d3bd3ade4a6.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v1{vertical-align:52.260000px;}
.lsd{letter-spacing:-0.345600px;}
.ls10{letter-spacing:-0.331200px;}
.ls11{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.115200px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.086400px;}
.ls0{letter-spacing:0.201600px;}
.ls1{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.316800px;}
.ls17{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.388800px;}
.lse{letter-spacing:0.532800px;}
.ls12{letter-spacing:0.561600px;}
.lsc{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.606000px;}
.ls19{letter-spacing:0.792000px;}
.ls8{letter-spacing:1.038000px;}
.ls14{letter-spacing:1.188000px;}
.ls16{letter-spacing:35.226720px;}
.lsb{letter-spacing:64.170720px;}
.ls7{letter-spacing:172.140000px;}
.lsa{letter-spacing:193.420800px;}
.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;}
}
.ws1{word-spacing:-60.120000px;}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-22.723200px;}
.ws15{word-spacing:-19.915200px;}
.ws14{word-spacing:-19.729200px;}
.ws10{word-spacing:-19.684800px;}
.wsc{word-spacing:-19.656000px;}
.wsd{word-spacing:-19.512000px;}
.ws16{word-spacing:-19.454400px;}
.wsa{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.195200px;}
.ws11{word-spacing:-19.123200px;}
.ws12{word-spacing:-19.008000px;}
.wsf{word-spacing:-18.835200px;}
.wse{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.777600px;}
.ws8{word-spacing:-18.000000px;}
.ws4{word-spacing:-10.902240px;}
.ws6{word-spacing:-0.358560px;}
.ws13{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:110.940240px;}
.ws5{word-spacing:312.394320px;}
._16{margin-left:-3.600000px;}
._0{margin-left:-1.126080px;}
._1{width:1.093440px;}
._2{width:2.094720px;}
._7{width:4.053600px;}
._8{width:5.448240px;}
._3{width:6.513840px;}
._4{width:7.614720px;}
._c{width:9.382320px;}
._b{width:10.816560px;}
._f{width:11.918640px;}
._a{width:13.425600px;}
._9{width:14.558400px;}
._14{width:16.287360px;}
._13{width:17.928000px;}
._10{width:20.360400px;}
._12{width:21.725520px;}
._11{width:23.306400px;}
._1a{width:25.338240px;}
._1b{width:26.699760px;}
._5{width:27.788400px;}
._6{width:28.986960px;}
._17{width:31.971600px;}
._1d{width:33.585120px;}
._1c{width:34.660800px;}
._18{width:36.025200px;}
._19{width:37.264320px;}
._d{width:38.407920px;}
._1e{width:48.823920px;}
._1f{width:63.943200px;}
._15{width:126.300000px;}
._e{width:193.420800px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.960000px;}
.y6{bottom:4.500000px;}
.y6f{bottom:9.870000px;}
.y74{bottom:9.900000px;}
.y6d{bottom:9.930000px;}
.y77{bottom:9.975000px;}
.y71{bottom:10.005000px;}
.y55{bottom:12.345000px;}
.y6b{bottom:19.512000px;}
.y4{bottom:25.380000px;}
.y54{bottom:25.665000px;}
.y57{bottom:37.875000px;}
.y5d{bottom:47.016000px;}
.y56{bottom:51.195000px;}
.ycb{bottom:57.420000px;}
.y35{bottom:69.840000px;}
.y5e{bottom:71.100000px;}
.yca{bottom:75.060000px;}
.yaa{bottom:77.040000px;}
.y4c{bottom:84.060000px;}
.y34{bottom:87.480000px;}
.y53{bottom:91.335000px;}
.yc9{bottom:92.700000px;}
.ya9{bottom:94.680000px;}
.y5f{bottom:95.145000px;}
.y4b{bottom:98.316000px;}
.y5c{bottom:98.640000px;}
.yf2{bottom:102.276000px;}
.y33{bottom:105.156000px;}
.yc8{bottom:110.376000px;}
.ya8{bottom:112.356000px;}
.y63{bottom:116.460000px;}
.y60{bottom:119.235000px;}
.yf1{bottom:119.736000px;}
.y32{bottom:122.616000px;}
.yc7{bottom:128.016000px;}
.y7e{bottom:129.495000px;}
.ya7{bottom:129.996000px;}
.yf0{bottom:137.376000px;}
.y31{bottom:140.256000px;}
.y65{bottom:140.580000px;}
.y6c{bottom:142.740000px;}
.y61{bottom:143.280000px;}
.yc6{bottom:145.476000px;}
.ya6{bottom:147.456000px;}
.y59{bottom:148.650000px;}
.y7d{bottom:150.195000px;}
.yef{bottom:155.010000px;}
.y30{bottom:157.890000px;}
.y52{bottom:158.835000px;}
.y58{bottom:161.970000px;}
.yc5{bottom:163.110000px;}
.y67{bottom:164.700000px;}
.ya5{bottom:165.090000px;}
.y6e{bottom:166.860000px;}
.y62{bottom:167.370000px;}
.y7c{bottom:170.895000px;}
.y51{bottom:172.155000px;}
.yee{bottom:172.650000px;}
.y68{bottom:173.520000px;}
.y66{bottom:173.550000px;}
.y64{bottom:173.595000px;}
.y6a{bottom:173.625000px;}
.y2f{bottom:175.530000px;}
.yc4{bottom:180.750000px;}
.ya4{bottom:182.730000px;}
.y69{bottom:188.640000px;}
.yed{bottom:190.290000px;}
.y70{bottom:190.800000px;}
.y2e{bottom:193.170000px;}
.yc3{bottom:198.390000px;}
.ya3{bottom:200.370000px;}
.yec{bottom:207.750000px;}
.y2d{bottom:210.810000px;}
.y72{bottom:214.920000px;}
.yc2{bottom:216.030000px;}
.ya2{bottom:218.010000px;}
.yeb{bottom:225.390000px;}
.y2c{bottom:228.270000px;}
.yc1{bottom:233.670000px;}
.ya1{bottom:235.470000px;}
.y73{bottom:239.040000px;}
.yea{bottom:243.030000px;}
.y2b{bottom:245.910000px;}
.yc0{bottom:251.130000px;}
.ya0{bottom:253.110000px;}
.y5b{bottom:254.415000px;}
.y50{bottom:260.280000px;}
.ye9{bottom:260.670000px;}
.y75{bottom:262.980000px;}
.y2a{bottom:263.550000px;}
.y5a{bottom:267.735000px;}
.ybf{bottom:268.770000px;}
.y9f{bottom:270.750000px;}
.y4f{bottom:273.600000px;}
.ye8{bottom:278.310000px;}
.y7b{bottom:279.540000px;}
.y29{bottom:281.190000px;}
.ybe{bottom:286.230000px;}
.y76{bottom:287.100000px;}
.y9e{bottom:288.390000px;}
.ye7{bottom:295.950000px;}
.y28{bottom:298.830000px;}
.ybd{bottom:304.950000px;}
.y9d{bottom:305.850000px;}
.y78{bottom:311.220000px;}
.ye6{bottom:313.410000px;}
.y4e{bottom:313.590000px;}
.y27{bottom:316.290000px;}
.ybc{bottom:322.590000px;}
.y9c{bottom:324.390000px;}
.ye5{bottom:331.050000px;}
.y26{bottom:333.930000px;}
.y79{bottom:335.340000px;}
.ybb{bottom:340.230000px;}
.y9b{bottom:343.110000px;}
.ye4{bottom:348.690000px;}
.y25{bottom:351.570000px;}
.yba{bottom:357.735000px;}
.y7a{bottom:359.280000px;}
.y9a{bottom:360.795000px;}
.ye3{bottom:366.375000px;}
.y24{bottom:369.255000px;}
.yb9{bottom:376.275000px;}
.y99{bottom:378.255000px;}
.y23{bottom:383.295000px;}
.ye2{bottom:384.015000px;}
.yb8{bottom:393.915000px;}
.y98{bottom:395.895000px;}
.ye1{bottom:401.475000px;}
.yb7{bottom:411.555000px;}
.y97{bottom:413.355000px;}
.ye0{bottom:419.115000px;}
.yb6{bottom:429.015000px;}
.y96{bottom:432.075000px;}
.ydf{bottom:436.755000px;}
.yb5{bottom:447.735000px;}
.y95{bottom:449.715000px;}
.yde{bottom:454.395000px;}
.yb4{bottom:465.375000px;}
.y94{bottom:467.355000px;}
.ydd{bottom:472.035000px;}
.yb3{bottom:483.195000px;}
.y4a{bottom:484.455000px;}
.y93{bottom:484.815000px;}
.ydc{bottom:489.675000px;}
.y49{bottom:498.495000px;}
.y4d{bottom:498.600000px;}
.yb2{bottom:500.475000px;}
.y92{bottom:503.535000px;}
.ydb{bottom:507.135000px;}
.yb1{bottom:519.015000px;}
.y91{bottom:520.995000px;}
.yda{bottom:524.775000px;}
.yb0{bottom:536.655000px;}
.y90{bottom:538.635000px;}
.yd9{bottom:542.415000px;}
.yaf{bottom:554.295000px;}
.y8f{bottom:556.095000px;}
.yd8{bottom:560.055000px;}
.yae{bottom:571.755000px;}
.y8e{bottom:574.815000px;}
.yd7{bottom:577.695000px;}
.yad{bottom:590.475000px;}
.y8d{bottom:592.455000px;}
.yd6{bottom:595.155000px;}
.yac{bottom:604.515000px;}
.y8c{bottom:610.095000px;}
.yd5{bottom:612.795000px;}
.y8b{bottom:627.585000px;}
.yd4{bottom:630.465000px;}
.y8a{bottom:646.305000px;}
.yd3{bottom:648.105000px;}
.y89{bottom:663.765000px;}
.yf3{bottom:665.745000px;}
.yd2{bottom:665.925000px;}
.y22{bottom:669.705000px;}
.y88{bottom:681.405000px;}
.yd1{bottom:683.385000px;}
.y21{bottom:687.345000px;}
.y87{bottom:698.865000px;}
.yd0{bottom:700.845000px;}
.y20{bottom:704.985000px;}
.y86{bottom:717.585000px;}
.ycf{bottom:718.485000px;}
.y1f{bottom:722.625000px;}
.y85{bottom:735.225000px;}
.yce{bottom:736.125000px;}
.y1e{bottom:740.265000px;}
.y84{bottom:752.865000px;}
.ycd{bottom:753.765000px;}
.y1d{bottom:757.725000px;}
.y83{bottom:770.325000px;}
.ycc{bottom:771.405000px;}
.y1c{bottom:775.545000px;}
.y82{bottom:788.865000px;}
.y1b{bottom:793.005000px;}
.y81{bottom:806.505000px;}
.y1a{bottom:810.645000px;}
.y80{bottom:824.145000px;}
.y19{bottom:828.285000px;}
.y48{bottom:841.785000px;}
.y18{bottom:845.925000px;}
.y47{bottom:859.425000px;}
.y17{bottom:863.385000px;}
.y46{bottom:877.110000px;}
.y16{bottom:881.070000px;}
.y45{bottom:894.570000px;}
.y15{bottom:898.710000px;}
.y44{bottom:912.210000px;}
.y14{bottom:917.070000px;}
.y43{bottom:929.850000px;}
.y13{bottom:934.710000px;}
.y42{bottom:947.490000px;}
.y12{bottom:952.170000px;}
.y41{bottom:965.130000px;}
.y11{bottom:969.810000px;}
.y7f{bottom:982.770000px;}
.y40{bottom:982.950000px;}
.y10{bottom:987.450000px;}
.y3f{bottom:1000.230000px;}
.yf{bottom:1005.090000px;}
.y3e{bottom:1017.870000px;}
.ye{bottom:1022.550000px;}
.y3d{bottom:1035.510000px;}
.yd{bottom:1042.530000px;}
.y3c{bottom:1053.150000px;}
.yc{bottom:1060.170000px;}
.y3b{bottom:1070.790000px;}
.yab{bottom:1072.230000px;}
.yb{bottom:1077.810000px;}
.y3a{bottom:1088.250000px;}
.ya{bottom:1095.450000px;}
.y39{bottom:1105.890000px;}
.y9{bottom:1113.630000px;}
.y38{bottom:1123.530000px;}
.y8{bottom:1134.720000px;}
.y37{bottom:1141.200000px;}
.y7{bottom:1155.960000px;}
.y36{bottom:1158.840000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1215.360000px;}
.h4{height:19.440000px;}
.h18{height:24.120000px;}
.h9{height:42.806602px;}
.h8{height:43.040039px;}
.h7{height:47.271094px;}
.h2{height:47.707031px;}
.hc{height:47.980898px;}
.hb{height:49.394180px;}
.h6{height:51.855469px;}
.hf{height:58.651172px;}
.h1a{height:61.423863px;}
.he{height:63.540000px;}
.h5{height:65.884219px;}
.h3{height:67.824844px;}
.h19{height:72.562500px;}
.h10{height:87.480000px;}
.hd{height:101.654180px;}
.h11{height:111.600000px;}
.h12{height:135.720000px;}
.h13{height:159.660000px;}
.h14{height:183.780000px;}
.h16{height:189.900000px;}
.h15{height:190.080000px;}
.ha{height:339.660000px;}
.h17{height:379.980000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w8{width:47.160000px;}
.w6{width:50.940000px;}
.w3{width:61.236000px;}
.w9{width:392.580000px;}
.w7{width:439.740000px;}
.w2{width:734.910000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x7{left:14.220000px;}
.x2f{left:31.395000px;}
.x4{left:48.420000px;}
.x8{left:54.000000px;}
.x2c{left:56.085000px;}
.x34{left:81.000000px;}
.x11{left:108.036000px;}
.x2b{left:118.800000px;}
.x31{left:122.835000px;}
.x2d{left:126.720000px;}
.x2e{left:142.380000px;}
.x10{left:158.610000px;}
.x30{left:170.205000px;}
.x1{left:192.810000px;}
.xe{left:196.770000px;}
.xc{left:207.930000px;}
.x24{left:224.640000px;}
.x9{left:228.090000px;}
.xa{left:236.550000px;}
.x25{left:252.720000px;}
.x3{left:260.490000px;}
.x20{left:266.970000px;}
.x21{left:277.590000px;}
.x22{left:293.295000px;}
.x26{left:294.660000px;}
.x23{left:313.455000px;}
.xd{left:314.715000px;}
.x1e{left:318.600000px;}
.x1f{left:319.680000px;}
.xb{left:324.075000px;}
.xf{left:330.735000px;}
.x27{left:343.260000px;}
.x2{left:347.295000px;}
.x28{left:400.680000px;}
.x16{left:409.290000px;}
.x19{left:419.970000px;}
.x1a{left:423.570000px;}
.x14{left:446.475000px;}
.x1c{left:447.765000px;}
.x29{left:449.460000px;}
.x1d{left:458.925000px;}
.x2a{left:490.140000px;}
.x1b{left:536.550000px;}
.x18{left:545.730000px;}
.x33{left:552.345000px;}
.x17{left:561.930000px;}
.x32{left:638.430000px;}
.x12{left:695.130000px;}
.x35{left:746.430000px;}
.x36{left:752.550000px;}
.x15{left:776.490000px;}
.x6{left:783.330000px;}
.x13{left:814.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:46.453333pt;}
.lsd{letter-spacing:-0.307200pt;}
.ls10{letter-spacing:-0.294400pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.102400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.076800pt;}
.ls0{letter-spacing:0.179200pt;}
.ls1{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.281600pt;}
.ls17{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.345600pt;}
.lse{letter-spacing:0.473600pt;}
.ls12{letter-spacing:0.499200pt;}
.lsc{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.538667pt;}
.ls19{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.922667pt;}
.ls14{letter-spacing:1.056000pt;}
.ls16{letter-spacing:31.312640pt;}
.lsb{letter-spacing:57.040640pt;}
.ls7{letter-spacing:153.013333pt;}
.lsa{letter-spacing:171.929600pt;}
.ws1{word-spacing:-53.440000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-20.198400pt;}
.ws15{word-spacing:-17.702400pt;}
.ws14{word-spacing:-17.537067pt;}
.ws10{word-spacing:-17.497600pt;}
.wsc{word-spacing:-17.472000pt;}
.wsd{word-spacing:-17.344000pt;}
.ws16{word-spacing:-17.292800pt;}
.wsa{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.062400pt;}
.ws11{word-spacing:-16.998400pt;}
.ws12{word-spacing:-16.896000pt;}
.wsf{word-spacing:-16.742400pt;}
.wse{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.691200pt;}
.ws8{word-spacing:-16.000000pt;}
.ws4{word-spacing:-9.690880pt;}
.ws6{word-spacing:-0.318720pt;}
.ws13{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:98.613547pt;}
.ws5{word-spacing:277.683840pt;}
._16{margin-left:-3.200000pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.971947pt;}
._2{width:1.861973pt;}
._7{width:3.603200pt;}
._8{width:4.842880pt;}
._3{width:5.790080pt;}
._4{width:6.768640pt;}
._c{width:8.339840pt;}
._b{width:9.614720pt;}
._f{width:10.594347pt;}
._a{width:11.933867pt;}
._9{width:12.940800pt;}
._14{width:14.477653pt;}
._13{width:15.936000pt;}
._10{width:18.098133pt;}
._12{width:19.311573pt;}
._11{width:20.716800pt;}
._1a{width:22.522880pt;}
._1b{width:23.733120pt;}
._5{width:24.700800pt;}
._6{width:25.766187pt;}
._17{width:28.419200pt;}
._1d{width:29.853440pt;}
._1c{width:30.809600pt;}
._18{width:32.022400pt;}
._19{width:33.123840pt;}
._d{width:34.140373pt;}
._1e{width:43.399040pt;}
._1f{width:56.838400pt;}
._15{width:112.266667pt;}
._e{width:171.929600pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.520000pt;}
.y6{bottom:4.000000pt;}
.y6f{bottom:8.773333pt;}
.y74{bottom:8.800000pt;}
.y6d{bottom:8.826667pt;}
.y77{bottom:8.866667pt;}
.y71{bottom:8.893333pt;}
.y55{bottom:10.973333pt;}
.y6b{bottom:17.344000pt;}
.y4{bottom:22.560000pt;}
.y54{bottom:22.813333pt;}
.y57{bottom:33.666667pt;}
.y5d{bottom:41.792000pt;}
.y56{bottom:45.506667pt;}
.ycb{bottom:51.040000pt;}
.y35{bottom:62.080000pt;}
.y5e{bottom:63.200000pt;}
.yca{bottom:66.720000pt;}
.yaa{bottom:68.480000pt;}
.y4c{bottom:74.720000pt;}
.y34{bottom:77.760000pt;}
.y53{bottom:81.186667pt;}
.yc9{bottom:82.400000pt;}
.ya9{bottom:84.160000pt;}
.y5f{bottom:84.573333pt;}
.y4b{bottom:87.392000pt;}
.y5c{bottom:87.680000pt;}
.yf2{bottom:90.912000pt;}
.y33{bottom:93.472000pt;}
.yc8{bottom:98.112000pt;}
.ya8{bottom:99.872000pt;}
.y63{bottom:103.520000pt;}
.y60{bottom:105.986667pt;}
.yf1{bottom:106.432000pt;}
.y32{bottom:108.992000pt;}
.yc7{bottom:113.792000pt;}
.y7e{bottom:115.106667pt;}
.ya7{bottom:115.552000pt;}
.yf0{bottom:122.112000pt;}
.y31{bottom:124.672000pt;}
.y65{bottom:124.960000pt;}
.y6c{bottom:126.880000pt;}
.y61{bottom:127.360000pt;}
.yc6{bottom:129.312000pt;}
.ya6{bottom:131.072000pt;}
.y59{bottom:132.133333pt;}
.y7d{bottom:133.506667pt;}
.yef{bottom:137.786667pt;}
.y30{bottom:140.346667pt;}
.y52{bottom:141.186667pt;}
.y58{bottom:143.973333pt;}
.yc5{bottom:144.986667pt;}
.y67{bottom:146.400000pt;}
.ya5{bottom:146.746667pt;}
.y6e{bottom:148.320000pt;}
.y62{bottom:148.773333pt;}
.y7c{bottom:151.906667pt;}
.y51{bottom:153.026667pt;}
.yee{bottom:153.466667pt;}
.y68{bottom:154.240000pt;}
.y66{bottom:154.266667pt;}
.y64{bottom:154.306667pt;}
.y6a{bottom:154.333333pt;}
.y2f{bottom:156.026667pt;}
.yc4{bottom:160.666667pt;}
.ya4{bottom:162.426667pt;}
.y69{bottom:167.680000pt;}
.yed{bottom:169.146667pt;}
.y70{bottom:169.600000pt;}
.y2e{bottom:171.706667pt;}
.yc3{bottom:176.346667pt;}
.ya3{bottom:178.106667pt;}
.yec{bottom:184.666667pt;}
.y2d{bottom:187.386667pt;}
.y72{bottom:191.040000pt;}
.yc2{bottom:192.026667pt;}
.ya2{bottom:193.786667pt;}
.yeb{bottom:200.346667pt;}
.y2c{bottom:202.906667pt;}
.yc1{bottom:207.706667pt;}
.ya1{bottom:209.306667pt;}
.y73{bottom:212.480000pt;}
.yea{bottom:216.026667pt;}
.y2b{bottom:218.586667pt;}
.yc0{bottom:223.226667pt;}
.ya0{bottom:224.986667pt;}
.y5b{bottom:226.146667pt;}
.y50{bottom:231.360000pt;}
.ye9{bottom:231.706667pt;}
.y75{bottom:233.760000pt;}
.y2a{bottom:234.266667pt;}
.y5a{bottom:237.986667pt;}
.ybf{bottom:238.906667pt;}
.y9f{bottom:240.666667pt;}
.y4f{bottom:243.200000pt;}
.ye8{bottom:247.386667pt;}
.y7b{bottom:248.480000pt;}
.y29{bottom:249.946667pt;}
.ybe{bottom:254.426667pt;}
.y76{bottom:255.200000pt;}
.y9e{bottom:256.346667pt;}
.ye7{bottom:263.066667pt;}
.y28{bottom:265.626667pt;}
.ybd{bottom:271.066667pt;}
.y9d{bottom:271.866667pt;}
.y78{bottom:276.640000pt;}
.ye6{bottom:278.586667pt;}
.y4e{bottom:278.746667pt;}
.y27{bottom:281.146667pt;}
.ybc{bottom:286.746667pt;}
.y9c{bottom:288.346667pt;}
.ye5{bottom:294.266667pt;}
.y26{bottom:296.826667pt;}
.y79{bottom:298.080000pt;}
.ybb{bottom:302.426667pt;}
.y9b{bottom:304.986667pt;}
.ye4{bottom:309.946667pt;}
.y25{bottom:312.506667pt;}
.yba{bottom:317.986667pt;}
.y7a{bottom:319.360000pt;}
.y9a{bottom:320.706667pt;}
.ye3{bottom:325.666667pt;}
.y24{bottom:328.226667pt;}
.yb9{bottom:334.466667pt;}
.y99{bottom:336.226667pt;}
.y23{bottom:340.706667pt;}
.ye2{bottom:341.346667pt;}
.yb8{bottom:350.146667pt;}
.y98{bottom:351.906667pt;}
.ye1{bottom:356.866667pt;}
.yb7{bottom:365.826667pt;}
.y97{bottom:367.426667pt;}
.ye0{bottom:372.546667pt;}
.yb6{bottom:381.346667pt;}
.y96{bottom:384.066667pt;}
.ydf{bottom:388.226667pt;}
.yb5{bottom:397.986667pt;}
.y95{bottom:399.746667pt;}
.yde{bottom:403.906667pt;}
.yb4{bottom:413.666667pt;}
.y94{bottom:415.426667pt;}
.ydd{bottom:419.586667pt;}
.yb3{bottom:429.506667pt;}
.y4a{bottom:430.626667pt;}
.y93{bottom:430.946667pt;}
.ydc{bottom:435.266667pt;}
.y49{bottom:443.106667pt;}
.y4d{bottom:443.200000pt;}
.yb2{bottom:444.866667pt;}
.y92{bottom:447.586667pt;}
.ydb{bottom:450.786667pt;}
.yb1{bottom:461.346667pt;}
.y91{bottom:463.106667pt;}
.yda{bottom:466.466667pt;}
.yb0{bottom:477.026667pt;}
.y90{bottom:478.786667pt;}
.yd9{bottom:482.146667pt;}
.yaf{bottom:492.706667pt;}
.y8f{bottom:494.306667pt;}
.yd8{bottom:497.826667pt;}
.yae{bottom:508.226667pt;}
.y8e{bottom:510.946667pt;}
.yd7{bottom:513.506667pt;}
.yad{bottom:524.866667pt;}
.y8d{bottom:526.626667pt;}
.yd6{bottom:529.026667pt;}
.yac{bottom:537.346667pt;}
.y8c{bottom:542.306667pt;}
.yd5{bottom:544.706667pt;}
.y8b{bottom:557.853333pt;}
.yd4{bottom:560.413333pt;}
.y8a{bottom:574.493333pt;}
.yd3{bottom:576.093333pt;}
.y89{bottom:590.013333pt;}
.yf3{bottom:591.773333pt;}
.yd2{bottom:591.933333pt;}
.y22{bottom:595.293333pt;}
.y88{bottom:605.693333pt;}
.yd1{bottom:607.453333pt;}
.y21{bottom:610.973333pt;}
.y87{bottom:621.213333pt;}
.yd0{bottom:622.973333pt;}
.y20{bottom:626.653333pt;}
.y86{bottom:637.853333pt;}
.ycf{bottom:638.653333pt;}
.y1f{bottom:642.333333pt;}
.y85{bottom:653.533333pt;}
.yce{bottom:654.333333pt;}
.y1e{bottom:658.013333pt;}
.y84{bottom:669.213333pt;}
.ycd{bottom:670.013333pt;}
.y1d{bottom:673.533333pt;}
.y83{bottom:684.733333pt;}
.ycc{bottom:685.693333pt;}
.y1c{bottom:689.373333pt;}
.y82{bottom:701.213333pt;}
.y1b{bottom:704.893333pt;}
.y81{bottom:716.893333pt;}
.y1a{bottom:720.573333pt;}
.y80{bottom:732.573333pt;}
.y19{bottom:736.253333pt;}
.y48{bottom:748.253333pt;}
.y18{bottom:751.933333pt;}
.y47{bottom:763.933333pt;}
.y17{bottom:767.453333pt;}
.y46{bottom:779.653333pt;}
.y16{bottom:783.173333pt;}
.y45{bottom:795.173333pt;}
.y15{bottom:798.853333pt;}
.y44{bottom:810.853333pt;}
.y14{bottom:815.173333pt;}
.y43{bottom:826.533333pt;}
.y13{bottom:830.853333pt;}
.y42{bottom:842.213333pt;}
.y12{bottom:846.373333pt;}
.y41{bottom:857.893333pt;}
.y11{bottom:862.053333pt;}
.y7f{bottom:873.573333pt;}
.y40{bottom:873.733333pt;}
.y10{bottom:877.733333pt;}
.y3f{bottom:889.093333pt;}
.yf{bottom:893.413333pt;}
.y3e{bottom:904.773333pt;}
.ye{bottom:908.933333pt;}
.y3d{bottom:920.453333pt;}
.yd{bottom:926.693333pt;}
.y3c{bottom:936.133333pt;}
.yc{bottom:942.373333pt;}
.y3b{bottom:951.813333pt;}
.yab{bottom:953.093333pt;}
.yb{bottom:958.053333pt;}
.y3a{bottom:967.333333pt;}
.ya{bottom:973.733333pt;}
.y39{bottom:983.013333pt;}
.y9{bottom:989.893333pt;}
.y38{bottom:998.693333pt;}
.y8{bottom:1008.640000pt;}
.y37{bottom:1014.400000pt;}
.y7{bottom:1027.520000pt;}
.y36{bottom:1030.080000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1080.320000pt;}
.h4{height:17.280000pt;}
.h18{height:21.440000pt;}
.h9{height:38.050313pt;}
.h8{height:38.257813pt;}
.h7{height:42.018750pt;}
.h2{height:42.406250pt;}
.hc{height:42.649687pt;}
.hb{height:43.905937pt;}
.h6{height:46.093750pt;}
.hf{height:52.134375pt;}
.h1a{height:54.598989pt;}
.he{height:56.480000pt;}
.h5{height:58.563750pt;}
.h3{height:60.288750pt;}
.h19{height:64.500000pt;}
.h10{height:77.760000pt;}
.hd{height:90.359271pt;}
.h11{height:99.200000pt;}
.h12{height:120.640000pt;}
.h13{height:141.920000pt;}
.h14{height:163.360000pt;}
.h16{height:168.800000pt;}
.h15{height:168.960000pt;}
.ha{height:301.920000pt;}
.h17{height:337.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w8{width:41.920000pt;}
.w6{width:45.280000pt;}
.w3{width:54.432000pt;}
.w9{width:348.960000pt;}
.w7{width:390.880000pt;}
.w2{width:653.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x7{left:12.640000pt;}
.x2f{left:27.906667pt;}
.x4{left:43.040000pt;}
.x8{left:48.000000pt;}
.x2c{left:49.853333pt;}
.x34{left:72.000000pt;}
.x11{left:96.032000pt;}
.x2b{left:105.600000pt;}
.x31{left:109.186667pt;}
.x2d{left:112.640000pt;}
.x2e{left:126.560000pt;}
.x10{left:140.986667pt;}
.x30{left:151.293333pt;}
.x1{left:171.386667pt;}
.xe{left:174.906667pt;}
.xc{left:184.826667pt;}
.x24{left:199.680000pt;}
.x9{left:202.746667pt;}
.xa{left:210.266667pt;}
.x25{left:224.640000pt;}
.x3{left:231.546667pt;}
.x20{left:237.306667pt;}
.x21{left:246.746667pt;}
.x22{left:260.706667pt;}
.x26{left:261.920000pt;}
.x23{left:278.626667pt;}
.xd{left:279.746667pt;}
.x1e{left:283.200000pt;}
.x1f{left:284.160000pt;}
.xb{left:288.066667pt;}
.xf{left:293.986667pt;}
.x27{left:305.120000pt;}
.x2{left:308.706667pt;}
.x28{left:356.160000pt;}
.x16{left:363.813333pt;}
.x19{left:373.306667pt;}
.x1a{left:376.506667pt;}
.x14{left:396.866667pt;}
.x1c{left:398.013333pt;}
.x29{left:399.520000pt;}
.x1d{left:407.933333pt;}
.x2a{left:435.680000pt;}
.x1b{left:476.933333pt;}
.x18{left:485.093333pt;}
.x33{left:490.973333pt;}
.x17{left:499.493333pt;}
.x32{left:567.493333pt;}
.x12{left:617.893333pt;}
.x35{left:663.493333pt;}
.x36{left:668.933333pt;}
.x15{left:690.213333pt;}
.x6{left:696.293333pt;}
.x13{left:724.000000pt;}
}




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