
    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_8a0db9279502dc22efc7c9f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_e4602a138d97b19297e0e1e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_374ce01f1c82e343641406d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_2fb8b663c0784d3252d0c050.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_b25b220a223c62280b83e203.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.487000;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_2845f2677591b861cc55b6b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_73056df8491560d2cd81f028.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_a3df6b1fad9b1f032147a4aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_9a7f72a6cfbe170c57d61e0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_30e60214373aea3e6815efff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_818333f39c17a28f5b68b1e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_99d670cdde834c0e7744e53d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_489234a0878c0db6729138c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.703450;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_9d84074de62fec435250885c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.715000;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_7fcd59b67b7ce062e0914087.woff2')format("woff");}.fff{font-family:fff;line-height:0.542000;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:ff10;src:url('chunks/assets/font_9d3348b1d9efb4c8338c4d1f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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:ff11;src:url('chunks/assets/font_9d833c0cac96e3071754e32d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_3257af150006e85c3866f959.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.520000;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:ff13;src:url('chunks/assets/font_9a06168694112b1ea8245ac5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.049000;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:ff14;src:url('chunks/assets/font_1a2209fcb51913ecb3616dac.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_ad6384c3cd916211523ca3ef.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.892000;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:ff16;src:url('chunks/assets/font_6f6bc76ccd4e96a4a5c11e0b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.596000;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:ff17;src:url('chunks/assets/font_fabf2d562cd6db8ff10899e6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.905000;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:ff18;src:url('chunks/assets/font_680363897e4b208dc16247d5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.658000;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:ff19;src:url('chunks/assets/font_422e78f21f7c29c51ada0685.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.697000;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);}
.v3{vertical-align:-21.690000px;}
.v5{vertical-align:-16.872000px;}
.v4{vertical-align:-8.964000px;}
.ve{vertical-align:-6.108000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.432000px;}
.v9{vertical-align:8.970000px;}
.v8{vertical-align:14.778000px;}
.v6{vertical-align:16.872000px;}
.v1{vertical-align:21.690000px;}
.vc{vertical-align:32.034000px;}
.vb{vertical-align:41.004000px;}
.vd{vertical-align:51.240000px;}
.va{vertical-align:56.784000px;}
.v7{vertical-align:71.730000px;}
.ls18{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000300px;}
.ls24{letter-spacing:0.000489px;}
.ls15{letter-spacing:0.000767px;}
.lsb{letter-spacing:0.001084px;}
.ls13{letter-spacing:0.002015px;}
.ls7{letter-spacing:0.002222px;}
.ls34{letter-spacing:0.003652px;}
.ls4d{letter-spacing:0.006746px;}
.ls2c{letter-spacing:0.007096px;}
.ls4e{letter-spacing:0.013617px;}
.ls40{letter-spacing:0.017042px;}
.ls37{letter-spacing:0.021445px;}
.ls1f{letter-spacing:0.023674px;}
.ls32{letter-spacing:0.023754px;}
.ls1c{letter-spacing:0.028899px;}
.ls22{letter-spacing:1.652518px;}
.ls20{letter-spacing:2.135430px;}
.ls21{letter-spacing:2.984525px;}
.ls3b{letter-spacing:2.985089px;}
.ls23{letter-spacing:2.985193px;}
.ls16{letter-spacing:2.986118px;}
.ls17{letter-spacing:2.988209px;}
.ls5c{letter-spacing:2.988532px;}
.ls31{letter-spacing:2.989140px;}
.ls5{letter-spacing:2.990525px;}
.ls43{letter-spacing:2.991193px;}
.ls58{letter-spacing:2.993008px;}
.ls53{letter-spacing:3.227882px;}
.ls46{letter-spacing:7.174200px;}
.ls51{letter-spacing:11.297588px;}
.ls4a{letter-spacing:12.824338px;}
.ls59{letter-spacing:13.007203px;}
.ls50{letter-spacing:14.585246px;}
.ls2a{letter-spacing:14.645022px;}
.ls39{letter-spacing:15.063451px;}
.ls47{letter-spacing:15.457140px;}
.ls42{letter-spacing:15.481880px;}
.ls48{letter-spacing:16.267140px;}
.ls45{letter-spacing:16.576425px;}
.ls3d{letter-spacing:16.602538px;}
.ls1e{letter-spacing:16.617617px;}
.ls5b{letter-spacing:19.257206px;}
.ls5a{letter-spacing:19.263206px;}
.ls1d{letter-spacing:19.587193px;}
.ls33{letter-spacing:19.591140px;}
.ls3c{letter-spacing:19.593193px;}
.lsf{letter-spacing:19.905275px;}
.ls2f{letter-spacing:20.024826px;}
.ls27{letter-spacing:20.687950px;}
.ls52{letter-spacing:21.933089px;}
.ls35{letter-spacing:22.375140px;}
.ls26{letter-spacing:22.382525px;}
.ls4f{letter-spacing:22.911089px;}
.ls57{letter-spacing:22.913008px;}
.ls56{letter-spacing:22.919008px;}
.ls2e{letter-spacing:22.988525px;}
.ls3f{letter-spacing:23.192933px;}
.ls28{letter-spacing:23.294525px;}
.ls55{letter-spacing:23.679193px;}
.ls2d{letter-spacing:24.368525px;}
.ls25{letter-spacing:24.566525px;}
.ls4c{letter-spacing:24.866650px;}
.ls2b{letter-spacing:24.890525px;}
.ls44{letter-spacing:24.926425px;}
.ls41{letter-spacing:25.071193px;}
.ls3a{letter-spacing:25.586525px;}
.ls49{letter-spacing:26.108338px;}
.ls19{letter-spacing:26.558525px;}
.ls38{letter-spacing:27.380525px;}
.ls36{letter-spacing:27.381193px;}
.ls29{letter-spacing:28.400525px;}
.ls54{letter-spacing:29.408525px;}
.ls30{letter-spacing:29.653140px;}
.ls0{letter-spacing:31.576341px;}
.ls1a{letter-spacing:40.496525px;}
.ls1b{letter-spacing:40.952525px;}
.ls6{letter-spacing:102.182525px;}
.ls4{letter-spacing:115.007008px;}
.ls10{letter-spacing:162.735193px;}
.ls3{letter-spacing:162.911008px;}
.ls2{letter-spacing:179.875140px;}
.ls9{letter-spacing:180.583140px;}
.ls14{letter-spacing:184.311193px;}
.ls12{letter-spacing:188.247193px;}
.ls11{letter-spacing:188.535193px;}
.ls8{letter-spacing:190.549140px;}
.lsc{letter-spacing:193.526525px;}
.lsd{letter-spacing:203.177264px;}
.lsa{letter-spacing:213.817321px;}
.lse{letter-spacing:221.050169px;}
.ls4b{letter-spacing:1032.164338px;}
.ls3e{letter-spacing:1155.169140px;}
.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;}
}
.ws10{word-spacing:-38.937826px;}
.ws7d{word-spacing:-38.772942px;}
.ws11{word-spacing:-28.955301px;}
.ws2{word-spacing:-16.605662px;}
.ws80{word-spacing:-16.273350px;}
.ws18{word-spacing:-14.111859px;}
.ws64{word-spacing:-6.623136px;}
.ws7e{word-spacing:-6.517948px;}
.ws75{word-spacing:-3.266147px;}
.ws22{word-spacing:-2.797498px;}
.ws4a{word-spacing:-1.960640px;}
.ws6c{word-spacing:-1.721537px;}
.ws41{word-spacing:-1.482435px;}
.ws81{word-spacing:-0.765128px;}
.ws88{word-spacing:-0.526025px;}
.ws40{word-spacing:-0.406474px;}
.ws44{word-spacing:-0.167372px;}
.ws1c{word-spacing:-0.148723px;}
.ws45{word-spacing:-0.107596px;}
.ws91{word-spacing:-0.071731px;}
.ws7{word-spacing:-0.041843px;}
.wsa1{word-spacing:-0.035866px;}
.ws1a{word-spacing:0.000000px;}
.ws31{word-spacing:0.011955px;}
.ws76{word-spacing:0.033474px;}
.ws95{word-spacing:0.090859px;}
.ws90{word-spacing:0.191282px;}
.ws4d{word-spacing:0.609711px;}
.ws47{word-spacing:0.702963px;}
.ws8c{word-spacing:0.848814px;}
.ws1e{word-spacing:1.087916px;}
.ws3d{word-spacing:1.147692px;}
.ws3a{word-spacing:1.420272px;}
.ws32{word-spacing:1.566121px;}
.ws89{word-spacing:1.625896px;}
.ws4c{word-spacing:1.685672px;}
.ws8f{word-spacing:1.745448px;}
.ws92{word-spacing:1.864999px;}
.ws48{word-spacing:1.898478px;}
.ws83{word-spacing:1.924774px;}
.wsa3{word-spacing:1.955863px;}
.ws42{word-spacing:2.104101px;}
.ws8d{word-spacing:2.283428px;}
.ws6a{word-spacing:2.343204px;}
.ws39{word-spacing:2.376684px;}
.wse{word-spacing:2.598463px;}
.ws37{word-spacing:2.642082px;}
.ws82{word-spacing:2.701857px;}
.ws56{word-spacing:2.761633px;}
.ws96{word-spacing:2.768813px;}
.ws16{word-spacing:2.816633px;}
.ws63{word-spacing:2.821408px;}
.ws9b{word-spacing:2.864454px;}
.ws4b{word-spacing:2.881184px;}
.ws78{word-spacing:2.998352px;}
.ws3c{word-spacing:3.237455px;}
.ws7f{word-spacing:3.285275px;}
.ws6{word-spacing:3.299613px;}
.ws26{word-spacing:3.359389px;}
.wsf{word-spacing:3.513036px;}
.ws43{word-spacing:3.598491px;}
.ws74{word-spacing:3.715661px;}
.ws27{word-spacing:3.718042px;}
.ws9f{word-spacing:3.773045px;}
.ws77{word-spacing:3.954764px;}
.ws72{word-spacing:4.076696px;}
.ws94{word-spacing:4.155610px;}
.ws7a{word-spacing:4.196247px;}
.ws6f{word-spacing:4.256023px;}
.ws85{word-spacing:4.375574px;}
.ws46{word-spacing:4.435350px;}
.ws70{word-spacing:4.554901px;}
.ws3b{word-spacing:4.576431px;}
.ws35{word-spacing:4.614676px;}
.ws5d{word-spacing:4.672073px;}
.ws36{word-spacing:4.674452px;}
.ws50{word-spacing:4.734228px;}
.ws2f{word-spacing:4.794003px;}
.ws9a{word-spacing:4.872919px;}
.ws9c{word-spacing:5.112022px;}
.ws4e{word-spacing:5.152657px;}
.ws4f{word-spacing:5.272208px;}
.wsa{word-spacing:5.288383px;}
.ws53{word-spacing:5.331984px;}
.ws7b{word-spacing:5.341561px;}
.ws7c{word-spacing:5.389382px;}
.ws6d{word-spacing:5.391759px;}
.wsa4{word-spacing:5.398946px;}
.ws60{word-spacing:5.451535px;}
.ws8e{word-spacing:5.571086px;}
.ws84{word-spacing:5.630862px;}
.ws68{word-spacing:5.690637px;}
.ws9e{word-spacing:5.781511px;}
.ws93{word-spacing:5.810188px;}
.ws2d{word-spacing:5.869964px;}
.ws2a{word-spacing:5.929740px;}
.ws5e{word-spacing:5.963229px;}
.ws33{word-spacing:5.989515px;}
.ws1f{word-spacing:6.109066px;}
.ws23{word-spacing:6.150892px;}
.ws49{word-spacing:6.297973px;}
.ws29{word-spacing:6.348169px;}
.ws54{word-spacing:6.467720px;}
.ws98{word-spacing:6.498820px;}
.ws6b{word-spacing:6.527496px;}
.ws3e{word-spacing:6.587271px;}
.ws5f{word-spacing:6.647047px;}
.ws65{word-spacing:6.826374px;}
.ws52{word-spacing:6.886149px;}
.ws20{word-spacing:6.945925px;}
.ws5a{word-spacing:7.065476px;}
.ws2c{word-spacing:7.125252px;}
.ws3f{word-spacing:7.244803px;}
.ws87{word-spacing:7.543681px;}
.ws58{word-spacing:7.782783px;}
.ws24{word-spacing:7.842559px;}
.ws21{word-spacing:7.902334px;}
.ws59{word-spacing:7.962110px;}
.ws57{word-spacing:8.021886px;}
.ws12{word-spacing:8.117503px;}
.ws6e{word-spacing:8.141437px;}
.ws51{word-spacing:8.500090px;}
.ws86{word-spacing:8.559866px;}
.ws25{word-spacing:8.858744px;}
.ws73{word-spacing:8.918520px;}
.ws34{word-spacing:9.097846px;}
.ws2b{word-spacing:9.755378px;}
.ws55{word-spacing:10.054256px;}
.wsc{word-spacing:10.076440px;}
.ws9{word-spacing:10.345432px;}
.wsa2{word-spacing:10.563571px;}
.ws62{word-spacing:10.711788px;}
.ws8b{word-spacing:10.950890px;}
.wsd{word-spacing:11.260005px;}
.wsb{word-spacing:11.313804px;}
.ws8a{word-spacing:12.744158px;}
.ws1d{word-spacing:17.633802px;}
.ws97{word-spacing:18.267469px;}
.ws17{word-spacing:18.315290px;}
.wsa0{word-spacing:19.176061px;}
.ws67{word-spacing:19.547876px;}
.ws61{word-spacing:19.797679px;}
.ws9d{word-spacing:20.419396px;}
.ws5{word-spacing:21.280114px;}
.ws19{word-spacing:21.314734px;}
.ws1{word-spacing:21.339889px;}
.ws99{word-spacing:21.758373px;}
.ws2e{word-spacing:22.638091px;}
.ws79{word-spacing:22.834279px;}
.ws69{word-spacing:22.894055px;}
.ws30{word-spacing:23.508091px;}
.ws5b{word-spacing:24.011166px;}
.ws3{word-spacing:24.334859px;}
.ws28{word-spacing:26.827469px;}
.ws66{word-spacing:27.006091px;}
.ws38{word-spacing:29.291208px;}
.ws71{word-spacing:29.365733px;}
.ws5c{word-spacing:29.513208px;}
.ws4{word-spacing:31.500725px;}
.ws0{word-spacing:38.631358px;}
.ws8{word-spacing:41.891021px;}
.ws1b{word-spacing:80.625869px;}
.ws14{word-spacing:130.194091px;}
.ws13{word-spacing:144.036091px;}
.ws15{word-spacing:162.371876px;}
._24{margin-left:-31.663338px;}
._25{margin-left:-27.066455px;}
._26{margin-left:-25.894804px;}
._1a{margin-left:-7.649399px;}
._1{margin-left:-4.961375px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.673717px;}
._3{width:1.673717px;}
._8{width:3.202064px;}
._28{width:5.065156px;}
._27{width:7.063561px;}
._11{width:9.922750px;}
._22{width:11.417140px;}
._1c{width:14.645022px;}
._17{width:16.139412px;}
._19{width:18.047346px;}
._10{width:19.065637px;}
._20{width:20.443255px;}
._14{width:22.422975px;}
._9{width:24.590582px;}
._b{width:25.643732px;}
._c{width:27.018571px;}
._1d{width:28.430957px;}
._18{width:29.828024px;}
._6{width:30.832450px;}
._1b{width:31.979946px;}
._4{width:33.635933px;}
._12{width:34.789399px;}
._15{width:36.224014px;}
._f{width:37.957506px;}
._16{width:39.249759px;}
._a{width:40.408306px;}
._1e{width:41.890846px;}
._13{width:43.875290px;}
._e{width:45.907661px;}
._1f{width:49.337099px;}
._5{width:51.485069px;}
._23{width:54.634898px;}
._21{width:68.741940px;}
._7{width:74.718508px;}
._d{width:81.247550px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.fs8{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y29{bottom:34.774500px;}
.y55{bottom:48.970500px;}
.y28{bottom:48.972000px;}
.y27{bottom:63.168000px;}
.yc6{bottom:108.000000px;}
.y26{bottom:112.224000px;}
.y54{bottom:117.921000px;}
.y72{bottom:121.353000px;}
.yc5{bottom:125.932500px;}
.y25{bottom:126.927000px;}
.y9c{bottom:130.459500px;}
.y53{bottom:135.853500px;}
.y71{bottom:138.985500px;}
.y24{bottom:141.630000px;}
.yc4{bottom:143.865000px;}
.y9b{bottom:148.392000px;}
.y52{bottom:153.786000px;}
.y70{bottom:159.076500px;}
.yc3{bottom:161.797500px;}
.ya2{bottom:163.269000px;}
.y9a{bottom:166.324500px;}
.y51{bottom:171.718500px;}
.y6f{bottom:177.009000px;}
.ya1{bottom:177.466500px;}
.yc2{bottom:179.731500px;}
.y99{bottom:184.258500px;}
.y50{bottom:189.651000px;}
.ya0{bottom:191.662500px;}
.y6e{bottom:194.941500px;}
.yc1{bottom:197.664000px;}
.y98{bottom:202.191000px;}
.y9f{bottom:205.860000px;}
.y4f{bottom:207.585000px;}
.y6d{bottom:212.875500px;}
.yc0{bottom:215.596500px;}
.y97{bottom:220.123500px;}
.y23{bottom:225.144000px;}
.y4e{bottom:225.517500px;}
.y6c{bottom:230.808000px;}
.ybf{bottom:233.529000px;}
.y96{bottom:238.056000px;}
.y4d{bottom:243.450000px;}
.y22{bottom:246.066000px;}
.y6b{bottom:248.740500px;}
.ybe{bottom:251.461500px;}
.y95{bottom:255.988500px;}
.y4c{bottom:261.382500px;}
.y6a{bottom:266.673000px;}
.y21{bottom:266.988000px;}
.ybd{bottom:269.394000px;}
.y94{bottom:273.922500px;}
.y4b{bottom:279.315000px;}
.y69{bottom:284.605500px;}
.ybc{bottom:287.328000px;}
.y20{bottom:287.908500px;}
.y93{bottom:291.855000px;}
.y4a{bottom:297.247500px;}
.y68{bottom:302.539500px;}
.ybb{bottom:305.260500px;}
.y1f{bottom:308.830500px;}
.y92{bottom:309.787500px;}
.y49{bottom:315.181500px;}
.y67{bottom:320.472000px;}
.yba{bottom:323.193000px;}
.y91{bottom:327.720000px;}
.y1e{bottom:329.752500px;}
.y48{bottom:333.114000px;}
.y66{bottom:338.404500px;}
.y90{bottom:345.652500px;}
.y1d{bottom:350.674500px;}
.yb9{bottom:355.924500px;}
.y65{bottom:356.337000px;}
.y8f{bottom:363.585000px;}
.y47{bottom:370.489500px;}
.y1c{bottom:371.595000px;}
.y64{bottom:374.269500px;}
.y8e{bottom:381.519000px;}
.y46{bottom:384.687000px;}
.y63{bottom:392.202000px;}
.y1b{bottom:392.517000px;}
.y45{bottom:398.883000px;}
.y8d{bottom:399.451500px;}
.yb8{bottom:400.587000px;}
.y62{bottom:410.136000px;}
.yeb{bottom:411.178500px;}
.y44{bottom:413.080500px;}
.y1a{bottom:413.439000px;}
.y8c{bottom:417.384000px;}
.yb7{bottom:418.519500px;}
.yea{bottom:422.649000px;}
.y61{bottom:428.068500px;}
.y19{bottom:434.359500px;}
.y8b{bottom:435.316500px;}
.yb6{bottom:436.452000px;}
.ye9{bottom:436.846500px;}
.y60{bottom:446.001000px;}
.y8a{bottom:453.249000px;}
.yb5{bottom:454.384500px;}
.ye8{bottom:455.262000px;}
.y18{bottom:455.281500px;}
.ye7{bottom:466.734000px;}
.y89{bottom:471.181500px;}
.yb4{bottom:472.318500px;}
.y17{bottom:476.203500px;}
.y5f{bottom:478.732500px;}
.ye6{bottom:485.151000px;}
.y88{bottom:489.115500px;}
.yb3{bottom:490.251000px;}
.ye5{bottom:496.623000px;}
.y16{bottom:497.124000px;}
.yb2{bottom:508.183500px;}
.ye4{bottom:510.819000px;}
.y87{bottom:516.699000px;}
.y15{bottom:518.046000px;}
.y5e{bottom:522.174000px;}
.yb1{bottom:526.116000px;}
.ye3{bottom:529.234500px;}
.y14{bottom:538.968000px;}
.y5d{bottom:540.106500px;}
.ye2{bottom:540.706500px;}
.yb0{bottom:544.048500px;}
.y9e{bottom:548.958000px;}
.y86{bottom:549.430500px;}
.y5c{bottom:558.039000px;}
.ye1{bottom:559.123500px;}
.y13{bottom:559.890000px;}
.yaf{bottom:561.981000px;}
.y9d{bottom:563.154000px;}
.ye0{bottom:570.595500px;}
.y5b{bottom:575.971500px;}
.yae{bottom:579.915000px;}
.y12{bottom:580.810500px;}
.y43{bottom:588.631500px;}
.ydf{bottom:589.011000px;}
.y85{bottom:592.872000px;}
.y5a{bottom:593.904000px;}
.yad{bottom:597.847500px;}
.yde{bottom:600.483000px;}
.y42{bottom:606.564000px;}
.y84{bottom:610.804500px;}
.y11{bottom:612.645000px;}
.yac{bottom:615.780000px;}
.ydd{bottom:618.898500px;}
.y41{bottom:624.496500px;}
.y83{bottom:628.737000px;}
.ydc{bottom:630.370500px;}
.yab{bottom:633.712500px;}
.y40{bottom:642.429000px;}
.y82{bottom:646.669500px;}
.ydb{bottom:648.786000px;}
.y59{bottom:649.197000px;}
.yaa{bottom:651.645000px;}
.y10{bottom:656.086500px;}
.yda{bottom:660.258000px;}
.y3f{bottom:660.363000px;}
.y58{bottom:663.394500px;}
.y81{bottom:664.602000px;}
.yf{bottom:672.525000px;}
.y57{bottom:677.590500px;}
.y3e{bottom:678.295500px;}
.yd9{bottom:678.675000px;}
.y80{bottom:682.536000px;}
.ya9{bottom:688.267500px;}
.ye{bottom:688.963500px;}
.yd8{bottom:690.147000px;}
.y56{bottom:691.788000px;}
.y3d{bottom:692.533500px;}
.y3c{bottom:696.228000px;}
.ya8{bottom:702.465000px;}
.yd7{bottom:704.343000px;}
.yd{bottom:705.402000px;}
.y7b{bottom:710.845500px;}
.y3b{bottom:714.160500px;}
.y7f{bottom:715.668000px;}
.y7d{bottom:718.227000px;}
.yc{bottom:721.840500px;}
.yd6{bottom:722.760000px;}
.y7a{bottom:728.478000px;}
.y3a{bottom:732.093000px;}
.y79{bottom:732.255000px;}
.yd5{bottom:734.232000px;}
.yb{bottom:738.279000px;}
.y7c{bottom:738.588000px;}
.y7e{bottom:742.365000px;}
.y39{bottom:750.025500px;}
.yd4{bottom:752.647500px;}
.ya{bottom:754.717500px;}
.y38{bottom:767.959500px;}
.yd3{bottom:768.339000px;}
.y78{bottom:773.755500px;}
.y37{bottom:785.892000px;}
.y77{bottom:791.688000px;}
.yd2{bottom:793.114500px;}
.y36{bottom:803.824500px;}
.y9{bottom:807.606000px;}
.y76{bottom:809.620500px;}
.y35{bottom:821.757000px;}
.y8{bottom:828.528000px;}
.yd1{bottom:836.556000px;}
.y34{bottom:854.488500px;}
.y7{bottom:861.919500px;}
.y75{bottom:864.249000px;}
.yd0{bottom:872.421000px;}
.y74{bottom:878.446500px;}
.y6{bottom:879.852000px;}
.ycf{bottom:890.353500px;}
.y73{bottom:892.642500px;}
.y5{bottom:897.784500px;}
.y33{bottom:897.930000px;}
.y32{bottom:915.862500px;}
.yce{bottom:923.085000px;}
.y4{bottom:930.661500px;}
.y31{bottom:933.795000px;}
.y30{bottom:951.727500px;}
.ycd{bottom:966.526500px;}
.y2f{bottom:969.660000px;}
.y3{bottom:978.481500px;}
.ycc{bottom:984.459000px;}
.y2e{bottom:987.594000px;}
.ya7{bottom:992.740500px;}
.ycb{bottom:1002.391500px;}
.y2d{bottom:1005.526500px;}
.ya6{bottom:1010.673000px;}
.y2{bottom:1011.358500px;}
.yca{bottom:1020.325500px;}
.y2c{bottom:1023.459000px;}
.ya5{bottom:1028.607000px;}
.yc9{bottom:1038.258000px;}
.y2b{bottom:1041.391500px;}
.y1{bottom:1044.235500px;}
.ya4{bottom:1046.539500px;}
.yc8{bottom:1056.190500px;}
.ya3{bottom:1064.472000px;}
.yc7{bottom:1074.123000px;}
.y2a{bottom:1092.055500px;}
.h18{height:24.245146px;}
.h8{height:25.285248px;}
.h13{height:29.038903px;}
.hb{height:34.143908px;}
.h9{height:35.865450px;}
.h10{height:36.926870px;}
.h6{height:37.658880px;}
.h17{height:41.723369px;}
.ha{height:41.743000px;}
.h11{height:41.749000px;}
.h4{height:42.799330px;}
.h7{height:44.831700px;}
.h2{height:50.211840px;}
.hd{height:50.268632px;}
.he{height:50.274632px;}
.h3{height:50.728903px;}
.h5{height:51.189174px;}
.h12{height:56.784000px;}
.hf{height:59.609700px;}
.h15{height:59.939700px;}
.h1{height:72.304680px;}
.h16{height:96.071700px;}
.h14{height:100.943700px;}
.hc{height:122.004632px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:108.000000px;}
.xd{left:124.639500px;}
.x12{left:126.994500px;}
.x13{left:130.416000px;}
.x24{left:136.851000px;}
.xa{left:145.360500px;}
.xc{left:158.797500px;}
.x9{left:166.095000px;}
.x8{left:170.391000px;}
.x2{left:227.797500px;}
.x5{left:237.702000px;}
.xf{left:240.840000px;}
.x7{left:258.501000px;}
.x3{left:285.166500px;}
.x1{left:333.592500px;}
.x14{left:359.664000px;}
.x22{left:379.917000px;}
.x6{left:383.860500px;}
.x19{left:385.545000px;}
.x10{left:386.844000px;}
.x21{left:390.243000px;}
.x4{left:392.416500px;}
.xb{left:397.018500px;}
.x23{left:411.798000px;}
.x16{left:415.141500px;}
.x1a{left:423.631500px;}
.x1b{left:440.823000px;}
.xe{left:455.824500px;}
.x17{left:457.764000px;}
.x1c{left:463.602000px;}
.x18{left:473.161500px;}
.x1d{left:490.402500px;}
.x20{left:508.378500px;}
.x1f{left:512.529000px;}
.x1e{left:515.736000px;}
.x15{left:669.801000px;}
@media print{
.v3{vertical-align:-19.280000pt;}
.v5{vertical-align:-14.997333pt;}
.v4{vertical-align:-7.968000pt;}
.ve{vertical-align:-5.429333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.717333pt;}
.v9{vertical-align:7.973333pt;}
.v8{vertical-align:13.136000pt;}
.v6{vertical-align:14.997333pt;}
.v1{vertical-align:19.280000pt;}
.vc{vertical-align:28.474667pt;}
.vb{vertical-align:36.448000pt;}
.vd{vertical-align:45.546667pt;}
.va{vertical-align:50.474667pt;}
.v7{vertical-align:63.760000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000267pt;}
.ls24{letter-spacing:0.000435pt;}
.ls15{letter-spacing:0.000681pt;}
.lsb{letter-spacing:0.000964pt;}
.ls13{letter-spacing:0.001791pt;}
.ls7{letter-spacing:0.001975pt;}
.ls34{letter-spacing:0.003246pt;}
.ls4d{letter-spacing:0.005997pt;}
.ls2c{letter-spacing:0.006308pt;}
.ls4e{letter-spacing:0.012104pt;}
.ls40{letter-spacing:0.015148pt;}
.ls37{letter-spacing:0.019062pt;}
.ls1f{letter-spacing:0.021043pt;}
.ls32{letter-spacing:0.021115pt;}
.ls1c{letter-spacing:0.025688pt;}
.ls22{letter-spacing:1.468905pt;}
.ls20{letter-spacing:1.898160pt;}
.ls21{letter-spacing:2.652911pt;}
.ls3b{letter-spacing:2.653413pt;}
.ls23{letter-spacing:2.653505pt;}
.ls16{letter-spacing:2.654327pt;}
.ls17{letter-spacing:2.656186pt;}
.ls5c{letter-spacing:2.656473pt;}
.ls31{letter-spacing:2.657014pt;}
.ls5{letter-spacing:2.658245pt;}
.ls43{letter-spacing:2.658838pt;}
.ls58{letter-spacing:2.660451pt;}
.ls53{letter-spacing:2.869229pt;}
.ls46{letter-spacing:6.377067pt;}
.ls51{letter-spacing:10.042301pt;}
.ls4a{letter-spacing:11.399412pt;}
.ls59{letter-spacing:11.561958pt;}
.ls50{letter-spacing:12.964663pt;}
.ls2a{letter-spacing:13.017797pt;}
.ls39{letter-spacing:13.389734pt;}
.ls47{letter-spacing:13.739680pt;}
.ls42{letter-spacing:13.761671pt;}
.ls48{letter-spacing:14.459680pt;}
.ls45{letter-spacing:14.734600pt;}
.ls3d{letter-spacing:14.757812pt;}
.ls1e{letter-spacing:14.771215pt;}
.ls5b{letter-spacing:17.117517pt;}
.ls5a{letter-spacing:17.122850pt;}
.ls1d{letter-spacing:17.410838pt;}
.ls33{letter-spacing:17.414347pt;}
.ls3c{letter-spacing:17.416172pt;}
.lsf{letter-spacing:17.693578pt;}
.ls2f{letter-spacing:17.799845pt;}
.ls27{letter-spacing:18.389289pt;}
.ls52{letter-spacing:19.496079pt;}
.ls35{letter-spacing:19.889014pt;}
.ls26{letter-spacing:19.895578pt;}
.ls4f{letter-spacing:20.365413pt;}
.ls57{letter-spacing:20.367118pt;}
.ls56{letter-spacing:20.372451pt;}
.ls2e{letter-spacing:20.434245pt;}
.ls3f{letter-spacing:20.615940pt;}
.ls28{letter-spacing:20.706245pt;}
.ls55{letter-spacing:21.048172pt;}
.ls2d{letter-spacing:21.660911pt;}
.ls25{letter-spacing:21.836911pt;}
.ls4c{letter-spacing:22.103689pt;}
.ls2b{letter-spacing:22.124911pt;}
.ls44{letter-spacing:22.156822pt;}
.ls41{letter-spacing:22.285505pt;}
.ls3a{letter-spacing:22.743578pt;}
.ls49{letter-spacing:23.207412pt;}
.ls19{letter-spacing:23.607578pt;}
.ls38{letter-spacing:24.338245pt;}
.ls36{letter-spacing:24.338838pt;}
.ls29{letter-spacing:25.244911pt;}
.ls54{letter-spacing:26.140911pt;}
.ls30{letter-spacing:26.358347pt;}
.ls0{letter-spacing:28.067859pt;}
.ls1a{letter-spacing:35.996911pt;}
.ls1b{letter-spacing:36.402245pt;}
.ls6{letter-spacing:90.828911pt;}
.ls4{letter-spacing:102.228451pt;}
.ls10{letter-spacing:144.653505pt;}
.ls3{letter-spacing:144.809785pt;}
.ls2{letter-spacing:159.889014pt;}
.ls9{letter-spacing:160.518347pt;}
.ls14{letter-spacing:163.832172pt;}
.ls12{letter-spacing:167.330838pt;}
.ls11{letter-spacing:167.586838pt;}
.ls8{letter-spacing:169.377014pt;}
.lsc{letter-spacing:172.023578pt;}
.lsd{letter-spacing:180.602013pt;}
.lsa{letter-spacing:190.059841pt;}
.lse{letter-spacing:196.489039pt;}
.ls4b{letter-spacing:917.479412pt;}
.ls3e{letter-spacing:1026.817014pt;}
.ws10{word-spacing:-34.611401pt;}
.ws7d{word-spacing:-34.464838pt;}
.ws11{word-spacing:-25.738045pt;}
.ws2{word-spacing:-14.760588pt;}
.ws80{word-spacing:-14.465200pt;}
.ws18{word-spacing:-12.543875pt;}
.ws64{word-spacing:-5.887232pt;}
.ws7e{word-spacing:-5.793731pt;}
.ws75{word-spacing:-2.903242pt;}
.ws22{word-spacing:-2.486665pt;}
.ws4a{word-spacing:-1.742791pt;}
.ws6c{word-spacing:-1.530255pt;}
.ws41{word-spacing:-1.317720pt;}
.ws81{word-spacing:-0.680113pt;}
.ws88{word-spacing:-0.467578pt;}
.ws40{word-spacing:-0.361310pt;}
.ws44{word-spacing:-0.148775pt;}
.ws1c{word-spacing:-0.132198pt;}
.ws45{word-spacing:-0.095641pt;}
.ws91{word-spacing:-0.063761pt;}
.ws7{word-spacing:-0.037194pt;}
.wsa1{word-spacing:-0.031881pt;}
.ws1a{word-spacing:0.000000pt;}
.ws31{word-spacing:0.010627pt;}
.ws76{word-spacing:0.029755pt;}
.ws95{word-spacing:0.080764pt;}
.ws90{word-spacing:0.170028pt;}
.ws4d{word-spacing:0.541965pt;}
.ws47{word-spacing:0.624856pt;}
.ws8c{word-spacing:0.754501pt;}
.ws1e{word-spacing:0.967036pt;}
.ws3d{word-spacing:1.020170pt;}
.ws3a{word-spacing:1.262464pt;}
.ws32{word-spacing:1.392107pt;}
.ws89{word-spacing:1.445241pt;}
.ws4c{word-spacing:1.498375pt;}
.ws8f{word-spacing:1.551509pt;}
.ws92{word-spacing:1.657777pt;}
.ws48{word-spacing:1.687536pt;}
.ws83{word-spacing:1.710911pt;}
.wsa3{word-spacing:1.738544pt;}
.ws42{word-spacing:1.870312pt;}
.ws8d{word-spacing:2.029714pt;}
.ws6a{word-spacing:2.082848pt;}
.ws39{word-spacing:2.112608pt;}
.wse{word-spacing:2.309745pt;}
.ws37{word-spacing:2.348517pt;}
.ws82{word-spacing:2.401651pt;}
.ws56{word-spacing:2.454785pt;}
.ws96{word-spacing:2.461167pt;}
.ws16{word-spacing:2.503674pt;}
.ws63{word-spacing:2.507919pt;}
.ws9b{word-spacing:2.546181pt;}
.ws4b{word-spacing:2.561052pt;}
.ws78{word-spacing:2.665201pt;}
.ws3c{word-spacing:2.877737pt;}
.ws7f{word-spacing:2.920245pt;}
.ws6{word-spacing:2.932989pt;}
.ws26{word-spacing:2.986123pt;}
.wsf{word-spacing:3.122698pt;}
.ws43{word-spacing:3.198659pt;}
.ws74{word-spacing:3.302809pt;}
.ws27{word-spacing:3.304927pt;}
.ws9f{word-spacing:3.353818pt;}
.ws77{word-spacing:3.515345pt;}
.ws72{word-spacing:3.623730pt;}
.ws94{word-spacing:3.693876pt;}
.ws7a{word-spacing:3.729997pt;}
.ws6f{word-spacing:3.783131pt;}
.ws85{word-spacing:3.889399pt;}
.ws46{word-spacing:3.942533pt;}
.ws70{word-spacing:4.048801pt;}
.ws3b{word-spacing:4.067939pt;}
.ws35{word-spacing:4.101935pt;}
.ws5d{word-spacing:4.152953pt;}
.ws36{word-spacing:4.155068pt;}
.ws50{word-spacing:4.208202pt;}
.ws2f{word-spacing:4.261336pt;}
.ws9a{word-spacing:4.331484pt;}
.ws9c{word-spacing:4.544020pt;}
.ws4e{word-spacing:4.580139pt;}
.ws4f{word-spacing:4.686407pt;}
.wsa{word-spacing:4.700785pt;}
.ws53{word-spacing:4.739541pt;}
.ws7b{word-spacing:4.748054pt;}
.ws7c{word-spacing:4.790561pt;}
.ws6d{word-spacing:4.792675pt;}
.wsa4{word-spacing:4.799063pt;}
.ws60{word-spacing:4.845809pt;}
.ws8e{word-spacing:4.952076pt;}
.ws84{word-spacing:5.005210pt;}
.ws68{word-spacing:5.058344pt;}
.ws9e{word-spacing:5.139120pt;}
.ws93{word-spacing:5.164612pt;}
.ws2d{word-spacing:5.217746pt;}
.ws2a{word-spacing:5.270880pt;}
.ws5e{word-spacing:5.300648pt;}
.ws33{word-spacing:5.324013pt;}
.ws1f{word-spacing:5.430281pt;}
.ws23{word-spacing:5.467459pt;}
.ws49{word-spacing:5.598198pt;}
.ws29{word-spacing:5.642817pt;}
.ws54{word-spacing:5.749084pt;}
.ws98{word-spacing:5.776728pt;}
.ws6b{word-spacing:5.802218pt;}
.ws3e{word-spacing:5.855352pt;}
.ws5f{word-spacing:5.908486pt;}
.ws65{word-spacing:6.067888pt;}
.ws52{word-spacing:6.121021pt;}
.ws20{word-spacing:6.174155pt;}
.ws5a{word-spacing:6.280423pt;}
.ws2c{word-spacing:6.333557pt;}
.ws3f{word-spacing:6.439825pt;}
.ws87{word-spacing:6.705494pt;}
.ws58{word-spacing:6.918029pt;}
.ws24{word-spacing:6.971163pt;}
.ws21{word-spacing:7.024297pt;}
.ws59{word-spacing:7.077431pt;}
.ws57{word-spacing:7.130565pt;}
.ws12{word-spacing:7.215558pt;}
.ws6e{word-spacing:7.236833pt;}
.ws51{word-spacing:7.555636pt;}
.ws86{word-spacing:7.608770pt;}
.ws25{word-spacing:7.874439pt;}
.ws73{word-spacing:7.927573pt;}
.ws34{word-spacing:8.086975pt;}
.ws2b{word-spacing:8.671447pt;}
.ws55{word-spacing:8.937116pt;}
.wsc{word-spacing:8.956836pt;}
.ws9{word-spacing:9.195940pt;}
.wsa2{word-spacing:9.389840pt;}
.ws62{word-spacing:9.521589pt;}
.ws8b{word-spacing:9.734124pt;}
.wsd{word-spacing:10.008893pt;}
.wsb{word-spacing:10.056714pt;}
.ws8a{word-spacing:11.328140pt;}
.ws1d{word-spacing:15.674491pt;}
.ws97{word-spacing:16.237750pt;}
.ws17{word-spacing:16.280258pt;}
.wsa0{word-spacing:17.045387pt;}
.ws67{word-spacing:17.375890pt;}
.ws61{word-spacing:17.597937pt;}
.ws9d{word-spacing:18.150574pt;}
.ws5{word-spacing:18.915657pt;}
.ws19{word-spacing:18.946430pt;}
.ws1{word-spacing:18.968790pt;}
.ws99{word-spacing:19.340776pt;}
.ws2e{word-spacing:20.122747pt;}
.ws79{word-spacing:20.297137pt;}
.ws69{word-spacing:20.350271pt;}
.ws30{word-spacing:20.896081pt;}
.ws5b{word-spacing:21.343259pt;}
.ws3{word-spacing:21.630985pt;}
.ws28{word-spacing:23.846639pt;}
.ws66{word-spacing:24.005414pt;}
.ws38{word-spacing:26.036629pt;}
.ws71{word-spacing:26.102874pt;}
.ws5c{word-spacing:26.233963pt;}
.ws4{word-spacing:28.000645pt;}
.ws0{word-spacing:34.338985pt;}
.ws8{word-spacing:37.236463pt;}
.ws1b{word-spacing:71.667439pt;}
.ws14{word-spacing:115.728081pt;}
.ws13{word-spacing:128.032081pt;}
.ws15{word-spacing:144.330556pt;}
._24{margin-left:-28.145189pt;}
._25{margin-left:-24.059071pt;}
._26{margin-left:-23.017603pt;}
._1a{margin-left:-6.799466pt;}
._1{margin-left:-4.410111pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.487748pt;}
._3{width:1.487748pt;}
._8{width:2.846279pt;}
._28{width:4.502361pt;}
._27{width:6.278721pt;}
._11{width:8.820222pt;}
._22{width:10.148569pt;}
._1c{width:13.017797pt;}
._17{width:14.346144pt;}
._19{width:16.042086pt;}
._10{width:16.947233pt;}
._20{width:18.171782pt;}
._14{width:19.931533pt;}
._9{width:21.858295pt;}
._b{width:22.794429pt;}
._c{width:24.016508pt;}
._1d{width:25.271962pt;}
._18{width:26.513799pt;}
._6{width:27.406622pt;}
._1b{width:28.426619pt;}
._4{width:29.898607pt;}
._12{width:30.923910pt;}
._15{width:32.199123pt;}
._f{width:33.740005pt;}
._16{width:34.888675pt;}
._a{width:35.918494pt;}
._1e{width:37.236307pt;}
._13{width:39.000258pt;}
._e{width:40.806810pt;}
._1f{width:43.855199pt;}
._5{width:45.764506pt;}
._23{width:48.564354pt;}
._21{width:61.103947pt;}
._7{width:66.416452pt;}
._d{width:72.220045pt;}
.fs4{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.fs8{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:30.910667pt;}
.y55{bottom:43.529333pt;}
.y28{bottom:43.530667pt;}
.y27{bottom:56.149333pt;}
.yc6{bottom:96.000000pt;}
.y26{bottom:99.754667pt;}
.y54{bottom:104.818667pt;}
.y72{bottom:107.869333pt;}
.yc5{bottom:111.940000pt;}
.y25{bottom:112.824000pt;}
.y9c{bottom:115.964000pt;}
.y53{bottom:120.758667pt;}
.y71{bottom:123.542667pt;}
.y24{bottom:125.893333pt;}
.yc4{bottom:127.880000pt;}
.y9b{bottom:131.904000pt;}
.y52{bottom:136.698667pt;}
.y70{bottom:141.401333pt;}
.yc3{bottom:143.820000pt;}
.ya2{bottom:145.128000pt;}
.y9a{bottom:147.844000pt;}
.y51{bottom:152.638667pt;}
.y6f{bottom:157.341333pt;}
.ya1{bottom:157.748000pt;}
.yc2{bottom:159.761333pt;}
.y99{bottom:163.785333pt;}
.y50{bottom:168.578667pt;}
.ya0{bottom:170.366667pt;}
.y6e{bottom:173.281333pt;}
.yc1{bottom:175.701333pt;}
.y98{bottom:179.725333pt;}
.y9f{bottom:182.986667pt;}
.y4f{bottom:184.520000pt;}
.y6d{bottom:189.222667pt;}
.yc0{bottom:191.641333pt;}
.y97{bottom:195.665333pt;}
.y23{bottom:200.128000pt;}
.y4e{bottom:200.460000pt;}
.y6c{bottom:205.162667pt;}
.ybf{bottom:207.581333pt;}
.y96{bottom:211.605333pt;}
.y4d{bottom:216.400000pt;}
.y22{bottom:218.725333pt;}
.y6b{bottom:221.102667pt;}
.ybe{bottom:223.521333pt;}
.y95{bottom:227.545333pt;}
.y4c{bottom:232.340000pt;}
.y6a{bottom:237.042667pt;}
.y21{bottom:237.322667pt;}
.ybd{bottom:239.461333pt;}
.y94{bottom:243.486667pt;}
.y4b{bottom:248.280000pt;}
.y69{bottom:252.982667pt;}
.ybc{bottom:255.402667pt;}
.y20{bottom:255.918667pt;}
.y93{bottom:259.426667pt;}
.y4a{bottom:264.220000pt;}
.y68{bottom:268.924000pt;}
.ybb{bottom:271.342667pt;}
.y1f{bottom:274.516000pt;}
.y92{bottom:275.366667pt;}
.y49{bottom:280.161333pt;}
.y67{bottom:284.864000pt;}
.yba{bottom:287.282667pt;}
.y91{bottom:291.306667pt;}
.y1e{bottom:293.113333pt;}
.y48{bottom:296.101333pt;}
.y66{bottom:300.804000pt;}
.y90{bottom:307.246667pt;}
.y1d{bottom:311.710667pt;}
.yb9{bottom:316.377333pt;}
.y65{bottom:316.744000pt;}
.y8f{bottom:323.186667pt;}
.y47{bottom:329.324000pt;}
.y1c{bottom:330.306667pt;}
.y64{bottom:332.684000pt;}
.y8e{bottom:339.128000pt;}
.y46{bottom:341.944000pt;}
.y63{bottom:348.624000pt;}
.y1b{bottom:348.904000pt;}
.y45{bottom:354.562667pt;}
.y8d{bottom:355.068000pt;}
.yb8{bottom:356.077333pt;}
.y62{bottom:364.565333pt;}
.yeb{bottom:365.492000pt;}
.y44{bottom:367.182667pt;}
.y1a{bottom:367.501333pt;}
.y8c{bottom:371.008000pt;}
.yb7{bottom:372.017333pt;}
.yea{bottom:375.688000pt;}
.y61{bottom:380.505333pt;}
.y19{bottom:386.097333pt;}
.y8b{bottom:386.948000pt;}
.yb6{bottom:387.957333pt;}
.ye9{bottom:388.308000pt;}
.y60{bottom:396.445333pt;}
.y8a{bottom:402.888000pt;}
.yb5{bottom:403.897333pt;}
.ye8{bottom:404.677333pt;}
.y18{bottom:404.694667pt;}
.ye7{bottom:414.874667pt;}
.y89{bottom:418.828000pt;}
.yb4{bottom:419.838667pt;}
.y17{bottom:423.292000pt;}
.y5f{bottom:425.540000pt;}
.ye6{bottom:431.245333pt;}
.y88{bottom:434.769333pt;}
.yb3{bottom:435.778667pt;}
.ye5{bottom:441.442667pt;}
.y16{bottom:441.888000pt;}
.yb2{bottom:451.718667pt;}
.ye4{bottom:454.061333pt;}
.y87{bottom:459.288000pt;}
.y15{bottom:460.485333pt;}
.y5e{bottom:464.154667pt;}
.yb1{bottom:467.658667pt;}
.ye3{bottom:470.430667pt;}
.y14{bottom:479.082667pt;}
.y5d{bottom:480.094667pt;}
.ye2{bottom:480.628000pt;}
.yb0{bottom:483.598667pt;}
.y9e{bottom:487.962667pt;}
.y86{bottom:488.382667pt;}
.y5c{bottom:496.034667pt;}
.ye1{bottom:496.998667pt;}
.y13{bottom:497.680000pt;}
.yaf{bottom:499.538667pt;}
.y9d{bottom:500.581333pt;}
.ye0{bottom:507.196000pt;}
.y5b{bottom:511.974667pt;}
.yae{bottom:515.480000pt;}
.y12{bottom:516.276000pt;}
.y43{bottom:523.228000pt;}
.ydf{bottom:523.565333pt;}
.y85{bottom:526.997333pt;}
.y5a{bottom:527.914667pt;}
.yad{bottom:531.420000pt;}
.yde{bottom:533.762667pt;}
.y42{bottom:539.168000pt;}
.y84{bottom:542.937333pt;}
.y11{bottom:544.573333pt;}
.yac{bottom:547.360000pt;}
.ydd{bottom:550.132000pt;}
.y41{bottom:555.108000pt;}
.y83{bottom:558.877333pt;}
.ydc{bottom:560.329333pt;}
.yab{bottom:563.300000pt;}
.y40{bottom:571.048000pt;}
.y82{bottom:574.817333pt;}
.ydb{bottom:576.698667pt;}
.y59{bottom:577.064000pt;}
.yaa{bottom:579.240000pt;}
.y10{bottom:583.188000pt;}
.yda{bottom:586.896000pt;}
.y3f{bottom:586.989333pt;}
.y58{bottom:589.684000pt;}
.y81{bottom:590.757333pt;}
.yf{bottom:597.800000pt;}
.y57{bottom:602.302667pt;}
.y3e{bottom:602.929333pt;}
.yd9{bottom:603.266667pt;}
.y80{bottom:606.698667pt;}
.ya9{bottom:611.793333pt;}
.ye{bottom:612.412000pt;}
.yd8{bottom:613.464000pt;}
.y56{bottom:614.922667pt;}
.y3d{bottom:615.585333pt;}
.y3c{bottom:618.869333pt;}
.ya8{bottom:624.413333pt;}
.yd7{bottom:626.082667pt;}
.yd{bottom:627.024000pt;}
.y7b{bottom:631.862667pt;}
.y3b{bottom:634.809333pt;}
.y7f{bottom:636.149333pt;}
.y7d{bottom:638.424000pt;}
.yc{bottom:641.636000pt;}
.yd6{bottom:642.453333pt;}
.y7a{bottom:647.536000pt;}
.y3a{bottom:650.749333pt;}
.y79{bottom:650.893333pt;}
.yd5{bottom:652.650667pt;}
.yb{bottom:656.248000pt;}
.y7c{bottom:656.522667pt;}
.y7e{bottom:659.880000pt;}
.y39{bottom:666.689333pt;}
.yd4{bottom:669.020000pt;}
.ya{bottom:670.860000pt;}
.y38{bottom:682.630667pt;}
.yd3{bottom:682.968000pt;}
.y78{bottom:687.782667pt;}
.y37{bottom:698.570667pt;}
.y77{bottom:703.722667pt;}
.yd2{bottom:704.990667pt;}
.y36{bottom:714.510667pt;}
.y9{bottom:717.872000pt;}
.y76{bottom:719.662667pt;}
.y35{bottom:730.450667pt;}
.y8{bottom:736.469333pt;}
.yd1{bottom:743.605333pt;}
.y34{bottom:759.545333pt;}
.y7{bottom:766.150667pt;}
.y75{bottom:768.221333pt;}
.yd0{bottom:775.485333pt;}
.y74{bottom:780.841333pt;}
.y6{bottom:782.090667pt;}
.ycf{bottom:791.425333pt;}
.y73{bottom:793.460000pt;}
.y5{bottom:798.030667pt;}
.y33{bottom:798.160000pt;}
.y32{bottom:814.100000pt;}
.yce{bottom:820.520000pt;}
.y4{bottom:827.254667pt;}
.y31{bottom:830.040000pt;}
.y30{bottom:845.980000pt;}
.ycd{bottom:859.134667pt;}
.y2f{bottom:861.920000pt;}
.y3{bottom:869.761333pt;}
.ycc{bottom:875.074667pt;}
.y2e{bottom:877.861333pt;}
.ya7{bottom:882.436000pt;}
.ycb{bottom:891.014667pt;}
.y2d{bottom:893.801333pt;}
.ya6{bottom:898.376000pt;}
.y2{bottom:898.985333pt;}
.yca{bottom:906.956000pt;}
.y2c{bottom:909.741333pt;}
.ya5{bottom:914.317333pt;}
.yc9{bottom:922.896000pt;}
.y2b{bottom:925.681333pt;}
.y1{bottom:928.209333pt;}
.ya4{bottom:930.257333pt;}
.yc8{bottom:938.836000pt;}
.ya3{bottom:946.197333pt;}
.yc7{bottom:954.776000pt;}
.y2a{bottom:970.716000pt;}
.h18{height:21.551241pt;}
.h8{height:22.475776pt;}
.h13{height:25.812358pt;}
.hb{height:30.350141pt;}
.h9{height:31.880400pt;}
.h10{height:32.823885pt;}
.h6{height:33.474560pt;}
.h17{height:37.087439pt;}
.ha{height:37.104889pt;}
.h11{height:37.110223pt;}
.h4{height:38.043849pt;}
.h7{height:39.850400pt;}
.h2{height:44.632747pt;}
.hd{height:44.683229pt;}
.he{height:44.688562pt;}
.h3{height:45.092358pt;}
.h5{height:45.501488pt;}
.h12{height:50.474667pt;}
.hf{height:52.986400pt;}
.h15{height:53.279733pt;}
.h1{height:64.270827pt;}
.h16{height:85.397067pt;}
.h14{height:89.727733pt;}
.hc{height:108.448562pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:96.000000pt;}
.xd{left:110.790667pt;}
.x12{left:112.884000pt;}
.x13{left:115.925333pt;}
.x24{left:121.645333pt;}
.xa{left:129.209333pt;}
.xc{left:141.153333pt;}
.x9{left:147.640000pt;}
.x8{left:151.458667pt;}
.x2{left:202.486667pt;}
.x5{left:211.290667pt;}
.xf{left:214.080000pt;}
.x7{left:229.778667pt;}
.x3{left:253.481333pt;}
.x1{left:296.526667pt;}
.x14{left:319.701333pt;}
.x22{left:337.704000pt;}
.x6{left:341.209333pt;}
.x19{left:342.706667pt;}
.x10{left:343.861333pt;}
.x21{left:346.882667pt;}
.x4{left:348.814667pt;}
.xb{left:352.905333pt;}
.x23{left:366.042667pt;}
.x16{left:369.014667pt;}
.x1a{left:376.561333pt;}
.x1b{left:391.842667pt;}
.xe{left:405.177333pt;}
.x17{left:406.901333pt;}
.x1c{left:412.090667pt;}
.x18{left:420.588000pt;}
.x1d{left:435.913333pt;}
.x20{left:451.892000pt;}
.x1f{left:455.581333pt;}
.x1e{left:458.432000pt;}
.x15{left:595.378667pt;}
}




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