
    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_0368a6717224a028f16b7f54.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_81731d8820cc18a78dbc9b48.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_040ba5dd3d822365f37f855e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_d174a9cf1d06d54447d9f72a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_ae2fb79cf495095ae9cf3a11.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f6b1faf55085b5ed98fee8a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_e6744905ffb1a794e35b36b9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_a8befc109c4fcfe7fcd001bc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.096600px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.067200px;}
.ls8{letter-spacing:-0.008400px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.041760px;}
.ls11{letter-spacing:0.043920px;}
.lsb{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.047520px;}
.lse{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.534600px;}
.ls0{letter-spacing:13.347360px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.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:-60.120000px;}
.ws8{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.273920px;}
.wsb{word-spacing:-13.270320px;}
.wsd{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.159200px;}
.wsf{word-spacing:-13.129800px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-3.487200px;}
._d{margin-left:-2.450400px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._9{width:2.139111px;}
._6{width:3.345720px;}
._5{width:4.404960px;}
._8{width:5.591400px;}
._a{width:6.723600px;}
._1{width:7.968600px;}
._3{width:9.948012px;}
._4{width:11.044346px;}
._b{width:12.093925px;}
._c{width:14.549040px;}
._10{width:15.575520px;}
._f{width:16.620960px;}
._14{width:17.735400px;}
._15{width:18.950160px;}
._e{width:20.594520px;}
._19{width:21.636360px;}
._16{width:26.813520px;}
._17{width:28.196280px;}
._18{width:29.218320px;}
._12{width:33.387348px;}
._11{width:124.328160px;}
._13{width:205.466400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:2.610000px;}
.yaa{bottom:2.700000px;}
.y76{bottom:7.830000px;}
.y75{bottom:7.920000px;}
.y7e{bottom:7.950000px;}
.y82{bottom:13.140000px;}
.y89{bottom:16.650000px;}
.ya9{bottom:16.740000px;}
.y83{bottom:17.640000px;}
.y74{bottom:25.470000px;}
.y88{bottom:30.690000px;}
.y7c{bottom:30.720000px;}
.ya1{bottom:30.780000px;}
.y72{bottom:35.190000px;}
.y7d{bottom:35.220000px;}
.y79{bottom:44.190000px;}
.ya0{bottom:44.820000px;}
.ya8{bottom:44.910000px;}
.y71{bottom:52.740000px;}
.y7b{bottom:52.860000px;}
.y9f{bottom:58.860000px;}
.ya7{bottom:58.950000px;}
.y9e{bottom:72.900000px;}
.ya6{bottom:72.990000px;}
.y2{bottom:73.380000px;}
.y24{bottom:74.190000px;}
.ya5{bottom:87.120000px;}
.y1{bottom:100.200000px;}
.ya4{bottom:101.160000px;}
.yd8{bottom:115.140000px;}
.ya3{bottom:115.200000px;}
.ybb{bottom:124.860000px;}
.y56{bottom:126.570000px;}
.y90{bottom:127.830000px;}
.yd7{bottom:132.780000px;}
.yba{bottom:142.500000px;}
.y101{bottom:142.680000px;}
.y55{bottom:144.120000px;}
.y8f{bottom:145.380000px;}
.yd6{bottom:150.330000px;}
.yb9{bottom:160.050000px;}
.y100{bottom:160.320000px;}
.y54{bottom:161.670000px;}
.y8e{bottom:162.930000px;}
.yd5{bottom:176.970000px;}
.y53{bottom:179.310000px;}
.y8d{bottom:180.570000px;}
.yff{bottom:186.870000px;}
.yd4{bottom:194.520000px;}
.yb8{bottom:195.600000px;}
.y52{bottom:196.860000px;}
.y8c{bottom:198.120000px;}
.yfe{bottom:204.510000px;}
.yd3{bottom:212.070000px;}
.yb7{bottom:213.240000px;}
.y51{bottom:214.500000px;}
.yfd{bottom:222.060000px;}
.yb6{bottom:230.790000px;}
.y8b{bottom:231.150000px;}
.y50{bottom:232.050000px;}
.yd2{bottom:238.980000px;}
.yb5{bottom:248.430000px;}
.yfc{bottom:248.610000px;}
.y22{bottom:249.330000px;}
.y4f{bottom:249.600000px;}
.y87{bottom:260.040000px;}
.yb4{bottom:265.980000px;}
.yfb{bottom:266.250000px;}
.y4e{bottom:267.240000px;}
.yb3{bottom:283.530000px;}
.y4d{bottom:284.790000px;}
.y21{bottom:286.320000px;}
.yd1{bottom:287.310000px;}
.yfa{bottom:292.800000px;}
.yb2{bottom:301.170000px;}
.y86{bottom:302.970000px;}
.y20{bottom:303.870000px;}
.yf9{bottom:310.440000px;}
.y4c{bottom:311.700000px;}
.yd0{bottom:314.220000px;}
.y1f{bottom:321.510000px;}
.y85{bottom:330.330000px;}
.yb1{bottom:336.720000px;}
.yf8{bottom:336.990000px;}
.ycf{bottom:351.210000px;}
.yb0{bottom:354.360000px;}
.yf7{bottom:354.540000px;}
.y1e{bottom:357.060000px;}
.y84{bottom:357.600000px;}
.y4b{bottom:359.940000px;}
.yce{bottom:368.760000px;}
.yaf{bottom:371.910000px;}
.y1d{bottom:374.700000px;}
.y4a{bottom:377.580000px;}
.yf6{bottom:381.180000px;}
.y81{bottom:384.960000px;}
.ycd{bottom:386.400000px;}
.yae{bottom:389.460000px;}
.y1c{bottom:392.250000px;}
.y49{bottom:395.130000px;}
.yf5{bottom:398.730000px;}
.yad{bottom:407.100000px;}
.y1b{bottom:409.800000px;}
.y80{bottom:412.320000px;}
.y48{bottom:412.770000px;}
.ycc{bottom:413.310000px;}
.yf4{bottom:416.370000px;}
.yac{bottom:424.650000px;}
.y1a{bottom:427.440000px;}
.y47{bottom:430.320000px;}
.y7f{bottom:439.590000px;}
.yf3{bottom:442.920000px;}
.y19{bottom:444.990000px;}
.y46{bottom:447.870000px;}
.ycb{bottom:450.300000px;}
.yab{bottom:451.560000px;}
.yf2{bottom:460.470000px;}
.y7a{bottom:466.950000px;}
.yca{bottom:477.240000px;}
.y18{bottom:480.660000px;}
.y45{bottom:483.540000px;}
.yf1{bottom:487.140000px;}
.y78{bottom:494.340000px;}
.ya2{bottom:497.220000px;}
.y17{bottom:498.210000px;}
.y44{bottom:501.090000px;}
.yf0{bottom:504.690000px;}
.yc9{bottom:514.230000px;}
.y16{bottom:515.760000px;}
.y43{bottom:518.730000px;}
.yef{bottom:531.330000px;}
.y15{bottom:533.400000px;}
.y42{bottom:536.280000px;}
.y77{bottom:539.250000px;}
.yc8{bottom:541.140000px;}
.yee{bottom:548.880000px;}
.y14{bottom:550.950000px;}
.y70{bottom:566.610000px;}
.y13{bottom:568.590000px;}
.y41{bottom:571.830000px;}
.yed{bottom:575.430000px;}
.yc7{bottom:578.220000px;}
.y12{bottom:586.140000px;}
.y40{bottom:589.470000px;}
.yec{bottom:593.070000px;}
.y73{bottom:593.880000px;}
.y11{bottom:603.690000px;}
.y3f{bottom:607.020000px;}
.yeb{bottom:610.620000px;}
.y3e{bottom:624.660000px;}
.yc6{bottom:625.020000px;}
.yea{bottom:637.260000px;}
.y10{bottom:639.330000px;}
.y3d{bottom:642.210000px;}
.yc5{bottom:642.660000px;}
.ye9{bottom:654.810000px;}
.yf{bottom:656.880000px;}
.y3c{bottom:659.760000px;}
.y6f{bottom:660.210000px;}
.yc4{bottom:669.570000px;}
.ye8{bottom:672.360000px;}
.y3b{bottom:677.400000px;}
.y6e{bottom:677.760000px;}
.ye{bottom:683.790000px;}
.y3a{bottom:694.950000px;}
.ye7{bottom:699.000000px;}
.y9d{bottom:709.800000px;}
.y6d{bottom:713.400000px;}
.ye6{bottom:716.550000px;}
.yc3{bottom:717.810000px;}
.y39{bottom:730.590000px;}
.y6c{bottom:730.950000px;}
.yd{bottom:732.030000px;}
.yc2{bottom:735.360000px;}
.ye5{bottom:743.190000px;}
.y38{bottom:748.140000px;}
.y6b{bottom:748.590000px;}
.yc1{bottom:753.000000px;}
.y9c{bottom:754.710000px;}
.ye4{bottom:760.740000px;}
.y37{bottom:765.690000px;}
.y6a{bottom:766.140000px;}
.yc{bottom:767.850000px;}
.yc0{bottom:770.550000px;}
.ye3{bottom:778.290000px;}
.y36{bottom:783.330000px;}
.y69{bottom:783.690000px;}
.ybf{bottom:788.190000px;}
.y9b{bottom:799.620000px;}
.y35{bottom:800.880000px;}
.y68{bottom:801.330000px;}
.yb{bottom:803.850000px;}
.ye2{bottom:804.930000px;}
.ybe{bottom:805.740000px;}
.y34{bottom:818.520000px;}
.ye1{bottom:822.480000px;}
.ybd{bottom:823.290000px;}
.y67{bottom:828.240000px;}
.ya{bottom:839.850000px;}
.ye0{bottom:840.030000px;}
.ybc{bottom:840.930000px;}
.y9a{bottom:844.530000px;}
.y33{bottom:854.070000px;}
.y9{bottom:861.630000px;}
.ydf{bottom:866.670000px;}
.y32{bottom:871.620000px;}
.y8{bottom:875.850000px;}
.y66{bottom:876.480000px;}
.yde{bottom:884.220000px;}
.y31{bottom:889.260000px;}
.y65{bottom:894.030000px;}
.y7{bottom:897.630000px;}
.y30{bottom:906.810000px;}
.y99{bottom:910.860000px;}
.y64{bottom:911.670000px;}
.y2f{bottom:924.450000px;}
.y98{bottom:928.410000px;}
.y63{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y2e{bottom:942.000000px;}
.y97{bottom:945.960000px;}
.y62{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y2d{bottom:959.550000px;}
.y61{bottom:964.410000px;}
.ydd{bottom:972.600000px;}
.y96{bottom:981.600000px;}
.y60{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.ydc{bottom:990.150000px;}
.y2c{bottom:995.190000px;}
.y95{bottom:999.150000px;}
.y5f{bottom:999.600000px;}
.ydb{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y2b{bottom:1012.770000px;}
.y94{bottom:1016.820000px;}
.y5e{bottom:1017.180000px;}
.y2a{bottom:1030.320000px;}
.y93{bottom:1034.370000px;}
.y5d{bottom:1034.820000px;}
.y29{bottom:1047.960000px;}
.y92{bottom:1051.920000px;}
.y5c{bottom:1052.370000px;}
.y102{bottom:1060.920000px;}
.y28{bottom:1065.510000px;}
.y91{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.yda{bottom:1078.560000px;}
.y27{bottom:1083.150000px;}
.y5a{bottom:1087.560000px;}
.yd9{bottom:1096.110000px;}
.y26{bottom:1100.700000px;}
.y59{bottom:1105.110000px;}
.y58{bottom:1122.750000px;}
.y25{bottom:1127.610000px;}
.y57{bottom:1140.300000px;}
.y23{bottom:1194.300000px;}
.he{height:26.550000px;}
.h11{height:26.640000px;}
.h10{height:26.670000px;}
.h15{height:28.080000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h14{height:41.661211px;}
.h13{height:42.120000px;}
.hd{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h12{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h18{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.hc{height:71.460000px;}
.hf{height:71.580000px;}
.h4{height:72.985430px;}
.h16{height:84.330000px;}
.h17{height:126.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:24.120000px;}
.w15{width:51.030000px;}
.w6{width:53.280000px;}
.w19{width:58.050000px;}
.w16{width:58.140000px;}
.w18{width:58.170000px;}
.w17{width:60.480000px;}
.wc{width:60.930000px;}
.w14{width:61.020000px;}
.wb{width:61.770000px;}
.w7{width:64.890000px;}
.wa{width:66.150000px;}
.w9{width:70.470000px;}
.w5{width:70.560000px;}
.w1a{width:72.450000px;}
.wf{width:97.230000px;}
.w13{width:102.810000px;}
.w4{width:108.270000px;}
.w3{width:122.070000px;}
.w8{width:123.420000px;}
.w1b{width:357.510000px;}
.w12{width:365.700000px;}
.w11{width:389.190000px;}
.w1c{width:397.470000px;}
.wd{width:632.910000px;}
.w10{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x21{left:9.540000px;}
.x12{left:16.740000px;}
.xf{left:18.900000px;}
.x11{left:38.610000px;}
.x15{left:42.300000px;}
.x1{left:68.040000px;}
.x2a{left:70.740000px;}
.x26{left:82.260000px;}
.x23{left:85.770000px;}
.xe{left:93.600000px;}
.x28{left:98.490000px;}
.x27{left:101.190000px;}
.x2c{left:109.560000px;}
.x2f{left:111.239987px;}
.x2e{left:114.240000px;}
.x24{left:117.570000px;}
.x29{left:129.990000px;}
.x14{left:131.520000px;}
.x25{left:134.220000px;}
.x2d{left:150.240000px;}
.x16{left:172.290000px;}
.x5{left:191.550000px;}
.x2{left:192.719987px;}
.x10{left:212.340000px;}
.x17{left:234.030000px;}
.x18{left:285.780000px;}
.x6{left:300.540000px;}
.x22{left:321.330000px;}
.x19{left:337.530000px;}
.x7{left:371.820000px;}
.x1a{left:396.390000px;}
.x8{left:425.910000px;}
.x2b{left:426.990000px;}
.x1b{left:457.590000px;}
.x13{left:458.760000px;}
.x9{left:491.610000px;}
.x1c{left:516.480000px;}
.xd{left:554.100000px;}
.x1d{left:575.430000px;}
.xa{left:615.840000px;}
.x1e{left:634.290000px;}
.xb{left:687.030000px;}
.x1f{left:707.460000px;}
.xc{left:753.900000px;}
.x20{left:766.320000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.085867pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.059733pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.037120pt;}
.ls11{letter-spacing:0.039040pt;}
.lsb{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.042240pt;}
.lse{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.475200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.wsa{word-spacing:-53.440000pt;}
.ws8{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.799040pt;}
.wsb{word-spacing:-11.795840pt;}
.wsd{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.697067pt;}
.wsf{word-spacing:-11.670933pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-3.099734pt;}
._d{margin-left:-2.178133pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._9{width:1.901432pt;}
._6{width:2.973973pt;}
._5{width:3.915520pt;}
._8{width:4.970134pt;}
._a{width:5.976533pt;}
._1{width:7.083200pt;}
._3{width:8.842677pt;}
._4{width:9.817196pt;}
._b{width:10.750156pt;}
._c{width:12.932480pt;}
._10{width:13.844907pt;}
._f{width:14.774187pt;}
._14{width:15.764800pt;}
._15{width:16.844587pt;}
._e{width:18.306240pt;}
._19{width:19.232320pt;}
._16{width:23.834240pt;}
._17{width:25.063360pt;}
._18{width:25.971840pt;}
._12{width:29.677643pt;}
._11{width:110.513920pt;}
._13{width:182.636800pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:2.320000pt;}
.yaa{bottom:2.400000pt;}
.y76{bottom:6.960000pt;}
.y75{bottom:7.040000pt;}
.y7e{bottom:7.066667pt;}
.y82{bottom:11.680000pt;}
.y89{bottom:14.800000pt;}
.ya9{bottom:14.880000pt;}
.y83{bottom:15.680000pt;}
.y74{bottom:22.640000pt;}
.y88{bottom:27.280000pt;}
.y7c{bottom:27.306667pt;}
.ya1{bottom:27.360000pt;}
.y72{bottom:31.280000pt;}
.y7d{bottom:31.306667pt;}
.y79{bottom:39.280000pt;}
.ya0{bottom:39.840000pt;}
.ya8{bottom:39.920000pt;}
.y71{bottom:46.880000pt;}
.y7b{bottom:46.986667pt;}
.y9f{bottom:52.320000pt;}
.ya7{bottom:52.400000pt;}
.y9e{bottom:64.800000pt;}
.ya6{bottom:64.880000pt;}
.y2{bottom:65.226667pt;}
.y24{bottom:65.946667pt;}
.ya5{bottom:77.440000pt;}
.y1{bottom:89.066667pt;}
.ya4{bottom:89.920000pt;}
.yd8{bottom:102.346667pt;}
.ya3{bottom:102.400000pt;}
.ybb{bottom:110.986667pt;}
.y56{bottom:112.506667pt;}
.y90{bottom:113.626667pt;}
.yd7{bottom:118.026667pt;}
.yba{bottom:126.666667pt;}
.y101{bottom:126.826667pt;}
.y55{bottom:128.106667pt;}
.y8f{bottom:129.226667pt;}
.yd6{bottom:133.626667pt;}
.yb9{bottom:142.266667pt;}
.y100{bottom:142.506667pt;}
.y54{bottom:143.706667pt;}
.y8e{bottom:144.826667pt;}
.yd5{bottom:157.306667pt;}
.y53{bottom:159.386667pt;}
.y8d{bottom:160.506667pt;}
.yff{bottom:166.106667pt;}
.yd4{bottom:172.906667pt;}
.yb8{bottom:173.866667pt;}
.y52{bottom:174.986667pt;}
.y8c{bottom:176.106667pt;}
.yfe{bottom:181.786667pt;}
.yd3{bottom:188.506667pt;}
.yb7{bottom:189.546667pt;}
.y51{bottom:190.666667pt;}
.yfd{bottom:197.386667pt;}
.yb6{bottom:205.146667pt;}
.y8b{bottom:205.466667pt;}
.y50{bottom:206.266667pt;}
.yd2{bottom:212.426667pt;}
.yb5{bottom:220.826667pt;}
.yfc{bottom:220.986667pt;}
.y22{bottom:221.626667pt;}
.y4f{bottom:221.866667pt;}
.y87{bottom:231.146667pt;}
.yb4{bottom:236.426667pt;}
.yfb{bottom:236.666667pt;}
.y4e{bottom:237.546667pt;}
.yb3{bottom:252.026667pt;}
.y4d{bottom:253.146667pt;}
.y21{bottom:254.506667pt;}
.yd1{bottom:255.386667pt;}
.yfa{bottom:260.266667pt;}
.yb2{bottom:267.706667pt;}
.y86{bottom:269.306667pt;}
.y20{bottom:270.106667pt;}
.yf9{bottom:275.946667pt;}
.y4c{bottom:277.066667pt;}
.yd0{bottom:279.306667pt;}
.y1f{bottom:285.786667pt;}
.y85{bottom:293.626667pt;}
.yb1{bottom:299.306667pt;}
.yf8{bottom:299.546667pt;}
.ycf{bottom:312.186667pt;}
.yb0{bottom:314.986667pt;}
.yf7{bottom:315.146667pt;}
.y1e{bottom:317.386667pt;}
.y84{bottom:317.866667pt;}
.y4b{bottom:319.946667pt;}
.yce{bottom:327.786667pt;}
.yaf{bottom:330.586667pt;}
.y1d{bottom:333.066667pt;}
.y4a{bottom:335.626667pt;}
.yf6{bottom:338.826667pt;}
.y81{bottom:342.186667pt;}
.ycd{bottom:343.466667pt;}
.yae{bottom:346.186667pt;}
.y1c{bottom:348.666667pt;}
.y49{bottom:351.226667pt;}
.yf5{bottom:354.426667pt;}
.yad{bottom:361.866667pt;}
.y1b{bottom:364.266667pt;}
.y80{bottom:366.506667pt;}
.y48{bottom:366.906667pt;}
.ycc{bottom:367.386667pt;}
.yf4{bottom:370.106667pt;}
.yac{bottom:377.466667pt;}
.y1a{bottom:379.946667pt;}
.y47{bottom:382.506667pt;}
.y7f{bottom:390.746667pt;}
.yf3{bottom:393.706667pt;}
.y19{bottom:395.546667pt;}
.y46{bottom:398.106667pt;}
.ycb{bottom:400.266667pt;}
.yab{bottom:401.386667pt;}
.yf2{bottom:409.306667pt;}
.y7a{bottom:415.066667pt;}
.yca{bottom:424.213333pt;}
.y18{bottom:427.253333pt;}
.y45{bottom:429.813333pt;}
.yf1{bottom:433.013333pt;}
.y78{bottom:439.413333pt;}
.ya2{bottom:441.973333pt;}
.y17{bottom:442.853333pt;}
.y44{bottom:445.413333pt;}
.yf0{bottom:448.613333pt;}
.yc9{bottom:457.093333pt;}
.y16{bottom:458.453333pt;}
.y43{bottom:461.093333pt;}
.yef{bottom:472.293333pt;}
.y15{bottom:474.133333pt;}
.y42{bottom:476.693333pt;}
.y77{bottom:479.333333pt;}
.yc8{bottom:481.013333pt;}
.yee{bottom:487.893333pt;}
.y14{bottom:489.733333pt;}
.y70{bottom:503.653333pt;}
.y13{bottom:505.413333pt;}
.y41{bottom:508.293333pt;}
.yed{bottom:511.493333pt;}
.yc7{bottom:513.973333pt;}
.y12{bottom:521.013333pt;}
.y40{bottom:523.973333pt;}
.yec{bottom:527.173333pt;}
.y73{bottom:527.893333pt;}
.y11{bottom:536.613333pt;}
.y3f{bottom:539.573333pt;}
.yeb{bottom:542.773333pt;}
.y3e{bottom:555.253333pt;}
.yc6{bottom:555.573333pt;}
.yea{bottom:566.453333pt;}
.y10{bottom:568.293333pt;}
.y3d{bottom:570.853333pt;}
.yc5{bottom:571.253333pt;}
.ye9{bottom:582.053333pt;}
.yf{bottom:583.893333pt;}
.y3c{bottom:586.453333pt;}
.y6f{bottom:586.853333pt;}
.yc4{bottom:595.173333pt;}
.ye8{bottom:597.653333pt;}
.y3b{bottom:602.133333pt;}
.y6e{bottom:602.453333pt;}
.ye{bottom:607.813333pt;}
.y3a{bottom:617.733333pt;}
.ye7{bottom:621.333333pt;}
.y9d{bottom:630.933333pt;}
.y6d{bottom:634.133333pt;}
.ye6{bottom:636.933333pt;}
.yc3{bottom:638.053333pt;}
.y39{bottom:649.413333pt;}
.y6c{bottom:649.733333pt;}
.yd{bottom:650.693333pt;}
.yc2{bottom:653.653333pt;}
.ye5{bottom:660.613333pt;}
.y38{bottom:665.013333pt;}
.y6b{bottom:665.413333pt;}
.yc1{bottom:669.333333pt;}
.y9c{bottom:670.853333pt;}
.ye4{bottom:676.213333pt;}
.y37{bottom:680.613333pt;}
.y6a{bottom:681.013333pt;}
.yc{bottom:682.533333pt;}
.yc0{bottom:684.933333pt;}
.ye3{bottom:691.813333pt;}
.y36{bottom:696.293333pt;}
.y69{bottom:696.613333pt;}
.ybf{bottom:700.613333pt;}
.y9b{bottom:710.773333pt;}
.y35{bottom:711.893333pt;}
.y68{bottom:712.293333pt;}
.yb{bottom:714.533333pt;}
.ye2{bottom:715.493333pt;}
.ybe{bottom:716.213333pt;}
.y34{bottom:727.573333pt;}
.ye1{bottom:731.093333pt;}
.ybd{bottom:731.813333pt;}
.y67{bottom:736.213333pt;}
.ya{bottom:746.533333pt;}
.ye0{bottom:746.693333pt;}
.ybc{bottom:747.493333pt;}
.y9a{bottom:750.693333pt;}
.y33{bottom:759.173333pt;}
.y9{bottom:765.893333pt;}
.ydf{bottom:770.373333pt;}
.y32{bottom:774.773333pt;}
.y8{bottom:778.533333pt;}
.y66{bottom:779.093333pt;}
.yde{bottom:785.973333pt;}
.y31{bottom:790.453333pt;}
.y65{bottom:794.693333pt;}
.y7{bottom:797.893333pt;}
.y30{bottom:806.053333pt;}
.y99{bottom:809.653333pt;}
.y64{bottom:810.373333pt;}
.y2f{bottom:821.733333pt;}
.y98{bottom:825.253333pt;}
.y63{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y2e{bottom:837.333333pt;}
.y97{bottom:840.853333pt;}
.y62{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y2d{bottom:852.933333pt;}
.y61{bottom:857.253333pt;}
.ydd{bottom:864.533333pt;}
.y96{bottom:872.533333pt;}
.y60{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.ydc{bottom:880.133333pt;}
.y2c{bottom:884.613333pt;}
.y95{bottom:888.133333pt;}
.y5f{bottom:888.533333pt;}
.ydb{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y2b{bottom:900.240000pt;}
.y94{bottom:903.840000pt;}
.y5e{bottom:904.160000pt;}
.y2a{bottom:915.840000pt;}
.y93{bottom:919.440000pt;}
.y5d{bottom:919.840000pt;}
.y29{bottom:931.520000pt;}
.y92{bottom:935.040000pt;}
.y5c{bottom:935.440000pt;}
.y102{bottom:943.040000pt;}
.y28{bottom:947.120000pt;}
.y91{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.yda{bottom:958.720000pt;}
.y27{bottom:962.800000pt;}
.y5a{bottom:966.720000pt;}
.yd9{bottom:974.320000pt;}
.y26{bottom:978.400000pt;}
.y59{bottom:982.320000pt;}
.y58{bottom:998.000000pt;}
.y25{bottom:1002.320000pt;}
.y57{bottom:1013.600000pt;}
.y23{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h11{height:23.680000pt;}
.h10{height:23.706667pt;}
.h15{height:24.960000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h14{height:37.032187pt;}
.h13{height:37.440000pt;}
.hd{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h12{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h18{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.hc{height:63.520000pt;}
.hf{height:63.626667pt;}
.h4{height:64.875937pt;}
.h16{height:74.960000pt;}
.h17{height:112.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:21.440000pt;}
.w15{width:45.360000pt;}
.w6{width:47.360000pt;}
.w19{width:51.600000pt;}
.w16{width:51.680000pt;}
.w18{width:51.706667pt;}
.w17{width:53.760000pt;}
.wc{width:54.160000pt;}
.w14{width:54.240000pt;}
.wb{width:54.906667pt;}
.w7{width:57.680000pt;}
.wa{width:58.800000pt;}
.w9{width:62.640000pt;}
.w5{width:62.720000pt;}
.w1a{width:64.400000pt;}
.wf{width:86.426667pt;}
.w13{width:91.386667pt;}
.w4{width:96.240000pt;}
.w3{width:108.506667pt;}
.w8{width:109.706667pt;}
.w1b{width:317.786667pt;}
.w12{width:325.066667pt;}
.w11{width:345.946667pt;}
.w1c{width:353.306667pt;}
.wd{width:562.586667pt;}
.w10{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x21{left:8.480000pt;}
.x12{left:14.880000pt;}
.xf{left:16.800000pt;}
.x11{left:34.320000pt;}
.x15{left:37.600000pt;}
.x1{left:60.480000pt;}
.x2a{left:62.880000pt;}
.x26{left:73.120000pt;}
.x23{left:76.240000pt;}
.xe{left:83.200000pt;}
.x28{left:87.546667pt;}
.x27{left:89.946667pt;}
.x2c{left:97.386667pt;}
.x2f{left:98.879988pt;}
.x2e{left:101.546667pt;}
.x24{left:104.506667pt;}
.x29{left:115.546667pt;}
.x14{left:116.906667pt;}
.x25{left:119.306667pt;}
.x2d{left:133.546667pt;}
.x16{left:153.146667pt;}
.x5{left:170.266667pt;}
.x2{left:171.306655pt;}
.x10{left:188.746667pt;}
.x17{left:208.026667pt;}
.x18{left:254.026667pt;}
.x6{left:267.146667pt;}
.x22{left:285.626667pt;}
.x19{left:300.026667pt;}
.x7{left:330.506667pt;}
.x1a{left:352.346667pt;}
.x8{left:378.586667pt;}
.x2b{left:379.546667pt;}
.x1b{left:406.746667pt;}
.x13{left:407.786667pt;}
.x9{left:436.986667pt;}
.x1c{left:459.093333pt;}
.xd{left:492.533333pt;}
.x1d{left:511.493333pt;}
.xa{left:547.413333pt;}
.x1e{left:563.813333pt;}
.xb{left:610.693333pt;}
.x1f{left:628.853333pt;}
.xc{left:670.133333pt;}
.x20{left:681.173333pt;}
.x3{left:711.413322pt;}
}




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