
    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_e242a892d41e47ffe52adea5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_b81f8ed51abbdbf06b445f19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_145fd35dae30e6b8d39150d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_ca91b33602da3d9504fdb901.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:21.780000px;}
.ls34{letter-spacing:-1.782000px;}
.ls35{letter-spacing:-1.716000px;}
.ls3d{letter-spacing:-1.650000px;}
.ls58{letter-spacing:-1.518000px;}
.ls54{letter-spacing:-1.452000px;}
.ls19{letter-spacing:-1.386000px;}
.ls60{letter-spacing:-1.311000px;}
.ls56{letter-spacing:-1.188000px;}
.ls2a{letter-spacing:-1.122000px;}
.ls22{letter-spacing:-1.056000px;}
.ls29{letter-spacing:-0.990000px;}
.ls59{letter-spacing:-0.972000px;}
.ls2b{letter-spacing:-0.970200px;}
.ls21{letter-spacing:-0.924000px;}
.ls5f{letter-spacing:-0.912000px;}
.lsa{letter-spacing:-0.858000px;}
.ls5e{letter-spacing:-0.798000px;}
.ls20{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.768000px;}
.ls27{letter-spacing:-0.726000px;}
.ls36{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.684000px;}
.ls1a{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.594000px;}
.ls53{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.528000px;}
.ls52{letter-spacing:-0.486000px;}
.ls38{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.462000px;}
.ls4d{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.396000px;}
.ls61{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.330000px;}
.ls39{letter-spacing:-0.324000px;}
.ls3e{letter-spacing:-0.277200px;}
.ls23{letter-spacing:-0.264000px;}
.ls2c{letter-spacing:-0.231000px;}
.ls5a{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.198000px;}
.ls46{letter-spacing:-0.184800px;}
.ls28{letter-spacing:-0.138600px;}
.ls16{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.114000px;}
.ls3a{letter-spacing:-0.108000px;}
.ls2f{letter-spacing:-0.081000px;}
.ls9{letter-spacing:-0.066000px;}
.ls37{letter-spacing:-0.060000px;}
.ls5{letter-spacing:-0.057000px;}
.ls2d{letter-spacing:-0.054000px;}
.ls5b{letter-spacing:-0.049500px;}
.lsb{letter-spacing:-0.048000px;}
.ls2e{letter-spacing:-0.040500px;}
.ls3{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.040500px;}
.ls31{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.066000px;}
.ls1c{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132000px;}
.lse{letter-spacing:0.198000px;}
.ls3c{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.228000px;}
.ls1e{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.285000px;}
.ls42{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.330000px;}
.ls50{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.364500px;}
.ls4b{letter-spacing:0.369600px;}
.ls2{letter-spacing:0.378000px;}
.ls1f{letter-spacing:0.396000px;}
.ls1{letter-spacing:0.399000px;}
.ls45{letter-spacing:0.415800px;}
.ls7{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.462000px;}
.ls44{letter-spacing:0.486000px;}
.ls4c{letter-spacing:0.526500px;}
.lsf{letter-spacing:0.528000px;}
.ls48{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.594000px;}
.ls57{letter-spacing:0.648000px;}
.ls32{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.726000px;}
.ls33{letter-spacing:0.780000px;}
.ls3f{letter-spacing:0.792000px;}
.ls4a{letter-spacing:0.810000px;}
.ls4e{letter-spacing:0.850500px;}
.ls3b{letter-spacing:0.858000px;}
.ls4f{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.924000px;}
.ls40{letter-spacing:0.990000px;}
.ls13{letter-spacing:1.056000px;}
.ls47{letter-spacing:1.122000px;}
.ls55{letter-spacing:1.320000px;}
.ls51{letter-spacing:1.500000px;}
.ls26{letter-spacing:1.518000px;}
.ls41{letter-spacing:1.650000px;}
.ls5c{letter-spacing:1.716000px;}
.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;}
}
.wsa0{word-spacing:-18.216000px;}
.ws4a{word-spacing:-18.018000px;}
.ws8b{word-spacing:-17.358000px;}
.ws70{word-spacing:-17.292000px;}
.ws6a{word-spacing:-17.226000px;}
.ws95{word-spacing:-17.160000px;}
.ws48{word-spacing:-17.094000px;}
.ws7b{word-spacing:-17.028000px;}
.ws6b{word-spacing:-16.896000px;}
.ws2f{word-spacing:-16.830000px;}
.ws57{word-spacing:-16.764000px;}
.ws2e{word-spacing:-16.698000px;}
.ws2c{word-spacing:-16.632000px;}
.ws49{word-spacing:-16.566000px;}
.ws16{word-spacing:-16.500000px;}
.ws19{word-spacing:-16.434000px;}
.ws2d{word-spacing:-16.368000px;}
.ws1a{word-spacing:-16.302000px;}
.ws47{word-spacing:-16.236000px;}
.ws14{word-spacing:-16.170000px;}
.ws55{word-spacing:-16.104000px;}
.ws15{word-spacing:-16.038000px;}
.ws54{word-spacing:-15.972000px;}
.ws41{word-spacing:-15.774000px;}
.ws45{word-spacing:-15.708000px;}
.ws59{word-spacing:-15.660000px;}
.ws7d{word-spacing:-15.642000px;}
.ws30{word-spacing:-15.576000px;}
.ws8c{word-spacing:-15.510000px;}
.ws43{word-spacing:-15.444000px;}
.ws44{word-spacing:-15.378000px;}
.ws18{word-spacing:-15.114000px;}
.ws58{word-spacing:-15.000000px;}
.ws8d{word-spacing:-14.940000px;}
.ws56{word-spacing:-14.718000px;}
.ws0{word-spacing:-14.535000px;}
.wsa2{word-spacing:-14.478000px;}
.ws84{word-spacing:-14.364000px;}
.ws5a{word-spacing:-14.340000px;}
.wsa5{word-spacing:-14.250000px;}
.wsa4{word-spacing:-14.193000px;}
.ws77{word-spacing:-13.986000px;}
.ws99{word-spacing:-13.878000px;}
.ws74{word-spacing:-13.824000px;}
.ws6d{word-spacing:-13.716000px;}
.ws1{word-spacing:-13.500000px;}
.ws4e{word-spacing:-13.446000px;}
.ws5e{word-spacing:-13.392000px;}
.wsa3{word-spacing:-13.338000px;}
.ws9a{word-spacing:-13.284000px;}
.ws5d{word-spacing:-13.176000px;}
.ws90{word-spacing:-13.014000px;}
.ws91{word-spacing:-12.960000px;}
.ws9f{word-spacing:-12.325500px;}
.ws7c{word-spacing:-11.919600px;}
.ws7f{word-spacing:-11.550000px;}
.ws42{word-spacing:-11.411400px;}
.ws72{word-spacing:-11.365200px;}
.ws4b{word-spacing:-11.319000px;}
.ws6c{word-spacing:-11.272800px;}
.ws82{word-spacing:-10.975500px;}
.ws97{word-spacing:-10.773000px;}
.ws80{word-spacing:-10.651500px;}
.ws76{word-spacing:-10.611000px;}
.ws46{word-spacing:-10.579800px;}
.ws5b{word-spacing:-10.500000px;}
.ws75{word-spacing:-10.489500px;}
.ws32{word-spacing:-10.125000px;}
.ws4c{word-spacing:-10.084500px;}
.ws4d{word-spacing:-10.044000px;}
.ws5c{word-spacing:-9.801000px;}
.ws8f{word-spacing:-9.639000px;}
.ws13{word-spacing:-7.488000px;}
.ws7e{word-spacing:-1.056000px;}
.ws8e{word-spacing:-0.924000px;}
.ws6e{word-spacing:-0.858000px;}
.ws10{word-spacing:-0.792000px;}
.ws24{word-spacing:-0.726000px;}
.ws61{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.702000px;}
.ws5{word-spacing:-0.684000px;}
.ws23{word-spacing:-0.660000px;}
.ws40{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.627000px;}
.ws38{word-spacing:-0.594000px;}
.ws69{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.528000px;}
.wsad{word-spacing:-0.486000px;}
.ws21{word-spacing:-0.462000px;}
.wsf{word-spacing:-0.396000px;}
.ws9d{word-spacing:-0.378000px;}
.ws4{word-spacing:-0.342000px;}
.ws17{word-spacing:-0.330000px;}
.ws68{word-spacing:-0.324000px;}
.ws92{word-spacing:-0.300000px;}
.wsac{word-spacing:-0.270000px;}
.ws27{word-spacing:-0.264000px;}
.ws67{word-spacing:-0.240000px;}
.ws88{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.198000px;}
.ws94{word-spacing:-0.162000px;}
.ws11{word-spacing:-0.132000px;}
.ws66{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.066000px;}
.ws60{word-spacing:-0.060000px;}
.ws2{word-spacing:-0.057000px;}
.ws81{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.wsa7{word-spacing:0.057000px;}
.ws3d{word-spacing:0.066000px;}
.ws4f{word-spacing:0.132000px;}
.wsa8{word-spacing:0.171000px;}
.ws51{word-spacing:0.198000px;}
.ws50{word-spacing:0.264000px;}
.ws9c{word-spacing:0.270000px;}
.wsaa{word-spacing:0.285000px;}
.ws26{word-spacing:0.330000px;}
.ws8a{word-spacing:0.364500px;}
.ws2b{word-spacing:0.396000px;}
.ws8{word-spacing:0.399000px;}
.ws52{word-spacing:0.462000px;}
.ws89{word-spacing:0.486000px;}
.ws2a{word-spacing:0.528000px;}
.wsa9{word-spacing:0.570000px;}
.ws12{word-spacing:0.594000px;}
.ws87{word-spacing:0.607500px;}
.ws9b{word-spacing:0.648000px;}
.ws5f{word-spacing:0.660000px;}
.ws98{word-spacing:0.702000px;}
.ws65{word-spacing:0.720000px;}
.ws3e{word-spacing:0.726000px;}
.wse{word-spacing:0.792000px;}
.ws86{word-spacing:0.810000px;}
.ws3b{word-spacing:0.831600px;}
.ws63{word-spacing:0.840000px;}
.ws29{word-spacing:0.858000px;}
.wsd{word-spacing:0.864000px;}
.ws7a{word-spacing:0.918000px;}
.ws22{word-spacing:0.924000px;}
.wsab{word-spacing:0.969000px;}
.wsc{word-spacing:0.972000px;}
.ws3a{word-spacing:0.990000px;}
.ws35{word-spacing:1.016400px;}
.ws9{word-spacing:1.026000px;}
.ws3f{word-spacing:1.056000px;}
.ws78{word-spacing:1.062600px;}
.ws1c{word-spacing:1.122000px;}
.ws6f{word-spacing:1.134000px;}
.ws3{word-spacing:1.140000px;}
.ws37{word-spacing:1.188000px;}
.wsa6{word-spacing:1.197000px;}
.ws25{word-spacing:1.254000px;}
.ws64{word-spacing:1.260000px;}
.wsb{word-spacing:1.311000px;}
.ws1d{word-spacing:1.320000px;}
.ws1e{word-spacing:1.386000px;}
.ws7{word-spacing:1.425000px;}
.ws62{word-spacing:1.440000px;}
.ws34{word-spacing:1.452000px;}
.ws20{word-spacing:1.518000px;}
.ws36{word-spacing:1.584000px;}
.ws39{word-spacing:1.650000px;}
.ws31{word-spacing:3.351000px;}
.ws9e{word-spacing:3.661500px;}
.ws79{word-spacing:3.960000px;}
.ws83{word-spacing:4.024500px;}
.ws96{word-spacing:4.410000px;}
.wsa1{word-spacing:4.554000px;}
.ws71{word-spacing:6.162600px;}
.ws93{word-spacing:8.040000px;}
.ws85{word-spacing:8.910000px;}
.ws73{word-spacing:9.018000px;}
.ws1b{word-spacing:35.712000px;}
.ws33{word-spacing:36.018000px;}
._e{margin-left:-11.088000px;}
._d{margin-left:-7.788000px;}
._3{margin-left:-5.940000px;}
._2{margin-left:-4.503000px;}
._b{margin-left:-3.498000px;}
._1{margin-left:-2.394000px;}
._0{margin-left:-1.311000px;}
._6{width:1.335000px;}
._5{width:3.366000px;}
._7{width:4.422000px;}
._c{width:16.764000px;}
._f{width:22.518000px;}
._4{width:47.952000px;}
._a{width:49.518000px;}
._8{width:1023.168000px;}
._9{width:1226.160000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:46.200000px;}
.fs3{font-size:48.000000px;}
.fsa{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:54.879000px;}
.y103{bottom:54.882000px;}
.yf4{bottom:54.894000px;}
.y6b{bottom:54.993000px;}
.yb8{bottom:54.999000px;}
.yd3{bottom:55.134000px;}
.y4d{bottom:55.182000px;}
.y137{bottom:55.215000px;}
.y94{bottom:55.269000px;}
.y154{bottom:55.524000px;}
.y19{bottom:55.732500px;}
.y129{bottom:69.135000px;}
.yf3{bottom:69.138000px;}
.y15e{bottom:69.150000px;}
.y6a{bottom:69.249000px;}
.y13f{bottom:69.255000px;}
.yd2{bottom:69.390000px;}
.y93{bottom:69.519000px;}
.y153{bottom:69.780000px;}
.y4c{bottom:72.424500px;}
.y136{bottom:72.457500px;}
.y18{bottom:72.975000px;}
.yf2{bottom:83.394000px;}
.y69{bottom:83.505000px;}
.y13e{bottom:83.511000px;}
.y92{bottom:83.769000px;}
.y4b{bottom:89.667000px;}
.y135{bottom:89.700000px;}
.y17{bottom:90.217500px;}
.yf1{bottom:97.644000px;}
.y13d{bottom:97.767000px;}
.y91{bottom:98.025000px;}
.y4a{bottom:106.909500px;}
.y134{bottom:106.942500px;}
.y16{bottom:107.460000px;}
.yf0{bottom:111.900000px;}
.y13c{bottom:112.023000px;}
.y128{bottom:117.330000px;}
.yb7{bottom:123.172500px;}
.yd1{bottom:123.967500px;}
.y152{bottom:124.005000px;}
.y68{bottom:124.072500px;}
.y49{bottom:124.152000px;}
.y133{bottom:124.185000px;}
.y15{bottom:124.702500px;}
.y13b{bottom:126.279000px;}
.y127{bottom:134.572500px;}
.yb6{bottom:140.415000px;}
.y13a{bottom:140.535000px;}
.y90{bottom:141.165000px;}
.yd0{bottom:141.210000px;}
.y151{bottom:141.247500px;}
.y67{bottom:141.315000px;}
.y48{bottom:141.394500px;}
.y132{bottom:141.427500px;}
.y14{bottom:141.945000px;}
.y126{bottom:151.815000px;}
.yb5{bottom:157.657500px;}
.y8f{bottom:158.407500px;}
.y102{bottom:158.437500px;}
.ycf{bottom:158.452500px;}
.y150{bottom:158.490000px;}
.y66{bottom:158.557500px;}
.y47{bottom:158.637000px;}
.y131{bottom:158.670000px;}
.y125{bottom:169.057500px;}
.yb4{bottom:174.900000px;}
.y8e{bottom:175.650000px;}
.y101{bottom:175.680000px;}
.yce{bottom:175.695000px;}
.y14f{bottom:175.732500px;}
.y65{bottom:175.800000px;}
.y46{bottom:175.879500px;}
.y130{bottom:175.912500px;}
.y124{bottom:186.300000px;}
.yb3{bottom:192.142500px;}
.y8d{bottom:192.892500px;}
.y100{bottom:192.922500px;}
.ycd{bottom:192.937500px;}
.y14e{bottom:192.975000px;}
.y64{bottom:193.042500px;}
.y45{bottom:193.122000px;}
.y12f{bottom:193.155000px;}
.y123{bottom:203.542500px;}
.y13{bottom:204.177000px;}
.yb2{bottom:209.385000px;}
.y139{bottom:210.150000px;}
.yff{bottom:210.165000px;}
.ycc{bottom:210.180000px;}
.y14d{bottom:210.217500px;}
.y8c{bottom:210.232500px;}
.y63{bottom:210.285000px;}
.y44{bottom:210.364500px;}
.y12e{bottom:210.397500px;}
.y122{bottom:220.785000px;}
.y12{bottom:226.938000px;}
.y138{bottom:227.392500px;}
.yfe{bottom:227.407500px;}
.ycb{bottom:227.422500px;}
.y14c{bottom:227.460000px;}
.y8b{bottom:227.475000px;}
.y62{bottom:227.527500px;}
.y43{bottom:227.607000px;}
.y12d{bottom:227.640000px;}
.y106{bottom:236.236500px;}
.y121{bottom:238.027500px;}
.y11{bottom:241.194000px;}
.yb1{bottom:243.885000px;}
.yfd{bottom:244.650000px;}
.yca{bottom:244.665000px;}
.y14b{bottom:244.702500px;}
.y8a{bottom:244.717500px;}
.y61{bottom:244.770000px;}
.y42{bottom:244.849500px;}
.y12c{bottom:244.882500px;}
.y120{bottom:255.270000px;}
.y10{bottom:255.450000px;}
.yb0{bottom:259.635000px;}
.yfc{bottom:261.892500px;}
.yc9{bottom:261.907500px;}
.y14a{bottom:261.945000px;}
.y89{bottom:261.960000px;}
.y60{bottom:262.012500px;}
.y41{bottom:262.092000px;}
.y12b{bottom:262.125000px;}
.y11f{bottom:272.512500px;}
.yaf{bottom:275.385000px;}
.yc8{bottom:279.150000px;}
.yfb{bottom:279.165000px;}
.y149{bottom:279.187500px;}
.y88{bottom:279.202500px;}
.y5f{bottom:279.255000px;}
.y40{bottom:279.334500px;}
.y105{bottom:279.367500px;}
.y11e{bottom:289.755000px;}
.yae{bottom:291.135000px;}
.yc7{bottom:296.392500px;}
.yfa{bottom:296.407500px;}
.y148{bottom:296.430000px;}
.y87{bottom:296.445000px;}
.y5e{bottom:296.497500px;}
.y3f{bottom:296.577000px;}
.y104{bottom:296.610000px;}
.yad{bottom:306.885000px;}
.y11d{bottom:306.997500px;}
.yef{bottom:313.650000px;}
.y147{bottom:313.672500px;}
.y86{bottom:313.687500px;}
.y5d{bottom:313.740000px;}
.y3e{bottom:313.819500px;}
.yc6{bottom:313.852500px;}
.yac{bottom:322.635000px;}
.y11c{bottom:324.240000px;}
.yee{bottom:330.892500px;}
.y146{bottom:330.915000px;}
.y85{bottom:330.930000px;}
.y5c{bottom:330.982500px;}
.y3d{bottom:331.062000px;}
.yc5{bottom:331.095000px;}
.yab{bottom:338.385000px;}
.y11b{bottom:341.482500px;}
.yf{bottom:344.115000px;}
.y145{bottom:348.157500px;}
.y84{bottom:348.172500px;}
.y5b{bottom:348.225000px;}
.y3c{bottom:348.304500px;}
.yf9{bottom:348.322500px;}
.yed{bottom:348.330000px;}
.yc4{bottom:348.337500px;}
.yaa{bottom:354.135000px;}
.y11a{bottom:358.725000px;}
.ye{bottom:365.097750px;}
.y144{bottom:365.400000px;}
.y83{bottom:365.415000px;}
.y5a{bottom:365.467500px;}
.y3b{bottom:365.547000px;}
.yf8{bottom:365.565000px;}
.yec{bottom:365.572500px;}
.yc3{bottom:365.580000px;}
.ya9{bottom:369.885000px;}
.y119{bottom:375.967500px;}
.yd{bottom:380.103000px;}
.y143{bottom:382.642500px;}
.y82{bottom:382.657500px;}
.y59{bottom:382.710000px;}
.y3a{bottom:382.789500px;}
.yf7{bottom:382.807500px;}
.yeb{bottom:382.815000px;}
.yc2{bottom:382.822500px;}
.ya8{bottom:385.635000px;}
.y118{bottom:393.210000px;}
.yc{bottom:395.108250px;}
.y81{bottom:399.900000px;}
.y142{bottom:399.907500px;}
.y58{bottom:399.952500px;}
.y39{bottom:400.032000px;}
.yf6{bottom:400.050000px;}
.yea{bottom:400.057500px;}
.yc1{bottom:400.065000px;}
.ya7{bottom:401.385000px;}
.yb{bottom:410.113500px;}
.y117{bottom:410.452500px;}
.y80{bottom:417.142500px;}
.y141{bottom:417.150000px;}
.y57{bottom:417.195000px;}
.y38{bottom:417.274500px;}
.yf5{bottom:417.292500px;}
.ye9{bottom:417.300000px;}
.yc0{bottom:417.307500px;}
.ya{bottom:425.118750px;}
.y116{bottom:427.695000px;}
.y15d{bottom:429.135000px;}
.y140{bottom:434.392500px;}
.y56{bottom:434.437500px;}
.y37{bottom:434.517000px;}
.ya6{bottom:434.520000px;}
.y7f{bottom:434.535000px;}
.ye8{bottom:434.542500px;}
.ybf{bottom:434.550000px;}
.y15c{bottom:444.098250px;}
.y115{bottom:444.937500px;}
.y55{bottom:451.680000px;}
.y36{bottom:451.759500px;}
.ya5{bottom:451.762500px;}
.y7e{bottom:451.777500px;}
.ye7{bottom:451.785000px;}
.ybe{bottom:451.792500px;}
.y9{bottom:455.115000px;}
.y15b{bottom:459.103500px;}
.y114{bottom:462.180000px;}
.y54{bottom:468.922500px;}
.y35{bottom:469.002000px;}
.ya4{bottom:469.005000px;}
.y7d{bottom:469.020000px;}
.ye6{bottom:469.027500px;}
.ybd{bottom:469.035000px;}
.y15a{bottom:474.108750px;}
.y113{bottom:479.422500px;}
.y53{bottom:486.165000px;}
.y34{bottom:486.244500px;}
.ya3{bottom:486.247500px;}
.y7c{bottom:486.262500px;}
.ye5{bottom:486.270000px;}
.ybc{bottom:486.277500px;}
.y159{bottom:489.114000px;}
.y8{bottom:491.084250px;}
.y112{bottom:496.665000px;}
.y52{bottom:503.407500px;}
.y33{bottom:503.487000px;}
.ya2{bottom:503.490000px;}
.y7b{bottom:503.505000px;}
.ye4{bottom:503.512500px;}
.ybb{bottom:503.520000px;}
.y158{bottom:504.119250px;}
.y7{bottom:512.088750px;}
.y111{bottom:513.907500px;}
.y157{bottom:519.124500px;}
.y51{bottom:520.650000px;}
.y32{bottom:520.729500px;}
.ya1{bottom:520.732500px;}
.y7a{bottom:520.747500px;}
.ye3{bottom:520.755000px;}
.yba{bottom:520.762500px;}
.y6{bottom:527.094000px;}
.y110{bottom:531.150000px;}
.y156{bottom:534.129750px;}
.y50{bottom:537.892500px;}
.ya0{bottom:537.975000px;}
.y79{bottom:537.990000px;}
.ye2{bottom:537.997500px;}
.yb9{bottom:538.005000px;}
.y5{bottom:542.099250px;}
.y31{bottom:546.601500px;}
.y10f{bottom:548.392500px;}
.y155{bottom:549.135000px;}
.y9f{bottom:555.217500px;}
.y78{bottom:555.232500px;}
.ye1{bottom:555.240000px;}
.y4f{bottom:555.247500px;}
.y4{bottom:557.104500px;}
.y10e{bottom:565.635000px;}
.y3{bottom:572.109750px;}
.y9e{bottom:572.460000px;}
.y77{bottom:572.475000px;}
.ye0{bottom:572.482500px;}
.y4e{bottom:572.490000px;}
.y2{bottom:587.115000px;}
.y9d{bottom:589.702500px;}
.y76{bottom:589.717500px;}
.ydf{bottom:589.725000px;}
.y30{bottom:589.732500px;}
.y10d{bottom:600.135000px;}
.y9c{bottom:606.945000px;}
.y75{bottom:606.960000px;}
.yde{bottom:606.967500px;}
.y2f{bottom:606.975000px;}
.y10c{bottom:615.885000px;}
.y1{bottom:617.115000px;}
.y9b{bottom:624.187500px;}
.y74{bottom:624.202500px;}
.ydd{bottom:624.210000px;}
.y2e{bottom:624.217500px;}
.y10b{bottom:631.635000px;}
.y9a{bottom:641.430000px;}
.y73{bottom:641.445000px;}
.ydc{bottom:641.452500px;}
.y2d{bottom:641.460000px;}
.y10a{bottom:647.385000px;}
.y99{bottom:658.672500px;}
.y72{bottom:658.687500px;}
.ydb{bottom:658.695000px;}
.y2c{bottom:658.702500px;}
.y109{bottom:663.135000px;}
.y98{bottom:675.915000px;}
.y71{bottom:675.930000px;}
.yda{bottom:675.937500px;}
.y2b{bottom:675.945000px;}
.y108{bottom:678.885000px;}
.y21{bottom:680.337000px;}
.y97{bottom:693.157500px;}
.y70{bottom:693.172500px;}
.yd9{bottom:693.180000px;}
.y2a{bottom:693.187500px;}
.y20{bottom:694.593000px;}
.y107{bottom:694.635000px;}
.y1f{bottom:708.849000px;}
.y96{bottom:710.400000px;}
.y6f{bottom:710.415000px;}
.yd8{bottom:710.422500px;}
.y29{bottom:710.430000px;}
.y1e{bottom:723.105000px;}
.y95{bottom:727.642500px;}
.y6e{bottom:727.657500px;}
.yd7{bottom:727.665000px;}
.y28{bottom:727.672500px;}
.y1d{bottom:741.105000px;}
.y6d{bottom:744.900000px;}
.yd6{bottom:744.907500px;}
.y27{bottom:744.915000px;}
.y6c{bottom:762.142500px;}
.yd5{bottom:762.150000px;}
.y26{bottom:762.157500px;}
.yd4{bottom:779.392500px;}
.y25{bottom:779.400000px;}
.y1c{bottom:786.105000px;}
.y24{bottom:796.642500px;}
.y1b{bottom:810.105000px;}
.y23{bottom:813.885000px;}
.y1a{bottom:861.105000px;}
.y22{bottom:924.000000px;}
.h5{height:41.568000px;}
.h3{height:45.954000px;}
.hf{height:45.978000px;}
.h16{height:46.002000px;}
.h18{height:46.026000px;}
.h8{height:47.085938px;}
.h2{height:48.507000px;}
.h1{height:49.362000px;}
.h11{height:51.060000px;}
.h12{height:55.542000px;}
.h4{height:56.166000px;}
.h9{height:57.156000px;}
.h19{height:60.106200px;}
.h13{height:60.226200px;}
.h15{height:60.316200px;}
.h17{height:60.346200px;}
.hd{height:60.496200px;}
.hb{height:60.646200px;}
.he{height:60.706200px;}
.h10{height:60.976200px;}
.h1a{height:61.006200px;}
.hc{height:61.036200px;}
.h14{height:61.066200px;}
.ha{height:61.096200px;}
.h7{height:61.272000px;}
.h6{height:81.696000px;}
.h0{height:892.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x5{left:4.500000px;}
.x1{left:74.700000px;}
.x6{left:75.915000px;}
.x9{left:97.198500px;}
.x8{left:98.421000px;}
.xa{left:119.700000px;}
.xc{left:120.915000px;}
.x2{left:236.700000px;}
.xd{left:310.116000px;}
.xb{left:311.788500px;}
.x7{left:316.006500px;}
.x4{left:442.500000px;}
.x3{left:488.016000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:19.360000pt;}
.ls34{letter-spacing:-1.584000pt;}
.ls35{letter-spacing:-1.525333pt;}
.ls3d{letter-spacing:-1.466667pt;}
.ls58{letter-spacing:-1.349333pt;}
.ls54{letter-spacing:-1.290667pt;}
.ls19{letter-spacing:-1.232000pt;}
.ls60{letter-spacing:-1.165333pt;}
.ls56{letter-spacing:-1.056000pt;}
.ls2a{letter-spacing:-0.997333pt;}
.ls22{letter-spacing:-0.938667pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls59{letter-spacing:-0.864000pt;}
.ls2b{letter-spacing:-0.862400pt;}
.ls21{letter-spacing:-0.821333pt;}
.ls5f{letter-spacing:-0.810667pt;}
.lsa{letter-spacing:-0.762667pt;}
.ls5e{letter-spacing:-0.709333pt;}
.ls20{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.682667pt;}
.ls27{letter-spacing:-0.645333pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.608000pt;}
.ls1a{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.528000pt;}
.ls53{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.469333pt;}
.ls52{letter-spacing:-0.432000pt;}
.ls38{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.410667pt;}
.ls4d{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.352000pt;}
.ls61{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls39{letter-spacing:-0.288000pt;}
.ls3e{letter-spacing:-0.246400pt;}
.ls23{letter-spacing:-0.234667pt;}
.ls2c{letter-spacing:-0.205333pt;}
.ls5a{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.176000pt;}
.ls46{letter-spacing:-0.164267pt;}
.ls28{letter-spacing:-0.123200pt;}
.ls16{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls3a{letter-spacing:-0.096000pt;}
.ls2f{letter-spacing:-0.072000pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls37{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:-0.050667pt;}
.ls2d{letter-spacing:-0.048000pt;}
.ls5b{letter-spacing:-0.044000pt;}
.lsb{letter-spacing:-0.042667pt;}
.ls2e{letter-spacing:-0.036000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.036000pt;}
.ls31{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.058667pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.176000pt;}
.ls3c{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.202667pt;}
.ls1e{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.253333pt;}
.ls42{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.293333pt;}
.ls50{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.324000pt;}
.ls4b{letter-spacing:0.328533pt;}
.ls2{letter-spacing:0.336000pt;}
.ls1f{letter-spacing:0.352000pt;}
.ls1{letter-spacing:0.354667pt;}
.ls45{letter-spacing:0.369600pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.410667pt;}
.ls44{letter-spacing:0.432000pt;}
.ls4c{letter-spacing:0.468000pt;}
.lsf{letter-spacing:0.469333pt;}
.ls48{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.528000pt;}
.ls57{letter-spacing:0.576000pt;}
.ls32{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.645333pt;}
.ls33{letter-spacing:0.693333pt;}
.ls3f{letter-spacing:0.704000pt;}
.ls4a{letter-spacing:0.720000pt;}
.ls4e{letter-spacing:0.756000pt;}
.ls3b{letter-spacing:0.762667pt;}
.ls4f{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.821333pt;}
.ls40{letter-spacing:0.880000pt;}
.ls13{letter-spacing:0.938667pt;}
.ls47{letter-spacing:0.997333pt;}
.ls55{letter-spacing:1.173333pt;}
.ls51{letter-spacing:1.333333pt;}
.ls26{letter-spacing:1.349333pt;}
.ls41{letter-spacing:1.466667pt;}
.ls5c{letter-spacing:1.525333pt;}
.wsa0{word-spacing:-16.192000pt;}
.ws4a{word-spacing:-16.016000pt;}
.ws8b{word-spacing:-15.429333pt;}
.ws70{word-spacing:-15.370667pt;}
.ws6a{word-spacing:-15.312000pt;}
.ws95{word-spacing:-15.253333pt;}
.ws48{word-spacing:-15.194667pt;}
.ws7b{word-spacing:-15.136000pt;}
.ws6b{word-spacing:-15.018667pt;}
.ws2f{word-spacing:-14.960000pt;}
.ws57{word-spacing:-14.901333pt;}
.ws2e{word-spacing:-14.842667pt;}
.ws2c{word-spacing:-14.784000pt;}
.ws49{word-spacing:-14.725333pt;}
.ws16{word-spacing:-14.666667pt;}
.ws19{word-spacing:-14.608000pt;}
.ws2d{word-spacing:-14.549333pt;}
.ws1a{word-spacing:-14.490667pt;}
.ws47{word-spacing:-14.432000pt;}
.ws14{word-spacing:-14.373333pt;}
.ws55{word-spacing:-14.314667pt;}
.ws15{word-spacing:-14.256000pt;}
.ws54{word-spacing:-14.197333pt;}
.ws41{word-spacing:-14.021333pt;}
.ws45{word-spacing:-13.962667pt;}
.ws59{word-spacing:-13.920000pt;}
.ws7d{word-spacing:-13.904000pt;}
.ws30{word-spacing:-13.845333pt;}
.ws8c{word-spacing:-13.786667pt;}
.ws43{word-spacing:-13.728000pt;}
.ws44{word-spacing:-13.669333pt;}
.ws18{word-spacing:-13.434667pt;}
.ws58{word-spacing:-13.333333pt;}
.ws8d{word-spacing:-13.280000pt;}
.ws56{word-spacing:-13.082667pt;}
.ws0{word-spacing:-12.920000pt;}
.wsa2{word-spacing:-12.869333pt;}
.ws84{word-spacing:-12.768000pt;}
.ws5a{word-spacing:-12.746667pt;}
.wsa5{word-spacing:-12.666667pt;}
.wsa4{word-spacing:-12.616000pt;}
.ws77{word-spacing:-12.432000pt;}
.ws99{word-spacing:-12.336000pt;}
.ws74{word-spacing:-12.288000pt;}
.ws6d{word-spacing:-12.192000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4e{word-spacing:-11.952000pt;}
.ws5e{word-spacing:-11.904000pt;}
.wsa3{word-spacing:-11.856000pt;}
.ws9a{word-spacing:-11.808000pt;}
.ws5d{word-spacing:-11.712000pt;}
.ws90{word-spacing:-11.568000pt;}
.ws91{word-spacing:-11.520000pt;}
.ws9f{word-spacing:-10.956000pt;}
.ws7c{word-spacing:-10.595200pt;}
.ws7f{word-spacing:-10.266667pt;}
.ws42{word-spacing:-10.143467pt;}
.ws72{word-spacing:-10.102400pt;}
.ws4b{word-spacing:-10.061333pt;}
.ws6c{word-spacing:-10.020267pt;}
.ws82{word-spacing:-9.756000pt;}
.ws97{word-spacing:-9.576000pt;}
.ws80{word-spacing:-9.468000pt;}
.ws76{word-spacing:-9.432000pt;}
.ws46{word-spacing:-9.404267pt;}
.ws5b{word-spacing:-9.333333pt;}
.ws75{word-spacing:-9.324000pt;}
.ws32{word-spacing:-9.000000pt;}
.ws4c{word-spacing:-8.964000pt;}
.ws4d{word-spacing:-8.928000pt;}
.ws5c{word-spacing:-8.712000pt;}
.ws8f{word-spacing:-8.568000pt;}
.ws13{word-spacing:-6.656000pt;}
.ws7e{word-spacing:-0.938667pt;}
.ws8e{word-spacing:-0.821333pt;}
.ws6e{word-spacing:-0.762667pt;}
.ws10{word-spacing:-0.704000pt;}
.ws24{word-spacing:-0.645333pt;}
.ws61{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.624000pt;}
.ws5{word-spacing:-0.608000pt;}
.ws23{word-spacing:-0.586667pt;}
.ws40{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.557333pt;}
.ws38{word-spacing:-0.528000pt;}
.ws69{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.469333pt;}
.wsad{word-spacing:-0.432000pt;}
.ws21{word-spacing:-0.410667pt;}
.wsf{word-spacing:-0.352000pt;}
.ws9d{word-spacing:-0.336000pt;}
.ws4{word-spacing:-0.304000pt;}
.ws17{word-spacing:-0.293333pt;}
.ws68{word-spacing:-0.288000pt;}
.ws92{word-spacing:-0.266667pt;}
.wsac{word-spacing:-0.240000pt;}
.ws27{word-spacing:-0.234667pt;}
.ws67{word-spacing:-0.213333pt;}
.ws88{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.176000pt;}
.ws94{word-spacing:-0.144000pt;}
.ws11{word-spacing:-0.117333pt;}
.ws66{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.058667pt;}
.ws60{word-spacing:-0.053333pt;}
.ws2{word-spacing:-0.050667pt;}
.ws81{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.050667pt;}
.ws3d{word-spacing:0.058667pt;}
.ws4f{word-spacing:0.117333pt;}
.wsa8{word-spacing:0.152000pt;}
.ws51{word-spacing:0.176000pt;}
.ws50{word-spacing:0.234667pt;}
.ws9c{word-spacing:0.240000pt;}
.wsaa{word-spacing:0.253333pt;}
.ws26{word-spacing:0.293333pt;}
.ws8a{word-spacing:0.324000pt;}
.ws2b{word-spacing:0.352000pt;}
.ws8{word-spacing:0.354667pt;}
.ws52{word-spacing:0.410667pt;}
.ws89{word-spacing:0.432000pt;}
.ws2a{word-spacing:0.469333pt;}
.wsa9{word-spacing:0.506667pt;}
.ws12{word-spacing:0.528000pt;}
.ws87{word-spacing:0.540000pt;}
.ws9b{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.586667pt;}
.ws98{word-spacing:0.624000pt;}
.ws65{word-spacing:0.640000pt;}
.ws3e{word-spacing:0.645333pt;}
.wse{word-spacing:0.704000pt;}
.ws86{word-spacing:0.720000pt;}
.ws3b{word-spacing:0.739200pt;}
.ws63{word-spacing:0.746667pt;}
.ws29{word-spacing:0.762667pt;}
.wsd{word-spacing:0.768000pt;}
.ws7a{word-spacing:0.816000pt;}
.ws22{word-spacing:0.821333pt;}
.wsab{word-spacing:0.861333pt;}
.wsc{word-spacing:0.864000pt;}
.ws3a{word-spacing:0.880000pt;}
.ws35{word-spacing:0.903467pt;}
.ws9{word-spacing:0.912000pt;}
.ws3f{word-spacing:0.938667pt;}
.ws78{word-spacing:0.944533pt;}
.ws1c{word-spacing:0.997333pt;}
.ws6f{word-spacing:1.008000pt;}
.ws3{word-spacing:1.013333pt;}
.ws37{word-spacing:1.056000pt;}
.wsa6{word-spacing:1.064000pt;}
.ws25{word-spacing:1.114667pt;}
.ws64{word-spacing:1.120000pt;}
.wsb{word-spacing:1.165333pt;}
.ws1d{word-spacing:1.173333pt;}
.ws1e{word-spacing:1.232000pt;}
.ws7{word-spacing:1.266667pt;}
.ws62{word-spacing:1.280000pt;}
.ws34{word-spacing:1.290667pt;}
.ws20{word-spacing:1.349333pt;}
.ws36{word-spacing:1.408000pt;}
.ws39{word-spacing:1.466667pt;}
.ws31{word-spacing:2.978667pt;}
.ws9e{word-spacing:3.254667pt;}
.ws79{word-spacing:3.520000pt;}
.ws83{word-spacing:3.577333pt;}
.ws96{word-spacing:3.920000pt;}
.wsa1{word-spacing:4.048000pt;}
.ws71{word-spacing:5.477867pt;}
.ws93{word-spacing:7.146667pt;}
.ws85{word-spacing:7.920000pt;}
.ws73{word-spacing:8.016000pt;}
.ws1b{word-spacing:31.744000pt;}
.ws33{word-spacing:32.016000pt;}
._e{margin-left:-9.856000pt;}
._d{margin-left:-6.922667pt;}
._3{margin-left:-5.280000pt;}
._2{margin-left:-4.002667pt;}
._b{margin-left:-3.109333pt;}
._1{margin-left:-2.128000pt;}
._0{margin-left:-1.165333pt;}
._6{width:1.186667pt;}
._5{width:2.992000pt;}
._7{width:3.930667pt;}
._c{width:14.901333pt;}
._f{width:20.016000pt;}
._4{width:42.624000pt;}
._a{width:44.016000pt;}
._8{width:909.482667pt;}
._9{width:1089.920000pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:41.066667pt;}
.fs3{font-size:42.666667pt;}
.fsa{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:48.781333pt;}
.y103{bottom:48.784000pt;}
.yf4{bottom:48.794667pt;}
.y6b{bottom:48.882667pt;}
.yb8{bottom:48.888000pt;}
.yd3{bottom:49.008000pt;}
.y4d{bottom:49.050667pt;}
.y137{bottom:49.080000pt;}
.y94{bottom:49.128000pt;}
.y154{bottom:49.354667pt;}
.y19{bottom:49.540000pt;}
.y129{bottom:61.453333pt;}
.yf3{bottom:61.456000pt;}
.y15e{bottom:61.466667pt;}
.y6a{bottom:61.554667pt;}
.y13f{bottom:61.560000pt;}
.yd2{bottom:61.680000pt;}
.y93{bottom:61.794667pt;}
.y153{bottom:62.026667pt;}
.y4c{bottom:64.377333pt;}
.y136{bottom:64.406667pt;}
.y18{bottom:64.866667pt;}
.yf2{bottom:74.128000pt;}
.y69{bottom:74.226667pt;}
.y13e{bottom:74.232000pt;}
.y92{bottom:74.461333pt;}
.y4b{bottom:79.704000pt;}
.y135{bottom:79.733333pt;}
.y17{bottom:80.193333pt;}
.yf1{bottom:86.794667pt;}
.y13d{bottom:86.904000pt;}
.y91{bottom:87.133333pt;}
.y4a{bottom:95.030667pt;}
.y134{bottom:95.060000pt;}
.y16{bottom:95.520000pt;}
.yf0{bottom:99.466667pt;}
.y13c{bottom:99.576000pt;}
.y128{bottom:104.293333pt;}
.yb7{bottom:109.486667pt;}
.yd1{bottom:110.193333pt;}
.y152{bottom:110.226667pt;}
.y68{bottom:110.286667pt;}
.y49{bottom:110.357333pt;}
.y133{bottom:110.386667pt;}
.y15{bottom:110.846667pt;}
.y13b{bottom:112.248000pt;}
.y127{bottom:119.620000pt;}
.yb6{bottom:124.813333pt;}
.y13a{bottom:124.920000pt;}
.y90{bottom:125.480000pt;}
.yd0{bottom:125.520000pt;}
.y151{bottom:125.553333pt;}
.y67{bottom:125.613333pt;}
.y48{bottom:125.684000pt;}
.y132{bottom:125.713333pt;}
.y14{bottom:126.173333pt;}
.y126{bottom:134.946667pt;}
.yb5{bottom:140.140000pt;}
.y8f{bottom:140.806667pt;}
.y102{bottom:140.833333pt;}
.ycf{bottom:140.846667pt;}
.y150{bottom:140.880000pt;}
.y66{bottom:140.940000pt;}
.y47{bottom:141.010667pt;}
.y131{bottom:141.040000pt;}
.y125{bottom:150.273333pt;}
.yb4{bottom:155.466667pt;}
.y8e{bottom:156.133333pt;}
.y101{bottom:156.160000pt;}
.yce{bottom:156.173333pt;}
.y14f{bottom:156.206667pt;}
.y65{bottom:156.266667pt;}
.y46{bottom:156.337333pt;}
.y130{bottom:156.366667pt;}
.y124{bottom:165.600000pt;}
.yb3{bottom:170.793333pt;}
.y8d{bottom:171.460000pt;}
.y100{bottom:171.486667pt;}
.ycd{bottom:171.500000pt;}
.y14e{bottom:171.533333pt;}
.y64{bottom:171.593333pt;}
.y45{bottom:171.664000pt;}
.y12f{bottom:171.693333pt;}
.y123{bottom:180.926667pt;}
.y13{bottom:181.490667pt;}
.yb2{bottom:186.120000pt;}
.y139{bottom:186.800000pt;}
.yff{bottom:186.813333pt;}
.ycc{bottom:186.826667pt;}
.y14d{bottom:186.860000pt;}
.y8c{bottom:186.873333pt;}
.y63{bottom:186.920000pt;}
.y44{bottom:186.990667pt;}
.y12e{bottom:187.020000pt;}
.y122{bottom:196.253333pt;}
.y12{bottom:201.722667pt;}
.y138{bottom:202.126667pt;}
.yfe{bottom:202.140000pt;}
.ycb{bottom:202.153333pt;}
.y14c{bottom:202.186667pt;}
.y8b{bottom:202.200000pt;}
.y62{bottom:202.246667pt;}
.y43{bottom:202.317333pt;}
.y12d{bottom:202.346667pt;}
.y106{bottom:209.988000pt;}
.y121{bottom:211.580000pt;}
.y11{bottom:214.394667pt;}
.yb1{bottom:216.786667pt;}
.yfd{bottom:217.466667pt;}
.yca{bottom:217.480000pt;}
.y14b{bottom:217.513333pt;}
.y8a{bottom:217.526667pt;}
.y61{bottom:217.573333pt;}
.y42{bottom:217.644000pt;}
.y12c{bottom:217.673333pt;}
.y120{bottom:226.906667pt;}
.y10{bottom:227.066667pt;}
.yb0{bottom:230.786667pt;}
.yfc{bottom:232.793333pt;}
.yc9{bottom:232.806667pt;}
.y14a{bottom:232.840000pt;}
.y89{bottom:232.853333pt;}
.y60{bottom:232.900000pt;}
.y41{bottom:232.970667pt;}
.y12b{bottom:233.000000pt;}
.y11f{bottom:242.233333pt;}
.yaf{bottom:244.786667pt;}
.yc8{bottom:248.133333pt;}
.yfb{bottom:248.146667pt;}
.y149{bottom:248.166667pt;}
.y88{bottom:248.180000pt;}
.y5f{bottom:248.226667pt;}
.y40{bottom:248.297333pt;}
.y105{bottom:248.326667pt;}
.y11e{bottom:257.560000pt;}
.yae{bottom:258.786667pt;}
.yc7{bottom:263.460000pt;}
.yfa{bottom:263.473333pt;}
.y148{bottom:263.493333pt;}
.y87{bottom:263.506667pt;}
.y5e{bottom:263.553333pt;}
.y3f{bottom:263.624000pt;}
.y104{bottom:263.653333pt;}
.yad{bottom:272.786667pt;}
.y11d{bottom:272.886667pt;}
.yef{bottom:278.800000pt;}
.y147{bottom:278.820000pt;}
.y86{bottom:278.833333pt;}
.y5d{bottom:278.880000pt;}
.y3e{bottom:278.950667pt;}
.yc6{bottom:278.980000pt;}
.yac{bottom:286.786667pt;}
.y11c{bottom:288.213333pt;}
.yee{bottom:294.126667pt;}
.y146{bottom:294.146667pt;}
.y85{bottom:294.160000pt;}
.y5c{bottom:294.206667pt;}
.y3d{bottom:294.277333pt;}
.yc5{bottom:294.306667pt;}
.yab{bottom:300.786667pt;}
.y11b{bottom:303.540000pt;}
.yf{bottom:305.880000pt;}
.y145{bottom:309.473333pt;}
.y84{bottom:309.486667pt;}
.y5b{bottom:309.533333pt;}
.y3c{bottom:309.604000pt;}
.yf9{bottom:309.620000pt;}
.yed{bottom:309.626667pt;}
.yc4{bottom:309.633333pt;}
.yaa{bottom:314.786667pt;}
.y11a{bottom:318.866667pt;}
.ye{bottom:324.531333pt;}
.y144{bottom:324.800000pt;}
.y83{bottom:324.813333pt;}
.y5a{bottom:324.860000pt;}
.y3b{bottom:324.930667pt;}
.yf8{bottom:324.946667pt;}
.yec{bottom:324.953333pt;}
.yc3{bottom:324.960000pt;}
.ya9{bottom:328.786667pt;}
.y119{bottom:334.193333pt;}
.yd{bottom:337.869333pt;}
.y143{bottom:340.126667pt;}
.y82{bottom:340.140000pt;}
.y59{bottom:340.186667pt;}
.y3a{bottom:340.257333pt;}
.yf7{bottom:340.273333pt;}
.yeb{bottom:340.280000pt;}
.yc2{bottom:340.286667pt;}
.ya8{bottom:342.786667pt;}
.y118{bottom:349.520000pt;}
.yc{bottom:351.207333pt;}
.y81{bottom:355.466667pt;}
.y142{bottom:355.473333pt;}
.y58{bottom:355.513333pt;}
.y39{bottom:355.584000pt;}
.yf6{bottom:355.600000pt;}
.yea{bottom:355.606667pt;}
.yc1{bottom:355.613333pt;}
.ya7{bottom:356.786667pt;}
.yb{bottom:364.545333pt;}
.y117{bottom:364.846667pt;}
.y80{bottom:370.793333pt;}
.y141{bottom:370.800000pt;}
.y57{bottom:370.840000pt;}
.y38{bottom:370.910667pt;}
.yf5{bottom:370.926667pt;}
.ye9{bottom:370.933333pt;}
.yc0{bottom:370.940000pt;}
.ya{bottom:377.883333pt;}
.y116{bottom:380.173333pt;}
.y15d{bottom:381.453333pt;}
.y140{bottom:386.126667pt;}
.y56{bottom:386.166667pt;}
.y37{bottom:386.237333pt;}
.ya6{bottom:386.240000pt;}
.y7f{bottom:386.253333pt;}
.ye8{bottom:386.260000pt;}
.ybf{bottom:386.266667pt;}
.y15c{bottom:394.754000pt;}
.y115{bottom:395.500000pt;}
.y55{bottom:401.493333pt;}
.y36{bottom:401.564000pt;}
.ya5{bottom:401.566667pt;}
.y7e{bottom:401.580000pt;}
.ye7{bottom:401.586667pt;}
.ybe{bottom:401.593333pt;}
.y9{bottom:404.546667pt;}
.y15b{bottom:408.092000pt;}
.y114{bottom:410.826667pt;}
.y54{bottom:416.820000pt;}
.y35{bottom:416.890667pt;}
.ya4{bottom:416.893333pt;}
.y7d{bottom:416.906667pt;}
.ye6{bottom:416.913333pt;}
.ybd{bottom:416.920000pt;}
.y15a{bottom:421.430000pt;}
.y113{bottom:426.153333pt;}
.y53{bottom:432.146667pt;}
.y34{bottom:432.217333pt;}
.ya3{bottom:432.220000pt;}
.y7c{bottom:432.233333pt;}
.ye5{bottom:432.240000pt;}
.ybc{bottom:432.246667pt;}
.y159{bottom:434.768000pt;}
.y8{bottom:436.519333pt;}
.y112{bottom:441.480000pt;}
.y52{bottom:447.473333pt;}
.y33{bottom:447.544000pt;}
.ya2{bottom:447.546667pt;}
.y7b{bottom:447.560000pt;}
.ye4{bottom:447.566667pt;}
.ybb{bottom:447.573333pt;}
.y158{bottom:448.106000pt;}
.y7{bottom:455.190000pt;}
.y111{bottom:456.806667pt;}
.y157{bottom:461.444000pt;}
.y51{bottom:462.800000pt;}
.y32{bottom:462.870667pt;}
.ya1{bottom:462.873333pt;}
.y7a{bottom:462.886667pt;}
.ye3{bottom:462.893333pt;}
.yba{bottom:462.900000pt;}
.y6{bottom:468.528000pt;}
.y110{bottom:472.133333pt;}
.y156{bottom:474.782000pt;}
.y50{bottom:478.126667pt;}
.ya0{bottom:478.200000pt;}
.y79{bottom:478.213333pt;}
.ye2{bottom:478.220000pt;}
.yb9{bottom:478.226667pt;}
.y5{bottom:481.866000pt;}
.y31{bottom:485.868000pt;}
.y10f{bottom:487.460000pt;}
.y155{bottom:488.120000pt;}
.y9f{bottom:493.526667pt;}
.y78{bottom:493.540000pt;}
.ye1{bottom:493.546667pt;}
.y4f{bottom:493.553333pt;}
.y4{bottom:495.204000pt;}
.y10e{bottom:502.786667pt;}
.y3{bottom:508.542000pt;}
.y9e{bottom:508.853333pt;}
.y77{bottom:508.866667pt;}
.ye0{bottom:508.873333pt;}
.y4e{bottom:508.880000pt;}
.y2{bottom:521.880000pt;}
.y9d{bottom:524.180000pt;}
.y76{bottom:524.193333pt;}
.ydf{bottom:524.200000pt;}
.y30{bottom:524.206667pt;}
.y10d{bottom:533.453333pt;}
.y9c{bottom:539.506667pt;}
.y75{bottom:539.520000pt;}
.yde{bottom:539.526667pt;}
.y2f{bottom:539.533333pt;}
.y10c{bottom:547.453333pt;}
.y1{bottom:548.546667pt;}
.y9b{bottom:554.833333pt;}
.y74{bottom:554.846667pt;}
.ydd{bottom:554.853333pt;}
.y2e{bottom:554.860000pt;}
.y10b{bottom:561.453333pt;}
.y9a{bottom:570.160000pt;}
.y73{bottom:570.173333pt;}
.ydc{bottom:570.180000pt;}
.y2d{bottom:570.186667pt;}
.y10a{bottom:575.453333pt;}
.y99{bottom:585.486667pt;}
.y72{bottom:585.500000pt;}
.ydb{bottom:585.506667pt;}
.y2c{bottom:585.513333pt;}
.y109{bottom:589.453333pt;}
.y98{bottom:600.813333pt;}
.y71{bottom:600.826667pt;}
.yda{bottom:600.833333pt;}
.y2b{bottom:600.840000pt;}
.y108{bottom:603.453333pt;}
.y21{bottom:604.744000pt;}
.y97{bottom:616.140000pt;}
.y70{bottom:616.153333pt;}
.yd9{bottom:616.160000pt;}
.y2a{bottom:616.166667pt;}
.y20{bottom:617.416000pt;}
.y107{bottom:617.453333pt;}
.y1f{bottom:630.088000pt;}
.y96{bottom:631.466667pt;}
.y6f{bottom:631.480000pt;}
.yd8{bottom:631.486667pt;}
.y29{bottom:631.493333pt;}
.y1e{bottom:642.760000pt;}
.y95{bottom:646.793333pt;}
.y6e{bottom:646.806667pt;}
.yd7{bottom:646.813333pt;}
.y28{bottom:646.820000pt;}
.y1d{bottom:658.760000pt;}
.y6d{bottom:662.133333pt;}
.yd6{bottom:662.140000pt;}
.y27{bottom:662.146667pt;}
.y6c{bottom:677.460000pt;}
.yd5{bottom:677.466667pt;}
.y26{bottom:677.473333pt;}
.yd4{bottom:692.793333pt;}
.y25{bottom:692.800000pt;}
.y1c{bottom:698.760000pt;}
.y24{bottom:708.126667pt;}
.y1b{bottom:720.093333pt;}
.y23{bottom:723.453333pt;}
.y1a{bottom:765.426667pt;}
.y22{bottom:821.333333pt;}
.h5{height:36.949333pt;}
.h3{height:40.848000pt;}
.hf{height:40.869333pt;}
.h16{height:40.890667pt;}
.h18{height:40.912000pt;}
.h8{height:41.854167pt;}
.h2{height:43.117333pt;}
.h1{height:43.877333pt;}
.h11{height:45.386667pt;}
.h12{height:49.370667pt;}
.h4{height:49.925333pt;}
.h9{height:50.805333pt;}
.h19{height:53.427733pt;}
.h13{height:53.534400pt;}
.h15{height:53.614400pt;}
.h17{height:53.641067pt;}
.hd{height:53.774400pt;}
.hb{height:53.907733pt;}
.he{height:53.961067pt;}
.h10{height:54.201067pt;}
.h1a{height:54.227733pt;}
.hc{height:54.254400pt;}
.h14{height:54.281067pt;}
.ha{height:54.307733pt;}
.h7{height:54.464000pt;}
.h6{height:72.618667pt;}
.h0{height:793.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x5{left:4.000000pt;}
.x1{left:66.400000pt;}
.x6{left:67.480000pt;}
.x9{left:86.398667pt;}
.x8{left:87.485333pt;}
.xa{left:106.400000pt;}
.xc{left:107.480000pt;}
.x2{left:210.400000pt;}
.xd{left:275.658667pt;}
.xb{left:277.145333pt;}
.x7{left:280.894667pt;}
.x4{left:393.333333pt;}
.x3{left:433.792000pt;}
}




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