
    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_bf077ee559a5e10a1c769890.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0245c6992357401f8c30c33c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_06af78bd363c4a07559d34a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_7e5b4d665b9bd0568b1b15ee.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4bbf3031f95f288133b74846.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5dad460e72789a5ad4f05cf4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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_d524dc1b153417def643a1e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_e819dfe9723c5f3a266802b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2507ddd49d06697538e75596.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_86ccbcdf3cd005d3bc4ad41a.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a6d58d01f9f88291887fc31e.woff2')format("woff");}.ffe{font-family:ffe;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;}
.ls1{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.ls5{letter-spacing:143.976000px;}
.lsc{letter-spacing:165.744000px;}
.ls7{letter-spacing:172.776000px;}
.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;}
}
.ws3{word-spacing:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.ws7{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws1{word-spacing:-16.613280px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:0.000000px;}
._3f{margin-left:-13.992000px;}
._4b{margin-left:-9.163680px;}
._6{margin-left:-7.617360px;}
._0{margin-left:-6.094080px;}
._c{margin-left:-5.066880px;}
._7{margin-left:-3.657600px;}
._2{margin-left:-2.205120px;}
._1{margin-left:-1.173120px;}
._3{width:1.152000px;}
._5{width:2.413200px;}
._f{width:4.104000px;}
._12{width:5.277120px;}
._d{width:6.336000px;}
._e{width:7.848000px;}
._18{width:9.216000px;}
._19{width:10.269120px;}
._11{width:11.481120px;}
._16{width:12.822000px;}
._8{width:14.520000px;}
._9{width:15.696000px;}
._10{width:16.920000px;}
._4{width:18.000000px;}
._15{width:19.242240px;}
._a{width:20.376000px;}
._b{width:21.756000px;}
._17{width:23.328000px;}
._1a{width:24.549360px;}
._13{width:25.560000px;}
._14{width:26.640000px;}
._1c{width:28.008000px;}
._1d{width:29.016000px;}
._1e{width:30.180000px;}
._4c{width:31.245120px;}
._28{width:32.316000px;}
._27{width:34.638480px;}
._4a{width:36.389520px;}
._3a{width:38.232000px;}
._20{width:39.384000px;}
._2a{width:41.760000px;}
._1f{width:44.712000px;}
._21{width:45.864000px;}
._31{width:46.872000px;}
._4d{width:52.329120px;}
._37{width:53.784000px;}
._38{width:56.340000px;}
._3c{width:62.604000px;}
._33{width:65.474880px;}
._4f{width:66.544320px;}
._4e{width:67.879200px;}
._32{width:70.965120px;}
._54{width:74.088000px;}
._49{width:78.528000px;}
._39{width:79.689600px;}
._48{width:80.818080px;}
._55{width:82.146720px;}
._3e{width:84.744000px;}
._3d{width:90.720000px;}
._29{width:94.752000px;}
._42{width:95.950080px;}
._41{width:96.984000px;}
._40{width:98.445120px;}
._36{width:100.224000px;}
._35{width:104.765760px;}
._34{width:110.710080px;}
._50{width:119.520000px;}
._51{width:120.590880px;}
._2c{width:124.560000px;}
._2f{width:125.640000px;}
._44{width:134.856000px;}
._43{width:136.656000px;}
._30{width:141.336000px;}
._45{width:143.280000px;}
._46{width:144.566880px;}
._47{width:145.974240px;}
._25{width:161.881920px;}
._24{width:169.030080px;}
._26{width:170.416320px;}
._2e{width:194.472000px;}
._2d{width:228.960000px;}
._52{width:239.868000px;}
._53{width:241.056000px;}
._2b{width:282.312000px;}
._3b{width:286.200000px;}
._1b{width:467.352000px;}
._22{width:1023.912000px;}
._23{width:1025.928000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:4.140000px;}
.y97{bottom:4.500000px;}
.y8f{bottom:24.840000px;}
.y9e{bottom:25.200000px;}
.y96{bottom:25.230000px;}
.y8e{bottom:45.540000px;}
.y93{bottom:45.570000px;}
.y9d{bottom:45.900000px;}
.y95{bottom:45.930000px;}
.y5{bottom:58.716000px;}
.ya0{bottom:66.060000px;}
.y9a{bottom:66.240000px;}
.y92{bottom:66.270000px;}
.ya1{bottom:66.420000px;}
.y9c{bottom:66.600000px;}
.y94{bottom:66.630000px;}
.y4{bottom:79.416000px;}
.y99{bottom:86.940000px;}
.y9b{bottom:87.300000px;}
.y3{bottom:97.956000px;}
.y4c{bottom:128.376000px;}
.ye1{bottom:128.556000px;}
.ya9{bottom:129.096000px;}
.yc3{bottom:133.056000px;}
.yd1{bottom:140.256000px;}
.y88{bottom:140.436000px;}
.yb4{bottom:142.056000px;}
.y26{bottom:143.496000px;}
.y4b{bottom:152.310000px;}
.y75{bottom:152.490000px;}
.ya8{bottom:153.030000px;}
.yc2{bottom:156.990000px;}
.y87{bottom:164.190000px;}
.yd0{bottom:164.370000px;}
.ydc{bottom:164.550000px;}
.yb3{bottom:165.990000px;}
.y25{bottom:167.250000px;}
.y64{bottom:176.250000px;}
.yec{bottom:176.430000px;}
.ycb{bottom:176.610000px;}
.ya7{bottom:176.970000px;}
.yc1{bottom:180.930000px;}
.y86{bottom:188.310000px;}
.y4a{bottom:188.490000px;}
.yb2{bottom:189.930000px;}
.y24{bottom:191.190000px;}
.ye0{bottom:200.190000px;}
.yca{bottom:200.370000px;}
.ya6{bottom:201.090000px;}
.y49{bottom:212.250000px;}
.y63{bottom:212.430000px;}
.y23{bottom:215.310000px;}
.yc0{bottom:217.110000px;}
.ydb{bottom:224.310000px;}
.yc9{bottom:224.490000px;}
.yb1{bottom:226.110000px;}
.y48{bottom:236.190000px;}
.ya5{bottom:237.090000px;}
.y22{bottom:239.250000px;}
.ybf{bottom:240.870000px;}
.yda{bottom:248.250000px;}
.y62{bottom:248.430000px;}
.y85{bottom:260.130000px;}
.y47{bottom:260.310000px;}
.yee{bottom:260.490000px;}
.ya4{bottom:261.030000px;}
.yb0{bottom:262.110000px;}
.y21{bottom:263.190000px;}
.y61{bottom:272.190000px;}
.y74{bottom:272.370000px;}
.ybe{bottom:277.050000px;}
.y84{bottom:284.070000px;}
.y46{bottom:284.250000px;}
.y20{bottom:287.130000px;}
.y60{bottom:296.130000px;}
.yeb{bottom:296.310000px;}
.yed{bottom:296.490000px;}
.ya3{bottom:297.210000px;}
.yaf{bottom:298.110000px;}
.y45{bottom:308.190000px;}
.ydf{bottom:308.370000px;}
.yc8{bottom:308.550000px;}
.y1f{bottom:311.115000px;}
.ybd{bottom:312.735000px;}
.y5f{bottom:320.115000px;}
.y83{bottom:320.295000px;}
.yae{bottom:329.655000px;}
.ybc{bottom:330.015000px;}
.y44{bottom:332.175000px;}
.y73{bottom:332.355000px;}
.ya2{bottom:332.715000px;}
.y1e{bottom:335.235000px;}
.y82{bottom:344.055000px;}
.y5e{bottom:344.235000px;}
.y9f{bottom:350.175000px;}
.y72{bottom:356.115000px;}
.y1d{bottom:359.175000px;}
.y5d{bottom:368.175000px;}
.y43{bottom:368.355000px;}
.yc7{bottom:368.535000px;}
.ybb{bottom:372.135000px;}
.y81{bottom:380.235000px;}
.yd9{bottom:380.415000px;}
.y1c{bottom:383.115000px;}
.y42{bottom:392.115000px;}
.y71{bottom:392.295000px;}
.yc6{bottom:400.035000px;}
.yd8{bottom:404.175000px;}
.y1b{bottom:407.055000px;}
.yba{bottom:414.255000px;}
.y5c{bottom:416.055000px;}
.y41{bottom:416.235000px;}
.yd7{bottom:428.115000px;}
.y98{bottom:433.695000px;}
.y80{bottom:439.995000px;}
.y40{bottom:440.175000px;}
.y1a{bottom:442.875000px;}
.y5b{bottom:451.875000px;}
.yd6{bottom:452.055000px;}
.y70{bottom:452.235000px;}
.yb9{bottom:456.555000px;}
.y3f{bottom:464.115000px;}
.yde{bottom:464.295000px;}
.y6f{bottom:475.995000px;}
.y19{bottom:479.235000px;}
.y3e{bottom:488.055000px;}
.y5a{bottom:488.235000px;}
.y6e{bottom:500.115000px;}
.y3d{bottom:511.995000px;}
.y18{bottom:515.235000px;}
.yb8{bottom:519.375000px;}
.ye7{bottom:524.055000px;}
.y59{bottom:535.935000px;}
.y3c{bottom:536.115000px;}
.y91{bottom:537.915000px;}
.y17{bottom:538.995000px;}
.y7f{bottom:547.815000px;}
.ye6{bottom:547.995000px;}
.y58{bottom:559.875000px;}
.y3b{bottom:560.055000px;}
.yb7{bottom:561.525000px;}
.y16{bottom:562.965000px;}
.ye5{bottom:571.965000px;}
.yd5{bottom:572.145000px;}
.y57{bottom:584.025000px;}
.y7e{bottom:584.205000px;}
.y15{bottom:586.905000px;}
.yd4{bottom:595.905000px;}
.ydd{bottom:596.085000px;}
.y3a{bottom:596.265000px;}
.ye4{bottom:607.785000px;}
.y56{bottom:607.965000px;}
.y14{bottom:610.845000px;}
.y39{bottom:620.025000px;}
.y8d{bottom:621.465000px;}
.y7d{bottom:631.905000px;}
.y13{bottom:634.965000px;}
.y38{bottom:643.965000px;}
.y55{bottom:644.145000px;}
.ycf{bottom:655.845000px;}
.yea{bottom:656.025000px;}
.y12{bottom:658.905000px;}
.y37{bottom:667.905000px;}
.y7c{bottom:668.085000px;}
.ye9{bottom:679.965000px;}
.y11{bottom:682.845000px;}
.yad{bottom:691.485000px;}
.yce{bottom:691.665000px;}
.y36{bottom:691.845000px;}
.yc5{bottom:692.025000px;}
.ye8{bottom:703.905000px;}
.y54{bottom:704.085000px;}
.y10{bottom:706.785000px;}
.y6d{bottom:715.785000px;}
.y35{bottom:715.965000px;}
.y53{bottom:727.845000px;}
.yac{bottom:728.025000px;}
.yf{bottom:730.725000px;}
.yc4{bottom:739.545000px;}
.y7b{bottom:739.725000px;}
.y34{bottom:739.905000px;}
.y8c{bottom:751.425000px;}
.yab{bottom:751.785000px;}
.y6c{bottom:751.965000px;}
.ye{bottom:754.845000px;}
.y33{bottom:763.845000px;}
.y52{bottom:764.025000px;}
.y6b{bottom:775.725000px;}
.y7a{bottom:775.905000px;}
.yd{bottom:778.785000px;}
.y32{bottom:787.785000px;}
.y8b{bottom:787.965000px;}
.y6a{bottom:799.845000px;}
.yc{bottom:802.725000px;}
.y31{bottom:811.770000px;}
.y69{bottom:823.830000px;}
.y51{bottom:824.010000px;}
.y8a{bottom:835.890000px;}
.ycd{bottom:836.070000px;}
.yb{bottom:839.670000px;}
.y50{bottom:847.770000px;}
.y30{bottom:847.950000px;}
.y89{bottom:859.830000px;}
.y79{bottom:860.010000px;}
.y2f{bottom:871.710000px;}
.ya{bottom:877.650000px;}
.y78{bottom:883.770000px;}
.y4f{bottom:883.950000px;}
.yd3{bottom:895.650000px;}
.y2e{bottom:895.830000px;}
.y4e{bottom:907.710000px;}
.y68{bottom:907.890000px;}
.y9{bottom:910.590000px;}
.y2d{bottom:919.770000px;}
.y67{bottom:931.650000px;}
.y2c{bottom:943.710000px;}
.y4d{bottom:943.890000px;}
.y66{bottom:955.770000px;}
.yd2{bottom:955.950000px;}
.y8{bottom:960.630000px;}
.y2b{bottom:967.650000px;}
.ycc{bottom:967.830000px;}
.yaa{bottom:979.710000px;}
.y77{bottom:979.890000px;}
.y2a{bottom:991.590000px;}
.y65{bottom:991.770000px;}
.yb6{bottom:1003.650000px;}
.y7{bottom:1005.450000px;}
.y29{bottom:1015.710000px;}
.y76{bottom:1015.890000px;}
.ye3{bottom:1027.590000px;}
.y28{bottom:1039.650000px;}
.yb5{bottom:1039.830000px;}
.y6{bottom:1049.190000px;}
.ye2{bottom:1063.440000px;}
.y27{bottom:1063.620000px;}
.y2{bottom:1085.940000px;}
.y1{bottom:1118.700000px;}
.h14{height:41.385000px;}
.h15{height:41.400000px;}
.h12{height:41.436000px;}
.h9{height:50.273438px;}
.h8{height:50.800781px;}
.hd{height:59.343750px;}
.h13{height:62.085000px;}
.he{height:62.100000px;}
.h5{height:62.184375px;}
.h6{height:65.958750px;}
.ha{height:70.664062px;}
.h1{height:71.613281px;}
.hc{height:71.824219px;}
.h2{height:73.722656px;}
.h16{height:74.004654px;}
.hb{height:74.953125px;}
.h11{height:82.620000px;}
.h4{height:82.676953px;}
.hf{height:82.830000px;}
.h7{height:87.695156px;}
.h3{height:92.965430px;}
.h10{height:103.485000px;}
.h0{height:1188.000000px;}
.w12{width:116.496000px;}
.wd{width:117.396000px;}
.w7{width:117.741000px;}
.w2{width:118.461000px;}
.w6{width:122.571000px;}
.w1{width:122.931000px;}
.w10{width:127.611000px;}
.wb{width:127.971000px;}
.w8{width:135.576000px;}
.w3{width:136.476000px;}
.w11{width:140.061000px;}
.wc{width:140.781000px;}
.w14{width:151.935000px;}
.wf{width:152.295000px;}
.w9{width:157.485000px;}
.w4{width:158.205000px;}
.w13{width:161.445000px;}
.we{width:162.165000px;}
.wa{width:164.175000px;}
.w5{width:164.535000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.731000px;}
.x2{left:108.036000px;}
.x3{left:109.116000px;}
.x13{left:135.036000px;}
.x1{left:141.156000px;}
.x14{left:162.030000px;}
.x6{left:173.730000px;}
.x9{left:231.705000px;}
.xe{left:236.745000px;}
.x4{left:321.915000px;}
.x7{left:343.155000px;}
.xa{left:350.175000px;}
.x5{left:372.495000px;}
.xf{left:377.535000px;}
.xb{left:486.660000px;}
.x10{left:494.940000px;}
.xc{left:644.880000px;}
.x11{left:657.120000px;}
.x12{left:701.070000px;}
.xd{left:722.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls5{letter-spacing:127.978667pt;}
.lsc{letter-spacing:147.328000pt;}
.ls7{letter-spacing:153.578667pt;}
.ws3{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws1{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:0.000000pt;}
._3f{margin-left:-12.437333pt;}
._4b{margin-left:-8.145493pt;}
._6{margin-left:-6.770987pt;}
._0{margin-left:-5.416960pt;}
._c{margin-left:-4.503893pt;}
._7{margin-left:-3.251200pt;}
._2{margin-left:-1.960107pt;}
._1{margin-left:-1.042773pt;}
._3{width:1.024000pt;}
._5{width:2.145067pt;}
._f{width:3.648000pt;}
._12{width:4.690773pt;}
._d{width:5.632000pt;}
._e{width:6.976000pt;}
._18{width:8.192000pt;}
._19{width:9.128107pt;}
._11{width:10.205440pt;}
._16{width:11.397333pt;}
._8{width:12.906667pt;}
._9{width:13.952000pt;}
._10{width:15.040000pt;}
._4{width:16.000000pt;}
._15{width:17.104213pt;}
._a{width:18.112000pt;}
._b{width:19.338667pt;}
._17{width:20.736000pt;}
._1a{width:21.821653pt;}
._13{width:22.720000pt;}
._14{width:23.680000pt;}
._1c{width:24.896000pt;}
._1d{width:25.792000pt;}
._1e{width:26.826667pt;}
._4c{width:27.773440pt;}
._28{width:28.725333pt;}
._27{width:30.789760pt;}
._4a{width:32.346240pt;}
._3a{width:33.984000pt;}
._20{width:35.008000pt;}
._2a{width:37.120000pt;}
._1f{width:39.744000pt;}
._21{width:40.768000pt;}
._31{width:41.664000pt;}
._4d{width:46.514773pt;}
._37{width:47.808000pt;}
._38{width:50.080000pt;}
._3c{width:55.648000pt;}
._33{width:58.199893pt;}
._4f{width:59.150507pt;}
._4e{width:60.337067pt;}
._32{width:63.080107pt;}
._54{width:65.856000pt;}
._49{width:69.802667pt;}
._39{width:70.835200pt;}
._48{width:71.838293pt;}
._55{width:73.019307pt;}
._3e{width:75.328000pt;}
._3d{width:80.640000pt;}
._29{width:84.224000pt;}
._42{width:85.288960pt;}
._41{width:86.208000pt;}
._40{width:87.506773pt;}
._36{width:89.088000pt;}
._35{width:93.125120pt;}
._34{width:98.408960pt;}
._50{width:106.240000pt;}
._51{width:107.191893pt;}
._2c{width:110.720000pt;}
._2f{width:111.680000pt;}
._44{width:119.872000pt;}
._43{width:121.472000pt;}
._30{width:125.632000pt;}
._45{width:127.360000pt;}
._46{width:128.503893pt;}
._47{width:129.754880pt;}
._25{width:143.895040pt;}
._24{width:150.248960pt;}
._26{width:151.481173pt;}
._2e{width:172.864000pt;}
._2d{width:203.520000pt;}
._52{width:213.216000pt;}
._53{width:214.272000pt;}
._2b{width:250.944000pt;}
._3b{width:254.400000pt;}
._1b{width:415.424000pt;}
._22{width:910.144000pt;}
._23{width:911.936000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.680000pt;}
.y97{bottom:4.000000pt;}
.y8f{bottom:22.080000pt;}
.y9e{bottom:22.400000pt;}
.y96{bottom:22.426667pt;}
.y8e{bottom:40.480000pt;}
.y93{bottom:40.506667pt;}
.y9d{bottom:40.800000pt;}
.y95{bottom:40.826667pt;}
.y5{bottom:52.192000pt;}
.ya0{bottom:58.720000pt;}
.y9a{bottom:58.880000pt;}
.y92{bottom:58.906667pt;}
.ya1{bottom:59.040000pt;}
.y9c{bottom:59.200000pt;}
.y94{bottom:59.226667pt;}
.y4{bottom:70.592000pt;}
.y99{bottom:77.280000pt;}
.y9b{bottom:77.600000pt;}
.y3{bottom:87.072000pt;}
.y4c{bottom:114.112000pt;}
.ye1{bottom:114.272000pt;}
.ya9{bottom:114.752000pt;}
.yc3{bottom:118.272000pt;}
.yd1{bottom:124.672000pt;}
.y88{bottom:124.832000pt;}
.yb4{bottom:126.272000pt;}
.y26{bottom:127.552000pt;}
.y4b{bottom:135.386667pt;}
.y75{bottom:135.546667pt;}
.ya8{bottom:136.026667pt;}
.yc2{bottom:139.546667pt;}
.y87{bottom:145.946667pt;}
.yd0{bottom:146.106667pt;}
.ydc{bottom:146.266667pt;}
.yb3{bottom:147.546667pt;}
.y25{bottom:148.666667pt;}
.y64{bottom:156.666667pt;}
.yec{bottom:156.826667pt;}
.ycb{bottom:156.986667pt;}
.ya7{bottom:157.306667pt;}
.yc1{bottom:160.826667pt;}
.y86{bottom:167.386667pt;}
.y4a{bottom:167.546667pt;}
.yb2{bottom:168.826667pt;}
.y24{bottom:169.946667pt;}
.ye0{bottom:177.946667pt;}
.yca{bottom:178.106667pt;}
.ya6{bottom:178.746667pt;}
.y49{bottom:188.666667pt;}
.y63{bottom:188.826667pt;}
.y23{bottom:191.386667pt;}
.yc0{bottom:192.986667pt;}
.ydb{bottom:199.386667pt;}
.yc9{bottom:199.546667pt;}
.yb1{bottom:200.986667pt;}
.y48{bottom:209.946667pt;}
.ya5{bottom:210.746667pt;}
.y22{bottom:212.666667pt;}
.ybf{bottom:214.106667pt;}
.yda{bottom:220.666667pt;}
.y62{bottom:220.826667pt;}
.y85{bottom:231.226667pt;}
.y47{bottom:231.386667pt;}
.yee{bottom:231.546667pt;}
.ya4{bottom:232.026667pt;}
.yb0{bottom:232.986667pt;}
.y21{bottom:233.946667pt;}
.y61{bottom:241.946667pt;}
.y74{bottom:242.106667pt;}
.ybe{bottom:246.266667pt;}
.y84{bottom:252.506667pt;}
.y46{bottom:252.666667pt;}
.y20{bottom:255.226667pt;}
.y60{bottom:263.226667pt;}
.yeb{bottom:263.386667pt;}
.yed{bottom:263.546667pt;}
.ya3{bottom:264.186667pt;}
.yaf{bottom:264.986667pt;}
.y45{bottom:273.946667pt;}
.ydf{bottom:274.106667pt;}
.yc8{bottom:274.266667pt;}
.y1f{bottom:276.546667pt;}
.ybd{bottom:277.986667pt;}
.y5f{bottom:284.546667pt;}
.y83{bottom:284.706667pt;}
.yae{bottom:293.026667pt;}
.ybc{bottom:293.346667pt;}
.y44{bottom:295.266667pt;}
.y73{bottom:295.426667pt;}
.ya2{bottom:295.746667pt;}
.y1e{bottom:297.986667pt;}
.y82{bottom:305.826667pt;}
.y5e{bottom:305.986667pt;}
.y9f{bottom:311.266667pt;}
.y72{bottom:316.546667pt;}
.y1d{bottom:319.266667pt;}
.y5d{bottom:327.266667pt;}
.y43{bottom:327.426667pt;}
.yc7{bottom:327.586667pt;}
.ybb{bottom:330.786667pt;}
.y81{bottom:337.986667pt;}
.yd9{bottom:338.146667pt;}
.y1c{bottom:340.546667pt;}
.y42{bottom:348.546667pt;}
.y71{bottom:348.706667pt;}
.yc6{bottom:355.586667pt;}
.yd8{bottom:359.266667pt;}
.y1b{bottom:361.826667pt;}
.yba{bottom:368.226667pt;}
.y5c{bottom:369.826667pt;}
.y41{bottom:369.986667pt;}
.yd7{bottom:380.546667pt;}
.y98{bottom:385.506667pt;}
.y80{bottom:391.106667pt;}
.y40{bottom:391.266667pt;}
.y1a{bottom:393.666667pt;}
.y5b{bottom:401.666667pt;}
.yd6{bottom:401.826667pt;}
.y70{bottom:401.986667pt;}
.yb9{bottom:405.826667pt;}
.y3f{bottom:412.546667pt;}
.yde{bottom:412.706667pt;}
.y6f{bottom:423.106667pt;}
.y19{bottom:425.986667pt;}
.y3e{bottom:433.826667pt;}
.y5a{bottom:433.986667pt;}
.y6e{bottom:444.546667pt;}
.y3d{bottom:455.106667pt;}
.y18{bottom:457.986667pt;}
.yb8{bottom:461.666667pt;}
.ye7{bottom:465.826667pt;}
.y59{bottom:476.386667pt;}
.y3c{bottom:476.546667pt;}
.y91{bottom:478.146667pt;}
.y17{bottom:479.106667pt;}
.y7f{bottom:486.946667pt;}
.ye6{bottom:487.106667pt;}
.y58{bottom:497.666667pt;}
.y3b{bottom:497.826667pt;}
.yb7{bottom:499.133333pt;}
.y16{bottom:500.413333pt;}
.ye5{bottom:508.413333pt;}
.yd5{bottom:508.573333pt;}
.y57{bottom:519.133333pt;}
.y7e{bottom:519.293333pt;}
.y15{bottom:521.693333pt;}
.yd4{bottom:529.693333pt;}
.ydd{bottom:529.853333pt;}
.y3a{bottom:530.013333pt;}
.ye4{bottom:540.253333pt;}
.y56{bottom:540.413333pt;}
.y14{bottom:542.973333pt;}
.y39{bottom:551.133333pt;}
.y8d{bottom:552.413333pt;}
.y7d{bottom:561.693333pt;}
.y13{bottom:564.413333pt;}
.y38{bottom:572.413333pt;}
.y55{bottom:572.573333pt;}
.ycf{bottom:582.973333pt;}
.yea{bottom:583.133333pt;}
.y12{bottom:585.693333pt;}
.y37{bottom:593.693333pt;}
.y7c{bottom:593.853333pt;}
.ye9{bottom:604.413333pt;}
.y11{bottom:606.973333pt;}
.yad{bottom:614.653333pt;}
.yce{bottom:614.813333pt;}
.y36{bottom:614.973333pt;}
.yc5{bottom:615.133333pt;}
.ye8{bottom:625.693333pt;}
.y54{bottom:625.853333pt;}
.y10{bottom:628.253333pt;}
.y6d{bottom:636.253333pt;}
.y35{bottom:636.413333pt;}
.y53{bottom:646.973333pt;}
.yac{bottom:647.133333pt;}
.yf{bottom:649.533333pt;}
.yc4{bottom:657.373333pt;}
.y7b{bottom:657.533333pt;}
.y34{bottom:657.693333pt;}
.y8c{bottom:667.933333pt;}
.yab{bottom:668.253333pt;}
.y6c{bottom:668.413333pt;}
.ye{bottom:670.973333pt;}
.y33{bottom:678.973333pt;}
.y52{bottom:679.133333pt;}
.y6b{bottom:689.533333pt;}
.y7a{bottom:689.693333pt;}
.yd{bottom:692.253333pt;}
.y32{bottom:700.253333pt;}
.y8b{bottom:700.413333pt;}
.y6a{bottom:710.973333pt;}
.yc{bottom:713.533333pt;}
.y31{bottom:721.573333pt;}
.y69{bottom:732.293333pt;}
.y51{bottom:732.453333pt;}
.y8a{bottom:743.013333pt;}
.ycd{bottom:743.173333pt;}
.yb{bottom:746.373333pt;}
.y50{bottom:753.573333pt;}
.y30{bottom:753.733333pt;}
.y89{bottom:764.293333pt;}
.y79{bottom:764.453333pt;}
.y2f{bottom:774.853333pt;}
.ya{bottom:780.133333pt;}
.y78{bottom:785.573333pt;}
.y4f{bottom:785.733333pt;}
.yd3{bottom:796.133333pt;}
.y2e{bottom:796.293333pt;}
.y4e{bottom:806.853333pt;}
.y68{bottom:807.013333pt;}
.y9{bottom:809.413333pt;}
.y2d{bottom:817.573333pt;}
.y67{bottom:828.133333pt;}
.y2c{bottom:838.853333pt;}
.y4d{bottom:839.013333pt;}
.y66{bottom:849.573333pt;}
.yd2{bottom:849.733333pt;}
.y8{bottom:853.893333pt;}
.y2b{bottom:860.133333pt;}
.ycc{bottom:860.293333pt;}
.yaa{bottom:870.853333pt;}
.y77{bottom:871.013333pt;}
.y2a{bottom:881.413333pt;}
.y65{bottom:881.573333pt;}
.yb6{bottom:892.133333pt;}
.y7{bottom:893.733333pt;}
.y29{bottom:902.853333pt;}
.y76{bottom:903.013333pt;}
.ye3{bottom:913.413333pt;}
.y28{bottom:924.133333pt;}
.yb5{bottom:924.293333pt;}
.y6{bottom:932.613333pt;}
.ye2{bottom:945.280000pt;}
.y27{bottom:945.440000pt;}
.y2{bottom:965.280000pt;}
.y1{bottom:994.400000pt;}
.h14{height:36.786667pt;}
.h15{height:36.800000pt;}
.h12{height:36.832000pt;}
.h9{height:44.687500pt;}
.h8{height:45.156250pt;}
.hd{height:52.750000pt;}
.h13{height:55.186667pt;}
.he{height:55.200000pt;}
.h5{height:55.275000pt;}
.h6{height:58.630000pt;}
.ha{height:62.812500pt;}
.h1{height:63.656250pt;}
.hc{height:63.843750pt;}
.h2{height:65.531250pt;}
.h16{height:65.781915pt;}
.hb{height:66.625000pt;}
.h11{height:73.440000pt;}
.h4{height:73.490625pt;}
.hf{height:73.626667pt;}
.h7{height:77.951250pt;}
.h3{height:82.635937pt;}
.h10{height:91.986667pt;}
.h0{height:1056.000000pt;}
.w12{width:103.552000pt;}
.wd{width:104.352000pt;}
.w7{width:104.658667pt;}
.w2{width:105.298667pt;}
.w6{width:108.952000pt;}
.w1{width:109.272000pt;}
.w10{width:113.432000pt;}
.wb{width:113.752000pt;}
.w8{width:120.512000pt;}
.w3{width:121.312000pt;}
.w11{width:124.498667pt;}
.wc{width:125.138667pt;}
.w14{width:135.053333pt;}
.wf{width:135.373333pt;}
.w9{width:139.986667pt;}
.w4{width:140.626667pt;}
.w13{width:143.506667pt;}
.we{width:144.146667pt;}
.wa{width:145.933333pt;}
.w5{width:146.253333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.872000pt;}
.x2{left:96.032000pt;}
.x3{left:96.992000pt;}
.x13{left:120.032000pt;}
.x1{left:125.472000pt;}
.x14{left:144.026667pt;}
.x6{left:154.426667pt;}
.x9{left:205.960000pt;}
.xe{left:210.440000pt;}
.x4{left:286.146667pt;}
.x7{left:305.026667pt;}
.xa{left:311.266667pt;}
.x5{left:331.106667pt;}
.xf{left:335.586667pt;}
.xb{left:432.586667pt;}
.x10{left:439.946667pt;}
.xc{left:573.226667pt;}
.x11{left:584.106667pt;}
.x12{left:623.173333pt;}
.xd{left:642.053333pt;}
}




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