
    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_6d57e800bb50bfc960e9e264.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_6cab9244c1827cd8e61ca04b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_e89eeaaa7b9cfd9427fd2dc1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_8cce1ed905b434a7236eca0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_b7b9e7084a5bf0c888e596e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_61b636af9cf764e74348c34f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_f3c952e6aa86d0a4d2439fa2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_7e4e42ae23c03b90fc94c724.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_42e90e4c1b602447340882d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1f42aade53997d4be30e8e98.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a73621fb69d0bf14abe0cfcb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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:ffe;src:url('chunks/assets/font_35cfd596a09bdddf9e4bf47f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;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:fff;src:url('chunks/assets/font_bec11b79b270c7308cc95b3c.woff2')format("woff");}.fff{font-family:fff;line-height:0.937012;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;}
.ls7{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.096000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.lsb{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.636000px;}
.ls8{letter-spacing:3.000000px;}
.lsc{letter-spacing:9.000000px;}
.lse{letter-spacing:11.460000px;}
.lsf{letter-spacing:15.720000px;}
.ls1{letter-spacing:18.600000px;}
.lsd{letter-spacing:45.720000px;}
.ls11{letter-spacing:54.384000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws7{word-spacing:-19.620000px;}
.ws8{word-spacing:-19.560000px;}
.ws1{word-spacing:-18.384000px;}
.ws6{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.100000px;}
.wsb{word-spacing:-13.140000px;}
.ws5{word-spacing:-11.136000px;}
.wsa{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-2.016000px;}
._1{margin-left:-1.008000px;}
._0{width:1.062000px;}
._5{width:2.226000px;}
._2{width:3.612000px;}
._6{width:4.638000px;}
._c{width:6.252000px;}
._d{width:7.356000px;}
._b{width:9.084000px;}
._a{width:10.776000px;}
._8{width:12.144000px;}
._7{width:13.320000px;}
._10{width:16.410000px;}
._e{width:17.880000px;}
._f{width:19.440000px;}
._11{width:21.060000px;}
._3{width:336.180000px;}
._4{width:996.300000px;}
.fc8{color:rgb(15,36,62);}
.fc5{color:transparent;}
.fc7{color:rgb(192,0,0);}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(238,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs7{font-size:96.000000px;}
.y10e{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.y43{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y109{bottom:22.215000px;}
.y10d{bottom:23.715000px;}
.y42{bottom:24.600000px;}
.y41{bottom:39.300000px;}
.y10c{bottom:44.715000px;}
.y4{bottom:46.800000px;}
.y108{bottom:46.845000px;}
.y40{bottom:56.400000px;}
.y1{bottom:57.037500px;}
.y10b{bottom:65.715000px;}
.y107{bottom:71.745000px;}
.y3f{bottom:73.800000px;}
.y45{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3e{bottom:90.930000px;}
.y106{bottom:96.045000px;}
.y3d{bottom:108.345000px;}
.y81{bottom:111.337500px;}
.ye3{bottom:115.237500px;}
.yb2{bottom:125.437500px;}
.y3c{bottom:125.445000px;}
.y80{bottom:128.437500px;}
.y32{bottom:128.737500px;}
.y105{bottom:135.645000px;}
.ye2{bottom:135.937500px;}
.y3b{bottom:142.830000px;}
.yb1{bottom:142.837500px;}
.y31{bottom:143.437500px;}
.y7f{bottom:144.937500px;}
.y103{bottom:151.530000px;}
.ye1{bottom:156.045000px;}
.y7e{bottom:159.645000px;}
.y3a{bottom:159.930000px;}
.y30{bottom:160.545000px;}
.ye0{bottom:173.430000px;}
.y7d{bottom:176.745000px;}
.y39{bottom:177.345000px;}
.y2f{bottom:177.975000px;}
.y104{bottom:184.545000px;}
.ydf{bottom:190.575000px;}
.y7c{bottom:194.175000px;}
.y38{bottom:194.445000px;}
.yb0{bottom:194.475000px;}
.y2e{bottom:195.075000px;}
.yde{bottom:207.975000px;}
.y7b{bottom:211.275000px;}
.y37{bottom:211.830000px;}
.yaf{bottom:211.875000px;}
.y2d{bottom:212.475000px;}
.ydd{bottom:225.075000px;}
.y7a{bottom:228.675000px;}
.y36{bottom:228.945000px;}
.y2c{bottom:228.975000px;}
.ydc{bottom:242.475000px;}
.y2b{bottom:243.375000px;}
.y79{bottom:245.775000px;}
.y35{bottom:246.375000px;}
.ydb{bottom:259.575000px;}
.y2a{bottom:260.775000px;}
.yae{bottom:262.875000px;}
.y78{bottom:263.175000px;}
.y34{bottom:264.075000px;}
.yda{bottom:276.675000px;}
.yad{bottom:277.275000px;}
.y29{bottom:277.875000px;}
.y77{bottom:280.275000px;}
.yd9{bottom:294.075000px;}
.yac{bottom:294.675000px;}
.y28{bottom:295.275000px;}
.y76{bottom:297.675000px;}
.yd8{bottom:311.175000px;}
.yab{bottom:311.775000px;}
.y27{bottom:312.375000px;}
.y75{bottom:314.775000px;}
.yd7{bottom:328.575000px;}
.yaa{bottom:329.175000px;}
.y26{bottom:329.775000px;}
.y74{bottom:331.275000px;}
.yd6{bottom:345.720000px;}
.y73{bottom:346.005000px;}
.ya9{bottom:346.320000px;}
.y25{bottom:347.505000px;}
.y102{bottom:352.020000px;}
.y72{bottom:363.120000px;}
.ya8{bottom:363.705000px;}
.y24{bottom:367.005000px;}
.y101{bottom:369.120000px;}
.yd5{bottom:380.205000px;}
.y71{bottom:380.505000px;}
.y23{bottom:381.405000px;}
.ya7{bottom:389.220000px;}
.y70{bottom:397.620000px;}
.y22{bottom:398.820000px;}
.yd4{bottom:414.705000px;}
.y6f{bottom:415.005000px;}
.y21{bottom:415.920000px;}
.y10a{bottom:417.405000px;}
.y6e{bottom:432.120000px;}
.y20{bottom:433.320000px;}
.ya6{bottom:440.820000px;}
.yd3{bottom:449.205000px;}
.y6d{bottom:449.505000px;}
.y1f{bottom:450.420000px;}
.yd2{bottom:466.620000px;}
.ya5{bottom:466.920000px;}
.y6c{bottom:467.205000px;}
.y1e{bottom:467.820000px;}
.yd1{bottom:483.720000px;}
.y1d{bottom:484.905000px;}
.y6b{bottom:486.705000px;}
.ya4{bottom:499.005000px;}
.y6a{bottom:501.120000px;}
.y1c{bottom:502.320000px;}
.ya3{bottom:516.750000px;}
.yd0{bottom:518.250000px;}
.y69{bottom:518.550000px;}
.y1b{bottom:520.050000px;}
.ya2{bottom:533.850000px;}
.y68{bottom:535.650000px;}
.y1a{bottom:540.150000px;}
.ya1{bottom:551.250000px;}
.ycf{bottom:552.750000px;}
.y67{bottom:553.050000px;}
.y19{bottom:553.950000px;}
.y100{bottom:558.150000px;}
.ya0{bottom:567.750000px;}
.y66{bottom:570.150000px;}
.yff{bottom:575.850000px;}
.y9f{bottom:582.150000px;}
.yce{bottom:587.250000px;}
.y65{bottom:587.550000px;}
.yfe{bottom:596.550000px;}
.y9e{bottom:599.550000px;}
.y33{bottom:604.050000px;}
.y64{bottom:604.650000px;}
.y9d{bottom:616.650000px;}
.y63{bottom:621.150000px;}
.ycd{bottom:621.750000px;}
.y9c{bottom:634.050000px;}
.y62{bottom:635.850000px;}
.ycc{bottom:639.150000px;}
.y9b{bottom:651.150000px;}
.y61{bottom:652.950000px;}
.ycb{bottom:656.250000px;}
.y9a{bottom:668.550000px;}
.y60{bottom:670.350000px;}
.yca{bottom:673.650000px;}
.y99{bottom:685.695000px;}
.y5f{bottom:687.495000px;}
.yc9{bottom:690.780000px;}
.y98{bottom:702.195000px;}
.yfd{bottom:703.095000px;}
.y5e{bottom:704.880000px;}
.yc8{bottom:708.195000px;}
.y97{bottom:716.880000px;}
.yfc{bottom:720.195000px;}
.y5d{bottom:721.980000px;}
.yc7{bottom:725.280000px;}
.y96{bottom:733.995000px;}
.yfb{bottom:737.595000px;}
.y5c{bottom:739.395000px;}
.yc6{bottom:742.695000px;}
.y95{bottom:751.395000px;}
.yfa{bottom:754.695000px;}
.y5b{bottom:756.495000px;}
.yc5{bottom:759.780000px;}
.y94{bottom:768.495000px;}
.yf9{bottom:772.080000px;}
.y5a{bottom:772.995000px;}
.yc4{bottom:777.195000px;}
.y93{bottom:785.880000px;}
.y59{bottom:787.695000px;}
.yf8{bottom:789.195000px;}
.yc3{bottom:794.295000px;}
.y92{bottom:802.980000px;}
.y58{bottom:804.795000px;}
.yf7{bottom:806.580000px;}
.yc2{bottom:811.695000px;}
.y91{bottom:820.395000px;}
.y57{bottom:822.195000px;}
.yf6{bottom:823.695000px;}
.yc1{bottom:828.795000px;}
.y90{bottom:837.495000px;}
.y56{bottom:839.295000px;}
.yf5{bottom:841.080000px;}
.yc0{bottom:846.195000px;}
.y8f{bottom:854.925000px;}
.y55{bottom:856.725000px;}
.yf4{bottom:858.225000px;}
.ybf{bottom:862.725000px;}
.y8e{bottom:872.025000px;}
.y54{bottom:873.825000px;}
.yf3{bottom:875.625000px;}
.ybe{bottom:877.125000px;}
.y8d{bottom:888.525000px;}
.y53{bottom:891.225000px;}
.yf2{bottom:893.325000px;}
.ybd{bottom:894.525000px;}
.y18{bottom:899.625000px;}
.y8c{bottom:903.225000px;}
.y52{bottom:908.925000px;}
.ybc{bottom:911.625000px;}
.yf1{bottom:913.425000px;}
.y17{bottom:919.725000px;}
.y8b{bottom:920.325000px;}
.y51{bottom:928.425000px;}
.ybb{bottom:929.025000px;}
.yf0{bottom:930.825000px;}
.y8a{bottom:937.725000px;}
.y16{bottom:939.525000px;}
.y50{bottom:942.825000px;}
.yba{bottom:946.125000px;}
.yef{bottom:947.925000px;}
.y89{bottom:954.825000px;}
.y15{bottom:956.025000px;}
.y4f{bottom:960.225000px;}
.yb9{bottom:963.525000px;}
.y14{bottom:963.825000px;}
.yee{bottom:965.325000px;}
.y88{bottom:972.225000px;}
.y4e{bottom:977.325000px;}
.yb8{bottom:980.625000px;}
.y13{bottom:980.925000px;}
.yed{bottom:982.425000px;}
.y87{bottom:989.325000px;}
.y4d{bottom:994.725000px;}
.yb7{bottom:998.025000px;}
.y12{bottom:998.325000px;}
.yec{bottom:999.825000px;}
.y86{bottom:1006.725000px;}
.yb6{bottom:1015.125000px;}
.yeb{bottom:1016.955000px;}
.y11{bottom:1019.070000px;}
.y4c{bottom:1023.570000px;}
.y85{bottom:1023.870000px;}
.yea{bottom:1034.370000px;}
.y10{bottom:1036.755000px;}
.y84{bottom:1040.370000px;}
.yd{bottom:1040.955000px;}
.y4b{bottom:1041.255000px;}
.ye9{bottom:1051.455000px;}
.y83{bottom:1055.070000px;}
.y4a{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb5{bottom:1066.755000px;}
.yb{bottom:1068.255000px;}
.ye8{bottom:1068.870000px;}
.y82{bottom:1072.170000px;}
.y49{bottom:1074.870000px;}
.ya{bottom:1083.570000px;}
.ye7{bottom:1085.955000px;}
.y48{bottom:1089.570000px;}
.yb4{bottom:1092.570000px;}
.y9{bottom:1097.955000px;}
.ye6{bottom:1103.370000px;}
.y47{bottom:1106.670000px;}
.yb3{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.ye5{bottom:1120.455000px;}
.y46{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.ye4{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y44{bottom:1196.400000px;}
.h9{height:8.378906px;}
.hb{height:12.568359px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.h10{height:33.515625px;}
.h7{height:33.867188px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.he{height:38.100586px;}
.hd{height:41.894531px;}
.h4{height:42.333984px;}
.h14{height:43.681641px;}
.h13{height:44.507812px;}
.hf{height:49.453125px;}
.h15{height:50.273438px;}
.h6{height:50.800781px;}
.hc{height:51.996094px;}
.h1c{height:59.677734px;}
.h1b{height:61.435547px;}
.h1{height:65.645508px;}
.h19{height:73.722656px;}
.h18{height:79.980469px;}
.h1a{height:80.100000px;}
.h17{height:91.406250px;}
.h2{height:97.200000px;}
.h16{height:218.775000px;}
.h11{height:280.875000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:243.975000px;}
.w5{width:483.450000px;}
.w9{width:717.525000px;}
.w7{width:726.825000px;}
.w8{width:727.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.x14{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.x7{left:83.137487px;}
.x17{left:86.137500px;}
.x13{left:102.637487px;}
.xc{left:107.445000px;}
.x16{left:135.037487px;}
.x8{left:153.629987px;}
.xd{left:166.529987px;}
.x18{left:177.337500px;}
.x10{left:192.074987px;}
.xa{left:241.567500px;}
.x19{left:334.912500px;}
.xe{left:370.319987px;}
.x5{left:388.319987px;}
.xf{left:446.549987px;}
.x11{left:449.849987px;}
.x15{left:546.779987px;}
.xb{left:566.280000px;}
.x6{left:695.624987px;}
.x12{left:810.254987px;}
.x9{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.lsb{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.565333pt;}
.ls8{letter-spacing:2.666667pt;}
.lsc{letter-spacing:8.000000pt;}
.lse{letter-spacing:10.186667pt;}
.lsf{letter-spacing:13.973333pt;}
.ls1{letter-spacing:16.533333pt;}
.lsd{letter-spacing:40.640000pt;}
.ls11{letter-spacing:48.341333pt;}
.ws9{word-spacing:-64.000000pt;}
.ws7{word-spacing:-17.440000pt;}
.ws8{word-spacing:-17.386667pt;}
.ws1{word-spacing:-16.341333pt;}
.ws6{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.533333pt;}
.wsb{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.898667pt;}
.wsa{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-1.792000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.944000pt;}
._5{width:1.978667pt;}
._2{width:3.210667pt;}
._6{width:4.122667pt;}
._c{width:5.557333pt;}
._d{width:6.538667pt;}
._b{width:8.074667pt;}
._a{width:9.578667pt;}
._8{width:10.794667pt;}
._7{width:11.840000pt;}
._10{width:14.586667pt;}
._e{width:15.893333pt;}
._f{width:17.280000pt;}
._11{width:18.720000pt;}
._3{width:298.826667pt;}
._4{width:885.600000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs7{font-size:85.333333pt;}
.y10e{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.y43{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y109{bottom:19.746667pt;}
.y10d{bottom:21.080000pt;}
.y42{bottom:21.866667pt;}
.y41{bottom:34.933333pt;}
.y10c{bottom:39.746667pt;}
.y4{bottom:41.600000pt;}
.y108{bottom:41.640000pt;}
.y40{bottom:50.133333pt;}
.y1{bottom:50.700000pt;}
.y10b{bottom:58.413333pt;}
.y107{bottom:63.773333pt;}
.y3f{bottom:65.600000pt;}
.y45{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3e{bottom:80.826667pt;}
.y106{bottom:85.373333pt;}
.y3d{bottom:96.306667pt;}
.y81{bottom:98.966667pt;}
.ye3{bottom:102.433333pt;}
.yb2{bottom:111.500000pt;}
.y3c{bottom:111.506667pt;}
.y80{bottom:114.166667pt;}
.y32{bottom:114.433333pt;}
.y105{bottom:120.573333pt;}
.ye2{bottom:120.833333pt;}
.y3b{bottom:126.960000pt;}
.yb1{bottom:126.966667pt;}
.y31{bottom:127.500000pt;}
.y7f{bottom:128.833333pt;}
.y103{bottom:134.693333pt;}
.ye1{bottom:138.706667pt;}
.y7e{bottom:141.906667pt;}
.y3a{bottom:142.160000pt;}
.y30{bottom:142.706667pt;}
.ye0{bottom:154.160000pt;}
.y7d{bottom:157.106667pt;}
.y39{bottom:157.640000pt;}
.y2f{bottom:158.200000pt;}
.y104{bottom:164.040000pt;}
.ydf{bottom:169.400000pt;}
.y7c{bottom:172.600000pt;}
.y38{bottom:172.840000pt;}
.yb0{bottom:172.866667pt;}
.y2e{bottom:173.400000pt;}
.yde{bottom:184.866667pt;}
.y7b{bottom:187.800000pt;}
.y37{bottom:188.293333pt;}
.yaf{bottom:188.333333pt;}
.y2d{bottom:188.866667pt;}
.ydd{bottom:200.066667pt;}
.y7a{bottom:203.266667pt;}
.y36{bottom:203.506667pt;}
.y2c{bottom:203.533333pt;}
.ydc{bottom:215.533333pt;}
.y2b{bottom:216.333333pt;}
.y79{bottom:218.466667pt;}
.y35{bottom:219.000000pt;}
.ydb{bottom:230.733333pt;}
.y2a{bottom:231.800000pt;}
.yae{bottom:233.666667pt;}
.y78{bottom:233.933333pt;}
.y34{bottom:234.733333pt;}
.yda{bottom:245.933333pt;}
.yad{bottom:246.466667pt;}
.y29{bottom:247.000000pt;}
.y77{bottom:249.133333pt;}
.yd9{bottom:261.400000pt;}
.yac{bottom:261.933333pt;}
.y28{bottom:262.466667pt;}
.y76{bottom:264.600000pt;}
.yd8{bottom:276.600000pt;}
.yab{bottom:277.133333pt;}
.y27{bottom:277.666667pt;}
.y75{bottom:279.800000pt;}
.yd7{bottom:292.066667pt;}
.yaa{bottom:292.600000pt;}
.y26{bottom:293.133333pt;}
.y74{bottom:294.466667pt;}
.yd6{bottom:307.306667pt;}
.y73{bottom:307.560000pt;}
.ya9{bottom:307.840000pt;}
.y25{bottom:308.893333pt;}
.y102{bottom:312.906667pt;}
.y72{bottom:322.773333pt;}
.ya8{bottom:323.293333pt;}
.y24{bottom:326.226667pt;}
.y101{bottom:328.106667pt;}
.yd5{bottom:337.960000pt;}
.y71{bottom:338.226667pt;}
.y23{bottom:339.026667pt;}
.ya7{bottom:345.973333pt;}
.y70{bottom:353.440000pt;}
.y22{bottom:354.506667pt;}
.yd4{bottom:368.626667pt;}
.y6f{bottom:368.893333pt;}
.y21{bottom:369.706667pt;}
.y10a{bottom:371.026667pt;}
.y6e{bottom:384.106667pt;}
.y20{bottom:385.173333pt;}
.ya6{bottom:391.840000pt;}
.yd3{bottom:399.293333pt;}
.y6d{bottom:399.560000pt;}
.y1f{bottom:400.373333pt;}
.yd2{bottom:414.773333pt;}
.ya5{bottom:415.040000pt;}
.y6c{bottom:415.293333pt;}
.y1e{bottom:415.840000pt;}
.yd1{bottom:429.973333pt;}
.y1d{bottom:431.026667pt;}
.y6b{bottom:432.626667pt;}
.ya4{bottom:443.560000pt;}
.y6a{bottom:445.440000pt;}
.y1c{bottom:446.506667pt;}
.ya3{bottom:459.333333pt;}
.yd0{bottom:460.666667pt;}
.y69{bottom:460.933333pt;}
.y1b{bottom:462.266667pt;}
.ya2{bottom:474.533333pt;}
.y68{bottom:476.133333pt;}
.y1a{bottom:480.133333pt;}
.ya1{bottom:490.000000pt;}
.ycf{bottom:491.333333pt;}
.y67{bottom:491.600000pt;}
.y19{bottom:492.400000pt;}
.y100{bottom:496.133333pt;}
.ya0{bottom:504.666667pt;}
.y66{bottom:506.800000pt;}
.yff{bottom:511.866667pt;}
.y9f{bottom:517.466667pt;}
.yce{bottom:522.000000pt;}
.y65{bottom:522.266667pt;}
.yfe{bottom:530.266667pt;}
.y9e{bottom:532.933333pt;}
.y33{bottom:536.933333pt;}
.y64{bottom:537.466667pt;}
.y9d{bottom:548.133333pt;}
.y63{bottom:552.133333pt;}
.ycd{bottom:552.666667pt;}
.y9c{bottom:563.600000pt;}
.y62{bottom:565.200000pt;}
.ycc{bottom:568.133333pt;}
.y9b{bottom:578.800000pt;}
.y61{bottom:580.400000pt;}
.ycb{bottom:583.333333pt;}
.y9a{bottom:594.266667pt;}
.y60{bottom:595.866667pt;}
.yca{bottom:598.800000pt;}
.y99{bottom:609.506667pt;}
.y5f{bottom:611.106667pt;}
.yc9{bottom:614.026667pt;}
.y98{bottom:624.173333pt;}
.yfd{bottom:624.973333pt;}
.y5e{bottom:626.560000pt;}
.yc8{bottom:629.506667pt;}
.y97{bottom:637.226667pt;}
.yfc{bottom:640.173333pt;}
.y5d{bottom:641.760000pt;}
.yc7{bottom:644.693333pt;}
.y96{bottom:652.440000pt;}
.yfb{bottom:655.640000pt;}
.y5c{bottom:657.240000pt;}
.yc6{bottom:660.173333pt;}
.y95{bottom:667.906667pt;}
.yfa{bottom:670.840000pt;}
.y5b{bottom:672.440000pt;}
.yc5{bottom:675.360000pt;}
.y94{bottom:683.106667pt;}
.yf9{bottom:686.293333pt;}
.y5a{bottom:687.106667pt;}
.yc4{bottom:690.840000pt;}
.y93{bottom:698.560000pt;}
.y59{bottom:700.173333pt;}
.yf8{bottom:701.506667pt;}
.yc3{bottom:706.040000pt;}
.y92{bottom:713.760000pt;}
.y58{bottom:715.373333pt;}
.yf7{bottom:716.960000pt;}
.yc2{bottom:721.506667pt;}
.y91{bottom:729.240000pt;}
.y57{bottom:730.840000pt;}
.yf6{bottom:732.173333pt;}
.yc1{bottom:736.706667pt;}
.y90{bottom:744.440000pt;}
.y56{bottom:746.040000pt;}
.yf5{bottom:747.626667pt;}
.yc0{bottom:752.173333pt;}
.y8f{bottom:759.933333pt;}
.y55{bottom:761.533333pt;}
.yf4{bottom:762.866667pt;}
.ybf{bottom:766.866667pt;}
.y8e{bottom:775.133333pt;}
.y54{bottom:776.733333pt;}
.yf3{bottom:778.333333pt;}
.ybe{bottom:779.666667pt;}
.y8d{bottom:789.800000pt;}
.y53{bottom:792.200000pt;}
.yf2{bottom:794.066667pt;}
.ybd{bottom:795.133333pt;}
.y18{bottom:799.666667pt;}
.y8c{bottom:802.866667pt;}
.y52{bottom:807.933333pt;}
.ybc{bottom:810.333333pt;}
.yf1{bottom:811.933333pt;}
.y17{bottom:817.533333pt;}
.y8b{bottom:818.066667pt;}
.y51{bottom:825.266667pt;}
.ybb{bottom:825.800000pt;}
.yf0{bottom:827.400000pt;}
.y8a{bottom:833.533333pt;}
.y16{bottom:835.133333pt;}
.y50{bottom:838.066667pt;}
.yba{bottom:841.000000pt;}
.yef{bottom:842.600000pt;}
.y89{bottom:848.733333pt;}
.y15{bottom:849.800000pt;}
.y4f{bottom:853.533333pt;}
.yb9{bottom:856.466667pt;}
.y14{bottom:856.733333pt;}
.yee{bottom:858.066667pt;}
.y88{bottom:864.200000pt;}
.y4e{bottom:868.733333pt;}
.yb8{bottom:871.666667pt;}
.y13{bottom:871.933333pt;}
.yed{bottom:873.266667pt;}
.y87{bottom:879.400000pt;}
.y4d{bottom:884.200000pt;}
.yb7{bottom:887.133333pt;}
.y12{bottom:887.400000pt;}
.yec{bottom:888.733333pt;}
.y86{bottom:894.866667pt;}
.yb6{bottom:902.333333pt;}
.yeb{bottom:903.960000pt;}
.y11{bottom:905.840000pt;}
.y4c{bottom:909.840000pt;}
.y85{bottom:910.106667pt;}
.yea{bottom:919.440000pt;}
.y10{bottom:921.560000pt;}
.y84{bottom:924.773333pt;}
.yd{bottom:925.293333pt;}
.y4b{bottom:925.560000pt;}
.ye9{bottom:934.626667pt;}
.y83{bottom:937.840000pt;}
.y4a{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb5{bottom:948.226667pt;}
.yb{bottom:949.560000pt;}
.ye8{bottom:950.106667pt;}
.y82{bottom:953.040000pt;}
.y49{bottom:955.440000pt;}
.ya{bottom:963.173333pt;}
.ye7{bottom:965.293333pt;}
.y48{bottom:968.506667pt;}
.yb4{bottom:971.173333pt;}
.y9{bottom:975.960000pt;}
.ye6{bottom:980.773333pt;}
.y47{bottom:983.706667pt;}
.yb3{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.ye5{bottom:995.960000pt;}
.y46{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.ye4{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y44{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.hb{height:11.171875pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.h10{height:29.791667pt;}
.h7{height:30.104167pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.he{height:33.867188pt;}
.hd{height:37.239583pt;}
.h4{height:37.630208pt;}
.h14{height:38.828125pt;}
.h13{height:39.562500pt;}
.hf{height:43.958333pt;}
.h15{height:44.687500pt;}
.h6{height:45.156250pt;}
.hc{height:46.218750pt;}
.h1c{height:53.046875pt;}
.h1b{height:54.609375pt;}
.h1{height:58.351562pt;}
.h19{height:65.531250pt;}
.h18{height:71.093750pt;}
.h1a{height:71.200000pt;}
.h17{height:81.250000pt;}
.h2{height:86.400000pt;}
.h16{height:194.466667pt;}
.h11{height:249.666667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:216.866667pt;}
.w5{width:429.733333pt;}
.w9{width:637.800000pt;}
.w7{width:646.066667pt;}
.w8{width:646.333333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.x14{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.x7{left:73.899988pt;}
.x17{left:76.566667pt;}
.x13{left:91.233322pt;}
.xc{left:95.506667pt;}
.x16{left:120.033322pt;}
.x8{left:136.559988pt;}
.xd{left:148.026655pt;}
.x18{left:157.633333pt;}
.x10{left:170.733322pt;}
.xa{left:214.726667pt;}
.x19{left:297.700000pt;}
.xe{left:329.173322pt;}
.x5{left:345.173322pt;}
.xf{left:396.933322pt;}
.x11{left:399.866655pt;}
.x15{left:486.026655pt;}
.xb{left:503.360000pt;}
.x6{left:618.333322pt;}
.x12{left:720.226655pt;}
.x9{left:722.106655pt;}
}




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