
    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_9a6dcc3b7ded38359eecbbb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_2eabc3b93915bf27406e43d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.177000;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_5690a6984bc2ed499e3f2341.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.200900;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_565ab7ffa2a3e1f440619ca6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.160000;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_fa604696082335d94b337319.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_13d17e9a31307db732f9975e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.165000;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_fa604696082335d94b337319.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_bd55817ff5aded866566b6c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.181000;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_87c7081d4891f399654a4c09.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_4ba4ca7332cefad973133be0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.121000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.v2{vertical-align:30.888000px;}
.v3{vertical-align:61.776000px;}
.ls1c{letter-spacing:-2.268000px;}
.lsf{letter-spacing:-1.785600px;}
.lse{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.102000px;}
.lsd{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.030000px;}
.ls9{letter-spacing:0.055800px;}
.ls4{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.149400px;}
.ls1e{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186900px;}
.ls10{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.333000px;}
.ls1{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.408000px;}
.ls0{letter-spacing:0.420000px;}
.ls1d{letter-spacing:0.450000px;}
.ls5{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.810000px;}
.ls14{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.785000px;}
.ls1b{letter-spacing:1.944000px;}
.ls20{letter-spacing:136.118400px;}
.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;}
}
.ws6d{word-spacing:-13.056000px;}
.ws5d{word-spacing:-11.352000px;}
.ws0{word-spacing:-11.280000px;}
.ws6e{word-spacing:-10.965000px;}
.ws64{word-spacing:-10.557000px;}
.ws46{word-spacing:-10.530000px;}
.ws2{word-spacing:-10.211400px;}
.ws1{word-spacing:-8.901000px;}
.ws26{word-spacing:-2.040000px;}
.ws37{word-spacing:-1.980000px;}
.ws2b{word-spacing:-1.944000px;}
.ws16{word-spacing:-1.920000px;}
.ws23{word-spacing:-1.860000px;}
.ws55{word-spacing:-1.740000px;}
.ws6a{word-spacing:-1.632000px;}
.ws3c{word-spacing:-1.440000px;}
.ws2e{word-spacing:-1.260000px;}
.ws4{word-spacing:-1.200000px;}
.ws2d{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.080000px;}
.ws44{word-spacing:-1.020000px;}
.ws67{word-spacing:-0.739200px;}
.ws17{word-spacing:-0.720000px;}
.ws45{word-spacing:-0.714000px;}
.ws18{word-spacing:-0.660000px;}
.ws6b{word-spacing:-0.612000px;}
.ws20{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.540000px;}
.ws3f{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.355200px;}
.ws19{word-spacing:-0.300000px;}
.ws15{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.223200px;}
.ws2a{word-spacing:-0.222000px;}
.ws66{word-spacing:-0.211200px;}
.ws68{word-spacing:-0.204000px;}
.ws39{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws13{word-spacing:0.060000px;}
.ws1a{word-spacing:0.240000px;}
.ws49{word-spacing:0.300000px;}
.ws22{word-spacing:0.420000px;}
.ws1f{word-spacing:0.480000px;}
.ws21{word-spacing:0.540000px;}
.ws25{word-spacing:0.660000px;}
.ws1c{word-spacing:0.720000px;}
.ws3a{word-spacing:0.780000px;}
.wsf{word-spacing:0.840000px;}
.ws51{word-spacing:0.960000px;}
.ws34{word-spacing:1.020000px;}
.ws27{word-spacing:1.140000px;}
.ws32{word-spacing:1.200000px;}
.ws33{word-spacing:1.380000px;}
.ws50{word-spacing:1.440000px;}
.ws4c{word-spacing:1.500000px;}
.ws6c{word-spacing:1.530000px;}
.ws43{word-spacing:1.620000px;}
.ws11{word-spacing:1.680000px;}
.wsa{word-spacing:1.740000px;}
.ws29{word-spacing:1.785600px;}
.ws7{word-spacing:1.800000px;}
.ws1b{word-spacing:1.860000px;}
.wsc{word-spacing:1.920000px;}
.wsb{word-spacing:1.980000px;}
.ws3e{word-spacing:2.040000px;}
.ws4a{word-spacing:2.100000px;}
.ws52{word-spacing:2.220000px;}
.ws38{word-spacing:2.280000px;}
.ws10{word-spacing:2.340000px;}
.ws42{word-spacing:2.400000px;}
.ws4f{word-spacing:2.520000px;}
.ws3d{word-spacing:2.700000px;}
.ws36{word-spacing:2.820000px;}
.ws1d{word-spacing:2.880000px;}
.ws9{word-spacing:2.940000px;}
.ws35{word-spacing:3.120000px;}
.ws69{word-spacing:3.162000px;}
.ws12{word-spacing:3.180000px;}
.ws8{word-spacing:3.240000px;}
.ws3b{word-spacing:3.300000px;}
.ws2f{word-spacing:3.360000px;}
.wse{word-spacing:3.420000px;}
.ws5{word-spacing:3.480000px;}
.ws48{word-spacing:3.540000px;}
.ws1e{word-spacing:3.600000px;}
.ws54{word-spacing:3.660000px;}
.wsd{word-spacing:3.780000px;}
.ws4d{word-spacing:3.900000px;}
.ws4e{word-spacing:3.960000px;}
.ws40{word-spacing:4.140000px;}
.ws53{word-spacing:4.620000px;}
.ws4b{word-spacing:5.280000px;}
.ws28{word-spacing:5.580000px;}
.ws31{word-spacing:6.300000px;}
.ws41{word-spacing:6.600000px;}
.ws30{word-spacing:7.020000px;}
.ws5b{word-spacing:56.020800px;}
.ws5e{word-spacing:70.646400px;}
.ws58{word-spacing:77.885280px;}
.ws5f{word-spacing:82.262400px;}
.ws60{word-spacing:85.483200px;}
.ws59{word-spacing:91.344000px;}
.ws5a{word-spacing:137.913600px;}
.ws63{word-spacing:156.393600px;}
.ws57{word-spacing:168.643200px;}
.ws62{word-spacing:231.792000px;}
.ws61{word-spacing:235.329600px;}
.ws5c{word-spacing:405.451200px;}
.ws47{word-spacing:973.620000px;}
.ws6f{word-spacing:974.592000px;}
.ws65{word-spacing:1425.384000px;}
.ws2c{word-spacing:1427.544000px;}
._1e{margin-left:-974.113800px;}
._b{margin-left:-973.111200px;}
._6{margin-left:-7.446000px;}
._5{margin-left:-6.348000px;}
._7{margin-left:-5.316000px;}
._4{margin-left:-4.230000px;}
._9{margin-left:-3.163800px;}
._1{margin-left:-2.004000px;}
._3{margin-left:-1.002000px;}
._0{width:1.878000px;}
._a{width:2.977800px;}
._2{width:4.038000px;}
._c{width:52.005000px;}
._8{width:55.576200px;}
._e{width:77.742000px;}
._d{width:99.211200px;}
._13{width:152.114400px;}
._12{width:153.436800px;}
._10{width:155.652000px;}
._15{width:157.027200px;}
._16{width:164.997600px;}
._1c{width:167.640000px;}
._17{width:313.843200px;}
._1d{width:317.380800px;}
._1a{width:364.953600px;}
._1b{width:368.964000px;}
._19{width:370.339200px;}
._f{width:404.448000px;}
._14{width:407.510400px;}
._11{width:417.331200px;}
._18{width:420.076800px;}
.fc2{color:transparent;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:22.200000px;}
.fs1{font-size:34.980000px;}
.fs2{font-size:41.400000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:52.800000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:55.800000px;}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:90.560850px;}
.y34{bottom:90.567000px;}
.y32{bottom:91.318050px;}
.y7a{bottom:97.356150px;}
.y2a{bottom:107.817000px;}
.y31{bottom:109.768050px;}
.y79{bottom:114.606900px;}
.y30{bottom:128.218050px;}
.y78{bottom:131.857650px;}
.y29{bottom:146.668050px;}
.y77{bottom:149.108400px;}
.y28{bottom:165.118050px;}
.y76{bottom:166.359150px;}
.y27{bottom:183.568050px;}
.y75{bottom:183.609900px;}
.y74{bottom:200.860650px;}
.y26{bottom:202.018050px;}
.y25{bottom:220.468050px;}
.y73{bottom:222.895050px;}
.y72{bottom:238.339050px;}
.y24{bottom:238.918050px;}
.y71{bottom:253.783050px;}
.y23{bottom:257.368050px;}
.y6d{bottom:272.183850px;}
.y22{bottom:275.818050px;}
.y6c{bottom:287.627850px;}
.y21{bottom:294.268050px;}
.y70{bottom:295.363050px;}
.y6b{bottom:303.071850px;}
.y6e{bottom:310.807050px;}
.y20{bottom:312.718050px;}
.y6a{bottom:318.515850px;}
.y6f{bottom:326.251050px;}
.y1f{bottom:331.168050px;}
.y69{bottom:333.959850px;}
.y68{bottom:349.403850px;}
.y1e{bottom:349.618050px;}
.y67{bottom:367.804650px;}
.y1d{bottom:368.068050px;}
.y5f{bottom:369.256650px;}
.y64{bottom:369.283050px;}
.y61{bottom:376.991850px;}
.y5e{bottom:384.700650px;}
.y63{bottom:384.727050px;}
.y66{bottom:386.205450px;}
.y1c{bottom:386.518050px;}
.y60{bottom:392.435850px;}
.y5d{bottom:400.144650px;}
.y62{bottom:400.171050px;}
.y65{bottom:401.649450px;}
.y1b{bottom:404.968050px;}
.y59{bottom:420.023850px;}
.y1a{bottom:423.418050px;}
.y58{bottom:435.467850px;}
.y5c{bottom:435.481050px;}
.y19{bottom:441.868050px;}
.y57{bottom:450.911850px;}
.y5a{bottom:450.925050px;}
.y18{bottom:460.318050px;}
.y56{bottom:466.355850px;}
.y5b{bottom:466.369050px;}
.y17{bottom:478.768050px;}
.y55{bottom:481.799850px;}
.y16{bottom:497.218050px;}
.y54{bottom:500.200650px;}
.y52{bottom:515.644650px;}
.y15{bottom:515.668050px;}
.y53{bottom:531.088650px;}
.y14{bottom:534.118050px;}
.y51{bottom:549.502650px;}
.y13{bottom:552.568050px;}
.y4f{bottom:564.946650px;}
.y12{bottom:571.018050px;}
.y50{bottom:580.390650px;}
.y11{bottom:589.468050px;}
.y4e{bottom:598.804650px;}
.y4c{bottom:606.526650px;}
.y10{bottom:607.918050px;}
.y4b{bottom:614.248650px;}
.yf{bottom:626.368050px;}
.y94{bottom:629.053800px;}
.y4d{bottom:629.692650px;}
.ye{bottom:644.818050px;}
.y4a{bottom:648.106650px;}
.yd{bottom:663.268050px;}
.y49{bottom:663.550650px;}
.y45{bottom:672.737850px;}
.y44{bottom:680.459850px;}
.y93{bottom:680.806050px;}
.y87{bottom:680.818800px;}
.yc{bottom:681.718050px;}
.y48{bottom:681.951450px;}
.y47{bottom:697.395450px;}
.y92{bottom:698.056800px;}
.y86{bottom:698.069550px;}
.yb{bottom:700.168050px;}
.y46{bottom:712.839450px;}
.y91{bottom:715.307550px;}
.y85{bottom:715.320300px;}
.ya{bottom:718.618050px;}
.y43{bottom:731.240250px;}
.y90{bottom:732.558300px;}
.y84{bottom:732.571050px;}
.y9{bottom:737.068050px;}
.y42{bottom:749.641050px;}
.y8f{bottom:749.809050px;}
.y83{bottom:749.821800px;}
.y8{bottom:755.518050px;}
.y3f{bottom:766.563450px;}
.y8e{bottom:767.059800px;}
.y82{bottom:767.072550px;}
.y41{bottom:768.041850px;}
.y7{bottom:773.968050px;}
.y40{bottom:783.485850px;}
.y8d{bottom:784.310550px;}
.y81{bottom:784.323300px;}
.y6{bottom:792.418050px;}
.y8c{bottom:801.561300px;}
.y80{bottom:801.574050px;}
.y3b{bottom:801.886650px;}
.y3e{bottom:801.899850px;}
.y5{bottom:810.868050px;}
.y39{bottom:817.330650px;}
.y3d{bottom:817.343850px;}
.y8b{bottom:818.812050px;}
.y7f{bottom:818.824800px;}
.y4{bottom:829.318050px;}
.y3a{bottom:832.774650px;}
.y3c{bottom:832.787850px;}
.y8a{bottom:836.062800px;}
.y7e{bottom:836.075550px;}
.y3{bottom:847.768050px;}
.y38{bottom:851.188650px;}
.y89{bottom:853.313550px;}
.y7d{bottom:853.326300px;}
.y2d{bottom:857.391000px;}
.y37{bottom:858.910650px;}
.y2c{bottom:864.889050px;}
.y2{bottom:866.218050px;}
.y88{bottom:870.564300px;}
.y7c{bottom:870.577050px;}
.y2f{bottom:884.668050px;}
.y36{bottom:885.046650px;}
.y35{bottom:892.771650px;}
.y1{bottom:903.118050px;}
.y7b{bottom:905.078550px;}
.y2e{bottom:955.942350px;}
.y33{bottom:1078.409850px;}
.h5{height:15.295800px;}
.h13{height:43.401000px;}
.h12{height:45.543000px;}
.h10{height:45.696000px;}
.h7{height:45.900000px;}
.hf{height:46.563000px;}
.he{height:47.308800px;}
.h11{height:48.195000px;}
.h4{height:49.996800px;}
.h6{height:50.868000px;}
.h3{height:54.000000px;}
.h2{height:56.700000px;}
.hc{height:78.196800px;}
.hb{height:79.094400px;}
.h8{height:79.106400px;}
.hd{height:109.084800px;}
.h9{height:109.982400px;}
.ha{height:110.006400px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:25.966350px;}
.x3{left:28.835700px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.x2d{left:85.033500px;}
.x2{left:93.538350px;}
.x6{left:102.042450px;}
.x7{left:131.811000px;}
.x28{left:194.398200px;}
.xa{left:195.564450px;}
.x27{left:201.618600px;}
.x23{left:213.063000px;}
.xe{left:261.071400px;}
.x24{left:262.483800px;}
.x11{left:264.714600px;}
.x10{left:267.829800px;}
.xb{left:268.982850px;}
.x25{left:270.931800px;}
.xc{left:342.277800px;}
.x12{left:344.904600px;}
.x26{left:349.432200px;}
.x2f{left:353.408250px;}
.x13{left:361.906200px;}
.x2e{left:366.158250px;}
.x1b{left:369.153000px;}
.x1f{left:436.578600px;}
.x20{left:439.258200px;}
.xd{left:440.604600px;}
.x1e{left:449.316600px;}
.x14{left:455.665800px;}
.x17{left:495.358200px;}
.x18{left:498.064200px;}
.x1a{left:499.503000px;}
.x22{left:504.796200px;}
.x16{left:506.789400px;}
.x2b{left:508.729800px;}
.x15{left:511.435800px;}
.xf{left:518.761800px;}
.x1c{left:520.755000px;}
.x2a{left:525.533400px;}
.x19{left:538.113000px;}
.x2c{left:539.855400px;}
.x21{left:540.911400px;}
.x29{left:548.145000px;}
.x1d{left:550.309800px;}
.x9{left:651.643500px;}
.x8{left:654.512850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v2{vertical-align:27.456000pt;}
.v3{vertical-align:54.912000pt;}
.ls1c{letter-spacing:-2.016000pt;}
.lsf{letter-spacing:-1.587200pt;}
.lse{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.090667pt;}
.lsd{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.026667pt;}
.ls9{letter-spacing:0.049600pt;}
.ls4{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.132800pt;}
.ls1e{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.166133pt;}
.ls10{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.296000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.362667pt;}
.ls0{letter-spacing:0.373333pt;}
.ls1d{letter-spacing:0.400000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.586667pt;}
.ls1b{letter-spacing:1.728000pt;}
.ls20{letter-spacing:120.994133pt;}
.ws6d{word-spacing:-11.605333pt;}
.ws5d{word-spacing:-10.090667pt;}
.ws0{word-spacing:-10.026667pt;}
.ws6e{word-spacing:-9.746667pt;}
.ws64{word-spacing:-9.384000pt;}
.ws46{word-spacing:-9.360000pt;}
.ws2{word-spacing:-9.076800pt;}
.ws1{word-spacing:-7.912000pt;}
.ws26{word-spacing:-1.813333pt;}
.ws37{word-spacing:-1.760000pt;}
.ws2b{word-spacing:-1.728000pt;}
.ws16{word-spacing:-1.706667pt;}
.ws23{word-spacing:-1.653333pt;}
.ws55{word-spacing:-1.546667pt;}
.ws6a{word-spacing:-1.450667pt;}
.ws3c{word-spacing:-1.280000pt;}
.ws2e{word-spacing:-1.120000pt;}
.ws4{word-spacing:-1.066667pt;}
.ws2d{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.906667pt;}
.ws67{word-spacing:-0.657067pt;}
.ws17{word-spacing:-0.640000pt;}
.ws45{word-spacing:-0.634667pt;}
.ws18{word-spacing:-0.586667pt;}
.ws6b{word-spacing:-0.544000pt;}
.ws20{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.480000pt;}
.ws3f{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.315733pt;}
.ws19{word-spacing:-0.266667pt;}
.ws15{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.198400pt;}
.ws2a{word-spacing:-0.197333pt;}
.ws66{word-spacing:-0.187733pt;}
.ws68{word-spacing:-0.181333pt;}
.ws39{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053333pt;}
.ws1a{word-spacing:0.213333pt;}
.ws49{word-spacing:0.266667pt;}
.ws22{word-spacing:0.373333pt;}
.ws1f{word-spacing:0.426667pt;}
.ws21{word-spacing:0.480000pt;}
.ws25{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.640000pt;}
.ws3a{word-spacing:0.693333pt;}
.wsf{word-spacing:0.746667pt;}
.ws51{word-spacing:0.853333pt;}
.ws34{word-spacing:0.906667pt;}
.ws27{word-spacing:1.013333pt;}
.ws32{word-spacing:1.066667pt;}
.ws33{word-spacing:1.226667pt;}
.ws50{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.333333pt;}
.ws6c{word-spacing:1.360000pt;}
.ws43{word-spacing:1.440000pt;}
.ws11{word-spacing:1.493333pt;}
.wsa{word-spacing:1.546667pt;}
.ws29{word-spacing:1.587200pt;}
.ws7{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.653333pt;}
.wsc{word-spacing:1.706667pt;}
.wsb{word-spacing:1.760000pt;}
.ws3e{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.866667pt;}
.ws52{word-spacing:1.973333pt;}
.ws38{word-spacing:2.026667pt;}
.ws10{word-spacing:2.080000pt;}
.ws42{word-spacing:2.133333pt;}
.ws4f{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.400000pt;}
.ws36{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.560000pt;}
.ws9{word-spacing:2.613333pt;}
.ws35{word-spacing:2.773333pt;}
.ws69{word-spacing:2.810667pt;}
.ws12{word-spacing:2.826667pt;}
.ws8{word-spacing:2.880000pt;}
.ws3b{word-spacing:2.933333pt;}
.ws2f{word-spacing:2.986667pt;}
.wse{word-spacing:3.040000pt;}
.ws5{word-spacing:3.093333pt;}
.ws48{word-spacing:3.146667pt;}
.ws1e{word-spacing:3.200000pt;}
.ws54{word-spacing:3.253333pt;}
.wsd{word-spacing:3.360000pt;}
.ws4d{word-spacing:3.466667pt;}
.ws4e{word-spacing:3.520000pt;}
.ws40{word-spacing:3.680000pt;}
.ws53{word-spacing:4.106667pt;}
.ws4b{word-spacing:4.693333pt;}
.ws28{word-spacing:4.960000pt;}
.ws31{word-spacing:5.600000pt;}
.ws41{word-spacing:5.866667pt;}
.ws30{word-spacing:6.240000pt;}
.ws5b{word-spacing:49.796267pt;}
.ws5e{word-spacing:62.796800pt;}
.ws58{word-spacing:69.231360pt;}
.ws5f{word-spacing:73.122133pt;}
.ws60{word-spacing:75.985067pt;}
.ws59{word-spacing:81.194667pt;}
.ws5a{word-spacing:122.589867pt;}
.ws63{word-spacing:139.016533pt;}
.ws57{word-spacing:149.905067pt;}
.ws62{word-spacing:206.037333pt;}
.ws61{word-spacing:209.181867pt;}
.ws5c{word-spacing:360.401067pt;}
.ws47{word-spacing:865.440000pt;}
.ws6f{word-spacing:866.304000pt;}
.ws65{word-spacing:1267.008000pt;}
.ws2c{word-spacing:1268.928000pt;}
._1e{margin-left:-865.878933pt;}
._b{margin-left:-864.987733pt;}
._6{margin-left:-6.618667pt;}
._5{margin-left:-5.642667pt;}
._7{margin-left:-4.725333pt;}
._4{margin-left:-3.760000pt;}
._9{margin-left:-2.812267pt;}
._1{margin-left:-1.781333pt;}
._3{margin-left:-0.890667pt;}
._0{width:1.669333pt;}
._a{width:2.646933pt;}
._2{width:3.589333pt;}
._c{width:46.226667pt;}
._8{width:49.401067pt;}
._e{width:69.104000pt;}
._d{width:88.187733pt;}
._13{width:135.212800pt;}
._12{width:136.388267pt;}
._10{width:138.357333pt;}
._15{width:139.579733pt;}
._16{width:146.664533pt;}
._1c{width:149.013333pt;}
._17{width:278.971733pt;}
._1d{width:282.116267pt;}
._1a{width:324.403200pt;}
._1b{width:327.968000pt;}
._19{width:329.190400pt;}
._f{width:359.509333pt;}
._14{width:362.231467pt;}
._11{width:370.961067pt;}
._18{width:373.401600pt;}
.fs4{font-size:19.733333pt;}
.fs1{font-size:31.093333pt;}
.fs2{font-size:36.800000pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:46.933333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:49.600000pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:80.498533pt;}
.y34{bottom:80.504000pt;}
.y32{bottom:81.171600pt;}
.y7a{bottom:86.538800pt;}
.y2a{bottom:95.837333pt;}
.y31{bottom:97.571600pt;}
.y79{bottom:101.872800pt;}
.y30{bottom:113.971600pt;}
.y78{bottom:117.206800pt;}
.y29{bottom:130.371600pt;}
.y77{bottom:132.540800pt;}
.y28{bottom:146.771600pt;}
.y76{bottom:147.874800pt;}
.y27{bottom:163.171600pt;}
.y75{bottom:163.208800pt;}
.y74{bottom:178.542800pt;}
.y26{bottom:179.571600pt;}
.y25{bottom:195.971600pt;}
.y73{bottom:198.128933pt;}
.y72{bottom:211.856933pt;}
.y24{bottom:212.371600pt;}
.y71{bottom:225.584933pt;}
.y23{bottom:228.771600pt;}
.y6d{bottom:241.941200pt;}
.y22{bottom:245.171600pt;}
.y6c{bottom:255.669200pt;}
.y21{bottom:261.571600pt;}
.y70{bottom:262.544933pt;}
.y6b{bottom:269.397200pt;}
.y6e{bottom:276.272933pt;}
.y20{bottom:277.971600pt;}
.y6a{bottom:283.125200pt;}
.y6f{bottom:290.000933pt;}
.y1f{bottom:294.371600pt;}
.y69{bottom:296.853200pt;}
.y68{bottom:310.581200pt;}
.y1e{bottom:310.771600pt;}
.y67{bottom:326.937467pt;}
.y1d{bottom:327.171600pt;}
.y5f{bottom:328.228133pt;}
.y64{bottom:328.251600pt;}
.y61{bottom:335.103867pt;}
.y5e{bottom:341.956133pt;}
.y63{bottom:341.979600pt;}
.y66{bottom:343.293733pt;}
.y1c{bottom:343.571600pt;}
.y60{bottom:348.831867pt;}
.y5d{bottom:355.684133pt;}
.y62{bottom:355.707600pt;}
.y65{bottom:357.021733pt;}
.y1b{bottom:359.971600pt;}
.y59{bottom:373.354533pt;}
.y1a{bottom:376.371600pt;}
.y58{bottom:387.082533pt;}
.y5c{bottom:387.094267pt;}
.y19{bottom:392.771600pt;}
.y57{bottom:400.810533pt;}
.y5a{bottom:400.822267pt;}
.y18{bottom:409.171600pt;}
.y56{bottom:414.538533pt;}
.y5b{bottom:414.550267pt;}
.y17{bottom:425.571600pt;}
.y55{bottom:428.266533pt;}
.y16{bottom:441.971600pt;}
.y54{bottom:444.622800pt;}
.y52{bottom:458.350800pt;}
.y15{bottom:458.371600pt;}
.y53{bottom:472.078800pt;}
.y14{bottom:474.771600pt;}
.y51{bottom:488.446800pt;}
.y13{bottom:491.171600pt;}
.y4f{bottom:502.174800pt;}
.y12{bottom:507.571600pt;}
.y50{bottom:515.902800pt;}
.y11{bottom:523.971600pt;}
.y4e{bottom:532.270800pt;}
.y4c{bottom:539.134800pt;}
.y10{bottom:540.371600pt;}
.y4b{bottom:545.998800pt;}
.yf{bottom:556.771600pt;}
.y94{bottom:559.158933pt;}
.y4d{bottom:559.726800pt;}
.ye{bottom:573.171600pt;}
.y4a{bottom:576.094800pt;}
.yd{bottom:589.571600pt;}
.y49{bottom:589.822800pt;}
.y45{bottom:597.989200pt;}
.y44{bottom:604.853200pt;}
.y93{bottom:605.160933pt;}
.y87{bottom:605.172267pt;}
.yc{bottom:605.971600pt;}
.y48{bottom:606.179067pt;}
.y47{bottom:619.907067pt;}
.y92{bottom:620.494933pt;}
.y86{bottom:620.506267pt;}
.yb{bottom:622.371600pt;}
.y46{bottom:633.635067pt;}
.y91{bottom:635.828933pt;}
.y85{bottom:635.840267pt;}
.ya{bottom:638.771600pt;}
.y43{bottom:649.991333pt;}
.y90{bottom:651.162933pt;}
.y84{bottom:651.174267pt;}
.y9{bottom:655.171600pt;}
.y42{bottom:666.347600pt;}
.y8f{bottom:666.496933pt;}
.y83{bottom:666.508267pt;}
.y8{bottom:671.571600pt;}
.y3f{bottom:681.389733pt;}
.y8e{bottom:681.830933pt;}
.y82{bottom:681.842267pt;}
.y41{bottom:682.703867pt;}
.y7{bottom:687.971600pt;}
.y40{bottom:696.431867pt;}
.y8d{bottom:697.164933pt;}
.y81{bottom:697.176267pt;}
.y6{bottom:704.371600pt;}
.y8c{bottom:712.498933pt;}
.y80{bottom:712.510267pt;}
.y3b{bottom:712.788133pt;}
.y3e{bottom:712.799867pt;}
.y5{bottom:720.771600pt;}
.y39{bottom:726.516133pt;}
.y3d{bottom:726.527867pt;}
.y8b{bottom:727.832933pt;}
.y7f{bottom:727.844267pt;}
.y4{bottom:737.171600pt;}
.y3a{bottom:740.244133pt;}
.y3c{bottom:740.255867pt;}
.y8a{bottom:743.166933pt;}
.y7e{bottom:743.178267pt;}
.y3{bottom:753.571600pt;}
.y38{bottom:756.612133pt;}
.y89{bottom:758.500933pt;}
.y7d{bottom:758.512267pt;}
.y2d{bottom:762.125333pt;}
.y37{bottom:763.476133pt;}
.y2c{bottom:768.790267pt;}
.y2{bottom:769.971600pt;}
.y88{bottom:773.834933pt;}
.y7c{bottom:773.846267pt;}
.y2f{bottom:786.371600pt;}
.y36{bottom:786.708133pt;}
.y35{bottom:793.574800pt;}
.y1{bottom:802.771600pt;}
.y7b{bottom:804.514267pt;}
.y2e{bottom:849.726533pt;}
.y33{bottom:958.586533pt;}
.h5{height:13.596267pt;}
.h13{height:38.578667pt;}
.h12{height:40.482667pt;}
.h10{height:40.618667pt;}
.h7{height:40.800000pt;}
.hf{height:41.389333pt;}
.he{height:42.052267pt;}
.h11{height:42.840000pt;}
.h4{height:44.441600pt;}
.h6{height:45.216000pt;}
.h3{height:48.000000pt;}
.h2{height:50.400000pt;}
.hc{height:69.508267pt;}
.hb{height:70.306133pt;}
.h8{height:70.316800pt;}
.hd{height:96.964267pt;}
.h9{height:97.762133pt;}
.ha{height:97.783467pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:23.081200pt;}
.x3{left:25.631733pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.x2d{left:75.585333pt;}
.x2{left:83.145200pt;}
.x6{left:90.704400pt;}
.x7{left:117.165333pt;}
.x28{left:172.798400pt;}
.xa{left:173.835067pt;}
.x27{left:179.216533pt;}
.x23{left:189.389333pt;}
.xe{left:232.063467pt;}
.x24{left:233.318933pt;}
.x11{left:235.301867pt;}
.x10{left:238.070933pt;}
.xb{left:239.095867pt;}
.x25{left:240.828267pt;}
.xc{left:304.246933pt;}
.x12{left:306.581867pt;}
.x26{left:310.606400pt;}
.x2f{left:314.140667pt;}
.x13{left:321.694400pt;}
.x2e{left:325.474000pt;}
.x1b{left:328.136000pt;}
.x1f{left:388.069867pt;}
.x20{left:390.451733pt;}
.xd{left:391.648533pt;}
.x1e{left:399.392533pt;}
.x14{left:405.036267pt;}
.x17{left:440.318400pt;}
.x18{left:442.723733pt;}
.x1a{left:444.002667pt;}
.x22{left:448.707733pt;}
.x16{left:450.479467pt;}
.x2b{left:452.204267pt;}
.x15{left:454.609600pt;}
.xf{left:461.121600pt;}
.x1c{left:462.893333pt;}
.x2a{left:467.140800pt;}
.x19{left:478.322667pt;}
.x2c{left:479.871467pt;}
.x21{left:480.810133pt;}
.x29{left:487.240000pt;}
.x1d{left:489.164267pt;}
.x9{left:579.238667pt;}
.x8{left:581.789200pt;}
}




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