
    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_0890741451eb8ddc8fcabad0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.043945;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_7e7036f3e2bff674ed6f0e46.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_7a6ca1e0138b4b55e8d2a627.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_24b7c12d710db975ee65c28a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_18316d3863175158c5b0c0c8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_b82d0fe0885f9cbac465e176.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f66ddf96b300da269c50609a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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);}
.v4{vertical-align:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.100000px;}
.v2{vertical-align:28.200000px;}
.v3{vertical-align:33.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.204000px;}
.ls7{letter-spacing:1.800000px;}
.ls1{letter-spacing:3.000000px;}
.lsb{letter-spacing:5.400000px;}
.ls8{letter-spacing:7.800000px;}
.lsc{letter-spacing:18.048000px;}
.ls3{letter-spacing:18.900000px;}
.ls6{letter-spacing:64.710000px;}
.ls5{letter-spacing:68.040000px;}
.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;}
}
.wsa{word-spacing:-69.552000px;}
.wsd{word-spacing:-54.984000px;}
.wsc{word-spacing:-51.660000px;}
.ws7{word-spacing:-51.624000px;}
.wsf{word-spacing:-51.612000px;}
.ws8{word-spacing:-51.456000px;}
.wsb{word-spacing:-51.408000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.750000px;}
.ws1{word-spacing:-10.500000px;}
.ws9{word-spacing:-3.600000px;}
.wse{word-spacing:-3.576000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:805.740000px;}
.ws0{word-spacing:813.804000px;}
.ws2{word-spacing:869.604000px;}
._3e{margin-left:-1841.760000px;}
._58{margin-left:-870.600000px;}
._56{margin-left:-818.976000px;}
._4e{margin-left:-767.448000px;}
._51{margin-left:-679.704000px;}
._5a{margin-left:-540.816000px;}
._43{margin-left:-526.824000px;}
._52{margin-left:-383.784000px;}
._54{margin-left:-365.700000px;}
._49{margin-left:-314.184000px;}
._45{margin-left:-296.100000px;}
._4f{margin-left:-226.800000px;}
._42{margin-left:-220.140000px;}
._46{margin-left:-157.200000px;}
._4a{margin-left:-87.564000px;}
._40{margin-left:-84.276000px;}
._4{margin-left:-10.680000px;}
._30{margin-left:-9.144000px;}
._0{margin-left:-7.992000px;}
._1{margin-left:-6.624000px;}
._c{margin-left:-4.968000px;}
._2{margin-left:-3.888000px;}
._16{margin-left:-2.736000px;}
._11{margin-left:-1.296000px;}
._1e{width:1.008000px;}
._18{width:2.532000px;}
._1c{width:3.600000px;}
._1b{width:4.812000px;}
._1f{width:6.324000px;}
._1d{width:7.848000px;}
._29{width:8.856000px;}
._24{width:9.864000px;}
._19{width:10.884000px;}
._26{width:12.732000px;}
._28{width:14.688000px;}
._31{width:16.680000px;}
._50{width:17.856000px;}
._2e{width:19.656000px;}
._21{width:21.636000px;}
._20{width:23.472000px;}
._5f{width:24.480000px;}
._39{width:26.400000px;}
._34{width:28.032000px;}
._33{width:29.592000px;}
._17{width:31.584000px;}
._3a{width:32.904000px;}
._3b{width:34.056000px;}
._2b{width:37.428000px;}
._32{width:38.688000px;}
._5e{width:40.668000px;}
._41{width:41.916000px;}
._3d{width:49.812000px;}
._61{width:63.720000px;}
._3c{width:65.880000px;}
._60{width:67.752000px;}
._4d{width:69.480000px;}
._5c{width:70.632000px;}
._14{width:71.700000px;}
._5d{width:73.296000px;}
._5b{width:74.664000px;}
._47{width:84.000000px;}
._4c{width:139.032000px;}
._59{width:140.892000px;}
._2f{width:150.168000px;}
._13{width:151.212000px;}
._35{width:157.008000px;}
._23{width:158.304000px;}
._2d{width:163.056000px;}
._12{width:169.212000px;}
._2a{width:175.224000px;}
._22{width:177.168000px;}
._36{width:179.112000px;}
._2c{width:187.032000px;}
._25{width:192.360000px;}
._48{width:208.584000px;}
._4b{width:278.136000px;}
._1a{width:320.460000px;}
._b{width:339.204000px;}
._d{width:342.732000px;}
._53{width:347.856000px;}
._a{width:349.284000px;}
._10{width:356.892000px;}
._f{width:426.588000px;}
._9{width:476.124000px;}
._44{width:483.840000px;}
._55{width:486.792000px;}
._6{width:534.156000px;}
._15{width:537.756000px;}
._27{width:542.928000px;}
._e{width:590.844000px;}
._5{width:740.004000px;}
._7{width:751.956000px;}
._8{width:759.948000px;}
._57{width:765.336000px;}
._37{width:903.360000px;}
._38{width:905.460000px;}
._3{width:933.360000px;}
._3f{width:1800.204000px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.600000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1c{bottom:88.894500px;}
.y1b{bottom:130.219500px;}
.yb7{bottom:131.344500px;}
.y5c{bottom:131.719500px;}
.y35{bottom:145.519500px;}
.y9c{bottom:146.119500px;}
.y1a{bottom:147.544500px;}
.yf0{bottom:148.969500px;}
.y5b{bottom:152.419500px;}
.y7c{bottom:162.394500px;}
.y99{bottom:162.769500px;}
.y34{bottom:166.219500px;}
.yed{bottom:168.244500px;}
.yef{bottom:169.669500px;}
.yb6{bottom:172.744500px;}
.y55{bottom:173.119500px;}
.y9f{bottom:180.619500px;}
.y7b{bottom:183.094500px;}
.y98{bottom:183.469500px;}
.y33{bottom:186.919500px;}
.y89{bottom:188.644500px;}
.yec{bottom:188.944500px;}
.yb5{bottom:193.444500px;}
.y5a{bottom:193.819500px;}
.y19{bottom:198.994500px;}
.y7a{bottom:203.794500px;}
.y9e{bottom:204.769500px;}
.yd1{bottom:207.619500px;}
.yf9{bottom:211.069500px;}
.yee{bottom:211.669500px;}
.yb4{bottom:214.144500px;}
.y54{bottom:214.519500px;}
.y79{bottom:224.494500px;}
.y97{bottom:224.869500px;}
.y32{bottom:228.319500px;}
.y88{bottom:230.044500px;}
.yeb{bottom:230.344500px;}
.yf8{bottom:231.769500px;}
.y53{bottom:235.219500px;}
.y18{bottom:240.394500px;}
.y78{bottom:245.194500px;}
.y9b{bottom:249.019500px;}
.y87{bottom:250.744500px;}
.yea{bottom:251.044500px;}
.yf7{bottom:252.469500px;}
.y9d{bottom:253.069500px;}
.yb3{bottom:255.544500px;}
.y52{bottom:255.919500px;}
.y96{bottom:266.269500px;}
.y31{bottom:269.719500px;}
.ye9{bottom:271.744500px;}
.yb2{bottom:276.244500px;}
.y51{bottom:276.619500px;}
.y17{bottom:284.119500px;}
.y77{bottom:286.594500px;}
.y30{bottom:290.419500px;}
.y86{bottom:292.144500px;}
.yf6{bottom:293.869500px;}
.y50{bottom:297.319500px;}
.y95{bottom:307.669500px;}
.y2f{bottom:311.119500px;}
.y85{bottom:312.844500px;}
.yf5{bottom:314.569500px;}
.yb1{bottom:317.644500px;}
.y59{bottom:318.019500px;}
.ye8{bottom:322.144500px;}
.y76{bottom:327.994500px;}
.y94{bottom:328.369500px;}
.y16{bottom:331.819500px;}
.yb0{bottom:338.344500px;}
.y4f{bottom:338.719500px;}
.ye7{bottom:342.844500px;}
.y75{bottom:348.694500px;}
.y2e{bottom:352.519500px;}
.y84{bottom:354.244500px;}
.yf4{bottom:355.969500px;}
.yaf{bottom:359.044500px;}
.y58{bottom:359.419500px;}
.y74{bottom:369.394500px;}
.y93{bottom:369.769500px;}
.y15{bottom:373.219500px;}
.y4e{bottom:380.119500px;}
.ye6{bottom:381.544500px;}
.y73{bottom:390.094500px;}
.y2d{bottom:393.919500px;}
.y83{bottom:395.644500px;}
.yf3{bottom:397.369500px;}
.yae{bottom:400.444500px;}
.y4d{bottom:400.819500px;}
.ye5{bottom:402.244500px;}
.y72{bottom:410.794500px;}
.y92{bottom:411.169500px;}
.y14{bottom:414.619500px;}
.yf2{bottom:418.069500px;}
.yad{bottom:421.144500px;}
.y4c{bottom:421.519500px;}
.ye4{bottom:422.944500px;}
.y91{bottom:431.869500px;}
.y2c{bottom:435.319500px;}
.y82{bottom:437.044500px;}
.yac{bottom:441.844500px;}
.y60{bottom:442.219500px;}
.y71{bottom:452.194500px;}
.y13{bottom:456.019500px;}
.yab{bottom:462.544500px;}
.y4b{bottom:462.919500px;}
.ye3{bottom:464.344500px;}
.y90{bottom:473.269500px;}
.y2b{bottom:476.719500px;}
.y81{bottom:478.444500px;}
.yf1{bottom:480.769500px;}
.yaa{bottom:483.244500px;}
.y57{bottom:483.619500px;}
.ye2{bottom:485.044500px;}
.y70{bottom:493.594500px;}
.y8f{bottom:493.969500px;}
.y12{bottom:497.419500px;}
.yd0{bottom:498.019500px;}
.y4a{bottom:504.319500px;}
.ye1{bottom:505.744500px;}
.y6f{bottom:514.294500px;}
.y2a{bottom:518.119500px;}
.y80{bottom:519.844500px;}
.ya9{bottom:524.644500px;}
.y49{bottom:525.019500px;}
.y6e{bottom:534.994500px;}
.y8e{bottom:535.369500px;}
.y11{bottom:538.819500px;}
.y7f{bottom:540.544500px;}
.ycf{bottom:542.269500px;}
.ya8{bottom:545.344500px;}
.y5f{bottom:545.719500px;}
.ye0{bottom:547.144500px;}
.y6d{bottom:555.694500px;}
.y8d{bottom:556.069500px;}
.y29{bottom:559.519500px;}
.yce{bottom:562.969500px;}
.y48{bottom:566.419500px;}
.y6c{bottom:576.769500px;}
.y10{bottom:580.219500px;}
.y7e{bottom:582.544500px;}
.ycd{bottom:583.669500px;}
.ya7{bottom:586.744500px;}
.y5e{bottom:587.119500px;}
.ydf{bottom:597.544500px;}
.y28{bottom:600.919500px;}
.ycc{bottom:604.369500px;}
.y9a{bottom:604.969500px;}
.ya6{bottom:607.444500px;}
.y47{bottom:607.819500px;}
.y6b{bottom:618.169500px;}
.yde{bottom:618.244500px;}
.yf{bottom:621.619500px;}
.ycb{bottom:625.069500px;}
.ya5{bottom:628.144500px;}
.y46{bottom:628.519500px;}
.y8c{bottom:638.869500px;}
.ydd{bottom:638.944500px;}
.y27{bottom:642.319500px;}
.y45{bottom:649.219500px;}
.y6a{bottom:659.569500px;}
.ye{bottom:663.019500px;}
.yca{bottom:666.469500px;}
.ya4{bottom:669.544500px;}
.y44{bottom:669.919500px;}
.y69{bottom:680.269500px;}
.y26{bottom:683.719500px;}
.yc9{bottom:687.169500px;}
.y43{bottom:690.619500px;}
.y68{bottom:700.969500px;}
.yd{bottom:704.419500px;}
.yc8{bottom:707.869500px;}
.ya3{bottom:710.944500px;}
.y42{bottom:711.319500px;}
.y67{bottom:721.669500px;}
.yc{bottom:725.119500px;}
.ydc{bottom:725.344500px;}
.yc7{bottom:728.569500px;}
.ya2{bottom:731.644500px;}
.y41{bottom:732.019500px;}
.y66{bottom:742.369500px;}
.y25{bottom:745.819500px;}
.ydb{bottom:746.044500px;}
.yc6{bottom:749.269500px;}
.ya1{bottom:752.344500px;}
.y40{bottom:752.719500px;}
.y8b{bottom:763.069500px;}
.yb{bottom:766.519500px;}
.yda{bottom:766.744500px;}
.yc5{bottom:769.969500px;}
.y3f{bottom:773.419500px;}
.y65{bottom:783.769500px;}
.y24{bottom:787.219500px;}
.yc4{bottom:790.669500px;}
.ya0{bottom:793.744500px;}
.y3e{bottom:794.119500px;}
.ya{bottom:807.919500px;}
.yd9{bottom:808.144500px;}
.yc3{bottom:811.369500px;}
.y7d{bottom:814.819500px;}
.y64{bottom:825.169500px;}
.y23{bottom:828.619500px;}
.y8a{bottom:829.219500px;}
.yc2{bottom:832.069500px;}
.y3d{bottom:835.519500px;}
.y63{bottom:845.869500px;}
.y9{bottom:849.319500px;}
.yd8{bottom:849.544500px;}
.yc1{bottom:852.769500px;}
.y5d{bottom:856.219500px;}
.y62{bottom:866.569500px;}
.y22{bottom:870.019500px;}
.yd7{bottom:870.244500px;}
.yc0{bottom:873.469500px;}
.y3c{bottom:876.919500px;}
.y8{bottom:890.719500px;}
.yd6{bottom:890.944500px;}
.ybf{bottom:894.169500px;}
.y3b{bottom:897.619500px;}
.y61{bottom:907.969500px;}
.y21{bottom:911.419500px;}
.yd5{bottom:911.644500px;}
.ybe{bottom:914.869500px;}
.y3a{bottom:918.319500px;}
.y7{bottom:932.119500px;}
.ybd{bottom:935.569500px;}
.y39{bottom:939.019500px;}
.y20{bottom:953.419500px;}
.ybc{bottom:956.269500px;}
.y56{bottom:959.719500px;}
.yd4{bottom:962.044500px;}
.y6{bottom:974.794500px;}
.ybb{bottom:976.969500px;}
.y38{bottom:980.419500px;}
.yd3{bottom:982.744500px;}
.yba{bottom:997.669500px;}
.y1f{bottom:1001.119500px;}
.yd2{bottom:1003.819500px;}
.yb9{bottom:1018.369500px;}
.y37{bottom:1021.819500px;}
.y5{bottom:1029.994500px;}
.yb8{bottom:1039.069500px;}
.y1e{bottom:1042.519500px;}
.y36{bottom:1063.219500px;}
.y4{bottom:1081.069500px;}
.y1d{bottom:1083.919500px;}
.y3{bottom:1139.944500px;}
.y2{bottom:1160.644500px;}
.h9{height:43.447266px;}
.he{height:50.695312px;}
.h7{height:52.136719px;}
.h4{height:54.547266px;}
.h8{height:58.613086px;}
.hb{height:59.144531px;}
.h3{height:59.625000px;}
.h5{height:60.826172px;}
.hd{height:62.981250px;}
.hc{height:63.360000px;}
.ha{height:68.492285px;}
.h6{height:79.500000px;}
.h1{height:1262.250000px;}
.h2{height:1262.493000px;}
.h0{height:1262.537008px;}
.w2{width:893.125500px;}
.w0{width:893.168504px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:85.200000px;}
.x16{left:95.625000px;}
.x14{left:102.375000px;}
.x1a{left:103.725000px;}
.xf{left:112.200000px;}
.x1c{left:115.200000px;}
.x20{left:120.000000px;}
.xc{left:138.375000px;}
.xd{left:148.950000px;}
.x1f{left:154.725000px;}
.x4{left:182.400000px;}
.x5{left:187.425000px;}
.x24{left:193.275000px;}
.x21{left:204.675000px;}
.x15{left:231.375000px;}
.x23{left:232.425000px;}
.xb{left:235.650000px;}
.x10{left:241.875000px;}
.x12{left:252.000000px;}
.xe{left:269.475000px;}
.x1{left:286.725000px;}
.x22{left:308.100000px;}
.x1e{left:328.575000px;}
.x11{left:348.075000px;}
.x8{left:351.075000px;}
.x6{left:372.975000px;}
.x2{left:380.550000px;}
.x3{left:383.475000px;}
.x1b{left:385.500000px;}
.x9{left:400.650000px;}
.x25{left:419.250000px;}
.x13{left:421.725000px;}
.xa{left:426.225000px;}
.x1d{left:428.775000px;}
.x17{left:556.050000px;}
.x18{left:585.825000px;}
.x19{left:654.150000px;}
@media print{
.v4{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.866667pt;}
.v2{vertical-align:25.066667pt;}
.v3{vertical-align:29.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.181333pt;}
.ls7{letter-spacing:1.600000pt;}
.ls1{letter-spacing:2.666667pt;}
.lsb{letter-spacing:4.800000pt;}
.ls8{letter-spacing:6.933333pt;}
.lsc{letter-spacing:16.042667pt;}
.ls3{letter-spacing:16.800000pt;}
.ls6{letter-spacing:57.520000pt;}
.ls5{letter-spacing:60.480000pt;}
.wsa{word-spacing:-61.824000pt;}
.wsd{word-spacing:-48.874667pt;}
.wsc{word-spacing:-45.920000pt;}
.ws7{word-spacing:-45.888000pt;}
.wsf{word-spacing:-45.877333pt;}
.ws8{word-spacing:-45.738667pt;}
.wsb{word-spacing:-45.696000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.000000pt;}
.ws1{word-spacing:-9.333333pt;}
.ws9{word-spacing:-3.200000pt;}
.wse{word-spacing:-3.178667pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:716.213333pt;}
.ws0{word-spacing:723.381333pt;}
.ws2{word-spacing:772.981333pt;}
._3e{margin-left:-1637.120000pt;}
._58{margin-left:-773.866667pt;}
._56{margin-left:-727.978667pt;}
._4e{margin-left:-682.176000pt;}
._51{margin-left:-604.181333pt;}
._5a{margin-left:-480.725333pt;}
._43{margin-left:-468.288000pt;}
._52{margin-left:-341.141333pt;}
._54{margin-left:-325.066667pt;}
._49{margin-left:-279.274667pt;}
._45{margin-left:-263.200000pt;}
._4f{margin-left:-201.600000pt;}
._42{margin-left:-195.680000pt;}
._46{margin-left:-139.733333pt;}
._4a{margin-left:-77.834667pt;}
._40{margin-left:-74.912000pt;}
._4{margin-left:-9.493333pt;}
._30{margin-left:-8.128000pt;}
._0{margin-left:-7.104000pt;}
._1{margin-left:-5.888000pt;}
._c{margin-left:-4.416000pt;}
._2{margin-left:-3.456000pt;}
._16{margin-left:-2.432000pt;}
._11{margin-left:-1.152000pt;}
._1e{width:0.896000pt;}
._18{width:2.250667pt;}
._1c{width:3.200000pt;}
._1b{width:4.277333pt;}
._1f{width:5.621333pt;}
._1d{width:6.976000pt;}
._29{width:7.872000pt;}
._24{width:8.768000pt;}
._19{width:9.674667pt;}
._26{width:11.317333pt;}
._28{width:13.056000pt;}
._31{width:14.826667pt;}
._50{width:15.872000pt;}
._2e{width:17.472000pt;}
._21{width:19.232000pt;}
._20{width:20.864000pt;}
._5f{width:21.760000pt;}
._39{width:23.466667pt;}
._34{width:24.917333pt;}
._33{width:26.304000pt;}
._17{width:28.074667pt;}
._3a{width:29.248000pt;}
._3b{width:30.272000pt;}
._2b{width:33.269333pt;}
._32{width:34.389333pt;}
._5e{width:36.149333pt;}
._41{width:37.258667pt;}
._3d{width:44.277333pt;}
._61{width:56.640000pt;}
._3c{width:58.560000pt;}
._60{width:60.224000pt;}
._4d{width:61.760000pt;}
._5c{width:62.784000pt;}
._14{width:63.733333pt;}
._5d{width:65.152000pt;}
._5b{width:66.368000pt;}
._47{width:74.666667pt;}
._4c{width:123.584000pt;}
._59{width:125.237333pt;}
._2f{width:133.482667pt;}
._13{width:134.410667pt;}
._35{width:139.562667pt;}
._23{width:140.714667pt;}
._2d{width:144.938667pt;}
._12{width:150.410667pt;}
._2a{width:155.754667pt;}
._22{width:157.482667pt;}
._36{width:159.210667pt;}
._2c{width:166.250667pt;}
._25{width:170.986667pt;}
._48{width:185.408000pt;}
._4b{width:247.232000pt;}
._1a{width:284.853333pt;}
._b{width:301.514667pt;}
._d{width:304.650667pt;}
._53{width:309.205333pt;}
._a{width:310.474667pt;}
._10{width:317.237333pt;}
._f{width:379.189333pt;}
._9{width:423.221333pt;}
._44{width:430.080000pt;}
._55{width:432.704000pt;}
._6{width:474.805333pt;}
._15{width:478.005333pt;}
._27{width:482.602667pt;}
._e{width:525.194667pt;}
._5{width:657.781333pt;}
._7{width:668.405333pt;}
._8{width:675.509333pt;}
._57{width:680.298667pt;}
._37{width:802.986667pt;}
._38{width:804.853333pt;}
._3{width:829.653333pt;}
._3f{width:1600.181333pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:43.200000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1c{bottom:79.017333pt;}
.y1b{bottom:115.750667pt;}
.yb7{bottom:116.750667pt;}
.y5c{bottom:117.084000pt;}
.y35{bottom:129.350667pt;}
.y9c{bottom:129.884000pt;}
.y1a{bottom:131.150667pt;}
.yf0{bottom:132.417333pt;}
.y5b{bottom:135.484000pt;}
.y7c{bottom:144.350667pt;}
.y99{bottom:144.684000pt;}
.y34{bottom:147.750667pt;}
.yed{bottom:149.550667pt;}
.yef{bottom:150.817333pt;}
.yb6{bottom:153.550667pt;}
.y55{bottom:153.884000pt;}
.y9f{bottom:160.550667pt;}
.y7b{bottom:162.750667pt;}
.y98{bottom:163.084000pt;}
.y33{bottom:166.150667pt;}
.y89{bottom:167.684000pt;}
.yec{bottom:167.950667pt;}
.yb5{bottom:171.950667pt;}
.y5a{bottom:172.284000pt;}
.y19{bottom:176.884000pt;}
.y7a{bottom:181.150667pt;}
.y9e{bottom:182.017333pt;}
.yd1{bottom:184.550667pt;}
.yf9{bottom:187.617333pt;}
.yee{bottom:188.150667pt;}
.yb4{bottom:190.350667pt;}
.y54{bottom:190.684000pt;}
.y79{bottom:199.550667pt;}
.y97{bottom:199.884000pt;}
.y32{bottom:202.950667pt;}
.y88{bottom:204.484000pt;}
.yeb{bottom:204.750667pt;}
.yf8{bottom:206.017333pt;}
.y53{bottom:209.084000pt;}
.y18{bottom:213.684000pt;}
.y78{bottom:217.950667pt;}
.y9b{bottom:221.350667pt;}
.y87{bottom:222.884000pt;}
.yea{bottom:223.150667pt;}
.yf7{bottom:224.417333pt;}
.y9d{bottom:224.950667pt;}
.yb3{bottom:227.150667pt;}
.y52{bottom:227.484000pt;}
.y96{bottom:236.684000pt;}
.y31{bottom:239.750667pt;}
.ye9{bottom:241.550667pt;}
.yb2{bottom:245.550667pt;}
.y51{bottom:245.884000pt;}
.y17{bottom:252.550667pt;}
.y77{bottom:254.750667pt;}
.y30{bottom:258.150667pt;}
.y86{bottom:259.684000pt;}
.yf6{bottom:261.217333pt;}
.y50{bottom:264.284000pt;}
.y95{bottom:273.484000pt;}
.y2f{bottom:276.550667pt;}
.y85{bottom:278.084000pt;}
.yf5{bottom:279.617333pt;}
.yb1{bottom:282.350667pt;}
.y59{bottom:282.684000pt;}
.ye8{bottom:286.350667pt;}
.y76{bottom:291.550667pt;}
.y94{bottom:291.884000pt;}
.y16{bottom:294.950667pt;}
.yb0{bottom:300.750667pt;}
.y4f{bottom:301.084000pt;}
.ye7{bottom:304.750667pt;}
.y75{bottom:309.950667pt;}
.y2e{bottom:313.350667pt;}
.y84{bottom:314.884000pt;}
.yf4{bottom:316.417333pt;}
.yaf{bottom:319.150667pt;}
.y58{bottom:319.484000pt;}
.y74{bottom:328.350667pt;}
.y93{bottom:328.684000pt;}
.y15{bottom:331.750667pt;}
.y4e{bottom:337.884000pt;}
.ye6{bottom:339.150667pt;}
.y73{bottom:346.750667pt;}
.y2d{bottom:350.150667pt;}
.y83{bottom:351.684000pt;}
.yf3{bottom:353.217333pt;}
.yae{bottom:355.950667pt;}
.y4d{bottom:356.284000pt;}
.ye5{bottom:357.550667pt;}
.y72{bottom:365.150667pt;}
.y92{bottom:365.484000pt;}
.y14{bottom:368.550667pt;}
.yf2{bottom:371.617333pt;}
.yad{bottom:374.350667pt;}
.y4c{bottom:374.684000pt;}
.ye4{bottom:375.950667pt;}
.y91{bottom:383.884000pt;}
.y2c{bottom:386.950667pt;}
.y82{bottom:388.484000pt;}
.yac{bottom:392.750667pt;}
.y60{bottom:393.084000pt;}
.y71{bottom:401.950667pt;}
.y13{bottom:405.350667pt;}
.yab{bottom:411.150667pt;}
.y4b{bottom:411.484000pt;}
.ye3{bottom:412.750667pt;}
.y90{bottom:420.684000pt;}
.y2b{bottom:423.750667pt;}
.y81{bottom:425.284000pt;}
.yf1{bottom:427.350667pt;}
.yaa{bottom:429.550667pt;}
.y57{bottom:429.884000pt;}
.ye2{bottom:431.150667pt;}
.y70{bottom:438.750667pt;}
.y8f{bottom:439.084000pt;}
.y12{bottom:442.150667pt;}
.yd0{bottom:442.684000pt;}
.y4a{bottom:448.284000pt;}
.ye1{bottom:449.550667pt;}
.y6f{bottom:457.150667pt;}
.y2a{bottom:460.550667pt;}
.y80{bottom:462.084000pt;}
.ya9{bottom:466.350667pt;}
.y49{bottom:466.684000pt;}
.y6e{bottom:475.550667pt;}
.y8e{bottom:475.884000pt;}
.y11{bottom:478.950667pt;}
.y7f{bottom:480.484000pt;}
.ycf{bottom:482.017333pt;}
.ya8{bottom:484.750667pt;}
.y5f{bottom:485.084000pt;}
.ye0{bottom:486.350667pt;}
.y6d{bottom:493.950667pt;}
.y8d{bottom:494.284000pt;}
.y29{bottom:497.350667pt;}
.yce{bottom:500.417333pt;}
.y48{bottom:503.484000pt;}
.y6c{bottom:512.684000pt;}
.y10{bottom:515.750667pt;}
.y7e{bottom:517.817333pt;}
.ycd{bottom:518.817333pt;}
.ya7{bottom:521.550667pt;}
.y5e{bottom:521.884000pt;}
.ydf{bottom:531.150667pt;}
.y28{bottom:534.150667pt;}
.ycc{bottom:537.217333pt;}
.y9a{bottom:537.750667pt;}
.ya6{bottom:539.950667pt;}
.y47{bottom:540.284000pt;}
.y6b{bottom:549.484000pt;}
.yde{bottom:549.550667pt;}
.yf{bottom:552.550667pt;}
.ycb{bottom:555.617333pt;}
.ya5{bottom:558.350667pt;}
.y46{bottom:558.684000pt;}
.y8c{bottom:567.884000pt;}
.ydd{bottom:567.950667pt;}
.y27{bottom:570.950667pt;}
.y45{bottom:577.084000pt;}
.y6a{bottom:586.284000pt;}
.ye{bottom:589.350667pt;}
.yca{bottom:592.417333pt;}
.ya4{bottom:595.150667pt;}
.y44{bottom:595.484000pt;}
.y69{bottom:604.684000pt;}
.y26{bottom:607.750667pt;}
.yc9{bottom:610.817333pt;}
.y43{bottom:613.884000pt;}
.y68{bottom:623.084000pt;}
.yd{bottom:626.150667pt;}
.yc8{bottom:629.217333pt;}
.ya3{bottom:631.950667pt;}
.y42{bottom:632.284000pt;}
.y67{bottom:641.484000pt;}
.yc{bottom:644.550667pt;}
.ydc{bottom:644.750667pt;}
.yc7{bottom:647.617333pt;}
.ya2{bottom:650.350667pt;}
.y41{bottom:650.684000pt;}
.y66{bottom:659.884000pt;}
.y25{bottom:662.950667pt;}
.ydb{bottom:663.150667pt;}
.yc6{bottom:666.017333pt;}
.ya1{bottom:668.750667pt;}
.y40{bottom:669.084000pt;}
.y8b{bottom:678.284000pt;}
.yb{bottom:681.350667pt;}
.yda{bottom:681.550667pt;}
.yc5{bottom:684.417333pt;}
.y3f{bottom:687.484000pt;}
.y65{bottom:696.684000pt;}
.y24{bottom:699.750667pt;}
.yc4{bottom:702.817333pt;}
.ya0{bottom:705.550667pt;}
.y3e{bottom:705.884000pt;}
.ya{bottom:718.150667pt;}
.yd9{bottom:718.350667pt;}
.yc3{bottom:721.217333pt;}
.y7d{bottom:724.284000pt;}
.y64{bottom:733.484000pt;}
.y23{bottom:736.550667pt;}
.y8a{bottom:737.084000pt;}
.yc2{bottom:739.617333pt;}
.y3d{bottom:742.684000pt;}
.y63{bottom:751.884000pt;}
.y9{bottom:754.950667pt;}
.yd8{bottom:755.150667pt;}
.yc1{bottom:758.017333pt;}
.y5d{bottom:761.084000pt;}
.y62{bottom:770.284000pt;}
.y22{bottom:773.350667pt;}
.yd7{bottom:773.550667pt;}
.yc0{bottom:776.417333pt;}
.y3c{bottom:779.484000pt;}
.y8{bottom:791.750667pt;}
.yd6{bottom:791.950667pt;}
.ybf{bottom:794.817333pt;}
.y3b{bottom:797.884000pt;}
.y61{bottom:807.084000pt;}
.y21{bottom:810.150667pt;}
.yd5{bottom:810.350667pt;}
.ybe{bottom:813.217333pt;}
.y3a{bottom:816.284000pt;}
.y7{bottom:828.550667pt;}
.ybd{bottom:831.617333pt;}
.y39{bottom:834.684000pt;}
.y20{bottom:847.484000pt;}
.ybc{bottom:850.017333pt;}
.y56{bottom:853.084000pt;}
.yd4{bottom:855.150667pt;}
.y6{bottom:866.484000pt;}
.ybb{bottom:868.417333pt;}
.y38{bottom:871.484000pt;}
.yd3{bottom:873.550667pt;}
.yba{bottom:886.817333pt;}
.y1f{bottom:889.884000pt;}
.yd2{bottom:892.284000pt;}
.yb9{bottom:905.217333pt;}
.y37{bottom:908.284000pt;}
.y5{bottom:915.550667pt;}
.yb8{bottom:923.617333pt;}
.y1e{bottom:926.684000pt;}
.y36{bottom:945.084000pt;}
.y4{bottom:960.950667pt;}
.y1d{bottom:963.484000pt;}
.y3{bottom:1013.284000pt;}
.y2{bottom:1031.684000pt;}
.h9{height:38.619792pt;}
.he{height:45.062500pt;}
.h7{height:46.343750pt;}
.h4{height:48.486458pt;}
.h8{height:52.100521pt;}
.hb{height:52.572917pt;}
.h3{height:53.000000pt;}
.h5{height:54.067708pt;}
.hd{height:55.983333pt;}
.hc{height:56.320000pt;}
.ha{height:60.882031pt;}
.h6{height:70.666667pt;}
.h1{height:1122.000000pt;}
.h2{height:1122.216000pt;}
.h0{height:1122.255118pt;}
.w2{width:793.889333pt;}
.w0{width:793.927559pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.733333pt;}
.x16{left:85.000000pt;}
.x14{left:91.000000pt;}
.x1a{left:92.200000pt;}
.xf{left:99.733333pt;}
.x1c{left:102.400000pt;}
.x20{left:106.666667pt;}
.xc{left:123.000000pt;}
.xd{left:132.400000pt;}
.x1f{left:137.533333pt;}
.x4{left:162.133333pt;}
.x5{left:166.600000pt;}
.x24{left:171.800000pt;}
.x21{left:181.933333pt;}
.x15{left:205.666667pt;}
.x23{left:206.600000pt;}
.xb{left:209.466667pt;}
.x10{left:215.000000pt;}
.x12{left:224.000000pt;}
.xe{left:239.533333pt;}
.x1{left:254.866667pt;}
.x22{left:273.866667pt;}
.x1e{left:292.066667pt;}
.x11{left:309.400000pt;}
.x8{left:312.066667pt;}
.x6{left:331.533333pt;}
.x2{left:338.266667pt;}
.x3{left:340.866667pt;}
.x1b{left:342.666667pt;}
.x9{left:356.133333pt;}
.x25{left:372.666667pt;}
.x13{left:374.866667pt;}
.xa{left:378.866667pt;}
.x1d{left:381.133333pt;}
.x17{left:494.266667pt;}
.x18{left:520.733333pt;}
.x19{left:581.466667pt;}
}




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