
    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_e0b257f5529c28da29a3e388.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_3bb844e16239fe3853210ab7.woff2')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_6cdec82ad6e39b8d81300e07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_3a2bb19f7b2e3359ea0f07af.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974000;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_4f61183b67be77a76029b5df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050250;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_300cd9a67675740738f9cbe7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050364;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_73ef2fdbc9d3c0500b5e4a3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_02b8bfa9078a0d07df235677.woff2')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_a93c0dfbc9a208a353ebf6ec.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f7a93e0c05cad666a321fe6a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fef340fc8bd10f51a54cad5e.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m5{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:-6.123000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.442600px;}
.lsc{letter-spacing:-0.479994px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.191998px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000027px;}
.ls9{letter-spacing:0.169574px;}
.ls6{letter-spacing:0.191998px;}
.ls5{letter-spacing:2.344924px;}
.ls2{letter-spacing:2.344965px;}
.ls3{letter-spacing:2.344967px;}
.ls4{letter-spacing:2.344977px;}
.ls1{letter-spacing:2.640024px;}
.ls0{letter-spacing:12.600000px;}
.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.352000px;}
.ws8{word-spacing:-17.279856px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-11.999850px;}
.ws7{word-spacing:-11.519856px;}
.ws9{word-spacing:-10.008000px;}
.ws0{word-spacing:-9.998850px;}
.wsa{word-spacing:-8.640000px;}
.ws6{word-spacing:-8.280000px;}
.ws5{word-spacing:-8.040000px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-91.270595px;}
._0{margin-left:-9.480000px;}
._14{margin-left:-7.920000px;}
._13{margin-left:-6.240000px;}
._10{margin-left:-4.860000px;}
._5{margin-left:-2.927963px;}
._1{margin-left:-1.440000px;}
._3{width:1.518014px;}
._4{width:3.041929px;}
._b{width:4.236142px;}
._c{width:5.940000px;}
._2{width:7.344000px;}
._7{width:8.820000px;}
._6{width:9.840000px;}
._d{width:10.920000px;}
._8{width:11.940000px;}
._f{width:13.140000px;}
._1e{width:14.495819px;}
._1d{width:16.020000px;}
._a{width:17.040000px;}
._9{width:18.060000px;}
._e{width:19.920000px;}
._11{width:21.180000px;}
._18{width:22.440000px;}
._19{width:23.460000px;}
._1a{width:24.600000px;}
._1b{width:25.860000px;}
._12{width:27.360000px;}
._17{width:30.240000px;}
._1c{width:32.280000px;}
._21{width:44.207447px;}
._15{width:144.473174px;}
._16{width:279.357512px;}
._22{width:369.571922px;}
._1f{width:372.379349px;}
._23{width:581.037539px;}
._24{width:662.631719px;}
.fc6{color:transparent;}
.fc5{color:rgb(128,130,133);}
.fc3{color:rgb(184,186,188);}
.fc2{color:rgb(55,133,173);}
.fc1{color:rgb(0,0,128);}
.fc4{color:rgb(150,150,150);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:5.644440px;}
.fsc{font-size:30.000000px;}
.fs4{font-size:31.995000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:39.511080px;}
.fs6{font-size:39.995400px;}
.fs3{font-size:43.995600px;}
.fsa{font-size:45.155520px;}
.fs5{font-size:47.999400px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000600px;}
.fs8{font-size:71.999400px;}
.fsb{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yce{bottom:1.728610px;}
.y5e{bottom:31.978200px;}
.y64{bottom:36.000305px;}
.yca{bottom:40.563750px;}
.y5d{bottom:41.761200px;}
.y63{bottom:48.000295px;}
.yf8{bottom:49.747950px;}
.ycc{bottom:50.343300px;}
.y5c{bottom:51.454200px;}
.yf7{bottom:52.384200px;}
.ycb{bottom:52.554300px;}
.yc9{bottom:55.615650px;}
.y62{bottom:60.000286px;}
.y5b{bottom:61.228200px;}
.y5a{bottom:75.004650px;}
.yf6{bottom:109.105500px;}
.yc8{bottom:109.112775px;}
.y96{bottom:109.251000px;}
.y59{bottom:111.554520px;}
.y52{bottom:111.579000px;}
.yc7{bottom:124.160580px;}
.y58{bottom:125.078340px;}
.y95{bottom:130.251000px;}
.yf1{bottom:133.089900px;}
.y51{bottom:133.179000px;}
.y57{bottom:138.602175px;}
.yc6{bottom:139.124400px;}
.yf0{bottom:145.077750px;}
.yf5{bottom:145.173750px;}
.y94{bottom:151.251000px;}
.y56{bottom:152.042010px;}
.y50{bottom:154.779000px;}
.yef{bottom:157.072800px;}
.yf4{bottom:157.161600px;}
.yc5{bottom:163.870500px;}
.y55{bottom:165.565845px;}
.yee{bottom:169.060650px;}
.yf3{bottom:169.149450px;}
.y93{bottom:172.251000px;}
.y4f{bottom:175.779000px;}
.y54{bottom:179.089665px;}
.yed{bottom:181.048500px;}
.yf2{bottom:181.137300px;}
.y53{bottom:192.613500px;}
.y92{bottom:193.251000px;}
.y4e{bottom:196.776000px;}
.yec{bottom:206.556255px;}
.y91{bottom:214.341000px;}
.yc4{bottom:217.105500px;}
.y4d{bottom:218.376000px;}
.y90{bottom:235.341000px;}
.yeb{bottom:236.584200px;}
.yc3{bottom:238.110000px;}
.y4c{bottom:239.976000px;}
.y8f{bottom:256.341000px;}
.y4b{bottom:261.576000px;}
.y8e{bottom:277.341000px;}
.y4a{bottom:283.176000px;}
.yc2{bottom:289.140000px;}
.y8d{bottom:298.341000px;}
.y49{bottom:304.776000px;}
.yc1{bottom:310.140000px;}
.y8c{bottom:319.341000px;}
.y48{bottom:326.466000px;}
.yc0{bottom:331.153500px;}
.y8b{bottom:340.341000px;}
.y47{bottom:348.066000px;}
.ybf{bottom:352.153500px;}
.y8a{bottom:361.341000px;}
.y46{bottom:369.666000px;}
.ybe{bottom:373.153500px;}
.y89{bottom:382.341000px;}
.y44{bottom:391.266000px;}
.ybd{bottom:394.167000px;}
.y45{bottom:397.899000px;}
.y88{bottom:403.341000px;}
.y43{bottom:412.866000px;}
.ybc{bottom:415.167000px;}
.y65{bottom:415.787583px;}
.y87{bottom:424.341000px;}
.y42{bottom:434.466000px;}
.ybb{bottom:436.167000px;}
.y86{bottom:445.341000px;}
.y40{bottom:456.066000px;}
.yba{bottom:457.180500px;}
.y41{bottom:462.699000px;}
.y85{bottom:466.341000px;}
.y3f{bottom:477.666000px;}
.yb9{bottom:478.180500px;}
.y29{bottom:478.371705px;}
.y84{bottom:487.341000px;}
.y28{bottom:492.567540px;}
.yb8{bottom:499.180500px;}
.y3e{bottom:499.266000px;}
.y27{bottom:506.847360px;}
.y83{bottom:508.341000px;}
.yb7{bottom:520.186500px;}
.y3d{bottom:520.866000px;}
.y26{bottom:521.043180px;}
.y82{bottom:529.341000px;}
.y25{bottom:535.323000px;}
.y24{bottom:539.830500px;}
.y3c{bottom:542.466000px;}
.y3a{bottom:542.467500px;}
.y3b{bottom:549.099000px;}
.y23{bottom:549.525360px;}
.y81{bottom:550.341000px;}
.y22{bottom:563.817180px;}
.y39{bottom:564.067500px;}
.yb6{bottom:571.153500px;}
.y80{bottom:571.341000px;}
.y21{bottom:578.097000px;}
.y1f{bottom:578.109360px;}
.y20{bottom:582.604500px;}
.y38{bottom:585.667500px;}
.yb5{bottom:592.153500px;}
.y1e{bottom:592.305180px;}
.y7f{bottom:592.341000px;}
.y1d{bottom:606.585000px;}
.y37{bottom:607.267500px;}
.y1c{bottom:611.092500px;}
.yb4{bottom:613.243500px;}
.y7e{bottom:613.341000px;}
.y1b{bottom:620.807040px;}
.y66{bottom:628.159638px;}
.y36{bottom:628.867500px;}
.yb3{bottom:634.243500px;}
.y7d{bottom:634.341000px;}
.y1a{bottom:635.086860px;}
.y19{bottom:649.282680px;}
.y35{bottom:650.466000px;}
.yb2{bottom:655.243500px;}
.y7c{bottom:655.341000px;}
.y18{bottom:663.562500px;}
.y16{bottom:663.581040px;}
.y17{bottom:668.070000px;}
.y34{bottom:672.066000px;}
.yb1{bottom:676.243500px;}
.y7b{bottom:676.341000px;}
.y15{bottom:677.860860px;}
.y14{bottom:692.056680px;}
.y33{bottom:693.666000px;}
.yb0{bottom:697.243500px;}
.y7a{bottom:697.341000px;}
.y13{bottom:706.336500px;}
.y11{bottom:706.348860px;}
.y12{bottom:710.844000px;}
.y31{bottom:715.266000px;}
.yaf{bottom:718.243500px;}
.y79{bottom:718.341000px;}
.y10{bottom:720.544680px;}
.y32{bottom:721.984500px;}
.yf{bottom:734.824500px;}
.y30{bottom:736.866000px;}
.yae{bottom:739.257000px;}
.ye{bottom:739.332000px;}
.y78{bottom:739.341000px;}
.y2f{bottom:758.466000px;}
.yad{bottom:760.257000px;}
.yc{bottom:760.336500px;}
.y77{bottom:760.341000px;}
.yd{bottom:767.650500px;}
.y2e{bottom:780.066000px;}
.yac{bottom:781.257000px;}
.yaa{bottom:781.263000px;}
.ya{bottom:781.341000px;}
.yab{bottom:787.890000px;}
.yb{bottom:788.655000px;}
.y2d{bottom:801.666000px;}
.y2b{bottom:801.667500px;}
.ya9{bottom:802.263000px;}
.y8{bottom:802.347000px;}
.y75{bottom:802.366500px;}
.y2c{bottom:808.384500px;}
.y76{bottom:809.064000px;}
.y9{bottom:809.659500px;}
.ya8{bottom:823.285500px;}
.y6{bottom:823.351500px;}
.y74{bottom:823.366500px;}
.y7{bottom:830.664000px;}
.ya7{bottom:844.285500px;}
.y4{bottom:844.356000px;}
.y73{bottom:844.366500px;}
.y2a{bottom:844.951500px;}
.y5{bottom:851.668500px;}
.y72{bottom:865.366500px;}
.ya6{bottom:865.375500px;}
.yde{bottom:871.913820px;}
.y71{bottom:886.366500px;}
.ya5{bottom:886.375500px;}
.ydd{bottom:886.972455px;}
.yea{bottom:897.437490px;}
.ydc{bottom:901.936275px;}
.ya4{bottom:907.375500px;}
.y70{bottom:907.456500px;}
.ye9{bottom:913.253295px;}
.ydb{bottom:916.984080px;}
.ye8{bottom:928.217115px;}
.ya3{bottom:928.375500px;}
.ya1{bottom:928.389000px;}
.y6f{bottom:928.497000px;}
.yda{bottom:931.947900px;}
.ya2{bottom:935.007000px;}
.ye7{bottom:943.180920px;}
.yd9{bottom:946.915350px;}
.ya0{bottom:949.389000px;}
.y6e{bottom:949.497000px;}
.ye6{bottom:958.912725px;}
.yd8{bottom:961.970280px;}
.y3{bottom:970.126500px;}
.y9f{bottom:970.389000px;}
.y6d{bottom:970.497000px;}
.ye5{bottom:974.728530px;}
.yd7{bottom:976.934100px;}
.ye4{bottom:989.692335px;}
.y9e{bottom:991.389000px;}
.y6c{bottom:991.497000px;}
.y9c{bottom:991.551000px;}
.yd6{bottom:991.995105px;}
.y9d{bottom:998.107500px;}
.ye3{bottom:1004.656155px;}
.yd5{bottom:1006.958925px;}
.y2{bottom:1012.138500px;}
.y6b{bottom:1012.497000px;}
.y9b{bottom:1012.551000px;}
.ye2{bottom:1020.476790px;}
.yd4{bottom:1021.922745px;}
.y6a{bottom:1033.497000px;}
.y9a{bottom:1033.551000px;}
.ye1{bottom:1036.208580px;}
.yd3{bottom:1036.970550px;}
.ye0{bottom:1051.172400px;}
.yd2{bottom:1051.935555px;}
.y1{bottom:1051.936500px;}
.y69{bottom:1054.497000px;}
.y99{bottom:1054.641000px;}
.y61{bottom:1056.954000px;}
.ydf{bottom:1066.224945px;}
.yd1{bottom:1066.992930px;}
.y68{bottom:1075.497000px;}
.y98{bottom:1075.641000px;}
.yd0{bottom:1081.956750px;}
.y60{bottom:1089.949500px;}
.y67{bottom:1096.497000px;}
.y97{bottom:1096.641000px;}
.ycf{bottom:1096.923000px;}
.y5f{bottom:1107.978000px;}
.ycd{bottom:1134.424500px;}
.h16{height:5.886975px;}
.h14{height:22.500000px;}
.h5{height:23.996250px;}
.hb{height:26.208000px;}
.he{height:27.000000px;}
.h9{height:27.789773px;}
.hd{height:28.080000px;}
.h4{height:32.996700px;}
.h17{height:33.327708px;}
.h13{height:33.351146px;}
.h18{height:33.360926px;}
.h6{height:35.999550px;}
.h15{height:37.439532px;}
.ha{height:38.877000px;}
.h10{height:41.208822px;}
.h7{height:41.689453px;}
.h8{height:41.695453px;}
.h1{height:45.000000px;}
.h11{height:47.095796px;}
.h3{height:49.500450px;}
.h1a{height:53.999550px;}
.h19{height:56.142732px;}
.hc{height:56.159532px;}
.h12{height:63.000000px;}
.h2{height:108.000000px;}
.hf{height:1187.999398px;}
.h0{height:1188.000000px;}
.w1{width:840.005561px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:4.000497px;}
.x1e{left:17.459987px;}
.x1f{left:29.459978px;}
.x1c{left:39.000000px;}
.x1d{left:68.000447px;}
.x20{left:81.042450px;}
.x21{left:101.962200px;}
.x2{left:106.044000px;}
.x8{left:110.636100px;}
.x2e{left:113.272350px;}
.x1b{left:121.691250px;}
.x2f{left:125.517000px;}
.x32{left:129.004200px;}
.x2b{left:135.042450px;}
.x5{left:202.393500px;}
.x3{left:203.839500px;}
.x7{left:205.881000px;}
.x6{left:207.751500px;}
.xb{left:212.173500px;}
.xc{left:216.765000px;}
.x4{left:238.365000px;}
.x9{left:265.152000px;}
.xd{left:267.703500px;}
.xa{left:269.745000px;}
.xe{left:272.211000px;}
.xf{left:331.483500px;}
.x18{left:352.491000px;}
.x19{left:392.626500px;}
.x22{left:457.072200px;}
.x2a{left:470.092350px;}
.x29{left:478.092000px;}
.x33{left:482.601540px;}
.x30{left:489.314100px;}
.x31{left:501.645150px;}
.x23{left:517.464000px;}
.x24{left:528.690000px;}
.x27{left:555.817500px;}
.x2c{left:560.409000px;}
.x28{left:565.341000px;}
.x1a{left:631.332000px;}
.x17{left:659.224500px;}
.x1{left:670.024500px;}
.x10{left:689.329500px;}
.x11{left:698.938500px;}
.x12{left:703.530000px;}
.x13{left:715.351500px;}
.x14{left:722.919000px;}
.x25{left:741.628500px;}
.x15{left:743.668500px;}
.x26{left:755.490000px;}
.x34{left:829.303500px;}
.x16{left:831.345000px;}
@media print{
.v1{vertical-align:-5.442667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.837867pt;}
.lsc{letter-spacing:-0.426661pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.170665pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000024pt;}
.ls9{letter-spacing:0.150732pt;}
.ls6{letter-spacing:0.170665pt;}
.ls5{letter-spacing:2.084377pt;}
.ls2{letter-spacing:2.084414pt;}
.ls3{letter-spacing:2.084415pt;}
.ls4{letter-spacing:2.084424pt;}
.ls1{letter-spacing:2.346688pt;}
.ls0{letter-spacing:11.200000pt;}
.ws3{word-spacing:-20.757333pt;}
.ws8{word-spacing:-15.359872pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-10.666533pt;}
.ws7{word-spacing:-10.239872pt;}
.ws9{word-spacing:-8.896000pt;}
.ws0{word-spacing:-8.887867pt;}
.wsa{word-spacing:-7.680000pt;}
.ws6{word-spacing:-7.360000pt;}
.ws5{word-spacing:-7.146667pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-81.129418pt;}
._0{margin-left:-8.426667pt;}
._14{margin-left:-7.040000pt;}
._13{margin-left:-5.546667pt;}
._10{margin-left:-4.320000pt;}
._5{margin-left:-2.602634pt;}
._1{margin-left:-1.280000pt;}
._3{width:1.349346pt;}
._4{width:2.703937pt;}
._b{width:3.765459pt;}
._c{width:5.280000pt;}
._2{width:6.528000pt;}
._7{width:7.840000pt;}
._6{width:8.746667pt;}
._d{width:9.706667pt;}
._8{width:10.613333pt;}
._f{width:11.680000pt;}
._1e{width:12.885172pt;}
._1d{width:14.240000pt;}
._a{width:15.146667pt;}
._9{width:16.053333pt;}
._e{width:17.706667pt;}
._11{width:18.826667pt;}
._18{width:19.946667pt;}
._19{width:20.853333pt;}
._1a{width:21.866667pt;}
._1b{width:22.986667pt;}
._12{width:24.320000pt;}
._17{width:26.880000pt;}
._1c{width:28.693333pt;}
._21{width:39.295509pt;}
._15{width:128.420599pt;}
._16{width:248.317788pt;}
._22{width:328.508375pt;}
._1f{width:331.003866pt;}
._23{width:516.477812pt;}
._24{width:589.005973pt;}
.fsd{font-size:5.017280pt;}
.fsc{font-size:26.666667pt;}
.fs4{font-size:28.440000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:35.120960pt;}
.fs6{font-size:35.551467pt;}
.fs3{font-size:39.107200pt;}
.fsa{font-size:40.138240pt;}
.fs5{font-size:42.666133pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.667200pt;}
.fs8{font-size:63.999467pt;}
.fsb{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:1.536542pt;}
.y5e{bottom:28.425067pt;}
.y64{bottom:32.000271pt;}
.yca{bottom:36.056667pt;}
.y5d{bottom:37.121067pt;}
.y63{bottom:42.666929pt;}
.yf8{bottom:44.220400pt;}
.ycc{bottom:44.749600pt;}
.y5c{bottom:45.737067pt;}
.yf7{bottom:46.563733pt;}
.ycb{bottom:46.714933pt;}
.yc9{bottom:49.436133pt;}
.y62{bottom:53.333587pt;}
.y5b{bottom:54.425067pt;}
.y5a{bottom:66.670800pt;}
.yf6{bottom:96.982667pt;}
.yc8{bottom:96.989133pt;}
.y96{bottom:97.112000pt;}
.y59{bottom:99.159573pt;}
.y52{bottom:99.181333pt;}
.yc7{bottom:110.364960pt;}
.y58{bottom:111.180747pt;}
.y95{bottom:115.778667pt;}
.yf1{bottom:118.302133pt;}
.y51{bottom:118.381333pt;}
.y57{bottom:123.201933pt;}
.yc6{bottom:123.666133pt;}
.yf0{bottom:128.958000pt;}
.yf5{bottom:129.043333pt;}
.y94{bottom:134.445333pt;}
.y56{bottom:135.148453pt;}
.y50{bottom:137.581333pt;}
.yef{bottom:139.620267pt;}
.yf4{bottom:139.699200pt;}
.yc5{bottom:145.662667pt;}
.y55{bottom:147.169640pt;}
.yee{bottom:150.276133pt;}
.yf3{bottom:150.355067pt;}
.y93{bottom:153.112000pt;}
.y4f{bottom:156.248000pt;}
.y54{bottom:159.190813pt;}
.yed{bottom:160.932000pt;}
.yf2{bottom:161.010933pt;}
.y53{bottom:171.212000pt;}
.y92{bottom:171.778667pt;}
.y4e{bottom:174.912000pt;}
.yec{bottom:183.605560pt;}
.y91{bottom:190.525333pt;}
.yc4{bottom:192.982667pt;}
.y4d{bottom:194.112000pt;}
.y90{bottom:209.192000pt;}
.yeb{bottom:210.297067pt;}
.yc3{bottom:211.653333pt;}
.y4c{bottom:213.312000pt;}
.y8f{bottom:227.858667pt;}
.y4b{bottom:232.512000pt;}
.y8e{bottom:246.525333pt;}
.y4a{bottom:251.712000pt;}
.yc2{bottom:257.013333pt;}
.y8d{bottom:265.192000pt;}
.y49{bottom:270.912000pt;}
.yc1{bottom:275.680000pt;}
.y8c{bottom:283.858667pt;}
.y48{bottom:290.192000pt;}
.yc0{bottom:294.358667pt;}
.y8b{bottom:302.525333pt;}
.y47{bottom:309.392000pt;}
.ybf{bottom:313.025333pt;}
.y8a{bottom:321.192000pt;}
.y46{bottom:328.592000pt;}
.ybe{bottom:331.692000pt;}
.y89{bottom:339.858667pt;}
.y44{bottom:347.792000pt;}
.ybd{bottom:350.370667pt;}
.y45{bottom:353.688000pt;}
.y88{bottom:358.525333pt;}
.y43{bottom:366.992000pt;}
.ybc{bottom:369.037333pt;}
.y65{bottom:369.588963pt;}
.y87{bottom:377.192000pt;}
.y42{bottom:386.192000pt;}
.ybb{bottom:387.704000pt;}
.y86{bottom:395.858667pt;}
.y40{bottom:405.392000pt;}
.yba{bottom:406.382667pt;}
.y41{bottom:411.288000pt;}
.y85{bottom:414.525333pt;}
.y3f{bottom:424.592000pt;}
.yb9{bottom:425.049333pt;}
.y29{bottom:425.219293pt;}
.y84{bottom:433.192000pt;}
.y28{bottom:437.837813pt;}
.yb8{bottom:443.716000pt;}
.y3e{bottom:443.792000pt;}
.y27{bottom:450.530987pt;}
.y83{bottom:451.858667pt;}
.yb7{bottom:462.388000pt;}
.y3d{bottom:462.992000pt;}
.y26{bottom:463.149493pt;}
.y82{bottom:470.525333pt;}
.y25{bottom:475.842667pt;}
.y24{bottom:479.849333pt;}
.y3c{bottom:482.192000pt;}
.y3a{bottom:482.193333pt;}
.y3b{bottom:488.088000pt;}
.y23{bottom:488.466987pt;}
.y81{bottom:489.192000pt;}
.y22{bottom:501.170827pt;}
.y39{bottom:501.393333pt;}
.yb6{bottom:507.692000pt;}
.y80{bottom:507.858667pt;}
.y21{bottom:513.864000pt;}
.y1f{bottom:513.874987pt;}
.y20{bottom:517.870667pt;}
.y38{bottom:520.593333pt;}
.yb5{bottom:526.358667pt;}
.y1e{bottom:526.493493pt;}
.y7f{bottom:526.525333pt;}
.y1d{bottom:539.186667pt;}
.y37{bottom:539.793333pt;}
.y1c{bottom:543.193333pt;}
.yb4{bottom:545.105333pt;}
.y7e{bottom:545.192000pt;}
.y1b{bottom:551.828480pt;}
.y66{bottom:558.364123pt;}
.y36{bottom:558.993333pt;}
.yb3{bottom:563.772000pt;}
.y7d{bottom:563.858667pt;}
.y1a{bottom:564.521653pt;}
.y19{bottom:577.140160pt;}
.y35{bottom:578.192000pt;}
.yb2{bottom:582.438667pt;}
.y7c{bottom:582.525333pt;}
.y18{bottom:589.833333pt;}
.y16{bottom:589.849813pt;}
.y17{bottom:593.840000pt;}
.y34{bottom:597.392000pt;}
.yb1{bottom:601.105333pt;}
.y7b{bottom:601.192000pt;}
.y15{bottom:602.542987pt;}
.y14{bottom:615.161493pt;}
.y33{bottom:616.592000pt;}
.yb0{bottom:619.772000pt;}
.y7a{bottom:619.858667pt;}
.y13{bottom:627.854667pt;}
.y11{bottom:627.865653pt;}
.y12{bottom:631.861333pt;}
.y31{bottom:635.792000pt;}
.yaf{bottom:638.438667pt;}
.y79{bottom:638.525333pt;}
.y10{bottom:640.484160pt;}
.y32{bottom:641.764000pt;}
.yf{bottom:653.177333pt;}
.y30{bottom:654.992000pt;}
.yae{bottom:657.117333pt;}
.ye{bottom:657.184000pt;}
.y78{bottom:657.192000pt;}
.y2f{bottom:674.192000pt;}
.yad{bottom:675.784000pt;}
.yc{bottom:675.854667pt;}
.y77{bottom:675.858667pt;}
.yd{bottom:682.356000pt;}
.y2e{bottom:693.392000pt;}
.yac{bottom:694.450667pt;}
.yaa{bottom:694.456000pt;}
.ya{bottom:694.525333pt;}
.yab{bottom:700.346667pt;}
.yb{bottom:701.026667pt;}
.y2d{bottom:712.592000pt;}
.y2b{bottom:712.593333pt;}
.ya9{bottom:713.122667pt;}
.y8{bottom:713.197333pt;}
.y75{bottom:713.214667pt;}
.y2c{bottom:718.564000pt;}
.y76{bottom:719.168000pt;}
.y9{bottom:719.697333pt;}
.ya8{bottom:731.809333pt;}
.y6{bottom:731.868000pt;}
.y74{bottom:731.881333pt;}
.y7{bottom:738.368000pt;}
.ya7{bottom:750.476000pt;}
.y4{bottom:750.538667pt;}
.y73{bottom:750.548000pt;}
.y2a{bottom:751.068000pt;}
.y5{bottom:757.038667pt;}
.y72{bottom:769.214667pt;}
.ya6{bottom:769.222667pt;}
.yde{bottom:775.034507pt;}
.y71{bottom:787.881333pt;}
.ya5{bottom:787.889333pt;}
.ydd{bottom:788.419960pt;}
.yea{bottom:797.722213pt;}
.ydc{bottom:801.721133pt;}
.ya4{bottom:806.556000pt;}
.y70{bottom:806.628000pt;}
.ye9{bottom:811.780707pt;}
.ydb{bottom:815.096960pt;}
.ye8{bottom:825.081880pt;}
.ya3{bottom:825.222667pt;}
.ya1{bottom:825.234667pt;}
.y6f{bottom:825.330667pt;}
.yda{bottom:828.398133pt;}
.ya2{bottom:831.117333pt;}
.ye7{bottom:838.383040pt;}
.yd9{bottom:841.702533pt;}
.ya0{bottom:843.901333pt;}
.y6e{bottom:843.997333pt;}
.ye6{bottom:852.366867pt;}
.yd8{bottom:855.084693pt;}
.y3{bottom:862.334667pt;}
.y9f{bottom:862.568000pt;}
.y6d{bottom:862.664000pt;}
.ye5{bottom:866.425360pt;}
.yd7{bottom:868.385867pt;}
.ye4{bottom:879.726520pt;}
.y9e{bottom:881.234667pt;}
.y6c{bottom:881.330667pt;}
.y9c{bottom:881.378667pt;}
.yd6{bottom:881.773427pt;}
.y9d{bottom:887.206667pt;}
.ye3{bottom:893.027693pt;}
.yd5{bottom:895.074600pt;}
.y2{bottom:899.678667pt;}
.y6b{bottom:899.997333pt;}
.y9b{bottom:900.045333pt;}
.ye2{bottom:907.090480pt;}
.yd4{bottom:908.375773pt;}
.y6a{bottom:918.664000pt;}
.y9a{bottom:918.712000pt;}
.ye1{bottom:921.074293pt;}
.yd3{bottom:921.751600pt;}
.ye0{bottom:934.375467pt;}
.yd2{bottom:935.053827pt;}
.y1{bottom:935.054667pt;}
.y69{bottom:937.330667pt;}
.y99{bottom:937.458667pt;}
.y61{bottom:939.514667pt;}
.ydf{bottom:947.755507pt;}
.yd1{bottom:948.438160pt;}
.y68{bottom:955.997333pt;}
.y98{bottom:956.125333pt;}
.yd0{bottom:961.739333pt;}
.y60{bottom:968.844000pt;}
.y67{bottom:974.664000pt;}
.y97{bottom:974.792000pt;}
.ycf{bottom:975.042667pt;}
.y5f{bottom:984.869333pt;}
.ycd{bottom:1008.377333pt;}
.h16{height:5.232866pt;}
.h14{height:20.000000pt;}
.h5{height:21.330000pt;}
.hb{height:23.296000pt;}
.he{height:24.000000pt;}
.h9{height:24.702020pt;}
.hd{height:24.960000pt;}
.h4{height:29.330400pt;}
.h17{height:29.624630pt;}
.h13{height:29.645463pt;}
.h18{height:29.654156pt;}
.h6{height:31.999600pt;}
.h15{height:33.279584pt;}
.ha{height:34.557333pt;}
.h10{height:36.630064pt;}
.h7{height:37.057292pt;}
.h8{height:37.062625pt;}
.h1{height:40.000000pt;}
.h11{height:41.862930pt;}
.h3{height:44.000400pt;}
.h1a{height:47.999600pt;}
.h19{height:49.904651pt;}
.hc{height:49.919584pt;}
.h12{height:56.000000pt;}
.h2{height:96.000000pt;}
.hf{height:1055.999465pt;}
.h0{height:1056.000000pt;}
.w1{width:746.671610pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:3.555997pt;}
.x1e{left:15.519989pt;}
.x1f{left:26.186647pt;}
.x1c{left:34.666667pt;}
.x1d{left:60.444842pt;}
.x20{left:72.037733pt;}
.x21{left:90.633067pt;}
.x2{left:94.261333pt;}
.x8{left:98.343200pt;}
.x2e{left:100.686533pt;}
.x1b{left:108.170000pt;}
.x2f{left:111.570667pt;}
.x32{left:114.670400pt;}
.x2b{left:120.037733pt;}
.x5{left:179.905333pt;}
.x3{left:181.190667pt;}
.x7{left:183.005333pt;}
.x6{left:184.668000pt;}
.xb{left:188.598667pt;}
.xc{left:192.680000pt;}
.x4{left:211.880000pt;}
.x9{left:235.690667pt;}
.xd{left:237.958667pt;}
.xa{left:239.773333pt;}
.xe{left:241.965333pt;}
.xf{left:294.652000pt;}
.x18{left:313.325333pt;}
.x19{left:349.001333pt;}
.x22{left:406.286400pt;}
.x2a{left:417.859867pt;}
.x29{left:424.970667pt;}
.x33{left:428.979147pt;}
.x30{left:434.945867pt;}
.x31{left:445.906800pt;}
.x23{left:459.968000pt;}
.x24{left:469.946667pt;}
.x27{left:494.060000pt;}
.x2c{left:498.141333pt;}
.x28{left:502.525333pt;}
.x1a{left:561.184000pt;}
.x17{left:585.977333pt;}
.x1{left:595.577333pt;}
.x10{left:612.737333pt;}
.x11{left:621.278667pt;}
.x12{left:625.360000pt;}
.x13{left:635.868000pt;}
.x14{left:642.594667pt;}
.x25{left:659.225333pt;}
.x15{left:661.038667pt;}
.x26{left:671.546667pt;}
.x34{left:737.158667pt;}
.x16{left:738.973333pt;}
}




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