
    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_8459d0ae5e4dbe1e5f1f18cd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_a51d652553ae57d4c1df03fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_a2a121aa15aca560363b5c96.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_467b9022ac1cc0fe1af4154a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_65e695b399b4b5a6f19620bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_a32fc0ca534b1377df3b98c7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a9ddee46e0d6ea271309ed9f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.758160px;}
.lsa{letter-spacing:-0.486000px;}
.ls10{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.192960px;}
.lsc{letter-spacing:-0.132480px;}
.lse{letter-spacing:-0.084240px;}
.ls1a{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.204480px;}
.ls1{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.331200px;}
.lsd{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.357840px;}
.ls18{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.563040px;}
.ls7{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.880000px;}
.ls15{letter-spacing:4.320000px;}
.ls8{letter-spacing:8.640000px;}
.ls17{letter-spacing:9.345600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.755680px;}
.ws6{word-spacing:-20.304000px;}
.wsa{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.282240px;}
.ws8{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.228000px;}
.ws33{word-spacing:-15.012000px;}
.ws0{word-spacing:-14.526000px;}
.ws4{word-spacing:-14.415840px;}
.ws34{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.609280px;}
.ws38{word-spacing:-4.320000px;}
.ws32{word-spacing:-3.600000px;}
.ws55{word-spacing:-3.384000px;}
.ws54{word-spacing:-3.312000px;}
.ws2c{word-spacing:-3.024000px;}
.ws4d{word-spacing:-2.880000px;}
.ws2d{word-spacing:-2.592000px;}
.ws2b{word-spacing:-2.160000px;}
.ws4a{word-spacing:-1.872000px;}
.ws46{word-spacing:-1.584000px;}
.ws3c{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.152000px;}
.ws42{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.810000px;}
.ws3b{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.699840px;}
.wse{word-spacing:-0.594000px;}
.ws3a{word-spacing:-0.432000px;}
.ws5a{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.153360px;}
.ws19{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.108000px;}
.ws44{word-spacing:-0.072000px;}
.wsd{word-spacing:0.000000px;}
.ws57{word-spacing:0.072000px;}
.ws12{word-spacing:0.084240px;}
.ws17{word-spacing:0.132480px;}
.ws1e{word-spacing:0.288000px;}
.ws18{word-spacing:0.463680px;}
.ws11{word-spacing:0.482400px;}
.ws23{word-spacing:0.576000px;}
.ws14{word-spacing:0.673920px;}
.ws24{word-spacing:0.720000px;}
.ws2f{word-spacing:1.008000px;}
.ws13{word-spacing:1.095120px;}
.ws53{word-spacing:1.296000px;}
.ws1d{word-spacing:1.440000px;}
.ws10{word-spacing:1.929600px;}
.ws27{word-spacing:2.016000px;}
.ws28{word-spacing:2.160000px;}
.ws29{word-spacing:2.448000px;}
.ws1a{word-spacing:2.736000px;}
.ws1f{word-spacing:2.880000px;}
.ws3d{word-spacing:3.168000px;}
.ws31{word-spacing:3.456000px;}
.ws51{word-spacing:3.600000px;}
.ws2a{word-spacing:4.320000px;}
.ws48{word-spacing:4.608000px;}
.ws40{word-spacing:5.040000px;}
.ws3f{word-spacing:5.328000px;}
.ws4b{word-spacing:5.760000px;}
.ws5b{word-spacing:5.976000px;}
.ws4c{word-spacing:6.048000px;}
.ws52{word-spacing:6.336000px;}
.ws41{word-spacing:6.480000px;}
.ws22{word-spacing:7.200000px;}
.ws4e{word-spacing:7.488000px;}
.ws20{word-spacing:8.496000px;}
.ws21{word-spacing:8.640000px;}
.ws30{word-spacing:8.928000px;}
.ws45{word-spacing:9.360000px;}
.ws36{word-spacing:10.080000px;}
.ws2e{word-spacing:10.368000px;}
.ws1b{word-spacing:10.800000px;}
.ws3e{word-spacing:11.088000px;}
.ws59{word-spacing:11.520000px;}
.ws56{word-spacing:12.096000px;}
.ws39{word-spacing:12.240000px;}
.ws49{word-spacing:12.528000px;}
.ws37{word-spacing:12.960000px;}
.ws43{word-spacing:13.248000px;}
.ws50{word-spacing:13.680000px;}
.ws25{word-spacing:14.400000px;}
.ws26{word-spacing:14.688000px;}
.ws58{word-spacing:15.408000px;}
.ws4f{word-spacing:15.840000px;}
.ws1c{word-spacing:18.720000px;}
.ws66{word-spacing:20.880000px;}
.ws5c{word-spacing:36.720000px;}
.ws5f{word-spacing:43.200000px;}
.ws60{word-spacing:44.640000px;}
.ws63{word-spacing:64.080000px;}
.ws65{word-spacing:72.000000px;}
.ws61{word-spacing:76.320000px;}
.ws64{word-spacing:98.640000px;}
.ws62{word-spacing:136.080000px;}
.ws5e{word-spacing:138.240000px;}
.ws5d{word-spacing:172.080000px;}
._9{margin-left:-3.816000px;}
._7{margin-left:-2.482200px;}
._0{margin-left:-1.404000px;}
._3{width:1.474200px;}
._6{width:3.351600px;}
._c{width:4.896000px;}
._d{width:6.048000px;}
._8{width:10.162800px;}
._a{width:15.408000px;}
._b{width:16.599600px;}
._4{width:99.219600px;}
._5{width:404.730000px;}
._1{width:544.752000px;}
._2{width:735.966000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:14.220000px;}
.y33{bottom:32.760000px;}
.y6{bottom:41.226120px;}
.y5{bottom:55.083060px;}
.y4{bottom:68.940000px;}
.y86{bottom:80.280000px;}
.y55{bottom:84.960000px;}
.ya2{bottom:87.660000px;}
.y85{bottom:100.980000px;}
.y54{bottom:105.660000px;}
.ya1{bottom:108.360000px;}
.y6c{bottom:112.500000px;}
.y32{bottom:112.860000px;}
.yca{bottom:114.120000px;}
.y84{bottom:121.680000px;}
.y53{bottom:126.360000px;}
.ya0{bottom:129.060000px;}
.y6b{bottom:133.200000px;}
.y31{bottom:133.560000px;}
.yc9{bottom:135.720000px;}
.y83{bottom:142.380000px;}
.y52{bottom:147.060000px;}
.y9f{bottom:149.760000px;}
.y6a{bottom:153.900000px;}
.y30{bottom:154.260000px;}
.yc8{bottom:157.320000px;}
.y82{bottom:163.080000px;}
.y51{bottom:167.760000px;}
.y9e{bottom:170.460000px;}
.y69{bottom:174.600000px;}
.y2f{bottom:174.960000px;}
.y81{bottom:183.780000px;}
.yc7{bottom:184.860000px;}
.y50{bottom:188.460000px;}
.y9d{bottom:191.160000px;}
.y68{bottom:195.300000px;}
.y80{bottom:204.480000px;}
.y2e{bottom:204.660000px;}
.yc6{bottom:206.460000px;}
.y4f{bottom:209.160000px;}
.y9c{bottom:211.860000px;}
.y67{bottom:216.000000px;}
.y7f{bottom:225.000000px;}
.y2d{bottom:225.360000px;}
.yc5{bottom:228.060000px;}
.y4e{bottom:229.860000px;}
.y9b{bottom:232.560000px;}
.y66{bottom:236.700000px;}
.y7e{bottom:245.700000px;}
.y2c{bottom:246.060000px;}
.y4d{bottom:250.560000px;}
.y9a{bottom:253.260000px;}
.yc4{bottom:255.600000px;}
.y65{bottom:257.400000px;}
.y90{bottom:266.400000px;}
.y2b{bottom:266.760000px;}
.y4c{bottom:271.260000px;}
.y99{bottom:273.960000px;}
.y7d{bottom:275.400000px;}
.yc3{bottom:277.200000px;}
.y64{bottom:278.100000px;}
.y8f{bottom:287.100000px;}
.y2a{bottom:287.460000px;}
.y4b{bottom:291.960000px;}
.y98{bottom:294.660000px;}
.y7c{bottom:296.100000px;}
.y63{bottom:298.800000px;}
.yc2{bottom:298.980000px;}
.y8e{bottom:307.800000px;}
.y29{bottom:308.160000px;}
.y4a{bottom:312.660000px;}
.y7b{bottom:313.020000px;}
.y97{bottom:315.360000px;}
.y62{bottom:319.500000px;}
.yc1{bottom:326.520000px;}
.y8d{bottom:328.500000px;}
.y28{bottom:328.860000px;}
.y49{bottom:333.360000px;}
.y96{bottom:336.060000px;}
.y61{bottom:340.200000px;}
.yc0{bottom:348.120000px;}
.y8c{bottom:349.200000px;}
.y27{bottom:349.560000px;}
.y95{bottom:356.760000px;}
.y60{bottom:360.900000px;}
.y48{bottom:363.060000px;}
.ybf{bottom:369.720000px;}
.y26{bottom:370.260000px;}
.y8b{bottom:378.900000px;}
.y5f{bottom:381.600000px;}
.y47{bottom:383.760000px;}
.y94{bottom:386.460000px;}
.y25{bottom:390.960000px;}
.ybe{bottom:397.260000px;}
.y8a{bottom:399.600000px;}
.y46{bottom:400.500000px;}
.y5e{bottom:402.300000px;}
.y93{bottom:407.160000px;}
.y24{bottom:411.660000px;}
.y89{bottom:416.520000px;}
.ybd{bottom:418.860000px;}
.y5d{bottom:423.000000px;}
.y92{bottom:423.900000px;}
.y23{bottom:432.360000px;}
.ybc{bottom:440.460000px;}
.y5c{bottom:443.700000px;}
.y22{bottom:453.060000px;}
.y5b{bottom:464.400000px;}
.ybb{bottom:468.000000px;}
.y21{bottom:473.760000px;}
.y5a{bottom:485.100000px;}
.yba{bottom:489.600000px;}
.y20{bottom:494.460000px;}
.y59{bottom:505.800000px;}
.yb9{bottom:511.380000px;}
.y1f{bottom:515.160000px;}
.y58{bottom:526.500000px;}
.y1e{bottom:535.860000px;}
.yb8{bottom:538.920000px;}
.y57{bottom:556.200000px;}
.y1d{bottom:556.560000px;}
.yb7{bottom:560.520000px;}
.y7a{bottom:572.220000px;}
.y56{bottom:572.940000px;}
.y1c{bottom:577.260000px;}
.yb6{bottom:582.120000px;}
.y79{bottom:592.920000px;}
.y1b{bottom:597.960000px;}
.yb5{bottom:609.660000px;}
.y78{bottom:613.620000px;}
.y1a{bottom:618.660000px;}
.yde{bottom:619.560000px;}
.yb4{bottom:631.260000px;}
.y77{bottom:634.320000px;}
.ydd{bottom:637.560000px;}
.y19{bottom:639.360000px;}
.y91{bottom:648.900000px;}
.yb3{bottom:652.860000px;}
.y76{bottom:655.020000px;}
.y18{bottom:660.060000px;}
.ydc{bottom:665.100000px;}
.yb2{bottom:674.460000px;}
.y75{bottom:675.720000px;}
.y17{bottom:680.760000px;}
.y88{bottom:684.720000px;}
.ydb{bottom:686.700000px;}
.y74{bottom:696.420000px;}
.y16{bottom:701.460000px;}
.yb1{bottom:702.000000px;}
.y87{bottom:705.420000px;}
.yda{bottom:708.480000px;}
.y73{bottom:717.120000px;}
.y15{bottom:722.160000px;}
.yb0{bottom:723.600000px;}
.y45{bottom:732.960000px;}
.yd9{bottom:736.020000px;}
.y72{bottom:737.820000px;}
.yaf{bottom:745.380000px;}
.y14{bottom:751.860000px;}
.y44{bottom:753.660000px;}
.yd8{bottom:757.620000px;}
.y71{bottom:758.520000px;}
.y13{bottom:772.560000px;}
.yae{bottom:772.920000px;}
.y43{bottom:774.360000px;}
.y70{bottom:779.220000px;}
.y12{bottom:793.260000px;}
.yad{bottom:794.520000px;}
.y42{bottom:795.060000px;}
.yd7{bottom:806.760000px;}
.y6f{bottom:808.920000px;}
.y11{bottom:813.960000px;}
.y41{bottom:815.760000px;}
.yac{bottom:822.060000px;}
.yd6{bottom:828.360000px;}
.y6e{bottom:829.620000px;}
.y10{bottom:834.660000px;}
.y40{bottom:836.460000px;}
.yab{bottom:843.660000px;}
.y6d{bottom:846.360000px;}
.yd5{bottom:849.960000px;}
.yf{bottom:855.360000px;}
.y3f{bottom:857.160000px;}
.yaa{bottom:865.260000px;}
.yd4{bottom:871.560000px;}
.y3e{bottom:877.860000px;}
.ya9{bottom:892.800000px;}
.y3d{bottom:898.560000px;}
.yd3{bottom:899.100000px;}
.ye{bottom:902.880000px;}
.ya8{bottom:914.400000px;}
.y3c{bottom:919.260000px;}
.yd2{bottom:920.700000px;}
.ya7{bottom:936.180000px;}
.y3b{bottom:939.960000px;}
.yd1{bottom:942.480000px;}
.yd{bottom:956.340000px;}
.y3a{bottom:960.660000px;}
.ya6{bottom:963.720000px;}
.yd0{bottom:970.020000px;}
.yc{bottom:978.485040px;}
.y39{bottom:981.360000px;}
.ya5{bottom:985.320000px;}
.ycf{bottom:991.620000px;}
.y38{bottom:1002.060000px;}
.yb{bottom:1003.320000px;}
.ya4{bottom:1006.920000px;}
.yce{bottom:1013.220000px;}
.y37{bottom:1022.760000px;}
.ya{bottom:1026.000000px;}
.ya3{bottom:1034.460000px;}
.ycd{bottom:1040.760000px;}
.y36{bottom:1043.460000px;}
.y9{bottom:1057.866300px;}
.ycc{bottom:1062.360000px;}
.y35{bottom:1064.160000px;}
.y8{bottom:1081.980000px;}
.ycb{bottom:1083.960000px;}
.y34{bottom:1084.860000px;}
.y3{bottom:1108.260000px;}
.y2{bottom:1125.180000px;}
.y1{bottom:1143.000000px;}
.h7{height:30.443203px;}
.h3{height:35.167148px;}
.h1{height:39.366211px;}
.h2{height:41.522695px;}
.h4{height:48.289219px;}
.ha{height:48.796875px;}
.hc{height:49.992188px;}
.h9{height:50.027344px;}
.h8{height:52.488281px;}
.hb{height:60.878320px;}
.h5{height:61.329023px;}
.h6{height:64.626680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:94.500000px;}
.x2{left:108.000000px;}
.x14{left:109.800000px;}
.xd{left:114.660000px;}
.x19{left:118.440000px;}
.x12{left:122.580000px;}
.x8{left:125.280000px;}
.xa{left:128.160000px;}
.xb{left:129.240000px;}
.x3{left:140.220000px;}
.x5{left:162.540000px;}
.x7{left:182.880000px;}
.x10{left:184.500000px;}
.x17{left:234.000000px;}
.x15{left:239.040000px;}
.x9{left:254.908800px;}
.x16{left:298.800000px;}
.x6{left:329.419440px;}
.x13{left:331.920000px;}
.x1a{left:379.440000px;}
.xe{left:391.680000px;}
.x4{left:440.640000px;}
.x11{left:798.660000px;}
.x18{left:803.160000px;}
.xc{left:806.400000px;}
.xf{left:810.000000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.673920pt;}
.lsa{letter-spacing:-0.432000pt;}
.ls10{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.171520pt;}
.lsc{letter-spacing:-0.117760pt;}
.lse{letter-spacing:-0.074880pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.181760pt;}
.ls1{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.294400pt;}
.lsd{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.318080pt;}
.ls18{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.500480pt;}
.ls7{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls17{letter-spacing:8.307200pt;}
.ws3{word-spacing:-21.116160pt;}
.ws6{word-spacing:-18.048000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.250880pt;}
.ws8{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws33{word-spacing:-13.344000pt;}
.ws0{word-spacing:-12.912000pt;}
.ws4{word-spacing:-12.814080pt;}
.ws34{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.319360pt;}
.ws38{word-spacing:-3.840000pt;}
.ws32{word-spacing:-3.200000pt;}
.ws55{word-spacing:-3.008000pt;}
.ws54{word-spacing:-2.944000pt;}
.ws2c{word-spacing:-2.688000pt;}
.ws4d{word-spacing:-2.560000pt;}
.ws2d{word-spacing:-2.304000pt;}
.ws2b{word-spacing:-1.920000pt;}
.ws4a{word-spacing:-1.664000pt;}
.ws46{word-spacing:-1.408000pt;}
.ws3c{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.024000pt;}
.ws42{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.720000pt;}
.ws3b{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.622080pt;}
.wse{word-spacing:-0.528000pt;}
.ws3a{word-spacing:-0.384000pt;}
.ws5a{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.136320pt;}
.ws19{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.096000pt;}
.ws44{word-spacing:-0.064000pt;}
.wsd{word-spacing:0.000000pt;}
.ws57{word-spacing:0.064000pt;}
.ws12{word-spacing:0.074880pt;}
.ws17{word-spacing:0.117760pt;}
.ws1e{word-spacing:0.256000pt;}
.ws18{word-spacing:0.412160pt;}
.ws11{word-spacing:0.428800pt;}
.ws23{word-spacing:0.512000pt;}
.ws14{word-spacing:0.599040pt;}
.ws24{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.896000pt;}
.ws13{word-spacing:0.973440pt;}
.ws53{word-spacing:1.152000pt;}
.ws1d{word-spacing:1.280000pt;}
.ws10{word-spacing:1.715200pt;}
.ws27{word-spacing:1.792000pt;}
.ws28{word-spacing:1.920000pt;}
.ws29{word-spacing:2.176000pt;}
.ws1a{word-spacing:2.432000pt;}
.ws1f{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.816000pt;}
.ws31{word-spacing:3.072000pt;}
.ws51{word-spacing:3.200000pt;}
.ws2a{word-spacing:3.840000pt;}
.ws48{word-spacing:4.096000pt;}
.ws40{word-spacing:4.480000pt;}
.ws3f{word-spacing:4.736000pt;}
.ws4b{word-spacing:5.120000pt;}
.ws5b{word-spacing:5.312000pt;}
.ws4c{word-spacing:5.376000pt;}
.ws52{word-spacing:5.632000pt;}
.ws41{word-spacing:5.760000pt;}
.ws22{word-spacing:6.400000pt;}
.ws4e{word-spacing:6.656000pt;}
.ws20{word-spacing:7.552000pt;}
.ws21{word-spacing:7.680000pt;}
.ws30{word-spacing:7.936000pt;}
.ws45{word-spacing:8.320000pt;}
.ws36{word-spacing:8.960000pt;}
.ws2e{word-spacing:9.216000pt;}
.ws1b{word-spacing:9.600000pt;}
.ws3e{word-spacing:9.856000pt;}
.ws59{word-spacing:10.240000pt;}
.ws56{word-spacing:10.752000pt;}
.ws39{word-spacing:10.880000pt;}
.ws49{word-spacing:11.136000pt;}
.ws37{word-spacing:11.520000pt;}
.ws43{word-spacing:11.776000pt;}
.ws50{word-spacing:12.160000pt;}
.ws25{word-spacing:12.800000pt;}
.ws26{word-spacing:13.056000pt;}
.ws58{word-spacing:13.696000pt;}
.ws4f{word-spacing:14.080000pt;}
.ws1c{word-spacing:16.640000pt;}
.ws66{word-spacing:18.560000pt;}
.ws5c{word-spacing:32.640000pt;}
.ws5f{word-spacing:38.400000pt;}
.ws60{word-spacing:39.680000pt;}
.ws63{word-spacing:56.960000pt;}
.ws65{word-spacing:64.000000pt;}
.ws61{word-spacing:67.840000pt;}
.ws64{word-spacing:87.680000pt;}
.ws62{word-spacing:120.960000pt;}
.ws5e{word-spacing:122.880000pt;}
.ws5d{word-spacing:152.960000pt;}
._9{margin-left:-3.392000pt;}
._7{margin-left:-2.206400pt;}
._0{margin-left:-1.248000pt;}
._3{width:1.310400pt;}
._6{width:2.979200pt;}
._c{width:4.352000pt;}
._d{width:5.376000pt;}
._8{width:9.033600pt;}
._a{width:13.696000pt;}
._b{width:14.755200pt;}
._4{width:88.195200pt;}
._5{width:359.760000pt;}
._1{width:484.224000pt;}
._2{width:654.192000pt;}
.fs7{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:12.640000pt;}
.y33{bottom:29.120000pt;}
.y6{bottom:36.645440pt;}
.y5{bottom:48.962720pt;}
.y4{bottom:61.280000pt;}
.y86{bottom:71.360000pt;}
.y55{bottom:75.520000pt;}
.ya2{bottom:77.920000pt;}
.y85{bottom:89.760000pt;}
.y54{bottom:93.920000pt;}
.ya1{bottom:96.320000pt;}
.y6c{bottom:100.000000pt;}
.y32{bottom:100.320000pt;}
.yca{bottom:101.440000pt;}
.y84{bottom:108.160000pt;}
.y53{bottom:112.320000pt;}
.ya0{bottom:114.720000pt;}
.y6b{bottom:118.400000pt;}
.y31{bottom:118.720000pt;}
.yc9{bottom:120.640000pt;}
.y83{bottom:126.560000pt;}
.y52{bottom:130.720000pt;}
.y9f{bottom:133.120000pt;}
.y6a{bottom:136.800000pt;}
.y30{bottom:137.120000pt;}
.yc8{bottom:139.840000pt;}
.y82{bottom:144.960000pt;}
.y51{bottom:149.120000pt;}
.y9e{bottom:151.520000pt;}
.y69{bottom:155.200000pt;}
.y2f{bottom:155.520000pt;}
.y81{bottom:163.360000pt;}
.yc7{bottom:164.320000pt;}
.y50{bottom:167.520000pt;}
.y9d{bottom:169.920000pt;}
.y68{bottom:173.600000pt;}
.y80{bottom:181.760000pt;}
.y2e{bottom:181.920000pt;}
.yc6{bottom:183.520000pt;}
.y4f{bottom:185.920000pt;}
.y9c{bottom:188.320000pt;}
.y67{bottom:192.000000pt;}
.y7f{bottom:200.000000pt;}
.y2d{bottom:200.320000pt;}
.yc5{bottom:202.720000pt;}
.y4e{bottom:204.320000pt;}
.y9b{bottom:206.720000pt;}
.y66{bottom:210.400000pt;}
.y7e{bottom:218.400000pt;}
.y2c{bottom:218.720000pt;}
.y4d{bottom:222.720000pt;}
.y9a{bottom:225.120000pt;}
.yc4{bottom:227.200000pt;}
.y65{bottom:228.800000pt;}
.y90{bottom:236.800000pt;}
.y2b{bottom:237.120000pt;}
.y4c{bottom:241.120000pt;}
.y99{bottom:243.520000pt;}
.y7d{bottom:244.800000pt;}
.yc3{bottom:246.400000pt;}
.y64{bottom:247.200000pt;}
.y8f{bottom:255.200000pt;}
.y2a{bottom:255.520000pt;}
.y4b{bottom:259.520000pt;}
.y98{bottom:261.920000pt;}
.y7c{bottom:263.200000pt;}
.y63{bottom:265.600000pt;}
.yc2{bottom:265.760000pt;}
.y8e{bottom:273.600000pt;}
.y29{bottom:273.920000pt;}
.y4a{bottom:277.920000pt;}
.y7b{bottom:278.240000pt;}
.y97{bottom:280.320000pt;}
.y62{bottom:284.000000pt;}
.yc1{bottom:290.240000pt;}
.y8d{bottom:292.000000pt;}
.y28{bottom:292.320000pt;}
.y49{bottom:296.320000pt;}
.y96{bottom:298.720000pt;}
.y61{bottom:302.400000pt;}
.yc0{bottom:309.440000pt;}
.y8c{bottom:310.400000pt;}
.y27{bottom:310.720000pt;}
.y95{bottom:317.120000pt;}
.y60{bottom:320.800000pt;}
.y48{bottom:322.720000pt;}
.ybf{bottom:328.640000pt;}
.y26{bottom:329.120000pt;}
.y8b{bottom:336.800000pt;}
.y5f{bottom:339.200000pt;}
.y47{bottom:341.120000pt;}
.y94{bottom:343.520000pt;}
.y25{bottom:347.520000pt;}
.ybe{bottom:353.120000pt;}
.y8a{bottom:355.200000pt;}
.y46{bottom:356.000000pt;}
.y5e{bottom:357.600000pt;}
.y93{bottom:361.920000pt;}
.y24{bottom:365.920000pt;}
.y89{bottom:370.240000pt;}
.ybd{bottom:372.320000pt;}
.y5d{bottom:376.000000pt;}
.y92{bottom:376.800000pt;}
.y23{bottom:384.320000pt;}
.ybc{bottom:391.520000pt;}
.y5c{bottom:394.400000pt;}
.y22{bottom:402.720000pt;}
.y5b{bottom:412.800000pt;}
.ybb{bottom:416.000000pt;}
.y21{bottom:421.120000pt;}
.y5a{bottom:431.200000pt;}
.yba{bottom:435.200000pt;}
.y20{bottom:439.520000pt;}
.y59{bottom:449.600000pt;}
.yb9{bottom:454.560000pt;}
.y1f{bottom:457.920000pt;}
.y58{bottom:468.000000pt;}
.y1e{bottom:476.320000pt;}
.yb8{bottom:479.040000pt;}
.y57{bottom:494.400000pt;}
.y1d{bottom:494.720000pt;}
.yb7{bottom:498.240000pt;}
.y7a{bottom:508.640000pt;}
.y56{bottom:509.280000pt;}
.y1c{bottom:513.120000pt;}
.yb6{bottom:517.440000pt;}
.y79{bottom:527.040000pt;}
.y1b{bottom:531.520000pt;}
.yb5{bottom:541.920000pt;}
.y78{bottom:545.440000pt;}
.y1a{bottom:549.920000pt;}
.yde{bottom:550.720000pt;}
.yb4{bottom:561.120000pt;}
.y77{bottom:563.840000pt;}
.ydd{bottom:566.720000pt;}
.y19{bottom:568.320000pt;}
.y91{bottom:576.800000pt;}
.yb3{bottom:580.320000pt;}
.y76{bottom:582.240000pt;}
.y18{bottom:586.720000pt;}
.ydc{bottom:591.200000pt;}
.yb2{bottom:599.520000pt;}
.y75{bottom:600.640000pt;}
.y17{bottom:605.120000pt;}
.y88{bottom:608.640000pt;}
.ydb{bottom:610.400000pt;}
.y74{bottom:619.040000pt;}
.y16{bottom:623.520000pt;}
.yb1{bottom:624.000000pt;}
.y87{bottom:627.040000pt;}
.yda{bottom:629.760000pt;}
.y73{bottom:637.440000pt;}
.y15{bottom:641.920000pt;}
.yb0{bottom:643.200000pt;}
.y45{bottom:651.520000pt;}
.yd9{bottom:654.240000pt;}
.y72{bottom:655.840000pt;}
.yaf{bottom:662.560000pt;}
.y14{bottom:668.320000pt;}
.y44{bottom:669.920000pt;}
.yd8{bottom:673.440000pt;}
.y71{bottom:674.240000pt;}
.y13{bottom:686.720000pt;}
.yae{bottom:687.040000pt;}
.y43{bottom:688.320000pt;}
.y70{bottom:692.640000pt;}
.y12{bottom:705.120000pt;}
.yad{bottom:706.240000pt;}
.y42{bottom:706.720000pt;}
.yd7{bottom:717.120000pt;}
.y6f{bottom:719.040000pt;}
.y11{bottom:723.520000pt;}
.y41{bottom:725.120000pt;}
.yac{bottom:730.720000pt;}
.yd6{bottom:736.320000pt;}
.y6e{bottom:737.440000pt;}
.y10{bottom:741.920000pt;}
.y40{bottom:743.520000pt;}
.yab{bottom:749.920000pt;}
.y6d{bottom:752.320000pt;}
.yd5{bottom:755.520000pt;}
.yf{bottom:760.320000pt;}
.y3f{bottom:761.920000pt;}
.yaa{bottom:769.120000pt;}
.yd4{bottom:774.720000pt;}
.y3e{bottom:780.320000pt;}
.ya9{bottom:793.600000pt;}
.y3d{bottom:798.720000pt;}
.yd3{bottom:799.200000pt;}
.ye{bottom:802.560000pt;}
.ya8{bottom:812.800000pt;}
.y3c{bottom:817.120000pt;}
.yd2{bottom:818.400000pt;}
.ya7{bottom:832.160000pt;}
.y3b{bottom:835.520000pt;}
.yd1{bottom:837.760000pt;}
.yd{bottom:850.080000pt;}
.y3a{bottom:853.920000pt;}
.ya6{bottom:856.640000pt;}
.yd0{bottom:862.240000pt;}
.yc{bottom:869.764480pt;}
.y39{bottom:872.320000pt;}
.ya5{bottom:875.840000pt;}
.ycf{bottom:881.440000pt;}
.y38{bottom:890.720000pt;}
.yb{bottom:891.840000pt;}
.ya4{bottom:895.040000pt;}
.yce{bottom:900.640000pt;}
.y37{bottom:909.120000pt;}
.ya{bottom:912.000000pt;}
.ya3{bottom:919.520000pt;}
.ycd{bottom:925.120000pt;}
.y36{bottom:927.520000pt;}
.y9{bottom:940.325600pt;}
.ycc{bottom:944.320000pt;}
.y35{bottom:945.920000pt;}
.y8{bottom:961.760000pt;}
.ycb{bottom:963.520000pt;}
.y34{bottom:964.320000pt;}
.y3{bottom:985.120000pt;}
.y2{bottom:1000.160000pt;}
.y1{bottom:1016.000000pt;}
.h7{height:27.060625pt;}
.h3{height:31.259687pt;}
.h1{height:34.992188pt;}
.h2{height:36.909063pt;}
.h4{height:42.923750pt;}
.ha{height:43.375000pt;}
.hc{height:44.437500pt;}
.h9{height:44.468750pt;}
.h8{height:46.656250pt;}
.hb{height:54.114062pt;}
.h5{height:54.514687pt;}
.h6{height:57.445937pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:84.000000pt;}
.x2{left:96.000000pt;}
.x14{left:97.600000pt;}
.xd{left:101.920000pt;}
.x19{left:105.280000pt;}
.x12{left:108.960000pt;}
.x8{left:111.360000pt;}
.xa{left:113.920000pt;}
.xb{left:114.880000pt;}
.x3{left:124.640000pt;}
.x5{left:144.480000pt;}
.x7{left:162.560000pt;}
.x10{left:164.000000pt;}
.x17{left:208.000000pt;}
.x15{left:212.480000pt;}
.x9{left:226.585600pt;}
.x16{left:265.600000pt;}
.x6{left:292.817280pt;}
.x13{left:295.040000pt;}
.x1a{left:337.280000pt;}
.xe{left:348.160000pt;}
.x4{left:391.680000pt;}
.x11{left:709.920000pt;}
.x18{left:713.920000pt;}
.xc{left:716.800000pt;}
.xf{left:720.000000pt;}
}




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