
    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_0dd6723c780bdf82f42fd355.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_393d0cf17da2b57a830baea1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_327e664b71cbf8aedc2e4361.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_d428a33cc91e17ed155518df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_c5c535d0ddce39f8949c404b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_a8406f87830a14afa4e469ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_e55504c2f751a0e3da710472.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765000;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_8a0005d6d43124018a17df41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_c99a1d6113d247409baa49bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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_a8f8a3e13e224da15d967847.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_80d7436075bee85a3aaa9414.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.799000;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_b47b8ad44cc877d84c9e29ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_4461b468f9900511cc21e36e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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_a8f8a3e13e224da15d967847.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_f4dc4bf43215c81739d258fc.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-17.982000px;}
.v2{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v5{vertical-align:15.981600px;}
.v1{vertical-align:17.982000px;}
.ls10{letter-spacing:-1.344000px;}
.lsd{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.450000px;}
.ls5{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.192000px;}
.ls16{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.132000px;}
.ls12{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.lsb{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.624000px;}
.lsf{letter-spacing:0.912000px;}
.ls13{letter-spacing:1.104000px;}
.ls17{letter-spacing:1.920000px;}
.lse{letter-spacing:2.640000px;}
.ls2{letter-spacing:15.312000px;}
.ls7{letter-spacing:275.456400px;}
.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;}
}
.ws82{word-spacing:-18.546000px;}
.ws84{word-spacing:-15.984000px;}
.wsb2{word-spacing:-15.264000px;}
.ws0{word-spacing:-15.012000px;}
.ws85{word-spacing:-13.968000px;}
.wsb1{word-spacing:-13.776000px;}
.ws83{word-spacing:-13.488000px;}
.ws80{word-spacing:-13.344000px;}
.wsb0{word-spacing:-13.248000px;}
.wsb3{word-spacing:-13.152000px;}
.ws2{word-spacing:-10.508400px;}
.ws81{word-spacing:-9.340800px;}
.wsc2{word-spacing:-5.040000px;}
.wsbc{word-spacing:-4.848000px;}
.ws4a{word-spacing:-3.834000px;}
.ws95{word-spacing:-3.780000px;}
.ws7a{word-spacing:-3.618000px;}
.wsbd{word-spacing:-3.504000px;}
.wsad{word-spacing:-3.456000px;}
.wsbf{word-spacing:-3.168000px;}
.wsc1{word-spacing:-3.024000px;}
.ws1f{word-spacing:-2.862000px;}
.ws23{word-spacing:-2.754000px;}
.ws22{word-spacing:-2.700000px;}
.ws55{word-spacing:-2.646000px;}
.wsac{word-spacing:-2.592000px;}
.ws4b{word-spacing:-2.484000px;}
.ws3f{word-spacing:-2.430000px;}
.wsc7{word-spacing:-2.256000px;}
.ws4f{word-spacing:-2.160000px;}
.ws9b{word-spacing:-1.920000px;}
.ws51{word-spacing:-1.836000px;}
.wsa9{word-spacing:-1.776000px;}
.ws9c{word-spacing:-1.728000px;}
.ws69{word-spacing:-1.674000px;}
.wsc5{word-spacing:-1.632000px;}
.ws66{word-spacing:-1.620000px;}
.wscb{word-spacing:-1.512000px;}
.ws6c{word-spacing:-1.458000px;}
.ws3b{word-spacing:-1.404000px;}
.ws3a{word-spacing:-1.242000px;}
.ws7{word-spacing:-1.134000px;}
.wsc0{word-spacing:-1.104000px;}
.ws48{word-spacing:-1.080000px;}
.ws6f{word-spacing:-1.026000px;}
.ws5c{word-spacing:-0.972000px;}
.ws9f{word-spacing:-0.960000px;}
.ws8c{word-spacing:-0.918000px;}
.wsb6{word-spacing:-0.912000px;}
.wsd{word-spacing:-0.864000px;}
.ws9e{word-spacing:-0.720000px;}
.ws77{word-spacing:-0.648000px;}
.wsa0{word-spacing:-0.624000px;}
.ws45{word-spacing:-0.594000px;}
.ws32{word-spacing:-0.480000px;}
.ws89{word-spacing:-0.378000px;}
.wsba{word-spacing:-0.336000px;}
.wsb{word-spacing:-0.324000px;}
.ws35{word-spacing:-0.270000px;}
.ws41{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:0.054000px;}
.ws60{word-spacing:0.096000px;}
.ws8f{word-spacing:0.108000px;}
.ws20{word-spacing:0.162000px;}
.wsa7{word-spacing:0.192000px;}
.ws11{word-spacing:0.270000px;}
.wsc9{word-spacing:0.336000px;}
.ws7e{word-spacing:0.378000px;}
.ws98{word-spacing:0.450000px;}
.ws9a{word-spacing:0.480000px;}
.ws2b{word-spacing:0.486000px;}
.wsa2{word-spacing:0.720000px;}
.ws90{word-spacing:0.810000px;}
.wsa3{word-spacing:0.864000px;}
.ws8{word-spacing:0.918000px;}
.ws6{word-spacing:1.080000px;}
.wsae{word-spacing:1.104000px;}
.ws57{word-spacing:1.134000px;}
.wsa8{word-spacing:1.152000px;}
.ws3c{word-spacing:1.188000px;}
.wsc3{word-spacing:1.392000px;}
.ws6e{word-spacing:1.404000px;}
.ws25{word-spacing:1.458000px;}
.ws75{word-spacing:1.512000px;}
.ws7b{word-spacing:1.566000px;}
.ws38{word-spacing:1.620000px;}
.wse{word-spacing:1.728000px;}
.wsa4{word-spacing:1.776000px;}
.ws63{word-spacing:1.782000px;}
.ws36{word-spacing:1.836000px;}
.wsb4{word-spacing:1.920000px;}
.ws15{word-spacing:1.944000px;}
.wsa1{word-spacing:2.112000px;}
.ws3e{word-spacing:2.160000px;}
.ws34{word-spacing:2.208000px;}
.ws8e{word-spacing:2.322000px;}
.wsaf{word-spacing:2.400000px;}
.ws5e{word-spacing:2.448000px;}
.ws1c{word-spacing:2.484000px;}
.ws5b{word-spacing:2.538000px;}
.wsbb{word-spacing:2.640000px;}
.ws7c{word-spacing:2.700000px;}
.wsc8{word-spacing:2.784000px;}
.ws49{word-spacing:2.916000px;}
.ws68{word-spacing:3.024000px;}
.ws50{word-spacing:3.078000px;}
.ws40{word-spacing:3.240000px;}
.ws5d{word-spacing:3.348000px;}
.wsaa{word-spacing:3.408000px;}
.ws67{word-spacing:3.456000px;}
.ws47{word-spacing:3.672000px;}
.ws14{word-spacing:3.780000px;}
.wsa6{word-spacing:3.792000px;}
.ws59{word-spacing:3.942000px;}
.wsc6{word-spacing:3.984000px;}
.ws2d{word-spacing:3.996000px;}
.ws96{word-spacing:4.050000px;}
.wsc4{word-spacing:4.080000px;}
.ws43{word-spacing:4.158000px;}
.ws93{word-spacing:4.212000px;}
.ws3d{word-spacing:4.374000px;}
.wsb5{word-spacing:4.512000px;}
.wsc{word-spacing:4.536000px;}
.wsbe{word-spacing:4.560000px;}
.ws4c{word-spacing:4.590000px;}
.ws42{word-spacing:4.644000px;}
.ws1e{word-spacing:4.698000px;}
.ws71{word-spacing:4.752000px;}
.wsb7{word-spacing:4.848000px;}
.ws5{word-spacing:4.914000px;}
.wsa{word-spacing:4.968000px;}
.ws39{word-spacing:5.022000px;}
.ws7d{word-spacing:5.076000px;}
.ws87{word-spacing:5.130000px;}
.ws78{word-spacing:5.184000px;}
.ws33{word-spacing:5.232000px;}
.ws76{word-spacing:5.238000px;}
.ws17{word-spacing:5.292000px;}
.ws91{word-spacing:5.346000px;}
.ws88{word-spacing:5.454000px;}
.ws6a{word-spacing:5.562000px;}
.ws74{word-spacing:5.616000px;}
.ws16{word-spacing:5.670000px;}
.ws99{word-spacing:5.712000px;}
.ws2e{word-spacing:5.778000px;}
.ws2a{word-spacing:5.832000px;}
.wsb9{word-spacing:5.904000px;}
.ws53{word-spacing:6.048000px;}
.ws12{word-spacing:6.156000px;}
.ws46{word-spacing:6.264000px;}
.ws4e{word-spacing:6.318000px;}
.ws21{word-spacing:6.372000px;}
.ws19{word-spacing:6.426000px;}
.wsa5{word-spacing:6.432000px;}
.ws6d{word-spacing:6.480000px;}
.wsf{word-spacing:6.696000px;}
.ws97{word-spacing:6.804000px;}
.ws24{word-spacing:6.912000px;}
.ws73{word-spacing:7.020000px;}
.ws1b{word-spacing:7.074000px;}
.wsca{word-spacing:7.128000px;}
.ws1a{word-spacing:7.722000px;}
.ws70{word-spacing:7.776000px;}
.ws64{word-spacing:8.046000px;}
.ws54{word-spacing:8.478000px;}
.ws44{word-spacing:8.532000px;}
.ws10{word-spacing:8.586000px;}
.ws9{word-spacing:8.640000px;}
.ws28{word-spacing:8.748000px;}
.ws5f{word-spacing:8.880000px;}
.ws27{word-spacing:8.910000px;}
.ws52{word-spacing:9.072000px;}
.ws26{word-spacing:9.288000px;}
.ws7f{word-spacing:9.450000px;}
.ws13{word-spacing:9.774000px;}
.ws56{word-spacing:9.828000px;}
.ws37{word-spacing:9.936000px;}
.ws86{word-spacing:10.152000px;}
.ws4d{word-spacing:10.422000px;}
.ws58{word-spacing:10.584000px;}
.ws65{word-spacing:10.800000px;}
.ws2f{word-spacing:11.988000px;}
.ws6b{word-spacing:12.042000px;}
.ws18{word-spacing:12.096000px;}
.ws8d{word-spacing:12.582000px;}
.ws94{word-spacing:12.690000px;}
.ws8b{word-spacing:13.608000px;}
.wsb8{word-spacing:14.160000px;}
.ws79{word-spacing:14.256000px;}
.ws92{word-spacing:14.580000px;}
.ws31{word-spacing:14.880000px;}
.ws8a{word-spacing:15.066000px;}
.ws9d{word-spacing:15.312000px;}
.wsab{word-spacing:16.080000px;}
.ws61{word-spacing:16.362000px;}
.ws62{word-spacing:17.172000px;}
.ws5a{word-spacing:20.034000px;}
.ws72{word-spacing:22.086000px;}
.ws29{word-spacing:25.758000px;}
.ws3{word-spacing:105.456000px;}
.ws30{word-spacing:200.988000px;}
.ws1{word-spacing:1242.054000px;}
._5{margin-left:-28.684800px;}
._7{margin-left:-19.161000px;}
._2{margin-left:-5.994000px;}
._3{margin-left:-3.985200px;}
._0{margin-left:-2.845800px;}
._4{margin-left:-1.009800px;}
._6{width:1.717200px;}
._b{width:3.450600px;}
._1{width:4.698000px;}
._c{width:6.717600px;}
._e{width:8.326800px;}
._a{width:9.936000px;}
._23{width:11.042400px;}
._1d{width:14.416200px;}
._8{width:15.456000px;}
._21{width:25.008000px;}
._24{width:29.434800px;}
._25{width:31.731000px;}
._22{width:32.931000px;}
._14{width:50.304000px;}
._1b{width:51.457800px;}
._1e{width:52.512000px;}
._20{width:53.520000px;}
._1c{width:54.624000px;}
._18{width:56.064000px;}
._15{width:58.704000px;}
._1f{width:61.201200px;}
._16{width:77.908200px;}
._1a{width:91.728000px;}
._f{width:93.792000px;}
._11{width:107.184000px;}
._10{width:135.888000px;}
._19{width:167.186400px;}
._13{width:252.592200px;}
._17{width:315.273600px;}
._12{width:610.032000px;}
._d{width:943.429800px;}
._9{width:1361.538600px;}
.fc9{color:rgb(16,15,13);}
.fc8{color:rgb(35,73,74);}
.fc7{color:rgb(109,167,162);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:17.301750px;}
.y44{bottom:46.967550px;}
.y45{bottom:47.167950px;}
.y91{bottom:47.171700px;}
.y90{bottom:47.916000px;}
.y37{bottom:59.074650px;}
.y3b{bottom:59.194650px;}
.y36{bottom:77.074650px;}
.y3a{bottom:77.194650px;}
.y96{bottom:85.816350px;}
.y111{bottom:86.829900px;}
.y11f{bottom:87.153900px;}
.y8f{bottom:88.065450px;}
.yd0{bottom:92.295750px;}
.y73{bottom:92.300250px;}
.y35{bottom:95.074650px;}
.y39{bottom:95.194650px;}
.y95{bottom:102.316350px;}
.y110{bottom:103.329900px;}
.y11e{bottom:103.653900px;}
.y8e{bottom:104.565450px;}
.ycf{bottom:111.047250px;}
.y72{bottom:111.051750px;}
.y34{bottom:113.074650px;}
.y38{bottom:113.194650px;}
.y10f{bottom:119.829900px;}
.y11d{bottom:120.153900px;}
.y8d{bottom:121.065450px;}
.yce{bottom:129.798750px;}
.y10e{bottom:136.329900px;}
.y11c{bottom:136.653900px;}
.ycd{bottom:148.550250px;}
.y71{bottom:148.551750px;}
.y10d{bottom:152.829900px;}
.y11b{bottom:153.153900px;}
.y2a{bottom:159.373050px;}
.ycc{bottom:167.289750px;}
.y10c{bottom:169.329900px;}
.y11a{bottom:169.653900px;}
.y10b{bottom:185.829900px;}
.ycb{bottom:186.041250px;}
.y119{bottom:186.153900px;}
.y10a{bottom:202.329900px;}
.y118{bottom:202.653900px;}
.yca{bottom:204.792750px;}
.y70{bottom:204.795750px;}
.y109{bottom:218.829900px;}
.y117{bottom:219.153900px;}
.y2e{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.yc9{bottom:223.544250px;}
.y6f{bottom:223.547250px;}
.y108{bottom:235.329900px;}
.y116{bottom:235.653900px;}
.y2d{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y6e{bottom:242.298750px;}
.y107{bottom:251.829900px;}
.y115{bottom:252.153900px;}
.y2c{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.yc8{bottom:261.047250px;}
.y6d{bottom:261.050250px;}
.y106{bottom:268.329900px;}
.y114{bottom:268.653900px;}
.y2b{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.yc7{bottom:279.798750px;}
.y6c{bottom:279.801750px;}
.y113{bottom:285.153900px;}
.y33{bottom:293.073450px;}
.yc6{bottom:298.550250px;}
.y105{bottom:301.329900px;}
.y112{bottom:301.653900px;}
.y32{bottom:309.273450px;}
.y6b{bottom:317.301750px;}
.y31{bottom:325.473450px;}
.yc5{bottom:354.794250px;}
.y43{bottom:354.801750px;}
.yf3{bottom:362.382900px;}
.yc4{bottom:373.545750px;}
.y6a{bottom:373.547250px;}
.yf2{bottom:378.883200px;}
.y42{bottom:381.723900px;}
.y94{bottom:383.560350px;}
.yc3{bottom:392.297250px;}
.y69{bottom:392.298750px;}
.yf1{bottom:399.619200px;}
.y41{bottom:401.217900px;}
.y8c{bottom:402.315450px;}
.yc2{bottom:411.048750px;}
.y68{bottom:411.050250px;}
.y40{bottom:411.723900px;}
.yf0{bottom:416.119650px;}
.ya4{bottom:429.798750px;}
.yc1{bottom:429.800250px;}
.y67{bottom:429.801750px;}
.y3f{bottom:431.217900px;}
.yef{bottom:436.855650px;}
.y3e{bottom:441.723900px;}
.y66{bottom:448.542750px;}
.y8b{bottom:448.550250px;}
.yc0{bottom:448.551750px;}
.yee{bottom:453.355650px;}
.y3d{bottom:461.217900px;}
.y65{bottom:467.294250px;}
.ya3{bottom:467.298750px;}
.yed{bottom:469.855950px;}
.ybf{bottom:486.044250px;}
.y64{bottom:486.045750px;}
.ya2{bottom:486.050250px;}
.yec{bottom:490.591950px;}
.y20{bottom:498.763950px;}
.ybe{bottom:504.795750px;}
.y63{bottom:504.797250px;}
.ya1{bottom:504.801750px;}
.yeb{bottom:507.091950px;}
.y1f{bottom:513.762450px;}
.ybd{bottom:523.547250px;}
.y62{bottom:523.548750px;}
.yea{bottom:523.592550px;}
.y1e{bottom:528.760950px;}
.ybc{bottom:542.298750px;}
.y61{bottom:542.300250px;}
.ya0{bottom:542.301750px;}
.y1d{bottom:543.759450px;}
.ye9{bottom:544.328550px;}
.y1c{bottom:558.757950px;}
.y60{bottom:561.048750px;}
.ybb{bottom:561.050250px;}
.y8a{bottom:561.051750px;}
.ye8{bottom:565.064550px;}
.y1b{bottom:573.756450px;}
.y5f{bottom:579.800250px;}
.y1a{bottom:588.754950px;}
.y9f{bottom:598.541250px;}
.y5e{bottom:598.547250px;}
.y89{bottom:598.551750px;}
.y19{bottom:603.753450px;}
.ye7{bottom:617.265750px;}
.y9e{bottom:617.292750px;}
.y5d{bottom:617.298750px;}
.y104{bottom:617.543850px;}
.y18{bottom:618.751950px;}
.y17{bottom:633.750450px;}
.y103{bottom:634.043850px;}
.ye6{bottom:636.017250px;}
.yba{bottom:636.042750px;}
.y9d{bottom:636.044250px;}
.y5c{bottom:636.050250px;}
.y16{bottom:648.748950px;}
.y139{bottom:649.811400px;}
.y102{bottom:650.543850px;}
.ye5{bottom:654.768750px;}
.y5b{bottom:654.777750px;}
.y88{bottom:654.792750px;}
.yb9{bottom:654.794250px;}
.y9c{bottom:654.795750px;}
.y138{bottom:660.317400px;}
.y15{bottom:663.747450px;}
.y101{bottom:667.043850px;}
.ye4{bottom:673.520250px;}
.y5a{bottom:673.529250px;}
.y87{bottom:673.544250px;}
.yb8{bottom:673.545750px;}
.y9b{bottom:673.547250px;}
.y14{bottom:678.745950px;}
.y137{bottom:679.811400px;}
.y136{bottom:690.317400px;}
.ye3{bottom:692.271750px;}
.y59{bottom:692.280750px;}
.y86{bottom:692.295750px;}
.yb7{bottom:692.297250px;}
.y9a{bottom:692.298750px;}
.y13{bottom:693.744450px;}
.y12{bottom:708.742950px;}
.y135{bottom:709.811400px;}
.ye2{bottom:711.023250px;}
.y58{bottom:711.032250px;}
.y85{bottom:711.047250px;}
.yb6{bottom:711.048750px;}
.y99{bottom:711.050250px;}
.y134{bottom:720.321450px;}
.y11{bottom:723.741450px;}
.ye1{bottom:729.774750px;}
.y100{bottom:729.776250px;}
.y57{bottom:729.783750px;}
.y84{bottom:729.798750px;}
.yb5{bottom:729.800250px;}
.y98{bottom:729.801750px;}
.y10{bottom:738.739950px;}
.ye0{bottom:748.526250px;}
.yff{bottom:748.527750px;}
.y56{bottom:748.535250px;}
.y83{bottom:748.550250px;}
.yb4{bottom:748.551750px;}
.yf{bottom:753.738450px;}
.ydf{bottom:767.277750px;}
.yfe{bottom:767.279250px;}
.y55{bottom:767.286750px;}
.y82{bottom:767.301750px;}
.ye{bottom:768.736950px;}
.y133{bottom:782.565450px;}
.yd{bottom:783.735450px;}
.yde{bottom:786.029250px;}
.yfd{bottom:786.030750px;}
.yb3{bottom:786.036750px;}
.y54{bottom:786.038250px;}
.y93{bottom:798.316350px;}
.yc{bottom:798.733950px;}
.y132{bottom:799.065450px;}
.ydd{bottom:804.780750px;}
.yfc{bottom:804.782250px;}
.yb2{bottom:804.788250px;}
.y53{bottom:804.789750px;}
.y81{bottom:804.801750px;}
.yb{bottom:813.732450px;}
.y92{bottom:814.816350px;}
.y131{bottom:815.565450px;}
.ydc{bottom:823.532250px;}
.yfb{bottom:823.533750px;}
.yb1{bottom:823.539750px;}
.y52{bottom:823.541250px;}
.ya{bottom:828.730950px;}
.y130{bottom:832.065450px;}
.ydb{bottom:842.283750px;}
.yfa{bottom:842.285250px;}
.yb0{bottom:842.291250px;}
.y51{bottom:842.292750px;}
.y9{bottom:843.729450px;}
.y12f{bottom:848.565450px;}
.y8{bottom:858.727950px;}
.yf9{bottom:861.036750px;}
.y80{bottom:861.038250px;}
.yaf{bottom:861.042750px;}
.y50{bottom:861.044250px;}
.y12e{bottom:865.065450px;}
.y7{bottom:873.726450px;}
.yda{bottom:879.786750px;}
.y7f{bottom:879.789750px;}
.yae{bottom:879.794250px;}
.y4f{bottom:879.795750px;}
.y12d{bottom:881.565450px;}
.y6{bottom:888.724950px;}
.y12c{bottom:898.065450px;}
.yd9{bottom:898.538250px;}
.yf8{bottom:898.539750px;}
.y7e{bottom:898.541250px;}
.yad{bottom:898.545750px;}
.y5{bottom:903.723450px;}
.y12b{bottom:914.565450px;}
.yd8{bottom:917.289750px;}
.yf7{bottom:917.291250px;}
.y7d{bottom:917.292750px;}
.yac{bottom:917.297250px;}
.y4e{bottom:917.298750px;}
.y21{bottom:923.289300px;}
.y12a{bottom:931.065450px;}
.yd7{bottom:936.041250px;}
.yf6{bottom:936.042750px;}
.y7c{bottom:936.044250px;}
.yab{bottom:936.048750px;}
.y4d{bottom:936.050250px;}
.y129{bottom:947.565450px;}
.y29{bottom:949.476300px;}
.yd6{bottom:954.792750px;}
.yf5{bottom:954.794250px;}
.y7b{bottom:954.795750px;}
.y4c{bottom:954.798750px;}
.yaa{bottom:954.800250px;}
.y128{bottom:964.065450px;}
.y28{bottom:965.976300px;}
.ya9{bottom:973.542750px;}
.yd5{bottom:973.544250px;}
.yf4{bottom:973.545750px;}
.y7a{bottom:973.547250px;}
.y4b{bottom:973.550250px;}
.y127{bottom:980.565450px;}
.y27{bottom:982.473300px;}
.ya8{bottom:992.294250px;}
.yd4{bottom:992.295750px;}
.y4a{bottom:992.297250px;}
.y79{bottom:992.298750px;}
.y126{bottom:997.065450px;}
.yd3{bottom:1011.047250px;}
.y49{bottom:1011.048750px;}
.y78{bottom:1011.050250px;}
.y125{bottom:1013.565450px;}
.y30{bottom:1021.700700px;}
.y77{bottom:1029.794250px;}
.ya7{bottom:1029.797250px;}
.yd2{bottom:1029.798750px;}
.y48{bottom:1029.800250px;}
.y124{bottom:1030.065450px;}
.y2f{bottom:1043.300700px;}
.y123{bottom:1046.565450px;}
.y76{bottom:1048.545750px;}
.ya6{bottom:1048.548750px;}
.yd1{bottom:1048.550250px;}
.y47{bottom:1048.551750px;}
.y122{bottom:1063.065450px;}
.y75{bottom:1067.297250px;}
.ya5{bottom:1067.300250px;}
.y23{bottom:1072.903050px;}
.y121{bottom:1079.565450px;}
.y26{bottom:1082.937000px;}
.y74{bottom:1086.048750px;}
.y46{bottom:1086.051750px;}
.y120{bottom:1096.065450px;}
.y97{bottom:1096.072350px;}
.y25{bottom:1097.937000px;}
.y22{bottom:1105.303050px;}
.y24{bottom:1112.937000px;}
.hf{height:27.537891px;}
.he{height:34.320000px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.h16{height:39.313477px;}
.h4{height:39.339844px;}
.h10{height:39.385444px;}
.h1d{height:40.459725px;}
.h1f{height:40.460325px;}
.h1e{height:40.460925px;}
.h19{height:42.317044px;}
.h7{height:44.520000px;}
.h9{height:45.507891px;}
.hb{height:45.519291px;}
.h8{height:45.519891px;}
.h1b{height:45.525891px;}
.h13{height:45.531891px;}
.h12{height:45.537891px;}
.h18{height:45.549891px;}
.h15{height:45.555891px;}
.h1c{height:45.567891px;}
.h1a{height:45.579891px;}
.h14{height:45.615891px;}
.h5{height:47.244141px;}
.h17{height:51.942000px;}
.ha{height:54.504000px;}
.h11{height:56.664000px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x13{left:89.559000px;}
.x1a{left:95.853750px;}
.x18{left:103.039350px;}
.x14{left:107.559000px;}
.x1e{left:112.039350px;}
.x1c{left:116.291250px;}
.x10{left:139.339200px;}
.xd{left:213.150600px;}
.xe{left:252.510600px;}
.x5{left:270.660900px;}
.xc{left:322.290600px;}
.x7{left:352.728900px;}
.x6{left:356.676900px;}
.xf{left:363.594600px;}
.x9{left:365.376900px;}
.x8{left:408.720900px;}
.x17{left:451.325100px;}
.x11{left:455.592300px;}
.x1b{left:462.654600px;}
.x3{left:465.960450px;}
.x4{left:467.553450px;}
.x1{left:469.770150px;}
.x15{left:474.097500px;}
.x19{left:487.837950px;}
.x16{left:492.094350px;}
.x1f{left:496.843350px;}
.x1d{left:501.095250px;}
.xa{left:575.322300px;}
.xb{left:647.232300px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v5{vertical-align:14.205867pt;}
.v1{vertical-align:15.984000pt;}
.ls10{letter-spacing:-1.194667pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.400000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.170667pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls12{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.lsb{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.554667pt;}
.lsf{letter-spacing:0.810667pt;}
.ls13{letter-spacing:0.981333pt;}
.ls17{letter-spacing:1.706667pt;}
.lse{letter-spacing:2.346667pt;}
.ls2{letter-spacing:13.610667pt;}
.ls7{letter-spacing:244.850133pt;}
.ws82{word-spacing:-16.485333pt;}
.ws84{word-spacing:-14.208000pt;}
.wsb2{word-spacing:-13.568000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws85{word-spacing:-12.416000pt;}
.wsb1{word-spacing:-12.245333pt;}
.ws83{word-spacing:-11.989333pt;}
.ws80{word-spacing:-11.861333pt;}
.wsb0{word-spacing:-11.776000pt;}
.wsb3{word-spacing:-11.690667pt;}
.ws2{word-spacing:-9.340800pt;}
.ws81{word-spacing:-8.302933pt;}
.wsc2{word-spacing:-4.480000pt;}
.wsbc{word-spacing:-4.309333pt;}
.ws4a{word-spacing:-3.408000pt;}
.ws95{word-spacing:-3.360000pt;}
.ws7a{word-spacing:-3.216000pt;}
.wsbd{word-spacing:-3.114667pt;}
.wsad{word-spacing:-3.072000pt;}
.wsbf{word-spacing:-2.816000pt;}
.wsc1{word-spacing:-2.688000pt;}
.ws1f{word-spacing:-2.544000pt;}
.ws23{word-spacing:-2.448000pt;}
.ws22{word-spacing:-2.400000pt;}
.ws55{word-spacing:-2.352000pt;}
.wsac{word-spacing:-2.304000pt;}
.ws4b{word-spacing:-2.208000pt;}
.ws3f{word-spacing:-2.160000pt;}
.wsc7{word-spacing:-2.005333pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws9b{word-spacing:-1.706667pt;}
.ws51{word-spacing:-1.632000pt;}
.wsa9{word-spacing:-1.578667pt;}
.ws9c{word-spacing:-1.536000pt;}
.ws69{word-spacing:-1.488000pt;}
.wsc5{word-spacing:-1.450667pt;}
.ws66{word-spacing:-1.440000pt;}
.wscb{word-spacing:-1.344000pt;}
.ws6c{word-spacing:-1.296000pt;}
.ws3b{word-spacing:-1.248000pt;}
.ws3a{word-spacing:-1.104000pt;}
.ws7{word-spacing:-1.008000pt;}
.wsc0{word-spacing:-0.981333pt;}
.ws48{word-spacing:-0.960000pt;}
.ws6f{word-spacing:-0.912000pt;}
.ws5c{word-spacing:-0.864000pt;}
.ws9f{word-spacing:-0.853333pt;}
.ws8c{word-spacing:-0.816000pt;}
.wsb6{word-spacing:-0.810667pt;}
.wsd{word-spacing:-0.768000pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws77{word-spacing:-0.576000pt;}
.wsa0{word-spacing:-0.554667pt;}
.ws45{word-spacing:-0.528000pt;}
.ws32{word-spacing:-0.426667pt;}
.ws89{word-spacing:-0.336000pt;}
.wsba{word-spacing:-0.298667pt;}
.wsb{word-spacing:-0.288000pt;}
.ws35{word-spacing:-0.240000pt;}
.ws41{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.048000pt;}
.ws60{word-spacing:0.085333pt;}
.ws8f{word-spacing:0.096000pt;}
.ws20{word-spacing:0.144000pt;}
.wsa7{word-spacing:0.170667pt;}
.ws11{word-spacing:0.240000pt;}
.wsc9{word-spacing:0.298667pt;}
.ws7e{word-spacing:0.336000pt;}
.ws98{word-spacing:0.400000pt;}
.ws9a{word-spacing:0.426667pt;}
.ws2b{word-spacing:0.432000pt;}
.wsa2{word-spacing:0.640000pt;}
.ws90{word-spacing:0.720000pt;}
.wsa3{word-spacing:0.768000pt;}
.ws8{word-spacing:0.816000pt;}
.ws6{word-spacing:0.960000pt;}
.wsae{word-spacing:0.981333pt;}
.ws57{word-spacing:1.008000pt;}
.wsa8{word-spacing:1.024000pt;}
.ws3c{word-spacing:1.056000pt;}
.wsc3{word-spacing:1.237333pt;}
.ws6e{word-spacing:1.248000pt;}
.ws25{word-spacing:1.296000pt;}
.ws75{word-spacing:1.344000pt;}
.ws7b{word-spacing:1.392000pt;}
.ws38{word-spacing:1.440000pt;}
.wse{word-spacing:1.536000pt;}
.wsa4{word-spacing:1.578667pt;}
.ws63{word-spacing:1.584000pt;}
.ws36{word-spacing:1.632000pt;}
.wsb4{word-spacing:1.706667pt;}
.ws15{word-spacing:1.728000pt;}
.wsa1{word-spacing:1.877333pt;}
.ws3e{word-spacing:1.920000pt;}
.ws34{word-spacing:1.962667pt;}
.ws8e{word-spacing:2.064000pt;}
.wsaf{word-spacing:2.133333pt;}
.ws5e{word-spacing:2.176000pt;}
.ws1c{word-spacing:2.208000pt;}
.ws5b{word-spacing:2.256000pt;}
.wsbb{word-spacing:2.346667pt;}
.ws7c{word-spacing:2.400000pt;}
.wsc8{word-spacing:2.474667pt;}
.ws49{word-spacing:2.592000pt;}
.ws68{word-spacing:2.688000pt;}
.ws50{word-spacing:2.736000pt;}
.ws40{word-spacing:2.880000pt;}
.ws5d{word-spacing:2.976000pt;}
.wsaa{word-spacing:3.029333pt;}
.ws67{word-spacing:3.072000pt;}
.ws47{word-spacing:3.264000pt;}
.ws14{word-spacing:3.360000pt;}
.wsa6{word-spacing:3.370667pt;}
.ws59{word-spacing:3.504000pt;}
.wsc6{word-spacing:3.541333pt;}
.ws2d{word-spacing:3.552000pt;}
.ws96{word-spacing:3.600000pt;}
.wsc4{word-spacing:3.626667pt;}
.ws43{word-spacing:3.696000pt;}
.ws93{word-spacing:3.744000pt;}
.ws3d{word-spacing:3.888000pt;}
.wsb5{word-spacing:4.010667pt;}
.wsc{word-spacing:4.032000pt;}
.wsbe{word-spacing:4.053333pt;}
.ws4c{word-spacing:4.080000pt;}
.ws42{word-spacing:4.128000pt;}
.ws1e{word-spacing:4.176000pt;}
.ws71{word-spacing:4.224000pt;}
.wsb7{word-spacing:4.309333pt;}
.ws5{word-spacing:4.368000pt;}
.wsa{word-spacing:4.416000pt;}
.ws39{word-spacing:4.464000pt;}
.ws7d{word-spacing:4.512000pt;}
.ws87{word-spacing:4.560000pt;}
.ws78{word-spacing:4.608000pt;}
.ws33{word-spacing:4.650667pt;}
.ws76{word-spacing:4.656000pt;}
.ws17{word-spacing:4.704000pt;}
.ws91{word-spacing:4.752000pt;}
.ws88{word-spacing:4.848000pt;}
.ws6a{word-spacing:4.944000pt;}
.ws74{word-spacing:4.992000pt;}
.ws16{word-spacing:5.040000pt;}
.ws99{word-spacing:5.077333pt;}
.ws2e{word-spacing:5.136000pt;}
.ws2a{word-spacing:5.184000pt;}
.wsb9{word-spacing:5.248000pt;}
.ws53{word-spacing:5.376000pt;}
.ws12{word-spacing:5.472000pt;}
.ws46{word-spacing:5.568000pt;}
.ws4e{word-spacing:5.616000pt;}
.ws21{word-spacing:5.664000pt;}
.ws19{word-spacing:5.712000pt;}
.wsa5{word-spacing:5.717333pt;}
.ws6d{word-spacing:5.760000pt;}
.wsf{word-spacing:5.952000pt;}
.ws97{word-spacing:6.048000pt;}
.ws24{word-spacing:6.144000pt;}
.ws73{word-spacing:6.240000pt;}
.ws1b{word-spacing:6.288000pt;}
.wsca{word-spacing:6.336000pt;}
.ws1a{word-spacing:6.864000pt;}
.ws70{word-spacing:6.912000pt;}
.ws64{word-spacing:7.152000pt;}
.ws54{word-spacing:7.536000pt;}
.ws44{word-spacing:7.584000pt;}
.ws10{word-spacing:7.632000pt;}
.ws9{word-spacing:7.680000pt;}
.ws28{word-spacing:7.776000pt;}
.ws5f{word-spacing:7.893333pt;}
.ws27{word-spacing:7.920000pt;}
.ws52{word-spacing:8.064000pt;}
.ws26{word-spacing:8.256000pt;}
.ws7f{word-spacing:8.400000pt;}
.ws13{word-spacing:8.688000pt;}
.ws56{word-spacing:8.736000pt;}
.ws37{word-spacing:8.832000pt;}
.ws86{word-spacing:9.024000pt;}
.ws4d{word-spacing:9.264000pt;}
.ws58{word-spacing:9.408000pt;}
.ws65{word-spacing:9.600000pt;}
.ws2f{word-spacing:10.656000pt;}
.ws6b{word-spacing:10.704000pt;}
.ws18{word-spacing:10.752000pt;}
.ws8d{word-spacing:11.184000pt;}
.ws94{word-spacing:11.280000pt;}
.ws8b{word-spacing:12.096000pt;}
.wsb8{word-spacing:12.586667pt;}
.ws79{word-spacing:12.672000pt;}
.ws92{word-spacing:12.960000pt;}
.ws31{word-spacing:13.226667pt;}
.ws8a{word-spacing:13.392000pt;}
.ws9d{word-spacing:13.610667pt;}
.wsab{word-spacing:14.293333pt;}
.ws61{word-spacing:14.544000pt;}
.ws62{word-spacing:15.264000pt;}
.ws5a{word-spacing:17.808000pt;}
.ws72{word-spacing:19.632000pt;}
.ws29{word-spacing:22.896000pt;}
.ws3{word-spacing:93.738667pt;}
.ws30{word-spacing:178.656000pt;}
.ws1{word-spacing:1104.048000pt;}
._5{margin-left:-25.497600pt;}
._7{margin-left:-17.032000pt;}
._2{margin-left:-5.328000pt;}
._3{margin-left:-3.542400pt;}
._0{margin-left:-2.529600pt;}
._4{margin-left:-0.897600pt;}
._6{width:1.526400pt;}
._b{width:3.067200pt;}
._1{width:4.176000pt;}
._c{width:5.971200pt;}
._e{width:7.401600pt;}
._a{width:8.832000pt;}
._23{width:9.815467pt;}
._1d{width:12.814400pt;}
._8{width:13.738667pt;}
._21{width:22.229333pt;}
._24{width:26.164267pt;}
._25{width:28.205333pt;}
._22{width:29.272000pt;}
._14{width:44.714667pt;}
._1b{width:45.740267pt;}
._1e{width:46.677333pt;}
._20{width:47.573333pt;}
._1c{width:48.554667pt;}
._18{width:49.834667pt;}
._15{width:52.181333pt;}
._1f{width:54.401067pt;}
._16{width:69.251733pt;}
._1a{width:81.536000pt;}
._f{width:83.370667pt;}
._11{width:95.274667pt;}
._10{width:120.789333pt;}
._19{width:148.610133pt;}
._13{width:224.526400pt;}
._17{width:280.243200pt;}
._12{width:542.250667pt;}
._d{width:838.604267pt;}
._9{width:1210.256533pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:15.379333pt;}
.y44{bottom:41.748933pt;}
.y45{bottom:41.927067pt;}
.y91{bottom:41.930400pt;}
.y90{bottom:42.592000pt;}
.y37{bottom:52.510800pt;}
.y3b{bottom:52.617467pt;}
.y36{bottom:68.510800pt;}
.y3a{bottom:68.617467pt;}
.y96{bottom:76.281200pt;}
.y111{bottom:77.182133pt;}
.y11f{bottom:77.470133pt;}
.y8f{bottom:78.280400pt;}
.yd0{bottom:82.040667pt;}
.y73{bottom:82.044667pt;}
.y35{bottom:84.510800pt;}
.y39{bottom:84.617467pt;}
.y95{bottom:90.947867pt;}
.y110{bottom:91.848800pt;}
.y11e{bottom:92.136800pt;}
.y8e{bottom:92.947067pt;}
.ycf{bottom:98.708667pt;}
.y72{bottom:98.712667pt;}
.y34{bottom:100.510800pt;}
.y38{bottom:100.617467pt;}
.y10f{bottom:106.515467pt;}
.y11d{bottom:106.803467pt;}
.y8d{bottom:107.613733pt;}
.yce{bottom:115.376667pt;}
.y10e{bottom:121.182133pt;}
.y11c{bottom:121.470133pt;}
.ycd{bottom:132.044667pt;}
.y71{bottom:132.046000pt;}
.y10d{bottom:135.848800pt;}
.y11b{bottom:136.136800pt;}
.y2a{bottom:141.664933pt;}
.ycc{bottom:148.702000pt;}
.y10c{bottom:150.515467pt;}
.y11a{bottom:150.803467pt;}
.y10b{bottom:165.182133pt;}
.ycb{bottom:165.370000pt;}
.y119{bottom:165.470133pt;}
.y10a{bottom:179.848800pt;}
.y118{bottom:180.136800pt;}
.yca{bottom:182.038000pt;}
.y70{bottom:182.040667pt;}
.y109{bottom:194.515467pt;}
.y117{bottom:194.803467pt;}
.y2e{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.yc9{bottom:198.706000pt;}
.y6f{bottom:198.708667pt;}
.y108{bottom:209.182133pt;}
.y116{bottom:209.470133pt;}
.y2d{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y6e{bottom:215.376667pt;}
.y107{bottom:223.848800pt;}
.y115{bottom:224.136800pt;}
.y2c{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.yc8{bottom:232.042000pt;}
.y6d{bottom:232.044667pt;}
.y106{bottom:238.515467pt;}
.y114{bottom:238.803467pt;}
.y2b{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.yc7{bottom:248.710000pt;}
.y6c{bottom:248.712667pt;}
.y113{bottom:253.470133pt;}
.y33{bottom:260.509733pt;}
.yc6{bottom:265.378000pt;}
.y105{bottom:267.848800pt;}
.y112{bottom:268.136800pt;}
.y32{bottom:274.909733pt;}
.y6b{bottom:282.046000pt;}
.y31{bottom:289.309733pt;}
.yc5{bottom:315.372667pt;}
.y43{bottom:315.379333pt;}
.yf3{bottom:322.118133pt;}
.yc4{bottom:332.040667pt;}
.y6a{bottom:332.042000pt;}
.yf2{bottom:336.785067pt;}
.y42{bottom:339.310133pt;}
.y94{bottom:340.942533pt;}
.yc3{bottom:348.708667pt;}
.y69{bottom:348.710000pt;}
.yf1{bottom:355.217067pt;}
.y41{bottom:356.638133pt;}
.y8c{bottom:357.613733pt;}
.yc2{bottom:365.376667pt;}
.y68{bottom:365.378000pt;}
.y40{bottom:365.976800pt;}
.yf0{bottom:369.884133pt;}
.ya4{bottom:382.043333pt;}
.yc1{bottom:382.044667pt;}
.y67{bottom:382.046000pt;}
.y3f{bottom:383.304800pt;}
.yef{bottom:388.316133pt;}
.y3e{bottom:392.643467pt;}
.y66{bottom:398.704667pt;}
.y8b{bottom:398.711333pt;}
.yc0{bottom:398.712667pt;}
.yee{bottom:402.982800pt;}
.y3d{bottom:409.971467pt;}
.y65{bottom:415.372667pt;}
.ya3{bottom:415.376667pt;}
.yed{bottom:417.649733pt;}
.ybf{bottom:432.039333pt;}
.y64{bottom:432.040667pt;}
.ya2{bottom:432.044667pt;}
.yec{bottom:436.081733pt;}
.y20{bottom:443.345733pt;}
.ybe{bottom:448.707333pt;}
.y63{bottom:448.708667pt;}
.ya1{bottom:448.712667pt;}
.yeb{bottom:450.748400pt;}
.y1f{bottom:456.677733pt;}
.ybd{bottom:465.375333pt;}
.y62{bottom:465.376667pt;}
.yea{bottom:465.415600pt;}
.y1e{bottom:470.009733pt;}
.ybc{bottom:482.043333pt;}
.y61{bottom:482.044667pt;}
.ya0{bottom:482.046000pt;}
.y1d{bottom:483.341733pt;}
.ye9{bottom:483.847600pt;}
.y1c{bottom:496.673733pt;}
.y60{bottom:498.710000pt;}
.ybb{bottom:498.711333pt;}
.y8a{bottom:498.712667pt;}
.ye8{bottom:502.279600pt;}
.y1b{bottom:510.005733pt;}
.y5f{bottom:515.378000pt;}
.y1a{bottom:523.337733pt;}
.y9f{bottom:532.036667pt;}
.y5e{bottom:532.042000pt;}
.y89{bottom:532.046000pt;}
.y19{bottom:536.669733pt;}
.ye7{bottom:548.680667pt;}
.y9e{bottom:548.704667pt;}
.y5d{bottom:548.710000pt;}
.y104{bottom:548.927867pt;}
.y18{bottom:550.001733pt;}
.y17{bottom:563.333733pt;}
.y103{bottom:563.594533pt;}
.ye6{bottom:565.348667pt;}
.yba{bottom:565.371333pt;}
.y9d{bottom:565.372667pt;}
.y5c{bottom:565.378000pt;}
.y16{bottom:576.665733pt;}
.y139{bottom:577.610133pt;}
.y102{bottom:578.261200pt;}
.ye5{bottom:582.016667pt;}
.y5b{bottom:582.024667pt;}
.y88{bottom:582.038000pt;}
.yb9{bottom:582.039333pt;}
.y9c{bottom:582.040667pt;}
.y138{bottom:586.948800pt;}
.y15{bottom:589.997733pt;}
.y101{bottom:592.927867pt;}
.ye4{bottom:598.684667pt;}
.y5a{bottom:598.692667pt;}
.y87{bottom:598.706000pt;}
.yb8{bottom:598.707333pt;}
.y9b{bottom:598.708667pt;}
.y14{bottom:603.329733pt;}
.y137{bottom:604.276800pt;}
.y136{bottom:613.615467pt;}
.ye3{bottom:615.352667pt;}
.y59{bottom:615.360667pt;}
.y86{bottom:615.374000pt;}
.yb7{bottom:615.375333pt;}
.y9a{bottom:615.376667pt;}
.y13{bottom:616.661733pt;}
.y12{bottom:629.993733pt;}
.y135{bottom:630.943467pt;}
.ye2{bottom:632.020667pt;}
.y58{bottom:632.028667pt;}
.y85{bottom:632.042000pt;}
.yb6{bottom:632.043333pt;}
.y99{bottom:632.044667pt;}
.y134{bottom:640.285733pt;}
.y11{bottom:643.325733pt;}
.ye1{bottom:648.688667pt;}
.y100{bottom:648.690000pt;}
.y57{bottom:648.696667pt;}
.y84{bottom:648.710000pt;}
.yb5{bottom:648.711333pt;}
.y98{bottom:648.712667pt;}
.y10{bottom:656.657733pt;}
.ye0{bottom:665.356667pt;}
.yff{bottom:665.358000pt;}
.y56{bottom:665.364667pt;}
.y83{bottom:665.378000pt;}
.yb4{bottom:665.379333pt;}
.yf{bottom:669.989733pt;}
.ydf{bottom:682.024667pt;}
.yfe{bottom:682.026000pt;}
.y55{bottom:682.032667pt;}
.y82{bottom:682.046000pt;}
.ye{bottom:683.321733pt;}
.y133{bottom:695.613733pt;}
.yd{bottom:696.653733pt;}
.yde{bottom:698.692667pt;}
.yfd{bottom:698.694000pt;}
.yb3{bottom:698.699333pt;}
.y54{bottom:698.700667pt;}
.y93{bottom:709.614533pt;}
.yc{bottom:709.985733pt;}
.y132{bottom:710.280400pt;}
.ydd{bottom:715.360667pt;}
.yfc{bottom:715.362000pt;}
.yb2{bottom:715.367333pt;}
.y53{bottom:715.368667pt;}
.y81{bottom:715.379333pt;}
.yb{bottom:723.317733pt;}
.y92{bottom:724.281200pt;}
.y131{bottom:724.947067pt;}
.ydc{bottom:732.028667pt;}
.yfb{bottom:732.030000pt;}
.yb1{bottom:732.035333pt;}
.y52{bottom:732.036667pt;}
.ya{bottom:736.649733pt;}
.y130{bottom:739.613733pt;}
.ydb{bottom:748.696667pt;}
.yfa{bottom:748.698000pt;}
.yb0{bottom:748.703333pt;}
.y51{bottom:748.704667pt;}
.y9{bottom:749.981733pt;}
.y12f{bottom:754.280400pt;}
.y8{bottom:763.313733pt;}
.yf9{bottom:765.366000pt;}
.y80{bottom:765.367333pt;}
.yaf{bottom:765.371333pt;}
.y50{bottom:765.372667pt;}
.y12e{bottom:768.947067pt;}
.y7{bottom:776.645733pt;}
.yda{bottom:782.032667pt;}
.y7f{bottom:782.035333pt;}
.yae{bottom:782.039333pt;}
.y4f{bottom:782.040667pt;}
.y12d{bottom:783.613733pt;}
.y6{bottom:789.977733pt;}
.y12c{bottom:798.280400pt;}
.yd9{bottom:798.700667pt;}
.yf8{bottom:798.702000pt;}
.y7e{bottom:798.703333pt;}
.yad{bottom:798.707333pt;}
.y5{bottom:803.309733pt;}
.y12b{bottom:812.947067pt;}
.yd8{bottom:815.368667pt;}
.yf7{bottom:815.370000pt;}
.y7d{bottom:815.371333pt;}
.yac{bottom:815.375333pt;}
.y4e{bottom:815.376667pt;}
.y21{bottom:820.701600pt;}
.y12a{bottom:827.613733pt;}
.yd7{bottom:832.036667pt;}
.yf6{bottom:832.038000pt;}
.y7c{bottom:832.039333pt;}
.yab{bottom:832.043333pt;}
.y4d{bottom:832.044667pt;}
.y129{bottom:842.280400pt;}
.y29{bottom:843.978933pt;}
.yd6{bottom:848.704667pt;}
.yf5{bottom:848.706000pt;}
.y7b{bottom:848.707333pt;}
.y4c{bottom:848.710000pt;}
.yaa{bottom:848.711333pt;}
.y128{bottom:856.947067pt;}
.y28{bottom:858.645600pt;}
.ya9{bottom:865.371333pt;}
.yd5{bottom:865.372667pt;}
.yf4{bottom:865.374000pt;}
.y7a{bottom:865.375333pt;}
.y4b{bottom:865.378000pt;}
.y127{bottom:871.613733pt;}
.y27{bottom:873.309600pt;}
.ya8{bottom:882.039333pt;}
.yd4{bottom:882.040667pt;}
.y4a{bottom:882.042000pt;}
.y79{bottom:882.043333pt;}
.y126{bottom:886.280400pt;}
.yd3{bottom:898.708667pt;}
.y49{bottom:898.710000pt;}
.y78{bottom:898.711333pt;}
.y125{bottom:900.947067pt;}
.y30{bottom:908.178400pt;}
.y77{bottom:915.372667pt;}
.ya7{bottom:915.375333pt;}
.yd2{bottom:915.376667pt;}
.y48{bottom:915.378000pt;}
.y124{bottom:915.613733pt;}
.y2f{bottom:927.378400pt;}
.y123{bottom:930.280400pt;}
.y76{bottom:932.040667pt;}
.ya6{bottom:932.043333pt;}
.yd1{bottom:932.044667pt;}
.y47{bottom:932.046000pt;}
.y122{bottom:944.947067pt;}
.y75{bottom:948.708667pt;}
.ya5{bottom:948.711333pt;}
.y23{bottom:953.691600pt;}
.y121{bottom:959.613733pt;}
.y26{bottom:962.610667pt;}
.y74{bottom:965.376667pt;}
.y46{bottom:965.379333pt;}
.y120{bottom:974.280400pt;}
.y97{bottom:974.286533pt;}
.y25{bottom:975.944000pt;}
.y22{bottom:982.491600pt;}
.y24{bottom:989.277333pt;}
.hf{height:24.478125pt;}
.he{height:30.506667pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.h16{height:34.945312pt;}
.h4{height:34.968750pt;}
.h10{height:35.009283pt;}
.h1d{height:35.964200pt;}
.h1f{height:35.964733pt;}
.h1e{height:35.965267pt;}
.h19{height:37.615150pt;}
.h7{height:39.573333pt;}
.h9{height:40.451458pt;}
.hb{height:40.461592pt;}
.h8{height:40.462125pt;}
.h1b{height:40.467458pt;}
.h13{height:40.472792pt;}
.h12{height:40.478125pt;}
.h18{height:40.488792pt;}
.h15{height:40.494125pt;}
.h1c{height:40.504792pt;}
.h1a{height:40.515458pt;}
.h14{height:40.547458pt;}
.h5{height:41.994792pt;}
.h17{height:46.170667pt;}
.ha{height:48.448000pt;}
.h11{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x13{left:79.608000pt;}
.x1a{left:85.203333pt;}
.x18{left:91.590533pt;}
.x14{left:95.608000pt;}
.x1e{left:99.590533pt;}
.x1c{left:103.370000pt;}
.x10{left:123.857067pt;}
.xd{left:189.467200pt;}
.xe{left:224.453867pt;}
.x5{left:240.587467pt;}
.xc{left:286.480533pt;}
.x7{left:313.536800pt;}
.x6{left:317.046133pt;}
.xf{left:323.195200pt;}
.x9{left:324.779467pt;}
.x8{left:363.307467pt;}
.x17{left:401.177867pt;}
.x11{left:404.970933pt;}
.x1b{left:411.248533pt;}
.x3{left:414.187067pt;}
.x4{left:415.603067pt;}
.x1{left:417.573467pt;}
.x15{left:421.420000pt;}
.x19{left:433.633733pt;}
.x16{left:437.417200pt;}
.x1f{left:441.638533pt;}
.x1d{left:445.418000pt;}
.xa{left:511.397600pt;}
.xb{left:575.317600pt;}
}




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