
    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_ccf2d601881da3c18f17f25c.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_6feec097bffe7e0640a668e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_1ebebe642fb5335d5178a65a.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_633970a19646417d8ec59a8a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_5d123772bb4c8abe91c34807.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_01a6ec57fd7dd2bb48c80de0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_44c8b39e5875df1338158736.woff')format("woff");}.ff7{font-family:ff7;line-height:1.119141;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_e7ce16baa1a89424f284c432.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_39a866decc571175c249076a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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;}
.ls22{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.314400px;}
.ls24{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.081600px;}
.ls21{letter-spacing:-0.021960px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.018720px;}
.lsd{letter-spacing:0.021960px;}
.ls2{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.067200px;}
.ls15{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.087840px;}
.ls11{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.090600px;}
.ls1{letter-spacing:0.090720px;}
.ls7{letter-spacing:0.134400px;}
.ls8{letter-spacing:0.134640px;}
.ls23{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.162600px;}
.ls19{letter-spacing:0.170400px;}
.ls20{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.405360px;}
.lse{letter-spacing:0.427200px;}
.lsc{letter-spacing:0.450600px;}
.lsf{letter-spacing:0.536520px;}
.ls4{letter-spacing:0.724680px;}
.ls13{letter-spacing:0.744000px;}
.ls16{letter-spacing:0.765360px;}
.ls18{letter-spacing:0.810000px;}
.ls5{letter-spacing:0.834000px;}
.ls1e{letter-spacing:9.405360px;}
.ls12{letter-spacing:31.005360px;}
.ls1b{letter-spacing:50.085360px;}
.ls6{letter-spacing:59.445360px;}
.ls1f{letter-spacing:77.695200px;}
.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;}
}
.ws5{word-spacing:-65.880000px;}
.ws3{word-spacing:-26.639760px;}
.wsa{word-spacing:-23.481240px;}
.ws4{word-spacing:-19.148640px;}
.wsb{word-spacing:-19.124640px;}
.wse{word-spacing:-18.494640px;}
.ws6{word-spacing:-18.449040px;}
.ws0{word-spacing:-18.405240px;}
.ws7{word-spacing:-18.381840px;}
.ws8{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.336600px;}
.ws1{word-spacing:-18.314640px;}
.wsf{word-spacing:-17.954640px;}
.ws10{word-spacing:-16.866960px;}
.ws11{word-spacing:-16.533360px;}
.ws2{word-spacing:-15.012000px;}
.wsc{word-spacing:-13.329360px;}
.ws9{word-spacing:0.000000px;}
._11{margin-left:-4.018680px;}
._6{margin-left:-2.569320px;}
._7{margin-left:-1.515240px;}
._0{width:1.054080px;}
._3{width:2.564760px;}
._5{width:3.802560px;}
._4{width:5.045280px;}
._c{width:6.983280px;}
._a{width:8.763120px;}
._d{width:10.211400px;}
._18{width:12.222240px;}
._9{width:13.348560px;}
._8{width:14.357520px;}
._b{width:16.256520px;}
._10{width:17.294400px;}
._1b{width:21.147480px;}
._19{width:25.209360px;}
._13{width:26.506440px;}
._2{width:27.778680px;}
._15{width:29.118960px;}
._12{width:30.304800px;}
._f{width:32.083560px;}
._14{width:50.085360px;}
._16{width:59.380560px;}
._1a{width:71.282160px;}
._17{width:79.119600px;}
._e{width:105.759360px;}
._1{width:132.399120px;}
.fc7{color:rgb(0,112,192);}
.fc5{color:rgb(149,79,114);}
.fc4{color:rgb(0,85,86);}
.fc3{color:rgb(255,129,78);}
.fc2{color:rgb(0,181,122);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:24.120000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:60.120000px;}
.fsa{font-size:60.240000px;}
.fs0{font-size:65.880000px;}
.fsc{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:1.620000px;}
.y5d{bottom:2.700000px;}
.y5f{bottom:3.240000px;}
.y26{bottom:3.690000px;}
.y66{bottom:5.670000px;}
.y9f{bottom:6.660000px;}
.ya7{bottom:7.260000px;}
.y62{bottom:8.220000px;}
.yee{bottom:9.510000px;}
.y5{bottom:14.040000px;}
.y25{bottom:22.680000px;}
.y61{bottom:25.410000px;}
.y64{bottom:40.080000px;}
.y24{bottom:41.670000px;}
.y4{bottom:41.940000px;}
.y23{bottom:69.660000px;}
.y84{bottom:71.010000px;}
.y5b{bottom:72.000000px;}
.y1f{bottom:74.520000px;}
.y9d{bottom:78.300000px;}
.ya4{bottom:82.860000px;}
.y22{bottom:88.560000px;}
.y83{bottom:92.790000px;}
.y5a{bottom:93.870000px;}
.y1e{bottom:96.300000px;}
.y45{bottom:96.840000px;}
.y9c{bottom:100.170000px;}
.y21{bottom:107.550000px;}
.y59{bottom:115.650000px;}
.y1d{bottom:118.170000px;}
.y9b{bottom:123.120000px;}
.y44{bottom:123.660000px;}
.y82{bottom:124.740000px;}
.y58{bottom:134.010000px;}
.y1c{bottom:139.950000px;}
.y81{bottom:146.520000px;}
.y5e{bottom:147.780000px;}
.y43{bottom:148.230000px;}
.y9a{bottom:154.980000px;}
.y1b{bottom:161.820000px;}
.y80{bottom:179.010000px;}
.y1a{bottom:184.770000px;}
.ycf{bottom:186.300000px;}
.y99{bottom:187.470000px;}
.y19{bottom:207.720000px;}
.yce{bottom:208.170000px;}
.y7f{bottom:214.110000px;}
.y98{bottom:222.570000px;}
.y7e{bottom:235.980000px;}
.ycd{bottom:238.950000px;}
.y18{bottom:239.580000px;}
.y97{bottom:244.440000px;}
.y7d{bottom:257.760000px;}
.ycc{bottom:260.820000px;}
.y9e{bottom:261.720000px;}
.y17{bottom:270.360000px;}
.y96{bottom:279.270000px;}
.ycb{bottom:282.600000px;}
.y7c{bottom:288.630000px;}
.y16{bottom:292.230000px;}
.yca{bottom:304.470000px;}
.y7b{bottom:310.410000px;}
.y15{bottom:314.010000px;}
.ye0{bottom:315.000000px;}
.yc9{bottom:326.250000px;}
.y7a{bottom:332.190000px;}
.y14{bottom:335.880000px;}
.y63{bottom:345.870000px;}
.yc8{bottom:357.120000px;}
.y13{bottom:357.660000px;}
.y60{bottom:360.000000px;}
.y79{bottom:363.060000px;}
.y65{bottom:368.760000px;}
.yc7{bottom:378.930000px;}
.y78{bottom:384.960000px;}
.y12{bottom:388.560000px;}
.yc6{bottom:400.710000px;}
.y77{bottom:407.820000px;}
.y11{bottom:411.510000px;}
.y57{bottom:414.840000px;}
.yc5{bottom:422.580000px;}
.y76{bottom:429.690000px;}
.y10{bottom:434.460000px;}
.y56{bottom:436.710000px;}
.yc4{bottom:444.360000px;}
.y75{bottom:452.640000px;}
.y42{bottom:454.710000px;}
.y55{bottom:458.490000px;}
.yc3{bottom:466.230000px;}
.yf{bottom:466.320000px;}
.yde{bottom:467.490000px;}
.y41{bottom:476.490000px;}
.y74{bottom:484.500000px;}
.ydd{bottom:484.770000px;}
.yc2{bottom:488.010000px;}
.y54{bottom:489.360000px;}
.ye{bottom:497.100000px;}
.y40{bottom:498.360000px;}
.y95{bottom:500.250000px;}
.y73{bottom:506.370000px;}
.yc1{bottom:510.960000px;}
.ydc{bottom:511.050000px;}
.y53{bottom:511.140000px;}
.yd{bottom:518.970000px;}
.y3f{bottom:520.140000px;}
.y94{bottom:522.030000px;}
.ydb{bottom:528.330000px;}
.y52{bottom:533.010000px;}
.y72{bottom:533.640000px;}
.yc0{bottom:533.910000px;}
.y3e{bottom:542.010000px;}
.y93{bottom:543.900000px;}
.yc{bottom:552.630000px;}
.yda{bottom:554.520000px;}
.ybf{bottom:555.690000px;}
.y51{bottom:560.280000px;}
.y3d{bottom:564.960000px;}
.y5c{bottom:566.040000px;}
.yd9{bottom:571.800000px;}
.y92{bottom:576.300000px;}
.ybe{bottom:577.560000px;}
.yb{bottom:584.400000px;}
.y3c{bottom:586.740000px;}
.yd8{bottom:597.990000px;}
.ybd{bottom:599.340000px;}
.y3b{bottom:608.520000px;}
.y91{bottom:611.490000px;}
.ybc{bottom:621.120000px;}
.yd7{bottom:624.270000px;}
.ya{bottom:630.030000px;}
.y3a{bottom:630.390000px;}
.y90{bottom:633.270000px;}
.ybb{bottom:642.990000px;}
.y9{bottom:645.780000px;}
.yd6{bottom:650.460000px;}
.y39{bottom:652.260000px;}
.y8f{bottom:655.140000px;}
.yba{bottom:664.860000px;}
.y50{bottom:665.670000px;}
.y38{bottom:675.120000px;}
.yd5{bottom:676.740000px;}
.y8e{bottom:676.920000px;}
.y4f{bottom:688.530000px;}
.yd4{bottom:694.020000px;}
.yb9{bottom:696.720000px;}
.y8d{bottom:698.790000px;}
.y37{bottom:708.690000px;}
.y4e{bottom:710.400000px;}
.yd3{bottom:720.210000px;}
.yb8{bottom:727.590000px;}
.y4d{bottom:732.210000px;}
.y8c{bottom:732.480000px;}
.yd2{bottom:737.520000px;}
.y36{bottom:743.820000px;}
.yb7{bottom:749.400000px;}
.y4c{bottom:754.080000px;}
.y8b{bottom:764.250000px;}
.y35{bottom:765.690000px;}
.yd1{bottom:767.040000px;}
.yb6{bottom:771.180000px;}
.y4b{bottom:775.950000px;}
.y34{bottom:787.470000px;}
.yd0{bottom:794.310000px;}
.yb5{bottom:803.670000px;}
.y4a{bottom:807.810000px;}
.y33{bottom:809.340000px;}
.y46{bottom:810.420000px;}
.y71{bottom:811.680000px;}
.ydf{bottom:812.610000px;}
.ya3{bottom:817.560000px;}
.y32{bottom:831.120000px;}
.y49{bottom:832.290000px;}
.yb4{bottom:838.770000px;}
.yed{bottom:843.900000px;}
.y70{bottom:846.780000px;}
.y31{bottom:852.990000px;}
.ya6{bottom:855.690000px;}
.yb3{bottom:860.640000px;}
.yec{bottom:865.680000px;}
.y6f{bottom:868.650000px;}
.ya5{bottom:878.550000px;}
.yb2{bottom:882.420000px;}
.y30{bottom:883.860000px;}
.yeb{bottom:887.550000px;}
.y20{bottom:888.450000px;}
.y6e{bottom:899.430000px;}
.ya2{bottom:900.420000px;}
.yb1{bottom:904.290000px;}
.y2f{bottom:905.640000px;}
.yea{bottom:909.330000px;}
.y6d{bottom:921.210000px;}
.ya1{bottom:923.370000px;}
.y2e{bottom:927.510000px;}
.ye9{bottom:931.200000px;}
.yb0{bottom:935.070000px;}
.y6c{bottom:952.080000px;}
.ye8{bottom:952.980000px;}
.ya0{bottom:955.230000px;}
.yaf{bottom:956.940000px;}
.y2d{bottom:959.910000px;}
.ye7{bottom:974.850000px;}
.y6b{bottom:975.030000px;}
.yae{bottom:979.800000px;}
.ye6{bottom:996.630000px;}
.y2c{bottom:997.980000px;}
.y8a{bottom:999.600000px;}
.yad{bottom:1001.670000px;}
.ye5{bottom:1018.500000px;}
.y89{bottom:1021.470000px;}
.yac{bottom:1024.620000px;}
.y6a{bottom:1029.840000px;}
.ye4{bottom:1040.280000px;}
.y8{bottom:1041.900000px;}
.y2b{bottom:1044.780000px;}
.y88{bottom:1052.520000px;}
.yab{bottom:1056.480000px;}
.y69{bottom:1060.710000px;}
.ye3{bottom:1062.060000px;}
.y87{bottom:1074.480000px;}
.y2a{bottom:1075.650000px;}
.y68{bottom:1082.490000px;}
.ye2{bottom:1083.930000px;}
.y7{bottom:1086.540000px;}
.yaa{bottom:1087.350000px;}
.y86{bottom:1096.380000px;}
.y29{bottom:1097.460000px;}
.y67{bottom:1104.390000px;}
.ye1{bottom:1105.740000px;}
.ya9{bottom:1109.160000px;}
.y85{bottom:1118.250000px;}
.y28{bottom:1119.330000px;}
.y6{bottom:1122.300000px;}
.y48{bottom:1136.790000px;}
.ya8{bottom:1140.030000px;}
.y27{bottom:1141.110000px;}
.y3{bottom:1166.850000px;}
.y2{bottom:1185.840000px;}
.y1{bottom:1204.830000px;}
.h9{height:7.740000px;}
.hb{height:13.950000px;}
.hd{height:17.550000px;}
.h13{height:20.070000px;}
.ha{height:25.156406px;}
.hf{height:39.600000px;}
.h14{height:45.742852px;}
.hc{height:49.937344px;}
.h4{height:56.320312px;}
.h11{height:56.880000px;}
.h8{height:59.060391px;}
.he{height:62.703281px;}
.h10{height:62.828437px;}
.h2{height:68.710781px;}
.h17{height:68.835938px;}
.h12{height:75.093750px;}
.h7{height:87.484219px;}
.h5{height:100.250156px;}
.h3{height:112.640625px;}
.h6{height:132.210000px;}
.h15{height:162.180000px;}
.h16{height:333.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:27.810000px;}
.w9{width:148.980000px;}
.w5{width:157.500000px;}
.w6{width:214.470000px;}
.w7{width:217.260000px;}
.w8{width:319.320000px;}
.w3{width:743.850000px;}
.wa{width:752.760000px;}
.wb{width:756.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.400000px;}
.xf{left:10.800000px;}
.x2a{left:13.050000px;}
.x1e{left:14.460000px;}
.x1b{left:27.120000px;}
.x1c{left:46.560000px;}
.x26{left:59.670000px;}
.xb{left:63.809987px;}
.x29{left:66.600000px;}
.x24{left:70.379987px;}
.xe{left:73.620000px;}
.x2b{left:79.649987px;}
.x8{left:84.149987px;}
.xc{left:90.809987px;}
.x20{left:93.390000px;}
.x25{left:97.379987px;}
.xd{left:117.809987px;}
.x27{left:124.379987px;}
.x17{left:144.839987px;}
.x18{left:171.839987px;}
.x6{left:230.429987px;}
.x13{left:242.850000px;}
.x7{left:264.179987px;}
.x23{left:315.210000px;}
.x12{left:365.429987px;}
.xa{left:368.489987px;}
.x4{left:436.649987px;}
.x5{left:441.239987px;}
.x1d{left:444.600000px;}
.x1a{left:474.030000px;}
.x1f{left:497.489987px;}
.x10{left:565.259987px;}
.x15{left:571.739987px;}
.x2{left:587.669987px;}
.x16{left:594.599987px;}
.x21{left:617.999987px;}
.x1{left:624.659987px;}
.x9{left:723.839987px;}
.x3{left:747.539987px;}
.x22{left:756.809987px;}
.x19{left:765.269987px;}
.x11{left:784.439987px;}
.x28{left:833.399987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.279467pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.072533pt;}
.ls21{letter-spacing:-0.019520pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.016640pt;}
.lsd{letter-spacing:0.019520pt;}
.ls2{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.059733pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.078080pt;}
.ls11{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.080533pt;}
.ls1{letter-spacing:0.080640pt;}
.ls7{letter-spacing:0.119467pt;}
.ls8{letter-spacing:0.119680pt;}
.ls23{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.144533pt;}
.ls19{letter-spacing:0.151467pt;}
.ls20{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.360320pt;}
.lse{letter-spacing:0.379733pt;}
.lsc{letter-spacing:0.400533pt;}
.lsf{letter-spacing:0.476907pt;}
.ls4{letter-spacing:0.644160pt;}
.ls13{letter-spacing:0.661333pt;}
.ls16{letter-spacing:0.680320pt;}
.ls18{letter-spacing:0.720000pt;}
.ls5{letter-spacing:0.741333pt;}
.ls1e{letter-spacing:8.360320pt;}
.ls12{letter-spacing:27.560320pt;}
.ls1b{letter-spacing:44.520320pt;}
.ls6{letter-spacing:52.840320pt;}
.ls1f{letter-spacing:69.062400pt;}
.ws5{word-spacing:-58.560000pt;}
.ws3{word-spacing:-23.679787pt;}
.wsa{word-spacing:-20.872213pt;}
.ws4{word-spacing:-17.021013pt;}
.wsb{word-spacing:-16.999680pt;}
.wse{word-spacing:-16.439680pt;}
.ws6{word-spacing:-16.399147pt;}
.ws0{word-spacing:-16.360213pt;}
.ws7{word-spacing:-16.339413pt;}
.ws8{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.299200pt;}
.ws1{word-spacing:-16.279680pt;}
.wsf{word-spacing:-15.959680pt;}
.ws10{word-spacing:-14.992853pt;}
.ws11{word-spacing:-14.696320pt;}
.ws2{word-spacing:-13.344000pt;}
.wsc{word-spacing:-11.848320pt;}
.ws9{word-spacing:0.000000pt;}
._11{margin-left:-3.572160pt;}
._6{margin-left:-2.283840pt;}
._7{margin-left:-1.346880pt;}
._0{width:0.936960pt;}
._3{width:2.279787pt;}
._5{width:3.380053pt;}
._4{width:4.484693pt;}
._c{width:6.207360pt;}
._a{width:7.789440pt;}
._d{width:9.076800pt;}
._18{width:10.864213pt;}
._9{width:11.865387pt;}
._8{width:12.762240pt;}
._b{width:14.450240pt;}
._10{width:15.372800pt;}
._1b{width:18.797760pt;}
._19{width:22.408320pt;}
._13{width:23.561280pt;}
._2{width:24.692160pt;}
._15{width:25.883520pt;}
._12{width:26.937600pt;}
._f{width:28.518720pt;}
._14{width:44.520320pt;}
._16{width:52.782720pt;}
._1a{width:63.361920pt;}
._17{width:70.328533pt;}
._e{width:94.008320pt;}
._1{width:117.688107pt;}
.fs5{font-size:21.440000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:53.440000pt;}
.fsa{font-size:53.546667pt;}
.fs0{font-size:58.560000pt;}
.fsc{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:1.440000pt;}
.y5d{bottom:2.400000pt;}
.y5f{bottom:2.880000pt;}
.y26{bottom:3.280000pt;}
.y66{bottom:5.040000pt;}
.y9f{bottom:5.920000pt;}
.ya7{bottom:6.453333pt;}
.y62{bottom:7.306667pt;}
.yee{bottom:8.453333pt;}
.y5{bottom:12.480000pt;}
.y25{bottom:20.160000pt;}
.y61{bottom:22.586667pt;}
.y64{bottom:35.626667pt;}
.y24{bottom:37.040000pt;}
.y4{bottom:37.280000pt;}
.y23{bottom:61.920000pt;}
.y84{bottom:63.120000pt;}
.y5b{bottom:64.000000pt;}
.y1f{bottom:66.240000pt;}
.y9d{bottom:69.600000pt;}
.ya4{bottom:73.653333pt;}
.y22{bottom:78.720000pt;}
.y83{bottom:82.480000pt;}
.y5a{bottom:83.440000pt;}
.y1e{bottom:85.600000pt;}
.y45{bottom:86.080000pt;}
.y9c{bottom:89.040000pt;}
.y21{bottom:95.600000pt;}
.y59{bottom:102.800000pt;}
.y1d{bottom:105.040000pt;}
.y9b{bottom:109.440000pt;}
.y44{bottom:109.920000pt;}
.y82{bottom:110.880000pt;}
.y58{bottom:119.120000pt;}
.y1c{bottom:124.400000pt;}
.y81{bottom:130.240000pt;}
.y5e{bottom:131.360000pt;}
.y43{bottom:131.760000pt;}
.y9a{bottom:137.760000pt;}
.y1b{bottom:143.840000pt;}
.y80{bottom:159.120000pt;}
.y1a{bottom:164.240000pt;}
.ycf{bottom:165.600000pt;}
.y99{bottom:166.640000pt;}
.y19{bottom:184.640000pt;}
.yce{bottom:185.040000pt;}
.y7f{bottom:190.320000pt;}
.y98{bottom:197.840000pt;}
.y7e{bottom:209.760000pt;}
.ycd{bottom:212.400000pt;}
.y18{bottom:212.960000pt;}
.y97{bottom:217.280000pt;}
.y7d{bottom:229.120000pt;}
.ycc{bottom:231.840000pt;}
.y9e{bottom:232.640000pt;}
.y17{bottom:240.320000pt;}
.y96{bottom:248.240000pt;}
.ycb{bottom:251.200000pt;}
.y7c{bottom:256.560000pt;}
.y16{bottom:259.760000pt;}
.yca{bottom:270.640000pt;}
.y7b{bottom:275.920000pt;}
.y15{bottom:279.120000pt;}
.ye0{bottom:280.000000pt;}
.yc9{bottom:290.000000pt;}
.y7a{bottom:295.280000pt;}
.y14{bottom:298.560000pt;}
.y63{bottom:307.440000pt;}
.yc8{bottom:317.440000pt;}
.y13{bottom:317.920000pt;}
.y60{bottom:320.000000pt;}
.y79{bottom:322.720000pt;}
.y65{bottom:327.786667pt;}
.yc7{bottom:336.826667pt;}
.y78{bottom:342.186667pt;}
.y12{bottom:345.386667pt;}
.yc6{bottom:356.186667pt;}
.y77{bottom:362.506667pt;}
.y11{bottom:365.786667pt;}
.y57{bottom:368.746667pt;}
.yc5{bottom:375.626667pt;}
.y76{bottom:381.946667pt;}
.y10{bottom:386.186667pt;}
.y56{bottom:388.186667pt;}
.yc4{bottom:394.986667pt;}
.y75{bottom:402.346667pt;}
.y42{bottom:404.186667pt;}
.y55{bottom:407.546667pt;}
.yc3{bottom:414.426667pt;}
.yf{bottom:414.506667pt;}
.yde{bottom:415.546667pt;}
.y41{bottom:423.546667pt;}
.y74{bottom:430.666667pt;}
.ydd{bottom:430.906667pt;}
.yc2{bottom:433.786667pt;}
.y54{bottom:434.986667pt;}
.ye{bottom:441.866667pt;}
.y40{bottom:442.986667pt;}
.y95{bottom:444.666667pt;}
.y73{bottom:450.106667pt;}
.yc1{bottom:454.186667pt;}
.ydc{bottom:454.266667pt;}
.y53{bottom:454.346667pt;}
.yd{bottom:461.306667pt;}
.y3f{bottom:462.346667pt;}
.y94{bottom:464.026667pt;}
.ydb{bottom:469.626667pt;}
.y52{bottom:473.786667pt;}
.y72{bottom:474.346667pt;}
.yc0{bottom:474.586667pt;}
.y3e{bottom:481.786667pt;}
.y93{bottom:483.466667pt;}
.yc{bottom:491.226667pt;}
.yda{bottom:492.906667pt;}
.ybf{bottom:493.946667pt;}
.y51{bottom:498.026667pt;}
.y3d{bottom:502.186667pt;}
.y5c{bottom:503.146667pt;}
.yd9{bottom:508.266667pt;}
.y92{bottom:512.266667pt;}
.ybe{bottom:513.386667pt;}
.yb{bottom:519.466667pt;}
.y3c{bottom:521.546667pt;}
.yd8{bottom:531.546667pt;}
.ybd{bottom:532.746667pt;}
.y3b{bottom:540.906667pt;}
.y91{bottom:543.546667pt;}
.ybc{bottom:552.106667pt;}
.yd7{bottom:554.906667pt;}
.ya{bottom:560.026667pt;}
.y3a{bottom:560.346667pt;}
.y90{bottom:562.906667pt;}
.ybb{bottom:571.546667pt;}
.y9{bottom:574.026667pt;}
.yd6{bottom:578.186667pt;}
.y39{bottom:579.786667pt;}
.y8f{bottom:582.346667pt;}
.yba{bottom:590.986667pt;}
.y50{bottom:591.706667pt;}
.y38{bottom:600.106667pt;}
.yd5{bottom:601.546667pt;}
.y8e{bottom:601.706667pt;}
.y4f{bottom:612.026667pt;}
.yd4{bottom:616.906667pt;}
.yb9{bottom:619.306667pt;}
.y8d{bottom:621.146667pt;}
.y37{bottom:629.946667pt;}
.y4e{bottom:631.466667pt;}
.yd3{bottom:640.186667pt;}
.yb8{bottom:646.746667pt;}
.y4d{bottom:650.853333pt;}
.y8c{bottom:651.093333pt;}
.yd2{bottom:655.573333pt;}
.y36{bottom:661.173333pt;}
.yb7{bottom:666.133333pt;}
.y4c{bottom:670.293333pt;}
.y8b{bottom:679.333333pt;}
.y35{bottom:680.613333pt;}
.yd1{bottom:681.813333pt;}
.yb6{bottom:685.493333pt;}
.y4b{bottom:689.733333pt;}
.y34{bottom:699.973333pt;}
.yd0{bottom:706.053333pt;}
.yb5{bottom:714.373333pt;}
.y4a{bottom:718.053333pt;}
.y33{bottom:719.413333pt;}
.y46{bottom:720.373333pt;}
.y71{bottom:721.493333pt;}
.ydf{bottom:722.320000pt;}
.ya3{bottom:726.720000pt;}
.y32{bottom:738.773333pt;}
.y49{bottom:739.813333pt;}
.yb4{bottom:745.573333pt;}
.yed{bottom:750.133333pt;}
.y70{bottom:752.693333pt;}
.y31{bottom:758.213333pt;}
.ya6{bottom:760.613333pt;}
.yb3{bottom:765.013333pt;}
.yec{bottom:769.493333pt;}
.y6f{bottom:772.133333pt;}
.ya5{bottom:780.933333pt;}
.yb2{bottom:784.373333pt;}
.y30{bottom:785.653333pt;}
.yeb{bottom:788.933333pt;}
.y20{bottom:789.733333pt;}
.y6e{bottom:799.493333pt;}
.ya2{bottom:800.373333pt;}
.yb1{bottom:803.813333pt;}
.y2f{bottom:805.013333pt;}
.yea{bottom:808.293333pt;}
.y6d{bottom:818.853333pt;}
.ya1{bottom:820.773333pt;}
.y2e{bottom:824.453333pt;}
.ye9{bottom:827.733333pt;}
.yb0{bottom:831.173333pt;}
.y6c{bottom:846.293333pt;}
.ye8{bottom:847.093333pt;}
.ya0{bottom:849.093333pt;}
.yaf{bottom:850.613333pt;}
.y2d{bottom:853.253333pt;}
.ye7{bottom:866.533333pt;}
.y6b{bottom:866.693333pt;}
.yae{bottom:870.933333pt;}
.ye6{bottom:885.893333pt;}
.y2c{bottom:887.093333pt;}
.y8a{bottom:888.533333pt;}
.yad{bottom:890.373333pt;}
.ye5{bottom:905.333333pt;}
.y89{bottom:907.973333pt;}
.yac{bottom:910.773333pt;}
.y6a{bottom:915.413333pt;}
.ye4{bottom:924.693333pt;}
.y8{bottom:926.133333pt;}
.y2b{bottom:928.693333pt;}
.y88{bottom:935.573333pt;}
.yab{bottom:939.093333pt;}
.y69{bottom:942.853333pt;}
.ye3{bottom:944.053333pt;}
.y87{bottom:955.093333pt;}
.y2a{bottom:956.133333pt;}
.y68{bottom:962.213333pt;}
.ye2{bottom:963.493333pt;}
.y7{bottom:965.813333pt;}
.yaa{bottom:966.533333pt;}
.y86{bottom:974.560000pt;}
.y29{bottom:975.520000pt;}
.y67{bottom:981.680000pt;}
.ye1{bottom:982.880000pt;}
.ya9{bottom:985.920000pt;}
.y85{bottom:994.000000pt;}
.y28{bottom:994.960000pt;}
.y6{bottom:997.600000pt;}
.y48{bottom:1010.480000pt;}
.ya8{bottom:1013.360000pt;}
.y27{bottom:1014.320000pt;}
.y3{bottom:1037.200000pt;}
.y2{bottom:1054.080000pt;}
.y1{bottom:1070.960000pt;}
.h9{height:6.880000pt;}
.hb{height:12.400000pt;}
.hd{height:15.600000pt;}
.h13{height:17.840000pt;}
.ha{height:22.361250pt;}
.hf{height:35.200000pt;}
.h14{height:40.660312pt;}
.hc{height:44.388750pt;}
.h4{height:50.062500pt;}
.h11{height:50.560000pt;}
.h8{height:52.498125pt;}
.he{height:55.736250pt;}
.h10{height:55.847500pt;}
.h2{height:61.076250pt;}
.h17{height:61.187500pt;}
.h12{height:66.750000pt;}
.h7{height:77.763750pt;}
.h5{height:89.111250pt;}
.h3{height:100.125000pt;}
.h6{height:117.520000pt;}
.h15{height:144.160000pt;}
.h16{height:296.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:24.720000pt;}
.w9{width:132.426667pt;}
.w5{width:140.000000pt;}
.w6{width:190.640000pt;}
.w7{width:193.120000pt;}
.w8{width:283.840000pt;}
.w3{width:661.200000pt;}
.wa{width:669.120000pt;}
.wb{width:672.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.800000pt;}
.xf{left:9.600000pt;}
.x2a{left:11.600000pt;}
.x1e{left:12.853333pt;}
.x1b{left:24.106667pt;}
.x1c{left:41.386667pt;}
.x26{left:53.040000pt;}
.xb{left:56.719988pt;}
.x29{left:59.200000pt;}
.x24{left:62.559988pt;}
.xe{left:65.440000pt;}
.x2b{left:70.799988pt;}
.x8{left:74.799988pt;}
.xc{left:80.719988pt;}
.x20{left:83.013333pt;}
.x25{left:86.559988pt;}
.xd{left:104.719988pt;}
.x27{left:110.559988pt;}
.x17{left:128.746655pt;}
.x18{left:152.746655pt;}
.x6{left:204.826655pt;}
.x13{left:215.866667pt;}
.x7{left:234.826655pt;}
.x23{left:280.186667pt;}
.x12{left:324.826655pt;}
.xa{left:327.546655pt;}
.x4{left:388.133322pt;}
.x5{left:392.213322pt;}
.x1d{left:395.200000pt;}
.x1a{left:421.360000pt;}
.x1f{left:442.213322pt;}
.x10{left:502.453322pt;}
.x15{left:508.213322pt;}
.x2{left:522.373322pt;}
.x16{left:528.533322pt;}
.x21{left:549.333322pt;}
.x1{left:555.253322pt;}
.x9{left:643.413322pt;}
.x3{left:664.479988pt;}
.x22{left:672.719988pt;}
.x19{left:680.239988pt;}
.x11{left:697.279988pt;}
.x28{left:740.799988pt;}
}




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