
    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_c2357c43c5cecd0bed7e5e10.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4177143cada0054c0e54eab6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2f93ce796ec598dac10f6add.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c64eb7d621098d43e588ddf7.woff')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_ab7e29b023549e97bb7b63b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_4ac5eca0cc71ea81f85d7406.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7dff302dd4461c2ee5a62ee9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_946b16e781620cfd59eaed0b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_050834fa4aae76670330889c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_2ab28d09679276cb12ae8da4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_b00b8392d0069037f669cf91.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_393e44f8e87a5b1e1e046fc5.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-3.744000px;}
.ls10{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.106800px;}
.lsb{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.613440px;}
.ls14{letter-spacing:0.684000px;}
.ls8{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.900000px;}
.ls5{letter-spacing:1.098000px;}
.ls15{letter-spacing:7.920000px;}
.ls13{letter-spacing:20.160000px;}
.lsa{letter-spacing:27.360000px;}
.ls0{letter-spacing:53.585280px;}
.ls1a{letter-spacing:54.840000px;}
.ls1b{letter-spacing:162.840000px;}
.ls17{letter-spacing:179.976000px;}
.ls1{letter-spacing:197.765280px;}
.ls18{letter-spacing:197.976000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.wsf{word-spacing:-18.720000px;}
.wse{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.228000px;}
.ws1{word-spacing:-15.012000px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.437760px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-8.060640px;}
._14{margin-left:-6.780240px;}
._5{margin-left:-5.054400px;}
._1{margin-left:-3.884400px;}
._4{margin-left:-2.315520px;}
._2{margin-left:-1.014000px;}
._0{width:1.627920px;}
._a{width:2.844000px;}
._b{width:4.226400px;}
._1c{width:5.262000px;}
._e{width:6.264000px;}
._6{width:7.358400px;}
._9{width:8.568000px;}
._f{width:9.614160px;}
._7{width:10.761600px;}
._8{width:12.362160px;}
._12{width:13.579680px;}
._1d{width:14.630640px;}
._11{width:15.656400px;}
._10{width:16.974000px;}
._21{width:19.020000px;}
._13{width:20.088000px;}
._d{width:21.528000px;}
._c{width:22.536000px;}
._16{width:23.550000px;}
._22{width:25.548000px;}
._15{width:27.120000px;}
._17{width:28.188000px;}
._18{width:30.024000px;}
._19{width:31.104000px;}
._27{width:32.376000px;}
._25{width:33.408000px;}
._1e{width:34.416000px;}
._1f{width:35.568000px;}
._26{width:36.720000px;}
._28{width:37.846080px;}
._29{width:38.943840px;}
._2a{width:40.116720px;}
._2b{width:42.302400px;}
._1a{width:44.136000px;}
._1b{width:45.216000px;}
._33{width:46.834080px;}
._23{width:54.000000px;}
._24{width:55.296000px;}
._3{width:65.412000px;}
._35{width:67.176000px;}
._34{width:68.328000px;}
._36{width:75.672000px;}
._37{width:76.680000px;}
._32{width:84.096000px;}
._38{width:91.800000px;}
._39{width:93.024000px;}
._3e{width:118.080000px;}
._3d{width:136.800000px;}
._2d{width:145.470000px;}
._2c{width:146.598000px;}
._30{width:157.032000px;}
._31{width:158.284080px;}
._3c{width:215.424000px;}
._3b{width:223.488000px;}
._3a{width:224.496000px;}
._2e{width:255.384000px;}
._2f{width:256.518000px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:8.280000px;}
.y8{bottom:19.620000px;}
.y7{bottom:38.190000px;}
.y4{bottom:44.670000px;}
.yf{bottom:56.700000px;}
.y6{bottom:56.910000px;}
.y3{bottom:67.170000px;}
.y5{bottom:75.450000px;}
.ye{bottom:75.600000px;}
.yd{bottom:92.340000px;}
.yc{bottom:108.000000px;}
.yb{bottom:123.480000px;}
.ya{bottom:138.960000px;}
.y5c{bottom:155.700000px;}
.ye6{bottom:156.780000px;}
.y4b{bottom:160.560000px;}
.y2d{bottom:161.100000px;}
.y73{bottom:167.760000px;}
.y9d{bottom:179.280000px;}
.y95{bottom:179.640000px;}
.y5b{bottom:186.660000px;}
.ye5{bottom:187.740000px;}
.y4a{bottom:191.700000px;}
.y2c{bottom:192.240000px;}
.y108{bottom:196.740000px;}
.yb8{bottom:198.540000px;}
.y72{bottom:198.720000px;}
.yd2{bottom:208.110000px;}
.y94{bottom:210.810000px;}
.y5a{bottom:217.830000px;}
.y49{bottom:222.690000px;}
.y2b{bottom:223.230000px;}
.ye4{bottom:227.910000px;}
.yb7{bottom:229.530000px;}
.y71{bottom:229.710000px;}
.y107{bottom:236.910000px;}
.yd1{bottom:239.250000px;}
.y93{bottom:241.770000px;}
.y59{bottom:248.790000px;}
.y48{bottom:253.830000px;}
.y2a{bottom:254.370000px;}
.ye3{bottom:258.870000px;}
.yb6{bottom:260.670000px;}
.y70{bottom:260.850000px;}
.y106{bottom:267.870000px;}
.yd0{bottom:270.210000px;}
.y7f{bottom:272.550000px;}
.y92{bottom:272.910000px;}
.y58{bottom:279.930000px;}
.y47{bottom:284.790000px;}
.ye2{bottom:290.010000px;}
.yb5{bottom:291.630000px;}
.y6f{bottom:291.810000px;}
.y29{bottom:297.030000px;}
.yf6{bottom:299.010000px;}
.ycf{bottom:301.350000px;}
.y91{bottom:303.870000px;}
.y57{bottom:310.890000px;}
.y46{bottom:315.930000px;}
.yb4{bottom:322.770000px;}
.y6e{bottom:322.950000px;}
.ye1{bottom:329.970000px;}
.yce{bottom:332.310000px;}
.y90{bottom:335.010000px;}
.y105{bottom:338.970000px;}
.y28{bottom:340.410000px;}
.y56{bottom:342.030000px;}
.y45{bottom:346.890000px;}
.y6d{bottom:353.910000px;}
.yb3{bottom:354.990000px;}
.ye0{bottom:361.110000px;}
.ycd{bottom:363.450000px;}
.y8f{bottom:365.970000px;}
.y104{bottom:370.110000px;}
.y44{bottom:378.030000px;}
.y27{bottom:383.430000px;}
.y55{bottom:384.690000px;}
.y8a{bottom:385.050000px;}
.yb2{bottom:386.130000px;}
.ydf{bottom:392.070000px;}
.y6c{bottom:396.750000px;}
.y8e{bottom:397.110000px;}
.y103{bottom:401.070000px;}
.ycc{bottom:406.470000px;}
.y43{bottom:408.990000px;}
.y26{bottom:414.570000px;}
.y89{bottom:416.010000px;}
.yb1{bottom:417.090000px;}
.yf5{bottom:423.210000px;}
.y54{bottom:428.070000px;}
.yde{bottom:432.210000px;}
.ycb{bottom:437.430000px;}
.y6b{bottom:440.130000px;}
.y102{bottom:441.255000px;}
.y88{bottom:447.195000px;}
.yb0{bottom:448.275000px;}
.y42{bottom:452.055000px;}
.y25{bottom:457.635000px;}
.y53{bottom:459.255000px;}
.ydd{bottom:463.215000px;}
.yca{bottom:468.615000px;}
.y6a{bottom:471.135000px;}
.y101{bottom:472.215000px;}
.y9c{bottom:478.155000px;}
.yaf{bottom:479.235000px;}
.y41{bottom:483.195000px;}
.y24{bottom:488.595000px;}
.y87{bottom:489.855000px;}
.y52{bottom:490.215000px;}
.ydc{bottom:494.355000px;}
.yc9{bottom:499.575000px;}
.y8d{bottom:501.915000px;}
.y69{bottom:502.275000px;}
.y100{bottom:503.355000px;}
.y9b{bottom:509.295000px;}
.yae{bottom:510.375000px;}
.y40{bottom:514.155000px;}
.y23{bottom:519.735000px;}
.y51{bottom:521.355000px;}
.ydb{bottom:525.315000px;}
.yc8{bottom:530.715000px;}
.y68{bottom:533.235000px;}
.yad{bottom:541.335000px;}
.yff{bottom:543.315000px;}
.y7e{bottom:544.935000px;}
.y3f{bottom:545.295000px;}
.y22{bottom:550.695000px;}
.y50{bottom:552.315000px;}
.yc7{bottom:561.675000px;}
.y67{bottom:564.375000px;}
.yf4{bottom:565.275000px;}
.yac{bottom:573.735000px;}
.yda{bottom:574.275000px;}
.y3e{bottom:576.255000px;}
.y21{bottom:581.835000px;}
.y4f{bottom:583.275000px;}
.y7d{bottom:588.315000px;}
.yc6{bottom:592.815000px;}
.y66{bottom:595.335000px;}
.yf3{bottom:596.415000px;}
.yab{bottom:604.695000px;}
.yd9{bottom:605.415000px;}
.y3d{bottom:607.395000px;}
.y20{bottom:612.795000px;}
.y9a{bottom:614.415000px;}
.y7c{bottom:619.275000px;}
.y4e{bottom:626.115000px;}
.y65{bottom:626.475000px;}
.yf2{bottom:627.375000px;}
.yc5{bottom:635.475000px;}
.yaa{bottom:635.835000px;}
.yd8{bottom:636.375000px;}
.y3c{bottom:638.355000px;}
.y1f{bottom:643.935000px;}
.y99{bottom:645.375000px;}
.y7b{bottom:650.415000px;}
.y64{bottom:657.435000px;}
.ya9{bottom:666.795000px;}
.yf1{bottom:667.515000px;}
.y3b{bottom:669.495000px;}
.y1e{bottom:674.895000px;}
.y98{bottom:676.545000px;}
.yc4{bottom:678.885000px;}
.y7a{bottom:681.405000px;}
.yfe{bottom:685.545000px;}
.y63{bottom:688.605000px;}
.ya8{bottom:697.965000px;}
.yf0{bottom:698.505000px;}
.y3a{bottom:700.485000px;}
.y1d{bottom:706.065000px;}
.y97{bottom:707.505000px;}
.yc3{bottom:710.025000px;}
.y79{bottom:712.545000px;}
.yfd{bottom:716.505000px;}
.y62{bottom:719.565000px;}
.ya7{bottom:728.925000px;}
.yef{bottom:729.645000px;}
.y80{bottom:731.265000px;}
.y39{bottom:731.625000px;}
.y1c{bottom:737.025000px;}
.yd7{bottom:738.645000px;}
.yc2{bottom:740.985000px;}
.y78{bottom:743.505000px;}
.yfc{bottom:747.645000px;}
.y96{bottom:750.345000px;}
.y61{bottom:750.705000px;}
.ya6{bottom:760.065000px;}
.yee{bottom:760.605000px;}
.y38{bottom:762.585000px;}
.y1b{bottom:768.165000px;}
.yd6{bottom:769.605000px;}
.yc1{bottom:772.125000px;}
.y77{bottom:774.645000px;}
.y60{bottom:781.665000px;}
.yfb{bottom:787.605000px;}
.ya5{bottom:792.465000px;}
.y37{bottom:793.725000px;}
.y1a{bottom:799.125000px;}
.yd5{bottom:800.745000px;}
.yc0{bottom:803.085000px;}
.y76{bottom:805.605000px;}
.yed{bottom:809.745000px;}
.y5f{bottom:812.805000px;}
.yfa{bottom:818.745000px;}
.ya4{bottom:823.425000px;}
.y36{bottom:824.685000px;}
.y19{bottom:830.265000px;}
.ybf{bottom:834.225000px;}
.y75{bottom:836.745000px;}
.yec{bottom:840.705000px;}
.yd4{bottom:843.405000px;}
.y86{bottom:843.765000px;}
.yf9{bottom:849.705000px;}
.ya3{bottom:854.565000px;}
.y5e{bottom:855.465000px;}
.y35{bottom:855.825000px;}
.y109{bottom:859.785000px;}
.y18{bottom:861.225000px;}
.ybe{bottom:866.445000px;}
.y74{bottom:867.705000px;}
.y85{bottom:874.905000px;}
.yeb{bottom:880.845000px;}
.ya2{bottom:885.525000px;}
.yd3{bottom:886.425000px;}
.y34{bottom:886.785000px;}
.yf8{bottom:889.845000px;}
.y17{bottom:892.365000px;}
.ybd{bottom:897.585000px;}
.y5d{bottom:898.845000px;}
.y84{bottom:905.865000px;}
.yea{bottom:911.850000px;}
.ya1{bottom:916.530000px;}
.y4d{bottom:917.970000px;}
.yf7{bottom:920.850000px;}
.y16{bottom:923.370000px;}
.ybc{bottom:928.590000px;}
.y33{bottom:929.850000px;}
.y83{bottom:936.870000px;}
.ya0{bottom:947.670000px;}
.y4c{bottom:948.930000px;}
.ye9{bottom:951.990000px;}
.ybb{bottom:959.730000px;}
.y32{bottom:960.990000px;}
.y15{bottom:966.030000px;}
.y82{bottom:968.010000px;}
.y9f{bottom:978.630000px;}
.y8c{bottom:980.070000px;}
.ye8{bottom:982.950000px;}
.y14{bottom:987.270000px;}
.yba{bottom:990.690000px;}
.y31{bottom:991.950000px;}
.y13{bottom:1007.610000px;}
.y9e{bottom:1009.770000px;}
.y81{bottom:1010.670000px;}
.y8b{bottom:1011.030000px;}
.ye7{bottom:1014.090000px;}
.yb9{bottom:1021.830000px;}
.y30{bottom:1023.090000px;}
.y12{bottom:1028.310000px;}
.y2f{bottom:1054.050000px;}
.y11{bottom:1062.150000px;}
.y10{bottom:1082.130000px;}
.y2e{bottom:1085.190000px;}
.y9{bottom:1105.170000px;}
.y1{bottom:1120.470000px;}
.ha{height:52.066406px;}
.h6{height:56.320312px;}
.h5{height:65.010937px;}
.h3{height:69.086250px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h9{height:72.562500px;}
.hc{height:75.093750px;}
.h8{height:84.898125px;}
.h2{height:89.310000px;}
.h4{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:125.089500px;}
.w4{width:166.530000px;}
.w3{width:431.370000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.085000px;}
.x7{left:28.260000px;}
.x6{left:30.060000px;}
.x9{left:47.520000px;}
.x8{left:51.660000px;}
.x2{left:98.083500px;}
.x1{left:99.946500px;}
.xa{left:108.036000px;}
.xb{left:122.436000px;}
.x10{left:135.036000px;}
.xf{left:162.030000px;}
.x11{left:188.850000px;}
.x3{left:225.045000px;}
.xc{left:351.975000px;}
.xe{left:367.095000px;}
.xd{left:396.795000px;}
.x5{left:656.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-3.328000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.545280pt;}
.ls14{letter-spacing:0.608000pt;}
.ls8{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.976000pt;}
.ls15{letter-spacing:7.040000pt;}
.ls13{letter-spacing:17.920000pt;}
.lsa{letter-spacing:24.320000pt;}
.ls0{letter-spacing:47.631360pt;}
.ls1a{letter-spacing:48.746667pt;}
.ls1b{letter-spacing:144.746667pt;}
.ls17{letter-spacing:159.978667pt;}
.ls1{letter-spacing:175.791360pt;}
.ls18{letter-spacing:175.978667pt;}
.ws8{word-spacing:-64.000000pt;}
.wsf{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.536000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-7.165013pt;}
._14{margin-left:-6.026880pt;}
._5{margin-left:-4.492800pt;}
._1{margin-left:-3.452800pt;}
._4{margin-left:-2.058240pt;}
._2{margin-left:-0.901333pt;}
._0{width:1.447040pt;}
._a{width:2.528000pt;}
._b{width:3.756800pt;}
._1c{width:4.677333pt;}
._e{width:5.568000pt;}
._6{width:6.540800pt;}
._9{width:7.616000pt;}
._f{width:8.545920pt;}
._7{width:9.565867pt;}
._8{width:10.988587pt;}
._12{width:12.070827pt;}
._1d{width:13.005013pt;}
._11{width:13.916800pt;}
._10{width:15.088000pt;}
._21{width:16.906667pt;}
._13{width:17.856000pt;}
._d{width:19.136000pt;}
._c{width:20.032000pt;}
._16{width:20.933333pt;}
._22{width:22.709333pt;}
._15{width:24.106667pt;}
._17{width:25.056000pt;}
._18{width:26.688000pt;}
._19{width:27.648000pt;}
._27{width:28.778667pt;}
._25{width:29.696000pt;}
._1e{width:30.592000pt;}
._1f{width:31.616000pt;}
._26{width:32.640000pt;}
._28{width:33.640960pt;}
._29{width:34.616747pt;}
._2a{width:35.659307pt;}
._2b{width:37.602133pt;}
._1a{width:39.232000pt;}
._1b{width:40.192000pt;}
._33{width:41.630293pt;}
._23{width:48.000000pt;}
._24{width:49.152000pt;}
._3{width:58.144000pt;}
._35{width:59.712000pt;}
._34{width:60.736000pt;}
._36{width:67.264000pt;}
._37{width:68.160000pt;}
._32{width:74.752000pt;}
._38{width:81.600000pt;}
._39{width:82.688000pt;}
._3e{width:104.960000pt;}
._3d{width:121.600000pt;}
._2d{width:129.306667pt;}
._2c{width:130.309333pt;}
._30{width:139.584000pt;}
._31{width:140.696960pt;}
._3c{width:191.488000pt;}
._3b{width:198.656000pt;}
._3a{width:199.552000pt;}
._2e{width:227.008000pt;}
._2f{width:228.016000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.360000pt;}
.y8{bottom:17.440000pt;}
.y7{bottom:33.946667pt;}
.y4{bottom:39.706667pt;}
.yf{bottom:50.400000pt;}
.y6{bottom:50.586667pt;}
.y3{bottom:59.706667pt;}
.y5{bottom:67.066667pt;}
.ye{bottom:67.200000pt;}
.yd{bottom:82.080000pt;}
.yc{bottom:96.000000pt;}
.yb{bottom:109.760000pt;}
.ya{bottom:123.520000pt;}
.y5c{bottom:138.400000pt;}
.ye6{bottom:139.360000pt;}
.y4b{bottom:142.720000pt;}
.y2d{bottom:143.200000pt;}
.y73{bottom:149.120000pt;}
.y9d{bottom:159.360000pt;}
.y95{bottom:159.680000pt;}
.y5b{bottom:165.920000pt;}
.ye5{bottom:166.880000pt;}
.y4a{bottom:170.400000pt;}
.y2c{bottom:170.880000pt;}
.y108{bottom:174.880000pt;}
.yb8{bottom:176.480000pt;}
.y72{bottom:176.640000pt;}
.yd2{bottom:184.986667pt;}
.y94{bottom:187.386667pt;}
.y5a{bottom:193.626667pt;}
.y49{bottom:197.946667pt;}
.y2b{bottom:198.426667pt;}
.ye4{bottom:202.586667pt;}
.yb7{bottom:204.026667pt;}
.y71{bottom:204.186667pt;}
.y107{bottom:210.586667pt;}
.yd1{bottom:212.666667pt;}
.y93{bottom:214.906667pt;}
.y59{bottom:221.146667pt;}
.y48{bottom:225.626667pt;}
.y2a{bottom:226.106667pt;}
.ye3{bottom:230.106667pt;}
.yb6{bottom:231.706667pt;}
.y70{bottom:231.866667pt;}
.y106{bottom:238.106667pt;}
.yd0{bottom:240.186667pt;}
.y7f{bottom:242.266667pt;}
.y92{bottom:242.586667pt;}
.y58{bottom:248.826667pt;}
.y47{bottom:253.146667pt;}
.ye2{bottom:257.786667pt;}
.yb5{bottom:259.226667pt;}
.y6f{bottom:259.386667pt;}
.y29{bottom:264.026667pt;}
.yf6{bottom:265.786667pt;}
.ycf{bottom:267.866667pt;}
.y91{bottom:270.106667pt;}
.y57{bottom:276.346667pt;}
.y46{bottom:280.826667pt;}
.yb4{bottom:286.906667pt;}
.y6e{bottom:287.066667pt;}
.ye1{bottom:293.306667pt;}
.yce{bottom:295.386667pt;}
.y90{bottom:297.786667pt;}
.y105{bottom:301.306667pt;}
.y28{bottom:302.586667pt;}
.y56{bottom:304.026667pt;}
.y45{bottom:308.346667pt;}
.y6d{bottom:314.586667pt;}
.yb3{bottom:315.546667pt;}
.ye0{bottom:320.986667pt;}
.ycd{bottom:323.066667pt;}
.y8f{bottom:325.306667pt;}
.y104{bottom:328.986667pt;}
.y44{bottom:336.026667pt;}
.y27{bottom:340.826667pt;}
.y55{bottom:341.946667pt;}
.y8a{bottom:342.266667pt;}
.yb2{bottom:343.226667pt;}
.ydf{bottom:348.506667pt;}
.y6c{bottom:352.666667pt;}
.y8e{bottom:352.986667pt;}
.y103{bottom:356.506667pt;}
.ycc{bottom:361.306667pt;}
.y43{bottom:363.546667pt;}
.y26{bottom:368.506667pt;}
.y89{bottom:369.786667pt;}
.yb1{bottom:370.746667pt;}
.yf5{bottom:376.186667pt;}
.y54{bottom:380.506667pt;}
.yde{bottom:384.186667pt;}
.ycb{bottom:388.826667pt;}
.y6b{bottom:391.226667pt;}
.y102{bottom:392.226667pt;}
.y88{bottom:397.506667pt;}
.yb0{bottom:398.466667pt;}
.y42{bottom:401.826667pt;}
.y25{bottom:406.786667pt;}
.y53{bottom:408.226667pt;}
.ydd{bottom:411.746667pt;}
.yca{bottom:416.546667pt;}
.y6a{bottom:418.786667pt;}
.y101{bottom:419.746667pt;}
.y9c{bottom:425.026667pt;}
.yaf{bottom:425.986667pt;}
.y41{bottom:429.506667pt;}
.y24{bottom:434.306667pt;}
.y87{bottom:435.426667pt;}
.y52{bottom:435.746667pt;}
.ydc{bottom:439.426667pt;}
.yc9{bottom:444.066667pt;}
.y8d{bottom:446.146667pt;}
.y69{bottom:446.466667pt;}
.y100{bottom:447.426667pt;}
.y9b{bottom:452.706667pt;}
.yae{bottom:453.666667pt;}
.y40{bottom:457.026667pt;}
.y23{bottom:461.986667pt;}
.y51{bottom:463.426667pt;}
.ydb{bottom:466.946667pt;}
.yc8{bottom:471.746667pt;}
.y68{bottom:473.986667pt;}
.yad{bottom:481.186667pt;}
.yff{bottom:482.946667pt;}
.y7e{bottom:484.386667pt;}
.y3f{bottom:484.706667pt;}
.y22{bottom:489.506667pt;}
.y50{bottom:490.946667pt;}
.yc7{bottom:499.266667pt;}
.y67{bottom:501.666667pt;}
.yf4{bottom:502.466667pt;}
.yac{bottom:509.986667pt;}
.yda{bottom:510.466667pt;}
.y3e{bottom:512.226667pt;}
.y21{bottom:517.186667pt;}
.y4f{bottom:518.466667pt;}
.y7d{bottom:522.946667pt;}
.yc6{bottom:526.946667pt;}
.y66{bottom:529.186667pt;}
.yf3{bottom:530.146667pt;}
.yab{bottom:537.506667pt;}
.yd9{bottom:538.146667pt;}
.y3d{bottom:539.906667pt;}
.y20{bottom:544.706667pt;}
.y9a{bottom:546.146667pt;}
.y7c{bottom:550.466667pt;}
.y4e{bottom:556.546667pt;}
.y65{bottom:556.866667pt;}
.yf2{bottom:557.666667pt;}
.yc5{bottom:564.866667pt;}
.yaa{bottom:565.186667pt;}
.yd8{bottom:565.666667pt;}
.y3c{bottom:567.426667pt;}
.y1f{bottom:572.386667pt;}
.y99{bottom:573.666667pt;}
.y7b{bottom:578.146667pt;}
.y64{bottom:584.386667pt;}
.ya9{bottom:592.706667pt;}
.yf1{bottom:593.346667pt;}
.y3b{bottom:595.106667pt;}
.y1e{bottom:599.906667pt;}
.y98{bottom:601.373333pt;}
.yc4{bottom:603.453333pt;}
.y7a{bottom:605.693333pt;}
.yfe{bottom:609.373333pt;}
.y63{bottom:612.093333pt;}
.ya8{bottom:620.413333pt;}
.yf0{bottom:620.893333pt;}
.y3a{bottom:622.653333pt;}
.y1d{bottom:627.613333pt;}
.y97{bottom:628.893333pt;}
.yc3{bottom:631.133333pt;}
.y79{bottom:633.373333pt;}
.yfd{bottom:636.893333pt;}
.y62{bottom:639.613333pt;}
.ya7{bottom:647.933333pt;}
.yef{bottom:648.573333pt;}
.y80{bottom:650.013333pt;}
.y39{bottom:650.333333pt;}
.y1c{bottom:655.133333pt;}
.yd7{bottom:656.573333pt;}
.yc2{bottom:658.653333pt;}
.y78{bottom:660.893333pt;}
.yfc{bottom:664.573333pt;}
.y96{bottom:666.973333pt;}
.y61{bottom:667.293333pt;}
.ya6{bottom:675.613333pt;}
.yee{bottom:676.093333pt;}
.y38{bottom:677.853333pt;}
.y1b{bottom:682.813333pt;}
.yd6{bottom:684.093333pt;}
.yc1{bottom:686.333333pt;}
.y77{bottom:688.573333pt;}
.y60{bottom:694.813333pt;}
.yfb{bottom:700.093333pt;}
.ya5{bottom:704.413333pt;}
.y37{bottom:705.533333pt;}
.y1a{bottom:710.333333pt;}
.yd5{bottom:711.773333pt;}
.yc0{bottom:713.853333pt;}
.y76{bottom:716.093333pt;}
.yed{bottom:719.773333pt;}
.y5f{bottom:722.493333pt;}
.yfa{bottom:727.773333pt;}
.ya4{bottom:731.933333pt;}
.y36{bottom:733.053333pt;}
.y19{bottom:738.013333pt;}
.ybf{bottom:741.533333pt;}
.y75{bottom:743.773333pt;}
.yec{bottom:747.293333pt;}
.yd4{bottom:749.693333pt;}
.y86{bottom:750.013333pt;}
.yf9{bottom:755.293333pt;}
.ya3{bottom:759.613333pt;}
.y5e{bottom:760.413333pt;}
.y35{bottom:760.733333pt;}
.y109{bottom:764.253333pt;}
.y18{bottom:765.533333pt;}
.ybe{bottom:770.173333pt;}
.y74{bottom:771.293333pt;}
.y85{bottom:777.693333pt;}
.yeb{bottom:782.973333pt;}
.ya2{bottom:787.133333pt;}
.yd3{bottom:787.933333pt;}
.y34{bottom:788.253333pt;}
.yf8{bottom:790.973333pt;}
.y17{bottom:793.213333pt;}
.ybd{bottom:797.853333pt;}
.y5d{bottom:798.973333pt;}
.y84{bottom:805.213333pt;}
.yea{bottom:810.533333pt;}
.ya1{bottom:814.693333pt;}
.y4d{bottom:815.973333pt;}
.yf7{bottom:818.533333pt;}
.y16{bottom:820.773333pt;}
.ybc{bottom:825.413333pt;}
.y33{bottom:826.533333pt;}
.y83{bottom:832.773333pt;}
.ya0{bottom:842.373333pt;}
.y4c{bottom:843.493333pt;}
.ye9{bottom:846.213333pt;}
.ybb{bottom:853.093333pt;}
.y32{bottom:854.213333pt;}
.y15{bottom:858.693333pt;}
.y82{bottom:860.453333pt;}
.y9f{bottom:869.893333pt;}
.y8c{bottom:871.173333pt;}
.ye8{bottom:873.733333pt;}
.y14{bottom:877.573333pt;}
.yba{bottom:880.613333pt;}
.y31{bottom:881.733333pt;}
.y13{bottom:895.653333pt;}
.y9e{bottom:897.573333pt;}
.y81{bottom:898.373333pt;}
.y8b{bottom:898.693333pt;}
.ye7{bottom:901.413333pt;}
.yb9{bottom:908.293333pt;}
.y30{bottom:909.413333pt;}
.y12{bottom:914.053333pt;}
.y2f{bottom:936.933333pt;}
.y11{bottom:944.133333pt;}
.y10{bottom:961.893333pt;}
.y2e{bottom:964.613333pt;}
.y9{bottom:982.373333pt;}
.y1{bottom:995.973333pt;}
.ha{height:46.281250pt;}
.h6{height:50.062500pt;}
.h5{height:57.787500pt;}
.h3{height:61.410000pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h9{height:64.500000pt;}
.hc{height:66.750000pt;}
.h8{height:75.465000pt;}
.h2{height:79.386667pt;}
.h4{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:111.190667pt;}
.w4{width:148.026667pt;}
.w3{width:383.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.186667pt;}
.x7{left:25.120000pt;}
.x6{left:26.720000pt;}
.x9{left:42.240000pt;}
.x8{left:45.920000pt;}
.x2{left:87.185333pt;}
.x1{left:88.841333pt;}
.xa{left:96.032000pt;}
.xb{left:108.832000pt;}
.x10{left:120.032000pt;}
.xf{left:144.026667pt;}
.x11{left:167.866667pt;}
.x3{left:200.040000pt;}
.xc{left:312.866667pt;}
.xe{left:326.306667pt;}
.xd{left:352.706667pt;}
.x5{left:583.493333pt;}
}




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